From e1f33158f2f3ffa7872c6ae7a2eee1393119a317 Mon Sep 17 00:00:00 2001 From: Graham Date: Fri, 12 Feb 2021 22:56:22 +0000 Subject: [PATCH] Throw an exception if the JS5 connection closes unexpectedly Signed-off-by: Graham --- .../archive/cache/Js5ChannelHandler.kt | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/archive/src/main/kotlin/org/openrs2/archive/cache/Js5ChannelHandler.kt b/archive/src/main/kotlin/org/openrs2/archive/cache/Js5ChannelHandler.kt index 937c8347..935e8d0f 100644 --- a/archive/src/main/kotlin/org/openrs2/archive/cache/Js5ChannelHandler.kt +++ b/archive/src/main/kotlin/org/openrs2/archive/cache/Js5ChannelHandler.kt @@ -42,6 +42,13 @@ public class Js5ChannelHandler( private val maxInFlightRequests: Int = 200, maxBuildAttempts: Int = 10 ) : SimpleChannelInboundHandler(Object::class.java) { + private enum class State { + ACTIVE, + CLIENT_OUT_OF_DATE, + RESUMING_CONTINUATION + } + + private var state = State.ACTIVE private val maxBuild = build + maxBuildAttempts private val inFlightRequests = mutableSetOf() private val pendingRequests = ArrayDeque() @@ -87,8 +94,19 @@ public class Js5ChannelHandler( } } + override fun channelInactive(ctx: ChannelHandlerContext) { + if (state == State.CLIENT_OUT_OF_DATE) { + state = State.ACTIVE + bootstrap.connect(hostname, port) + } else if (state != State.RESUMING_CONTINUATION) { + throw Exception("Connection closed unexpectedly") + } + } + override fun exceptionCaught(ctx: ChannelHandlerContext, cause: Throwable) { releaseGroups() + + state = State.RESUMING_CONTINUATION ctx.close() continuation.resumeWithException(cause) } @@ -112,8 +130,8 @@ public class Js5ChannelHandler( throw Exception("Failed to identify current version") } + state = State.CLIENT_OUT_OF_DATE ctx.close() - bootstrap.connect(hostname, port) } private fun handleResponse(ctx: ChannelHandlerContext, response: Js5Response) { @@ -147,6 +165,7 @@ public class Js5ChannelHandler( importer.setLastMasterIndexId(gameId, masterIndexId) } + state = State.RESUMING_CONTINUATION ctx.close() continuation.resume(Unit) }