From 74938bb253bcff008c0f301b60040b9ee2a6d61e Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Thu, 12 Aug 2021 20:30:53 +0200 Subject: [PATCH] Added CreateParty message. --- .../kotlin/world/phantasmal/psoserv/data/Account.kt | 3 ++- .../world/phantasmal/psoserv/data/AccountStore.kt | 4 ++-- .../world/phantasmal/psoserv/messages/BbMessages.kt | 4 ++++ .../world/phantasmal/psoserv/servers/BlockServer.kt | 4 ++++ .../world/phantasmal/psoserv/servers/Server.kt | 2 ++ .../phantasmal/psoserv/servers/SocketHandler.kt | 13 +++++++++++-- 6 files changed, 25 insertions(+), 5 deletions(-) diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/Account.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/Account.kt index a7b1434c..9fc2518c 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/Account.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/Account.kt @@ -10,7 +10,8 @@ class AccountData( private var loggedIn: Boolean, ) { /** - * All access to this class' properties must synchronize on this lock. + * All operations on this object must synchronize on this lock. All exposed data must be deeply + * immutable and represent a consistent snapshot of the object's state at the time of retrieval. */ private val lock = Any() private var _account = account diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/AccountStore.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/AccountStore.kt index da0fac66..2eb182c6 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/AccountStore.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/data/AccountStore.kt @@ -4,7 +4,7 @@ import mu.KLogger class AccountStore(private val logger: KLogger) { /** - * All access to this class' properties must synchronize on this lock. + * All operations on this object must synchronize on this lock. */ private val lock = Any() private var nextId: Long = 1L @@ -49,7 +49,7 @@ class AccountStore(private val logger: KLogger) { fun getPlayingAccountsForBlock(blockId: Int): List = synchronized(lock) { idToAccountData.values.asSequence() - .mapNotNull { it.playing } + .mapNotNull { it.playing } // Map before filtering to avoid race condition. .filter { it.blockId == blockId } .toList() } diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/messages/BbMessages.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/messages/BbMessages.kt index 1037f54f..803d5513 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/messages/BbMessages.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/messages/BbMessages.kt @@ -38,6 +38,7 @@ object BbMessageDescriptor : MessageDescriptor { 0x0093 -> BbMessage.Authenticate(buffer) 0x0095 -> BbMessage.GetCharData(buffer) 0x00A0 -> BbMessage.ShipList(buffer) + 0x00C1 -> BbMessage.CreateParty(buffer) 0x01DC -> BbMessage.GuildCardHeader(buffer) 0x02DC -> BbMessage.GuildCardChunk(buffer) 0x03DC -> BbMessage.GetGuildCardChunk(buffer) @@ -275,6 +276,9 @@ sealed class BbMessage(override val buffer: Buffer) : AbstractMessage(BB_HEADER_ ) } + // 0x00C1 + class CreateParty(buffer: Buffer) : BbMessage(buffer) + // 0x01DC class GuildCardHeader(buffer: Buffer) : BbMessage(buffer) { val guildCardSize: Int get() = int(4) diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/BlockServer.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/BlockServer.kt index 3cc2821a..d65af97c 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/BlockServer.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/BlockServer.kt @@ -123,6 +123,10 @@ class BlockServer( true } + is BbMessage.CreateParty -> { + true + } + is BbMessage.Disconnect -> { // Log out and disconnect. logOut() diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/Server.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/Server.kt index c0070d35..348cce2c 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/Server.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/Server.kt @@ -58,6 +58,8 @@ abstract class Server( // Retry after timeout. continue } catch (e: InterruptedException) { + Thread.currentThread().interrupt() + logger.error(e) { "Interrupted while trying to accept client connections on $bindPair, stopping." } diff --git a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/SocketHandler.kt b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/SocketHandler.kt index d479d40e..bdc02f3c 100644 --- a/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/SocketHandler.kt +++ b/psoserv/src/main/kotlin/world/phantasmal/psoserv/servers/SocketHandler.kt @@ -189,12 +189,18 @@ abstract class SocketHandler( } } } catch (e: InterruptedException) { - logger.error(e) { "Interrupted while listening to $name ($sockName), closing connection." } + Thread.currentThread().interrupt() + + logger.error(e) { + "Interrupted while listening to $name ($sockName), closing connection." + } } catch (e: SocketException) { // Don't log if we're not running anymore because that means this exception was probably // generated by a socket.close() call. if (running) { - logger.error(e) { "Error while listening to $name ($sockName), closing connection." } + logger.error(e) { + "Error while listening to $name ($sockName), closing connection." + } } } catch (e: Throwable) { logger.error(e) { "Error while listening to $name ($sockName), closing connection." } @@ -252,6 +258,9 @@ abstract class SocketHandler( socket.write(buffer, 0, buffer.size) } + protected fun isSockedClosed(): Boolean = + socket.isClosed + protected abstract fun processMessage(message: MessageType): ProcessResult protected open fun processRawBytes(buffer: Buffer, offset: Int, size: Int) {