commonMain.network.components.HeartbeatProcessor.kt Maven / Gradle / Ivy
/*
* Copyright 2019-2022 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/dev/LICENSE
*/
package net.mamoe.mirai.internal.network.components
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.TimeoutCancellationException
import net.mamoe.mirai.internal.network.component.ComponentKey
import net.mamoe.mirai.internal.network.handler.NetworkHandler
import net.mamoe.mirai.internal.network.protocol.packet.login.Heartbeat
import net.mamoe.mirai.internal.network.protocol.packet.login.StatSvc
internal interface HeartbeatProcessor {
/**
* @throws TimeoutCancellationException if timed out waiting for response.
* @throws CancellationException if [networkHandler] closed.
* @throws Exception any other exceptions considered critical internal error and will stop SSO (i.e. stop Bot).
*/
suspend fun doAliveHeartbeatNow(networkHandler: NetworkHandler)
/**
* @throws TimeoutCancellationException if timed out waiting for response.
* @throws CancellationException if [networkHandler] closed.
* @throws Exception any other exceptions considered critical internal error and will stop SSO (i.e. stop Bot).
*/
suspend fun doStatHeartbeatNow(networkHandler: NetworkHandler)
/**
* @throws TimeoutCancellationException if timed out waiting for response.
* @throws CancellationException if [networkHandler] closed.
* @throws Exception any other exceptions considered critical internal error and will stop SSO (i.e. stop Bot).
*/
suspend fun doRegisterNow(networkHandler: NetworkHandler): StatSvc.Register.Response
companion object : ComponentKey
}
internal class HeartbeatProcessorImpl : HeartbeatProcessor {
override suspend fun doStatHeartbeatNow(networkHandler: NetworkHandler) {
networkHandler.sendAndExpect(
StatSvc.SimpleGet(networkHandler.context.bot.client),
timeout = networkHandler.context[SsoProcessorContext].configuration.heartbeatTimeoutMillis,
attempts = 2
)
}
override suspend fun doAliveHeartbeatNow(networkHandler: NetworkHandler) {
networkHandler.sendAndExpect(
Heartbeat.Alive(networkHandler.context.bot.client),
timeout = networkHandler.context[SsoProcessorContext].configuration.heartbeatTimeoutMillis,
attempts = 2
)
}
override suspend fun doRegisterNow(networkHandler: NetworkHandler): StatSvc.Register.Response {
return networkHandler.context[SsoProcessor].sendRegister(networkHandler)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy