-
-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: enhance lifecycle management of Rime
Migrate the abilities of RimeWrapper to RimeDaemon, the real Rime instance will be kept in RimeDaemon and shared via RimeSession
- Loading branch information
1 parent
0657eae
commit ba9d0d8
Showing
13 changed files
with
228 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
package com.osfans.trime.core | ||
|
||
import android.os.Handler | ||
import android.os.Looper | ||
import androidx.core.os.HandlerCompat | ||
import kotlinx.coroutines.Job | ||
import kotlinx.coroutines.MainScope | ||
import kotlinx.coroutines.flow.MutableStateFlow | ||
import kotlinx.coroutines.flow.StateFlow | ||
import kotlinx.coroutines.flow.asStateFlow | ||
import kotlinx.coroutines.flow.launchIn | ||
import kotlinx.coroutines.flow.onEach | ||
import java.util.Collections | ||
|
||
class RimeLifecycleImpl : RimeLifecycle { | ||
private val _stateFlow = MutableStateFlow(RimeLifecycle.State.STOPPED) | ||
override val stateFlow = _stateFlow.asStateFlow() | ||
|
||
override val handler = HandlerCompat.createAsync(Looper.getMainLooper()) | ||
override val runnableList: MutableList<Runnable> = Collections.synchronizedList(mutableListOf<Runnable>()) | ||
|
||
fun emitState(state: RimeLifecycle.State) { | ||
when (state) { | ||
RimeLifecycle.State.STARTING -> { | ||
checkAtState(RimeLifecycle.State.STOPPED) | ||
_stateFlow.value = RimeLifecycle.State.STARTING | ||
} | ||
RimeLifecycle.State.READY -> { | ||
checkAtState(RimeLifecycle.State.STARTING) | ||
_stateFlow.value = RimeLifecycle.State.READY | ||
} | ||
RimeLifecycle.State.STOPPED -> { | ||
checkAtState(RimeLifecycle.State.READY) | ||
_stateFlow.value = RimeLifecycle.State.STOPPED | ||
} | ||
} | ||
} | ||
|
||
private fun checkAtState(state: RimeLifecycle.State) = | ||
takeIf { (_stateFlow.value == state) } | ||
?: throw IllegalStateException("Currently not at $state! Actual state is ${_stateFlow.value}") | ||
} | ||
|
||
interface RimeLifecycle { | ||
val stateFlow: StateFlow<State> | ||
val handler: Handler | ||
val runnableList: MutableList<Runnable> | ||
|
||
enum class State { | ||
STARTING, | ||
READY, | ||
STOPPED, | ||
} | ||
} | ||
|
||
interface RimeLifecycleOwner { | ||
val lifecycle: RimeLifecycle | ||
val handler get() = lifecycle.handler | ||
} | ||
|
||
fun RimeLifecycle.whenAtState( | ||
state: RimeLifecycle.State, | ||
block: () -> Unit, | ||
) { | ||
runnableList.add(Runnable { block() }) | ||
if (stateFlow.value == state) { | ||
handler.post(runnableList.removeFirst()) | ||
} else { | ||
StateDelegate(this, state).run(block) | ||
} | ||
} | ||
|
||
inline fun RimeLifecycle.whenReady(noinline block: () -> Unit) = whenAtState(RimeLifecycle.State.READY, block) | ||
|
||
private class StateDelegate(val lifecycle: RimeLifecycle, val state: RimeLifecycle.State) { | ||
private var job: Job? = null | ||
|
||
init { | ||
job = | ||
lifecycle.stateFlow.onEach { | ||
if (it == state) { | ||
while (lifecycle.runnableList.isNotEmpty()) { | ||
lifecycle.handler.post(lifecycle.runnableList.removeFirst()) | ||
} | ||
} | ||
}.launchIn(MainScope()) | ||
} | ||
|
||
fun <T> run(block: () -> T): T { | ||
job?.cancel() | ||
job = null | ||
return block() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.