2019-04-11 20:01:49 +02:00
|
|
|
package com.topjohnwu.magisk.di
|
|
|
|
|
2019-07-28 01:54:34 -07:00
|
|
|
import android.content.Context
|
|
|
|
import androidx.room.Room
|
2019-05-06 20:12:31 +02:00
|
|
|
import com.topjohnwu.magisk.data.database.*
|
2019-07-28 01:54:34 -07:00
|
|
|
import com.topjohnwu.magisk.tasks.RepoUpdater
|
2019-04-11 20:01:49 +02:00
|
|
|
import org.koin.dsl.module
|
|
|
|
|
|
|
|
|
2019-04-17 18:27:03 +02:00
|
|
|
val databaseModule = module {
|
2019-05-06 20:12:31 +02:00
|
|
|
single { LogDao() }
|
|
|
|
single { PolicyDao(get()) }
|
|
|
|
single { SettingsDao() }
|
2019-05-10 19:13:15 +02:00
|
|
|
single { StringDao() }
|
2019-07-28 01:54:34 -07:00
|
|
|
single { createRepoDatabase(get()) }
|
|
|
|
single { get<RepoDatabase>().repoDao() }
|
|
|
|
single { RepoUpdater(get(), get()) }
|
2019-04-17 18:27:03 +02:00
|
|
|
}
|
2019-07-28 01:54:34 -07:00
|
|
|
|
|
|
|
fun createRepoDatabase(context: Context) =
|
|
|
|
Room.databaseBuilder(context, RepoDatabase::class.java, "repo.db")
|
|
|
|
.fallbackToDestructiveMigration()
|
|
|
|
.build()
|