1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.testsuite.autobahn;
17
18 import io.netty.bootstrap.ServerBootstrap;
19 import io.netty.buffer.PooledByteBufAllocator;
20 import io.netty.channel.ChannelFuture;
21 import io.netty.channel.ChannelOption;
22 import io.netty.channel.EventLoopGroup;
23 import io.netty.channel.MultiThreadIoEventLoopGroup;
24 import io.netty.channel.nio.NioIoHandler;
25 import io.netty.channel.socket.nio.NioServerSocketChannel;
26
27
28
29
30
31 public class AutobahnServer {
32
33 private final int port;
34
35 public AutobahnServer(int port) {
36 this.port = port;
37 }
38
39 public void run() throws Exception {
40 EventLoopGroup bossGroup = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
41 EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
42 try {
43 ServerBootstrap b = new ServerBootstrap();
44 b.group(bossGroup, workerGroup)
45 .channel(NioServerSocketChannel.class)
46 .childOption(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT)
47 .childHandler(new AutobahnServerInitializer());
48
49 ChannelFuture f = b.bind(port).sync();
50 System.out.println("Web Socket Server started at port " + port);
51 f.channel().closeFuture().sync();
52 } finally {
53 bossGroup.shutdownGracefully();
54 workerGroup.shutdownGracefully();
55 }
56 }
57
58 public static void main(String[] args) throws Exception {
59 int port;
60 if (args.length > 0) {
61 port = Integer.parseInt(args[0]);
62 } else {
63 port = 9000;
64 }
65 new AutobahnServer(port).run();
66 }
67 }