Move DebugInformationDumper from :app to :base

This commit is contained in:
MM20
2021-09-26 17:11:22 +02:00
parent bcb2e4ce56
commit 07e1e5ebdb
3 changed files with 4 additions and 4 deletions
@@ -0,0 +1,45 @@
package de.mm20.launcher2.debug
import android.content.Context
import android.os.Build
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.io.File
import java.text.SimpleDateFormat
import java.util.*
class DebugInformationDumper {
fun dump(context: Context): String {
val df = SimpleDateFormat("yyyy-MM-dd-HHmmss")
val file = File(context.getExternalFilesDir(null), "kvaesitso-log-${df.format(Date(System.currentTimeMillis()))}")
val fos = file.outputStream().writer()
fos.write("Device: ${Build.DEVICE}\n")
fos.write("SDK version: ${Build.VERSION.SDK_INT}\n")
fos.write("====================================\n")
Thread {
val input = Runtime.getRuntime().exec("/system/bin/sh -c logcat").inputStream.bufferedReader()
var line = input.readLine()
while (line != null) {
line = input.readLine()
fos.write("$line\n")
}
fos.close()
}.start()
return file.absolutePath
}
fun exportDatabases(context: Context): String {
val df = SimpleDateFormat("yyyy-MM-dd-HHmmss")
val exportFile = File(context.getExternalFilesDir(null), "room-${df.format(Date(System.currentTimeMillis()))}.db")
GlobalScope.launch {
withContext(Dispatchers.IO) {
context.getDatabasePath("room").copyTo(exportFile)
}
}
return exportFile.absolutePath
}
}