Update to coroutines
This commit is contained in:
parent
13874bde53
commit
3e1280efed
@ -1,5 +1,2 @@
|
|||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
ktor_version=2.3.12
|
|
||||||
kotlin_version=2.0.10
|
|
||||||
logback_version=1.4.14
|
|
||||||
kotlinx_html_version=0.10.1
|
|
||||||
|
@ -7,10 +7,7 @@ import io.ktor.http.HttpStatusCode
|
|||||||
import io.ktor.serialization.deserialize
|
import io.ktor.serialization.deserialize
|
||||||
import io.ktor.serialization.kotlinx.KotlinxWebsocketSerializationConverter
|
import io.ktor.serialization.kotlinx.KotlinxWebsocketSerializationConverter
|
||||||
import io.ktor.serialization.kotlinx.json.json
|
import io.ktor.serialization.kotlinx.json.json
|
||||||
import io.ktor.server.application.Application
|
import io.ktor.server.application.*
|
||||||
import io.ktor.server.application.ApplicationCall
|
|
||||||
import io.ktor.server.application.call
|
|
||||||
import io.ktor.server.application.install
|
|
||||||
import io.ktor.server.cio.CIO
|
import io.ktor.server.cio.CIO
|
||||||
import io.ktor.server.engine.embeddedServer
|
import io.ktor.server.engine.embeddedServer
|
||||||
import io.ktor.server.html.respondHtml
|
import io.ktor.server.html.respondHtml
|
||||||
@ -18,10 +15,15 @@ import io.ktor.server.plugins.contentnegotiation.ContentNegotiation
|
|||||||
import io.ktor.server.plugins.cors.routing.CORS
|
import io.ktor.server.plugins.cors.routing.CORS
|
||||||
import io.ktor.server.plugins.statuspages.StatusPages
|
import io.ktor.server.plugins.statuspages.StatusPages
|
||||||
import io.ktor.server.response.respondText
|
import io.ktor.server.response.respondText
|
||||||
|
import io.ktor.server.routing.Route
|
||||||
import io.ktor.server.routing.get
|
import io.ktor.server.routing.get
|
||||||
import io.ktor.server.routing.routing
|
import io.ktor.server.routing.routing
|
||||||
import io.ktor.server.websocket.*
|
import io.ktor.server.websocket.*
|
||||||
|
import kotlinx.coroutines.CoroutineExceptionHandler
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.ensureActive
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
import kotlinx.coroutines.flow.MutableSharedFlow
|
||||||
|
import kotlinx.coroutines.flow.catch
|
||||||
import kotlinx.coroutines.flow.launchIn
|
import kotlinx.coroutines.flow.launchIn
|
||||||
import kotlinx.coroutines.flow.onEach
|
import kotlinx.coroutines.flow.onEach
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
@ -36,10 +38,10 @@ import java.time.Duration
|
|||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
embeddedServer(CIO, port = 8080) {
|
embeddedServer(CIO, port = 8080) {
|
||||||
module()
|
module()
|
||||||
}
|
}.start(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend inline fun ApplicationCall.respondCss(builder: CSSBuilder.() -> Unit) {
|
private suspend inline fun ApplicationCall.respondCss(builder: CSSBuilder.() -> Unit) {
|
||||||
this.respondText(CSSBuilder().apply(builder).toString(), ContentType.Text.CSS)
|
this.respondText(CSSBuilder().apply(builder).toString(), ContentType.Text.CSS)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,17 +117,27 @@ fun Application.module() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
businessLogic()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Route.businessLogic() {
|
||||||
|
|
||||||
val mutex = Mutex()
|
val mutex = Mutex()
|
||||||
val data = mutableMapOf<String, JsonElement>()
|
val data = mutableMapOf<String, JsonElement>()
|
||||||
val outBox = MutableSharedFlow<ServerEvent>()
|
|
||||||
val runner: TaskRunner = TaskRunner.ECHO
|
val outBox = MutableSharedFlow<ServerEvent>(100)
|
||||||
|
|
||||||
|
val runner: TaskRunner = TaskRunner.GROUP_ARGS
|
||||||
|
|
||||||
webSocket("/ws") { // websocketSession
|
webSocket("/ws") { // websocketSession
|
||||||
val converter = converter ?: error("Converter is null")
|
val converter = converter ?: error("Converter is null")
|
||||||
|
|
||||||
outBox.onEach {
|
//launch sending from outbox in a separate coroutine
|
||||||
|
val sendJob = outBox.onEach {
|
||||||
sendSerialized(it)
|
sendSerialized(it)
|
||||||
|
}.catch {
|
||||||
|
application.log.error("Error on send", it)
|
||||||
}.launchIn(this)
|
}.launchIn(this)
|
||||||
|
|
||||||
for (frame in incoming) {
|
for (frame in incoming) {
|
||||||
@ -134,18 +146,25 @@ fun Application.module() {
|
|||||||
data[event.key] = event.value
|
data[event.key] = event.value
|
||||||
}
|
}
|
||||||
|
|
||||||
is UserStartTaskEvent -> launch { //FIXME incorrect scope
|
is UserStartTaskEvent -> {
|
||||||
mutex.withLock {
|
|
||||||
val snapshot = HashMap(data)
|
|
||||||
data.clear()
|
|
||||||
val taskDef = TaskDefinition(event.taskId, snapshot)
|
|
||||||
|
|
||||||
|
val snapshot = mutex.withLock {
|
||||||
|
// val snapshot = LinkedHashMap(data)
|
||||||
|
// data.clear()
|
||||||
|
// snapshot
|
||||||
|
HashMap(data).also { data.clear() }
|
||||||
|
}
|
||||||
|
|
||||||
|
application.launch(Dispatchers.Default) {
|
||||||
|
val taskDef = TaskDefinition(event.taskId, snapshot)
|
||||||
|
try {
|
||||||
val result = runner.runTask(taskDef)
|
val result = runner.runTask(taskDef)
|
||||||
val resultEvent = ServerTaskCompleteEvent(taskDef, result)
|
val resultEvent = ServerTaskCompleteEvent(taskDef, result)
|
||||||
outBox.emit(resultEvent)
|
outBox.emit(resultEvent)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
outBox.emit(ServerTaskErrorEvent(taskDef, e.message ?: ""))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
package center.sciprog.ktor.sample
|
package center.sciprog.ktor.sample
|
||||||
|
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
import kotlinx.serialization.Serializable
|
import kotlinx.serialization.Serializable
|
||||||
import kotlinx.serialization.json.JsonElement
|
import kotlinx.serialization.json.JsonElement
|
||||||
import kotlinx.serialization.json.buildJsonObject
|
import kotlinx.serialization.json.buildJsonObject
|
||||||
|
import kotlin.time.Duration.Companion.milliseconds
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class TaskDefinition(val id: String, val arguments: Map<String, JsonElement>)
|
data class TaskDefinition(val id: String, val arguments: Map<String, JsonElement>)
|
||||||
@ -12,12 +16,24 @@ fun interface TaskRunner {
|
|||||||
suspend fun runTask(definition: TaskDefinition): JsonElement
|
suspend fun runTask(definition: TaskDefinition): JsonElement
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
val ECHO = TaskRunner { definition: TaskDefinition ->
|
val GROUP_ARGS = TaskRunner { definition: TaskDefinition ->
|
||||||
|
delay(100.milliseconds)
|
||||||
buildJsonObject {
|
buildJsonObject {
|
||||||
definition.arguments.forEach {
|
definition.arguments.forEach {
|
||||||
put(it.key, it.value)
|
put(it.key, it.value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun scopedRunner(scope: CoroutineScope) = TaskRunner { definition ->
|
||||||
|
scope.async {
|
||||||
|
delay(100.milliseconds)
|
||||||
|
buildJsonObject {
|
||||||
|
definition.arguments.forEach {
|
||||||
|
put(it.key, it.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}.await()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,8 +12,13 @@ data class UserDataEvent(val key: String, val value: JsonElement) : UserEvent
|
|||||||
@Serializable
|
@Serializable
|
||||||
data class UserStartTaskEvent(val taskId: String) : UserEvent
|
data class UserStartTaskEvent(val taskId: String) : UserEvent
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
sealed interface ServerEvent
|
sealed interface ServerEvent
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class ServerTaskCompleteEvent(val taskDefinition: TaskDefinition, val result: JsonElement) : ServerEvent
|
data class ServerTaskCompleteEvent(val taskDefinition: TaskDefinition, val result: JsonElement) : ServerEvent
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class ServerTaskErrorEvent(val taskDefinition: TaskDefinition, val message: String) : ServerEvent
|
Loading…
Reference in New Issue
Block a user