-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeepAliveSample.cs
More file actions
504 lines (446 loc) · 17 KB
/
KeepAliveSample.cs
File metadata and controls
504 lines (446 loc) · 17 KB
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
using System;
using System.Collections.Generic;
using System.Threading;
using OMRON.Compolet.CIP;
namespace ReadVariableSample
{
/// <summary>
/// Samples for maintaining connection survival.
/// </summary>
/// <remarks>
/// This program is an implementation example to prevent Class 3 from being disconnected after a certain time.
/// </remarks>
public class KeepAliveSample : IDisposable
{
/// <summary>
/// The Information of used by DoWork method .
/// </summary>
public class DeviceInfo
{
public DeviceInfo(string ipAddress, IEnumerable<string> variableNames, int intervalMilliseconds, int receiveTimeoutMilliseconds)
{
IpAddress = ipAddress;
VariableNames = variableNames;
IntervalMilliseconds = intervalMilliseconds;
ReceiveTimeoutMilliseconds = receiveTimeoutMilliseconds;
}
public readonly string IpAddress;
public readonly IEnumerable<string> VariableNames;
public readonly int IntervalMilliseconds;
public readonly int ReceiveTimeoutMilliseconds;
}
/// <summary>
/// Asynchronous processing status type.
/// </summary>
public enum MonitoringStatusType
{
/// <summary>
/// Stopped state.
/// </summary>
Stop = 0,
/// <summary>
/// Running state.
/// </summary>
Run = 1,
/// <summary>
/// State to stop from running.
/// </summary>
Stopping = 2,
}
/// <summary>
/// Current asynchronous processing status.
/// </summary>
public MonitoringStatusType MonitorStatus { get { return monitorStatus; } }
/// <summary>
/// Start asynchronous processing.
/// </summary>
/// <param name="deviceInfos"></param>
public void RunWorkerAsync(List<DeviceInfo> deviceInfos)
{
lock (syncMonitorStatus)
{
switch (monitorStatus)
{
case MonitoringStatusType.Run:
return;
case MonitoringStatusType.Stopping:
throw new InvalidOperationException();
}
monitorStatus = MonitoringStatusType.Run;
foreach (DeviceInfo deviceInfo in deviceInfos)
{
Thread th = new Thread(new ParameterizedThreadStart(StartWork));
th.IsBackground = true;
th.Start(deviceInfo);
}
}
}
/// <summary>
/// Stop asynchronous processing.
/// </summary>
public void CancelAsync()
{
lock (syncMonitorStatus)
{
if (monitorStatus == MonitoringStatusType.Run)
{
monitorStatus = MonitoringStatusType.Stopping;
}
}
}
/// <summary>
/// Asynchronous thread function.
/// </summary>
/// <param name="args"></param>
private void StartWork(object args)
{
Interlocked.Increment(ref countOfWorker);
try
{
DoWork(args as DeviceInfo);
}
finally
{
Interlocked.Decrement(ref countOfWorker);
lock (syncMonitorStatus)
{
if (Interlocked.Read(ref countOfWorker) < 1)
{
monitorStatus = MonitoringStatusType.Stop;
}
}
}
}
/// <summary>
/// Create and initialize compolet.
/// </summary>
/// <param name="deviceInfo"></param>
/// <returns></returns>
private static CommonCompolet CreateCompolet(DeviceInfo deviceInfo)
{
CommonCompolet compolet = new CommonCompolet();
compolet.PeerAddress = deviceInfo.IpAddress;
compolet.LocalPort = 2;
compolet.ConnectionType = ConnectionType.Class3;
compolet.ReceiveTimeLimit = deviceInfo.ReceiveTimeoutMilliseconds;
return compolet;
}
private MonitoringStatusType monitorStatus = MonitoringStatusType.Stop;
private readonly object syncMonitorStatus = new object();
private long countOfWorker = 0;
#region Dispose pattern
~KeepAliveSample()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private void Dispose(bool disposing)
{
if (this.monitorStatus == MonitoringStatusType.Run)
CancelAsync();
while (this.monitorStatus != MonitoringStatusType.Stop)
Thread.Sleep(10);
}
#endregion //Dispose pattern
#region Event of ReadVariable result.
/// <summary>
/// The information of success result.
/// </summary>
public class NotifyReadVariableSuccessArgs : EventArgs
{
public NotifyReadVariableSuccessArgs(string ipAddress, string variableName, string value)
{
this.IpAddress = ipAddress;
this.VariableName = variableName;
this.Value = value;
}
public readonly string IpAddress;
public readonly string VariableName;
public readonly string Value;
}
/// <summary>
/// Event of success.
/// </summary>
public event EventHandler<NotifyReadVariableSuccessArgs> NotifyReadVariableSuccess;
/// <summary>
/// OnNotifyReadVariableSuccess
/// </summary>
/// <param name="ipAddress"></param>
/// <param name="variableName"></param>
/// <param name="value"></param>
private void OnNotifyReadVariableSuccess(string ipAddress, string variableName, string value)
{
if (NotifyReadVariableSuccess != null)
{
NotifyReadVariableSuccess(ipAddress, new NotifyReadVariableSuccessArgs(ipAddress, variableName, value));
}
}
/// <summary>
/// The information of error result.
/// </summary>
public class NotifyReadVariableErrorArgs : System.EventArgs
{
public NotifyReadVariableErrorArgs(string ipAddress, string variableName, Exception e, DateTime startTime, DateTime errorOccuredTime)
{
this.IpAddress = ipAddress;
this.VariableName = variableName;
this.OccuredException = e;
this.StartTime = startTime;
this.ErrorOccuredTime = errorOccuredTime;
}
public readonly string IpAddress;
public readonly string VariableName;
public readonly Exception OccuredException;
public readonly DateTime StartTime;
public readonly DateTime ErrorOccuredTime;
}
/// <summary>
/// Event of error.
/// </summary>
public event EventHandler<NotifyReadVariableErrorArgs> NotifyReadVariableError;
/// <summary>
/// OnNotifyReadVariableError
/// </summary>
/// <param name="ipAddress"></param>
/// <param name="variableName"></param>
/// <param name="e"></param>
/// <param name="startTime"></param>
/// <param name="errorOccuredTime"></param>
private void OnNotifyReadVariableError(string ipAddress, string variableName, Exception e, DateTime startTime, DateTime errorOccuredTime)
{
if (NotifyReadVariableError != null)
{
NotifyReadVariableError(ipAddress, new NotifyReadVariableErrorArgs(ipAddress, variableName, e, startTime, errorOccuredTime));
}
}
#endregion //Event of ReadVariable error.
#region KeepAlive
public event EventHandler NotifyKeepAlive;
private KeepAliveWorker currentKeepAlive;
private readonly object syncKeepAliveObject = new object();
private readonly Dictionary<CommonCompolet, object> keepAliveTargets = new Dictionary<CommonCompolet, object>(); // It is better to use HashSet if it is more than .NET Framework 4.0
private class KeepAliveWorker
{
public KeepAliveWorker(KeepAliveSample sender)
{
caller = sender;
}
public void Execute()
{
if (status == StatusType.Init)
{
Thread th = new Thread(new ThreadStart(this.KeepAliveProc));
th.IsBackground = true;
th.Start();
status = StatusType.Execute;
}
}
public void RequestCancel()
{
if (status == StatusType.Execute)
{
status = StatusType.Cancelling;
}
}
private enum StatusType
{
Init,
Execute,
Cancelling,
}
private KeepAliveSample caller;
private StatusType status = StatusType.Init;
/// <summary>
/// KeepAlive thread processing.
/// </summary>
private void KeepAliveProc()
{
while (status == StatusType.Execute)
{
CommonCompolet[] compolets;
lock (caller.syncKeepAliveObject)
{
compolets = new CommonCompolet[caller.keepAliveTargets.Keys.Count];
caller.keepAliveTargets.Keys.CopyTo(compolets, 0);
}
Thread.Sleep(10);
foreach (CommonCompolet compolet in compolets)
{
if (status != StatusType.Execute) break;
bool needUpdate = false;
DateTime latestExecuteTime;
lock (caller.syncKeepAliveObject)
{
latestExecuteTime = compolet.LatestExecuteTime;
if ((latestExecuteTime != DateTime.MinValue)
&& (5000 < (DateTime.Now - latestExecuteTime).TotalMilliseconds))
{
needUpdate = true;
}
}
if (!needUpdate) continue;
try
{
lock (compolet)
{
compolet.ExecuteCommunication();
}
if (caller.NotifyKeepAlive != null && latestExecuteTime < compolet.LatestExecuteTime)
{
caller.NotifyKeepAlive(compolet, EventArgs.Empty);
}
}
catch
{
// do nothing.
}
}
}
}
}
/// <summary>
/// Start keep alive for compolet.
/// </summary>
/// <param name="compolet"></param>
private void StartKeepAlive(CommonCompolet compolet)
{
lock (syncKeepAliveObject)
{
keepAliveTargets.Add(compolet, null);
if (currentKeepAlive == null)
{
currentKeepAlive = new KeepAliveWorker(this);
currentKeepAlive.Execute();
}
}
}
/// <summary>
/// Stop keep alive for compolet.
/// </summary>
/// <param name="compolet"></param>
private void StopKeepAlive(CommonCompolet compolet)
{
lock (syncKeepAliveObject)
{
keepAliveTargets.Remove(compolet);
if (keepAliveTargets.Count < 1 && currentKeepAlive != null)
{
currentKeepAlive.RequestCancel();
currentKeepAlive = null;
}
}
}
#endregion //KeepAlive
private readonly object syncOpenObject = new object();
/// <summary>
/// Asynchronous processing.
/// </summary>
/// <param name="deviceInfo"></param>
private void DoWork(DeviceInfo deviceInfo)
{
while (monitorStatus == MonitoringStatusType.Run)
{
using (CommonCompolet compolet = CreateCompolet(deviceInfo))
{
lock (syncOpenObject)
{
compolet.Active = true;
}
if (10000 <= deviceInfo.IntervalMilliseconds)
{
StartKeepAlive(compolet);
}
try
{
while (monitorStatus == MonitoringStatusType.Run)
{
bool isLoop = true;
foreach (string varName in deviceInfo.VariableNames)
{
bool canRetry = true;
RETRY:
DateTime startTime = DateTime.Now;
try
{
object value;
lock (compolet)
{
value = compolet.ReadVariable(varName);
}
OnNotifyReadVariableSuccess(deviceInfo.IpAddress, varName, value != null? value.ToString(): string.Empty);
}
catch (OMRON.CIP.Messaging.CIPMessageTimeOutException e)
{
OnNotifyReadVariableError(deviceInfo.IpAddress, varName, e, startTime, DateTime.Now);
if (!Ping.Test(deviceInfo.IpAddress, 1000))
{
isLoop = false;
break;
}
if (canRetry)
{
canRetry = false;
goto RETRY;
}
}
catch (Exception e)
{
OnNotifyReadVariableError(deviceInfo.IpAddress, varName, e, startTime, DateTime.Now);
}
}
if (!isLoop)
break;
if (0 < deviceInfo.IntervalMilliseconds)
{
System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();
int elapsed = 0;
watch.Start();
while ((MonitorStatus == MonitoringStatusType.Run) && (elapsed < deviceInfo.IntervalMilliseconds))
{
Thread.Sleep(Math.Min(20, deviceInfo.IntervalMilliseconds - elapsed));
elapsed = (int)watch.ElapsedMilliseconds;
}
}
}
}
finally
{
StopKeepAlive(compolet);
}
lock (compolet)
{
compolet.Active = false;
}
while (monitorStatus == MonitoringStatusType.Run && !Ping.Test(deviceInfo.IpAddress, 1000))
{
Thread.Sleep(1000);
}
}
}
}
}
/// <summary>
/// Test with PING command
/// </summary>
public static class Ping
{
public static bool Test(string ipAddress, int timeout)
{
using (System.Net.NetworkInformation.Ping ping = new System.Net.NetworkInformation.Ping())
{
try
{
return ping.Send(ipAddress, timeout).Status == System.Net.NetworkInformation.IPStatus.Success;
}
catch
{
return false;
}
}
}
}
}