|
|
|
@ -0,0 +1,46 @@
|
|
|
|
|
using DotNetty.Transport.Channels;
|
|
|
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
|
using HybirdFrameworkDriver.Session;
|
|
|
|
|
using log4net;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Service.Car.Msg.Car.Req;
|
|
|
|
|
using Service.Car.Msg.Host.Resp;
|
|
|
|
|
using Service.Car.Server;
|
|
|
|
|
|
|
|
|
|
namespace Service.Car.Handler;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Order(8)]
|
|
|
|
|
[Scope("InstancePerDependency")]
|
|
|
|
|
public class HeartExpandBeatMsgHandler : SimpleChannelInboundHandler<HeartExpandBeatMsg>, IBaseHandler
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(HeartExpandBeatMsgHandler));
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ctx"></param>
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, HeartExpandBeatMsg msg)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
Log.Info($"receive HeartBeatMsg = {JsonConvert.SerializeObject(msg)}");
|
|
|
|
|
IoSession? ioSession = CarServerMgr.CarServer?.SessionMgr.GetSession(ctx.Channel.Id.ToString());
|
|
|
|
|
if (ioSession != null && ioSession.Key != msg.CarNo)
|
|
|
|
|
{
|
|
|
|
|
CarServerMgr.CarServer?.SessionMgr.ChangeSessionKey(ioSession, msg.CarNo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ioSession == null)
|
|
|
|
|
{
|
|
|
|
|
ioSession = CarServerMgr.CarServer?.SessionMgr.GetSession(msg.CarNo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ioSession.BusinessMap.AddOrUpdate("HeartExpandBeatMsg", msg, ((s, o) => msg));
|
|
|
|
|
ioSession?.BusinessMap.AddOrUpdate("Connected", true, ((s, o) => true));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|