All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uber.rib.core.Interactor.kt Maven / Gradle / Ivy

Go to download

RIBs is the cross-platform architecture behind many mobile apps at Uber. This framework is designed for mobile apps with a large number of engineers and nested states.

There is a newer version: 0.16.3
Show newest version
/*
 * Copyright (C) 2017. Uber Technologies
 *
 * 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.uber.rib.core

import androidx.annotation.CallSuper
import androidx.annotation.VisibleForTesting
import com.jakewharton.rxrelay2.BehaviorRelay
import com.uber.autodispose.lifecycle.CorrespondingEventsFunction
import com.uber.autodispose.lifecycle.LifecycleEndedException
import com.uber.autodispose.lifecycle.LifecycleScopeProvider
import com.uber.autodispose.lifecycle.LifecycleScopes
import com.uber.rib.core.lifecycle.InteractorEvent
import io.reactivex.CompletableSource
import io.reactivex.Observable
import javax.inject.Inject
import kotlin.properties.ReadWriteProperty
import kotlin.reflect.KProperty

/**
 * The base implementation for all [Interactor]s.
 *
 * @param 

the type of [Presenter]. * @param the type of [Router]. */ abstract class Interactor

> : LifecycleScopeProvider, InteractorType { @Inject lateinit var injectedPresenter: P internal var actualPresenter: P? = null private val behaviorRelay = BehaviorRelay.create() private val lifecycleRelay = behaviorRelay.toSerialized() private val routerDelegate = InitOnceProperty() /** @return the router for this interactor. */ open var router: R by routerDelegate protected set constructor() protected constructor(presenter: P) { this.actualPresenter = presenter } /** @return an observable of this controller's lifecycle events. */ override fun lifecycle(): Observable { return lifecycleRelay.hide() } /** @return true if the controller is attached, false if not. */ override fun isAttached() = behaviorRelay.value === InteractorEvent.ACTIVE /** * Called when attached. The presenter will automatically be added when this happens. * * @param savedInstanceState the saved [Bundle]. */ @CallSuper protected open fun didBecomeActive(savedInstanceState: Bundle?) { } /** * Handle an activity back press. * * @return whether this interactor took action in response to a back press. */ open override fun handleBackPress(): Boolean { return false } /** * Called when detached. The [Interactor] should do its cleanup here. Note: View will be * removed automatically so [Interactor] doesn't have to remove its view here. */ protected open fun willResignActive() {} internal fun onSaveInstanceStateInternal(outState: Bundle) { onSaveInstanceState(outState) } /** * Called when saving state. * * @param outState the saved [Bundle]. */ protected open fun onSaveInstanceState(outState: Bundle) {} public open fun dispatchAttach(savedInstanceState: Bundle?) { lifecycleRelay.accept(InteractorEvent.ACTIVE) (getPresenter() as? Presenter)?.dispatchLoad() didBecomeActive(savedInstanceState) } public open fun dispatchDetach(): P { (getPresenter() as? Presenter)?.dispatchUnload() willResignActive() lifecycleRelay.accept(InteractorEvent.INACTIVE) return getPresenter() } internal fun setRouterInternal(router: Router<*>) { if (routerDelegate != null) { this.router = router as R } } /** @return the currently attached presenter if there is one */ @VisibleForTesting private fun getPresenter(): P { val presenter: P? = try { if (actualPresenter != null) actualPresenter else injectedPresenter } catch (e: UninitializedPropertyAccessException) { actualPresenter } checkNotNull(presenter) { "Attempting to get interactor's presenter before being set." } return presenter } @VisibleForTesting internal fun setPresenter(presenter: P) { actualPresenter = presenter } override fun correspondingEvents(): CorrespondingEventsFunction { return LIFECYCLE_MAP_FUNCTION } override fun peekLifecycle(): InteractorEvent? { return behaviorRelay.value } final override fun requestScope(): CompletableSource { return LifecycleScopes.resolveScopeFromLifecycle(this) } private inner class InitOnceProperty : ReadWriteProperty { private var backingField: T? = null override fun getValue(thisRef: Any, property: KProperty<*>): T { if (backingField == null) { throw IllegalStateException("Attempting to get value before it has been set.") } return backingField as T } override fun setValue(thisRef: Any, property: KProperty<*>, value: T) { if (backingField != null) { throw IllegalStateException("Attempting to set value after it has been set.") } else { backingField = value } } } companion object { private val LIFECYCLE_MAP_FUNCTION = CorrespondingEventsFunction { interactorEvent: InteractorEvent -> when (interactorEvent) { InteractorEvent.ACTIVE -> return@CorrespondingEventsFunction InteractorEvent.INACTIVE else -> throw LifecycleEndedException() } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy