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.

56 lines
1.8 KiB

5 months ago
using System.Text;
using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac.Attribute;
using log4net;
5 months ago
using Repository.Station;
5 months ago
using Service.Charger.Client;
5 months ago
using Service.Charger.Msg.Charger.Req;
5 months ago
namespace Service.Charger.Handler
{
/// <summary>
/// 3.4.4 充放电机应答辅助控制
/// <code>
/// 1保存日志到log
/// </code>
/// </summary>
[Order(8)]
[Scope("InstancePerDependency")]
5 months ago
public class QueryBatterySnResHandler : SimpleChannelInboundHandler<QueryBatterySnRes>, IBaseHandler
5 months ago
{
5 months ago
private static readonly ILog Log = LogManager.GetLogger(typeof(QueryBatterySnResHandler));
private BinInfoRepository _binInfoRepository;
public QueryBatterySnResHandler(BinInfoRepository binInfoRepository)
{
_binInfoRepository = binInfoRepository;
}
5 months ago
protected override void ChannelRead0(IChannelHandlerContext ctx, QueryBatterySnRes msg)
{
if (ClientMgr.TryGetClient(ctx.Channel, out var sn, out var client))
{
StringBuilder sb = new StringBuilder(27);
foreach (var b in msg.BatterSnBytes)
{
sb.Append(Convert.ToChar(b));
}
5 months ago
client.BatteryNo = sb.ToString();
client.BatteryFactory = msg.BatterFactory;
if (_binInfoRepository.Update(t => t.BatteryNo == client.BatteryNo, t => t.No == client.BinNo) > 0)
{
Log.Info($"succeed update battery no {client.BatteryNo} for {client.BinNo}");
}
else
{
Log.Info($"fail update battery no {client.BatteryNo} for {client.BinNo}");
}
5 months ago
Log.Info($"receive {msg} from {sn}");
}
}
}
}