summaryrefslogtreecommitdiff
path: root/src/main/kotlin/asyncio.kt
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2021-08-20 15:33:32 +0200
committernea <romangraef@gmail.com>2021-08-20 15:33:58 +0200
commit5042498c8fe12751c1b6560ae1fde07e7cd78259 (patch)
tree688aa93978ffffd0b15c639768fdad6f17609bdd /src/main/kotlin/asyncio.kt
parent65a6ffeb6761994d4d69011c87f23fe074f7a1f7 (diff)
downloadwebos-5042498c8fe12751c1b6560ae1fde07e7cd78259.tar.gz
webos-5042498c8fe12751c1b6560ae1fde07e7cd78259.tar.bz2
webos-5042498c8fe12751c1b6560ae1fde07e7cd78259.zip
aaaaaaaaHEADmaster
Diffstat (limited to 'src/main/kotlin/asyncio.kt')
-rw-r--r--src/main/kotlin/asyncio.kt61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/main/kotlin/asyncio.kt b/src/main/kotlin/asyncio.kt
new file mode 100644
index 0000000..e14fea9
--- /dev/null
+++ b/src/main/kotlin/asyncio.kt
@@ -0,0 +1,61 @@
+import kotlin.coroutines.*
+
+class IORunner : Continuation<Unit> {
+ var nextStep: Continuation<Unit>? = null
+ val eventQueue = ArrayDeque<String>()
+ fun _CALLED_BY_JS_onInput(str: String) {
+ eventQueue.addLast(str)
+ awake()
+ }
+
+ fun _CALLED_BY_JS_onWhatever() {
+ awake()
+ }
+
+ private fun awake() {
+ val step = nextStep
+ if (step != null) {
+ nextStep = null
+ step.resume(Unit)
+ }
+ }
+
+ suspend fun wait() {
+ return suspendCoroutine { c ->
+ console.log("SUSPENDING COROUTINE")
+ nextStep = c
+ }
+ }
+
+ override val context: CoroutineContext
+ get() = EmptyCoroutineContext
+
+ override fun resumeWith(result: Result<Unit>) {
+ if (result.isFailure) {
+ result.exceptionOrNull()?.printStackTrace()
+ } else {
+ println("IORunner exited successfully")
+ }
+ }
+
+ companion object {
+ fun runOnIO(block: suspend IORunner.() -> Unit): IORunner {
+ val r = IORunner()
+ block.startCoroutine(r, r)
+ return r
+ }
+ }
+}
+
+
+suspend fun IORunner.getOneKey(): String {
+ while (true) {
+ val x = eventQueue.removeFirstOrNull()
+ if (x == null)
+ wait()
+ else {
+ return x
+ }
+ }
+}
+