Add exception handling to ClockRegistry to prevent crashes

Test: Manual
Bug: 229771520
Change-Id: I9db17a3d945b75846ac238b59634fb595a8c8706
(cherry picked from commit 901c0a5dcb)
Merged-In: I9db17a3d945b75846ac238b59634fb595a8c8706
This commit is contained in:
Hawkwood Glazier
2022-06-24 17:13:27 +00:00
parent 5f092e150a
commit a8aa52eaf9

View File

@@ -72,18 +72,27 @@ open class ClockRegistry(
open var currentClockId: ClockId
get() {
val json = Settings.Secure.getString(
context.contentResolver,
Settings.Secure.LOCK_SCREEN_CUSTOM_CLOCK_FACE
)
return gson.fromJson(json, ClockSetting::class.java)?.clockId ?: DEFAULT_CLOCK_ID
return try {
val json = Settings.Secure.getString(
context.contentResolver,
Settings.Secure.LOCK_SCREEN_CUSTOM_CLOCK_FACE
)
gson.fromJson(json, ClockSetting::class.java)?.clockId ?: DEFAULT_CLOCK_ID
} catch (ex: Exception) {
Log.e(TAG, "Failed to parse clock setting", ex)
DEFAULT_CLOCK_ID
}
}
set(value) {
val json = gson.toJson(ClockSetting(value, System.currentTimeMillis()))
Settings.Secure.putString(
context.contentResolver,
Settings.Secure.LOCK_SCREEN_CUSTOM_CLOCK_FACE, json
)
try {
val json = gson.toJson(ClockSetting(value, System.currentTimeMillis()))
Settings.Secure.putString(
context.contentResolver,
Settings.Secure.LOCK_SCREEN_CUSTOM_CLOCK_FACE, json
)
} catch (ex: Exception) {
Log.e(TAG, "Failed to set clock setting", ex)
}
}
init {
@@ -170,6 +179,6 @@ open class ClockRegistry(
private data class ClockSetting(
val clockId: ClockId,
val _applied_timestamp: Long
val _applied_timestamp: Long?
)
}