1
1
package net .cryptic_game .microservice ;
2
2
3
3
import io .netty .bootstrap .Bootstrap ;
4
- import io .netty .channel .Channel ;
5
- import io .netty .channel .ChannelHandler ;
6
- import io .netty .channel .ChannelHandlerContext ;
7
- import io .netty .channel .EventLoopGroup ;
8
- import io .netty .channel .SimpleChannelInboundHandler ;
4
+ import io .netty .channel .*;
9
5
import io .netty .channel .epoll .Epoll ;
10
6
import io .netty .channel .epoll .EpollEventLoopGroup ;
11
7
import io .netty .channel .epoll .EpollSocketChannel ;
38
34
import javax .persistence .Entity ;
39
35
import java .lang .reflect .InvocationTargetException ;
40
36
import java .lang .reflect .Method ;
41
- import java .util .Arrays ;
42
- import java .util .Date ;
43
- import java .util .HashMap ;
44
- import java .util .List ;
45
- import java .util .Map ;
46
- import java .util .Set ;
47
- import java .util .UUID ;
48
-
49
- import static net .cryptic_game .microservice .error .ServerError .INTERNAL_ERROR ;
50
- import static net .cryptic_game .microservice .error .ServerError .MISSING_PARAMETERS ;
51
- import static net .cryptic_game .microservice .error .ServerError .UNKNOWN_SERVICE ;
52
- import static net .cryptic_game .microservice .error .ServerError .UNSUPPORTED_FORMAT ;
37
+ import java .util .*;
38
+
39
+ import static net .cryptic_game .microservice .error .ServerError .*;
53
40
import static net .cryptic_game .microservice .utils .JSONUtils .checkData ;
54
41
import static net .cryptic_game .microservice .utils .SocketUtils .send ;
55
42
import static net .cryptic_game .microservice .utils .SocketUtils .sendError ;
@@ -59,6 +46,7 @@ public abstract class MicroService extends SimpleChannelInboundHandler<String> {
59
46
60
47
private static final boolean E_POLL = Epoll .isAvailable ();
61
48
private static final Logger LOG = LoggerFactory .getLogger (MicroService .class );
49
+ private static final EventLoopGroup EVENT_LOOP_GROUP = E_POLL ? new EpollEventLoopGroup () : new NioEventLoopGroup ();
62
50
63
51
private static MicroService instance ;
64
52
@@ -126,15 +114,15 @@ private void init() {
126
114
}
127
115
128
116
private void start () {
129
- EventLoopGroup group = E_POLL ? new EpollEventLoopGroup () : new NioEventLoopGroup ();
117
+ final JSONObject registration = JSONBuilder .anJSON ()
118
+ .add ("action" , "register" )
119
+ .add ("name" , name )
120
+ .build ();
121
+ Channel channel = null ;
130
122
131
123
try {
132
- JSONObject registration = JSONBuilder .anJSON ()
133
- .add ("action" , "register" )
134
- .add ("name" , name )
135
- .build ();
136
-
137
- Channel channel = new Bootstrap ().group (group )
124
+ channel = new Bootstrap ()
125
+ .group (EVENT_LOOP_GROUP )
138
126
.channel (E_POLL ? EpollSocketChannel .class : NioSocketChannel .class )
139
127
.handler (new MicroServiceInitializer (this ))
140
128
.connect (Config .get (DefaultConfig .MSSOCKET_HOST ), Config .getInteger (DefaultConfig .MSSOCKET_PORT ))
@@ -143,14 +131,23 @@ private void start() {
143
131
this .channel = channel ;
144
132
145
133
channel .writeAndFlush (registration .toString ());
146
-
147
134
channel .closeFuture ().syncUninterruptibly ();
135
+
148
136
} catch (Exception e ) {
149
137
LOG .warn (e .toString (), e );
138
+ } finally {
139
+ if (channel != null ) {
140
+ try {
141
+ channel .close ().syncUninterruptibly ();
142
+ } catch (Exception e ) {
143
+ LOG .warn ("Unable to close channel: " + e .toString (), e );
144
+ }
145
+ }
146
+
147
+ LOG .info ("Reconnection in 10 seconds..." );
150
148
151
- group .shutdownGracefully ().syncUninterruptibly ();
152
149
try {
153
- Thread .sleep (10000L );
150
+ Thread .sleep (10000L ); // 10 seconds
154
151
} catch (InterruptedException ignored ) {
155
152
}
156
153
0 commit comments