2024-10-08 09:38:54 +08:00
|
|
|
|
/**
|
2025-03-04 10:42:17 +08:00
|
|
|
|
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
|
|
|
|
|
* 微信:mohan_88888
|
|
|
|
|
|
* 抖音:程序员三丙
|
|
|
|
|
|
* 付费课程知识星球:https://t.zsxq.com/aKtXo
|
2024-10-08 09:38:54 +08:00
|
|
|
|
*/
|
|
|
|
|
|
package sanbing.jcpp.protocol.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.Cache;
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.Caffeine;
|
|
|
|
|
|
import lombok.Getter;
|
|
|
|
|
|
import lombok.Setter;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
2025-09-12 14:40:18 +08:00
|
|
|
|
import sanbing.jcpp.proto.gen.DownlinkProto.DownlinkRequestMessage;
|
|
|
|
|
|
import sanbing.jcpp.proto.gen.UplinkProto.SessionCloseEventProto;
|
|
|
|
|
|
import sanbing.jcpp.proto.gen.UplinkProto.SessionCloseReason;
|
|
|
|
|
|
import sanbing.jcpp.proto.gen.UplinkProto.UplinkQueueMessage;
|
2024-10-08 09:38:54 +08:00
|
|
|
|
import sanbing.jcpp.protocol.forwarder.Forwarder;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.Closeable;
|
|
|
|
|
|
import java.time.Duration;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
import java.util.LinkedHashSet;
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
|
|
import java.util.concurrent.ScheduledFuture;
|
|
|
|
|
|
import java.util.function.Function;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2025-09-09 08:23:59 +00:00
|
|
|
|
* @author 九筒
|
2024-10-08 09:38:54 +08:00
|
|
|
|
*/
|
|
|
|
|
|
@Getter
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
|
public abstract class ProtocolSession implements Closeable {
|
|
|
|
|
|
|
|
|
|
|
|
private static final int REQUEST_CACHE_LIMIT = 1000;
|
|
|
|
|
|
|
|
|
|
|
|
protected final String protocolName;
|
|
|
|
|
|
|
|
|
|
|
|
protected final UUID id;
|
|
|
|
|
|
|
|
|
|
|
|
@Setter
|
|
|
|
|
|
protected LocalDateTime lastActivityTime;
|
|
|
|
|
|
|
|
|
|
|
|
protected final Set<String> pileCodeSet;
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, ScheduledFuture<?>> scheduledFutures = new ConcurrentHashMap<>();
|
|
|
|
|
|
|
|
|
|
|
|
private final Cache<String, Object> requestCache = Caffeine.newBuilder()
|
|
|
|
|
|
.initialCapacity(REQUEST_CACHE_LIMIT)
|
|
|
|
|
|
.maximumSize(REQUEST_CACHE_LIMIT)
|
|
|
|
|
|
.expireAfterAccess(Duration.ofMinutes(1))
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
|
|
@Setter
|
|
|
|
|
|
private Forwarder forwarder;
|
|
|
|
|
|
|
2024-10-22 17:11:05 +08:00
|
|
|
|
protected ProtocolSession(String protocolName) {
|
2024-10-08 09:38:54 +08:00
|
|
|
|
this.protocolName = protocolName;
|
|
|
|
|
|
this.pileCodeSet = new LinkedHashSet<>();
|
|
|
|
|
|
this.id = UUID.randomUUID();
|
|
|
|
|
|
this.lastActivityTime = LocalDateTime.now();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-10-22 17:11:05 +08:00
|
|
|
|
public abstract void onDownlink(DownlinkRequestMessage downlinkMsg);
|
2024-10-08 09:38:54 +08:00
|
|
|
|
|
2025-02-13 10:03:59 +08:00
|
|
|
|
@Override
|
2024-10-08 09:38:54 +08:00
|
|
|
|
public void close() {
|
2025-09-12 14:40:18 +08:00
|
|
|
|
close(SessionCloseReason.SESSION_CLOSE_DESTRUCTION);
|
2024-10-08 09:38:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-12 14:40:18 +08:00
|
|
|
|
public void close(SessionCloseReason reason) {
|
2024-10-08 09:38:54 +08:00
|
|
|
|
log.info("[{}] Protocol会话关闭,原因: {}", this, reason);
|
|
|
|
|
|
|
|
|
|
|
|
scheduledFutures.values().forEach(scheduledFuture -> scheduledFuture.cancel(true));
|
|
|
|
|
|
scheduledFutures.clear();
|
2025-09-09 08:23:59 +00:00
|
|
|
|
|
|
|
|
|
|
// 转发会话关闭事件到后端
|
|
|
|
|
|
if (forwarder != null && !pileCodeSet.isEmpty()) {
|
|
|
|
|
|
|
|
|
|
|
|
for (String pileCode : pileCodeSet) {
|
2025-09-12 14:40:18 +08:00
|
|
|
|
SessionCloseEventProto sessionCloseEvent = SessionCloseEventProto.newBuilder()
|
2025-09-09 08:23:59 +00:00
|
|
|
|
.setPileCode(pileCode)
|
|
|
|
|
|
.setReason(reason)
|
|
|
|
|
|
.setAdditionalInfo("Session closed: " + reason)
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
2025-09-12 14:40:18 +08:00
|
|
|
|
UplinkQueueMessage uplinkQueueMessage = UplinkQueueMessage.newBuilder()
|
2025-09-09 08:23:59 +00:00
|
|
|
|
.setMessageIdMSB(UUID.randomUUID().getMostSignificantBits())
|
|
|
|
|
|
.setMessageIdLSB(UUID.randomUUID().getLeastSignificantBits())
|
|
|
|
|
|
.setSessionIdMSB(id.getMostSignificantBits())
|
|
|
|
|
|
.setSessionIdLSB(id.getLeastSignificantBits())
|
|
|
|
|
|
.setMessageKey(pileCode + "_session_close")
|
|
|
|
|
|
.setProtocolName(protocolName)
|
|
|
|
|
|
.setSessionCloseEventProto(sessionCloseEvent)
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
forwarder.sendMessage(uplinkQueueMessage);
|
|
|
|
|
|
log.debug("[{}] 会话关闭事件已转发,桩编码: {}, 原因: {}", this, pileCode, reason);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
log.error("[{}] 转发会话关闭事件失败,桩编码: {}", this, pileCode, e);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-10-08 09:38:54 +08:00
|
|
|
|
}
|
2025-09-09 08:23:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
2024-10-08 09:38:54 +08:00
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
return "[" + id + "]" + pileCodeSet;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void addPileCode(String pileCode) {
|
|
|
|
|
|
this.pileCodeSet.add(pileCode);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void addSchedule(String name, Function<String, ScheduledFuture<?>> scheduledFutureFunction) {
|
|
|
|
|
|
scheduledFutures.computeIfAbsent(name, scheduledFutureFunction);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|