/* * Copyright (c) 2019 Hemanth Savarala. * * Licensed under the GNU General Public License v3 * * This is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by * the Free Software Foundation either version 3 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. */ package code.name.monkey.retromusic.misc import android.content.Context import androidx.loader.content.AsyncTaskLoader /** * [Issue * 14944](http://code.google.com/p/android/issues/detail?id=14944) * * @author Alexander Blom */ abstract class WrappedAsyncTaskLoader /** * Constructor of `WrappedAsyncTaskLoader` * * @param context The [Context] to use. */ (context: Context) : AsyncTaskLoader(context) { private var mData: D? = null /** * {@inheritDoc} */ override fun deliverResult(data: D?) { if (!isReset) { this.mData = data super.deliverResult(data) } else { // An asynchronous query came in while the loader is stopped } } /** * {@inheritDoc} */ override fun onStartLoading() { super.onStartLoading() if (this.mData != null) { deliverResult(this.mData) } else if (takeContentChanged() || this.mData == null) { forceLoad() } } /** * {@inheritDoc} */ override fun onStopLoading() { super.onStopLoading() // Attempt to cancel the current load task if possible cancelLoad() } /** * {@inheritDoc} */ override fun onReset() { super.onReset() // Ensure the loader is stopped onStopLoading() this.mData = null } }