2022-01-17 06:19:05 +01:00
|
|
|
package io.heckel.ntfy.log
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import io.heckel.ntfy.data.Database
|
2022-01-18 00:05:59 +01:00
|
|
|
import io.heckel.ntfy.data.LogDao
|
|
|
|
import io.heckel.ntfy.data.LogEntry
|
2022-01-17 06:19:05 +01:00
|
|
|
import kotlinx.coroutines.Dispatchers
|
|
|
|
import kotlinx.coroutines.GlobalScope
|
|
|
|
import kotlinx.coroutines.launch
|
2022-01-18 00:05:59 +01:00
|
|
|
import java.util.*
|
2022-01-17 06:19:05 +01:00
|
|
|
import java.util.concurrent.atomic.AtomicBoolean
|
|
|
|
import java.util.concurrent.atomic.AtomicInteger
|
|
|
|
|
2022-01-18 00:05:59 +01:00
|
|
|
class Log(private val logsDao: LogDao) {
|
|
|
|
private val record: AtomicBoolean = AtomicBoolean(false)
|
|
|
|
private val count: AtomicInteger = AtomicInteger(0)
|
|
|
|
private val scrubNum: AtomicInteger = AtomicInteger(-1)
|
|
|
|
private val scrubTerms = Collections.synchronizedMap(mutableMapOf<String, String>())
|
2022-01-17 06:19:05 +01:00
|
|
|
|
|
|
|
private fun log(level: Int, tag: String, message: String, exception: Throwable?) {
|
|
|
|
if (!record.get()) return
|
2022-01-18 00:05:59 +01:00
|
|
|
GlobalScope.launch(Dispatchers.IO) { // FIXME This does not guarantee the log order
|
|
|
|
logsDao.insert(LogEntry(System.currentTimeMillis(), tag, level, message, exception?.stackTraceToString()))
|
2022-01-17 06:19:05 +01:00
|
|
|
val current = count.incrementAndGet()
|
|
|
|
if (current >= PRUNE_EVERY) {
|
|
|
|
logsDao.prune(ENTRIES_MAX)
|
|
|
|
count.set(0) // I know there is a race here, but this is good enough
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 00:05:59 +01:00
|
|
|
fun getAll(): Collection<LogEntry> {
|
|
|
|
return logsDao
|
|
|
|
.getAll()
|
|
|
|
.map { e ->
|
|
|
|
e.copy(
|
|
|
|
message = scrub(e.message)!!,
|
|
|
|
exception = scrub(e.exception)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun deleteAll() {
|
|
|
|
return logsDao.deleteAll()
|
|
|
|
}
|
|
|
|
|
|
|
|
fun addScrubTerm(term: String, type: TermType = TermType.Term) {
|
|
|
|
if (scrubTerms[term] != null || IGNORE_TERMS.contains(term)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
val replaceTermIndex = scrubNum.incrementAndGet()
|
|
|
|
val replaceTerm = REPLACE_TERMS.getOrNull(replaceTermIndex) ?: "scrubbed${replaceTermIndex}"
|
|
|
|
scrubTerms[term] = when (type) {
|
|
|
|
TermType.Domain -> "$replaceTerm.example.com"
|
|
|
|
else -> replaceTerm
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun scrub(line: String?): String? {
|
|
|
|
var newLine = line ?: return null
|
|
|
|
scrubTerms.forEach { (scrubTerm, replaceTerm) ->
|
|
|
|
newLine = newLine.replace(scrubTerm, replaceTerm)
|
|
|
|
}
|
|
|
|
return newLine
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class TermType {
|
|
|
|
Domain, Term
|
|
|
|
}
|
|
|
|
|
2022-01-17 06:19:05 +01:00
|
|
|
companion object {
|
2022-01-18 00:05:59 +01:00
|
|
|
private const val TAG = "NtfyLog"
|
|
|
|
private const val PRUNE_EVERY = 100
|
|
|
|
private const val ENTRIES_MAX = 5000
|
|
|
|
private val IGNORE_TERMS = listOf("ntfy.sh")
|
|
|
|
private val REPLACE_TERMS = listOf(
|
|
|
|
"potato", "banana", "coconut", "kiwi", "avocado", "orange", "apple", "lemon", "olive", "peach"
|
|
|
|
)
|
|
|
|
private var instance: Log? = null
|
|
|
|
|
2022-01-17 06:19:05 +01:00
|
|
|
fun d(tag: String, message: String, exception: Throwable? = null) {
|
|
|
|
if (exception == null) android.util.Log.d(tag, message) else android.util.Log.d(tag, message, exception)
|
|
|
|
getInstance()?.log(android.util.Log.DEBUG, tag, message, exception)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun i(tag: String, message: String, exception: Throwable? = null) {
|
|
|
|
if (exception == null) android.util.Log.i(tag, message) else android.util.Log.i(tag, message, exception)
|
|
|
|
getInstance()?.log(android.util.Log.INFO, tag, message, exception)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun w(tag: String, message: String, exception: Throwable? = null) {
|
|
|
|
if (exception == null) android.util.Log.w(tag, message) else android.util.Log.w(tag, message, exception)
|
|
|
|
getInstance()?.log(android.util.Log.WARN, tag, message, exception)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun e(tag: String, message: String, exception: Throwable? = null) {
|
|
|
|
if (exception == null) android.util.Log.e(tag, message) else android.util.Log.e(tag, message, exception)
|
|
|
|
getInstance()?.log(android.util.Log.ERROR, tag, message, exception)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun setRecord(enable: Boolean) {
|
|
|
|
if (!enable) d(TAG, "Disabled log recording")
|
|
|
|
getInstance()?.record?.set(enable)
|
|
|
|
if (enable) d(TAG, "Enabled log recording")
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getRecord(): Boolean {
|
|
|
|
return getInstance()?.record?.get() ?: false
|
|
|
|
}
|
|
|
|
|
2022-01-18 00:05:59 +01:00
|
|
|
fun getAll(): Collection<LogEntry> {
|
|
|
|
return getInstance()?.getAll().orEmpty()
|
|
|
|
}
|
|
|
|
|
|
|
|
fun deleteAll() {
|
|
|
|
getInstance()?.deleteAll()
|
|
|
|
}
|
|
|
|
|
|
|
|
fun addScrubTerm(term: String, type: TermType = TermType.Term) {
|
|
|
|
getInstance()?.addScrubTerm(term, type)
|
|
|
|
}
|
|
|
|
|
2022-01-17 20:06:59 +01:00
|
|
|
fun init(context: Context) {
|
2022-01-17 06:19:05 +01:00
|
|
|
return synchronized(Log::class) {
|
|
|
|
if (instance == null) {
|
|
|
|
val database = Database.getInstance(context.applicationContext)
|
2022-01-18 00:05:59 +01:00
|
|
|
instance = Log(database.logDao())
|
2022-01-17 06:19:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun getInstance(): Log? {
|
|
|
|
return synchronized(Log::class) {
|
|
|
|
instance
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|