app/src/main/java/com/talentica/androidkotlin/db/DatabaseCreator.kt
/* * Copyright 2017, The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package com.talentica.androidkotlin.db import android.content.Contextimport android.os.AsyncTaskimport android.util.Logimport androidx.lifecycle.LiveDataimport androidx.lifecycle.MutableLiveDataimport androidx.room.Roomimport com.talentica.androidkotlin.db.DatabaseInitUtil.initializeDbimport kotlinx.coroutines.CoroutineScopeimport kotlinx.coroutines.SupervisorJobimport java.util.concurrent.atomic.AtomicBoolean /** * Creates the [AppDatabase] asynchronously, exposing a LiveData object to notify of creation. */class DatabaseCreator { private val mIsDatabaseCreated = MutableLiveData<Boolean>() var database: AppDatabase? = null private set private val mInitializing = AtomicBoolean(true) /** Used to observe when the database initialization is done */ val isDatabaseCreated: LiveData<Boolean> get() = mIsDatabaseCreated Method `createDb` has 31 lines of code (exceeds 25 allowed). Consider refactoring. /** * Creates or returns a previously-created database. * * * Although this uses an AsyncTask which currently uses a serial executor, it's thread-safe. */ open fun createDb(context: Context) { Log.d("DatabaseCreator", "Creating DB from " + Thread.currentThread().name) if (!mInitializing.compareAndSet(true, false)) { return // Already initializing } mIsDatabaseCreated.setValue(false) // Trigger an update to show a loading screen. object : AsyncTask<Context?, Void?, Void?>() { protected override fun doInBackground(vararg params: Context?): Void? { Log.d( "DatabaseCreator", "Starting bg job " + Thread.currentThread().name ) val context = params[0]?.applicationContext // Reset the database to have new data on every run. context?.deleteDatabase(AppDatabase.DATABASE_NAME) // Build the database! val db = context?.let { AppDatabase.getDatabase(it, CoroutineScope(SupervisorJob())) } // Add a delay to simulate a long-running operation addDelay() // Add some data to the database if (db != null) { initializeDb(db) } Log.d( "DatabaseCreator", "DB was populated in thread " + Thread.currentThread().name ) database = db return null } override fun onPostExecute(ignored: Void?) { // Now on the main thread, notify observers that the db is created and ready. mIsDatabaseCreated.setValue(true) } }.execute(context.applicationContext) } private fun addDelay() { try { Thread.sleep(4000) } catch (ignored: InterruptedException) { } } companion object { private var sInstance: DatabaseCreator? = null // For Singleton instantiation private val LOCK = Any() @Synchronized fun getInstance(context: Context?): DatabaseCreator? { if (sInstance == null) { synchronized(LOCK) { if (sInstance == null) { sInstance = DatabaseCreator() } } } return sInstance } }}