北斗定位
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.9KB

  1. package com.telpo.dipperposition.server;
  2. import com.telpo.dipperposition.handler.ServerChannelInitializer;
  3. import io.netty.bootstrap.ServerBootstrap;
  4. import io.netty.channel.ChannelFuture;
  5. import io.netty.channel.ChannelOption;
  6. import io.netty.channel.EventLoopGroup;
  7. import io.netty.channel.nio.NioEventLoopGroup;
  8. import io.netty.channel.socket.nio.NioServerSocketChannel;
  9. import lombok.extern.slf4j.Slf4j;
  10. import org.springframework.core.env.ConfigurableEnvironment;
  11. import org.springframework.stereotype.Component;
  12. import java.net.InetSocketAddress;
  13. /**
  14. * @program: DipperPositionServer
  15. * @description: 北斗定位
  16. * @author: king
  17. * @create: 2021-01-13 14:01
  18. */
  19. @Slf4j
  20. @Component
  21. public class DipperPositionServer {
  22. private String serverAddr;
  23. private Integer starsAsycPort;
  24. public DipperPositionServer(ConfigurableEnvironment environment) {
  25. this.serverAddr = environment.getProperty("position-server.serverAddr");
  26. this.starsAsycPort = Integer.parseInt(environment.getProperty("position-server.starsAsycPort"));
  27. }
  28. /*
  29. * 星历同步进程线程
  30. */
  31. public void start() {
  32. //new 一个主线程组
  33. EventLoopGroup mainThreadGroup = new NioEventLoopGroup(1);
  34. //new 一个工作线程组
  35. EventLoopGroup workThreadGroup = new NioEventLoopGroup(200);
  36. InetSocketAddress socketAddress = new InetSocketAddress(serverAddr,starsAsycPort);
  37. ServerBootstrap bootstrap = new ServerBootstrap()
  38. .group(mainThreadGroup, workThreadGroup)
  39. .channel(NioServerSocketChannel.class)
  40. .childHandler(new ServerChannelInitializer())
  41. .localAddress(socketAddress)
  42. //设置队列大小, 多少合适????
  43. .option(ChannelOption.SO_BACKLOG, 1024)
  44. .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 3000)
  45. // 两小时内没有数据的通信时,TCP会自动发送一个活动探测数据报文
  46. .childOption(ChannelOption.SO_KEEPALIVE, true);
  47. //绑定端口,开始接收进来的连接
  48. try {
  49. ChannelFuture channelFuture = bootstrap.bind(socketAddress).sync();
  50. log.info("星历服务器启动开始监听端口: {}", starsAsycPort);
  51. //log.info("服务器: {}", myServerAddr);
  52. channelFuture.addListener(future -> {
  53. if (future.isSuccess()){
  54. log.info("start success");
  55. }else{
  56. log.info("start failed");
  57. }
  58. });
  59. channelFuture.channel().closeFuture().sync();
  60. } catch (InterruptedException e) {
  61. e.printStackTrace();
  62. } finally {
  63. //关闭主线程组
  64. mainThreadGroup.shutdownGracefully();
  65. //关闭工作线程组
  66. workThreadGroup.shutdownGracefully();
  67. }
  68. }
  69. }