LedNettyConfig.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package com.gzlh.device.led.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.StringDecoder;
  14. import io.netty.handler.codec.string.StringEncoder;
  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 javax.annotation.Resource;
  20. import java.nio.ByteBuffer;
  21. import java.nio.charset.Charset;
  22. import java.nio.charset.StandardCharsets;
  23. import java.util.concurrent.TimeUnit;
  24. @Configuration
  25. @Slf4j
  26. public class LedNettyConfig {
  27. @Autowired
  28. private LedClientHandler ledClientHandler;
  29. private Channel channel;
  30. @Bean("ledBootstrap")
  31. public Bootstrap bootstrap() {
  32. SerialSetting serialSetting= EventConfig.serialSetting;
  33. String host = serialSetting.getHost();
  34. int port = serialSetting.getLed().getPort();
  35. if (serialSetting.getLed().getEnable()) {
  36. log.info("初始化 led:{},{}", host, port);
  37. }
  38. EventLoopGroup group = new NioEventLoopGroup();
  39. return new Bootstrap()
  40. .group(group)
  41. .channel(NioSocketChannel.class)
  42. .remoteAddress(host, port)
  43. .option(ChannelOption.SO_KEEPALIVE, true)
  44. .handler(new ChannelInitializer<SocketChannel>() {
  45. @Override
  46. protected void initChannel(SocketChannel ch) {
  47. try {
  48. ChannelPipeline pipeline = ch.pipeline();
  49. pipeline.addLast( new NettyDecoder());
  50. pipeline.addLast( new StringEncoder(StandardCharsets.UTF_8));
  51. pipeline.addLast("handler", ledClientHandler);
  52. } catch (Exception e) {
  53. log.info("error connect:{}", e.getMessage());
  54. }
  55. }
  56. });
  57. }
  58. @Bean("ledClientHandler")
  59. public LedClientHandler ledClientHandler() {
  60. return new LedClientHandler(this);
  61. }
  62. public void connect() {
  63. SerialSetting serialSetting= EventConfig.serialSetting;
  64. String host = serialSetting.getHost();
  65. int port = serialSetting.getLed().getPort();
  66. ChannelFuture future = bootstrap().connect();
  67. future.addListener((ChannelFutureListener) future1 -> {
  68. if (future1.isSuccess()) {
  69. channel = future1.channel();
  70. log.info("led 串口服务器连接成功,{},{}", host, port);
  71. } else {
  72. log.error("-------------led 连接服务器失败,{},{}-----------,进行重连", host, port);
  73. future1.channel().eventLoop().schedule(this::connect, 5, TimeUnit.SECONDS);
  74. }
  75. });
  76. try {
  77. future.channel().closeFuture().sync();
  78. } catch (InterruptedException e) {
  79. e.printStackTrace();
  80. }
  81. }
  82. public void send(String message) {
  83. if (channel != null && channel.isActive()) {
  84. ByteBuf bufff = Unpooled.buffer();
  85. bufff.writeBytes(XorUtils.hexString2Bytes(message));
  86. channel.writeAndFlush(bufff);
  87. } else {
  88. log.error("未建立连接,无法发送消息");
  89. }
  90. }
  91. public void close() {
  92. if (channel != null) {
  93. channel.close();
  94. }
  95. }
  96. private byte[] hexStringToByteArray(String hexString) {
  97. int len = hexString.length();
  98. byte[] data = new byte[len / 2];
  99. for (int i = 0; i < len; i += 2) {
  100. data[i / 2] = (byte) ((Character.digit(hexString.charAt(i), 16) << 4)
  101. + Character.digit(hexString.charAt(i+1), 16));
  102. }
  103. return data;
  104. }
  105. }