|
- using DotNetty.Buffers;
- using DotNetty.Transport.Channels;
- using Microsoft.Extensions.Logging;
- using NearCardAttendance.Common.helper;
- using NearCardAttendance.Service.TcpServer.Mapper;
- using NearCardAttendance.Service.TcpServer.Protocol;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace NearCardAttendance.Service.TcpServer.Handler
- {
- public class RegisterHandler : ChannelHandlerAdapter
- {
- private readonly ILogger<RegisterHandler> _logger;
- private readonly HttpHelper _httpHelper = default!;
- private readonly IDisposable _loggerScope = default!;
-
-
- private readonly TcpClientsManager _managerTcpClients;
- private readonly ScheduleResendManager _managerScheduleResend;
-
- public RegisterHandler(ILogger<RegisterHandler> logger,HttpHelper httpHelper)
- {
- _logger = logger;
- _httpHelper = httpHelper;
- }
-
- public override void ChannelActive(IChannelHandlerContext context)
- {
- base.ChannelActive(context);
- }
-
- public override async void ChannelInactive(IChannelHandlerContext context)
- {
- try
- {
-
- }
- catch (Exception ex)
- {
- _logger.LogInformation($"{nameof(RegisterHandler)} --- {nameof(ChannelInactive)} 出错\n{ex.Message}\n{ex.StackTrace}");
- }
- }
-
- public override void HandlerRemoved(IChannelHandlerContext context)
- {
- base.HandlerRemoved(context);
- }
-
- public override async void ChannelRead(IChannelHandlerContext context, object message)
- {
- if (message is ProtocolParser parser)
- {
- try
- {
- using (_logger.BeginScope(new Dictionary<string, object> { ["RequestId"] = parser.SeqNo }))
- {
-
- if (parser.FuncNo.Equals("10"))
- {
- #region 认证业务
-
- ProtocolWrapper phoneAuthWrapper = new(parser.FuncNo, parser.SeqNo, "1");
- await SendToTcpClientAsync(phoneAuthWrapper, context.Channel);
-
-
- await context.Channel.EventLoop.Schedule(async () =>
- {
- ProtocolWrapper abtStatusWrapper = new("82", parser.SeqNo, DateTime.Now.ToString("yyyyMMddHHmmss"));
- await SendToTcpClientAsync(abtStatusWrapper, context.Channel);
- },TimeSpan.FromSeconds(3));
-
- #endregion
- }
- else if (parser.FuncNo.Equals("82"))
- {
-
- _logger.LogInformation($"认证成功{parser.Data}.");
- }
-
- else if (parser.FuncNo.Equals("05"))
- {
- ProtocolWrapper stdtSignRecsWrapper = new(parser.FuncNo, parser.SeqNo,"");
- await SendToTcpClientAsync(stdtSignRecsWrapper, context.Channel);
- }
- else if (parser.FuncNo.Equals("04"))
- {
-
- ProtocolWrapper stdtSignRecsWrapper = new(parser.FuncNo, parser.SeqNo,"1");
- await SendToTcpClientAsync(stdtSignRecsWrapper, context.Channel);
-
-
-
-
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
- catch (Exception ex)
- {
- _logger.LogInformation($"{nameof(RegisterHandler)} --- {nameof(ChannelRead)} 处理消息 {parser.SeqNo} 出错\n{ex.Message}\n{ex.StackTrace}");
-
- }
-
- }
- }
-
-
-
-
-
-
- private async Task SendToTcpClientAsync(ProtocolWrapper wrapper, IChannel channel)
- {
-
- string protocolMsg = wrapper.GenerateProtocolString();
-
-
- await channel
- .WriteAndFlushAsync(Unpooled.WrappedBuffer(Encoding.UTF8.GetBytes(protocolMsg)))
- .ContinueWith(Action => {
- _logger.LogInformation($"{nameof(RegisterHandler)} -- {nameof(SendToTcpClientAsync)} -- 下发设备内容:\n{protocolMsg}");
- });
- }
-
- }
- }
|