-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathEzyTcpClient.cs
422 lines (363 loc) · 11.3 KB
/
EzyTcpClient.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
using System;
using System.Collections.Generic;
using com.tvd12.ezyfoxserver.client.setup;
using com.tvd12.ezyfoxserver.client.config;
using com.tvd12.ezyfoxserver.client.constant;
using com.tvd12.ezyfoxserver.client.entity;
using com.tvd12.ezyfoxserver.client.logger;
using com.tvd12.ezyfoxserver.client.manager;
using com.tvd12.ezyfoxserver.client.request;
using com.tvd12.ezyfoxserver.client.socket;
using static com.tvd12.ezyfoxserver.client.constant.EzyConnectionStatuses;
using com.tvd12.ezyfoxserver.client.statistics;
using com.tvd12.ezyfoxserver.client.concurrent;
namespace com.tvd12.ezyfoxserver.client
{
public class EzyTcpClient :
EzyEntity,
EzyClient, EzyMeAware, EzyZoneAware
{
protected EzyUser me;
protected EzyZone zone;
protected long sessionId;
protected byte[] publicKey;
protected byte[] privateKey;
protected byte[] sessionKey;
protected String sessionToken;
protected readonly String name;
protected readonly EzySetup settingUp;
protected readonly EzyClientConfig config;
protected readonly EzyPingManager pingManager;
protected readonly EzyHandlerManager handlerManager;
protected readonly EzyStatistics networkStatistics;
protected readonly EzyRequestSerializer requestSerializer;
protected EzyConnectionStatus status;
protected EzyConnectionStatus udpStatus;
protected readonly ISet<Object> unloggableCommands;
protected readonly EzySocketClient socketClient;
protected readonly EzyPingSchedule pingSchedule;
protected readonly EzyLogger logger;
protected readonly EzyEventLoopGroup eventLoopGroup;
public EzyTcpClient(EzyClientConfig config) : this(config, null)
{
}
public EzyTcpClient(
EzyClientConfig config,
EzyEventLoopGroup eventLoopGroup
)
{
this.config = config;
this.name = config.getClientName();
this.status = EzyConnectionStatus.NULL;
this.status = EzyConnectionStatus.NULL;
this.eventLoopGroup = eventLoopGroup;
this.pingManager = new EzySimplePingManager(config.getPing());
this.pingSchedule = new EzyPingSchedule(this, eventLoopGroup);
this.handlerManager = new EzySimpleHandlerManager(this);
this.networkStatistics = new EzySimpleStatistics();
this.requestSerializer = new EzySimpleRequestSerializer();
this.settingUp = new EzySimpleSetup(handlerManager);
this.unloggableCommands = newUnloggableCommands();
this.socketClient = newSocketClient();
this.logger = EzyLoggerFactory.getLogger(GetType());
}
protected ISet<Object> newUnloggableCommands()
{
ISet<Object> set = new HashSet<Object>();
set.Add(EzyCommand.PING);
set.Add(EzyCommand.PONG);
return set;
}
protected EzySocketClient newSocketClient()
{
EzyTcpSocketClient client = newTcpSocketClient();
client.setPingSchedule(pingSchedule);
client.setPingManager(pingManager);
client.setNetworkStatistics(networkStatistics);
client.setHandlerManager(handlerManager);
client.setEventLoopGroup(eventLoopGroup);
client.setReconnectConfig(config.getReconnect());
client.setUnloggableCommands(unloggableCommands);
return client;
}
protected virtual EzyTcpSocketClient newTcpSocketClient()
{
return new EzyTcpSocketClient();
}
public EzySetup setup() {
return settingUp;
}
public void connect(String url)
{
String host = url;
int port = 3005;
int lastIndex = url.IndexOf(":");
if (lastIndex > 0)
{
host = url.Substring(0, lastIndex);
port = Int32.Parse(url.Substring(lastIndex + 1));
}
connect(host, port);
}
public void connect(String host, int port)
{
try
{
if (!isClientConnectable(status))
{
logger.warn("client has already connected to: " + host + ":" + port);
return;
}
preconnect();
socketClient.connectTo(host, port);
setStatus(EzyConnectionStatus.CONNECTING);
}
catch (Exception e)
{
logger.error("connect to server error", e);
}
}
public bool reconnect()
{
if (!isClientReconnectable(status))
{
String host = socketClient.getHost();
int port = socketClient.getPort();
logger.warn("client has already connected to: " + host + ":" + port);
return false;
}
preconnect();
bool success = socketClient.reconnect();
if (success)
{
setStatus(EzyConnectionStatus.RECONNECTING);
}
return success;
}
protected void preconnect()
{
this.me = null;
this.zone = null;
}
public void disconnect(int reason)
{
socketClient.disconnect(reason);
}
public void close()
{
disconnect((int) EzyDisconnectReason.CLOSE);
}
public void send(EzyRequest request, bool encrypted)
{
Object cmd = request.getCommand();
EzyData data = request.serialize();
send((EzyCommand)cmd, (EzyArray)data, encrypted);
}
public void send(EzyCommand cmd, EzyArray data, bool encrypted)
{
bool shouldEncrypted = encrypted;
if (encrypted && sessionKey == null)
{
if (config.isEnableDebug())
{
shouldEncrypted = false;
}
else
{
throw new ArgumentException(
"can not send command: " + cmd + " " +
"you must enable SSL or enable debug mode by configuration " +
"when you create the client"
);
}
}
EzyArray array = requestSerializer.serialize(cmd, data);
if (socketClient != null)
{
socketClient.sendMessage(array, shouldEncrypted);
printSentData(cmd, data);
}
}
public void processEvents()
{
socketClient.processEventMessages();
}
public String getName()
{
return name;
}
public EzyClientConfig getConfig()
{
return config;
}
public bool isEnableSSL()
{
return config.isEnableSSL();
}
public bool isEnableDebug()
{
return config.isEnableDebug();
}
public EzyZone getZone()
{
return zone;
}
public void setZone(EzyZone zone)
{
this.zone = zone;
}
public EzyUser getMe()
{
return me;
}
public void setMe(EzyUser me)
{
this.me = me;
}
public EzyConnectionStatus getStatus()
{
return status;
}
public void setStatus(EzyConnectionStatus status)
{
this.status = status;
}
public bool isConnected()
{
return this.status == EzyConnectionStatus.CONNECTED;
}
public void setUdpStatus(EzyConnectionStatus status)
{
this.udpStatus = status;
}
public EzyConnectionStatus getUdpStatus()
{
return this.udpStatus;
}
public virtual bool isUdpConnected()
{
return udpStatus == EzyConnectionStatus.CONNECTED;
}
public void setSessionId(long sessionId)
{
this.sessionId = sessionId;
this.socketClient.setSessionId(sessionId);
}
public void setSessionToken(String token)
{
this.sessionToken = token;
this.socketClient.setSessionToken(sessionToken);
}
public void setSessionKey(byte[] sessionKey)
{
this.sessionKey = sessionKey;
this.socketClient.setSessionKey(sessionKey);
}
public byte[] getSessionKey()
{
return sessionKey;
}
public void setPublicKey(byte[] publicKey)
{
this.publicKey = publicKey;
}
public byte[] getPublicKey()
{
return publicKey;
}
public void setPrivateKey(byte[] privateKey)
{
this.privateKey = privateKey;
}
public byte[] getPrivateKey()
{
return privateKey;
}
public EzyISocketClient getSocket()
{
return socketClient;
}
public EzyApp getApp()
{
if (zone != null)
{
EzyAppManager appManager = zone.getAppManager();
EzyApp app = appManager.getApp();
return app;
}
return null;
}
public EzyApp getAppById(int appId)
{
if(zone != null) {
EzyAppManager appManager = zone.getAppManager();
EzyApp app = appManager.getAppById(appId);
return app;
}
return null;
}
public EzyPlugin getPlugin()
{
if (zone != null)
{
EzyPluginManager pluginManager = zone.getPluginManager();
EzyPlugin plugin = pluginManager.getPlugin();
return plugin;
}
return null;
}
public EzyPlugin getPluginById(int pluginId)
{
if (zone != null)
{
EzyPluginManager pluginManager = zone.getPluginManager();
EzyPlugin plugin = pluginManager.getPluginById(pluginId);
return plugin;
}
return null;
}
public EzyPingManager getPingManager()
{
return pingManager;
}
public EzyPingSchedule getPingSchedule()
{
return pingSchedule;
}
public EzyHandlerManager getHandlerManager()
{
return handlerManager;
}
protected void printSentData(EzyCommand cmd, EzyArray data)
{
if (!unloggableCommands.Contains(cmd))
{
logger.debug("send command: " + cmd + " and data: " + data);
}
}
public virtual void udpConnect(int port)
{
throw new InvalidOperationException("only support TCP, use EzyUTClient instead");
}
public virtual void udpConnect(String host, int port)
{
throw new InvalidOperationException("only support TCP, use EzyUTClient instead");
}
public virtual void udpSend(EzyRequest request, bool encrypted)
{
throw new InvalidOperationException("only support TCP, use EzyUTClient instead");
}
public virtual void udpSend(EzyCommand cmd, EzyArray data, bool encrypted)
{
throw new InvalidOperationException("only support TCP, use EzyUTClient instead");
}
public EzyStatistics getNetworkStatistics()
{
return networkStatistics;
}
public virtual EzyTransportType getTransportType()
{
return EzyTransportType.TCP;
}
}
}