You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

5 months ago
using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac.Attribute;
using HybirdFrameworkCore.Utils;
using log4net;
using Newtonsoft.Json;
5 months ago
using Service.Charger.Client;
5 months ago
using Service.Charger.Msg.Charger.Req;
using Service.Charger.Msg.Charger.Resp;
namespace Service.Charger.Handler;
/// <summary>
/// 故障汇总 处理器
/// </summary>
[Order(8)]
[Scope("InstancePerDependency")]
public class SummaryFailuresReqHandler : SimpleChannelInboundHandler<SummaryFailuresReq>, IBaseHandler
{
/// <summary>
///
/// </summary>
5 months ago
private static readonly ILog Log = LogManager.GetLogger(typeof(SummaryFailuresReqHandler));
5 months ago
5 months ago
/// <summary>
///
/// </summary>
protected override void ChannelRead0(IChannelHandlerContext ctx, SummaryFailuresReq msg)
{
4 months ago
Log.Info("Summary of failures");
5 months ago
/*if (msg.Message.Length < 300)
{
Log.Error($"receive data err msg={JsonConvert.SerializeObject(msg)}");
return;
5 months ago
}*/
5 months ago
ClientMgr.PlcClient.Auto = msg.T3 == 1;
ClientMgr.PlcClient.Remote = msg.T3 == 1;
ClientMgr.PlcClient.Init = msg.T6 == 1;
2 months ago
5 months ago
}
}