-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTCPNETCommunicator.cs
465 lines (373 loc) · 14.4 KB
/
TCPNETCommunicator.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
using CommsLIB.Base;
using CommsLIB.Communications.FrameWrappers;
using CommsLIB.Helper;
using CommsLIB.SmartPcap;
using Microsoft.Extensions.Logging;
using System;
using System.Net;
using System.Net.Sockets;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
namespace CommsLIB.Communications
{
public class TCPNETCommunicator<T> : CommunicatorBase<T>
{
#region global defines
private int RECEIVE_TIMEOUT = 4000;
private const int CONNECTION_TIMEOUT = 5000;
private const int SEND_TIMEOUT = 100; // Needed on linux as socket will not throw exception when send buffer full, instead blocks "forever"
private int MINIMUM_SEND_GAP = 0;
#endregion
#region fields
private bool disposedValue = false;
private long LastTX = 0;
private ICommsQueue messageQueu;
private bool useCircular;
private Task senderTask;
private Task receiverTask;
private volatile bool exit = false;
private bool tcpClientProvided = false;
private CommEquipmentObject<TcpClient> tcpEq;
private FrameWrapperBase<T> frameWrapper;
private byte[] rxBuffer = new byte[65536];
private byte[] txBuffer = new byte[65536];
private Timer dataRateTimer;
private int bytesAccumulatorRX = 0;
private int bytesAccumulatorTX = 0;
private object lockSerializer = new object();
private ManualResetEventSlim sendAllowEvent;
#endregion
public TCPNETCommunicator(FrameWrapperBase<T> _frameWrapper = null, bool circular = false) : base()
{
frameWrapper = _frameWrapper;
tcpClientProvided = false;
useCircular = circular;
WaitForAnswer = false;
if (frameWrapper is not null)
frameWrapper.FrameAvailableEvent += FrameWrapper_FrameAvailableEvent;
}
public TCPNETCommunicator(TcpClient client, FrameWrapperBase<T> _frameWrapper = null, bool circular = false) : base()
{
frameWrapper = _frameWrapper;
// Do stuff
tcpClientProvided = true;
var IP = (client.Client.RemoteEndPoint as IPEndPoint).Address.ToString();
var Port = (client.Client.RemoteEndPoint as IPEndPoint).Port;
CommsUri = new ConnUri($"tcp://{IP}:{Port}");
tcpEq = new CommEquipmentObject<TcpClient>("", CommsUri, client, false);
useCircular = circular;
WaitForAnswer = false;
if (frameWrapper is not null)
frameWrapper.FrameAvailableEvent += FrameWrapper_FrameAvailableEvent;
}
private void FrameWrapper_FrameAvailableEvent(string ID, T payload)
{
if (WaitForAnswer)
sendAllowEvent?.Set();
}
#region CommunicatorBase
public override void Init(ConnUri uri, bool persistent, string ID, int inactivityMS, int _sendGap = 0)
{
if ((uri == null || !uri.IsValid) && !tcpClientProvided)
return;
this.ID = ID;
messageQueu = useCircular ? (ICommsQueue)new CircularByteBuffer4Comms(65536) : (ICommsQueue)new BlockingByteQueue();
MINIMUM_SEND_GAP = _sendGap;
RECEIVE_TIMEOUT = inactivityMS;
frameWrapper?.SetID(ID);
State = STATE.STOP;
CommsUri = uri ?? CommsUri;
SetIPChunks(CommsUri.IP);
if (!tcpClientProvided)
{
tcpEq = new CommEquipmentObject<TcpClient>(ID, uri, null, persistent);
tcpEq.ID = ID;
}
else
{
tcpEq.ID = ID;
}
}
public override void SendASync(byte[] serializedObject, int length)
{
if (State == STATE.RUNNING)
messageQueu.Put(serializedObject, length);
}
/// <summary>
/// Serialize and Send a message. Use only with CircularBuffer
/// </summary>
/// <param name="protoBufMessage"></param>
public override void SendASync(T protoBufMessage)
{
if (!useCircular)
throw new Exception("Cant use Send2AllAsync in this mode. Please use Circular Buffer");
lock (lockSerializer)
{
byte[] buff = frameWrapper.Data2BytesSync(protoBufMessage, out int count);
SendASync(buff, count);
}
}
public override bool SendSync(byte[] bytes, int offset, int length)
{
if (State != STATE.RUNNING)
return false;
else
return Send2Equipment(bytes, offset, length, tcpEq);
}
public override void SendSync(T Message)
{
if (State != STATE.RUNNING)
return;
lock (lockSerializer)
{
byte[] buff = frameWrapper.Data2BytesSync(Message, out int count);
if (count > 0)
SendSync(buff, 0, count);
}
}
public override void Start()
{
if (State == STATE.RUNNING)
return;
logger?.LogInformation("Start");
exit = false;
receiverTask = tcpClientProvided ? new Task(ReceiveCallback, TaskCreationOptions.LongRunning) : new Task(Connect2EquipmentCallback, TaskCreationOptions.LongRunning);
senderTask = new Task(DoSendStart, TaskCreationOptions.LongRunning);
senderTask.Start();
receiverTask.Start();
dataRateTimer = new Timer(OnDataRate, null, 1000, 1000);
State = STATE.RUNNING;
}
public override async Task Stop()
{
logger?.LogInformation("Stop");
exit = true;
dataRateTimer.Dispose();
if (WaitForAnswer)
sendAllowEvent?.Dispose();
messageQueu.Reset();
tcpEq.ClientImpl?.Close();
await senderTask;
await receiverTask;
State = STATE.STOP;
}
public override FrameWrapperBase<T> FrameWrapper { get => frameWrapper; }
#endregion
private void ClientDown()
{
if (tcpEq == null)
return;
if (WaitForAnswer)
{
sendAllowEvent?.Dispose();
sendAllowEvent = null;
}
logger?.LogInformation("ClientDown - " + tcpEq.ID);
bytesAccumulatorRX = 0;
bytesAccumulatorTX = 0;
try
{
tcpEq.ClientImpl?.Close();
tcpEq.ClientImpl?.Dispose();
}
catch (Exception e)
{
logger?.LogError(e, "ClientDown Exception");
}
finally
{
tcpEq.ClientImpl = null;
}
// Launch Event
FireConnectionEvent(tcpEq.ID, tcpEq.ConnUri, false);
}
private void ClientUp(TcpClient o)
{
tcpEq.ClientImpl = o;
bytesAccumulatorRX = 0;
bytesAccumulatorTX = 0;
if (WaitForAnswer)
{
sendAllowEvent = new ManualResetEventSlim();
sendAllowEvent.Set();
}
// Launch Event
FireConnectionEvent(tcpEq.ID, tcpEq.ConnUri, true);
}
private void DoSendStart()
{
long toWait = 0;
LastTX = TimeTools.GetCoarseMillisNow();
while (!exit)
{
try
{
int read = messageQueu.Take(ref txBuffer, 0);
if (WaitForAnswer)
{
sendAllowEvent?.Wait();
Thread.Sleep(MINIMUM_SEND_GAP);
}
else
{
long now = TimeTools.GetCoarseMillisNow();
if (now - LastTX < MINIMUM_SEND_GAP)
{
toWait = MINIMUM_SEND_GAP - (now - LastTX);
Thread.Sleep((int)toWait);
}
}
var sentOK = Send2Equipment(txBuffer, 0, read, tcpEq);
if (WaitForAnswer && sentOK)
sendAllowEvent?.Reset();
LastTX = TimeTools.GetCoarseMillisNow();
}
catch (Exception e)
{
logger?.LogWarning(e, "Exception in messageQueue");
}
}
}
[MethodImpl(MethodImplOptions.Synchronized)]
private bool Send2Equipment(byte[] data, int offset, int length, CommEquipmentObject<TcpClient> o)
{
if (o == null || o.ClientImpl == null)
return false;
string ID = o.ID;
TcpClient t = o.ClientImpl;
try
{
int nBytes = t.Client.Send(data, offset, length, SocketFlags.None);
bytesAccumulatorTX += nBytes;
LastTX = TimeTools.GetCoarseMillisNow();
}
catch (Exception e)
{
logger?.LogError(e, "Error while sending TCPNet");
// Client Down
ClientDown();
return false;
}
return true;
}
private void Connect2EquipmentCallback()
{
do
{
logger?.LogInformation("Waiting for new connection");
IPEndPoint ipep = new IPEndPoint(IPAddress.Parse(tcpEq.ConnUri.IP), tcpEq.ConnUri.Port);
// Blocks here for timeout
using (TcpClient t = TimeOutSocketFactory.Connect(ipep, CONNECTION_TIMEOUT))
{
if (t != null)
{
t.SendTimeout = SEND_TIMEOUT;
t.ReceiveTimeout = RECEIVE_TIMEOUT;
// Launch event and Add to Dictionary of valid connections
ClientUp(t);
int rx;
try
{
while ((rx = tcpEq.ClientImpl.Client.Receive(rxBuffer)) > 0)
{
// Update Accumulator
bytesAccumulatorRX += rx;
// Update RX Time
tcpEq.timeLastIncoming = TimeTools.GetCoarseMillisNow();
// RAW Data Event
FireDataEvent(CommsUri.IP,
CommsUri.Port,
HelperTools.GetLocalMicrosTime(),
rxBuffer,
0,
rx,
tcpEq.ID,
IpChunks);
// Feed to FrameWrapper
frameWrapper?.AddBytes(rxBuffer, rx);
}
}
catch (Exception e)
{
logger?.LogError(e, "Error while receiving TCPNet");
}
finally
{
ClientDown();
}
}
}
} while (!exit && tcpEq.IsPersistent);
}
private void ReceiveCallback()
{
if (tcpEq.ClientImpl != null)
{
logger?.LogInformation("Receiving");
tcpEq.ClientImpl.SendTimeout = SEND_TIMEOUT;
tcpEq.ClientImpl.ReceiveTimeout = RECEIVE_TIMEOUT;
// Launch event and Add to Dictionary of valid connections
ClientUp(tcpEq.ClientImpl);
int rx;
try
{
while ((rx = tcpEq.ClientImpl.Client.Receive(rxBuffer)) > 0 && !exit)
{
// Update Accumulator
bytesAccumulatorRX += rx;
// Update RX Time
tcpEq.timeLastIncoming = TimeTools.GetCoarseMillisNow();
// RAW Data Event
FireDataEvent(CommsUri.IP,
CommsUri.Port,
HelperTools.GetLocalMicrosTime(),
rxBuffer,
0,
rx,
tcpEq.ID,
IpChunks);
// Feed to FrameWrapper
frameWrapper?.AddBytes(rxBuffer, rx);
}
}
catch (Exception e)
{
logger?.LogError(e, "Error while receiving TCPNet");
}
finally
{
ClientDown();
}
}
}
private void OnDataRate(object state)
{
float dataRateMpbsRX = (bytesAccumulatorRX * 8f) / 1048576; // Mpbs
float dataRateMpbsTX = (bytesAccumulatorTX * 8f) / 1048576; // Mpbs
bytesAccumulatorRX = 0;
bytesAccumulatorTX = 0;
FireDataRateEvent(ID, dataRateMpbsRX, dataRateMpbsTX);
}
protected override async void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
await Stop();
(messageQueu as IDisposable).Dispose();
tcpEq.ClientImpl?.Dispose();
dataRateTimer?.Dispose();
if (frameWrapper is not null)
frameWrapper.FrameAvailableEvent -= FrameWrapper_FrameAvailableEvent;
}
messageQueu = null;
tcpEq.ClientImpl = null;
dataRateTimer = null;
disposedValue = true;
}
base.Dispose(disposing);
}
}
}