PlcClientHandler.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.gzlh.device.plc.client;
  2. import com.gzlh.config.ModuleEnum;
  3. import com.gzlh.device.plc.handler.PLCHadnler;
  4. import com.gzlh.utils.DeviceCache;
  5. import com.gzlh.utils.ModbusUtils;
  6. import io.netty.channel.ChannelHandler;
  7. import io.netty.channel.ChannelHandlerContext;
  8. import io.netty.channel.SimpleChannelInboundHandler;
  9. import lombok.extern.slf4j.Slf4j;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. @Slf4j
  12. @ChannelHandler.Sharable
  13. public class PlcClientHandler extends SimpleChannelInboundHandler<String> {
  14. private PlcNettyConfig ledNettyConfig;
  15. @Autowired
  16. private PLCHadnler plcHadnler;
  17. public PlcClientHandler(PlcNettyConfig ledNettyConfig) {
  18. this.ledNettyConfig = ledNettyConfig;
  19. }
  20. @Override
  21. protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
  22. // log.info("PLC 客户端收到消息:" + msg);
  23. // 修改设备状态信息
  24. DeviceCache.changeDeviceStatus(ModuleEnum.PLC_MODULE.getModuleEn(),1);
  25. // String crc = msg.substring(msg.length() - 4 );
  26. String data = msg.substring(0, msg.length() - 4);
  27. String str = ModbusUtils.buildRequestPacket(data);
  28. if (msg.equalsIgnoreCase(str)){
  29. plcHadnler.handlerMsg(msg);
  30. }
  31. }
  32. @Override
  33. public void channelInactive(ChannelHandlerContext ctx) throws Exception {
  34. log.error("PLC 客户端 连接断开,进行重连");
  35. // 断连设备状态设为0
  36. DeviceCache.changeDeviceStatus(ModuleEnum.PLC_MODULE.getModuleEn(),0);
  37. ledNettyConfig.connect();
  38. }
  39. @Override
  40. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
  41. cause.printStackTrace();
  42. ctx.close();
  43. }
  44. }