Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/twidere/util/dagger/DependencyHolder.kt

96 lines
2.7 KiB
Kotlin
Raw Normal View History

2016-09-09 05:58:26 +02:00
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2015 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* This program 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 program 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.util.dagger
import android.content.Context
2017-02-28 08:34:00 +01:00
import com.twitter.Validator
2016-09-09 05:58:26 +02:00
import edu.tsinghua.hotmobi.HotMobiLogger
2017-03-01 09:27:45 +01:00
import okhttp3.Cache
2016-09-09 05:58:26 +02:00
import okhttp3.ConnectionPool
2017-03-01 09:27:45 +01:00
import okhttp3.Dns
import org.mariotaku.kpreferences.KPreferences
2016-09-09 05:58:26 +02:00
import org.mariotaku.restfu.http.RestHttpClient
import org.mariotaku.twidere.model.DefaultFeatures
import org.mariotaku.twidere.util.*
import javax.inject.Inject
/**
* Created by mariotaku on 15/12/31.
*/
class DependencyHolder internal constructor(context: Context) {
@Inject
lateinit var hotMobiLogger: HotMobiLogger
internal set
@Inject
lateinit var readStateManager: ReadStateManager
internal set
@Inject
lateinit var restHttpClient: RestHttpClient
internal set
@Inject
lateinit var externalThemeManager: ExternalThemeManager
internal set
@Inject
lateinit var activityTracker: ActivityTracker
internal set
@Inject
2017-03-01 09:27:45 +01:00
lateinit var dns: Dns
2016-09-09 05:58:26 +02:00
internal set
@Inject
2017-02-28 08:34:00 +01:00
lateinit var validator: Validator
2016-09-09 05:58:26 +02:00
internal set
@Inject
lateinit var preferences: SharedPreferencesWrapper
internal set
@Inject
2017-01-29 13:09:59 +01:00
lateinit var connectionPool: ConnectionPool
2016-09-09 05:58:26 +02:00
internal set
@Inject
2017-03-01 09:27:45 +01:00
lateinit var cache: Cache
internal set
@Inject
2016-09-09 05:58:26 +02:00
lateinit var defaultFeatures: DefaultFeatures
internal set
2016-12-01 03:16:55 +01:00
@Inject
lateinit var mediaPreloader: MediaPreloader
2016-12-01 03:16:55 +01:00
internal set
@Inject
lateinit var userColorNameManager: UserColorNameManager
internal set
@Inject
lateinit var kPreferences: KPreferences
internal set
2016-09-09 05:58:26 +02:00
init {
GeneralComponentHelper.build(context).inject(this)
}
companion object {
private var sInstance: DependencyHolder? = null
fun get(context: Context): DependencyHolder {
if (sInstance != null) return sInstance!!
sInstance = DependencyHolder(context)
return sInstance!!
}
}
}