Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: DiskReadViolation related database check #2276

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ import kotlinx.coroutines.Job
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.joinAll
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.ConcurrentMap
import javax.inject.Inject
Expand All @@ -91,9 +92,11 @@ class MigrationManager @Inject constructor(
private val markUsersAsNeedToBeMigrated: MarkUsersAsNeedToBeMigrated,
private val notificationManager: NotificationManager
) {
private fun isScalaDBPresent(): Boolean =
applicationContext.getDatabasePath(ScalaDBNameProvider.globalDB()).let { it.isFile && it.exists() }

private suspend fun isScalaDBPresent(): Boolean = withContext(Dispatchers.IO) {
applicationContext
.getDatabasePath(ScalaDBNameProvider.globalDB())
.let { it.isFile && it.exists() }
}
suspend fun shouldMigrate(): Boolean = when {
// already migrated
globalDataStore.isMigrationCompleted() -> false
Expand Down
Loading