Fix start ANR

This commit is contained in:
世界 2024-01-11 15:19:45 +08:00
parent f129c4351d
commit 923a3789d0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 18 additions and 10 deletions

View file

@ -21,6 +21,7 @@ import io.nekohasekai.libbox.PlatformInterface
import io.nekohasekai.libbox.SystemProxyStatus
import io.nekohasekai.sfa.Application
import io.nekohasekai.sfa.BuildConfig
import io.nekohasekai.sfa.R
import io.nekohasekai.sfa.constant.Action
import io.nekohasekai.sfa.constant.Alert
import io.nekohasekai.sfa.constant.Status
@ -122,6 +123,10 @@ class BoxService(
private var lastProfileName = ""
private suspend fun startService(delayStart: Boolean = false) {
try {
withContext(Dispatchers.Main) {
notification.show(lastProfileName, R.string.status_starting)
}
val selectedProfileId = Settings.selectedProfile
if (selectedProfileId == -1L) {
stopAndAlert(Alert.EmptyConfiguration)
@ -142,6 +147,7 @@ class BoxService(
lastProfileName = profile.name
withContext(Dispatchers.Main) {
notification.show(lastProfileName, R.string.status_starting)
binder.broadcast {
it.onServiceResetLogs(listOf())
}
@ -166,10 +172,10 @@ class BoxService(
boxService = newService
commandServer?.setService(boxService)
status.postValue(Status.Started)
withContext(Dispatchers.Main) {
notification.show(lastProfileName)
notification.show(lastProfileName, R.string.status_started)
}
notification.start()
} catch (e: Exception) {
stopAndAlert(Alert.StartService, e.message)
return

View file

@ -9,6 +9,7 @@ import android.content.Context
import android.content.Intent
import android.content.IntentFilter
import android.os.Build
import androidx.annotation.StringRes
import androidx.core.app.NotificationCompat
import androidx.core.app.ServiceCompat
import androidx.lifecycle.MutableLiveData
@ -76,7 +77,7 @@ class ServiceNotification(
}
}
suspend fun show(lastProfileName: String) {
fun show(lastProfileName: String, @StringRes contentTextId: Int) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
Application.notification.createNotificationChannel(
NotificationChannel(
@ -87,14 +88,15 @@ class ServiceNotification(
service.startForeground(
notificationId, notificationBuilder
.setContentTitle(lastProfileName.takeIf { it.isNotBlank() } ?: "sing-box")
.setContentText("service started").build()
.setContentText(service.getString(contentTextId)).build()
)
withContext(Dispatchers.IO) {
if (Settings.dynamicNotification) {
commandClient.connect()
withContext(Dispatchers.Main) {
registerReceiver()
}
}
suspend fun start() {
if (Settings.dynamicNotification) {
commandClient.connect()
withContext(Dispatchers.Main) {
registerReceiver()
}
}
}