ElectronNettyConfig.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.gzlh.device.electron.client;
  2. import com.gzlh.bus.EventConfig;
  3. import com.gzlh.config.dto.SerialSetting;
  4. import com.gzlh.config.netty.NettyDecoder;
  5. import com.gzlh.utils.XorUtils;
  6. import io.netty.bootstrap.Bootstrap;
  7. import io.netty.buffer.ByteBuf;
  8. import io.netty.buffer.Unpooled;
  9. import io.netty.channel.*;
  10. import io.netty.channel.nio.NioEventLoopGroup;
  11. import io.netty.channel.socket.SocketChannel;
  12. import io.netty.channel.socket.nio.NioSocketChannel;
  13. import io.netty.handler.codec.string.StringEncoder;
  14. import io.netty.handler.timeout.IdleStateHandler;
  15. import lombok.extern.slf4j.Slf4j;
  16. import org.springframework.beans.factory.annotation.Autowired;
  17. import org.springframework.context.annotation.Bean;
  18. import org.springframework.context.annotation.Configuration;
  19. import java.nio.charset.StandardCharsets;
  20. import java.util.concurrent.TimeUnit;
  21. @Configuration
  22. @Slf4j
  23. public class ElectronNettyConfig {
  24. @Autowired
  25. private ElectronClientHandler electronClientHandler;
  26. private Channel channel;
  27. @Bean("electronBootstrap")
  28. public Bootstrap bootstrap() {
  29. SerialSetting serialSetting=EventConfig.serialSetting;
  30. String host = serialSetting.getHost();
  31. int port = serialSetting.getElectron().getPort();
  32. EventLoopGroup group = new NioEventLoopGroup();
  33. return new Bootstrap()
  34. .group(group)
  35. .channel(NioSocketChannel.class)
  36. .remoteAddress(host, port)
  37. .option(ChannelOption.SO_KEEPALIVE, true)
  38. .handler(new ChannelInitializer<SocketChannel>() {
  39. @Override
  40. protected void initChannel(SocketChannel ch) {
  41. try {
  42. ChannelPipeline pipeline = ch.pipeline();
  43. pipeline.addLast( new NettyDecoder());
  44. pipeline.addLast( new StringEncoder(StandardCharsets.UTF_8));
  45. pipeline.addLast( new IdleStateHandler(0, 5, 0));
  46. pipeline.addLast(electronClientHandler);
  47. } catch (Exception e) {
  48. log.info("error connect:{}", e.getMessage());
  49. }
  50. }
  51. });
  52. }
  53. @Bean("electronClientHandler")
  54. public ElectronClientHandler electronClientHandler() {
  55. return new ElectronClientHandler(this);
  56. }
  57. public void connect() {
  58. SerialSetting serialSetting=EventConfig.serialSetting;
  59. String host = serialSetting.getHost();
  60. int port = serialSetting.getElectron().getPort();
  61. ChannelFuture future = bootstrap().connect();
  62. future.addListener((ChannelFutureListener) future1 -> {
  63. if (future1.isSuccess()) {
  64. channel = future1.channel();
  65. log.info("电子车牌 串口服务器连接成功,{},{}", host, port);
  66. } else {
  67. log.error("-------------电子车牌 连接服务器失败,{},{}-----------,进行重连", host, port);
  68. future1.channel().eventLoop().schedule(this::connect, 5, TimeUnit.SECONDS);
  69. }
  70. });
  71. try {
  72. future.channel().closeFuture().sync();
  73. } catch (InterruptedException e) {
  74. e.printStackTrace();
  75. }
  76. }
  77. public void send(String message) {
  78. // 获取版本号指令作为心跳信息 不显示
  79. if (!message.equals("400202BC")){
  80. log.info("电子车牌发送命令:{}",message);
  81. }
  82. if (channel != null && channel.isActive()) {
  83. ByteBuf bufff = Unpooled.buffer();
  84. bufff.writeBytes(XorUtils.hexString2Bytes(message));
  85. channel.writeAndFlush(bufff);
  86. } else {
  87. log.error("未建立连接,无法发送消息");
  88. }
  89. }
  90. public void close() {
  91. if (channel != null) {
  92. channel.close();
  93. }
  94. }
  95. }