luoguangyi 3 rokov pred
rodič
commit
b9db02b75b
89 zmenil súbory, kde vykonal 15973 pridanie a 0 odobranie
  1. 42 0
      .gitignore
  2. 231 0
      pom.xml
  3. 28 0
      src/main/java/com/SimulatorApplication.java
  4. 52 0
      src/main/java/com/persagy/communication/entity/Packet.java
  5. 17 0
      src/main/java/com/persagy/communication/entity/PacketEntity.java
  6. 19 0
      src/main/java/com/persagy/communication/entity/UDPSendEntity.java
  7. 69 0
      src/main/java/com/persagy/communication/mina/codec/MinaCodecFactory.java
  8. 95 0
      src/main/java/com/persagy/communication/mina/codec/MinaPacketDecoder.java
  9. 91 0
      src/main/java/com/persagy/communication/mina/codec/MinaPacketEncoder.java
  10. 75 0
      src/main/java/com/persagy/communication/mina/tcp/client/TCPClientIoHandler.java
  11. 424 0
      src/main/java/com/persagy/communication/mina/tcp/client/TCPClientManager.java
  12. 95 0
      src/main/java/com/persagy/communication/mina/tcp/server/TCPServerIoHandler.java
  13. 444 0
      src/main/java/com/persagy/communication/mina/tcp/server/TCPServerManager.java
  14. 74 0
      src/main/java/com/persagy/communication/mina/udp/client/UDPClientIoHandler.java
  15. 212 0
      src/main/java/com/persagy/communication/mina/udp/client/UDPClientManager.java
  16. 96 0
      src/main/java/com/persagy/communication/mina/udp/server/UDPServerIoHandler.java
  17. 208 0
      src/main/java/com/persagy/communication/mina/udp/server/UDPServerManager.java
  18. 89 0
      src/main/java/com/persagy/communication/netty/codec/NettyPacketDecoder.java
  19. 79 0
      src/main/java/com/persagy/communication/netty/codec/NettyPacketEncoder.java
  20. 58 0
      src/main/java/com/persagy/communication/netty/tcp/client/ClientChannelInitializer.java
  21. 71 0
      src/main/java/com/persagy/communication/netty/tcp/client/NettyTCPClientHandler.java
  22. 387 0
      src/main/java/com/persagy/communication/netty/tcp/client/NettyTCPClientManager.java
  23. 95 0
      src/main/java/com/persagy/communication/netty/tcp/server/NettyTCPServerHandler.java
  24. 418 0
      src/main/java/com/persagy/communication/netty/tcp/server/NettyTCPServerManager.java
  25. 50 0
      src/main/java/com/persagy/communication/netty/tcp/server/SSLHandshakeListener.java
  26. 61 0
      src/main/java/com/persagy/communication/netty/tcp/server/ServerChannelInitializer.java
  27. 80 0
      src/main/java/com/persagy/communication/netty/udp/client/NettyUDPClientHandler.java
  28. 217 0
      src/main/java/com/persagy/communication/netty/udp/client/NettyUDPClientManager.java
  29. 78 0
      src/main/java/com/persagy/communication/netty/udp/server/NettyUDPServerHandler.java
  30. 199 0
      src/main/java/com/persagy/communication/netty/udp/server/NettyUDPServerManager.java
  31. 192 0
      src/main/java/com/persagy/communication/nio/tcp/client/NIOTCPClientManager.java
  32. 172 0
      src/main/java/com/persagy/communication/nio/tcp/client/NIOTCPClientThread.java
  33. 226 0
      src/main/java/com/persagy/communication/nio/tcp/server/NIOTCPServerManager.java
  34. 224 0
      src/main/java/com/persagy/communication/nio/tcp/server/NIOTCPServerThread.java
  35. 112 0
      src/main/java/com/persagy/communication/nio/udp/client/NIOUDPClientManager.java
  36. 149 0
      src/main/java/com/persagy/communication/nio/udp/client/NIOUDPClientThread.java
  37. 168 0
      src/main/java/com/persagy/communication/nio/udp/server/NIOUDPServerManager.java
  38. 161 0
      src/main/java/com/persagy/communication/nio/udp/server/NIOUDPServerThread.java
  39. 56 0
      src/main/java/com/persagy/communication/util/AESHelper.java
  40. 225 0
      src/main/java/com/persagy/communication/util/ASampleMain.java
  41. 185 0
      src/main/java/com/persagy/communication/util/CompressUtil.java
  42. 44 0
      src/main/java/com/persagy/communication/util/FileToByte.java
  43. 114 0
      src/main/java/com/persagy/communication/util/HexToByte.java
  44. 12 0
      src/main/java/com/persagy/communication/util/IClientHandler.java
  45. 28 0
      src/main/java/com/persagy/communication/util/IClientManager.java
  46. 13 0
      src/main/java/com/persagy/communication/util/IServerHandler.java
  47. 34 0
      src/main/java/com/persagy/communication/util/IServerManager.java
  48. 157 0
      src/main/java/com/persagy/communication/util/MyDecoder.java
  49. 152 0
      src/main/java/com/persagy/communication/util/MyEncoder.java
  50. 95 0
      src/main/java/com/persagy/communication/util/MySslContextFactory.java
  51. 118 0
      src/main/java/com/persagy/communication/util/MyStream.java
  52. 46 0
      src/main/java/com/persagy/communication/util/PacketBuffer.java
  53. 13 0
      src/main/java/com/persagy/constant/Constant.java
  54. 29 0
      src/main/java/com/persagy/entity/ValueObject.java
  55. 122 0
      src/main/java/com/persagy/parser/DatagramParser.java
  56. 22 0
      src/main/java/com/persagy/parser/ParserEntity.java
  57. 28 0
      src/main/java/com/persagy/parser/RecordData.java
  58. 1876 0
      src/main/java/com/persagy/simulator/MeterSimulatorLexer.java
  59. 1781 0
      src/main/java/com/persagy/simulator/MeterSimulatorParser.java
  60. 977 0
      src/main/java/com/persagy/simulator/MeterSimulatorScanner.java
  61. 1068 0
      src/main/java/com/persagy/simulator/MeterSimulatorWalker.java
  62. 40 0
      src/main/java/com/persagy/simulator_gaopin/BKDRHash.java
  63. 533 0
      src/main/java/com/persagy/simulator_gaopin/Constant.java
  64. 8 0
      src/main/java/com/persagy/simulator_gaopin/DoubleTimeObject.java
  65. 13 0
      src/main/java/com/persagy/simulator_gaopin/EntityBuilding.java
  66. 20 0
      src/main/java/com/persagy/simulator_gaopin/EntityGroup.java
  67. 157 0
      src/main/java/com/persagy/simulator_gaopin/MixClientManager.java
  68. 84 0
      src/main/java/com/persagy/simulator_gaopin/MyMqttCallback.java
  69. 15 0
      src/main/java/com/persagy/simulator_gaopin/PacketRepository.java
  70. 70 0
      src/main/java/com/persagy/simulator_gaopin/SimulatorMain_collector.java
  71. 206 0
      src/main/java/com/persagy/simulator_gaopin/SimulatorUtil.java
  72. 148 0
      src/main/java/com/persagy/simulator_gaopin/Thread_report.java
  73. 116 0
      src/main/java/com/persagy/simulator_gaopin/Thread_set.java
  74. 338 0
      src/main/java/com/persagy/util/DateUtils.java
  75. 10 0
      src/main/java/com/persagy/util/ExcelSheet.java
  76. 304 0
      src/main/java/com/persagy/util/ExcelUtil.java
  77. 101 0
      src/main/java/com/persagy/util/FastJsonReaderUtil.java
  78. 566 0
      src/main/java/com/persagy/util/FastJsonUtil.java
  79. 114 0
      src/main/java/com/persagy/util/FunctionUtil.java
  80. 25 0
      src/main/java/com/persagy/util/PacketNumGenerator.java
  81. 93 0
      src/main/java/com/persagy/util/ProcessUtil.java
  82. 32 0
      src/main/java/com/persagy/util/SetData.java
  83. 94 0
      src/main/java/com/persagy/util/ValueObjectUtil.java
  84. 44 0
      src/main/resources/config.xml
  85. 56 0
      src/main/resources/formula-param.json
  86. 15 0
      src/main/resources/formula.json
  87. 18 0
      src/main/resources/log4j.properties
  88. BIN
      src/main/resources/report.xlsx
  89. BIN
      src/main/resources/set.xlsx

+ 42 - 0
.gitignore

@@ -0,0 +1,42 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**
+!**/src/test/**
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+
+### VS Code ###
+.vscode/
+
+### JRebel ###
+rebel.xml
+rebel-remote.xml
+
+### Others ###
+*.log
+*/log
+
+demo/
+spring-cloud-alibaba-examples/

+ 231 - 0
pom.xml

@@ -0,0 +1,231 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>com.persagy</groupId>
+    <artifactId>simulator-collector</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+    <packaging>jar</packaging>
+
+    <name>simulator-collector</name>
+    <url>http://maven.apache.org</url>
+
+    <properties>
+        <java.version>1.8</java.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+        <knife4j.version>3.0.3</knife4j.version>
+        <swagger-annotations.version>1.5.22</swagger-annotations.version>
+        <spring-boot.version>2.4.2</spring-boot.version>
+    </properties>
+    <repositories>
+        <repository>
+            <id>SagaCloud</id>
+            <name>SagaCloud</name>
+            <url>http://47.93.33.207:8082/repository/SagaCloud/</url>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </repository>
+        <repository>
+            <id>alimaven</id>
+            <name>aliyun maven</name>
+            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
+        </repository>
+        <repository>
+            <id>mvnrepository</id>
+            <url>https://mvnrepository.com/</url>
+        </repository>
+        <repository>
+            <id>sonatype-nexus-snapshots</id>
+            <name>Sonatype Nexus Snapshots</name>
+            <url>http://oss.sonatype.org/content/repositories/snapshots</url>
+        </repository>
+    </repositories>
+    <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter</artifactId>
+            <version>${spring-boot.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+            <version>${spring-boot.version}</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>hibernate-validator</artifactId>
+                    <groupId>org.hibernate.validator</groupId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!--		<dependency>-->
+        <!--			<groupId>jdk.tools</groupId>-->
+        <!--			<artifactId>jdk.tools</artifactId>-->
+        <!--			<version>1.8</version>-->
+        <!--			<scope>system</scope>-->
+        <!--			<systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>-->
+        <!--		</dependency>-->
+
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.17</version>
+        </dependency>
+        <dependency>
+            <groupId>dom4j</groupId>
+            <artifactId>dom4j</artifactId>
+            <version>1.6.1</version>
+        </dependency>
+        <dependency>
+            <groupId>jaxen</groupId>
+            <artifactId>jaxen</artifactId>
+            <version>1.1.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.mina</groupId>
+            <artifactId>mina-core</artifactId>
+            <version>2.1.5</version>
+        </dependency>
+        <!--lombok -->
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+            <optional>true</optional>
+            <version>1.18.12</version>
+        </dependency>
+        <dependency>
+            <groupId>cn.hutool</groupId>
+            <artifactId>hutool-all</artifactId>
+            <version>5.5.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi</artifactId>
+            <version>3.9</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi-ooxml</artifactId>
+            <version>3.9</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.antlr</groupId>
+            <artifactId>antlr-runtime</artifactId>
+            <version>3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>com.alibaba</groupId>
+            <artifactId>fastjson</artifactId>
+            <version>1.2.70</version>
+        </dependency>
+        <!-- netty 实现websocket -->
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-all</artifactId>
+            <version>4.1.62.Final</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.paho</groupId>
+            <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
+            <version>1.2.5</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <finalName>${project.artifactId}</finalName>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.8.1</version>
+                <configuration>
+                    <source>8</source>
+                    <target>8</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <version>2.4.2</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>repackage</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <!--拷贝资源文件 copy-resources-->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>2.6</version>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <resources>
+                                <resource>
+                                    <directory>src/main/resources/</directory>
+                                    <includes>
+                                        <include>*.properties</include>
+                                        <include>*.xml</include>
+                                        <include>*.json</include>
+                                    </includes>
+                                </resource>
+                            </resources>
+                            <outputDirectory>${project.build.directory}/config</outputDirectory>
+                        </configuration>
+                    </execution>
+                    <!--拷贝启动脚本-->
+                    <execution>
+                        <id>copy-version</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <resources>
+                                <resource>
+                                    <directory>src/script</directory>
+                                </resource>
+                            </resources>
+                            <outputDirectory>${project.build.directory}</outputDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+
+
+
+
+
+
+    <distributionManagement>
+        <repository>
+            <id>SagaCloudRelease</id>
+            <name>User Project Release</name>
+            <url>http://47.93.33.207:8082/repository/SagaCloudRelease/</url>
+        </repository>
+
+        <snapshotRepository>
+            <id>SagaCloudRelease</id>
+            <name>User Project SNAPSHOTS</name>
+            <url>http://47.93.33.207:8082/repository/SagaCloudSnapshot/</url>
+        </snapshotRepository>
+    </distributionManagement>
+
+</project>

+ 28 - 0
src/main/java/com/SimulatorApplication.java

@@ -0,0 +1,28 @@
+package com;
+
+import com.persagy.simulator_gaopin.SimulatorMain_collector;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.web.servlet.ServletComponentScan;
+
+import javax.servlet.ServletContextEvent;
+import javax.servlet.ServletContextListener;
+
+@SpringBootApplication
+@ServletComponentScan
+public class SimulatorApplication implements ServletContextListener {
+
+    public static void main(String[] args) {
+        SpringApplication.run(SimulatorApplication.class, args);
+    }
+    @Override
+    public void contextInitialized(ServletContextEvent sce) {
+        try {
+            SimulatorMain_collector.main(null);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+        System.out.println("----------contextInitialize end--------------");
+    }
+}

+ 52 - 0
src/main/java/com/persagy/communication/entity/Packet.java

@@ -0,0 +1,52 @@
+package com.persagy.communication.entity;
+
+import cn.hutool.core.util.StrUtil;
+import com.alibaba.fastjson.JSONObject;
+
+import java.util.Date;
+
+public class Packet {
+    public String packetString;
+    public byte[] packetBytes;
+    public Date time = new Date();
+
+    public Packet(String packetString) {
+        this.packetString = StrUtil.trim(packetString);
+    }
+
+    public Packet(byte[] packetBytes) {
+        this.packetBytes = packetBytes;
+    }
+
+    public Packet() {
+    }
+
+    public String getPacketString() {
+        return packetString;
+    }
+
+    public void setPacketString(String packetString) {
+        this.packetString = StrUtil.trim(packetString);
+    }
+
+    public byte[] getPacketBytes() {
+        return packetBytes;
+    }
+
+    public void setPacketBytes(byte[] packetBytes) {
+        this.packetBytes = packetBytes;
+    }
+
+    public Date getTime() {
+        return time;
+    }
+
+    public void setTime(Date time) {
+        this.time = time;
+    }
+
+    @Override
+    public String toString() {
+        return JSONObject.toJSONString(this);
+    }
+}

+ 17 - 0
src/main/java/com/persagy/communication/entity/PacketEntity.java

@@ -0,0 +1,17 @@
+package com.persagy.communication.entity;
+
+import com.alibaba.fastjson.JSONObject;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+@Data
+@NoArgsConstructor
+public class PacketEntity {
+    public String address;
+    public Packet content;
+
+    @Override
+    public String toString() {
+        return JSONObject.toJSONString(this);
+    }
+}

+ 19 - 0
src/main/java/com/persagy/communication/entity/UDPSendEntity.java

@@ -0,0 +1,19 @@
+package com.persagy.communication.entity;
+
+import com.alibaba.fastjson.JSONObject;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.net.SocketAddress;
+
+@Data
+@NoArgsConstructor
+public class UDPSendEntity {
+    public SocketAddress address;
+    public Packet content;
+
+    @Override
+    public String toString() {
+        return JSONObject.toJSONString(this);
+    }
+}

+ 69 - 0
src/main/java/com/persagy/communication/mina/codec/MinaCodecFactory.java

@@ -0,0 +1,69 @@
+package com.persagy.communication.mina.codec;
+
+
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolDecoder;
+import org.apache.mina.filter.codec.ProtocolEncoder;
+
+import java.util.List;
+
+public class MinaCodecFactory implements ProtocolCodecFactory {
+    private final ProtocolEncoder encoder;
+    private final ProtocolDecoder decoder;
+
+    public MinaCodecFactory(String ip, int port, String encoding, String aes_password, boolean compress) {
+        encoder = new MinaPacketEncoder(ip, port, encoding, aes_password, compress);
+        decoder = new MinaPacketDecoder(ip, port, encoding, aes_password, compress);
+    }
+
+    public MinaCodecFactory(String ip, int port, String encoding, String aes_password, boolean compress, byte prefix,
+                            byte suffix) {
+        encoder = new MinaPacketEncoder(ip, port, encoding, aes_password, compress, prefix, suffix);
+        decoder = new MinaPacketDecoder(ip, port, encoding, aes_password, compress, prefix, suffix);
+    }
+
+    public MinaCodecFactory(String ip, int port, String encoding, String aes_password, boolean compress,
+                            byte[] prefixBytes, byte[] suffixBytes) {
+        encoder = new MinaPacketEncoder(ip, port, encoding, aes_password, compress, prefixBytes, suffixBytes);
+        decoder = new MinaPacketDecoder(ip, port, encoding, aes_password, compress, prefixBytes, suffixBytes);
+    }
+
+    public static void add_forbit_byte(byte b, List<Byte> byteList) {
+        boolean exist = false;
+        for (Byte bb : byteList) {
+            if (bb == b) {
+                exist = true;
+                break;
+            }
+        }
+        if (!exist) {
+            byteList.add(b);
+        }
+    }
+
+    public static void add_forbit_bytes(byte[] bytes, List<Byte> byteList) {
+        for (byte b : bytes) {
+            boolean exist = false;
+            for (Byte bb : byteList) {
+                if (bb == b) {
+                    exist = true;
+                    break;
+                }
+            }
+            if (!exist) {
+                byteList.add(b);
+            }
+        }
+    }
+
+    @Override
+    public ProtocolEncoder getEncoder(IoSession ioSession) throws Exception {
+        return encoder;
+    }
+
+    @Override
+    public ProtocolDecoder getDecoder(IoSession ioSession) throws Exception {
+        return decoder;
+    }
+}

+ 95 - 0
src/main/java/com/persagy/communication/mina/codec/MinaPacketDecoder.java

@@ -0,0 +1,95 @@
+package com.persagy.communication.mina.codec;
+
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.MyDecoder;
+import org.apache.mina.core.buffer.IoBuffer;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.CumulativeProtocolDecoder;
+import org.apache.mina.filter.codec.ProtocolDecoderOutput;
+
+import java.util.List;
+
+public class MinaPacketDecoder extends CumulativeProtocolDecoder {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    MyDecoder decoder;
+
+    public MinaPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = false;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public MinaPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress, byte prefix,
+                             byte suffix) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public MinaPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress,
+                             byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    @Override
+    public boolean doDecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) throws Exception {
+        int remainingLength = in.remaining();
+        byte[] remainingBytes = new byte[remainingLength];
+        for (int i = 0; i < remainingLength; i++) {
+            remainingBytes[i] = in.get();
+        }
+
+        String remoteAddress = session.getRemoteAddress().toString();
+        List<Packet> packetList = this.decoder.decode(remoteAddress, remainingBytes);
+        for (int i = 0; i < packetList.size(); i++) {
+            Packet packet = packetList.get(i);
+            out.write(packet);
+        }
+        return true;
+    }
+}

+ 91 - 0
src/main/java/com/persagy/communication/mina/codec/MinaPacketEncoder.java

@@ -0,0 +1,91 @@
+package com.persagy.communication.mina.codec;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.MyEncoder;
+import org.apache.mina.core.buffer.IoBuffer;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolEncoder;
+import org.apache.mina.filter.codec.ProtocolEncoderOutput;
+
+public class MinaPacketEncoder implements ProtocolEncoder {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    MyEncoder encoder;
+
+    public MinaPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = false;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public MinaPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress, byte prefix,
+                             byte suffix) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public MinaPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress,
+                             byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    @Override
+    public synchronized void encode(IoSession session, Object message, ProtocolEncoderOutput out) throws Exception {
+        Packet request = (Packet) message;
+        byte[] comm_bytes = this.encoder.encode(request);
+        int comm_length = comm_bytes.length;
+        IoBuffer buffer = IoBuffer.allocate(comm_length, false);
+        buffer.put(comm_bytes);
+        buffer.flip();
+        out.write(buffer);
+    }
+
+    @Override
+    public void dispose(IoSession session) throws Exception {
+        // nothing to dispose
+    }
+}

+ 75 - 0
src/main/java/com/persagy/communication/mina/tcp/client/TCPClientIoHandler.java

@@ -0,0 +1,75 @@
+package com.persagy.communication.mina.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.constant.Constant;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.service.IoHandlerAdapter;
+import org.apache.mina.core.session.IdleStatus;
+import org.apache.mina.core.session.IoSession;
+
+@Slf4j
+public class TCPClientIoHandler extends IoHandlerAdapter {
+    TCPClientManager manager;
+
+    public TCPClientIoHandler(TCPClientManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void sessionCreated(IoSession session) throws Exception {
+        log.info(this.manager.Name() + "\tsessionCreated");
+    }
+
+    @Override
+    public void sessionOpened(IoSession session) throws Exception {
+        this.manager.SetSessionClosed(false);
+        log.warn(this.manager.Name() + "\tsessionOpened");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened();
+        }
+    }
+
+    @Override
+    public void sessionClosed(IoSession session) throws Exception {
+        this.manager.SetSessionClosed(true);
+        log.warn(this.manager.Name() + "\tsessionClosed");
+        this.manager.Stop();
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed();
+        }
+    }
+
+    @Override
+    public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
+        log.warn("{}会话{}断开,{}", this.manager.Name(), session, cause);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(cause);
+        }
+    }
+
+    @Override
+    public void sessionIdle(IoSession session, IdleStatus status) throws Exception {
+        log.warn(this.manager.Name() + "\tsessionIdle");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionIdle();
+        }
+        session.closeNow();
+    }
+
+    @Override
+    public void messageReceived(IoSession session, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        this.manager.AppendToRece(packet);
+        if(Constant.iotLog){
+            log.info("{}\trece\t{}",this.manager.Name(), packet.packetString);
+        }
+    }
+
+    @Override
+    public void messageSent(IoSession session, Object message) throws Exception {
+        if(Constant.iotLog){
+            Packet packet = (Packet) message;
+            log.info("{}\tsend\t{}",this.manager.Name(), packet.packetString);
+        }
+    }
+}

+ 424 - 0
src/main/java/com/persagy/communication/mina/tcp/client/TCPClientManager.java

@@ -0,0 +1,424 @@
+package com.persagy.communication.mina.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import com.persagy.communication.util.IClientHandler;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.communication.util.MySslContextFactory;
+import com.persagy.communication.util.PacketBuffer;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.future.ConnectFuture;
+import org.apache.mina.core.service.IoConnector;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolCodecFilter;
+import org.apache.mina.filter.ssl.SslFilter;
+import org.apache.mina.transport.socket.nio.NioSocketConnector;
+
+import java.net.InetSocketAddress;
+
+@Slf4j
+@Data
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class TCPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+    String ip;
+    int port;
+    String encoding;
+    String ssl_protocol;
+    String ssl_keystoretype;
+    String ssl_algorithm;
+    byte[] ssl_file_km;
+    String ssl_password_km;
+    byte[] ssl_file_tm;
+    String ssl_password_tm;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    Integer IdleTime = null;
+    boolean sessionClosed = false;
+    IClientHandler handlerManager;
+    IoSession session;
+    IoConnector connector;
+    String localAddress = "()";
+    int remark_count = 0;
+
+    public TCPClientManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                            byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+        this.separateBytes = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                            byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                            byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+        this.separateBytes = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+        this.separateBytes = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+
+    @Override
+    public String Name() {
+        return "TCP Client " + this.ip + ":" + this.port + localAddress;
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.session == null) {
+            try {
+                IoConnector connectorInner = new NioSocketConnector();
+                ProtocolCodecFactory factory;
+                if (this.separate) {
+                    if (this.separateBytes) {
+                        factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password,
+                                this.compress, this.prefixBytes, this.suffixBytes);
+                    } else {
+                        factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password,
+                                this.compress, this.prefix, this.suffix);
+                    }
+                } else {
+                    factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password, this.compress);
+                }
+                if (this.ssl_file_km != null || this.ssl_file_tm != null) {
+                    SslFilter sslFilter = new SslFilter(
+                            MySslContextFactory.getContext(this.ssl_protocol, this.ssl_keystoretype, this.ssl_algorithm,
+                                    this.ssl_file_km, this.ssl_file_tm, this.ssl_password_km, this.ssl_password_tm));
+                    sslFilter.setUseClientMode(true);
+                    connectorInner.getFilterChain().addFirst("sslFilter", sslFilter);
+                }
+                connectorInner.getFilterChain().addLast("codec", new ProtocolCodecFilter(factory));
+                connectorInner.setHandler(new TCPClientIoHandler(this));
+                if (this.IdleTime != null) {
+                    connectorInner.getSessionConfig().setBothIdleTime(this.IdleTime);
+                }
+                int readBufferSize = connectorInner.getSessionConfig().getReadBufferSize();
+                connectorInner.getSessionConfig().setReadBufferSize(20480);
+                log.info("readBufferSize:{}", readBufferSize);
+
+                ConnectFuture connectFuture = connectorInner.connect(new InetSocketAddress(this.ip, this.port));
+                connectFuture.awaitUninterruptibly();
+                if (connectFuture.isDone()) {
+                    if (connectFuture.isConnected()) {
+                        this.session = connectFuture.getSession();
+                        this.localAddress = "(" + this.session.getLocalAddress().toString() + ")";
+                        this.connector = connectorInner;
+                    } else {
+                        connectorInner.dispose();
+                        throw new Exception(this.ip + ":" + this.port + "连接失败!");
+                    }
+                } else {
+                    connectorInner.dispose();
+                    throw new Exception();
+                }
+
+                log.warn(this.Name() + "\tStart");
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (this.session != null) {
+            // CloseFuture closeFuture = this.session.close(true);
+            // closeFuture.awaitUninterruptibly();
+            this.session.closeNow();
+            this.session = null;
+
+            this.connector.dispose();
+            this.connector = null;
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet MyPackage) {
+        if (this.session == null) {
+            this.Start();
+        }
+        if (this.session != null) {
+            this.session.write(MyPackage);
+        }
+    }
+
+    public void AppendToRece(Packet MyPackage) {
+        this.receList.offer(MyPackage, this.Max_size);
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet MyPackage = this.receList.poll();
+        return MyPackage;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+
+}

+ 95 - 0
src/main/java/com/persagy/communication/mina/tcp/server/TCPServerIoHandler.java

@@ -0,0 +1,95 @@
+package com.persagy.communication.mina.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.constant.Constant;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.service.IoHandlerAdapter;
+import org.apache.mina.core.session.IdleStatus;
+import org.apache.mina.core.session.IoSession;
+
+import java.net.SocketAddress;
+import java.util.Date;
+
+@Slf4j
+public class TCPServerIoHandler extends IoHandlerAdapter {
+    TCPServerManager manager;
+
+    public TCPServerIoHandler(TCPServerManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void sessionCreated(IoSession session) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        log.info(this.manager.Name() + "\tsessionCreated\t" + remoteAddress);
+    }
+
+    @Override
+    public void sessionOpened(IoSession session) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, new Date());
+        if (!this.manager.socketMap.containsKey(remoteAddress)) {
+            this.manager.socketMap.put(remoteAddress, session);
+        }
+        log.warn(this.manager.Name() + "\tsessionOpened\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened(session.getRemoteAddress());
+        }
+    }
+
+    @Override
+    public void sessionClosed(IoSession session) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, null);
+        this.manager.socketMap.remove(remoteAddress);
+        log.warn(this.manager.Name() + "\tsessionClosed\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed(session.getRemoteAddress());
+        }
+        super.sessionClosed(session);
+    }
+
+    @Override
+    public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(session.getRemoteAddress(), cause);
+        }
+        log.error(this.manager.Name() + "\texceptionCaught\t" + session.getRemoteAddress());
+        log.error(cause.getMessage(), cause);
+    }
+
+    @Override
+    public void sessionIdle(IoSession session, IdleStatus status) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        log.warn(this.manager.Name() + "\tsessionIdle\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionIdle(session.getRemoteAddress());
+        }
+        session.closeNow();
+    }
+
+    @Override
+    public void messageReceived(IoSession session, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        SocketAddress socketAddress = session.getRemoteAddress();
+        this.manager.AppendToRece(socketAddress.toString(), packet);
+        if(Constant.iotLog){
+            log.info( "{}\trece\t{}\t{}",this.manager.Name(),socketAddress.toString(),packet.packetString);
+        }
+
+    }
+
+
+    @Override
+    public void messageSent(IoSession session, Object message) throws Exception {
+        if(Constant.iotLog){
+            Packet packet = (Packet) message;
+            SocketAddress socketAddress = session.getRemoteAddress();
+            log.info( "{}\tsend\t{}\t{}",this.manager.Name(),socketAddress.toString(),packet.packetString);
+        }
+    }
+}

+ 444 - 0
src/main/java/com/persagy/communication/mina/tcp/server/TCPServerManager.java

@@ -0,0 +1,444 @@
+package com.persagy.communication.mina.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import com.persagy.communication.util.IServerHandler;
+import com.persagy.communication.util.IServerManager;
+import com.persagy.communication.util.MySslContextFactory;
+import com.persagy.communication.util.PacketBuffer;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolCodecFilter;
+import org.apache.mina.filter.ssl.SslFilter;
+import org.apache.mina.transport.socket.nio.NioSocketAcceptor;
+
+import java.net.InetSocketAddress;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+@Data
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class TCPServerManager implements IServerManager {
+    public final Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    //address-IoSession
+    public final Map<String, IoSession> socketMap = new HashMap<String, IoSession>();
+    String ip;
+    int port;
+    String encoding;
+    String ssl_protocol;
+    String ssl_keystoretype;
+    String ssl_algorithm;
+    byte[] ssl_file_km;
+    String ssl_password_km;
+    byte[] ssl_file_tm;
+    String ssl_password_tm;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    Integer IdleTime = null;
+    IServerHandler handlerManager;
+    NioSocketAcceptor acceptor;
+    int remark_count = 0;
+
+    public TCPServerManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                            byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                            byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                            byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                            Integer IdleTime, int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public TCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                            String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                            String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte[] prefixBytes,
+                            byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        return "TCP Server " + this.ip + ":" + this.port;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.acceptor == null) {
+            try {
+                NioSocketAcceptor acceptorInner = new NioSocketAcceptor();
+                ProtocolCodecFactory factory;
+                if (this.separate) {
+                    if (this.separateBytes) {
+                        factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password,
+                                this.compress, this.prefixBytes, this.suffixBytes);
+                    } else {
+                        factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password,
+                                this.compress, this.prefix, this.suffix);
+                    }
+                } else {
+                    factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password, this.compress);
+                }
+                if (this.ssl_file_km != null || this.ssl_file_tm != null) {
+                    SslFilter sslFilter = new SslFilter(
+                            MySslContextFactory.getContext(this.ssl_protocol, this.ssl_keystoretype, this.ssl_algorithm,
+                                    this.ssl_file_km, this.ssl_file_tm, this.ssl_password_km, this.ssl_password_tm));
+                    sslFilter.setUseClientMode(false);
+                    if (this.ssl_file_tm != null) {
+                        sslFilter.setNeedClientAuth(true);
+                    }
+                    acceptorInner.getFilterChain().addFirst("sslFilter", sslFilter);
+                }
+                acceptorInner.getFilterChain().addLast("protocol", new ProtocolCodecFilter(factory));
+                acceptorInner.setHandler(new TCPServerIoHandler(this));
+                acceptorInner.setReuseAddress(true);
+                acceptorInner.getSessionConfig().setReceiveBufferSize(20480);
+                acceptorInner.getSessionConfig().setReadBufferSize(20480);
+                acceptorInner.getSessionConfig().setReuseAddress(true);
+                acceptorInner.bind(new InetSocketAddress(this.ip, this.port));
+                if (this.IdleTime != null) {
+                    acceptorInner.getSessionConfig().setBothIdleTime(this.IdleTime);
+                }
+                this.acceptor = acceptorInner;
+                log.warn(this.Name() + "\tStart");
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (this.acceptor != null) {
+            // String[] clientAddress_array = this.GetClientAddresss();
+            // for (String clientAddress : clientAddress_array) {
+            // try {
+            // this.closeClient(clientAddress);
+            // } catch (Exception e) {
+            // log.error(e.getMessage(),e);
+            // }
+            // }
+            this.acceptor.unbind();
+            this.acceptor.dispose();
+            this.acceptor = null;
+        }
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet MyPackage) {
+        IoSession session = this.socketMap.get(clientAddress);
+        if (session != null) {
+            session.write(MyPackage);
+        }
+    }
+
+
+    public synchronized boolean ContainsSocket(String clientAddress) {
+        return this.socketMap.containsKey(clientAddress);
+    }
+
+    public void AppendToRece(String clientAddress, Packet MyPackage) {
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.receList.offer(entity, this.Max_size);
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+        if (this.socketMap.containsKey(clientAddress)) {
+            IoSession session = this.socketMap.get(clientAddress);
+            session.closeNow();
+            this.socketMap.remove(clientAddress);
+        }
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 74 - 0
src/main/java/com/persagy/communication/mina/udp/client/UDPClientIoHandler.java

@@ -0,0 +1,74 @@
+package com.persagy.communication.mina.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.constant.Constant;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.service.IoHandlerAdapter;
+import org.apache.mina.core.session.IdleStatus;
+import org.apache.mina.core.session.IoSession;
+
+@Slf4j
+public class UDPClientIoHandler extends IoHandlerAdapter {
+    UDPClientManager manager;
+
+    public UDPClientIoHandler(UDPClientManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void sessionCreated(IoSession session) throws Exception {
+        log.info(this.manager.Name() + "\tsessionCreated");
+    }
+
+    @Override
+    public void sessionOpened(IoSession session) throws Exception {
+        this.manager.SetSessionClosed(false);
+        log.warn(this.manager.Name() + "\tsessionOpened");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened();
+        }
+    }
+
+    @Override
+    public void sessionClosed(IoSession session) throws Exception {
+        this.manager.SetSessionClosed(true);
+        log.warn(this.manager.Name() + "\tsessionClosed");
+        this.manager.Stop();
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed();
+        }
+    }
+
+    @Override
+    public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(cause);
+        }
+    }
+
+    @Override
+    public void sessionIdle(IoSession session, IdleStatus status) throws Exception {
+        log.warn(this.manager.Name() + "\tsessionIdle");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionIdle();
+        }
+        session.closeNow();
+    }
+
+    @Override
+    public void messageReceived(IoSession session, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        this.manager.AppendToRece(packet);
+        if(Constant.iotLog){
+            log.info("{}\trece\t{}",this.manager.Name(),packet.packetString);
+        }
+    }
+
+    @Override
+    public void messageSent(IoSession session, Object message) throws Exception {
+        if(Constant.iotLog){
+            Packet packet = (Packet) message;
+            log.info( "{}\tsend\t{}",this.manager.Name(),packet.packetString);
+        }
+    }
+}

+ 212 - 0
src/main/java/com/persagy/communication/mina/udp/client/UDPClientManager.java

@@ -0,0 +1,212 @@
+package com.persagy.communication.mina.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import com.persagy.communication.util.IClientHandler;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.communication.util.PacketBuffer;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.future.ConnectFuture;
+import org.apache.mina.core.service.IoConnector;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolCodecFilter;
+import org.apache.mina.transport.socket.nio.NioDatagramConnector;
+
+import java.net.InetSocketAddress;
+
+@Slf4j
+@Data
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class UDPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+
+    String ip;
+    int port;
+    String targetIp;
+    int targetPort;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean sessionClosed = false;
+    IClientHandler handlerManager;
+    IoSession session;
+    IoConnector connector;
+    int remark_count = 0;
+
+    public UDPClientManager(String targetIp, int targetPort, String encoding, int Max_size) {
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public UDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public UDPClientManager(String targetIp, int targetPort, String encoding, boolean compress, int Max_size) {
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public UDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding, boolean compress,
+                            int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public UDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding, String aes_password,
+                            boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+
+    @Override
+    public String Name() {
+        if (this.ip == null) {
+            return "UDP Client " + this.targetIp + ":" + this.targetPort;
+        } else {
+            return "UDP Client " + this.ip + ":" + this.port;
+        }
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.session == null) {
+            try {
+                IoConnector connectorInner = new NioDatagramConnector();
+                ProtocolCodecFactory factory;
+                if (this.ip == null) {
+                    factory = new MinaCodecFactory(this.targetIp, this.targetPort, this.encoding, this.aes_password,
+                            this.compress);
+                } else {
+                    factory = new MinaCodecFactory(this.ip, this.port, this.encoding, this.aes_password, this.compress);
+                }
+                connectorInner.getFilterChain().addLast("codec", new ProtocolCodecFilter(factory));
+                connectorInner.setHandler(new UDPClientIoHandler(this));
+                ConnectFuture connectFuture;
+                connectorInner.getSessionConfig().setReadBufferSize(20480);
+                if (this.ip == null) {
+                    connectFuture = connectorInner.connect(new InetSocketAddress(this.targetIp, this.targetPort));
+                } else {
+                    connectFuture = connectorInner.connect(new InetSocketAddress(this.targetIp, this.targetPort),
+                            new InetSocketAddress(this.ip, this.port));
+                }
+
+                connectFuture.awaitUninterruptibly();
+                if (connectFuture.isDone()) {
+                    if (connectFuture.isConnected()) {
+                        this.session = connectFuture.getSession();
+                        this.connector = connectorInner;
+                    } else {
+                        connectorInner.dispose();
+                        throw new Exception();
+                    }
+                } else {
+                    connectorInner.dispose();
+                    throw new Exception();
+                }
+
+                log.warn(this.Name() + "\tStart");
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (this.session != null) {
+            // CloseFuture closeFuture = this.session.close(true);
+            // closeFuture.awaitUninterruptibly();
+            this.session.closeNow();
+            this.session = null;
+
+            this.connector.dispose();
+            this.connector = null;
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet MyPackage) {
+        if (this.session == null) {
+            this.Start();
+        }
+        if (this.session != null) {
+            this.session.write(MyPackage);
+        }
+    }
+
+    public void AppendToRece(Packet MyPackage) {
+        this.receList.offer(MyPackage, this.Max_size);
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+
+}

+ 96 - 0
src/main/java/com/persagy/communication/mina/udp/server/UDPServerIoHandler.java

@@ -0,0 +1,96 @@
+package com.persagy.communication.mina.udp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.constant.Constant;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.service.IoHandlerAdapter;
+import org.apache.mina.core.session.IdleStatus;
+import org.apache.mina.core.session.IoSession;
+
+import java.net.SocketAddress;
+import java.util.Date;
+
+@Slf4j
+public class UDPServerIoHandler extends IoHandlerAdapter {
+    UDPServerManager manager;
+
+    public UDPServerIoHandler(UDPServerManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void sessionCreated(IoSession session) throws Exception {
+        if(Constant.iotLog){
+            SocketAddress socketAddress = session.getRemoteAddress();
+            String remoteAddress = socketAddress.toString();
+            log.info("{}\tsessionCreated\t{}",this.manager.Name(),remoteAddress);
+        }
+    }
+
+    @Override
+    public void sessionOpened(IoSession session) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, new Date());
+        if (!this.manager.socketMap.containsKey(remoteAddress)) {
+            this.manager.socketMap.put(remoteAddress, session);
+        }
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened(session.getRemoteAddress());
+        }
+        if(Constant.iotLog){
+            log.warn("{}\tsessionOpened\t{}",this.manager.Name(),remoteAddress);
+        }
+    }
+
+    @Override
+    public void sessionClosed(IoSession session) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, null);
+        this.manager.socketMap.remove(remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed(session.getRemoteAddress());
+        }
+        if(Constant.iotLog){
+            log.warn("{}\tsessionClosed\t{}",this.manager.Name(),remoteAddress);
+        }
+    }
+
+    @Override
+    public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(session.getRemoteAddress(), cause);
+        }
+        log.warn("{}\texceptionCaught\t{}",this.manager.Name(),session.getRemoteAddress().toString(),cause);
+    }
+
+    @Override
+    public void sessionIdle(IoSession session, IdleStatus status) throws Exception {
+        SocketAddress socketAddress = session.getRemoteAddress();
+        String remoteAddress = socketAddress.toString();
+        log.warn(this.manager.Name() + "\tsessionIdle\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionIdle(session.getRemoteAddress());
+        }
+    }
+
+    @Override
+    public void messageReceived(IoSession session, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        this.manager.AppendToRece(session, packet);
+        if(Constant.iotLog){
+            log.info( "{}\trece\t{}\t{}",this.manager.Name(),session.getRemoteAddress(),packet.packetString);
+        }
+
+    }
+
+    @Override
+    public void messageSent(IoSession session, Object message) throws Exception {
+        if(Constant.iotLog){
+            Packet packet = (Packet) message;
+            SocketAddress socketAddress = session.getRemoteAddress();
+            log.info( "{}\tsend\t{}\t{}",this.manager.Name(),socketAddress.toString(),packet.packetString);
+        }
+    }
+}

+ 208 - 0
src/main/java/com/persagy/communication/mina/udp/server/UDPServerManager.java

@@ -0,0 +1,208 @@
+package com.persagy.communication.mina.udp.server;
+
+import cn.hutool.core.util.NumberUtil;
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.entity.UDPSendEntity;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import com.persagy.communication.util.IServerHandler;
+import com.persagy.communication.util.IServerManager;
+import com.persagy.communication.util.PacketBuffer;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.NoArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.mina.core.session.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolCodecFilter;
+import org.apache.mina.transport.socket.DatagramSessionConfig;
+import org.apache.mina.transport.socket.nio.NioDatagramAcceptor;
+
+import java.io.IOException;
+import java.net.InetSocketAddress;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class UDPServerManager implements IServerManager {
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    IServerHandler handlerManager;
+    Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    boolean allowJustSend = false;
+
+    NioDatagramAcceptor acceptor;
+    Map<String, IoSession> socketMap = new HashMap<String, IoSession>();
+    int remark_count = 0;
+
+    public UDPServerManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public UDPServerManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public UDPServerManager(String ip, int port, String encoding, String aes_password, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        return "UDP Server " + this.ip + ":" + this.port;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.acceptor == null) {
+            try {
+                NioDatagramAcceptor acceptorInner = new NioDatagramAcceptor();
+                ProtocolCodecFactory factory = new MinaCodecFactory(this.ip, this.port, this.encoding,
+                        this.aes_password, this.compress);
+                acceptorInner.getFilterChain().addLast("protocol", new ProtocolCodecFilter(factory));
+                acceptorInner.setHandler(new UDPServerIoHandler(this));
+
+                DatagramSessionConfig dcfg = acceptorInner.getSessionConfig();
+                dcfg.setReuseAddress(true);
+                dcfg.setReceiveBufferSize(20480);
+                dcfg.setReadBufferSize(20480);
+                acceptorInner.bind(new InetSocketAddress(this.ip, this.port));
+
+                this.acceptor = acceptorInner;
+
+                log.warn(this.Name() + "\tStart");
+            } catch (IOException e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (this.acceptor != null) {
+            String[] clientAddress_array = this.GetClientAddresss();
+            for (String clientAddress : clientAddress_array) {
+                try {
+                    this.closeClient(clientAddress);
+                } catch (Exception e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+            this.acceptor.unbind();
+            this.acceptor.dispose();
+            this.acceptor = null;
+        }
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+        this.allowJustSend = allow;
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet MyPackage) {
+        if (this.allowJustSend && !this.socketMap.containsKey(clientAddress)) {
+            int index = clientAddress.indexOf(':');
+            String remote_ip = clientAddress.substring(1, index);
+            int remote_port = NumberUtil.parseInt(clientAddress.substring(index + 1));
+            // newSession�ἤ��sessionCreated��sessionOpened
+            this.acceptor.newSession(new InetSocketAddress(remote_ip, remote_port),
+                    new InetSocketAddress(this.ip, this.port));
+        }
+        IoSession session = this.socketMap.get(clientAddress);
+        if (session != null) {
+            session.write(MyPackage);
+        }
+    }
+
+    public UDPSendEntity PopSend() {
+        return null;
+    }
+
+    public void AppendToRece(IoSession sa, Packet MyPackage) {
+        String clientAddress = sa.getRemoteAddress().toString();
+        if (!this.socketMap.containsKey(clientAddress)) {
+            this.socketMap.put(clientAddress, sa);
+        }
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.receList.offer(entity, this.Max_size);
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+        this.socketMap.remove(clientAddress);
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 89 - 0
src/main/java/com/persagy/communication/netty/codec/NettyPacketDecoder.java

@@ -0,0 +1,89 @@
+package com.persagy.communication.netty.codec;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.MyDecoder;
+import io.netty.buffer.ByteBuf;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.handler.codec.ByteToMessageDecoder;
+
+import java.util.List;
+
+public class NettyPacketDecoder extends ByteToMessageDecoder {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    MyDecoder decoder;
+
+    public NettyPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.compress = compress;
+
+        this.separate = false;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public NettyPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress, byte prefix,
+                              byte suffix) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public NettyPacketDecoder(String ip, int port, String encoding, String aes_password, boolean compress,
+                              byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+
+        this.aes_password = aes_password;
+        this.encoding = encoding;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    @Override
+    protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
+        int count = in.readableBytes();
+        byte[] bytes = new byte[count];
+        in.readBytes(bytes);
+
+        String remoteAddress = ctx.channel().remoteAddress().toString();
+        List<Packet> packetList = this.decoder.decode(remoteAddress, bytes);
+        for (int i = 0; i < packetList.size(); i++) {
+            Packet packet = packetList.get(i);
+            out.add(packet);
+        }
+    }
+
+}

+ 79 - 0
src/main/java/com/persagy/communication/netty/codec/NettyPacketEncoder.java

@@ -0,0 +1,79 @@
+package com.persagy.communication.netty.codec;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.MyEncoder;
+import io.netty.buffer.ByteBuf;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.handler.codec.MessageToByteEncoder;
+
+public class NettyPacketEncoder extends MessageToByteEncoder<Packet> {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    MyEncoder encoder;
+
+    public NettyPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.compress = compress;
+
+        this.separate = false;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public NettyPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress, byte prefix,
+                              byte suffix) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    public NettyPacketEncoder(String ip, int port, String encoding, String aes_password, boolean compress,
+                              byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, this.separate,
+                this.separateBytes, this.prefix, this.suffix, this.prefixBytes, this.suffixBytes);
+    }
+
+    @Override
+    protected void encode(ChannelHandlerContext ctx, Packet message, ByteBuf out) throws Exception {
+        Packet request = message;
+        byte[] comm_bytes = this.encoder.encode(request);
+        out.writeBytes(comm_bytes);
+    }
+}

+ 58 - 0
src/main/java/com/persagy/communication/netty/tcp/client/ClientChannelInitializer.java

@@ -0,0 +1,58 @@
+package com.persagy.communication.netty.tcp.client;
+
+import com.persagy.communication.netty.codec.NettyPacketDecoder;
+import com.persagy.communication.netty.codec.NettyPacketEncoder;
+import com.persagy.communication.util.MySslContextFactory;
+import io.netty.channel.ChannelInitializer;
+import io.netty.channel.socket.SocketChannel;
+import io.netty.handler.ssl.SslHandler;
+import io.netty.handler.timeout.IdleStateHandler;
+
+import javax.net.ssl.SSLEngine;
+
+public class ClientChannelInitializer extends ChannelInitializer<SocketChannel> {
+    NettyTCPClientManager manager;
+
+    public ClientChannelInitializer(NettyTCPClientManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    protected void initChannel(SocketChannel ch) throws Exception {
+        NettyPacketEncoder encoder;
+        NettyPacketDecoder decoder;
+        NettyTCPClientHandler handler = new NettyTCPClientHandler(manager);
+        if (manager.separate) {
+            if (manager.separateBytes) {
+                encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefixBytes, manager.suffixBytes);
+                decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefixBytes, manager.suffixBytes);
+            } else {
+                encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefix, manager.suffix);
+                decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefix, manager.suffix);
+            }
+        } else {
+            encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                    manager.compress);
+            decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                    manager.compress);
+        }
+
+        if (manager.ssl_file_km != null || manager.ssl_file_tm != null) {
+            SSLEngine engine = MySslContextFactory
+                    .getContext(manager.ssl_protocol, manager.ssl_keystoretype, manager.ssl_algorithm,
+                            manager.ssl_file_km, manager.ssl_file_tm, manager.ssl_password_km, manager.ssl_password_tm)
+                    .createSSLEngine();
+            engine.setUseClientMode(true);
+            ch.pipeline().addFirst("ssl", new SslHandler(engine));
+        }
+        if (manager.IdleTime != null) {
+            ch.pipeline().addLast("idleStateHandler", new IdleStateHandler(0, 0, manager.IdleTime));
+        }
+        ch.pipeline().addLast(encoder, decoder, handler);
+    }
+
+}

+ 71 - 0
src/main/java/com/persagy/communication/netty/tcp/client/NettyTCPClientHandler.java

@@ -0,0 +1,71 @@
+package com.persagy.communication.netty.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.ChannelInboundHandlerAdapter;
+import io.netty.handler.timeout.IdleStateEvent;
+import lombok.extern.slf4j.Slf4j;
+
+@Slf4j
+public class NettyTCPClientHandler extends ChannelInboundHandlerAdapter {
+    NettyTCPClientManager manager;
+
+    public NettyTCPClientHandler(NettyTCPClientManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelRegistered(ctx);
+
+        this.manager.SetSessionClosed(false);
+        log.warn(this.manager.Name() + "\tsessionOpened");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened();
+        }
+    }
+
+    @Override
+    public void channelUnregistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelUnregistered(ctx);
+
+        log.warn(this.manager.Name() + "\tsessionClosed");
+        // �쳣�ر�
+        this.manager.Stop();
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed();
+        }
+    }
+
+    @Override
+    public void channelRead(ChannelHandlerContext ctx, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        this.manager.AppendToRece(packet);
+        if (this.manager.encoding != null) {
+            log.info(this.manager.Name() + "\trece\t" + packet.packetString);
+        } else {
+            log.info(this.manager.Name() + "\trece\t" + HexToByte.byteToHex(packet.packetBytes));
+        }
+    }
+
+    @Override
+    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(cause);
+        }
+    }
+
+    @Override
+    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
+        super.userEventTriggered(ctx, evt);
+
+        if (evt instanceof IdleStateEvent) {
+            log.warn(this.manager.Name() + "\tsessionIdle");
+            if (this.manager.handlerManager != null) {
+                this.manager.handlerManager.sessionIdle();
+            }
+        }
+    }
+
+}

+ 387 - 0
src/main/java/com/persagy/communication/netty/tcp/client/NettyTCPClientManager.java

@@ -0,0 +1,387 @@
+package com.persagy.communication.netty.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import com.persagy.communication.util.IClientHandler;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.communication.util.PacketBuffer;
+import io.netty.bootstrap.Bootstrap;
+import io.netty.channel.ChannelFuture;
+import io.netty.channel.EventLoopGroup;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.nio.NioSocketChannel;
+import lombok.extern.slf4j.Slf4j;
+
+import java.net.InetSocketAddress;
+
+@Slf4j
+public class NettyTCPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+    private final EventLoopGroup workerGroup = new NioEventLoopGroup(1);
+
+    String ip;
+    int port;
+    String encoding;
+    String ssl_protocol;
+    String ssl_keystoretype;
+    String ssl_algorithm;
+    byte[] ssl_file_km;
+    String ssl_password_km;
+    byte[] ssl_file_tm;
+    String ssl_password_tm;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    Integer IdleTime = null;
+    boolean sessionClosed = false;
+    IClientHandler handlerManager;
+    boolean started = false;
+    String localAddress = "()";
+    int remark_count = 0;
+    private ChannelFuture future;
+    private Bootstrap bootstrap;
+
+    public NettyTCPClientManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                                 byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                                 byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size,
+                                 byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime,
+                                 int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                                 byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                                 byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPClientManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte[] prefixBytes,
+                                 byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        return "TCP Client " + this.ip + ":" + this.port + localAddress;
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (started) {
+            return;
+        }
+
+        try {
+            bootstrap = new Bootstrap();
+            bootstrap.group(workerGroup).channel(NioSocketChannel.class).handler(new ClientChannelInitializer(this));
+            future = bootstrap.connect(new InetSocketAddress(this.ip, this.port));
+
+            started = true;
+            log.warn(this.Name() + "\tStart");
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+            try {
+                workerGroup.shutdownGracefully();
+            } catch (Exception e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (!this.started) {
+            return;
+        }
+
+        try {
+            workerGroup.shutdownGracefully();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet MyPackage) {
+        if (!this.started) {
+            this.Start();
+        }
+        if (this.started) {
+            future.channel().writeAndFlush(MyPackage);
+
+            Packet packet = MyPackage;
+            if (this.encoding != null) {
+                log.info(this.Name() + "\tsend\t" + packet.packetString);
+            } else {
+                log.info(this.Name() + "\tsend\t" + HexToByte.byteToHex(packet.packetBytes));
+            }
+        }
+    }
+
+    public void AppendToRece(Packet MyPackage) {
+        this.receList.offer(MyPackage, this.Max_size);
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet MyPackage = this.receList.poll();
+        return MyPackage;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+
+}

+ 95 - 0
src/main/java/com/persagy/communication/netty/tcp/server/NettyTCPServerHandler.java

@@ -0,0 +1,95 @@
+package com.persagy.communication.netty.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.ChannelInboundHandlerAdapter;
+import io.netty.handler.ssl.SslHandler;
+import io.netty.handler.timeout.IdleStateEvent;
+import lombok.extern.slf4j.Slf4j;
+
+import java.net.SocketAddress;
+import java.util.Date;
+
+@Slf4j
+@SuppressWarnings("unchecked")
+public class NettyTCPServerHandler extends ChannelInboundHandlerAdapter {
+    NettyTCPServerManager manager;
+
+    public NettyTCPServerHandler(NettyTCPServerManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void channelRead(ChannelHandlerContext ctx, Object message) throws Exception {
+        Packet packet = (Packet) message;
+        SocketAddress socketAddress = ctx.channel().remoteAddress();
+        this.manager.AppendToRece(socketAddress.toString(), packet);
+        if (this.manager.encoding != null) {
+            log.info(this.manager.Name() + "\trece\t" + socketAddress + "\t" + packet.packetString);
+        } else {
+            log.info(this.manager.Name() + "\trece\t" + socketAddress
+                    + "\t" + HexToByte.byteToHex(packet.packetBytes));
+        }
+    }
+
+    @Override
+    public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelRegistered(ctx);
+
+        SocketAddress socketAddress = ctx.channel().remoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, new Date());
+        if (!this.manager.socketMap.containsKey(remoteAddress)) {
+            this.manager.socketMap.put(remoteAddress, ctx.channel());
+        }
+        log.warn(this.manager.Name() + "\t" + "sessionOpened\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened(ctx.channel().remoteAddress());
+        }
+    }
+
+    @Override
+    public void channelActive(ChannelHandlerContext ctx) throws Exception {
+        super.channelActive(ctx);
+
+        SocketAddress socketAddress = ctx.channel().remoteAddress();
+        String remoteAddress = socketAddress.toString();
+        log.warn(this.manager.Name() + "\t" + "channelActive\t" + remoteAddress);
+
+        ctx.pipeline().get(SslHandler.class).handshakeFuture().addListener(new SSLHandshakeListener(this.manager, ctx));
+    }
+
+    @Override
+    public void channelUnregistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelUnregistered(ctx);
+
+        SocketAddress socketAddress = ctx.channel().remoteAddress();
+        String remoteAddress = socketAddress.toString();
+        this.manager.SetConnectTime(remoteAddress, null);
+        this.manager.socketMap.remove(remoteAddress);
+        log.warn(this.manager.Name() + "\tsessionClosed\t" + remoteAddress);
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed(ctx.channel().remoteAddress());
+        }
+    }
+
+    @Override
+    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(ctx.channel().remoteAddress(), cause);
+        }
+    }
+
+    @Override
+    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
+        super.userEventTriggered(ctx, evt);
+
+        if (evt instanceof IdleStateEvent) {
+            SocketAddress socketAddress = ctx.channel().remoteAddress();
+            String remoteAddress = socketAddress.toString();
+            log.warn(this.manager.Name() + "\tsessionIdle\t" + remoteAddress);
+            ctx.channel().close();
+        }
+    }
+}

+ 418 - 0
src/main/java/com/persagy/communication/netty/tcp/server/NettyTCPServerManager.java

@@ -0,0 +1,418 @@
+package com.persagy.communication.netty.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.util.HexToByte;
+import com.persagy.communication.util.IServerHandler;
+import com.persagy.communication.util.IServerManager;
+import com.persagy.communication.util.PacketBuffer;
+import io.netty.bootstrap.ServerBootstrap;
+import io.netty.channel.Channel;
+import io.netty.channel.ChannelOption;
+import io.netty.channel.EventLoopGroup;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.nio.NioServerSocketChannel;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+public class NettyTCPServerManager implements IServerManager {
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    String ip;
+    int port;
+    String encoding;
+    String ssl_protocol;
+    String ssl_keystoretype;
+    String ssl_algorithm;
+    byte[] ssl_file_km;
+    String ssl_password_km;
+    byte[] ssl_file_tm;
+    String ssl_password_tm;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    Integer IdleTime = null;
+    IServerHandler handlerManager;
+    Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    EventLoopGroup bossGroup = new NioEventLoopGroup(1);
+    EventLoopGroup workerGroup = new NioEventLoopGroup();
+    Map<String, Channel> socketMap = new HashMap<String, Channel>();
+    int remark_count = 0;
+    private boolean init = false;
+    private ServerBootstrap bootstrap;
+
+    public NettyTCPServerManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                                 byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                                 byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size,
+                                 byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime,
+                                 int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                                 byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, boolean compress, Integer IdleTime, int Max_size,
+                                 byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 Integer IdleTime, int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.IdleTime = IdleTime;
+    }
+
+    public NettyTCPServerManager(String ip, int port, String encoding, String ssl_protocol, String ssl_keystoretype,
+                                 String ssl_algorithm, byte[] ssl_file_km, String ssl_password_km, byte[] ssl_file_tm,
+                                 String ssl_password_tm, boolean compress, Integer IdleTime, int Max_size, byte[] prefixBytes,
+                                 byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.ssl_protocol = ssl_protocol;
+        this.ssl_keystoretype = ssl_keystoretype;
+        this.ssl_algorithm = ssl_algorithm;
+        this.ssl_file_km = ssl_file_km;
+        this.ssl_password_km = ssl_password_km;
+        this.ssl_file_tm = ssl_file_tm;
+        this.ssl_password_tm = ssl_password_tm;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.IdleTime = IdleTime;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        return "TCP Server " + this.ip + ":" + this.port;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.init) {
+            return;
+        }
+
+        try {
+            bootstrap = new ServerBootstrap();
+            bootstrap.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class)
+                    .childHandler(new ServerChannelInitializer(this)).childOption(ChannelOption.TCP_NODELAY, true);
+            bootstrap.bind(this.ip, this.port).sync();
+            init = true;
+            log.warn(this.Name() + "\tStart");
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+            try {
+                workerGroup.shutdownGracefully();
+            } catch (Exception e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    @Override
+    public void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (!this.init) {
+            return;
+        }
+        try {
+            workerGroup.shutdownGracefully();
+            bossGroup.shutdownGracefully();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet MyPackage) {
+        Channel session = this.socketMap.get(clientAddress);
+        if (session != null) {
+            session.writeAndFlush(MyPackage);
+
+            Packet packet = MyPackage;
+            if (this.encoding != null) {
+                log.info(this.Name() + "\tsend\t" + packet.packetString);
+            } else {
+                log.info(this.Name() + "\tsend\t" + HexToByte.byteToHex(packet.packetBytes));
+            }
+        }
+    }
+
+    public synchronized boolean ContainsSocket(String clientAddress) {
+        return this.socketMap.containsKey(clientAddress);
+    }
+
+    public void AppendToRece(String clientAddress, Packet MyPackage) {
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.receList.offer(entity, this.Max_size);
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+        if (this.socketMap.containsKey(clientAddress)) {
+            Channel session = this.socketMap.get(clientAddress);
+            session.close();
+            this.socketMap.remove(clientAddress);
+        }
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 50 - 0
src/main/java/com/persagy/communication/netty/tcp/server/SSLHandshakeListener.java

@@ -0,0 +1,50 @@
+package com.persagy.communication.netty.tcp.server;
+
+import com.persagy.util.DateUtils;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.handler.ssl.SslHandler;
+import io.netty.util.concurrent.Future;
+import io.netty.util.concurrent.GenericFutureListener;
+import lombok.extern.slf4j.Slf4j;
+
+import javax.net.ssl.SSLSession;
+import javax.security.cert.X509Certificate;
+import java.net.SocketAddress;
+import java.time.format.DateTimeFormatter;
+
+@Slf4j
+@SuppressWarnings("rawtypes")
+public class SSLHandshakeListener implements GenericFutureListener {
+    private final static DateTimeFormatter DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy/MM/dd");
+    NettyTCPServerManager manager;
+    ChannelHandlerContext ctx;
+
+    public SSLHandshakeListener(NettyTCPServerManager manager, ChannelHandlerContext ctx) {
+        this.manager = manager;
+        this.ctx = ctx;
+    }
+
+    @Override
+    public void operationComplete(Future future) throws Exception {
+        SocketAddress socketAddress = ctx.channel().remoteAddress();
+        String remoteAddress = socketAddress.toString();
+        if (future.isSuccess()) {
+
+            SSLSession ss = ctx.pipeline().get(SslHandler.class).engine().getSession();
+            StringBuffer sb = new StringBuffer();
+            sb.append("\n" + "cipherSuite:" + ss.getCipherSuite());
+            X509Certificate cert = ss.getPeerCertificateChain()[0];
+            sb.append("\n" + "version:" + cert.getVersion());
+            sb.append("\n" + "serialNumber:" + cert.getSerialNumber().toString(16));
+            sb.append("\n" + "from:" + DateUtils.formatDate(cert.getNotBefore(), DATE_FORMATTER));
+            sb.append("\n" + "to:" + DateUtils.formatDate(cert.getNotAfter(), DATE_FORMATTER));
+            sb.append("\n" + "subjectDN:" + cert.getSubjectDN().getName());
+            sb.append("\n" + "issuerDN:" + cert.getIssuerDN().getName());
+            sb.append("\n" + "sigAlg:" + cert.getSigAlgName());
+
+            log.warn(this.manager.Name() + "\t" + "handshake success" + "\t" + remoteAddress + sb);
+        } else {
+            log.warn(this.manager.Name() + "\t" + "handshake failure" + "\t" + remoteAddress);
+        }
+    }
+}

+ 61 - 0
src/main/java/com/persagy/communication/netty/tcp/server/ServerChannelInitializer.java

@@ -0,0 +1,61 @@
+package com.persagy.communication.netty.tcp.server;
+
+import com.persagy.communication.netty.codec.NettyPacketDecoder;
+import com.persagy.communication.netty.codec.NettyPacketEncoder;
+import com.persagy.communication.util.MySslContextFactory;
+import io.netty.channel.ChannelInitializer;
+import io.netty.channel.socket.SocketChannel;
+import io.netty.handler.ssl.SslHandler;
+import io.netty.handler.timeout.IdleStateHandler;
+
+import javax.net.ssl.SSLEngine;
+
+public class ServerChannelInitializer extends ChannelInitializer<SocketChannel> {
+    NettyTCPServerManager manager;
+
+    public ServerChannelInitializer(NettyTCPServerManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    protected void initChannel(SocketChannel ch) throws Exception {
+        NettyPacketEncoder encoder;
+        NettyPacketDecoder decoder;
+        NettyTCPServerHandler handler = new NettyTCPServerHandler(manager);
+        if (manager.separate) {
+            if (manager.separateBytes) {
+                encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefixBytes, manager.suffixBytes);
+                decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefixBytes, manager.suffixBytes);
+            } else {
+                encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefix, manager.suffix);
+                decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                        manager.compress, manager.prefix, manager.suffix);
+            }
+        } else {
+            encoder = new NettyPacketEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                    manager.compress);
+            decoder = new NettyPacketDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password,
+                    manager.compress);
+        }
+
+        if (manager.ssl_file_km != null || manager.ssl_file_tm != null) {
+            SSLEngine engine = MySslContextFactory
+                    .getContext(manager.ssl_protocol, manager.ssl_keystoretype, manager.ssl_algorithm,
+                            manager.ssl_file_km, manager.ssl_file_tm, manager.ssl_password_km, manager.ssl_password_tm)
+                    .createSSLEngine();
+            engine.setUseClientMode(false);
+            if (manager.ssl_file_tm != null) {
+                engine.setNeedClientAuth(true);
+            }
+            ch.pipeline().addFirst("ssl", new SslHandler(engine));
+        }
+        if (manager.IdleTime != null) {
+            ch.pipeline().addLast("idleStateHandler", new IdleStateHandler(0, 0, manager.IdleTime));
+        }
+        ch.pipeline().addLast(encoder, decoder, handler);
+    }
+
+}

+ 80 - 0
src/main/java/com/persagy/communication/netty/udp/client/NettyUDPClientHandler.java

@@ -0,0 +1,80 @@
+package com.persagy.communication.netty.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.SimpleChannelInboundHandler;
+import io.netty.channel.socket.DatagramPacket;
+import io.netty.handler.timeout.IdleStateEvent;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.List;
+
+@Slf4j
+public class NettyUDPClientHandler extends SimpleChannelInboundHandler<DatagramPacket> {
+    NettyUDPClientManager manager;
+
+    public NettyUDPClientHandler(NettyUDPClientManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void channelRead0(ChannelHandlerContext ctx, DatagramPacket msg) throws Exception {
+        int count = msg.content().readableBytes();
+        byte[] bytes = new byte[count];
+        msg.content().readBytes(bytes);
+        String remoteAddress = msg.sender().toString();
+        List<Packet> packetList = this.manager.decoder.decode(remoteAddress, bytes);
+        for (int i = 0; i < packetList.size(); i++) {
+            Packet packet = packetList.get(i);
+            this.manager.receList.offer(packet, this.manager.Max_size);
+
+            if (this.manager.encoding != null) {
+                log.info(this.manager.Name() + "\trece\t" + remoteAddress + "\t" + packet.packetString);
+            } else {
+                log.info(this.manager.Name() + "\trece\t" + remoteAddress + "\t"
+                        + HexToByte.byteToHex(packet.packetBytes));
+            }
+        }
+    }
+
+    @Override
+    public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelRegistered(ctx);
+
+        log.warn(this.manager.Name() + "\tsessionOpened");
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionOpened();
+        }
+    }
+
+    @Override
+    public void channelUnregistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelUnregistered(ctx);
+
+        log.warn(this.manager.Name() + "\tsessionClosed");
+        this.manager.Stop();
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.sessionClosed();
+        }
+    }
+
+    @Override
+    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(cause);
+        }
+    }
+
+    @Override
+    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
+        super.userEventTriggered(ctx, evt);
+
+        if (evt instanceof IdleStateEvent) {
+            log.warn(this.manager.Name() + "\tsessionIdle");
+            if (this.manager.handlerManager != null) {
+                this.manager.handlerManager.sessionIdle();
+            }
+        }
+    }
+}

+ 217 - 0
src/main/java/com/persagy/communication/netty/udp/client/NettyUDPClientManager.java

@@ -0,0 +1,217 @@
+package com.persagy.communication.netty.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.UDPSendEntity;
+import com.persagy.communication.util.*;
+import io.netty.bootstrap.Bootstrap;
+import io.netty.buffer.Unpooled;
+import io.netty.channel.*;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.DatagramPacket;
+import io.netty.channel.socket.nio.NioDatagramChannel;
+import lombok.extern.slf4j.Slf4j;
+
+import java.net.DatagramSocket;
+import java.net.InetSocketAddress;
+
+@Slf4j
+public class NettyUDPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+    String ip;
+    int port;
+    String targetIp;
+    int targetPort;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean sessionClosed = false;
+    IClientHandler handlerManager;
+    boolean started = false;
+    EventLoopGroup group = new NioEventLoopGroup(1);
+    Channel channel;
+    InetSocketAddress remoteAddress;
+    MyEncoder encoder;
+    MyDecoder decoder;
+    int remark_count = 0;
+
+    public NettyUDPClientManager(String targetIp, int targetPort, String encoding, int Max_size) {
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPClientManager(String targetIp, int targetPort, String encoding, boolean compress, int Max_size) {
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding,
+                                 boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding,
+                                 String aes_password, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        if (this.ip == null) {
+            return "UDP Client " + this.targetIp + ":" + this.targetPort;
+        } else {
+            return "UDP Client " + this.ip + ":" + this.port;
+        }
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.started) {
+            return;
+        }
+
+        try {
+            if (this.ip == null) {
+                this.ip = "0.0.0.0";
+                int tmp_port = 2046;
+                DatagramSocket DatagramSocket;
+                while (true) {
+                    try {
+                        DatagramSocket = new DatagramSocket(null);
+                        DatagramSocket.bind(new InetSocketAddress(this.ip, tmp_port));
+                        break;
+                    } catch (Exception e) {
+                        tmp_port++;
+                    }
+                }
+                DatagramSocket.close();
+                this.port = tmp_port;
+            }
+            remoteAddress = new InetSocketAddress(this.targetIp, this.targetPort);
+            encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, false, false,
+                    (byte) '(', (byte) ')', null, null);
+            decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, false, false,
+                    (byte) '(', (byte) ')', null, null);
+            final NettyUDPClientHandler handler = new NettyUDPClientHandler(this);
+            Bootstrap b = new Bootstrap();
+            b.group(group).channel(NioDatagramChannel.class).option(ChannelOption.SO_BROADCAST, true)
+                    .handler(new ChannelInitializer<NioDatagramChannel>() {
+                        @Override
+                        protected void initChannel(NioDatagramChannel ch) throws Exception {
+                            ch.pipeline().addLast(handler);
+                        }
+                    });
+
+            ChannelFuture cf = b.bind(this.ip, this.port).sync();
+            channel = cf.channel();
+
+            this.started = true;
+            log.warn(this.Name() + "\tStart");
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (!this.started) {
+            return;
+        }
+
+        try {
+            group.shutdownGracefully();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet packet) {
+        try {
+            byte[] encoded = this.encoder.encode(packet);
+            channel.writeAndFlush(new DatagramPacket(Unpooled.copiedBuffer(encoded), remoteAddress));
+
+            if (this.encoding != null) {
+                log.info(this.Name() + "\tsend\t" + packet.packetString);
+            } else {
+                log.info(this.Name() + "\tsend\t" + HexToByte.byteToHex(packet.packetBytes));
+            }
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    public UDPSendEntity PopSend() {
+        return null;
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    public synchronized void closeClient(String clientAddress) {
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 78 - 0
src/main/java/com/persagy/communication/netty/udp/server/NettyUDPServerHandler.java

@@ -0,0 +1,78 @@
+package com.persagy.communication.netty.udp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.util.HexToByte;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.SimpleChannelInboundHandler;
+import io.netty.channel.socket.DatagramPacket;
+import io.netty.handler.timeout.IdleStateEvent;
+import lombok.extern.slf4j.Slf4j;
+
+import java.net.SocketAddress;
+import java.util.List;
+
+@Slf4j
+public class NettyUDPServerHandler extends SimpleChannelInboundHandler<DatagramPacket> {
+    NettyUDPServerManager manager;
+
+    public NettyUDPServerHandler(NettyUDPServerManager manager) {
+        this.manager = manager;
+    }
+
+    @Override
+    public void channelRead0(ChannelHandlerContext ctx, DatagramPacket msg) throws Exception {
+        int count = msg.content().readableBytes();
+        byte[] bytes = new byte[count];
+        msg.content().readBytes(bytes);
+        String remoteAddress = msg.sender().toString();
+        List<Packet> packetList = this.manager.decoder.decode(remoteAddress, bytes);
+        for (int i = 0; i < packetList.size(); i++) {
+            Packet packet = packetList.get(i);
+            PacketEntity pe = new PacketEntity();
+            pe.address = msg.sender().toString();
+            pe.content = packet;
+            this.manager.receList.offer(pe, this.manager.Max_size);
+
+            if (this.manager.encoding != null) {
+                log.info(this.manager.Name() + "\trece\t" + remoteAddress + "\t" + packet.packetString);
+            } else {
+                log.info(this.manager.Name() + "\trece\t" + remoteAddress + "\t"
+                        + HexToByte.byteToHex(packet.packetBytes));
+            }
+        }
+    }
+
+    @Override
+    public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelRegistered(ctx);
+
+        log.warn(this.manager.Name() + "\tsessionOpened\t");
+    }
+
+    @Override
+    public void channelUnregistered(ChannelHandlerContext ctx) throws Exception {
+        super.channelUnregistered(ctx);
+
+        log.warn(this.manager.Name() + "\tsessionClosed\t");
+    }
+
+    @Override
+    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
+        if (this.manager.handlerManager != null) {
+            this.manager.handlerManager.exceptionCaught(ctx.channel().remoteAddress(), cause);
+        }
+    }
+
+    @Override
+    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
+        super.userEventTriggered(ctx, evt);
+
+        if (evt instanceof IdleStateEvent) {
+            SocketAddress socketAddress = ctx.channel().remoteAddress();
+            String remoteAddress = socketAddress.toString();
+            log.warn(this.manager.Name() + "\tsessionIdle\t" + remoteAddress);
+            ctx.channel().close();
+        }
+    }
+}

+ 199 - 0
src/main/java/com/persagy/communication/netty/udp/server/NettyUDPServerManager.java

@@ -0,0 +1,199 @@
+package com.persagy.communication.netty.udp.server;
+
+import cn.hutool.core.util.NumberUtil;
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.entity.UDPSendEntity;
+import com.persagy.communication.util.*;
+import io.netty.bootstrap.Bootstrap;
+import io.netty.buffer.Unpooled;
+import io.netty.channel.Channel;
+import io.netty.channel.ChannelInitializer;
+import io.netty.channel.ChannelOption;
+import io.netty.channel.EventLoopGroup;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.DatagramPacket;
+import io.netty.channel.socket.nio.NioDatagramChannel;
+import lombok.extern.slf4j.Slf4j;
+
+import java.net.InetSocketAddress;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+public class NettyUDPServerManager implements IServerManager {
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    IServerHandler handlerManager;
+    Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    boolean allowJustSend = false;
+
+    boolean started = false;
+    EventLoopGroup group = new NioEventLoopGroup(1);
+    Channel channel;
+    MyEncoder encoder;
+    MyDecoder decoder;
+    int remark_count = 0;
+
+    public NettyUDPServerManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPServerManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    public NettyUDPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                                 int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+        this.handlerManager = handlerManager;
+    }
+
+    @Override
+    public String Name() {
+        return "UDP Server " + this.ip + ":" + this.port;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.started) {
+            return;
+        }
+
+        try {
+            encoder = new MyEncoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, false, false,
+                    (byte) '(', (byte) ')', null, null);
+            decoder = new MyDecoder(this.ip, this.port, this.encoding, this.aes_password, this.compress, false, false,
+                    (byte) '(', (byte) ')', null, null);
+            final NettyUDPServerHandler handler = new NettyUDPServerHandler(this);
+            Bootstrap b = new Bootstrap();
+            b.group(group).channel(NioDatagramChannel.class).option(ChannelOption.SO_BROADCAST, true)
+                    .handler(new ChannelInitializer<NioDatagramChannel>() {
+                        @Override
+                        protected void initChannel(NioDatagramChannel ch) throws Exception {
+                            ch.pipeline().addLast(handler);
+                        }
+                    });
+
+            channel = b.bind(this.ip, this.port).channel();
+
+            this.started = true;
+            log.warn(this.Name() + "\tStart");
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (!this.started) {
+            return;
+        }
+
+        try {
+            group.shutdownGracefully();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+        this.allowJustSend = allow;
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet packet) {
+        try {
+            byte[] encoded = this.encoder.encode(packet);
+            int index_ = clientAddress.indexOf(':');
+            String ip = clientAddress.substring(1, index_);
+            int port = NumberUtil.parseInt(clientAddress.substring(index_ + 1));
+            InetSocketAddress remoteAddress = new InetSocketAddress(ip, port);
+            channel.writeAndFlush(new DatagramPacket(Unpooled.copiedBuffer(encoded), remoteAddress));
+
+            if (this.encoding != null) {
+                log.info(this.Name() + "\tsend\t" + clientAddress + "\t" + packet.packetString);
+            } else {
+                log.info(this.Name() + "\tsend\t" + clientAddress + "\t" + HexToByte.byteToHex(packet.packetBytes));
+            }
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    public UDPSendEntity PopSend() {
+        return null;
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 192 - 0
src/main/java/com/persagy/communication/nio/tcp/client/NIOTCPClientManager.java

@@ -0,0 +1,192 @@
+package com.persagy.communication.nio.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.IClientHandler;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.communication.util.PacketBuffer;
+import lombok.Data;
+
+@Data
+public class NIOTCPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> sendList = new PacketBuffer<Packet>();
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+    int buffer_size = 1024 * 16;
+    long SelectTimeout = 1L;
+    int SleepCount = 1000;
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    boolean sessionClosed = false;
+    NIOTCPClientThread thread;
+    int remark_count = 0;
+
+    public NIOTCPClientManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                               byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                               byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, boolean compress, int Max_size, byte[] prefixBytes,
+                               byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NIOTCPClientManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                               int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+    }
+
+    @Override
+    public String Name() {
+        return "TCP Client " + this.ip + ":" + this.port + " NIO";
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.thread == null) {
+            this.thread = new NIOTCPClientThread(this);
+            this.thread.start();
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (this.thread != null) {
+            this.thread.requestStop();
+            this.thread = null;
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet MyPackage) {
+        this.sendList.offer(MyPackage, this.Max_size);
+    }
+
+    public Packet PopSend() {
+        Packet MyPackage = this.sendList.poll();
+        return MyPackage;
+    }
+
+    public void AppendToRece(Packet MyPackage) {
+        this.receList.offer(MyPackage, this.Max_size);
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet MyPackage = this.receList.poll();
+        return MyPackage;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 172 - 0
src/main/java/com/persagy/communication/nio/tcp/client/NIOTCPClientThread.java

@@ -0,0 +1,172 @@
+package com.persagy.communication.nio.tcp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import com.persagy.communication.util.MyDecoder;
+import com.persagy.communication.util.MyEncoder;
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.IOException;
+import java.net.InetSocketAddress;
+import java.net.SocketAddress;
+import java.nio.ByteBuffer;
+import java.nio.channels.SelectionKey;
+import java.nio.channels.Selector;
+import java.nio.channels.SocketChannel;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Set;
+
+@Slf4j
+public class NIOTCPClientThread extends Thread {
+    private final ByteBuffer sendbuffer;
+    public NIOTCPClientManager manager;
+    MyEncoder encoder;
+    MyDecoder decoder;
+    private SocketChannel socketChannel;
+    private Selector selector;
+    private boolean stop = false;
+
+    public NIOTCPClientThread(NIOTCPClientManager manager) {
+        this.manager = manager;
+        this.sendbuffer = ByteBuffer.allocate(this.manager.buffer_size);
+
+        this.encoder = new MyEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password, manager.compress,
+                manager.separate, manager.separateBytes, manager.prefix, manager.suffix, manager.prefixBytes,
+                manager.suffixBytes);
+        this.decoder = new MyDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password, manager.compress,
+                manager.separate, manager.separateBytes, manager.prefix, manager.suffix, manager.prefixBytes,
+                manager.suffixBytes);
+    }
+
+    public void requestStop() {
+        this.stop = true;
+        try {
+            this.join();
+        } catch (InterruptedException e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void run() {
+        while (!this.stop) {
+            TryRun();
+        }
+    }
+
+    public void TryRun() {
+        try {
+            // ��ͨ��
+            this.socketChannel = SocketChannel.open();
+            // ����������
+            this.socketChannel.configureBlocking(false);
+            // ��Selector
+            this.selector = Selector.open();
+            // ���ӷ�����
+            InetSocketAddress serverAddress = new InetSocketAddress(this.manager.ip, this.manager.port);
+            this.socketChannel.connect(serverAddress);
+
+            // ע�������¼�����
+            this.socketChannel.register(this.selector, SelectionKey.OP_CONNECT);
+
+            this.manager.SetSessionClosed(false);
+            log.warn(this.manager.Name() + "\tStart");
+
+            this.listen();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        } finally {
+            try {
+                this.socketChannel.close();
+                this.selector.close();
+                this.manager.SetSessionClosed(true);
+
+                log.warn(this.manager.Name() + "\tStop");
+            } catch (IOException e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    private void listen() throws Exception {
+        int cycleNumber = 0;
+        while (!this.stop) {
+            // ������ֱ���¼�����
+            this.selector.select(this.manager.SelectTimeout);
+            // ��ȡ��ѡ�����
+            Set<SelectionKey> selectionKeys = this.selector.selectedKeys();
+            // ѭ�������¼�
+            Iterator<SelectionKey> iterator = selectionKeys.iterator();
+            while (iterator.hasNext()) {
+                SelectionKey selectionKey = iterator.next();
+                this.handleKey(selectionKey);
+            }
+            selectionKeys.clear();
+
+            cycleNumber++;
+            if (cycleNumber == this.manager.SleepCount) {
+                cycleNumber = 0;
+                try {
+                    Thread.sleep(1L);
+                } catch (InterruptedException e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+        }
+    }
+
+    private void handleKey(SelectionKey selectionKey) throws Exception {
+        if (selectionKey.isConnectable()) {
+            SocketChannel client = (SocketChannel) selectionKey.channel();
+            // �������
+            if (client.isConnectionPending()) {
+                client.finishConnect();
+            }
+
+            client.register(this.selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);
+        } else if (selectionKey.isReadable()) {
+            SocketChannel client = (SocketChannel) selectionKey.channel();
+            // ���������
+            ByteBuffer receivebuffer = ByteBuffer.allocate(this.manager.buffer_size);
+            // ��ȡ���ݵ���������
+            int count = client.read(receivebuffer);
+            if (count > 0) {
+                byte[] receiveBytes = receivebuffer.array();
+                byte[] bytesRece = new byte[count];
+                System.arraycopy(receiveBytes, 0, bytesRece, 0, count);
+
+                SocketAddress socketAddress = client.socket().getRemoteSocketAddress();
+                String remoteAddress = socketAddress.toString();
+                List<Packet> packetList = this.decoder.decode(remoteAddress, bytesRece);
+                for (int i = 0; i < packetList.size(); i++) {
+                    Packet packet = packetList.get(i);
+                    this.manager.AppendToRece(packet);
+
+                    if (this.manager.encoding != null) {
+                        log.info(this.manager.Name() + "\trece\t" + packet.packetString);
+                    } else {
+                        log.info(this.manager.Name() + "\trece\t" + HexToByte.byteToHex(packet.packetBytes));
+                    }
+                }
+            }
+        } else if (selectionKey.isWritable()) {
+            SocketChannel client = (SocketChannel) selectionKey.channel();
+            Packet packet = this.manager.PopSend();
+            if (packet != null) {
+                byte[] comm_bytes = this.encoder.encode(packet);
+                this.sendbuffer.clear();
+                this.sendbuffer.put(comm_bytes);
+                // ������������־��λ,��Ϊput���ݺ��־���ı�
+                this.sendbuffer.flip();
+                client.write(this.sendbuffer);
+
+                if (this.manager.encoding != null) {
+                    log.info(this.manager.Name() + "\tsend\t" + packet.packetString);
+                } else {
+                    log.info(this.manager.Name() + "\tsend\t" + HexToByte.byteToHex(packet.packetBytes));
+                }
+            }
+        }
+    }
+}

+ 226 - 0
src/main/java/com/persagy/communication/nio/tcp/server/NIOTCPServerManager.java

@@ -0,0 +1,226 @@
+package com.persagy.communication.nio.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.util.IServerHandler;
+import com.persagy.communication.util.IServerManager;
+import com.persagy.communication.util.PacketBuffer;
+
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+public class NIOTCPServerManager implements IServerManager {
+    public final Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    public final Map<String, PacketBuffer<Packet>> sendListMap = new HashMap<String, PacketBuffer<Packet>>();
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    int buffer_size = 1024 * 16;
+    long SelectTimeout = 1L;
+    int SleepCount = 1000;
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+    int Max_size = 1000;
+    boolean separate;
+    boolean separateBytes;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    NIOTCPServerThread thread;
+
+    int remark_count = 0;
+
+    public NIOTCPServerManager(String ip, int port, String encoding, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, int Max_size, byte prefix, byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, int Max_size, byte[] prefixBytes,
+                               byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = false;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size, byte prefix,
+                               byte suffix) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, boolean compress, int Max_size, byte[] prefixBytes,
+                               byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    public NIOTCPServerManager(String ip, int port, String encoding, String aes_password, boolean compress,
+                               int Max_size, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.Max_size = Max_size;
+
+        this.separate = true;
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+    }
+
+    @Override
+    public String Name() {
+        return "TCP Server " + this.ip + ":" + this.port + " NIO";
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.thread == null) {
+            this.thread = new NIOTCPServerThread(this);
+            this.thread.start();
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (this.thread != null) {
+            this.thread.requestStop();
+            this.thread = null;
+        }
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet MyPackage) {
+        if (!this.sendListMap.containsKey(clientAddress)) {
+            this.sendListMap.put(clientAddress, new PacketBuffer<Packet>());
+        }
+        this.sendListMap.get(clientAddress).offer(MyPackage, this.Max_size);
+    }
+
+    public Packet PopSend(String clientAddress) {
+        if (!this.sendListMap.containsKey(clientAddress)) {
+            return null;
+        }
+
+        PacketBuffer<Packet> sendList = this.sendListMap.get(clientAddress);
+        Packet MyPackage = sendList.poll();
+        return MyPackage;
+    }
+
+    public void AppendToRece(String clientAddress, Packet MyPackage) {
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.receList.offer(entity, this.Max_size);
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 224 - 0
src/main/java/com/persagy/communication/nio/tcp/server/NIOTCPServerThread.java

@@ -0,0 +1,224 @@
+package com.persagy.communication.nio.tcp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import com.persagy.communication.util.MyDecoder;
+import com.persagy.communication.util.MyEncoder;
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.IOException;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.ServerSocket;
+import java.net.SocketAddress;
+import java.nio.ByteBuffer;
+import java.nio.channels.SelectionKey;
+import java.nio.channels.Selector;
+import java.nio.channels.ServerSocketChannel;
+import java.nio.channels.SocketChannel;
+import java.util.Date;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Set;
+
+@Slf4j
+public class NIOTCPServerThread extends Thread {
+    private final ByteBuffer sendbuffer;
+    public NIOTCPServerManager manager;
+    MyEncoder encoder;
+    MyDecoder decoder;
+    private ServerSocketChannel serverSocketChannel;
+    private ServerSocket serverSocket;
+    private Selector selector;
+    private boolean stop = false;
+
+    public NIOTCPServerThread(NIOTCPServerManager manager) {
+        this.manager = manager;
+        this.sendbuffer = ByteBuffer.allocate(this.manager.buffer_size);
+
+        this.encoder = new MyEncoder(manager.ip, manager.port, manager.encoding, manager.aes_password, manager.compress,
+                manager.separate, manager.separateBytes, manager.prefix, manager.suffix, manager.prefixBytes,
+                manager.suffixBytes);
+        this.decoder = new MyDecoder(manager.ip, manager.port, manager.encoding, manager.aes_password, manager.compress,
+                manager.separate, manager.separateBytes, manager.prefix, manager.suffix, manager.prefixBytes,
+                manager.suffixBytes);
+    }
+
+    public void requestStop() {
+        this.stop = true;
+        try {
+            this.join();
+        } catch (InterruptedException e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void run() {
+        while (!this.stop) {
+            TryRun();
+        }
+    }
+
+    public void TryRun() {
+        try {
+            // ���׽���ͨ��
+            this.serverSocketChannel = ServerSocketChannel.open();
+            // ����������
+            this.serverSocketChannel.configureBlocking(false);
+            // ��ȡͨ�����׽���
+            this.serverSocket = this.serverSocketChannel.socket();
+            // ��
+            InetSocketAddress serverAddress = new InetSocketAddress(InetAddress.getByName(this.manager.ip),
+                    this.manager.port);
+            this.serverSocket.bind(serverAddress);
+            // ��Selector
+            this.selector = Selector.open();
+            // ע�������¼�����
+            this.serverSocketChannel.register(this.selector, SelectionKey.OP_ACCEPT);
+
+            log.warn(this.manager.Name() + "\tStart");
+
+            listen();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        } finally {
+            try {
+                this.selector.close();
+                this.serverSocket.close();
+                this.serverSocketChannel.close();
+
+                log.warn(this.manager.Name() + "\tStop");
+            } catch (IOException e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    private void listen() throws IOException {
+        int cycleNumber = 0;
+        while (!this.stop) {
+            // ������ֱ���¼�����
+            this.selector.select(this.manager.SelectTimeout);
+            // ��ȡ��ѡ�����
+            Set<SelectionKey> selectionKeys = this.selector.selectedKeys();
+            // ѭ�������¼�
+            Iterator<SelectionKey> iterator = selectionKeys.iterator();
+            while (iterator.hasNext()) {
+                SelectionKey selectionKey = iterator.next();
+                handleKey(selectionKey);
+            }
+            selectionKeys.clear();
+
+            cycleNumber++;
+            if (cycleNumber == this.manager.SleepCount) {
+                cycleNumber = 0;
+                try {
+                    Thread.sleep(1L);
+                } catch (InterruptedException e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+        }
+    }
+
+    private void handleKey(SelectionKey selectionKey) {
+        SocketChannel channel = null;
+        if (selectionKey.isAcceptable()) {
+            ServerSocketChannel serverChannel = (ServerSocketChannel) selectionKey.channel();
+
+            try {
+                // �����ͻ�������
+                channel = serverChannel.accept();
+                // ����������
+                channel.configureBlocking(false);
+                // ע���¼�����
+                channel.register(this.selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);
+
+                SocketAddress socketAddress = channel.socket().getRemoteSocketAddress();
+                String remoteAddress = socketAddress.toString();
+                this.manager.SetConnectTime(remoteAddress, new Date());
+                log.warn(this.manager.Name() + "\taccept\t" + remoteAddress);
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+                try {
+                    channel.close();
+                } catch (Exception e1) {
+                    log.error(e1.getMessage(), e1);
+                }
+            }
+        } else if (selectionKey.isReadable()) {
+            // ��ȡ�ͻ�������
+            channel = (SocketChannel) selectionKey.channel();
+
+            try {
+                SocketAddress socketAddress = channel.socket().getRemoteSocketAddress();
+                String remoteAddress = socketAddress.toString();
+                // ��ջ�����
+                ByteBuffer receivebuffer = ByteBuffer.allocate(this.manager.buffer_size);
+                // ��ȡ���ݵ���������
+                int count = channel.read(receivebuffer);
+                if (count > 0) {
+                    byte[] receiveBytes = receivebuffer.array();
+                    byte[] bytesRece = new byte[count];
+                    System.arraycopy(receiveBytes, 0, bytesRece, 0, count);
+
+                    List<Packet> packetList = this.decoder.decode(remoteAddress, bytesRece);
+                    for (int i = 0; i < packetList.size(); i++) {
+                        Packet packet = packetList.get(i);
+                        this.manager.AppendToRece(remoteAddress, packet);
+
+                        if (this.manager.encoding != null) {
+                            log.info(this.manager.Name() + "\trece\t"
+                                    + socketAddress + "\t" + packet.packetString);
+                        } else {
+                            log.info(this.manager.Name() + "\trece\t"
+                                    + socketAddress + "\t" + HexToByte.byteToHex(packet.packetBytes));
+                        }
+                    }
+                } else if (count == -1) {
+                    channel.close();
+                    log.warn(this.manager.Name() + "\tclose\t" + remoteAddress);
+                }
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+                try {
+                    channel.close();
+                } catch (Exception e1) {
+                    log.error(e1.getMessage(), e1);
+                }
+            }
+        } else if (selectionKey.isWritable()) {
+            // ��ȡ�ͻ�������
+            channel = (SocketChannel) selectionKey.channel();
+
+            try {
+                SocketAddress socketAddress = channel.socket().getRemoteSocketAddress();
+                Packet packet = this.manager.PopSend(socketAddress.toString());
+                if (packet != null) {
+                    byte[] comm_bytes = this.encoder.encode(packet);
+                    this.sendbuffer.clear();
+                    this.sendbuffer.put(comm_bytes);
+                    // ������������־��λ,��Ϊput���ݺ��־���ı�
+                    this.sendbuffer.flip();
+                    channel.write(this.sendbuffer);
+
+                    if (this.manager.encoding != null) {
+                        log.info(this.manager.Name() + "\tsend\t"
+                                + socketAddress + "\t" + packet.packetString);
+                    } else {
+                        log.info(this.manager.Name() + "\tsend\t"
+                                + socketAddress + "\t" + HexToByte.byteToHex(packet.packetBytes));
+                    }
+                }
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+                try {
+                    channel.close();
+                } catch (Exception e1) {
+                    log.error(e1.getMessage(), e1);
+                }
+            }
+        }
+    }
+}

+ 112 - 0
src/main/java/com/persagy/communication/nio/udp/client/NIOUDPClientManager.java

@@ -0,0 +1,112 @@
+package com.persagy.communication.nio.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.IClientHandler;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.communication.util.PacketBuffer;
+
+public class NIOUDPClientManager implements IClientManager {
+    public final PacketBuffer<Packet> sendList = new PacketBuffer<Packet>();
+    public final PacketBuffer<Packet> receList = new PacketBuffer<Packet>();
+    String ip;
+    int port;
+    String targetIp;
+    int targetPort;
+    String encoding;
+    int buffer_size = 1024 * 16;
+    int Max_size = 1000;
+    long SelectTimeout = 1L;
+    int SleepCount = 1000;
+    boolean sessionClosed = false;
+    NIOUDPClientThread thread;
+    int remark_count = 0;
+
+    public NIOUDPClientManager(String ip, int port, String targetIp, int targetPort, String encoding, int buffer_size,
+                               int Max_size, long SelectTimeout, int SleepCount) {
+        this.ip = ip;
+        this.port = port;
+        this.targetIp = targetIp;
+        this.targetPort = targetPort;
+        this.encoding = encoding;
+        this.buffer_size = buffer_size;
+
+        this.Max_size = Max_size;
+        this.SelectTimeout = SelectTimeout;
+        this.SleepCount = SleepCount;
+    }
+
+    @Override
+    public void setHandlerManager(IClientHandler handlerManager) {
+    }
+
+    @Override
+    public String Name() {
+        return "UDP Client " + this.ip + ":" + this.port + " NIO";
+    }
+
+    @Override
+    public synchronized boolean IsSessionClosed() {
+        return this.sessionClosed;
+    }
+
+    @Override
+    public synchronized void SetSessionClosed(boolean value) {
+        this.sessionClosed = value;
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.thread == null) {
+            this.thread = new NIOUDPClientThread(this);
+            this.thread.start();
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new Packet(), Integer.MAX_VALUE);
+        }
+        if (this.thread != null) {
+            this.thread.requestStop();
+            this.thread = null;
+        }
+    }
+
+    @Override
+    public void AppendToSend(Packet MyPackage) {
+        this.sendList.offer(MyPackage, this.Max_size);
+    }
+
+    public Packet PopSend() {
+        Packet MyPackage = this.sendList.poll();
+        return MyPackage;
+    }
+
+    public void AppendToRece(Packet MyPackage) {
+        this.receList.offer(MyPackage, this.Max_size);
+    }
+
+    @Override
+    public Packet PopRece() {
+        Packet MyPackage = this.receList.poll();
+        return MyPackage;
+    }
+
+    @Override
+    public Packet takeRece() throws InterruptedException {
+        Packet MyPackage = this.receList.take();
+        return MyPackage;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+
+}

+ 149 - 0
src/main/java/com/persagy/communication/nio/udp/client/NIOUDPClientThread.java

@@ -0,0 +1,149 @@
+package com.persagy.communication.nio.udp.client;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.util.HexToByte;
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.IOException;
+import java.net.DatagramSocket;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.SocketAddress;
+import java.nio.ByteBuffer;
+import java.nio.channels.DatagramChannel;
+import java.nio.channels.SelectionKey;
+import java.nio.channels.Selector;
+import java.util.Iterator;
+import java.util.Set;
+
+@Slf4j
+public class NIOUDPClientThread extends Thread {
+    private final ByteBuffer sendbuffer;
+    public NIOUDPClientManager manager;
+    private SocketAddress targetAddress;
+    private DatagramChannel serverSocketChannel;
+    private Selector selector;
+    private boolean stop = false;
+
+    public NIOUDPClientThread(NIOUDPClientManager manager) {
+        this.manager = manager;
+        this.sendbuffer = ByteBuffer.allocate(this.manager.buffer_size);
+    }
+
+    public void requestStop() {
+        this.stop = true;
+        try {
+            this.join();
+        } catch (InterruptedException e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void run() {
+        while (!this.stop) {
+            TryRun();
+        }
+    }
+
+    public void TryRun() {
+        try {
+            // ���׽���ͨ��
+            this.serverSocketChannel = DatagramChannel.open();
+            // ����������
+            this.serverSocketChannel.configureBlocking(false);
+            // ��ȡͨ�����׽���
+            DatagramSocket serverSocket = this.serverSocketChannel.socket();
+            // ��
+            InetSocketAddress serverAddress = new InetSocketAddress(InetAddress.getByName(this.manager.ip),
+                    this.manager.port);
+            serverSocket.bind(serverAddress);
+            // ��Selector
+            this.selector = Selector.open();
+            // ע�������¼�����
+            this.serverSocketChannel.register(this.selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);
+
+            this.targetAddress = new InetSocketAddress(InetAddress.getByName(this.manager.targetIp),
+                    this.manager.targetPort);
+
+            this.manager.SetSessionClosed(false);
+            log.warn(this.manager.Name() + "\tStart");
+
+            this.listen();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        } finally {
+            try {
+                this.serverSocketChannel.close();
+                this.selector.close();
+                this.manager.SetSessionClosed(true);
+
+                log.warn(this.manager.Name() + "\tStop");
+            } catch (IOException e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    private void listen() throws IOException {
+        int cycleNumber = 0;
+        while (!this.stop) {
+            this.selector.select(this.manager.SelectTimeout);
+            Set<SelectionKey> selectionKeys = this.selector.selectedKeys();
+            Iterator<SelectionKey> iterator = selectionKeys.iterator();
+            while (iterator.hasNext()) {
+                SelectionKey selectionKey = iterator.next();
+                handleKey(selectionKey);
+            }
+            selectionKeys.clear();
+
+            cycleNumber++;
+            if (cycleNumber == this.manager.SleepCount) {
+                cycleNumber = 0;
+                try {
+                    Thread.sleep(1L);
+                } catch (InterruptedException e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+        }
+    }
+
+    public void handleKey(SelectionKey selectionKey) throws IOException {
+        if (selectionKey.isReadable()) {
+            DatagramChannel client = (DatagramChannel) selectionKey.channel();
+
+            ByteBuffer receivebuffer = ByteBuffer.allocate(this.manager.buffer_size);
+            client.receive(receivebuffer);
+            byte[] bytesRece = receivebuffer.array();
+
+            if (this.manager.encoding == null) {
+                Packet packet = new Packet(bytesRece);
+                this.manager.AppendToRece(packet);
+                log.info(this.manager.Name() + "\trece\t" + HexToByte.byteToHex(packet.packetBytes));
+            } else {
+                String MyPackage = new String(bytesRece, this.manager.encoding);
+                MyPackage = MyPackage.trim();
+                Packet packet = new Packet(MyPackage);
+                this.manager.AppendToRece(packet);
+                log.info(this.manager.Name() + "\trece\t" + packet.packetString);
+            }
+        } else if (selectionKey.isWritable()) {
+            DatagramChannel client = (DatagramChannel) selectionKey.channel();
+            Packet packet = this.manager.PopSend();
+            if (packet != null) {
+                this.sendbuffer.clear();
+                if (this.manager.encoding == null) {
+                    this.sendbuffer.put(packet.packetBytes);
+                    log.info(
+                            this.manager.Name() + "\tsend\t" + HexToByte.byteToHex(packet.packetBytes));
+                } else {
+                    this.sendbuffer.put(packet.packetString.getBytes(this.manager.encoding));
+                    log.info(this.manager.Name() + "\tsend\t" + packet.packetString);
+                }
+                this.sendbuffer.flip();
+                client.send(this.sendbuffer, this.targetAddress);
+            }
+        }
+    }
+}

+ 168 - 0
src/main/java/com/persagy/communication/nio/udp/server/NIOUDPServerManager.java

@@ -0,0 +1,168 @@
+package com.persagy.communication.nio.udp.server;
+
+import cn.hutool.core.util.NumberUtil;
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.entity.UDPSendEntity;
+import com.persagy.communication.util.IServerHandler;
+import com.persagy.communication.util.IServerManager;
+import com.persagy.communication.util.PacketBuffer;
+
+import java.net.InetSocketAddress;
+import java.net.SocketAddress;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+public class NIOUDPServerManager implements IServerManager {
+    public final Map<String, Date> connectDateMap = new HashMap<String, Date>();
+    public final Map<String, SocketAddress> socketMap = new HashMap<String, SocketAddress>();
+    public final PacketBuffer<PacketEntity> sendList = new PacketBuffer<PacketEntity>();
+    public final PacketBuffer<PacketEntity> receList = new PacketBuffer<PacketEntity>();
+    String ip;
+    int port;
+    String encoding;
+    int buffer_size = 1024 * 16;
+    int Max_size = 1000;
+    long SelectTimeout = 1L;
+    int SleepCount = 1000;
+    NIOUDPServerThread thread;
+
+    boolean allowJustSend = false;
+    int remark_count = 0;
+
+    public NIOUDPServerManager(String ip, int port, String encoding, int buffer_size, int Max_size, long SelectTimeout,
+                               int SleepCount) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.buffer_size = buffer_size;
+
+        this.Max_size = Max_size;
+        this.SelectTimeout = SelectTimeout;
+        this.SleepCount = SleepCount;
+    }
+
+    @Override
+    public void setHandlerManager(IServerHandler handlerManager) {
+    }
+
+    @Override
+    public String Name() {
+        return "UDP Server " + this.ip + ":" + this.port + " NIO";
+    }
+
+    @Override
+    public synchronized void Start() {
+        if (this.thread == null) {
+            this.thread = new NIOUDPServerThread(this);
+            this.thread.start();
+        }
+    }
+
+    @Override
+    public synchronized void Stop() {
+        for (int i = 0; i < this.remark_count; i++) {
+            this.receList.offer(new PacketEntity(), Integer.MAX_VALUE);
+        }
+        if (this.thread != null) {
+            this.thread.requestStop();
+            this.thread = null;
+        }
+    }
+
+    @Override
+    public synchronized String[] GetClientAddresss() {
+        return this.connectDateMap.keySet().toArray(new String[0]);
+    }
+
+    @Override
+    public synchronized void AllowJustSend_UDP(boolean allow) {
+        this.allowJustSend = allow;
+    }
+
+    @Override
+    public synchronized Date GetConnectTime(String clientAddress) {
+        if (this.connectDateMap.containsKey(clientAddress)) {
+            return this.connectDateMap.get(clientAddress);
+        }
+        return null;
+    }
+
+    public synchronized void SetConnectTime(String clientAddress, Date date) {
+        this.connectDateMap.remove(clientAddress);
+        if (date != null) {
+            this.connectDateMap.put(clientAddress, date);
+        }
+    }
+
+    public synchronized void AddSocket(SocketAddress sa) {
+        String serverAddress = sa.toString();
+        if (!this.socketMap.containsKey(serverAddress)) {
+            this.socketMap.put(serverAddress, sa);
+        }
+    }
+
+    @Override
+    public void AppendToSend(String clientAddress, Packet MyPackage) {
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.sendList.offer(entity, this.Max_size);
+    }
+
+    public UDPSendEntity PopSend() {
+        PacketEntity entity = sendList.poll();
+        if (entity != null) {
+            if (this.allowJustSend && !this.socketMap.containsKey(entity.address)) {
+                int index = entity.address.indexOf(':');
+                String remote_ip = entity.address.substring(1, index);
+                int remote_port = NumberUtil.parseInt(entity.address.substring(index + 1));
+                this.socketMap.put(entity.address, new InetSocketAddress(remote_ip, remote_port));
+            }
+            UDPSendEntity result = new UDPSendEntity();
+            result.address = this.socketMap.get(entity.address);
+            result.content = entity.content;
+            return result;
+        }
+        return null;
+    }
+
+    public void AppendToRece(SocketAddress sa, Packet MyPackage) {
+        String clientAddress = sa.toString();
+        if (!this.socketMap.containsKey(clientAddress)) {
+            this.socketMap.put(clientAddress, sa);
+        }
+        PacketEntity entity = new PacketEntity();
+        entity.address = clientAddress;
+        entity.content = MyPackage;
+        this.receList.offer(entity, this.Max_size);
+    }
+
+    @Override
+    public PacketEntity PopRece() {
+        PacketEntity entity = this.receList.poll();
+        return entity;
+    }
+
+    @Override
+    public PacketEntity takeRece() throws InterruptedException {
+        PacketEntity entity = this.receList.take();
+        return entity;
+    }
+
+    @Override
+    public int ReceBufferSize() {
+        return this.receList.BufferSize();
+    }
+
+    @Override
+    public synchronized void closeClient(String clientAddress) {
+        this.socketMap.remove(clientAddress);
+    }
+
+    @Override
+    public synchronized void hasRemark(int count) {
+        remark_count = count;
+    }
+}

+ 161 - 0
src/main/java/com/persagy/communication/nio/udp/server/NIOUDPServerThread.java

@@ -0,0 +1,161 @@
+package com.persagy.communication.nio.udp.server;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.UDPSendEntity;
+import com.persagy.communication.util.HexToByte;
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.IOException;
+import java.net.DatagramSocket;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.SocketAddress;
+import java.nio.ByteBuffer;
+import java.nio.channels.DatagramChannel;
+import java.nio.channels.SelectionKey;
+import java.nio.channels.Selector;
+import java.util.Iterator;
+import java.util.Set;
+
+@Slf4j
+public class NIOUDPServerThread extends Thread {
+    private final ByteBuffer sendbuffer;
+    public NIOUDPServerManager manager;
+    private DatagramChannel serverSocketChannel;
+    private DatagramSocket serverSocket;
+    private Selector selector;
+    private boolean stop = false;
+
+    public NIOUDPServerThread(NIOUDPServerManager NIOUDPServerManager) {
+        this.manager = NIOUDPServerManager;
+        this.sendbuffer = ByteBuffer.allocate(this.manager.buffer_size);
+    }
+
+    public void requestStop() {
+        this.stop = true;
+        try {
+            this.join();
+        } catch (InterruptedException e) {
+            log.error(e.getMessage(), e);
+        }
+    }
+
+    @Override
+    public void run() {
+        while (!this.stop) {
+            TryRun();
+        }
+    }
+
+    public void TryRun() {
+        try {
+            // ���׽���ͨ��
+            this.serverSocketChannel = DatagramChannel.open();
+            // ����������
+            this.serverSocketChannel.configureBlocking(false);
+            // ��ȡͨ�����׽���
+            this.serverSocket = this.serverSocketChannel.socket();
+            // ��
+            InetSocketAddress serverAddress = new InetSocketAddress(InetAddress.getByName(this.manager.ip),
+                    this.manager.port);
+            this.serverSocket.bind(serverAddress);
+            // ��Selector
+            this.selector = Selector.open();
+            // ע�������¼�����
+            this.serverSocketChannel.register(this.selector, SelectionKey.OP_READ | SelectionKey.OP_WRITE);
+
+            log.warn(this.manager.Name() + "\tStart");
+
+            listen();
+        } catch (Exception e) {
+            log.error(e.getMessage(), e);
+        } finally {
+            try {
+                this.selector.close();
+                this.serverSocket.close();
+                this.serverSocketChannel.close();
+
+                log.warn(this.manager.Name() + "\tStop");
+            } catch (IOException e1) {
+                log.error(e1.getMessage(), e1);
+            }
+        }
+    }
+
+    private void listen() throws IOException {
+        int cycleNumber = 0;
+        while (!this.stop) {
+            // ������ֱ���¼�����
+            this.selector.select(this.manager.SelectTimeout);
+            // ��ȡ��ѡ�����
+            Set<SelectionKey> selectionKeys = this.selector.selectedKeys();
+            // ѭ�������¼�
+            Iterator<SelectionKey> iterator = selectionKeys.iterator();
+            while (iterator.hasNext()) {
+                SelectionKey selectionKey = iterator.next();
+                handleKey(selectionKey);
+            }
+            selectionKeys.clear();
+
+            cycleNumber++;
+            if (cycleNumber == this.manager.SleepCount) {
+                cycleNumber = 0;
+                try {
+                    Thread.sleep(1L);
+                } catch (InterruptedException e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+        }
+    }
+
+    private void handleKey(SelectionKey selectionKey) throws IOException {
+        DatagramChannel channel = null;
+        if (selectionKey.isReadable()) {
+            // ��ȡ�ͻ�������
+            channel = (DatagramChannel) selectionKey.channel();
+            // ��ջ�����
+            ByteBuffer receivebuffer = ByteBuffer.allocate(this.manager.buffer_size);
+            // ��ȡ���ݵ���������
+            SocketAddress socketAddress = channel.receive(receivebuffer);
+            byte[] bytesRece = receivebuffer.array();
+
+            if (this.manager.encoding == null) {
+                Packet packet = new Packet(bytesRece);
+                this.manager.AppendToRece(socketAddress, packet);
+                log.info(
+                        this.manager.Name() + "\trece\t" + socketAddress + "\t"
+                                + HexToByte.byteToHex(packet.packetBytes));
+            } else {
+                String MyPackage = new String(bytesRece, this.manager.encoding);
+                MyPackage = MyPackage.trim();
+                Packet packet = new Packet(MyPackage);
+                this.manager.AppendToRece(socketAddress, packet);
+                log.info(
+                        this.manager.Name() + "\trece\t" + socketAddress + "\t" + packet.packetString);
+            }
+        } else if (selectionKey.isWritable()) {
+            // ��ȡ�ͻ�������
+            channel = (DatagramChannel) selectionKey.channel();
+
+            UDPSendEntity entity = this.manager.PopSend();
+            if (entity != null) {
+                this.sendbuffer.clear();
+                if (this.manager.encoding == null) {
+                    this.sendbuffer.put(entity.content.packetBytes);
+                    log.info(
+                            this.manager.Name() + "\tsend\t" + entity.address.toString() + "\t"
+                                    + HexToByte.byteToHex(entity.content.packetBytes));
+                } else {
+                    this.sendbuffer.put(entity.content.packetString.getBytes(this.manager.encoding));
+                    log.info(
+                            this.manager.Name() + "\tsend\t" + entity.address.toString() + "\t"
+                                    + entity.content.packetString);
+                }
+                // ������������־��λ,��Ϊput���ݺ��־���ı�
+                this.sendbuffer.flip();
+                channel.send(this.sendbuffer, entity.address);
+            }
+        }
+    }
+}

+ 56 - 0
src/main/java/com/persagy/communication/util/AESHelper.java

@@ -0,0 +1,56 @@
+package com.persagy.communication.util;
+
+import javax.crypto.Cipher;
+import javax.crypto.spec.IvParameterSpec;
+import javax.crypto.spec.SecretKeySpec;
+
+public class AESHelper {
+    private static final String KEY_ALGORITHM = "AES";
+    private static final String DEFAULT_CIPHER_ALGORITHM = "AES/CBC/PKCS5Padding";
+    private final String algorithm;
+    private final byte[] password;
+    private final String mode;
+    private Cipher cipher;
+
+    public AESHelper(String algorithm, byte[] password, String mode) throws Exception {
+        if (algorithm != null) {
+            this.algorithm = algorithm;
+        } else {
+            this.algorithm = DEFAULT_CIPHER_ALGORITHM;
+        }
+        this.password = password;
+        this.mode = mode;
+
+        if ("encrypt".equals(this.mode)) {
+            this.cipher = this.initCipher(this.password, Cipher.ENCRYPT_MODE);
+        } else if ("decrypt".equals(this.mode)) {
+            this.cipher = this.initCipher(this.password, Cipher.DECRYPT_MODE);
+        }
+    }
+
+    private Cipher initCipher(byte[] password, int CipherMode) throws Exception {
+        Cipher cipher = Cipher.getInstance(this.algorithm);
+        SecretKeySpec keySpec = new SecretKeySpec(password, KEY_ALGORITHM);
+        IvParameterSpec ivSpec = new IvParameterSpec(new byte[16]);
+        cipher.init(CipherMode, keySpec, ivSpec);
+        return cipher;
+    }
+
+    public synchronized byte[] encrypt(byte[] bytes) throws Exception {
+        if ("encrypt".equals(this.mode)) {
+            byte[] results = this.cipher.doFinal(bytes);
+            return results;
+        } else {
+            return null;
+        }
+    }
+
+    public synchronized byte[] decrypt(byte[] bytes) throws Exception {
+        if ("decrypt".equals(this.mode)) {
+            byte[] results = this.cipher.doFinal(bytes);
+            return results;
+        } else {
+            return null;
+        }
+    }
+}

+ 225 - 0
src/main/java/com/persagy/communication/util/ASampleMain.java

@@ -0,0 +1,225 @@
+package com.persagy.communication.util;
+
+import cn.hutool.core.util.NumberUtil;
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+import com.persagy.communication.mina.udp.client.UDPClientManager;
+import com.persagy.communication.mina.udp.server.UDPServerManager;
+import com.persagy.communication.netty.tcp.client.NettyTCPClientManager;
+import com.persagy.communication.netty.tcp.server.NettyTCPServerManager;
+import com.persagy.util.DateUtils;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+@Slf4j
+public class ASampleMain {
+
+    public static void main(String[] args) throws Exception {
+
+        int index_args = 0;
+        String protocol = args[index_args++];
+        String server_or_client = args[index_args++];
+        String ip = args[index_args++];
+        String port_desc = args[index_args++];
+        int cycle_seconds = NumberUtil.parseInt(args[index_args++]);
+
+        int port_from;
+        int port_to;
+        int index_ = port_desc.indexOf("-");
+        if (index_ == -1) {
+            port_from = NumberUtil.parseInt(port_desc);
+            port_to = NumberUtil.parseInt(port_desc);
+        } else {
+            port_from = NumberUtil.parseInt(port_desc.substring(0, index_));
+            port_to = NumberUtil.parseInt(port_desc.substring(index_ + 1));
+        }
+        while (true) {
+            if ("client".equalsIgnoreCase(server_or_client)) {
+                int count_each_port = NumberUtil.parseInt(args[index_args++]);
+                int sleep = NumberUtil.parseInt(args[index_args++]);
+                List<IClientManager> clientList;
+                if ("udp".equalsIgnoreCase(protocol)) {
+                    String local_ip = args[index_args++];
+                    int local_port_start = NumberUtil.parseInt(args[index_args++]);
+                    clientList = Init_UDPClient(ip, port_from, port_to, count_each_port, local_ip, local_port_start);
+                } else {
+                    clientList = Init_TCPClient(ip, port_from, port_to, count_each_port);
+                }
+                Process_client(clientList, cycle_seconds, sleep);
+            } else if ("ssl_client".equalsIgnoreCase(server_or_client)) {
+                int count_each_port = NumberUtil.parseInt(args[index_args++]);
+                int sleep = NumberUtil.parseInt(args[index_args++]);
+                List<IClientManager> clientList;
+                if ("tcp".equalsIgnoreCase(protocol)) {
+                    clientList = Init_SSLTCPClient(ip, port_from, port_to, count_each_port);
+                    Process_client(clientList, cycle_seconds, sleep);
+                }
+            } else if ("ssl_server".equalsIgnoreCase(server_or_client)) {
+                List<IServerManager> serverList;
+                if ("tcp".equalsIgnoreCase(protocol)) {
+                    serverList = Init_SSLTCPServer(ip, port_from, port_to);
+                    Process_server(serverList, cycle_seconds);
+                }
+            } else {
+                List<IServerManager> serverList;
+                if ("udp".equalsIgnoreCase(protocol)) {
+                    serverList = Init_UDPServer(ip, port_from, port_to);
+                } else {
+                    serverList = Init_TCPServer(ip, port_from, port_to);
+                }
+                Process_server(serverList, cycle_seconds);
+            }
+        }
+    }
+
+    private static void Process_client(List<IClientManager> clientList, int cycle_seconds, int sleep) {
+        Date start_time = new Date();
+        while (true) {
+            try {
+                Thread.sleep(sleep);
+            } catch (InterruptedException e) {
+                log.error(e.getMessage(), e);
+            }
+
+            Date curr_time = new Date();
+            if (curr_time.getTime() - start_time.getTime() > 1000L * cycle_seconds) {
+                break;
+            }
+            String timeString = DateUtils.formatDate(curr_time, DateUtils.FORMATTER_MILLI_PRETTY);
+
+            try {
+                for (IClientManager client : clientList) {
+                    client.AppendToSend(new Packet(timeString + "\t" + "I am " + client.Name()));
+                }
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+        for (IClientManager manager : clientList) {
+            manager.Stop();
+        }
+    }
+
+    private static void Process_server(List<IServerManager> serverList, int cycle_seconds) {
+        Date start_time = new Date();
+        while (true) {
+            try {
+                Thread.sleep(1L);
+            } catch (InterruptedException e) {
+                log.error(e.getMessage(), e);
+            }
+
+            Date curr_time = new Date();
+            if (curr_time.getTime() - start_time.getTime() > 1000L * cycle_seconds) {
+                break;
+            }
+            String timeString = DateUtils.formatDate(curr_time, DateUtils.FORMATTER_MILLI_PRETTY);
+
+            try {
+                for (IServerManager server : serverList) {
+                    while (true) {
+                        PacketEntity PacketEntity = server.PopRece();
+                        if (PacketEntity == null) {
+                            break;
+                        }
+
+                        server.AppendToSend(PacketEntity.address,
+                                new Packet(timeString + "\t" + "I am " + server.Name()));
+                    }
+                }
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+        for (IServerManager manager : serverList) {
+            manager.Stop();
+        }
+    }
+
+    private static List<IServerManager> Init_TCPServer(String ip, int port_from, int port_to) throws Exception {
+        List<IServerManager> result = new ArrayList<IServerManager>();
+        for (int i = port_from; i <= port_to; i++) {
+            IServerManager serverManager = new NettyTCPServerManager(ip, i, "utf-8", 1000, (byte) '(', (byte) ')');
+            serverManager.Start();
+            result.add(serverManager);
+        }
+        return result;
+    }
+
+    private static List<IServerManager> Init_SSLTCPServer(String ip, int port_from, int port_to) throws Exception {
+        List<IServerManager> result = new ArrayList<IServerManager>();
+        for (int i = port_from; i <= port_to; i++) {
+
+            byte[] ssl_file_km = FileToByte.file2byte(System.getProperty("user.dir") + "/server.jks");
+            byte[] ssl_file_tm = FileToByte.file2byte(System.getProperty("user.dir") + "/server.jks");
+            String ssl_password_km = "pass_s";
+            String ssl_password_tm = "pass_s";
+            IServerManager serverManager = new NettyTCPServerManager(ip, i, "utf-8", "TLS", "JKS", "SunX509",
+                    ssl_file_km, ssl_password_km, ssl_file_tm, ssl_password_tm, false, null, 1000, (byte) '(',
+                    (byte) ')');
+            serverManager.Start();
+            result.add(serverManager);
+        }
+        return result;
+    }
+
+    private static List<IServerManager> Init_UDPServer(String ip, int port_from, int port_to) throws Exception {
+        List<IServerManager> result = new ArrayList<IServerManager>();
+        for (int i = port_from; i <= port_to; i++) {
+            IServerManager serverManager = new UDPServerManager(ip, i, "utf-8", 1000);
+            serverManager.Start();
+            result.add(serverManager);
+        }
+        return result;
+    }
+
+    private static List<IClientManager> Init_SSLTCPClient(String ip, int port_from, int port_to, int count_each_port)
+            throws Exception {
+        List<IClientManager> result = new ArrayList<IClientManager>();
+        for (int i = port_from; i <= port_to; i++) {
+            for (int ii = 0; ii < count_each_port; ii++) {
+                byte[] ssl_file_km = FileToByte.file2byte(System.getProperty("user.dir") + "/client1.jks");
+                byte[] ssl_file_tm = FileToByte.file2byte(System.getProperty("user.dir") + "/client1.jks");
+                String ssl_password_km = "pass_c";
+                String ssl_password_tm = "pass_c";
+                IClientManager serverManager = new NettyTCPClientManager(ip, i, "utf-8", "TLS", "JKS", "SunX509",
+                        ssl_file_km, ssl_password_km, ssl_file_tm, ssl_password_tm, false, null, 1000, (byte) '(',
+                        (byte) ')');
+                serverManager.Start();
+                result.add(serverManager);
+            }
+        }
+        return result;
+    }
+
+    private static List<IClientManager> Init_TCPClient(String ip, int port_from, int port_to, int count_each_port)
+            throws Exception {
+        List<IClientManager> result = new ArrayList<IClientManager>();
+        for (int i = port_from; i <= port_to; i++) {
+            for (int ii = 0; ii < count_each_port; ii++) {
+                IClientManager serverManager = new NettyTCPClientManager(ip, i, "utf-8", 1000, (byte) '(', (byte) ')');
+                serverManager.Start();
+                result.add(serverManager);
+            }
+        }
+        return result;
+    }
+
+    private static List<IClientManager> Init_UDPClient(String ip, int port_from, int port_to, int count_each_port,
+                                                       String local_ip, int local_port_start) throws Exception {
+        List<IClientManager> result = new ArrayList<IClientManager>();
+        for (int i = port_from; i <= port_to; i++) {
+            for (int ii = 0; ii < count_each_port; ii++) {
+                int local_port = local_port_start + i * count_each_port + ii;
+                IClientManager serverManager = new UDPClientManager(local_ip, local_port, ip, i, "utf-8", 1000);
+                serverManager.Start();
+                result.add(serverManager);
+            }
+        }
+        return result;
+    }
+
+}

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 185 - 0
src/main/java/com/persagy/communication/util/CompressUtil.java


+ 44 - 0
src/main/java/com/persagy/communication/util/FileToByte.java

@@ -0,0 +1,44 @@
+package com.persagy.communication.util;
+
+import lombok.extern.slf4j.Slf4j;
+
+import java.io.ByteArrayOutputStream;
+import java.io.FileInputStream;
+
+@Slf4j
+public class FileToByte {
+    public static byte[] file2byte(String filepath) throws Exception {
+        FileInputStream fis = null;
+        ByteArrayOutputStream baos = null;
+        try {
+            fis = new FileInputStream(filepath);
+            baos = new ByteArrayOutputStream();
+
+            int len;
+            byte[] buffer = new byte[1024];
+            while ((len = fis.read(buffer)) != -1) {
+                baos.write(buffer, 0, len);
+            }
+
+            byte[] bytes = baos.toByteArray();
+            return bytes;
+        } catch (Exception e) {
+            throw e;
+        } finally {
+            if (fis != null) {
+                try {
+                    fis.close();
+                } catch (Exception e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+            if (baos != null) {
+                try {
+                    baos.close();
+                } catch (Exception e) {
+                    log.error(e.getMessage(), e);
+                }
+            }
+        }
+    }
+}

+ 114 - 0
src/main/java/com/persagy/communication/util/HexToByte.java

@@ -0,0 +1,114 @@
+package com.persagy.communication.util;
+
+import java.util.List;
+
+public class HexToByte {
+    public synchronized static byte[] hexToByte(String hex) {
+        return hexToByte(hex, false);
+    }
+
+    public synchronized static byte[] hexToByte(String hex, boolean hasspace) {
+        byte[] result;
+
+        if (hasspace) {
+            result = new byte[(hex.length() + 1) / 3];
+            for (int i = 0; i < result.length; i++) {
+                result[i] = Integer.decode("0x" + hex.substring(i * 3, i * 3 + 2)).byteValue();
+            }
+        } else {
+            result = new byte[hex.length() / 2];
+            for (int i = 0; i < result.length; i++) {
+                result[i] = Integer.decode("0x" + hex.substring(i * 2, i * 2 + 2)).byteValue();
+            }
+        }
+        return result;
+    }
+
+    public synchronized static String byteToHex(byte[] bytes) {
+        return byteToHex(bytes, false);
+    }
+
+    public synchronized static String byteToHex(byte[] bytes, boolean hasspace) {
+        StringBuffer sb = new StringBuffer();
+
+        for (int i = 0; i < bytes.length; i++) {
+            if (hasspace && i > 0) {
+                sb.append(" ");
+            }
+            int temp = (bytes[i] + 256) % 256;
+            sb.append("" + getHexChar(temp / 16) + getHexChar(temp % 16));
+        }
+        return sb.toString();
+    }
+
+    public synchronized static String byteToHex(List<Byte> bytes) {
+        return byteToHex(bytes, false);
+    }
+
+    public synchronized static String byteToHex(List<Byte> bytes, boolean hasspace) {
+        StringBuffer sb = new StringBuffer();
+
+        for (int i = 0; i < bytes.size(); i++) {
+            if (hasspace && i > 0) {
+                sb.append(" ");
+            }
+            int temp = (bytes.get(i) + 256) % 256;
+            sb.append("" + getHexChar(temp / 16) + getHexChar(temp % 16));
+        }
+        return sb.toString();
+    }
+
+    public synchronized static String byteToHex(List<Byte> bytes, int length) {
+        return byteToHex(bytes, false);
+    }
+
+    public synchronized static String byteToHex(List<Byte> bytes, int length, boolean hasspace) {
+        StringBuffer sb = new StringBuffer();
+
+        for (int i = 0; i < length; i++) {
+            if (hasspace && i > 0) {
+                sb.append(" ");
+            }
+            int temp = (bytes.get(i) + 256) % 256;
+            sb.append("" + getHexChar(temp / 16) + getHexChar(temp % 16));
+        }
+        return sb.toString();
+    }
+
+    public synchronized static String byteToHex(byte[] bytes, int length) {
+        return byteToHex(bytes, false);
+    }
+
+    public synchronized static String byteToHex(byte[] bytes, int length, boolean hasspace) {
+        StringBuffer sb = new StringBuffer();
+
+        for (int i = 0; i < length; i++) {
+            if (hasspace && i > 0) {
+                sb.append(" ");
+            }
+            int temp = (bytes[i] + 256) % 256;
+            sb.append("" + getHexChar(temp / 16) + getHexChar(temp % 16));
+        }
+        return sb.toString();
+    }
+
+    private static String getHexChar(int number) {
+        String result;
+        if (number < 10) {
+            result = "" + number;
+        } else {
+            result = "" + (char) (number - 10 + 'A');
+        }
+        return result;
+    }
+
+    public synchronized static byte[] setVerify(byte[] bytes) {
+        int number = 0;
+        for (int i = 2; i < bytes.length - 2; i++) {
+            number += (bytes[i] + 256) % 256;
+        }
+        bytes[bytes.length - 2] = (byte) (number % 256);
+        bytes[bytes.length - 1] = (byte) (number / 256);
+        return bytes;
+    }
+}

+ 12 - 0
src/main/java/com/persagy/communication/util/IClientHandler.java

@@ -0,0 +1,12 @@
+package com.persagy.communication.util;
+
+public interface IClientHandler {
+    void sessionOpened() throws Exception;
+
+    void sessionClosed() throws Exception;
+
+    void exceptionCaught(Throwable cause) throws Exception;
+
+    void sessionIdle() throws Exception;
+
+}

+ 28 - 0
src/main/java/com/persagy/communication/util/IClientManager.java

@@ -0,0 +1,28 @@
+package com.persagy.communication.util;
+
+import com.persagy.communication.entity.Packet;
+
+public interface IClientManager {
+
+    String Name();
+
+    void Start();
+
+    void Stop();
+
+    boolean IsSessionClosed();
+
+    void SetSessionClosed(boolean value);
+
+    void AppendToSend(Packet MyPackage);
+
+    Packet PopRece();
+
+    Packet takeRece() throws InterruptedException;
+
+    int ReceBufferSize();
+
+    void setHandlerManager(IClientHandler handlerManager);
+
+    void hasRemark(int count);
+}

+ 13 - 0
src/main/java/com/persagy/communication/util/IServerHandler.java

@@ -0,0 +1,13 @@
+package com.persagy.communication.util;
+
+import java.net.SocketAddress;
+
+public interface IServerHandler {
+    void sessionOpened(SocketAddress address) throws Exception;
+
+    void sessionClosed(SocketAddress address) throws Exception;
+
+    void exceptionCaught(SocketAddress address, Throwable cause) throws Exception;
+
+    void sessionIdle(SocketAddress address) throws Exception;
+}

+ 34 - 0
src/main/java/com/persagy/communication/util/IServerManager.java

@@ -0,0 +1,34 @@
+package com.persagy.communication.util;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.entity.PacketEntity;
+
+import java.util.Date;
+
+public interface IServerManager {
+    String Name();
+
+    void Start();
+
+    void Stop();
+
+    void AllowJustSend_UDP(boolean allow);
+
+    String[] GetClientAddresss();
+
+    Date GetConnectTime(String clientAddress);
+
+    void AppendToSend(String clientAddress, Packet MyPackage);
+
+    PacketEntity PopRece();
+
+    PacketEntity takeRece() throws InterruptedException;
+
+    int ReceBufferSize();
+
+    void setHandlerManager(IServerHandler handlerManager);
+
+    void closeClient(String clientAddress);
+
+    void hasRemark(int count);
+}

+ 157 - 0
src/main/java/com/persagy/communication/util/MyDecoder.java

@@ -0,0 +1,157 @@
+package com.persagy.communication.util;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.*;
+
+@Slf4j
+public class MyDecoder {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    Byte[] forbid_bytes;
+
+    AESHelper aes;
+    Map<String, MyStream> streamMap = new HashMap<String, MyStream>();
+    Long last_minute = null;
+    int info_minute = 0;
+    int comm_minute = 0;
+    int count_minute = 0;
+    Long last_hour = null;
+    int info_hour = 0;
+    int comm_hour = 0;
+    int count_hour = 0;
+
+    public MyDecoder(String ip, int port, String encoding, String aes_password, boolean compress, boolean separate,
+                     boolean separateBytes, byte prefix, byte suffix, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.separate = separate || separateBytes;
+        this.separateBytes = separateBytes;
+        this.prefix = prefix;
+        this.suffix = suffix;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        if (this.aes_password != null) {
+            try {
+                this.aes = new AESHelper(null, HexToByte.hexToByte(this.aes_password), "decrypt");
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+        if (this.separate) {
+            List<Byte> byteList = new ArrayList<Byte>();
+            if (this.separateBytes) {
+                MinaCodecFactory.add_forbit_bytes(this.prefixBytes, byteList);
+                MinaCodecFactory.add_forbit_bytes(this.suffixBytes, byteList);
+            } else {
+                MinaCodecFactory.add_forbit_byte(this.prefix, byteList);
+                MinaCodecFactory.add_forbit_byte(this.suffix, byteList);
+            }
+            this.forbid_bytes = byteList.toArray(new Byte[0]);
+        }
+    }
+
+    public synchronized List<Packet> decode(String remoteAddress, byte[] rece_bytes) throws Exception {
+        List<Packet> result = new ArrayList<Packet>();
+
+        if (this.separate) {
+            if (!this.streamMap.containsKey(remoteAddress)) {
+                MyStream stream;
+                if (this.separateBytes) {
+                    stream = new MyStream(this.prefixBytes, this.suffixBytes);
+                } else {
+                    stream = new MyStream(this.prefix, this.suffix);
+                }
+                this.streamMap.put(remoteAddress, stream);
+            }
+            MyStream stream = this.streamMap.get(remoteAddress);
+            List<byte[]> bytesList = stream.Process(rece_bytes, rece_bytes.length);
+            for (int i = 0; i < bytesList.size(); i++) {
+                byte[] bytes = bytesList.get(i);
+                Packet packet = this.process_packet(bytes, stream.head_count);
+                result.add(packet);
+            }
+        } else {
+            Packet packet = this.process_packet(rece_bytes, 0);
+            result.add(packet);
+        }
+
+        return result;
+    }
+
+    public synchronized Packet process_packet(byte[] bytes, int head_count) throws Exception {
+        Date currentTime = new Date();
+
+        long curr_minute = currentTime.getTime() / (1000L * 60);
+        if (last_minute != null && last_minute != curr_minute) {
+            log.warn(this.ip + ":" + this.port + "\t" + "rece minute" + "\t" + info_minute + "\t" + comm_minute + "\t" + count_minute);
+        }
+        if (last_minute == null || last_minute != curr_minute) {
+            last_minute = curr_minute;
+            info_minute = 0;
+            comm_minute = 0;
+            count_minute = 0;
+        }
+
+        long curr_hour = currentTime.getTime() / (1000L * 60 * 60);
+        if (last_hour != null && last_hour != curr_hour) {
+            log.warn(this.ip + ":" + this.port + "\t" + "rece hour" + "\t" + info_hour + "\t" + comm_hour + "\t" + count_hour);
+        }
+        if (last_hour == null || last_hour != curr_hour) {
+            last_hour = curr_hour;
+            info_hour = 0;
+            comm_hour = 0;
+            count_hour = 0;
+        }
+
+        comm_minute += bytes.length + head_count;
+        comm_hour += bytes.length + head_count;
+
+        if (this.separate) {
+            bytes = CompressUtil.decode(bytes, this.forbid_bytes);
+        }
+        if (this.compress) {
+            bytes = CompressUtil.decompress(bytes);
+        }
+        if (this.aes_password != null) {
+            try {
+                bytes = this.aes.decrypt(bytes);
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+                throw e;
+            }
+        }
+
+        info_minute += bytes.length;
+        info_hour += bytes.length;
+
+        count_minute++;
+        count_hour++;
+
+        Packet packet;
+        if (this.encoding != null) {
+            packet = new Packet(new String(bytes, this.encoding));
+        } else {
+            packet = new Packet(bytes);
+        }
+        return packet;
+    }
+
+}

+ 152 - 0
src/main/java/com/persagy/communication/util/MyEncoder.java

@@ -0,0 +1,152 @@
+package com.persagy.communication.util;
+
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.mina.codec.MinaCodecFactory;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+@Slf4j
+public class MyEncoder {
+    String ip;
+    int port;
+    String encoding;
+    String aes_password;
+    boolean compress = false;
+
+    boolean separate = false;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+
+    Byte[] forbid_bytes;
+
+    AESHelper aes;
+    Long last_minute = null;
+    long info_minute = 0;
+    long comm_minute = 0;
+    long count_minute = 0;
+    Long last_hour = null;
+    long info_hour = 0;
+    long comm_hour = 0;
+    long count_hour = 0;
+
+    public MyEncoder(String ip, int port, String encoding, String aes_password, boolean compress, boolean separate,
+                     boolean separateBytes, byte prefix, byte suffix, byte[] prefixBytes, byte[] suffixBytes) {
+        this.ip = ip;
+        this.port = port;
+        this.encoding = encoding;
+        this.aes_password = aes_password;
+        this.compress = compress;
+        this.separate = separate || separateBytes;
+        this.separateBytes = separateBytes;
+        this.prefix = prefix;
+        this.suffix = suffix;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        if (this.aes_password != null) {
+            try {
+                this.aes = new AESHelper(null, HexToByte.hexToByte(this.aes_password), "encrypt");
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+            }
+        }
+        if (this.separate) {
+            List<Byte> byteList = new ArrayList<Byte>();
+            if (this.separateBytes) {
+                MinaCodecFactory.add_forbit_bytes(this.prefixBytes, byteList);
+                MinaCodecFactory.add_forbit_bytes(this.suffixBytes, byteList);
+            } else {
+                MinaCodecFactory.add_forbit_byte(this.prefix, byteList);
+                MinaCodecFactory.add_forbit_byte(this.suffix, byteList);
+            }
+            this.forbid_bytes = byteList.toArray(new Byte[0]);
+        }
+    }
+
+    public synchronized byte[] encode(Packet request) throws Exception {
+        Date currentTime = new Date();
+
+        long curr_minute = currentTime.getTime() / (1000L * 60);
+        if (last_minute != null && last_minute != curr_minute) {
+            log.warn(this.ip + ":" + this.port + "\t" + "send minute" + "\t" + info_minute + "\t"
+                    + comm_minute + "\t" + count_minute);
+        }
+        if (last_minute == null || last_minute != curr_minute) {
+            last_minute = curr_minute;
+            info_minute = 0;
+            comm_minute = 0;
+            count_minute = 0;
+        }
+
+        long curr_hour = currentTime.getTime() / (1000L * 60 * 60);
+        if (last_hour != null && last_hour != curr_hour) {
+            log.warn(this.ip + ":" + this.port + "\t" + "send hour" + "\t" + info_hour + "\t"
+                    + comm_hour + "\t" + count_hour);
+        }
+        if (last_hour == null || last_hour != curr_hour) {
+            last_hour = curr_hour;
+            info_hour = 0;
+            comm_hour = 0;
+            count_hour = 0;
+        }
+
+        byte[] content_bytes;
+        if (this.encoding != null) {
+            content_bytes = request.packetString.getBytes(this.encoding);
+        } else {
+            content_bytes = request.packetBytes;
+        }
+        info_minute += content_bytes.length;
+        info_hour += content_bytes.length;
+
+        if (this.aes_password != null) {
+            try {
+                content_bytes = this.aes.encrypt(content_bytes);
+            } catch (Exception e) {
+                log.error(e.getMessage(), e);
+                throw e;
+            }
+        }
+        if (this.compress) {
+            content_bytes = CompressUtil.compress(content_bytes);
+        }
+        if (this.separate) {
+            content_bytes = CompressUtil.encode(content_bytes, this.forbid_bytes);
+        }
+
+        int comm_length;
+        byte[] buffer;
+        if (this.separate) {
+            if (this.separateBytes) {
+                comm_length = this.prefixBytes.length + content_bytes.length + this.suffixBytes.length;
+                buffer = new byte[comm_length];
+                System.arraycopy(this.prefixBytes, 0, buffer, 0, this.prefixBytes.length);
+                System.arraycopy(content_bytes, 0, buffer, this.prefixBytes.length, content_bytes.length);
+                System.arraycopy(this.suffixBytes, 0, buffer, this.prefixBytes.length + content_bytes.length,
+                        this.suffixBytes.length);
+            } else {
+                comm_length = 1 + content_bytes.length + 1;
+                buffer = new byte[comm_length];
+                buffer[0] = this.prefix;
+                System.arraycopy(content_bytes, 0, buffer, 1, content_bytes.length);
+                buffer[1 + content_bytes.length] = this.suffix;
+            }
+        } else {
+            comm_length = content_bytes.length;
+            buffer = content_bytes;
+        }
+        comm_minute += comm_length;
+        comm_hour += comm_length;
+
+        count_minute++;
+        count_hour++;
+
+        return buffer;
+    }
+}

+ 95 - 0
src/main/java/com/persagy/communication/util/MySslContextFactory.java

@@ -0,0 +1,95 @@
+package com.persagy.communication.util;
+
+import lombok.extern.slf4j.Slf4j;
+
+import javax.net.ssl.KeyManagerFactory;
+import javax.net.ssl.SSLContext;
+import javax.net.ssl.TrustManagerFactory;
+import java.io.ByteArrayInputStream;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.security.KeyStore;
+
+@Slf4j
+public final class MySslContextFactory {
+    public static SSLContext getContext(String PROTOCOL, String KeyStoreType, String algorithm, String path_km,
+                                        String path_tm, String password_km, String password_tm) throws Exception {
+        InputStream is_km = null;
+        InputStream is_tm = null;
+        if (path_km != null) {
+            is_km = new FileInputStream(path_km);
+        }
+        if (path_tm != null) {
+            is_tm = new FileInputStream(path_tm);
+        }
+        SSLContext SSLContext = getContext(PROTOCOL, KeyStoreType, algorithm, is_km, is_tm, password_km, password_tm);
+        return SSLContext;
+    }
+
+    public static SSLContext getContext(String PROTOCOL, String KeyStoreType, String algorithm, byte[] bytes_km,
+                                        byte[] bytes_tm, String password_km, String password_tm) throws Exception {
+        ByteArrayInputStream in = null;
+        ByteArrayInputStream tIN = null;
+        if (bytes_km != null) {
+            in = new ByteArrayInputStream(bytes_km);
+        }
+        if (bytes_tm != null) {
+            tIN = new ByteArrayInputStream(bytes_tm);
+        }
+        SSLContext SSLContext = getContext(PROTOCOL, KeyStoreType, algorithm, in, tIN, password_km, password_tm);
+        return SSLContext;
+    }
+
+    private static SSLContext getContext(String PROTOCOL, String KeyStoreType, String algorithm, InputStream is_km,
+                                         InputStream is_tm, String password_km, String password_tm) throws Exception {
+        SSLContext context;
+
+        try {
+            // ��Կ������
+            KeyManagerFactory kmf = null;
+            if (is_km != null) {
+                KeyStore ks = KeyStore.getInstance(KeyStoreType);
+                ks.load(is_km, password_km.toCharArray());
+
+                kmf = KeyManagerFactory.getInstance(algorithm);
+                kmf.init(ks, password_km.toCharArray());
+            }
+            // ���ο�
+            TrustManagerFactory tf = null;
+            if (is_tm != null) {
+                KeyStore tks = KeyStore.getInstance(KeyStoreType);
+                tks.load(is_tm, password_tm.toCharArray());
+                tf = TrustManagerFactory.getInstance(algorithm);
+                tf.init(tks);
+            }
+
+            context = SSLContext.getInstance(PROTOCOL);
+            // ��ʼ����������
+            context.init(kmf == null ? null : kmf.getKeyManagers(), tf == null ? null : tf.getTrustManagers(), null);
+
+        } catch (Exception e) {
+            throw new Error("Failed to initialize the SSLContext", e);
+        } finally {
+            if (is_km != null) {
+                try {
+                    is_km.close();
+                } catch (IOException e) {
+                    log.error(e.getMessage(), e);
+                }
+                is_km = null;
+            }
+
+            if (is_tm != null) {
+                try {
+                    is_tm.close();
+                } catch (IOException e) {
+                    log.error(e.getMessage(), e);
+                }
+                is_tm = null;
+            }
+        }
+
+        return context;
+    }
+}

+ 118 - 0
src/main/java/com/persagy/communication/util/MyStream.java

@@ -0,0 +1,118 @@
+package com.persagy.communication.util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class MyStream {
+    public int head_count = 0;
+    boolean separateBytes = false;
+    byte prefix;
+    byte suffix;
+    byte[] prefixBytes;
+    byte[] suffixBytes;
+    List<Byte> contents = new ArrayList<Byte>();
+    boolean content_valid = false;
+    List<Byte> buffer = new ArrayList<Byte>();
+
+    public MyStream(byte prefix, byte suffix) {
+        this.separateBytes = false;
+        this.prefix = prefix;
+        this.suffix = suffix;
+
+        this.head_count = 2;
+    }
+
+    public MyStream(byte[] prefixBytes, byte[] suffixBytes) {
+        this.separateBytes = true;
+        this.prefixBytes = prefixBytes;
+        this.suffixBytes = suffixBytes;
+
+        this.head_count = this.prefixBytes.length + this.suffixBytes.length;
+    }
+
+    public List<byte[]> Process(byte[] bytes, int length) {
+        List<byte[]> result = new ArrayList<byte[]>();
+        if (this.separateBytes) {
+            for (int i = 0; i < length; i++) {
+                this.buffer.add(bytes[i]);
+            }
+            while (true) {
+                int suffix_index = this.FindIndexForward(this.buffer, this.buffer.size(), this.suffixBytes);
+                if (suffix_index == -1) {
+                    break;
+                }
+                int prefix_index = this.FindIndexBackward(this.buffer, suffix_index, this.prefixBytes);
+                if (prefix_index != -1) {
+                    int bytes_length = suffix_index - prefix_index - this.prefixBytes.length;
+                    if (bytes_length > 0) {
+                        byte[] bytesInner = new byte[bytes_length];
+                        for (int ii = 0; ii < bytes_length; ii++) {
+                            bytesInner[ii] = this.buffer.get(prefix_index + this.prefixBytes.length + ii);
+                        }
+                        result.add(bytesInner);
+                    }
+                }
+                for (int ii = 0; ii < suffix_index + this.suffixBytes.length; ii++) {
+                    this.buffer.remove(0);
+                }
+            }
+        } else {
+            for (int i = 0; i < length; i++) {
+                byte onebyte = bytes[i];
+                if (onebyte == this.suffix) {
+                    if (this.content_valid && this.contents.size() > 0) {
+                        byte[] bytesInner = new byte[contents.size()];
+                        for (int ii = 0; ii < this.contents.size(); ii++) {
+                            bytesInner[ii] = this.contents.get(ii);
+                        }
+                        result.add(bytesInner);
+                    }
+                    this.contents.clear();
+                    this.content_valid = false;
+                } else if (onebyte == this.prefix) {
+                    this.contents.clear();
+                    this.content_valid = true;
+                } else {
+                    if (this.content_valid) {
+                        this.contents.add(onebyte);
+                    }
+                }
+            }
+        }
+
+        return result;
+    }
+
+    private int FindIndexForward(List<Byte> byteList, int length, byte[] bytes) {
+        int result = -1;
+        for (int i = 0; i <= length - bytes.length; i++) {
+            if (this.Match(byteList, i, bytes)) {
+                result = i;
+                break;
+            }
+        }
+        return result;
+    }
+
+    private int FindIndexBackward(List<Byte> byteList, int length, byte[] bytes) {
+        int result = -1;
+        for (int i = length - bytes.length; i >= 0; i--) {
+            if (this.Match(byteList, i, bytes)) {
+                result = i;
+                break;
+            }
+        }
+        return result;
+    }
+
+    private boolean Match(List<Byte> byteList, int index, byte[] bytes) {
+        boolean match = true;
+        for (int i = 0; i < bytes.length; i++) {
+            if (byteList.get(index + i) != bytes[i]) {
+                match = false;
+                break;
+            }
+        }
+        return match;
+    }
+}

+ 46 - 0
src/main/java/com/persagy/communication/util/PacketBuffer.java

@@ -0,0 +1,46 @@
+package com.persagy.communication.util;
+
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.concurrent.LinkedBlockingQueue;
+
+@Slf4j
+public class PacketBuffer<T> {
+    private final LinkedBlockingQueue<T> buffer = new LinkedBlockingQueue<T>();
+
+    public PacketBuffer() {
+    }
+
+    // put �����������������
+    // add ��������������쳣
+    // offer �����������������false
+    public void offer(T packet, int size) {
+        if (this.buffer.size() >= size) {
+            return;
+        }
+
+        this.buffer.offer(packet);
+    }
+
+    // take ��������ѿգ�����
+    // remove ��������ѿգ��쳣
+    // poll ��������ѿգ�����null
+    public T poll() {
+        T MyPackage = null;
+        try {
+            MyPackage = this.buffer.take();
+        } catch (InterruptedException e) {
+            log.error(e.getMessage(), e);
+        }
+        return MyPackage;
+    }
+
+    public T take() throws InterruptedException {
+        T MyPackage = this.buffer.take();
+        return MyPackage;
+    }
+
+    public int BufferSize() {
+        return this.buffer.size();
+    }
+}

+ 13 - 0
src/main/java/com/persagy/constant/Constant.java

@@ -0,0 +1,13 @@
+package com.persagy.constant;
+
+import lombok.extern.slf4j.Slf4j;
+
+@SuppressWarnings({"rawtypes"})
+@Slf4j
+public class Constant {
+    /**
+     * 是否默认打印收发的iot记录
+     */
+    public static boolean iotLog =true;
+
+}

+ 29 - 0
src/main/java/com/persagy/entity/ValueObject.java

@@ -0,0 +1,29 @@
+package com.persagy.entity;
+
+public class ValueObject {
+	public ValueObject() {
+
+	}
+
+	public ValueObject(long value) {
+		this.intValue = value;
+	}
+
+	public ValueObject(double value) {
+		this.doubleValue = value;
+		this.type = 1;
+	}
+
+	public ValueObject(String text) {
+		try {
+			this.intValue = Long.parseLong(text);
+		} catch (Exception e) {
+			this.doubleValue = Double.parseDouble(text);
+			this.type = 1;
+		}
+	}
+
+	public int type;// 0:int;1:double
+	public long intValue;
+	public double doubleValue;
+}

+ 122 - 0
src/main/java/com/persagy/parser/DatagramParser.java

@@ -0,0 +1,122 @@
+package com.persagy.parser;
+
+import java.text.SimpleDateFormat;
+
+import cn.hutool.core.util.NumberUtil;
+import com.alibaba.fastjson.JSON;
+
+/**
+ * @author:LuoGuangyi
+ * @company:PersagyTechnologyCo.,Ltd
+ * @since:2021/04/01 09:59
+ * @version:V1.0
+ **/
+public class DatagramParser {
+	private static final DatagramParser INSTANCE = new DatagramParser();
+
+	private DatagramParser() {
+	}
+
+	public static DatagramParser Instance() {
+		return INSTANCE;
+	}
+
+	public ParserEntity parser(String[] splitContent) throws Exception {
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+		ParserEntity result = new ParserEntity();
+		result.building = splitContent[0];
+		result.gateway = splitContent[1];
+		result.packageId = splitContent[4];
+		if (splitContent != null && splitContent.length > 2) {
+			String datatype = splitContent[2];
+			result.datatype = datatype;
+			if ("report".equals(splitContent[2]) || "reportack".equals(splitContent[2]) || "text".equals(splitContent[2])
+					|| "textack".equals(splitContent[2])) {
+				String time = splitContent[3];
+				String packageSign = splitContent[5];
+				int functionCount = NumberUtil.parseInt(splitContent[6]);
+				for (int i = 0; i < functionCount; ++i) {
+					String funcid = splitContent[7 + i * 2];
+					RecordData recordData = new RecordData();
+					recordData.meter = packageSign;
+					recordData.funcid = funcid;
+					recordData.time = sdf.parse(time);
+					recordData.value = splitContent[8 + i * 2];
+					result.dataList.add(recordData);
+				}
+			} else if ("happening".equals(splitContent[2]) || "happeningack".equals(splitContent[2])) {
+				String time = splitContent[3];
+				{
+					RecordData recordData = new RecordData();
+					recordData.time = sdf.parse(time);
+					recordData.happeningType = splitContent[5];
+					StringBuffer happeningContent = new StringBuffer();
+					for (int i = 6; i < splitContent.length; i++) {
+						if (happeningContent.length() > 0) {
+							happeningContent.append(";");
+						}
+						happeningContent.append(splitContent[i]);
+					}
+					recordData.happeningContent = JSON.parseObject(happeningContent.toString());
+					result.dataList.add(recordData);
+				}
+			} else if ("reportpointset".equals(splitContent[2])) {
+				String time = splitContent[3];
+				String packageSign = splitContent[5];
+				{
+					String funcid = splitContent[6 + 0 * 2];
+					RecordData recordData = new RecordData();
+					recordData.meter = packageSign;
+					recordData.funcid = funcid;
+					recordData.time = sdf.parse(time);
+					recordData.value = splitContent[7];
+					recordData.endtime = sdf.parse(splitContent[8]);
+					recordData.result = splitContent[9];
+					result.dataList.add(recordData);
+				}
+			} else if ("senddownreadack".equals(splitContent[2])) {
+				String time = splitContent[3];
+				String packageSign = splitContent[5];
+				{
+					String funcid = splitContent[6 + 0 * 2];
+					RecordData recordData = new RecordData();
+					recordData.meter = packageSign;
+					recordData.funcid = funcid;
+					recordData.time = sdf.parse(time);
+					recordData.endtime = sdf.parse(splitContent[7]);
+					recordData.result = splitContent[8];
+					recordData.value = splitContent[9];
+					result.dataList.add(recordData);
+				}
+			} else if ("senddownset".equals(splitContent[2])) {
+				String time = splitContent[3];
+				String packageSign = splitContent[5];
+				{
+					String funcid = splitContent[6 + 0 * 2];
+					RecordData recordData = new RecordData();
+					recordData.meter = packageSign;
+					recordData.funcid = funcid;
+					recordData.time = sdf.parse(time);
+					recordData.value = splitContent[7];
+					result.dataList.add(recordData);
+				}
+			} else if ("senddownsetack".equals(splitContent[2])) {
+				String time = splitContent[3];
+				String packageSign = splitContent[5];
+				{
+					String funcid = splitContent[6 + 0 * 2];
+					RecordData recordData = new RecordData();
+					recordData.meter = packageSign;
+					recordData.funcid = funcid;
+					recordData.time = sdf.parse(time);
+					recordData.value = splitContent[7];
+					recordData.endtime = sdf.parse(splitContent[8]);
+					recordData.result = splitContent[9];
+					result.dataList.add(recordData);
+				}
+			}
+		}
+
+		return result;
+	}
+}

+ 22 - 0
src/main/java/com/persagy/parser/ParserEntity.java

@@ -0,0 +1,22 @@
+package com.persagy.parser;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @description: TODO
+ * @author:LuoGuangyi
+ * @company:PersagyTechnologyCo.,Ltd
+ * @since:2021/04/01 09:59
+ * @version:V1.0
+ **/
+public class ParserEntity {
+	public String building;
+	public String gateway;
+	public String packageId;
+	public String datatype; // report text senddownreadack senddownsetack reportpointset virtualpointset
+	public List<RecordData> dataList = new ArrayList<RecordData>();
+
+	public ParserEntity() {
+	}
+}

+ 28 - 0
src/main/java/com/persagy/parser/RecordData.java

@@ -0,0 +1,28 @@
+package com.persagy.parser;
+
+import java.util.Date;
+
+import com.alibaba.fastjson.JSONObject;
+
+/**
+ * @description: TODO
+ * @author:LuoGuangyi
+ * @company:PersagyTechnologyCo.,Ltd
+ * @since:2021/04/01 09:58
+ * @version:V1.0
+ **/
+public class RecordData {
+	public String meter;
+	public String funcid;
+	public Date time;
+	public String value;
+
+	public Date endtime;
+	public String result;
+
+	public String happeningType;
+	public JSONObject happeningContent;
+
+	public RecordData() {
+	}
+}

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 1876 - 0
src/main/java/com/persagy/simulator/MeterSimulatorLexer.java


Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 1781 - 0
src/main/java/com/persagy/simulator/MeterSimulatorParser.java


+ 977 - 0
src/main/java/com/persagy/simulator/MeterSimulatorScanner.java

@@ -0,0 +1,977 @@
+// $ANTLR 3.1 MeterSimulatorScanner.g 2013-11-21 16:54:43
+
+package com.persagy.simulator;
+
+import java.util.Map;
+import java.util.HashMap;
+
+
+import org.antlr.runtime.*;
+import org.antlr.runtime.tree.*;
+
+public class MeterSimulatorScanner extends TreeParser {
+    public static final String[] tokenNames = new String[] {
+        "<invalid>", "<EOR>", "<DOWN>", "<UP>", "NEWLINE", "DOUBLE", "INTEGER", "CONSTANT", "ID", "F0", "F1", "F1DATE", "F2", "WS", "'+'", "'-'", "'*'", "'/'", "'%'", "'('", "')'", "'if'", "'{'", "'}'", "'elseif'", "'else'", "'||'", "'&&'", "'!'", "'['", "'<'", "'<='", "'>'", "'>='", "'=='", "'!='", "']'", "','"
+    };
+    public static final int INTEGER=6;
+    public static final int T__29=29;
+    public static final int T__28=28;
+    public static final int T__27=27;
+    public static final int T__26=26;
+    public static final int T__25=25;
+    public static final int T__24=24;
+    public static final int T__23=23;
+    public static final int T__22=22;
+    public static final int T__21=21;
+    public static final int T__20=20;
+    public static final int ID=8;
+    public static final int EOF=-1;
+    public static final int T__30=30;
+    public static final int T__19=19;
+    public static final int T__31=31;
+    public static final int T__32=32;
+    public static final int T__16=16;
+    public static final int T__33=33;
+    public static final int WS=13;
+    public static final int T__15=15;
+    public static final int T__34=34;
+    public static final int T__18=18;
+    public static final int T__35=35;
+    public static final int NEWLINE=4;
+    public static final int T__17=17;
+    public static final int T__36=36;
+    public static final int T__37=37;
+    public static final int T__14=14;
+    public static final int F1=10;
+    public static final int DOUBLE=5;
+    public static final int CONSTANT=7;
+    public static final int F0=9;
+    public static final int F1DATE=11;
+    public static final int F2=12;
+
+    // delegates
+    // delegators
+
+
+        public MeterSimulatorScanner(TreeNodeStream input) {
+            this(input, new RecognizerSharedState());
+        }
+        public MeterSimulatorScanner(TreeNodeStream input, RecognizerSharedState state) {
+            super(input, state);
+             
+        }
+        
+
+    public String[] getTokenNames() { return MeterSimulatorScanner.tokenNames; }
+    public String getGrammarFileName() { return "MeterSimulatorScanner.g"; }
+
+
+    	public Map<String, Boolean> varDict = new HashMap<String, Boolean>();
+    	private void AddVar(String var)
+    	{	
+    		if(!this.varDict.containsKey(var))
+    		{
+    			this.varDict.put(var,true);
+    		}
+    	}
+
+
+
+    // $ANTLR start "prog"
+    // MeterSimulatorScanner.g:29:1: prog : (a= expr ) ;
+    public final void prog() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:30:2: ( (a= expr ) )
+            // MeterSimulatorScanner.g:30:4: (a= expr )
+            {
+            // MeterSimulatorScanner.g:30:4: (a= expr )
+            // MeterSimulatorScanner.g:30:5: a= expr
+            {
+            pushFollow(FOLLOW_expr_in_prog60);
+            expr();
+
+            state._fsp--;
+
+
+            }
+
+
+            }
+
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "prog"
+
+
+    // $ANTLR start "expr"
+    // MeterSimulatorScanner.g:33:1: expr : ( (a= fourexpr ) | (a= ifcondition ) );
+    public final void expr() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:34:2: ( (a= fourexpr ) | (a= ifcondition ) )
+            int alt1=2;
+            int LA1_0 = input.LA(1);
+
+            if ( ((LA1_0>=DOUBLE && LA1_0<=F2)||(LA1_0>=14 && LA1_0<=18)) ) {
+                alt1=1;
+            }
+            else if ( (LA1_0==21) ) {
+                alt1=2;
+            }
+            else {
+                NoViableAltException nvae =
+                    new NoViableAltException("", 1, 0, input);
+
+                throw nvae;
+            }
+            switch (alt1) {
+                case 1 :
+                    // MeterSimulatorScanner.g:34:4: (a= fourexpr )
+                    {
+                    // MeterSimulatorScanner.g:34:4: (a= fourexpr )
+                    // MeterSimulatorScanner.g:34:5: a= fourexpr
+                    {
+                    pushFollow(FOLLOW_fourexpr_in_expr76);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    }
+
+
+                    }
+                    break;
+                case 2 :
+                    // MeterSimulatorScanner.g:35:4: (a= ifcondition )
+                    {
+                    // MeterSimulatorScanner.g:35:4: (a= ifcondition )
+                    // MeterSimulatorScanner.g:35:5: a= ifcondition
+                    {
+                    pushFollow(FOLLOW_ifcondition_in_expr85);
+                    ifcondition();
+
+                    state._fsp--;
+
+
+                    }
+
+
+                    }
+                    break;
+
+            }
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "expr"
+
+
+    // $ANTLR start "fourexpr"
+    // MeterSimulatorScanner.g:38:1: fourexpr : ( ^( '+' a= fourexpr b= fourexpr ) | ^( '-' a= fourexpr b= fourexpr ) | ^( '*' a= fourexpr b= fourexpr ) | ^( '/' a= fourexpr b= fourexpr ) | ^( '%' a= fourexpr b= fourexpr ) | CONSTANT | ID | F0 | ^( F1 a= fourexpr ) | ^( F1DATE a= fourexpr ) | ^( F2 a= fourexpr b= fourexpr ) | DOUBLE | INTEGER );
+    public final void fourexpr() throws RecognitionException {
+        CommonTree ID1=null;
+
+        try {
+            // MeterSimulatorScanner.g:39:2: ( ^( '+' a= fourexpr b= fourexpr ) | ^( '-' a= fourexpr b= fourexpr ) | ^( '*' a= fourexpr b= fourexpr ) | ^( '/' a= fourexpr b= fourexpr ) | ^( '%' a= fourexpr b= fourexpr ) | CONSTANT | ID | F0 | ^( F1 a= fourexpr ) | ^( F1DATE a= fourexpr ) | ^( F2 a= fourexpr b= fourexpr ) | DOUBLE | INTEGER )
+            int alt2=13;
+            switch ( input.LA(1) ) {
+            case 14:
+                {
+                alt2=1;
+                }
+                break;
+            case 15:
+                {
+                alt2=2;
+                }
+                break;
+            case 16:
+                {
+                alt2=3;
+                }
+                break;
+            case 17:
+                {
+                alt2=4;
+                }
+                break;
+            case 18:
+                {
+                alt2=5;
+                }
+                break;
+            case CONSTANT:
+                {
+                alt2=6;
+                }
+                break;
+            case ID:
+                {
+                alt2=7;
+                }
+                break;
+            case F0:
+                {
+                alt2=8;
+                }
+                break;
+            case F1:
+                {
+                alt2=9;
+                }
+                break;
+            case F1DATE:
+                {
+                alt2=10;
+                }
+                break;
+            case F2:
+                {
+                alt2=11;
+                }
+                break;
+            case DOUBLE:
+                {
+                alt2=12;
+                }
+                break;
+            case INTEGER:
+                {
+                alt2=13;
+                }
+                break;
+            default:
+                NoViableAltException nvae =
+                    new NoViableAltException("", 2, 0, input);
+
+                throw nvae;
+            }
+
+            switch (alt2) {
+                case 1 :
+                    // MeterSimulatorScanner.g:39:4: ^( '+' a= fourexpr b= fourexpr )
+                    {
+                    match(input,14,FOLLOW_14_in_fourexpr98); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr102);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr106);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 2 :
+                    // MeterSimulatorScanner.g:40:4: ^( '-' a= fourexpr b= fourexpr )
+                    {
+                    match(input,15,FOLLOW_15_in_fourexpr113); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr117);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr121);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 3 :
+                    // MeterSimulatorScanner.g:41:4: ^( '*' a= fourexpr b= fourexpr )
+                    {
+                    match(input,16,FOLLOW_16_in_fourexpr128); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr132);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr136);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 4 :
+                    // MeterSimulatorScanner.g:42:4: ^( '/' a= fourexpr b= fourexpr )
+                    {
+                    match(input,17,FOLLOW_17_in_fourexpr143); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr147);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr151);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 5 :
+                    // MeterSimulatorScanner.g:43:4: ^( '%' a= fourexpr b= fourexpr )
+                    {
+                    match(input,18,FOLLOW_18_in_fourexpr158); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr162);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr166);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 6 :
+                    // MeterSimulatorScanner.g:44:4: CONSTANT
+                    {
+                    match(input,CONSTANT,FOLLOW_CONSTANT_in_fourexpr172); 
+
+                    }
+                    break;
+                case 7 :
+                    // MeterSimulatorScanner.g:45:4: ID
+                    {
+                    ID1=(CommonTree)match(input,ID,FOLLOW_ID_in_fourexpr177); 
+                    this.AddVar((ID1!=null?ID1.getText():null));
+
+                    }
+                    break;
+                case 8 :
+                    // MeterSimulatorScanner.g:46:4: F0
+                    {
+                    match(input,F0,FOLLOW_F0_in_fourexpr184); 
+
+                    }
+                    break;
+                case 9 :
+                    // MeterSimulatorScanner.g:47:4: ^( F1 a= fourexpr )
+                    {
+                    match(input,F1,FOLLOW_F1_in_fourexpr190); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr194);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 10 :
+                    // MeterSimulatorScanner.g:48:4: ^( F1DATE a= fourexpr )
+                    {
+                    match(input,F1DATE,FOLLOW_F1DATE_in_fourexpr201); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr205);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 11 :
+                    // MeterSimulatorScanner.g:49:4: ^( F2 a= fourexpr b= fourexpr )
+                    {
+                    match(input,F2,FOLLOW_F2_in_fourexpr212); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr216);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_fourexpr220);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 12 :
+                    // MeterSimulatorScanner.g:50:4: DOUBLE
+                    {
+                    match(input,DOUBLE,FOLLOW_DOUBLE_in_fourexpr226); 
+
+                    }
+                    break;
+                case 13 :
+                    // MeterSimulatorScanner.g:51:4: INTEGER
+                    {
+                    match(input,INTEGER,FOLLOW_INTEGER_in_fourexpr231); 
+
+                    }
+                    break;
+
+            }
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "fourexpr"
+
+
+    // $ANTLR start "ifcondition"
+    // MeterSimulatorScanner.g:54:1: ifcondition : ^( 'if' con= condition a= expr b= elseifcondition ) ;
+    public final void ifcondition() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:55:2: ( ^( 'if' con= condition a= expr b= elseifcondition ) )
+            // MeterSimulatorScanner.g:55:4: ^( 'if' con= condition a= expr b= elseifcondition )
+            {
+            match(input,21,FOLLOW_21_in_ifcondition244); 
+
+            match(input, Token.DOWN, null); 
+            pushFollow(FOLLOW_condition_in_ifcondition248);
+            condition();
+
+            state._fsp--;
+
+            pushFollow(FOLLOW_expr_in_ifcondition252);
+            expr();
+
+            state._fsp--;
+
+            pushFollow(FOLLOW_elseifcondition_in_ifcondition256);
+            elseifcondition();
+
+            state._fsp--;
+
+
+            match(input, Token.UP, null); 
+
+            }
+
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "ifcondition"
+
+
+    // $ANTLR start "elseifcondition"
+    // MeterSimulatorScanner.g:58:1: elseifcondition : ( ^( 'elseif' con= condition a= expr b= elseifcondition ) | ^( 'else' a= expr ) );
+    public final void elseifcondition() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:59:2: ( ^( 'elseif' con= condition a= expr b= elseifcondition ) | ^( 'else' a= expr ) )
+            int alt3=2;
+            int LA3_0 = input.LA(1);
+
+            if ( (LA3_0==24) ) {
+                alt3=1;
+            }
+            else if ( (LA3_0==25) ) {
+                alt3=2;
+            }
+            else {
+                NoViableAltException nvae =
+                    new NoViableAltException("", 3, 0, input);
+
+                throw nvae;
+            }
+            switch (alt3) {
+                case 1 :
+                    // MeterSimulatorScanner.g:59:4: ^( 'elseif' con= condition a= expr b= elseifcondition )
+                    {
+                    match(input,24,FOLLOW_24_in_elseifcondition269); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_condition_in_elseifcondition273);
+                    condition();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_expr_in_elseifcondition277);
+                    expr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_elseifcondition_in_elseifcondition281);
+                    elseifcondition();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 2 :
+                    // MeterSimulatorScanner.g:60:4: ^( 'else' a= expr )
+                    {
+                    match(input,25,FOLLOW_25_in_elseifcondition288); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_expr_in_elseifcondition292);
+                    expr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+
+            }
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "elseifcondition"
+
+
+    // $ANTLR start "condition"
+    // MeterSimulatorScanner.g:63:1: condition : ( ^( '&&' a= condition b= condition ) | ^( '||' a= condition b= condition ) | ^( '!' a= condition ) | (a= comparecondition ) );
+    public final void condition() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:64:2: ( ^( '&&' a= condition b= condition ) | ^( '||' a= condition b= condition ) | ^( '!' a= condition ) | (a= comparecondition ) )
+            int alt4=4;
+            switch ( input.LA(1) ) {
+            case 27:
+                {
+                alt4=1;
+                }
+                break;
+            case 26:
+                {
+                alt4=2;
+                }
+                break;
+            case 28:
+                {
+                alt4=3;
+                }
+                break;
+            case 30:
+            case 31:
+            case 32:
+            case 33:
+            case 34:
+            case 35:
+                {
+                alt4=4;
+                }
+                break;
+            default:
+                NoViableAltException nvae =
+                    new NoViableAltException("", 4, 0, input);
+
+                throw nvae;
+            }
+
+            switch (alt4) {
+                case 1 :
+                    // MeterSimulatorScanner.g:64:4: ^( '&&' a= condition b= condition )
+                    {
+                    match(input,27,FOLLOW_27_in_condition305); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_condition_in_condition309);
+                    condition();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_condition_in_condition313);
+                    condition();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 2 :
+                    // MeterSimulatorScanner.g:65:4: ^( '||' a= condition b= condition )
+                    {
+                    match(input,26,FOLLOW_26_in_condition320); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_condition_in_condition324);
+                    condition();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_condition_in_condition328);
+                    condition();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 3 :
+                    // MeterSimulatorScanner.g:66:4: ^( '!' a= condition )
+                    {
+                    match(input,28,FOLLOW_28_in_condition335); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_condition_in_condition339);
+                    condition();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 4 :
+                    // MeterSimulatorScanner.g:67:4: (a= comparecondition )
+                    {
+                    // MeterSimulatorScanner.g:67:4: (a= comparecondition )
+                    // MeterSimulatorScanner.g:67:5: a= comparecondition
+                    {
+                    pushFollow(FOLLOW_comparecondition_in_condition348);
+                    comparecondition();
+
+                    state._fsp--;
+
+
+                    }
+
+
+                    }
+                    break;
+
+            }
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "condition"
+
+
+    // $ANTLR start "comparecondition"
+    // MeterSimulatorScanner.g:70:1: comparecondition : ( ^( '<' a= fourexpr b= fourexpr ) | ^( '<=' a= fourexpr b= fourexpr ) | ^( '>' a= fourexpr b= fourexpr ) | ^( '>=' a= fourexpr b= fourexpr ) | ^( '==' a= fourexpr b= fourexpr ) | ^( '!=' a= fourexpr b= fourexpr ) );
+    public final void comparecondition() throws RecognitionException {
+        try {
+            // MeterSimulatorScanner.g:71:2: ( ^( '<' a= fourexpr b= fourexpr ) | ^( '<=' a= fourexpr b= fourexpr ) | ^( '>' a= fourexpr b= fourexpr ) | ^( '>=' a= fourexpr b= fourexpr ) | ^( '==' a= fourexpr b= fourexpr ) | ^( '!=' a= fourexpr b= fourexpr ) )
+            int alt5=6;
+            switch ( input.LA(1) ) {
+            case 30:
+                {
+                alt5=1;
+                }
+                break;
+            case 31:
+                {
+                alt5=2;
+                }
+                break;
+            case 32:
+                {
+                alt5=3;
+                }
+                break;
+            case 33:
+                {
+                alt5=4;
+                }
+                break;
+            case 34:
+                {
+                alt5=5;
+                }
+                break;
+            case 35:
+                {
+                alt5=6;
+                }
+                break;
+            default:
+                NoViableAltException nvae =
+                    new NoViableAltException("", 5, 0, input);
+
+                throw nvae;
+            }
+
+            switch (alt5) {
+                case 1 :
+                    // MeterSimulatorScanner.g:71:4: ^( '<' a= fourexpr b= fourexpr )
+                    {
+                    match(input,30,FOLLOW_30_in_comparecondition361); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition365);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition369);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 2 :
+                    // MeterSimulatorScanner.g:72:4: ^( '<=' a= fourexpr b= fourexpr )
+                    {
+                    match(input,31,FOLLOW_31_in_comparecondition376); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition380);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition384);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 3 :
+                    // MeterSimulatorScanner.g:73:4: ^( '>' a= fourexpr b= fourexpr )
+                    {
+                    match(input,32,FOLLOW_32_in_comparecondition391); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition395);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition399);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 4 :
+                    // MeterSimulatorScanner.g:74:4: ^( '>=' a= fourexpr b= fourexpr )
+                    {
+                    match(input,33,FOLLOW_33_in_comparecondition406); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition410);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition414);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 5 :
+                    // MeterSimulatorScanner.g:75:4: ^( '==' a= fourexpr b= fourexpr )
+                    {
+                    match(input,34,FOLLOW_34_in_comparecondition421); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition425);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition429);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+                case 6 :
+                    // MeterSimulatorScanner.g:76:4: ^( '!=' a= fourexpr b= fourexpr )
+                    {
+                    match(input,35,FOLLOW_35_in_comparecondition436); 
+
+                    match(input, Token.DOWN, null); 
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition440);
+                    fourexpr();
+
+                    state._fsp--;
+
+                    pushFollow(FOLLOW_fourexpr_in_comparecondition444);
+                    fourexpr();
+
+                    state._fsp--;
+
+
+                    match(input, Token.UP, null); 
+
+                    }
+                    break;
+
+            }
+        }
+        catch (RecognitionException re) {
+            reportError(re);
+            recover(input,re);
+        }
+        finally {
+        }
+        return ;
+    }
+    // $ANTLR end "comparecondition"
+
+    // Delegated rules
+
+
+ 
+
+    public static final BitSet FOLLOW_expr_in_prog60 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_fourexpr_in_expr76 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_ifcondition_in_expr85 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_14_in_fourexpr98 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr102 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr106 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_15_in_fourexpr113 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr117 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr121 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_16_in_fourexpr128 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr132 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr136 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_17_in_fourexpr143 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr147 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr151 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_18_in_fourexpr158 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr162 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr166 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_CONSTANT_in_fourexpr172 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_ID_in_fourexpr177 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_F0_in_fourexpr184 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_F1_in_fourexpr190 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr194 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_F1DATE_in_fourexpr201 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr205 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_F2_in_fourexpr212 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr216 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_fourexpr220 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_DOUBLE_in_fourexpr226 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_INTEGER_in_fourexpr231 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_21_in_ifcondition244 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_condition_in_ifcondition248 = new BitSet(new long[]{0x000000000027DFE0L});
+    public static final BitSet FOLLOW_expr_in_ifcondition252 = new BitSet(new long[]{0x0000000003000000L});
+    public static final BitSet FOLLOW_elseifcondition_in_ifcondition256 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_24_in_elseifcondition269 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_condition_in_elseifcondition273 = new BitSet(new long[]{0x000000000027DFE0L});
+    public static final BitSet FOLLOW_expr_in_elseifcondition277 = new BitSet(new long[]{0x0000000003000000L});
+    public static final BitSet FOLLOW_elseifcondition_in_elseifcondition281 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_25_in_elseifcondition288 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_expr_in_elseifcondition292 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_27_in_condition305 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_condition_in_condition309 = new BitSet(new long[]{0x0000000FDC000000L});
+    public static final BitSet FOLLOW_condition_in_condition313 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_26_in_condition320 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_condition_in_condition324 = new BitSet(new long[]{0x0000000FDC000000L});
+    public static final BitSet FOLLOW_condition_in_condition328 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_28_in_condition335 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_condition_in_condition339 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_comparecondition_in_condition348 = new BitSet(new long[]{0x0000000000000002L});
+    public static final BitSet FOLLOW_30_in_comparecondition361 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition365 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition369 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_31_in_comparecondition376 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition380 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition384 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_32_in_comparecondition391 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition395 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition399 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_33_in_comparecondition406 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition410 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition414 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_34_in_comparecondition421 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition425 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition429 = new BitSet(new long[]{0x0000000000000008L});
+    public static final BitSet FOLLOW_35_in_comparecondition436 = new BitSet(new long[]{0x0000000000000004L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition440 = new BitSet(new long[]{0x000000000007DFE0L});
+    public static final BitSet FOLLOW_fourexpr_in_comparecondition444 = new BitSet(new long[]{0x0000000000000008L});
+
+}

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 1068 - 0
src/main/java/com/persagy/simulator/MeterSimulatorWalker.java


+ 40 - 0
src/main/java/com/persagy/simulator_gaopin/BKDRHash.java

@@ -0,0 +1,40 @@
+package com.persagy.simulator_gaopin;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.UUID;
+
+public class BKDRHash {
+	public static int seed = 31;
+
+	public static int getHashCode(String str) {
+		int hash = 0;
+		for (int i = 0; i != str.length(); ++i) {
+			hash = seed * hash + str.charAt(i);
+		}
+		return hash;
+	}
+
+	public static int getRemain(int value, int chushu) {
+		int yushu = value % chushu;
+		if (yushu < 0) {
+			yushu = 0 - yushu;
+		}
+		return yushu;
+	}
+
+	public static void main(String[] args) {
+		int length = 100000;
+		String str1 = "http://blog.csdn.net/bojie5744";
+		System.out.println("str1 :" + str1.hashCode() + " system");
+		System.out.println("str1 :" + getHashCode(str1) + " custom");
+
+		Map<String, String> map = new HashMap<String, String>();
+		for (int i = 0; i != length; ++i) {
+			String str = UUID.randomUUID().toString();
+			map.put(getHashCode(str) + "", str);
+		}
+		System.out.println("冲突数为: " + (length - map.size()));
+	}
+
+}

+ 533 - 0
src/main/java/com/persagy/simulator_gaopin/Constant.java

@@ -0,0 +1,533 @@
+package com.persagy.simulator_gaopin;
+
+import cn.hutool.core.io.resource.ResourceUtil;
+import cn.hutool.core.util.NumberUtil;
+import cn.hutool.core.util.StrUtil;
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.persagy.simulator.MeterSimulatorWalker;
+import com.persagy.util.ExcelSheet;
+import com.persagy.util.ExcelUtil;
+import com.persagy.util.FastJsonReaderUtil;
+import lombok.extern.slf4j.Slf4j;
+import org.dom4j.Document;
+import org.dom4j.Element;
+import org.dom4j.io.SAXReader;
+import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
+
+import java.io.File;
+import java.io.InputStream;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+@Slf4j
+public class Constant {
+    static SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+
+    public static String socket_or_mqtt = "socket";
+
+    public static MqttConnectOptions mqtt_options;
+    public static String mqtt_clientId;
+    public static String mqtt_topic_prefix;
+
+    public static String PROTOCOL = "UDP";
+    public static String ServerIP;
+    public static int ServerPort;
+
+    public static String Mode = "mina";
+    public static int Max_size = 10000;
+    public static int SleepCount = 1000;
+    public static boolean Separate = false;
+    public static String Separate_begin = "(";
+    public static String Separate_end = ")";
+    public static boolean Compress = false;
+
+    public static int pointupload_period_second = 30;
+    public static boolean BatchSend = false;
+    public static int BatchCount = 10;
+    public static boolean TimeStart_enable = false;
+    public static Date TimeStart;
+    public static int TimeBeiShu;
+
+    public static boolean use_excel = false;
+    public static boolean random_timeout = false;
+
+    public static List<EntityBuilding> buildingList = new ArrayList<EntityBuilding>();
+    public static Map<String, EntityBuilding> buildingMap = new HashMap<String, EntityBuilding>();
+
+    public static Map<String, DoubleTimeObject> setDataMap = new HashMap<String, DoubleTimeObject>();
+    public static Map<String, String> set2report = new HashMap<String, String>();
+    public static Map<String, DoubleTimeObject> reportDataMap = new HashMap<String, DoubleTimeObject>();
+
+    public static Map<String, JSONArray> formula_paramMap = new HashMap<String, JSONArray>();
+    public static Map<String, MeterSimulatorWalker> walkerMap = new HashMap<String, MeterSimulatorWalker>();
+
+    public static class Millisecond {
+        public static final long MINUTE = 1000L * 60;
+        public static final long MINUTE_5 = 1000L * 60 * 5;
+        public static final long HOUR = 1000L * 60 * 60;
+        public static final long DAY = 1000L * 60 * 60 * 24;
+    }
+
+    public static InputStream getStream(String resourc) {
+        if (resourc.startsWith(File.separator)) {
+            resourc = StrUtil.removePrefix(resourc, File.separator);
+        }
+        try {
+            String filePath = File.separator + "usr" + File.separator + "local" + File.separator + "etc" + File.separator + resourc;
+            InputStream stream = ResourceUtil.getStream(filePath);
+            if (stream != null) {
+                log.warn("getStream success 0 " + filePath);
+                return stream;
+            }
+        } catch (Exception e) {
+        }
+        try {
+            // jar包同级config目录
+            String filePath = System.getProperty("user.dir") + File.separator + "config" + File.separator + resourc;
+            InputStream stream = ResourceUtil.getStream(filePath);
+            if (stream != null) {
+                log.warn("getStream success 1" + "\t" + filePath);
+                return stream;
+            }
+        } catch (Exception e) {
+        }
+        try {
+            // jar包同级目录
+            String filePath = System.getProperty("user.dir") + File.separator + resourc;
+            InputStream stream = ResourceUtil.getStream(filePath);
+            if (stream != null) {
+                log.warn("getStream success 2" + "\t" + filePath);
+                return stream;
+            }
+        } catch (Exception e) {
+        }
+        try {
+            // ClassPath目录
+            InputStream in = new org.springframework.core.io.ClassPathResource(File.separator + resourc).getInputStream();
+            if (in != null) {
+                log.warn("getStream success 3" + "\t" + "ClassPathResource" + "\t" + resourc);
+                return in;
+            }
+        } catch (Exception e) {
+        }
+        try {
+            InputStream stream = Constant.class.getResourceAsStream(File.separator + resourc);
+            if (stream != null) {
+                log.warn("getStream success 4" + "\t" + "getResourceAsStream" + "\t" + resourc);
+                return stream;
+            }
+        } catch (Exception e) {
+        }
+        log.warn("getStream fail " + resourc);
+        return null;
+    }
+
+    static {
+
+
+        try {
+            InputStream inputStream = getStream("config.xml");
+            SAXReader saxReader = new SAXReader();
+            Document document = saxReader.read(inputStream);
+            Iterator iter;
+            Element element;
+
+            iter = document.selectNodes("/root/socket_or_mqtt").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                socket_or_mqtt = element.getText();
+            }
+
+            if (socket_or_mqtt.equals("mqtt")) {
+                mqtt_options = new MqttConnectOptions();
+                mqtt_options.setAutomaticReconnect(true);
+                mqtt_options.setCleanSession(false);
+                mqtt_options.setMaxInflight(16384);
+                // mqtt_options.setConnectionTimeout(100);
+                // mqtt_options.setKeepAliveInterval(20);
+                iter = document.selectNodes("/root/mqtt").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    String[] serverURIs = new String[1];
+                    serverURIs[0] = element.attribute("url").getValue();
+                    String clientId = element.attribute("clientId").getValue();
+                    String username = element.attribute("username").getValue();
+                    String password = element.attribute("password").getValue();
+                    String topic_prefix = element.attribute("topic_prefix").getValue();
+                    mqtt_options.setServerURIs(serverURIs);
+                    mqtt_options.setUserName(username);
+                    mqtt_options.setPassword(password.toCharArray());
+                    mqtt_clientId = clientId;
+                    mqtt_topic_prefix = topic_prefix;
+                }
+
+            } else if (socket_or_mqtt.equals("socket")) {
+                iter = document.selectNodes("/root/PROTOCOL").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    PROTOCOL = element.getText();
+                }
+                iter = document.selectNodes("/root/ServerIP").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    ServerIP = element.getText();
+                }
+                iter = document.selectNodes("/root/ServerPort").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    ServerPort = NumberUtil.parseInt(element.getText());
+                }
+
+                iter = document.selectNodes("/root/Mode").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    Mode = element.getText();
+                }
+                iter = document.selectNodes("/root/Max_size").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    Max_size = NumberUtil.parseInt(element.getText());
+                }
+                iter = document.selectNodes("/root/SleepCount").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    SleepCount = NumberUtil.parseInt(element.getText());
+                }
+                iter = document.selectNodes("/root/Separate").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    String elementText = element.getText();
+                    if (elementText != null && elementText.equals("true")) {
+                        Separate = true;
+                    }
+                }
+                iter = document.selectNodes("/root/Separate_begin").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    Separate_begin = element.getText();
+                }
+                iter = document.selectNodes("/root/Separate_end").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    Separate_end = element.getText();
+                }
+                iter = document.selectNodes("/root/Compress").iterator();
+                if (iter.hasNext()) {
+                    element = (Element) iter.next();
+                    String elementText = element.getText();
+                    if (elementText != null && elementText.equals("true")) {
+                        Compress = true;
+                    }
+                }
+            }
+
+            iter = document.selectNodes("/root/pointupload_period_second").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                pointupload_period_second = NumberUtil.parseInt(element.getText());
+            }
+            iter = document.selectNodes("/root/BatchSend").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                String elementText = element.getText();
+                if (elementText != null && elementText.equals("true")) {
+                    BatchSend = true;
+                }
+            }
+            iter = document.selectNodes("/root/BatchCount").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                BatchCount = NumberUtil.parseInt(element.getText());
+            }
+            iter = document.selectNodes("/root/TimeStart_enable").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                String elementText = element.getText();
+                if (elementText != null && elementText.equals("true")) {
+                    TimeStart_enable = true;
+                }
+            }
+            iter = document.selectNodes("/root/TimeStart").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                TimeStart = sdf.parse(element.getText());
+            }
+            iter = document.selectNodes("/root/TimeBeiShu").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                TimeBeiShu = NumberUtil.parseInt(element.getText());
+            }
+
+            iter = document.selectNodes("/root/use_excel").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                String elementText = element.getText();
+                if (elementText != null && elementText.equals("true")) {
+                    use_excel = true;
+                }
+            }
+            iter = document.selectNodes("/root/random_timeout").iterator();
+            if (iter.hasNext()) {
+                element = (Element) iter.next();
+                String elementText = element.getText();
+                if (elementText != null && elementText.equals("true")) {
+                    random_timeout = true;
+                }
+            }
+
+            iter = document.selectNodes("/root/building").iterator();
+            while (iter.hasNext()) {
+                element = (Element) iter.next();
+                String id = element.attributeValue("id");
+                if (!buildingMap.containsKey(id)) {
+                    EntityBuilding buildingInner = new EntityBuilding();
+                    buildingInner.id = id;
+                    buildingMap.put(id, buildingInner);
+                    buildingList.add(buildingInner);
+                }
+                EntityBuilding building = buildingMap.get(id);
+                log.warn("building:" + id);
+                Iterator iterInner = element.selectNodes("group").iterator();
+                while (iterInner.hasNext()) {
+                    Element elementInner = (Element) iterInner.next();
+                    EntityGroup group = new EntityGroup();
+                    group.meter_from = NumberUtil.parseInt(elementInner.attributeValue("meter_from"));
+                    group.meter_to = NumberUtil.parseInt(elementInner.attributeValue("meter_to"));
+                    group.funcid = NumberUtil.parseInt(elementInner.attributeValue("funcid"));
+                    group.period_second = NumberUtil.parseInt(elementInner.attributeValue("period_second"));
+                    group.data_type = elementInner.attributeValue("data_type");
+                    if (group.data_type.equals("double")) {
+                    } else if (group.data_type.equals("integer")) {
+                    }
+                    building.reportGroupList.add(group);
+
+                    // log.warn(" meter_from:" + group.meter_from + " meter_to:" + group.meter_to + " funcid:" + group.funcid
+                    // + " period_second:" + group.period_second + " data_type:" + group.data_type);
+                }
+                log.warn("building:" + id + "\t" + building.reportGroupList.size());
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+        try {
+            JSONObject param = FastJsonReaderUtil.Instance().ReadJSONObject(getStream("formula.json"));
+            Iterator<String> keyIter = param.keySet().iterator();
+            while (keyIter.hasNext()) {
+                String key = keyIter.next();
+                String expression = (String) param.get(key);
+                walkerMap.put(key, SimulatorUtil.getWalker(expression));
+            }
+        } catch (Exception e1) {
+            e1.printStackTrace();
+        }
+
+        try {
+            Read_formula_param("formula-param.json", formula_paramMap);
+        } catch (Exception e1) {
+            e1.printStackTrace();
+        }
+
+        try {
+            if (use_excel) {
+                Map<String, ExcelSheet> sheetMap = ExcelUtil.Read(getStream("report.xlsx"), true);
+                Iterator<String> keyIter = sheetMap.keySet().iterator();
+                while (keyIter.hasNext()) {
+                    String key = keyIter.next();
+                    String bd = key.substring(2);
+                    ExcelSheet sheet = sheetMap.get(key);
+                    if (!buildingMap.containsKey(bd)) {
+                        EntityBuilding buildingInner = new EntityBuilding();
+                        buildingInner.id = bd;
+                        buildingMap.put(bd, buildingInner);
+                        buildingList.add(buildingInner);
+                    }
+                    EntityBuilding building = buildingMap.get(bd);
+                    log.warn("building:" + bd);
+                    for (List<String> contentList : sheet.contentListList) {
+                        if (contentList.get(0) == null) {
+                            break;
+                        }
+                        EntityGroup group = new EntityGroup();
+                        group.meter = contentList.get(0);
+                        group.funcid = NumberUtil.parseInt(contentList.get(1));
+                        group.data_type = contentList.get(2).toLowerCase();
+                        group.period_second = NumberUtil.parseInt(contentList.get(3));
+                        if (group.data_type.equals("double")) {
+                        } else if (group.data_type.equals("integer") || group.data_type.equals("boolean") || group.data_type.equals("enum")) {
+                        } else {
+                            continue;
+                        }
+                        if (contentList.get(4) != null && contentList.get(4).trim().length() > 0
+                                && !contentList.get(4).trim().equalsIgnoreCase("null")) {
+                            group.lower_limit = Double.parseDouble(contentList.get(4).trim());
+                        }
+                        if (contentList.get(5) != null && contentList.get(5).trim().length() > 0
+                                && !contentList.get(5).trim().equalsIgnoreCase("null")) {
+                            group.upper_limit = Double.parseDouble(contentList.get(5).trim());
+                        }
+                        if (contentList.get(6) != null && contentList.get(6).trim().length() > 0
+                                && !contentList.get(6).trim().equalsIgnoreCase("null")) {
+                            group.rel_set_sign = contentList.get(6).trim();
+                        }
+                        if (contentList.get(7) != null && contentList.get(7).trim().length() > 0
+                                && !contentList.get(7).trim().equalsIgnoreCase("null")) {
+                            group.rel_set_funcid = NumberUtil.parseInt(contentList.get(7).trim());
+                        }
+                        building.reportGroupList.add(group);
+                        if (group.rel_set_sign != null) {
+                            set2report.put(building.id + "-" + group.rel_set_sign + "-" + group.rel_set_funcid,
+                                    building.id + "-" + group.meter + "-" + group.funcid);
+                        }
+
+                        reportDataMap.put(building.id + "-" + group.meter + "-" + group.funcid, new DoubleTimeObject());
+
+                        // log.warn(" meter:" + group.meter + " funcid:" + group.funcid + " period_second:" + group.period_second
+                        // + " data_type:" + group.data_type);
+                    }
+                    log.warn("building:" + building.id + "\t" + sheet.contentListList.size());
+                }
+            }
+
+            if (use_excel) {
+                Map<String, ExcelSheet> sheetMap = ExcelUtil.Read(getStream("set.xlsx"), true);
+                Iterator<String> keyIter = sheetMap.keySet().iterator();
+                while (keyIter.hasNext()) {
+                    String key = keyIter.next();
+                    String bd = key.substring(2);
+                    ExcelSheet sheet = sheetMap.get(key);
+                    if (!buildingMap.containsKey(bd)) {
+                        EntityBuilding buildingInner = new EntityBuilding();
+                        buildingInner.id = bd;
+                        buildingMap.put(bd, buildingInner);
+                        buildingList.add(buildingInner);
+                    }
+                    EntityBuilding building = buildingMap.get(bd);
+                    for (List<String> contentList : sheet.contentListList) {
+                        if (contentList.get(0) == null) {
+                            break;
+                        }
+                        EntityGroup group = new EntityGroup();
+                        group.meter = contentList.get(0);
+                        group.funcid = NumberUtil.parseInt(contentList.get(1));
+                        group.data_type = contentList.get(2).toLowerCase();
+                        if (contentList.get(3) != null && contentList.get(3).trim().length() > 0
+                                && !contentList.get(3).trim().equalsIgnoreCase("null")) {
+                            group.manual_sign = contentList.get(3).trim();
+                        }
+                        if (contentList.get(4) != null && contentList.get(4).trim().length() > 0
+                                && !contentList.get(4).trim().equalsIgnoreCase("null")) {
+                            group.manual_funcid = NumberUtil.parseInt(contentList.get(4).trim());
+                        }
+                        if (group.data_type.equals("double")) {
+                        } else if (group.data_type.equals("integer") || group.data_type.equals("boolean") || group.data_type.equals("enum")) {
+                        } else {
+                            continue;
+                        }
+                        building.setGroupList.add(group);
+
+                        setDataMap.put(building.id + "-" + group.meter + "-" + group.funcid, new DoubleTimeObject());
+                    }
+                }
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+
+    private static void Read_formula_param(String filename, Map<String, JSONArray> formula_paramMap) throws Exception {
+        JSONObject json = FastJsonReaderUtil.Instance().ReadJSONObject(getStream(filename));
+        Iterator<String> keyIter = json.keySet().iterator();
+        while (keyIter.hasNext()) {
+            String key = keyIter.next();
+            JSONArray fpArray = (JSONArray) json.get(key);
+            JSONArray paramsArray = new JSONArray();
+            Read_formula_param_one(fpArray, paramsArray);
+            formula_paramMap.put(key, paramsArray);
+        }
+    }
+
+    private static void Read_formula_param_one(JSONArray fpArray, JSONArray paramsArray) throws Exception {
+        for (int i = 0; i < fpArray.size(); i++) {
+            JSONObject fp = fpArray.getJSONObject(i);
+            String formula = fp.getString("formula");
+            JSONObject params = fp.getJSONObject("params");
+            Object[] keyArray = params.keySet().toArray();
+            int[] indexArray = new int[keyArray.length];
+            while (true) {
+                JSONObject fa = new JSONObject();
+                fa.put("formula", formula);
+                JSONObject params_real = new JSONObject();
+                for (int ii = 0; ii < keyArray.length; ii++) {
+                    String key = (String) keyArray[ii];
+                    Object po = params.get(key);
+                    if (po instanceof JSONObject) {
+                        JSONObject param = (JSONObject) po;
+                        double first = param.getDouble("first");
+                        double seed = param.getDouble("seed");
+                        params_real.put(key, first + seed * indexArray[ii]);
+                    } else {
+                        params_real.put(key, po);
+                    }
+                }
+                fa.put("params", params_real);
+                paramsArray.add(fa);
+
+                //
+                boolean finish = false;
+                indexArray[0]++;
+                for (int ii = 0; ii < keyArray.length; ii++) {
+                    String key = (String) keyArray[ii];
+                    Object po = params.get(key);
+                    long count;
+                    if (po instanceof JSONObject) {
+                        JSONObject param = (JSONObject) po;
+                        count = param.getLong("count");
+                    } else {
+                        count = 1;
+                    }
+                    if (indexArray[ii] == count) {
+                        if (ii == keyArray.length - 1) {
+                            finish = true;
+                            break;
+                        }
+                        indexArray[ii] = 0;
+                        indexArray[ii + 1]++;
+                    }
+                }
+                if (finish) {
+                    break;
+                }
+            }
+        }
+    }
+
+    static boolean reached = false;
+    static Date base_time;
+
+    public static synchronized Date getTime() {
+        if (!Constant.TimeStart_enable) {
+            return new Date();
+        }
+
+        if (base_time == null) {
+            base_time = new Date();
+        }
+
+        Date curr_time;
+        Date real_time = new Date();
+        if (!reached) {
+            if (TimeStart.getTime() + (real_time.getTime() - base_time.getTime()) * TimeBeiShu > real_time.getTime()) {
+                curr_time = real_time;
+                reached = true;
+            } else {
+                curr_time = new Date(TimeStart.getTime() + (real_time.getTime() - base_time.getTime()) * TimeBeiShu);
+            }
+        } else {
+            curr_time = real_time;
+        }
+        curr_time = new Date(curr_time.getTime() / 1000L * 1000L);
+        return curr_time;
+    }
+}

+ 8 - 0
src/main/java/com/persagy/simulator_gaopin/DoubleTimeObject.java

@@ -0,0 +1,8 @@
+package com.persagy.simulator_gaopin;
+
+import java.util.Date;
+
+public class DoubleTimeObject {
+	public Date timefrom;
+	public double data;
+}

+ 13 - 0
src/main/java/com/persagy/simulator_gaopin/EntityBuilding.java

@@ -0,0 +1,13 @@
+package com.persagy.simulator_gaopin;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+public class EntityBuilding {
+	public String id;
+	public List<EntityGroup> reportGroupList = new ArrayList<EntityGroup>();
+	public List<EntityGroup> setGroupList = new ArrayList<EntityGroup>();
+	public Map<String, EntityGroup> groupMap = new HashMap<String, EntityGroup>();
+}

+ 20 - 0
src/main/java/com/persagy/simulator_gaopin/EntityGroup.java

@@ -0,0 +1,20 @@
+package com.persagy.simulator_gaopin;
+
+import java.util.Date;
+
+public class EntityGroup {
+	public String meter;
+	public int meter_from;
+	public int meter_to;
+	public int funcid;
+	public int period_second;
+	public String data_type;
+	public Double lower_limit;
+	public Double upper_limit;
+	public String rel_set_sign;
+	public int rel_set_funcid;
+	public String manual_sign;
+	public int manual_funcid;
+
+	public Date last_time;
+}

+ 157 - 0
src/main/java/com/persagy/simulator_gaopin/MixClientManager.java

@@ -0,0 +1,157 @@
+package com.persagy.simulator_gaopin;
+
+import java.text.SimpleDateFormat;
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
+
+import lombok.extern.slf4j.Slf4j;
+import org.eclipse.paho.client.mqttv3.MqttClient;
+import org.eclipse.paho.client.mqttv3.MqttMessage;
+import org.eclipse.paho.client.mqttv3.MqttTopic;
+import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.persagy.communication.entity.Packet;
+import com.persagy.communication.mina.tcp.client.TCPClientManager;
+import com.persagy.communication.mina.udp.client.UDPClientManager;
+import com.persagy.communication.util.IClientManager;
+import com.persagy.parser.ParserEntity;
+import com.persagy.parser.RecordData;
+import com.persagy.util.PacketNumGenerator;
+@Slf4j
+public class MixClientManager {
+	public String mode = "socket";// socket mqtt
+
+	public IClientManager ClientManager;
+
+	public MqttClient MqttClient;
+	public Map<String, Map<String, MqttTopic>> topicMapMap = new ConcurrentHashMap<String, Map<String, MqttTopic>>();
+
+	public MixClientManager() {
+		this.mode = Constant.socket_or_mqtt;
+	}
+
+	public String Name() {
+		String result = this.ClientManager.Name();
+		return result;
+	}
+
+	public void Start() {
+		try {
+			if (Constant.socket_or_mqtt.equals("socket")) {
+				if ("UDP".equalsIgnoreCase(Constant.PROTOCOL)) {
+					ClientManager = new UDPClientManager(Constant.ServerIP, Constant.ServerPort, "utf-8", Constant.Compress, Constant.Max_size);
+				} else {
+					ClientManager = new TCPClientManager(Constant.ServerIP, Constant.ServerPort, "utf-8", Constant.Compress, Constant.Max_size,
+							(byte) Constant.Separate_begin.charAt(0), (byte) Constant.Separate_end.charAt(0));
+				}
+				ClientManager.Start();
+			} else if (Constant.socket_or_mqtt.equals("mqtt")) {
+				MqttClient = new MqttClient(Constant.mqtt_options.getServerURIs()[0], Constant.mqtt_clientId, new MemoryPersistence());
+				MyMqttCallback listener = new MyMqttCallback(this, Constant.mqtt_topic_prefix);
+				MqttClient.setCallback(listener);
+				MqttClient.connect(Constant.mqtt_options);
+				log.warn(Constant.mqtt_options.getServerURIs()[0]);
+			}
+		} catch (Exception e) {
+		}
+	}
+
+	public void report(List<ParserEntity> sendList) {
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+		if (mode.equals("socket")) {
+			StringBuffer sb = new StringBuffer();
+			for (ParserEntity ParserEntity : sendList) {
+				if (sb.length() > 0) {
+					sb.append("&");
+				}
+				String packetString = ParserEntity.building + ";" + ParserEntity.gateway + ";" + "report" + ";"
+						+ sdf.format(ParserEntity.dataList.get(0).time) + ";" + ParserEntity.packageId + ";" + ParserEntity.dataList.get(0).meter
+						+ ";" + ParserEntity.dataList.size();
+				sb.append(packetString);
+				for (RecordData RecordData : ParserEntity.dataList) {
+					sb.append(";" + RecordData.funcid + ";" + RecordData.value);
+				}
+			}
+			ClientManager.AppendToSend(new Packet(sb.toString()));
+		} else if (mode.equals("mqtt")) {
+			for (ParserEntity entity : sendList) {
+				JSONObject pointset = new JSONObject();
+				pointset.put("sequence_no", PacketNumGenerator.Instance().Generate());
+				pointset.put("mqtt_client_id", MqttClient.getClientId());
+				pointset.put("packet_type", "report");
+				JSONArray content = new JSONArray();
+				for (int i = 0; i < entity.dataList.size(); i++) {
+					RecordData RecordData = entity.dataList.get(i);
+					JSONObject contentItem = new JSONObject();
+					contentItem.put("meter", RecordData.meter);
+					contentItem.put("funcid", RecordData.funcid);
+					contentItem.put("time", sdf.format(RecordData.time));
+					contentItem.put("value", RecordData.value);
+					content.add(contentItem);
+				}
+				pointset.put("content", content);
+				try {
+					MqttMessage message = new MqttMessage(pointset.toString().getBytes("UTF-8"));
+					MqttTopic topic = this.topicMapMap.get(entity.building).get("report");
+					topic.publish(message);
+				} catch (Exception e) {
+				}
+			}
+		}
+	}
+
+	public void senddownsetack(ParserEntity ParserEntity) {
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+		if (mode.equals("socket")) {
+			for (RecordData RecordData : ParserEntity.dataList) {
+				if (RecordData.result.equals("failure_timeout") || RecordData.result.equals("failure_point_not_exist")) {
+					continue;
+				}
+
+				StringBuffer sb = new StringBuffer();
+				String packetString = ParserEntity.building + ";" + ParserEntity.gateway + ";" + "senddownsetack" + ";"
+						+ sdf.format(ParserEntity.dataList.get(0).time) + ";" + ParserEntity.packageId;
+				sb.append(packetString);
+				{
+					sb.append(";" + RecordData.meter + ";" + RecordData.funcid + ";" + RecordData.value);
+					sb.append(";" + sdf.format(RecordData.endtime));
+					sb.append(";" + RecordData.result);
+				}
+				log.warn("send: " + sb.toString());
+				ClientManager.AppendToSend(new Packet(sb.toString()));
+			}
+		} else if (mode.equals("mqtt")) {
+			JSONArray content = new JSONArray();
+			for (RecordData RecordData : ParserEntity.dataList) {
+				if (RecordData.result.equals("failure_timeout") || RecordData.result.equals("failure_point_not_exist")) {
+					continue;
+				}
+
+				JSONObject contentItem = new JSONObject();
+				contentItem.put("meter", RecordData.meter);
+				contentItem.put("funcid", RecordData.funcid);
+				contentItem.put("time", sdf.format(RecordData.time));
+				contentItem.put("value", RecordData.value);
+				contentItem.put("endtime", sdf.format(RecordData.endtime));
+				contentItem.put("result", RecordData.result);
+				content.add(contentItem);
+			}
+			if (content.size() > 0) {
+				JSONObject pointset = new JSONObject();
+				pointset.put("sequence_no", ParserEntity.packageId);
+				pointset.put("mqtt_client_id", MqttClient.getClientId());
+				pointset.put("packet_type", "pointsetack");
+				pointset.put("content", content);
+				try {
+					MqttMessage message = new MqttMessage(pointset.toString().getBytes("UTF-8"));
+					MqttTopic topic = this.topicMapMap.get(ParserEntity.building).get("setup");
+					topic.publish(message);
+				} catch (Exception e) {
+				}
+			}
+		}
+	}
+}

+ 84 - 0
src/main/java/com/persagy/simulator_gaopin/MyMqttCallback.java

@@ -0,0 +1,84 @@
+package com.persagy.simulator_gaopin;
+
+import java.text.SimpleDateFormat;
+
+import lombok.extern.slf4j.Slf4j;
+import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
+import org.eclipse.paho.client.mqttv3.MqttCallback;
+import org.eclipse.paho.client.mqttv3.MqttMessage;
+
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.persagy.parser.ParserEntity;
+import com.persagy.parser.RecordData;
+import com.persagy.util.ProcessUtil;
+@Slf4j
+public class MyMqttCallback implements MqttCallback {
+	// public Queue<ParserEntity> queue = new ConcurrentLinkedDeque<ParserEntity>();
+
+	MixClientManager MixClientManager;
+	public String topic_prefix;
+
+	public MyMqttCallback(MixClientManager MixClientManager, String topic_prefix) {
+		this.MixClientManager = MixClientManager;
+		this.topic_prefix = topic_prefix;
+	}
+
+	public void connectionLost(Throwable cause) {
+		System.out.println("connection lost: " + cause.getMessage());
+	}
+
+	public void deliveryComplete(IMqttDeliveryToken token) {
+	}
+
+	/**
+	 * @param topic
+	 * @param message
+	 * @throws Exception
+	 */
+	public void messageArrived(String topic, MqttMessage message) throws Exception {
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+		try {
+			// int id = message.getId();
+			// int qos = message.getQos();
+			String topix_suffix = topic.substring(topic_prefix.length() + 1);
+			int index_ = topix_suffix.indexOf('/');
+			String building = topix_suffix.substring(0, index_);
+			String topicName = topix_suffix.substring(index_ + 1);
+			byte[] payload = message.getPayload();
+			String stringMessage = new String(payload, "UTF-8");
+			JSONObject jsonMessage = JSON.parseObject(stringMessage);
+			String packet_type = jsonMessage.getString("packet_type");
+			if (topicName.equals("report")) {
+			} else if (topicName.equals("setdown")) {
+				String mqtt_client_id = jsonMessage.getString("mqtt_client_id");
+				long sequence_no = jsonMessage.getLong("sequence_no");
+				if (mqtt_client_id.equals(MixClientManager.MqttClient.getClientId())) {
+					if (packet_type.equals("pointset")) {
+						log.warn(jsonMessage.toJSONString());
+						ParserEntity ParserEntity = new ParserEntity();
+						ParserEntity.building = building;
+						ParserEntity.gateway = "0";
+						ParserEntity.packageId = "" + sequence_no;
+						ParserEntity.datatype = packet_type;
+						JSONArray content = jsonMessage.getJSONArray("content");
+						for (int i = 0; i < content.size(); i++) {
+							JSONObject contentItem = content.getJSONObject(i);
+							RecordData RecordData = new RecordData();
+							RecordData.meter = contentItem.getString("meter");
+							RecordData.funcid = contentItem.getString("funcid");
+							RecordData.time = sdf.parse(contentItem.getString("time"));
+							RecordData.value = contentItem.getString("value");
+							ParserEntity.dataList.add(RecordData);
+						}
+						ProcessUtil.Process_senddownset(MixClientManager, building, ParserEntity);
+					}
+				}
+			}
+		} catch (Exception e) {
+			e.printStackTrace();
+			log.error(e.getMessage());
+		}
+	}
+}

+ 15 - 0
src/main/java/com/persagy/simulator_gaopin/PacketRepository.java

@@ -0,0 +1,15 @@
+package com.persagy.simulator_gaopin;
+
+public class PacketRepository {
+	static int total = 0;
+
+	public static synchronized void add(int count) {
+		total += count;
+	}
+
+	public static synchronized int pop() {
+		int result = total;
+		total = 0;
+		return result;
+	}
+}

+ 70 - 0
src/main/java/com/persagy/simulator_gaopin/SimulatorMain_collector.java

@@ -0,0 +1,70 @@
+package com.persagy.simulator_gaopin;
+
+import lombok.extern.slf4j.Slf4j;
+import org.eclipse.paho.client.mqttv3.MqttTopic;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+import java.util.concurrent.ConcurrentHashMap;
+@Slf4j
+public class SimulatorMain_collector {
+
+	public static void main(String[] args) throws Exception {
+
+		MixClientManager MixClientManager = new MixClientManager();
+		MixClientManager.Start();
+
+		List<Thread_report> thread_reportList = new ArrayList<Thread_report>();
+		List<Thread_set> thread_setList = new ArrayList<Thread_set>();
+		for (int index = 0; index < Constant.buildingList.size(); index++) {
+			EntityBuilding building = Constant.buildingList.get(index);
+
+			MixClientManager.topicMapMap.putIfAbsent(building.id, new ConcurrentHashMap<String, MqttTopic>());
+			if (Constant.socket_or_mqtt.equals("mqtt")) {
+				MqttTopic topic_report = MixClientManager.MqttClient.getTopic(Constant.mqtt_topic_prefix + "/" + building.id + "/report");
+				MixClientManager.topicMapMap.get(building.id).put("report", topic_report);
+			}
+			if (Constant.socket_or_mqtt.equals("mqtt")) {
+				MqttTopic topic_report = MixClientManager.MqttClient.getTopic(Constant.mqtt_topic_prefix + "/" + building.id + "/setup");
+				MixClientManager.topicMapMap.get(building.id).put("setup", topic_report);
+			}
+			if (Constant.socket_or_mqtt.equals("mqtt")) {
+				MqttTopic topic_report = MixClientManager.MqttClient.getTopic(Constant.mqtt_topic_prefix + "/" + building.id + "/setdown");
+				MixClientManager.topicMapMap.get(building.id).put("setdown", topic_report);
+			}
+
+			Thread_report thread_report = new Thread_report(building, MixClientManager);
+			thread_report.start();
+			thread_reportList.add(thread_report);
+
+			for (EntityGroup group : building.setGroupList) {
+				building.groupMap.put(group.meter + "-" + group.funcid, group);
+			}
+			Thread_set thread_set = new Thread_set(building, MixClientManager);
+			thread_set.thread_report = thread_report;
+			thread_set.start();
+			thread_setList.add(thread_set);
+			
+			if(MixClientManager.mode.equals("mqtt")){
+				MixClientManager.MqttClient.subscribe(Constant.mqtt_topic_prefix + "/" + building.id + "/setdown");
+			}
+		}
+
+		Date last_time = new Date((new Date()).getTime() / 1000L * 1000L);
+		while (true) {
+			Thread.sleep(1L);
+
+			Date curr_time = new Date((new Date()).getTime() / 1000L * 1000L);
+			if (curr_time.getTime() > last_time.getTime()) {
+				int recent = PacketRepository.pop();
+				if (recent > 0) {
+					log.warn("recent count:" + "\t" + recent);
+				}
+
+				last_time = curr_time;
+			}
+		}
+	}
+
+}

+ 206 - 0
src/main/java/com/persagy/simulator_gaopin/SimulatorUtil.java

@@ -0,0 +1,206 @@
+package com.persagy.simulator_gaopin;
+
+import java.io.ByteArrayInputStream;
+import java.text.DecimalFormat;
+import java.util.Date;
+import java.util.Iterator;
+
+import org.antlr.runtime.ANTLRInputStream;
+import org.antlr.runtime.CommonTokenStream;
+import org.antlr.runtime.tree.CommonTree;
+import org.antlr.runtime.tree.CommonTreeNodeStream;
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.persagy.entity.ValueObject;
+import com.persagy.simulator.MeterSimulatorLexer;
+import com.persagy.simulator.MeterSimulatorParser;
+import com.persagy.simulator.MeterSimulatorScanner;
+import com.persagy.simulator.MeterSimulatorWalker;
+
+public class SimulatorUtil {
+	static DecimalFormat df = new DecimalFormat("#.##");
+
+	public synchronized static Object getValue(EntityGroup group, String meter, int funcid, String data_type, Date curr_time) throws Exception {
+		int hash = BKDRHash.getHashCode(meter + "_" + funcid);
+		Object dataString;
+		if (data_type.equalsIgnoreCase("BOOLEAN") || data_type.equalsIgnoreCase("ENUM")) {
+			if (group.lower_limit != null && group.upper_limit != null && group.lower_limit.intValue() >= 0 && group.upper_limit.intValue() <= 1
+					&& group.lower_limit.intValue() == group.upper_limit.intValue()) {
+				dataString = group.lower_limit.intValue();
+			} else {
+				JSONArray formula_param = Constant.formula_paramMap.get(data_type);
+				int tmp_index = hash % formula_param.size();
+				if (tmp_index < 0) {
+					tmp_index = 0 - tmp_index;
+				}
+				JSONObject funcidJSON = formula_param.getJSONObject(tmp_index);
+				String formula_name = (String) funcidJSON.get("formula");
+				JSONObject params = (JSONObject) funcidJSON.get("params");
+				MeterSimulatorWalker walker = Constant.walkerMap.get(formula_name);
+				dataString = (int) SimulatorUtil.getData(curr_time, walker, params).data;
+			}
+		} else {
+			JSONArray formula_param = Constant.formula_paramMap.get(data_type);
+			int tmp_index = hash % formula_param.size();
+			if (tmp_index < 0) {
+				tmp_index = 0 - tmp_index;
+			}
+			JSONObject funcidJSON = formula_param.getJSONObject(tmp_index);
+			String formula_name = (String) funcidJSON.get("formula");
+			JSONObject params = (JSONObject) funcidJSON.get("params");
+			MeterSimulatorWalker walker = Constant.walkerMap.get(formula_name);
+			if (group.lower_limit != null && group.upper_limit != null) {
+				params.put("b", group.lower_limit);
+				params.put("k", group.upper_limit - group.lower_limit);
+			}
+			dataString = df.format(SimulatorUtil.getData(curr_time, walker, params).data);
+		}
+		return dataString;
+	}
+
+	/**
+	 * 检查公式是否正确
+	 * 
+	 * @param expressions
+	 * @return
+	 */
+	public static String checkSimulator(String expressions) {
+		CommonTree t = null;
+		CommonTreeNodeStream nodes = null;
+		try {
+			ByteArrayInputStream in = new ByteArrayInputStream((expressions).getBytes());
+			// 词法分析:生成token
+			ANTLRInputStream input = new ANTLRInputStream(in);
+			MeterSimulatorLexer lexer = new MeterSimulatorLexer(input);
+			CommonTokenStream tokens = new CommonTokenStream(lexer);
+
+			// 语法分析:生成抽象语法树
+			MeterSimulatorParser parser = new MeterSimulatorParser(tokens);
+			MeterSimulatorParser.prog_return r = parser.prog();
+			t = (CommonTree) r.getTree();
+			nodes = new CommonTreeNodeStream(t);
+			nodes.setTokenStream(tokens);
+			return "";
+		} catch (Exception e) {
+			// 如果表达式不符合规则,会抛出异常
+			e.printStackTrace();
+			return "错误:" + e.getMessage();
+		}
+	}
+
+	public static MeterSimulatorWalker getWalker(String expressions) throws Exception {
+		MeterSimulatorWalker walker = null;
+		CommonTree t = null;
+		CommonTreeNodeStream nodes = null;
+		try {
+			ByteArrayInputStream in = new ByteArrayInputStream(expressions.getBytes());
+			// 词法分析:生成token
+			ANTLRInputStream input = new ANTLRInputStream(in);
+			MeterSimulatorLexer lexer = new MeterSimulatorLexer(input);
+			CommonTokenStream tokens = new CommonTokenStream(lexer);
+
+			// 语法分析:生成抽象语法树
+			MeterSimulatorParser parser = new MeterSimulatorParser(tokens);
+			MeterSimulatorParser.prog_return r = parser.prog();
+			t = (CommonTree) r.getTree();
+			nodes = new CommonTreeNodeStream(t);
+			nodes.setTokenStream(tokens);
+		} catch (Exception e) {
+			// 如果表达式不符合规则,会抛出异常
+			e.printStackTrace();
+			throw new Exception("公式格式错误:" + expressions);
+		}
+		// // 扫描变量
+		// List<String> bl = new ArrayList<String>();
+		// MeterSimulatorScanner scanner = new MeterSimulatorScanner(nodes);
+		// scanner.reset();
+		// scanner.prog();
+		// Iterator<String> keyIter = scanner.varDict.keySet().iterator();
+		// while (keyIter.hasNext()) {
+		// String key = keyIter.next();
+		// if (!"t".equals(key)) {
+		// bl.add(key);
+		// }
+		// }
+		// for (int i = 0; i < bl.size(); i++) {
+		// String key = bl.get(i);
+		// if (!params.containsKey(key)) {
+		// throw new Exception("meter params error!");
+		// }
+		// }
+
+		// 构造解释器
+		walker = new MeterSimulatorWalker(nodes);
+		return walker;
+	}
+
+	public static synchronized DoubleTimeObject getData(Date tmpDate, MeterSimulatorWalker walker, JSONObject params) throws Exception {
+		// 设定参数
+		walker.clear();
+		walker.put("t", tmpDate.getTime());
+		Iterator<String> keyIter = params.keySet().iterator();
+		while (keyIter.hasNext()) {
+			String key = keyIter.next();
+			if (!params.containsKey(key)) {
+				throw new Exception("meter params error!");
+			}
+			String value = params.get(key).toString();
+			if (value.contains(".")) {
+				walker.put(key, Double.parseDouble(params.get(key).toString()));
+			} else {
+				walker.put(key, Long.parseLong(params.get(key).toString()));
+			}
+		}
+		// 解释器复位并执行
+		walker.reset();
+		ValueObject resultInner = walker.prog();
+		DoubleTimeObject DoubleTimeObject = new DoubleTimeObject();
+		DoubleTimeObject.timefrom = tmpDate;
+		double datavalue;
+		if (resultInner.type == 0) {
+			datavalue = resultInner.intValue;
+		} else {
+			datavalue = resultInner.doubleValue;
+		}
+		DoubleTimeObject.data = datavalue;
+
+		return DoubleTimeObject;
+	}
+
+	public static JSONObject getParams(String expressions) throws Exception {
+		CommonTree t = null;
+		CommonTreeNodeStream nodes = null;
+		try {
+			ByteArrayInputStream in = new ByteArrayInputStream(expressions.getBytes());
+			// 词法分析:生成token
+			ANTLRInputStream input = new ANTLRInputStream(in);
+			MeterSimulatorLexer lexer = new MeterSimulatorLexer(input);
+			CommonTokenStream tokens = new CommonTokenStream(lexer);
+
+			// 语法分析:生成抽象语法树
+			MeterSimulatorParser parser = new MeterSimulatorParser(tokens);
+			MeterSimulatorParser.prog_return r = parser.prog();
+			t = (CommonTree) r.getTree();
+			nodes = new CommonTreeNodeStream(t);
+			nodes.setTokenStream(tokens);
+		} catch (Exception e) {
+			// 如果表达式不符合规则,会抛出异常
+			throw new Exception("公式格式错误!");
+		}
+		// 扫描变量
+		JSONObject params = new JSONObject();
+		MeterSimulatorScanner scanner = new MeterSimulatorScanner(nodes);
+		scanner.reset();
+		scanner.prog();
+		Iterator<String> keyIter = scanner.varDict.keySet().iterator();
+		while (keyIter.hasNext()) {
+			String key = keyIter.next();
+			if (!"t".equals(key)) {
+				params.put(key, "");
+			}
+		}
+		return params;
+	}
+
+}

+ 148 - 0
src/main/java/com/persagy/simulator_gaopin/Thread_report.java

@@ -0,0 +1,148 @@
+package com.persagy.simulator_gaopin;
+
+import java.text.DecimalFormat;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+import com.persagy.parser.ParserEntity;
+import com.persagy.parser.RecordData;
+import com.persagy.util.PacketNumGenerator;
+
+public class Thread_report extends Thread {
+	EntityBuilding building;
+
+	public Thread_report(EntityBuilding building, MixClientManager MixClientManager) {
+		this.building = building;
+		this.MixClientManager = MixClientManager;
+	}
+
+	// IClientManager clientManager;
+	MixClientManager MixClientManager;
+	long packageId = 1;
+	SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+	DecimalFormat df = new DecimalFormat("#.##");
+
+	public void run() {
+		while (true) {
+			try {
+				Thread.sleep(1L);
+			} catch (Exception e) {
+				e.printStackTrace();
+			}
+
+			Date curr_time = Constant.getTime();
+			List<ParserEntity> packetList = new ArrayList<ParserEntity>();
+			for (EntityGroup group : this.building.reportGroupList) {
+				int funcid = group.funcid;
+				if (group.last_time == null || (curr_time.getTime() - group.last_time.getTime() >= group.period_second * 1000L)) {
+					group.last_time = curr_time;
+				} else {
+					continue;
+				}
+				try {
+					if (group.meter == null) {
+						for (int meter = group.meter_from; meter <= group.meter_to; meter++) {
+							this.doOne(group, "" + meter, funcid, group.data_type, packetList, curr_time);
+						}
+					} else {
+						this.doOne(group, group.meter, funcid, group.data_type, packetList, curr_time);
+					}
+				} catch (Exception e) {
+					e.printStackTrace();
+				}
+			} // end for
+			if (packetList.size() > 0) {
+				this.Send(packetList);
+			}
+		} // end while
+	}
+
+	int count_acc = 0;
+	int count_sleep = 1;
+
+	private void Send(List<ParserEntity> packetList) {
+		MixClientManager.report(packetList);
+		PacketRepository.add(1);
+		count_acc += packetList.size();
+		packetList.clear();
+
+		if (count_acc >= count_sleep) {
+			count_acc = 0;
+			try {
+				Thread.sleep(1L);
+			} catch (InterruptedException e) {
+				e.printStackTrace();
+			}
+		}
+	}
+
+	private void Send(ParserEntity packet) {
+		List<ParserEntity> packetList = new ArrayList<ParserEntity>();
+		packetList.add(packet);
+		MixClientManager.report(packetList);
+		PacketRepository.add(1);
+
+		count_acc++;
+		if (count_acc >= count_sleep) {
+			count_acc = 0;
+			try {
+				Thread.sleep(1L);
+			} catch (InterruptedException e) {
+				e.printStackTrace();
+			}
+		}
+	}
+
+	public synchronized void doOne(EntityGroup group, String meter, int funcid, String data_type, List<ParserEntity> packetList, Date curr_time)
+			throws Exception {
+		Object dataString;
+		String key = building.id + "-" + group.rel_set_sign + "-" + group.rel_set_funcid;
+		if (group.rel_set_sign != null && Constant.setDataMap.containsKey(key)) {
+			dataString = "" + Constant.setDataMap.get(key).data;
+		} else {
+			dataString = SimulatorUtil.getValue(group, meter, funcid, data_type, curr_time);
+			Constant.reportDataMap.get(building.id + "-" + meter + "-" + funcid).data = Double.parseDouble(dataString.toString());
+		}
+		ParserEntity packet = new ParserEntity();
+		packet.building = building.id;
+		packet.gateway = "0";
+		packet.datatype = "report";
+		packet.packageId = "" + PacketNumGenerator.Instance().Generate();
+		RecordData RecordData = new RecordData();
+		RecordData.meter = meter;
+		RecordData.funcid = "" + funcid;
+		RecordData.time = curr_time;
+		RecordData.value = dataString.toString();
+		packet.dataList.add(RecordData);
+		if (Constant.BatchSend) {
+			packetList.add(packet);
+			if (packetList.size() >= Constant.BatchCount) {
+				this.Send(packetList);
+			}
+		} else {
+			this.Send(packet);
+		}
+
+		if (packageId >= 65535) {
+			packageId = 1;
+		}
+	}
+
+	public synchronized void sendOne(String meter, int funcid, double data) {
+		Date curr_time = new Date();
+		ParserEntity packet = new ParserEntity();
+		packet.building = building.id;
+		packet.gateway = "0";
+		packet.datatype = "report";
+		packet.packageId = "" + PacketNumGenerator.Instance().Generate();
+		RecordData RecordData = new RecordData();
+		RecordData.meter = meter;
+		RecordData.funcid = "" + funcid;
+		RecordData.time = curr_time;
+		RecordData.value = "" + data;
+		packet.dataList.add(RecordData);
+		this.Send(packet);
+	}
+}

+ 116 - 0
src/main/java/com/persagy/simulator_gaopin/Thread_set.java

@@ -0,0 +1,116 @@
+package com.persagy.simulator_gaopin;
+
+import java.text.DecimalFormat;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+import java.util.Random;
+
+import lombok.extern.slf4j.Slf4j;
+import org.eclipse.paho.client.mqttv3.MqttMessage;
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.persagy.communication.entity.Packet;
+import com.persagy.parser.DatagramParser;
+import com.persagy.parser.ParserEntity;
+import com.persagy.util.PacketNumGenerator;
+import com.persagy.util.ProcessUtil;
+@Slf4j
+public class Thread_set extends Thread {
+	EntityBuilding building;
+
+	public Thread_set(EntityBuilding building, MixClientManager MixClientManager) {
+		this.building = building;
+		this.MixClientManager = MixClientManager;
+	}
+
+	MixClientManager MixClientManager;
+	long packageId = 1;
+	Random rand = new Random();
+	SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+	DecimalFormat df = new DecimalFormat("#.########");
+
+	public Thread_report thread_report;
+
+	public void run() {
+		Date last_upload_time = null;
+		while (true) {
+			try {
+				Thread.sleep(1L);
+			} catch (Exception e) {
+				e.printStackTrace();
+			}
+
+			Date curr_time = new Date((new Date()).getTime() / 1000L * 1000L);
+			if (last_upload_time == null || curr_time.getTime() - last_upload_time.getTime() >= 1000L * Constant.pointupload_period_second) {
+				last_upload_time = curr_time;
+				try {
+					this.pointupload();
+				} catch (Exception e) {
+					e.printStackTrace();
+				}
+			}
+
+			if (MixClientManager.ClientManager != null) {
+				while (true) {
+					Packet packet = MixClientManager.ClientManager.PopRece();
+					if (packet == null) {
+						break;
+					}
+
+					try {
+						String[] splits = packet.packetString.split(";");
+						if (splits[2].equals("senddownset")) {
+							ParserEntity ParserEntity = DatagramParser.Instance().parser(splits);
+							log.warn("rece: " + packet.packetString);
+							ProcessUtil.Process_senddownset(MixClientManager, building.id, ParserEntity);
+						}
+					} catch (Exception e) {
+						e.printStackTrace();
+					}
+				}
+			}
+		} // end while
+	}
+
+	private void pointupload() throws Exception {
+		int yerongliang = 10;
+		int zoneyeshu = (this.building.setGroupList.size() + yerongliang - 1) / yerongliang;
+		for (int i = 0; i < zoneyeshu; i++) {
+			int yebianhao = i + 1;
+			List<EntityGroup> groupList = new ArrayList<EntityGroup>();
+			for (int ii = i * yerongliang; ii < (i + 1) * yerongliang && ii < this.building.setGroupList.size(); ii++) {
+				groupList.add(this.building.setGroupList.get(ii));
+			}
+			if (MixClientManager.mode.equals("socket")) {
+				StringBuffer sb = new StringBuffer();
+				sb.append(this.building.id + ";1;pointupload;;123;" + yerongliang + ";" + zoneyeshu + ";" + yebianhao + ";" + groupList.size());
+				for (EntityGroup group : groupList) {
+					sb.append(";" + group.meter + ";" + group.funcid);
+				}
+				MixClientManager.ClientManager.AppendToSend(new Packet(sb.toString()));
+			} else if (MixClientManager.mode.equals("mqtt")) {
+				JSONObject pointset = new JSONObject();
+				pointset.put("sequence_no", PacketNumGenerator.Instance().Generate());
+				pointset.put("mqtt_client_id", MixClientManager.MqttClient.getClientId());
+				pointset.put("packet_type", "pointupload");
+				JSONArray content = new JSONArray();
+				for (EntityGroup group : groupList) {
+					JSONObject contentItem = new JSONObject();
+					contentItem.put("meter", group.meter);
+					contentItem.put("funcid", "" + group.funcid);
+					content.add(contentItem);
+				}
+				pointset.put("content", content);
+				try {
+					MqttMessage message = new MqttMessage(pointset.toString().getBytes("UTF-8"));
+					MixClientManager.topicMapMap.get(this.building.id).get("setup").publish(message);
+				} catch (Exception e) {
+				}
+
+			}
+		}
+	}
+}

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 338 - 0
src/main/java/com/persagy/util/DateUtils.java


+ 10 - 0
src/main/java/com/persagy/util/ExcelSheet.java

@@ -0,0 +1,10 @@
+package com.persagy.util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class ExcelSheet {
+	public List<String> titleRowList = new ArrayList<String>();
+	public List<String> titleColList = new ArrayList<String>();
+	public List<List<String>> contentListList = new ArrayList<List<String>>();
+}

+ 304 - 0
src/main/java/com/persagy/util/ExcelUtil.java

@@ -0,0 +1,304 @@
+package com.persagy.util;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.logging.Filter;
+
+import org.apache.poi.hssf.usermodel.HSSFWorkbook;
+import org.apache.poi.ss.usermodel.Cell;
+import org.apache.poi.ss.usermodel.Row;
+import org.apache.poi.ss.usermodel.Sheet;
+import org.apache.poi.ss.usermodel.Workbook;
+import org.apache.poi.ss.usermodel.WorkbookFactory;
+import org.apache.poi.xssf.usermodel.XSSFWorkbook;
+
+public class ExcelUtil {
+
+	public static String getContentInner(ExcelSheet sheetContent, int col, int row) {
+		String result = null;
+		if (sheetContent.contentListList != null) {
+			if (sheetContent.contentListList.size() > row) {
+				List<String> contentList = sheetContent.contentListList.get(row);
+				if (contentList.size() > col) {
+					result = contentList.get(col);
+				}
+			}
+		}
+		return result;
+	}
+
+	public static String getContentInner(ExcelSheet sheetContent, String col, String row) {
+		int buildingIndex = -1;
+		for (int i = 0; i < sheetContent.titleColList.size(); i++) {
+			String name = sheetContent.titleColList.get(i);
+			if (name.equals(col)) {
+				buildingIndex = i;
+				break;
+			}
+		}
+
+		int titleIndex = -1;
+		for (int i = 0; i < sheetContent.titleRowList.size(); i++) {
+			String name = sheetContent.titleRowList.get(i);
+			if (name.equals(row)) {
+				titleIndex = i;
+				break;
+			}
+		}
+
+		String content = null;
+		if (buildingIndex == -1 || titleIndex == -1) {
+		} else {
+			content = sheetContent.contentListList.get(titleIndex).get(buildingIndex);
+		}
+
+		return content;
+	}
+
+	public static void Write(String filepath, Map<String, ExcelSheet> sheetMap) throws Exception {
+		Workbook wb;
+		if (filepath.endsWith("xlsx")) {
+			wb = new XSSFWorkbook();
+		} else {
+			wb = new HSSFWorkbook();
+		}
+
+		String[] names = sheetMap.keySet().toArray(new String[0]);
+		Arrays.sort(names);
+		for (String name : names) {
+			ExcelSheet sheet = sheetMap.get(name);
+			Sheet st = wb.createSheet(name);
+			int index_row_start = 0;
+			if (sheet.titleColList != null && sheet.titleColList.size() > 0) {
+				Row row = st.createRow(0);
+				for (int i = 0; i < sheet.titleColList.size(); i++) {
+					String title = sheet.titleColList.get(i);
+					Cell cell = row.createCell(i);
+					cell.setCellValue(title);
+				}
+				index_row_start = 1;
+			}
+			int index_col_start = 0;
+			if (sheet.titleRowList != null && sheet.titleRowList.size() > 0) {
+				for (int i = 0; i < sheet.titleRowList.size(); i++) {
+					Row row = st.createRow(index_row_start + i);
+					String title = sheet.titleRowList.get(i);
+					Cell cell = row.createCell(0);
+					cell.setCellValue(title);
+				}
+				index_col_start = 1;
+			}
+			for (int index_row = 0; index_row < sheet.contentListList.size(); index_row++) {
+				List<String> contentList = sheet.contentListList.get(index_row);
+				Row row = st.getRow(index_row_start + index_row);
+				if (row == null) {
+					row = st.createRow(index_row_start + index_row);
+				}
+				for (int index_col = 0; index_col < contentList.size(); index_col++) {
+					String content = contentList.get(index_col);
+					Cell cell = row.createCell(index_col_start + index_col);
+					cell.setCellValue(content);
+				}
+			}
+		}
+
+		FileOutputStream os = new FileOutputStream(filepath);
+		wb.write(os);
+		os.close();
+	}
+
+	public static Map<String, ExcelSheet> Read(InputStream stream, boolean titleCol) throws Exception {
+		Map<String, ExcelSheet> result = new HashMap<String, ExcelSheet>();
+		Workbook workbook = WorkbookFactory.create(stream);
+		int numbers = workbook.getNumberOfSheets();
+		for (int i = 0; i < numbers; i++) {
+			Sheet sheet = workbook.getSheetAt(i);
+			String name = sheet.getSheetName();
+			ExcelSheet ExcelSheet;
+			if (titleCol) {
+				ExcelSheet = GetSheetContent_titleCol(sheet);
+			} else {
+				ExcelSheet = GetSheetContent(sheet);
+			}
+			result.put(name, ExcelSheet);
+		}
+
+		return result;
+	}
+
+	public static ExcelSheet ReadSheet(String filepath, String sheetName, boolean titleCol) throws Exception {
+		Workbook workbook = WorkbookFactory.create(new File(filepath));
+		Sheet sheet = workbook.getSheet(sheetName);
+		ExcelSheet ExcelSheet;
+		if (titleCol) {
+			ExcelSheet = GetSheetContent_titleCol(sheet);
+		} else {
+			ExcelSheet = GetSheetContent(sheet);
+		}
+
+		return ExcelSheet;
+	}
+
+	public static ExcelSheet GetSheetContent(Sheet sheet) {
+		ExcelSheet result = new ExcelSheet();
+
+		int row_from = 0;
+		int row_to = 0;
+
+		int row_tmp = row_from + 1;
+		while (true) {
+			Row row = sheet.getRow(row_tmp);
+			if (row == null) {
+				break;
+			}
+			Cell cell = row.getCell(0);
+			if (cell == null) {
+				break;
+			}
+			String cellValue = GetCellValue(cell);
+			if (cellValue != null && cellValue.trim().length() > 0) {
+				row_to = row_tmp;
+				result.titleRowList.add(cellValue.trim());
+				row_tmp++;
+			} else {
+				break;
+			}
+		}
+
+		Row rowBuildings = sheet.getRow(row_from);
+		int col_tmp = 1;
+		while (true) {
+			Cell cell = rowBuildings.getCell(col_tmp);
+			if (cell == null) {
+				break;
+			}
+			String cellValue = GetCellValue(cell);
+			if (cellValue != null && cellValue.trim().length() > 0) {
+				result.titleColList.add(cellValue.trim());
+				col_tmp++;
+			} else {
+				break;
+			}
+		}
+
+		for (int index_row = row_from + 1; index_row <= row_to; index_row++) {
+			Row row = sheet.getRow(index_row);
+			List<String> contentList = new ArrayList<String>();
+			for (int index_col = 1; index_col < result.titleColList.size() + 1; index_col++) {
+				Cell cell = row.getCell(index_col);
+				String content = null;
+				if (cell != null) {
+					String cellValue = GetCellValue(cell);
+					if (cellValue != null && cellValue.trim().length() > 0) {
+						content = cellValue.trim();
+					}
+				}
+				contentList.add(content);
+			}
+			result.contentListList.add(contentList);
+		}
+
+		return result;
+	}
+
+	public static ExcelSheet GetSheetContent_titleCol(Sheet sheet) {
+		ExcelSheet result = new ExcelSheet();
+
+		int row_from = 0;
+		int row_to = sheet.getLastRowNum();
+
+		Row rowBuildings = sheet.getRow(row_from);
+		int index_last = rowBuildings.getLastCellNum();
+		for (int col_tmp = 0; col_tmp <= index_last; col_tmp++) {
+			Cell cell = rowBuildings.getCell(col_tmp);
+			String value = null;
+			if (cell != null) {
+				String cellValue = GetCellValue(cell);
+				if (cellValue != null && cellValue.trim().length() > 0) {
+					value = cellValue.trim();
+				}
+			}
+			result.titleColList.add(value);
+		}
+
+		for (int index_row = row_from + 1; index_row <= row_to; index_row++) {
+			Row row = sheet.getRow(index_row);
+			List<String> contentList = new ArrayList<String>();
+			if (row != null) {
+				for (int index_col = 0; index_col < result.titleColList.size(); index_col++) {
+					Cell cell = row.getCell(index_col);
+					String content = null;
+					if (cell != null) {
+						String cellValue = GetCellValue(cell);
+						if (cellValue != null && cellValue.trim().length() > 0) {
+							content = cellValue.trim();
+						}
+					}
+					contentList.add(content);
+				}
+			}
+			result.contentListList.add(contentList);
+		}
+
+		return result;
+	}
+
+	static SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+
+	public static String GetCellValue(Cell cell) {
+		if (cell == null) {
+			return null;
+		}
+
+		String cellText = null;
+
+		try {
+			switch (cell.getCellType()) {
+			case Cell.CELL_TYPE_NUMERIC:
+				short format = cell.getCellStyle().getDataFormat();
+				if (format == 14 || format == 22 || format == 31 || format == 57 || format == 58 || format == 176 || format == 177 || format == 178) {
+					Date date = cell.getDateCellValue();
+					long floor = date.getTime() / (1000L * 60) * (1000L * 60);
+					long ceiling = floor + (1000L * 60);
+					Date parseDate;
+					if (date.getTime() - floor > ceiling - date.getTime()) {
+						parseDate = new Date(ceiling);
+					} else {
+						parseDate = new Date(floor);
+					}
+					cellText = sdf.format(parseDate);
+				} else {
+					cellText = "" + cell.getNumericCellValue();
+				}
+				break;
+			case Cell.CELL_TYPE_STRING:
+				cellText = cell.getStringCellValue();
+				break;
+			case Cell.CELL_TYPE_FORMULA:
+				cell.setCellType(Cell.CELL_TYPE_NUMERIC);
+				cellText = "" + cell.getNumericCellValue();
+				break;
+			case Cell.CELL_TYPE_BLANK:
+				break;
+			case Cell.CELL_TYPE_BOOLEAN:
+				break;
+			case Cell.CELL_TYPE_ERROR:
+				break;
+			default:
+			}
+		} catch (Exception e) {
+			// e.printStackTrace();
+		}
+
+		return cellText;
+	}
+
+}

+ 101 - 0
src/main/java/com/persagy/util/FastJsonReaderUtil.java

@@ -0,0 +1,101 @@
+package com.persagy.util;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.io.OutputStreamWriter;
+import java.io.Reader;
+import java.io.Writer;
+
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.alibaba.fastjson.JSONReader;
+import com.alibaba.fastjson.JSONWriter;
+import com.alibaba.fastjson.serializer.SerializerFeature;
+
+public class FastJsonReaderUtil {
+	private static FastJsonReaderUtil instance = new FastJsonReaderUtil();
+
+	public static FastJsonReaderUtil Instance() {
+		return instance;
+	}
+
+	private FastJsonReaderUtil() {
+
+	}
+
+	public Object parse(byte[] JSON_bytes) throws Exception {
+		return this.parse(new String(JSON_bytes, "UTF-8"));
+	}
+
+	public Object parse(String JSONString) throws Exception {
+		Object result = JSON.parse(JSONString);
+		FastJsonUtil.Normalize(result);
+		return result;
+	}
+
+	public JSONObject ReadJSONObject(InputStream stream) throws Exception {
+		Object result = this.ReadInner(stream);
+		if (result == null) {
+			return null;
+		} else {
+			FastJsonUtil.Normalize(result);
+			return (JSONObject) result;
+		}
+	}
+
+	public JSONArray ReadJSONArray(File file) throws Exception {
+		Object result = this.ReadInner(file);
+		if (result == null) {
+			return null;
+		} else {
+			FastJsonUtil.Normalize(result);
+			return (JSONArray) result;
+		}
+	}
+	private Object ReadInner(InputStream inputStream) throws Exception {
+		Object result = null;
+		Reader reader = new InputStreamReader(inputStream);
+		JSONReader json_reader = new JSONReader(reader);
+		result = json_reader.readObject();
+		json_reader.close();
+		reader.close();
+		return result;
+	}
+	private Object ReadInner(File file) throws Exception {
+		Object result = null;
+
+		InputStream is = new FileInputStream(file);
+		Reader reader = new InputStreamReader(is);
+		JSONReader json_reader = new JSONReader(reader);
+		result = json_reader.readObject();
+		json_reader.close();
+		reader.close();
+		is.close();
+
+		return result;
+	}
+
+	public void Write(JSONObject result, String filepath) throws Exception {
+		this.WriteInner(result, filepath);
+	}
+
+	public void Write(JSONArray result, String filepath) throws Exception {
+		this.WriteInner(result, filepath);
+	}
+
+	private void WriteInner(Object result, String filepath) throws Exception {
+		OutputStream os = new FileOutputStream(filepath);
+		Writer writer = new OutputStreamWriter(os);
+		JSONWriter json_writer = new JSONWriter(writer);
+		json_writer.config(SerializerFeature.WriteMapNullValue, false);
+		json_writer.writeObject(result);
+		json_writer.close();
+		writer.close();
+		os.close();
+	}
+}

+ 566 - 0
src/main/java/com/persagy/util/FastJsonUtil.java

@@ -0,0 +1,566 @@
+package com.persagy.util;
+
+import java.lang.reflect.Array;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Method;
+import java.math.BigDecimal;
+import java.math.BigInteger;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+
+public class FastJsonUtil {
+	public static Set<Object> ValueArray2ValueSet(JSONArray valueArray) {
+		Set<Object> valueSet = new HashSet<Object>();
+		for (int index_va = 0; index_va < valueArray.size(); index_va++) {
+			Object valueItem = valueArray.get(index_va);
+			valueSet.add(valueItem);
+		}
+		return valueSet;
+	}
+
+	public static JSONArray ValueSet2ValueArray(Set<Object> valueSet) {
+		JSONArray valueArray = new JSONArray();
+		Iterator<Object> valueIter = valueSet.iterator();
+		while (valueIter.hasNext()) {
+			Object valueItem = valueIter.next();
+			valueArray.add(valueItem);
+		}
+		return valueArray;
+	}
+
+	public static Set<Object> ValueSet_or(List<Set<Object>> valueSetList) {
+		Set<Object> result = new HashSet<Object>();
+		for (int i = 0; i < valueSetList.size(); i++) {
+			Set<Object> valueSet = valueSetList.get(i);
+			result.addAll(valueSet);
+		}
+		return result;
+	}
+
+	public static Set<Object> ValueSet_and(List<Set<Object>> valueSetList) {
+		Set<Object> result = new HashSet<Object>();
+		Set<Object> first = valueSetList.get(0);
+		Iterator<Object> valueIter = first.iterator();
+		while (valueIter.hasNext()) {
+			Object valueItem = valueIter.next();
+			boolean all_in = true;
+			for (int i = 1; i < valueSetList.size(); i++) {
+				Set<Object> valueSet = valueSetList.get(i);
+				if (!valueSet.contains(valueItem)) {
+					all_in = false;
+					break;
+				}
+			}
+			if (all_in) {
+				result.add(valueItem);
+			}
+		}
+		return result;
+	}
+
+	public static Set<Object> ValueSet_sub(Set<Object> valueSet1, Set<Object> valueSet2) {
+		Set<Object> result = new HashSet<Object>();
+		Iterator<Object> valueIter = valueSet1.iterator();
+		while (valueIter.hasNext()) {
+			Object valueItem = valueIter.next();
+			if (!valueSet2.contains(valueItem)) {
+				result.add(valueItem);
+			}
+		}
+		return result;
+	}
+
+	public static String toFormatString(Object value) {
+		return toStringInner(value, true);
+	}
+
+	public static String toString(Object value) {
+		return toStringInner(value, false);
+	}
+
+	private static String toStringInner(Object value, boolean has_enter) {
+		if (value == null)
+			return "null";
+
+		if (value instanceof String) {
+			StringBuffer sb = new StringBuffer();
+			escape((String) value, sb);
+			return "\"" + sb.toString() + "\"";
+		}
+
+		if (value instanceof Double) {
+			if (((Double) value).isInfinite() || ((Double) value).isNaN())
+				return "null";
+			else
+				return value.toString();
+		}
+
+		if (value instanceof Float) {
+			if (((Float) value).isInfinite() || ((Float) value).isNaN())
+				return "null";
+			else
+				return value.toString();
+		}
+
+		if (value instanceof Number)
+			return value.toString();
+
+		if (value instanceof Boolean)
+			return value.toString();
+
+		if (value instanceof JSONObject) {
+			JSONObject valueJSON = (JSONObject) value;
+			StringBuffer sb = new StringBuffer();
+			boolean first = true;
+			Iterator<String> iter = valueJSON.keySet().iterator();
+
+			sb.append('{');
+			while (iter.hasNext()) {
+				String key = iter.next();
+
+				if (first)
+					first = false;
+				else
+					sb.append(',');
+
+				if (has_enter) {
+					sb.append("\r\n\t");
+				}
+
+				sb.append('\"');
+				escape(key, sb);
+				sb.append('\"').append(':');
+				String valueString = toStringInner(valueJSON.get(key), has_enter);
+				sb.append(valueString.replaceAll("\r\n", "\r\n\t"));
+			}
+			if (has_enter) {
+				sb.append("\r\n");
+			}
+			sb.append('}');
+			return sb.toString();
+		}
+
+		if (value instanceof JSONArray) {
+			JSONArray valueJSON = (JSONArray) value;
+			boolean first = true;
+			StringBuffer sb = new StringBuffer();
+
+			sb.append('[');
+			for (int i = 0; i < valueJSON.size(); i++) {
+				if (first)
+					first = false;
+				else
+					sb.append(',');
+
+				if (has_enter) {
+					sb.append("\r\n\t");
+				}
+
+				Object valueInner = valueJSON.get(i);
+				if (valueInner == null) {
+					sb.append("null");
+					continue;
+				}
+				String valueString = toStringInner(valueInner, has_enter);
+				sb.append(valueString.replaceAll("\r\n", "\r\n\t"));
+			}
+			if (has_enter) {
+				sb.append("\r\n");
+			}
+			sb.append(']');
+			return sb.toString();
+
+		}
+
+		return value.toString();
+	}
+
+	public static void escape(String s, StringBuffer sb) {
+		for (int i = 0; i < s.length(); i++) {
+			char ch = s.charAt(i);
+			switch (ch) {
+			case '"':
+				sb.append("\\\"");
+				break;
+			case '\\':
+				sb.append("\\\\");
+				break;
+			case '\b':
+				sb.append("\\b");
+				break;
+			case '\f':
+				sb.append("\\f");
+				break;
+			case '\n':
+				sb.append("\\n");
+				break;
+			case '\r':
+				sb.append("\\r");
+				break;
+			case '\t':
+				sb.append("\\t");
+				break;
+			case '/':
+				sb.append("\\/");
+				break;
+			default:
+				// Reference: http://www.unicode.org/versions/Unicode5.1.0/
+				if ((ch >= '\u0000' && ch <= '\u001F') || (ch >= '\u007F' && ch <= '\u009F') || (ch >= '\u2000' && ch <= '\u20FF')) {
+					String ss = Integer.toHexString(ch);
+					sb.append("\\u");
+					for (int k = 0; k < 4 - ss.length(); k++) {
+						sb.append('0');
+					}
+					sb.append(ss.toUpperCase());
+				} else {
+					sb.append(ch);
+				}
+			}
+		} // for
+	}
+
+	public static Long getLong(JSONObject json, String name) throws Exception {
+		if (json.containsKey(name)) {
+			Object item = json.get(name);
+			if (item instanceof Integer) {
+				return ((Integer) item).longValue();
+			} else if (item instanceof Long) {
+				return ((Long) item).longValue();
+			} else if (item instanceof BigInteger) {
+				return ((BigInteger) item).longValue();
+			} else {
+				throw new Exception("FastJsonUtil: " + "JSON property " + name + " cant Cast to Long:" + FastJsonUtil.toFormatString(json));
+			}
+		} else {
+			return null;
+		}
+	}
+
+	public static Long getDouble(JSONObject json, String name) throws Exception {
+		if (json.containsKey(name)) {
+			Object item = json.get(name);
+			if (item instanceof Integer) {
+				return ((Integer) item).longValue();
+			} else if (item instanceof Long) {
+				return ((Long) item).longValue();
+			} else if (item instanceof BigInteger) {
+				return ((BigInteger) item).longValue();
+			} else if (item instanceof Float) {
+				return ((Float) item).longValue();
+			} else if (item instanceof Double) {
+				return ((Double) item).longValue();
+			} else if (item instanceof BigDecimal) {
+				return ((BigDecimal) item).longValue();
+			} else {
+				throw new Exception("FastJsonUtil: " + "JSON property " + name + " cant Cast to Double:" + FastJsonUtil.toFormatString(json));
+			}
+		} else {
+			return null;
+		}
+	}
+
+	public static void Set_JSON(Object entity, JSONObject json) throws Exception {
+		Class<?> targetClass = entity.getClass();
+
+		Method[] targetMethodArray = targetClass.getMethods();
+		for (int i = 0; i < targetMethodArray.length; i++) {
+			Method method = targetMethodArray[i];
+			int modifiers = method.getModifiers();
+			String methodName = method.getName();
+			if (modifiers == 1 && methodName.startsWith("get")) {
+				Class<?>[] parameterTypes = method.getParameterTypes();
+				if (parameterTypes.length == 0) {
+					String fieldName = methodName.substring(3);
+					fieldName = fieldName.substring(0, 1).toLowerCase() + fieldName.substring(1);
+					if (json.containsKey(fieldName)) {
+						json.remove(fieldName);
+					}
+					Object value = method.invoke(entity, new Object[] {});
+					if (value != null) {
+						String valueClassName = value.getClass().getName();
+						Object put_value = null;
+						if (valueClassName.equals("java.lang.String")) {
+							put_value = value;
+						} else if (valueClassName.equals("java.util.Date")) {
+							SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+							put_value = sdf.format((Date) value);
+						} else if (valueClassName.equals("java.lang.Long") || valueClassName.equals("long")) {
+							put_value = value;
+						} else if (valueClassName.equals("java.lang.Double") || valueClassName.equals("double")) {
+							put_value = value;
+						} else if (valueClassName.equals("java.lang.Boolean") || valueClassName.equals("boolean")) {
+							put_value = value;
+						} else {
+							put_value = To_JSON(value);
+						}
+
+						json.put(fieldName, put_value);
+					}
+				}
+			}
+		}
+	}
+
+	public static void Set_JavaObject(JSONObject json, Object entity) throws Exception {
+		Class<?> targetClass = entity.getClass();
+
+		if (json == null) {
+			return;
+		}
+
+		Method[] targetMethodArray = targetClass.getMethods();
+		for (int i = 0; i < targetMethodArray.length; i++) {
+			Method method = targetMethodArray[i];
+			int modifiers = method.getModifiers();
+			String methodName = method.getName();
+			if (modifiers == 1 && methodName.startsWith("set")) {
+				Class<?>[] parameterTypes = method.getParameterTypes();
+				if (parameterTypes.length == 1) {
+					String fieldName = methodName.substring(3);
+					fieldName = fieldName.substring(0, 1).toLowerCase() + fieldName.substring(1);
+					Class<?> paramClass = parameterTypes[0];
+					if (json.containsKey(fieldName)) {
+						Object sourceFieldValue = json.get(fieldName);
+						Object targetFieldValue = To_JavaObject(sourceFieldValue, paramClass);
+
+						method.invoke(entity, new Object[] { targetFieldValue });
+					}
+				}
+			}
+		}
+	}
+
+	public static Object To_JSON(Object source) throws Exception {
+		Class<?> sourceClass = source.getClass();
+		if (sourceClass.isArray()) {
+			JSONArray result = new JSONArray();
+			int array_length = Array.getLength(source);
+			for (int i = 0; i < array_length; i++) {
+				Object item = Array.get(source, i);
+				result.add(To_JSON(item));
+			}
+			return result;
+		} else {
+			JSONObject result = new JSONObject();
+			Method[] meethodArray = sourceClass.getMethods();
+			for (int i = 0; i < meethodArray.length; i++) {
+				Method method = meethodArray[i];
+				int modifiers = method.getModifiers();
+				String methodName = method.getName();
+				if (modifiers == 1 && methodName.startsWith("get")) {
+					Class<?>[] parameterTypes = method.getParameterTypes();
+					if (parameterTypes.length == 0) {
+						String fieldName = methodName.substring(3);
+						fieldName = fieldName.substring(0, 1).toLowerCase() + fieldName.substring(1);
+						Object value = method.invoke(source, new Object[] {});
+						Object put_value;
+						if (value == null) {
+							put_value = null;
+						} else {
+							String valueClassName = value.getClass().getName();
+							if (valueClassName.equals("java.lang.String")) {
+								put_value = value;
+							} else if (valueClassName.equals("java.util.Date")) {
+								SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+								put_value = sdf.format(value);
+							} else if (valueClassName.equals("java.lang.Long") || valueClassName.equals("long")) {
+								put_value = value;
+							} else if (valueClassName.equals("java.lang.Double") || valueClassName.equals("double")) {
+								put_value = value;
+							} else if (valueClassName.equals("java.lang.Boolean") || valueClassName.equals("boolean")) {
+								put_value = value;
+							} else {
+								put_value = To_JSON(value);
+							}
+						}
+						result.put(fieldName, put_value);
+					}
+				}
+			}
+			return result;
+		}
+	}
+
+	public static Object To_JavaObject(Object json, Class<?> entityClass) throws Exception {
+		if (json == null) {
+			return null;
+		}
+
+		String targetClassName = entityClass.getName();
+		if (json instanceof JSONArray && entityClass.isArray()) {
+			JSONArray sourceEntity = (JSONArray) json;
+			int sourceLength = sourceEntity.size();
+
+			Class<?> targetComponentType = entityClass.getComponentType();
+			Object targetObjectArray = Array.newInstance(targetComponentType, sourceLength);
+
+			for (int i = 0; i < sourceLength; i++) {
+				Object sourceObject = sourceEntity.get(i);
+
+				Object targetObject = To_JavaObject(sourceObject, targetComponentType);
+				Array.set(targetObjectArray, i, targetObject);
+			}
+
+			return targetObjectArray;
+		} else if (json instanceof JSONObject) {
+			JSONObject sourceEntity = (JSONObject) json;
+
+			Constructor<?> constructorMethod = entityClass.getConstructor(new Class<?>[] {});
+			Object targetObject = constructorMethod.newInstance(new Object[] {});
+			Method[] methodArray = entityClass.getMethods();
+			for (int i = 0; i < methodArray.length; i++) {
+				Method method = methodArray[i];
+				int modifiers = method.getModifiers();
+				String methodName = method.getName();
+				if (modifiers == 1 && methodName.startsWith("set")) {
+					Class<?>[] parameterTypes = method.getParameterTypes();
+					if (parameterTypes.length == 1) {
+						String fieldName = methodName.substring(3);
+						fieldName = fieldName.substring(0, 1).toLowerCase() + fieldName.substring(1);
+						Class<?> paramClass = parameterTypes[0];
+						if (sourceEntity.containsKey(fieldName)) {
+							Object sourceFieldValue = sourceEntity.get(fieldName);
+							Object targetFieldValue = To_JavaObject(sourceFieldValue, paramClass);
+
+							method.invoke(targetObject, new Object[] { targetFieldValue });
+						}
+					}
+				}
+			}
+
+			return targetObject;
+		} else if (json instanceof String && targetClassName.equals("java.lang.String")) {
+			return (String) json;
+		} else if (json instanceof String && targetClassName.equals("java.util.Date")) {
+			SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+			return sdf.parse((String) json);
+		} else if (targetClassName.equals("java.lang.Long") || targetClassName.equals("long")) {
+			if (json instanceof String) {
+				Long value = Long.parseLong((String) json);
+				return value;
+			} else if (json instanceof Integer) {
+				return ((Integer) json).longValue();
+			} else if (json instanceof Long) {
+				return ((Long) json).longValue();
+			} else if (json instanceof BigInteger) {
+				return ((BigInteger) json).longValue();
+			} else {
+				return null;
+			}
+		} else if (targetClassName.equals("java.lang.Double") || targetClassName.equals("double")) {
+			if (json instanceof String) {
+				Double value = Double.parseDouble((String) json);
+				return value;
+			} else if (json instanceof Integer) {
+				return ((Integer) json).doubleValue();
+			} else if (json instanceof Long) {
+				return ((Long) json).doubleValue();
+			} else if (json instanceof BigInteger) {
+				return ((BigInteger) json).doubleValue();
+			} else if (json instanceof Float) {
+				return ((Float) json).doubleValue();
+			} else if (json instanceof Double) {
+				return ((Double) json).doubleValue();
+			} else if (json instanceof BigDecimal) {
+				return ((BigDecimal) json).doubleValue();
+			} else {
+				return null;
+			}
+		} else if (targetClassName.equals("java.lang.Boolean") || targetClassName.equals("boolean")) {
+			if (json instanceof String) {
+				Boolean value = ((String) json).equalsIgnoreCase("true") ? true : false;
+				return value;
+			} else if (json instanceof Boolean) {
+				Boolean value = (Boolean) json;
+				return value;
+			} else {
+				return null;
+			}
+		} else {
+			return null;
+		}
+	}
+
+	public static void Normalize(Object source) {
+		if (source instanceof JSONObject) {
+			JSONObject sourceJSON = (JSONObject) source;
+			Map<String, Object> newMap = new HashMap<String, Object>();
+			Iterator<String> keyIter = sourceJSON.keySet().iterator();
+			while (keyIter.hasNext()) {
+				String key = keyIter.next();
+				Object value = sourceJSON.get(key);
+				if (value == null) {
+					continue;
+				}
+				if (value instanceof Integer) {
+					newMap.put(key, ((Integer) value).longValue());
+				} else if (value instanceof Long) {
+				} else if (value instanceof BigInteger) {
+					newMap.put(key, ((BigInteger) value).longValue());
+				} else if (value instanceof Float) {
+					newMap.put(key, ((Float) value).doubleValue());
+				} else if (value instanceof Double) {
+				} else if (value instanceof BigDecimal) {
+					newMap.put(key, ((BigDecimal) value).doubleValue());
+				} else if (value instanceof JSONObject || value instanceof JSONArray) {
+					Normalize(value);
+				}
+			}
+			Iterator<String> iter2 = newMap.keySet().iterator();
+			while (iter2.hasNext()) {
+				String key = iter2.next();
+				Object value = newMap.get(key);
+				sourceJSON.remove(key);
+				sourceJSON.put(key, value);
+			}
+		} else if (source instanceof JSONArray) {
+			JSONArray sourceJSON = (JSONArray) source;
+			for (int i = 0; i < sourceJSON.size(); i++) {
+				Object sourceItem = sourceJSON.get(i);
+				if (sourceItem != null && (sourceItem instanceof JSONObject || sourceItem instanceof JSONArray)) {
+					Normalize(sourceItem);
+				}
+			}
+		}
+	}
+
+	public static Object Clone_JSON(Object source) {
+		if (source instanceof JSONObject) {
+			JSONObject result = new JSONObject();
+			JSONObject sourceJSON = (JSONObject) source;
+			Iterator<String> keyIter = sourceJSON.keySet().iterator();
+			while (keyIter.hasNext()) {
+				String key = keyIter.next();
+				Object value = sourceJSON.get(key);
+				result.put(key, Clone_JSON(value));
+			}
+			return result;
+		} else if (source instanceof JSONArray) {
+			JSONArray result = new JSONArray();
+			JSONArray sourceJSON = (JSONArray) source;
+			for (int i = 0; i < sourceJSON.size(); i++) {
+				result.add(Clone_JSON(sourceJSON.get(i)));
+			}
+			return result;
+		} else if (source instanceof String) {
+			return source;
+		} else if (source instanceof Double) {
+			return source;
+		} else if (source instanceof Long) {
+			return source;
+		} else if (source instanceof Boolean) {
+			return source;
+		}
+
+		return null;
+	}
+}

+ 114 - 0
src/main/java/com/persagy/util/FunctionUtil.java

@@ -0,0 +1,114 @@
+package com.persagy.util;
+
+import com.persagy.entity.ValueObject;
+
+import java.lang.reflect.Method;
+import java.util.Calendar;
+import java.util.Date;
+
+public class FunctionUtil {
+
+	public static ValueObject constant(String constant) {
+		ValueObject result = new ValueObject();
+		result.type = 1;
+		if (constant.equals("PI")) {
+			result.doubleValue = Math.PI;
+		} else if (constant.equals("E")) {
+			result.doubleValue = Math.E;
+		}
+		return result;
+	}
+
+	public static ValueObject compute(String function) {
+		ValueObject result = new ValueObject();
+		result.type = 1;
+		Class<?> mathClass = Math.class;
+		try {
+			Method method = mathClass.getMethod(function, new Class[] {});
+			result.doubleValue = (Double) method.invoke(mathClass,
+					new Object[] {});
+		} catch (Exception e) {
+			e.printStackTrace();
+		}
+		return result;
+	}
+
+	public static ValueObject compute(String function, ValueObject a) {
+		ValueObject result = new ValueObject();
+		result.type = 1;
+		double valuea;
+		if (a.type == 0) {
+			valuea = a.intValue;
+		} else {
+			valuea = a.doubleValue;
+		}
+		Class<?> mathClass = Math.class;
+		try {
+			Method method = mathClass.getMethod(function,
+					new Class[] { double.class });
+			result.doubleValue = (Double) method.invoke(mathClass,
+					new Object[] { valuea });
+		} catch (Exception e) {
+			e.printStackTrace();
+		}
+		return result;
+	}
+
+	public static ValueObject compute(String function, ValueObject a,
+			ValueObject b) {
+		ValueObject result = new ValueObject();
+		result.type = 1;
+		double valuea;
+		if (a.type == 0) {
+			valuea = a.intValue;
+		} else {
+			valuea = a.doubleValue;
+		}
+		double valueb;
+		if (b.type == 0) {
+			valueb = b.intValue;
+		} else {
+			valueb = b.doubleValue;
+		}
+		Class<?> mathClass = Math.class;
+		try {
+			Method method = mathClass.getMethod(function, new Class[] {
+					double.class, double.class });
+			result.doubleValue = (Double) method.invoke(mathClass,
+					new Object[] { valuea, valueb });
+		} catch (Exception e) {
+			e.printStackTrace();
+		}
+		return result;
+	}
+
+	public static ValueObject computedate(String function, ValueObject a) {
+		ValueObject result = new ValueObject();
+		if (a.type == 1) {
+			return result;
+		}
+
+		Calendar calendar = Calendar.getInstance();
+		calendar.setTime(new Date(a.intValue));
+		if (function.equals("dateyear")) {
+			result.intValue = calendar.get(Calendar.YEAR);
+		} else if (function.equals("datemonth")) {
+			result.intValue = calendar.get(Calendar.MONTH) + 1;
+		} else if (function.equals("dateday")) {
+			result.intValue = calendar.get(Calendar.DAY_OF_MONTH);
+		} else if (function.equals("datedayofweek")) {
+			result.intValue = calendar.get(Calendar.DAY_OF_WEEK);
+		} else if (function.equals("datedayofmonth")) {
+			result.intValue = calendar.get(Calendar.DAY_OF_MONTH);
+		} else if (function.equals("datedayofyear")) {
+			result.intValue = calendar.get(Calendar.DAY_OF_YEAR);
+		} else if (function.equals("datehour")) {
+			result.intValue = calendar.get(Calendar.HOUR_OF_DAY);
+		} else if (function.equals("dateminute")) {
+			result.intValue = calendar.get(Calendar.MINUTE);
+		} else if (function.equals("datesecond")) {
+			result.intValue = calendar.get(Calendar.SECOND);
+		}
+		return result;
+	}
+}

+ 25 - 0
src/main/java/com/persagy/util/PacketNumGenerator.java

@@ -0,0 +1,25 @@
+package com.persagy.util;
+
+import java.util.Random;
+
+public class PacketNumGenerator {
+	private static final PacketNumGenerator INSTANCE = new PacketNumGenerator();
+	int num = 1;
+
+	private PacketNumGenerator() {
+		Random rand = new Random();
+		num = 1 + rand.nextInt(100);
+	}
+
+	public synchronized static PacketNumGenerator Instance() {
+		return INSTANCE;
+	}
+
+	public synchronized int Generate() {
+		num++;
+		if (num >= 2147483647) {
+			num = 1;
+		}
+		return num;
+	}
+}

+ 93 - 0
src/main/java/com/persagy/util/ProcessUtil.java

@@ -0,0 +1,93 @@
+package com.persagy.util;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+import java.util.Map;
+import java.util.Random;
+
+import cn.hutool.core.util.NumberUtil;
+import com.persagy.parser.ParserEntity;
+import com.persagy.parser.RecordData;
+import com.persagy.simulator_gaopin.Constant;
+import com.persagy.simulator_gaopin.DoubleTimeObject;
+import com.persagy.simulator_gaopin.EntityGroup;
+import com.persagy.simulator_gaopin.MixClientManager;
+
+public class ProcessUtil {
+	public static Random rand = new Random();
+
+	public static void Process_senddownset(MixClientManager MixClientManager, String building, ParserEntity ParserEntity) throws Exception {
+		Map<String, EntityGroup> groupMap = Constant.buildingMap.get(building).groupMap;
+		Date curr_time = new Date();
+		for (RecordData RecordData : ParserEntity.dataList) {
+			if (Constant.random_timeout) {
+				boolean timeout = rand.nextBoolean();
+				if (timeout) {
+					RecordData.result = "failure_timeout";
+					RecordData.endtime = curr_time;
+					continue;
+				}
+			}
+			String meter = RecordData.meter;
+			String funcid = RecordData.funcid;
+			double value = Double.parseDouble(RecordData.value);
+			if (!groupMap.containsKey(meter + "-" + funcid)) {
+				RecordData.result = "failure_point_not_exist";
+				RecordData.endtime = curr_time;
+				continue;
+			}
+			EntityGroup group = groupMap.get(meter + "-" + funcid);
+			if (group.manual_sign != null) {
+				DoubleTimeObject manualData = Constant.reportDataMap.get(building + "-" + group.manual_sign + "-" + group.manual_funcid);
+				if (manualData.data != 0.0) {
+					RecordData.result = "failure_manual_is_auto";
+					RecordData.endtime = curr_time;
+					continue;
+				}
+			}
+			if (group.data_type.equalsIgnoreCase("boolean")) {
+				if (value != 0.0 && value != 1.0) {
+					RecordData.result = "failure_boolean_cant_set_" + value;
+					RecordData.endtime = curr_time;
+					continue;
+				}
+			} else if (group.data_type.equalsIgnoreCase("enum")) {
+				if (value != (long) value) {
+					RecordData.result = "failure_boolean_cant_set_" + value;
+					RecordData.endtime = curr_time;
+					continue;
+				}
+			}
+			{
+				RecordData.result = "success";
+				RecordData.endtime = curr_time;
+				Constant.setDataMap.get(building + "-" + meter + "-" + funcid).data = value;
+				if (Constant.set2report.containsKey(building + "-" + meter + "-" + funcid)) {
+					String mf = Constant.set2report.get(building + "-" + meter + "-" + funcid);
+					int index_ = mf.indexOf("-");
+					int index__ = mf.lastIndexOf("-");
+					String report_meter = mf.substring(index_ + 1, index__);
+					int report_funcid = NumberUtil.parseInt(mf.substring(index__ + 1));
+					Constant.reportDataMap.get(building + "-" + report_meter + "-" + report_funcid).data = value;
+
+					ParserEntity packet = new ParserEntity();
+					packet.building = building;
+					packet.gateway = "0";
+					packet.datatype = "report";
+					packet.packageId = "" + PacketNumGenerator.Instance().Generate();
+					RecordData RecordDataInner = new RecordData();
+					RecordDataInner.meter = report_meter;
+					RecordDataInner.funcid = "" + report_funcid;
+					RecordDataInner.time = curr_time;
+					RecordDataInner.value = RecordData.value;
+					packet.dataList.add(RecordDataInner);
+					List<ParserEntity> packetList = new ArrayList<ParserEntity>();
+					packetList.add(packet);
+					MixClientManager.report(packetList);
+				}
+			}
+		}
+		MixClientManager.senddownsetack(ParserEntity);
+	}
+}

+ 32 - 0
src/main/java/com/persagy/util/SetData.java

@@ -0,0 +1,32 @@
+package com.persagy.util;
+
+import java.util.Date;
+
+/**
+ * @description: 迁移原来SetData数据
+ * @author:LuoGuangyi
+ * @company:PersagyTechnologyCo.,Ltd
+ * @since:2021/04/01 09:58
+ * @version:V1.0
+ **/
+public class SetData {
+	public String building;
+	public String gateway;
+	public Date time;
+	public String packageId;
+	public String meter;
+	public String funcid;
+	public String value;
+	public Date endtime;
+	public String status;
+
+	public SetData(String building, String gateway, Date time, String packageId, String meter, String funcid, String value) {
+		this.building = building;
+		this.gateway = gateway;
+		this.time = time;
+		this.packageId = packageId;
+		this.meter = meter;
+		this.funcid = funcid;
+		this.value = value;
+	}
+}

+ 94 - 0
src/main/java/com/persagy/util/ValueObjectUtil.java

@@ -0,0 +1,94 @@
+package com.persagy.util;
+
+import com.persagy.entity.ValueObject;
+
+public class ValueObjectUtil {
+	public static ValueObject compute(String operator, ValueObject a,
+									  ValueObject b) {
+		ValueObject result = new ValueObject();
+		if (a.type == 0 && b.type == 0) {
+			if (operator.equals("+")) {
+				result.intValue = a.intValue + b.intValue;
+			} else if (operator.equals("-")) {
+				result.intValue = a.intValue - b.intValue;
+			} else if (operator.equals("*")) {
+				result.intValue = a.intValue * b.intValue;
+			} else if (operator.equals("/")) {
+				result.intValue = a.intValue / b.intValue;
+			} else if (operator.equals("%")) {
+				result.intValue = a.intValue % b.intValue;
+			}
+		} else {
+			result.type = 1;
+			double valuea;
+			if (a.type == 0) {
+				valuea = a.intValue;
+			} else {
+				valuea = a.doubleValue;
+			}
+			double valueb;
+			if (b.type == 0) {
+				valueb = b.intValue;
+			} else {
+				valueb = b.doubleValue;
+			}
+			if (operator.equals("+")) {
+				result.doubleValue = valuea + valueb;
+			} else if (operator.equals("-")) {
+				result.doubleValue = valuea - valueb;
+			} else if (operator.equals("*")) {
+				result.doubleValue = valuea * valueb;
+			} else if (operator.equals("/")) {
+				result.doubleValue = valuea / valueb;
+			} else if (operator.equals("%")) {
+				result.doubleValue = valuea % valueb;
+			}
+		}
+		return result;
+	}
+
+	public static boolean compare(String operator, ValueObject a, ValueObject b) {
+		if (a.type == 0 && b.type == 0) {
+			if (operator.equals("<")) {
+				return a.intValue < b.intValue;
+			} else if (operator.equals("<=")) {
+				return a.intValue <= b.intValue;
+			} else if (operator.equals(">")) {
+				return a.intValue > b.intValue;
+			} else if (operator.equals(">=")) {
+				return a.intValue >= b.intValue;
+			} else if (operator.equals("==")) {
+				return a.intValue == b.intValue;
+			} else if (operator.equals("!=")) {
+				return a.intValue != b.intValue;
+			}
+		} else {
+			double valuea;
+			if (a.type == 0) {
+				valuea = a.intValue;
+			} else {
+				valuea = a.doubleValue;
+			}
+			double valueb;
+			if (b.type == 0) {
+				valueb = b.intValue;
+			} else {
+				valueb = b.doubleValue;
+			}
+			if (operator.equals("<")) {
+				return valuea < valueb;
+			} else if (operator.equals("<=")) {
+				return valuea <= valueb;
+			} else if (operator.equals(">")) {
+				return valuea > valueb;
+			} else if (operator.equals(">=")) {
+				return valuea >= valueb;
+			} else if (operator.equals("==")) {
+				return valuea == valueb;
+			} else if (operator.equals("!=")) {
+				return valuea != valueb;
+			}
+		}
+		return true;
+	}
+}

+ 44 - 0
src/main/resources/config.xml

@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+	<socket_or_mqtt>socket</socket_or_mqtt>
+
+	<mqtt url="tcp://127.0.0.1:61613" clientId="simulator-collector-4403070003" username="admin" password="password" topic_prefix="project" />
+	
+	<PROTOCOL>TCP</PROTOCOL>
+	<ServerIP>192.168.100.102</ServerIP>
+	<ServerPort>30853</ServerPort>
+	<Mode>mina</Mode>
+	<Max_size>10000</Max_size>
+	<SleepCount>1000</SleepCount>
+	<Separate>true</Separate>
+	<Separate_begin>(</Separate_begin>
+	<Separate_end>)</Separate_end>
+	<Compress>false</Compress>
+	
+	<pointupload_period_second>300</pointupload_period_second>
+	<BatchSend>true</BatchSend>
+	<BatchCount>100</BatchCount>
+	<TimeStart_enable>false</TimeStart_enable>
+	<TimeStart>20211101000000</TimeStart>
+	<TimeBeiShu>360000</TimeBeiShu>
+	
+	<use_excel>true</use_excel>
+	<random_timeout>false</random_timeout>
+
+	<!--
+	<building id="1101070038">
+		<group meter_from="1000" meter_to="1000" funcid="4" period_second="30" data_type="double" />
+		<group meter_from="1000" meter_to="1000" funcid="5" period_second="30" data_type="double" />
+		<group meter_from="1000" meter_to="1000" funcid="6" period_second="30" data_type="double" />
+		<group meter_from="10001" meter_to="20000" funcid="10106" period_second="1" data_type="boolean" />
+	</building>
+	-->
+	
+	<!--
+	<building id="1101070038">
+		<group meter_from="10001" meter_to="20000" funcid="10101" period_second="1" data_type="double" />
+		<group meter_from="10001" meter_to="20000" funcid="10106" period_second="1" data_type="boolean" />
+	</building>
+	-->
+
+</root>

+ 56 - 0
src/main/resources/formula-param.json

@@ -0,0 +1,56 @@
+{
+	"boolean": [
+		{
+			"formula": "wave_boolean",
+			"params": {
+				"offset": {
+					"first": 0,
+					"seed": 360,
+					"count": 10
+				},
+				"r": 1800
+			}
+		}
+	],
+	"enum": [
+		{
+			"formula": "wave_enum",
+			"params": {
+				"offset": {
+					"first": 0,
+					"seed": 360,
+					"count": 10
+				},
+				"r": 1800
+			}
+		}
+	],
+	"integer": [
+		{
+			"formula": "wave_integer",
+			"params": {
+				"offset": {
+					"first": 0,
+					"seed": 360,
+					"count": 10
+				},
+				"r": 1800
+			}
+		}
+	],
+	"double": [
+		{
+			"formula": "wave_triangle",
+			"params": {
+				"offset": {
+					"first": 0,
+					"seed": 360,
+					"count": 10
+				},
+				"r": 1800,
+				"k": 1,
+				"b": 0
+			}
+		}
+	]
+}

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 15 - 0
src/main/resources/formula.json


+ 18 - 0
src/main/resources/log4j.properties

@@ -0,0 +1,18 @@
+log4j.rootLogger=INFO,ConsoleAppender, RollingLogFileAppender
+
+log4j.appender.RollingLogFileAppender=org.apache.log4j.RollingFileAppender
+log4j.appender.RollingLogFileAppender.Threshold=INFO
+log4j.appender.RollingLogFileAppender.ImmediateFlush=true
+log4j.appender.RollingLogFileAppender.File=log.log
+log4j.appender.RollingLogFileAppender.Append=true
+log4j.appender.RollingLogFileAppender.MaxFileSize=128MB
+log4j.appender.RollingLogFileAppender.MaxBackupIndex=16
+log4j.appender.RollingLogFileAppender.layout=org.apache.log4j.PatternLayout
+log4j.appender.RollingLogFileAppender.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %t %m%n
+
+log4j.appender.ConsoleAppender=org.apache.log4j.ConsoleAppender
+log4j.appender.ConsoleAppender.Threshold=INFO
+log4j.appender.ConsoleAppender.ImmediateFlush=true
+log4j.appender.ConsoleAppender.Target=System.out
+log4j.appender.ConsoleAppender.layout=org.apache.log4j.PatternLayout
+log4j.appender.ConsoleAppender.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %t %m%n

BIN
src/main/resources/report.xlsx


BIN
src/main/resources/set.xlsx