-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalaamBrowser.cs
606 lines (490 loc) · 18.6 KB
/
SalaamBrowser.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
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;
using System.Timers;
namespace Dolphins.Salaam
{
/// <summary>
/// This class is used to find the SalaamService servers.
/// </summary>
public class SalaamBrowser:IDisposable
{
private List<SalaamClientDateTime> salaamClientDateTimes;
private const int port = 54183;
private const int disappearanceDelaySeconds = 4;
private UdpClient udpClient;
private int delay;
private TimeSpan disappearanceDelay;
private Timer timer;
private readonly IPEndPoint ipEndPoint;
private string currentHostName;
private readonly List<IPAddress> currentIPAddresses;
private bool isBrowserRunning;
/// <summary>
/// Gets the salaam clients.
/// </summary>
public SalaamClient[] SalaamClients
{
get
{
SalaamClient[] salaamClients = new SalaamClient[salaamClientDateTimes.Count];
for (int i = 0; i < salaamClients.Length; i++)
{
salaamClients[i] = salaamClientDateTimes[i].Client;
}
return salaamClients;
}
}
/// <summary>
/// Gets or sets a value indicating whether browser should receive clients from local machine.
/// </summary>
/// <value><c>true</c> if should receive from local machine otherwise, <c>false</c>.</value>
public bool ReceiveFromLocalMachine { get; set; }
///<summary>
/// Represents the method that will handle an event that contains the SalaamClient object.
///</summary>
///<param name="sender">The source of the event.</param>
///<param name="e">A <c>SalaamClientEventArgs</c> that contains SalaamClient object.</param>
public delegate void SalaamClientEventHandler(object sender, SalaamClientEventArgs e);
/// <summary>
/// Occurs when a new client appears.
/// </summary>
public event SalaamClientEventHandler ClientAppeared;
/// <summary>
/// Occurs when a found client disappears.
/// </summary>
public event SalaamClientEventHandler ClientDisappeared;
/// <summary>
/// Occurs when the client message changes.
/// </summary>
public event SalaamClientEventHandler ClientMessageChanged;
/// <summary>
/// Occurs when the browser starts listening for incoming connections.
/// </summary>
public event EventHandler Started;
/// <summary>
/// Occurs when browsers stops listening for incoming connections.
/// </summary>
public event EventHandler Stopped;
/// <summary>
/// Occurs when the browser fails to start.
/// </summary>
public event EventHandler StartFailed;
/// <summary>
/// Occurs when something happens and the browser cannot continue listening for incoming connections anymore.
/// </summary>
public event EventHandler BrowserFailed;
/// <summary>
/// Initializes a new instance of the <see cref="SalaamBrowser"/> class.
/// </summary>
public SalaamBrowser()
{
timer = new Timer();
DisappearanceDelay = disappearanceDelaySeconds;
timer.Elapsed += new ElapsedEventHandler(OnTimerElapsed);
timer.Start();
timer.Enabled = false;
ipEndPoint = new IPEndPoint(IPAddress.Any, port);
currentIPAddresses = new List<IPAddress>();
salaamClientDateTimes = new List<SalaamClientDateTime>();
}
private void OnTimerElapsed(object sender, ElapsedEventArgs e)
{
List<SalaamClientDateTime> tempClientDateTimes = new List<SalaamClientDateTime>();
for (int i = 0; i < salaamClientDateTimes.Count; i++)
{
DateTime dateTime = salaamClientDateTimes[i].Time;
if (DateTime.Now.Subtract(dateTime) > disappearanceDelay)
{
if (ClientDisappeared != null)
{
IPAddress ipAddress = salaamClientDateTimes[i].Client.Address;
bool isFromLocal;
if (currentIPAddresses.Contains(ipAddress) || IPAddress.IsLoopback(ipAddress))
{
isFromLocal = true;
}
else
{
isFromLocal = false;
}
ClientDisappeared(this, new SalaamClientEventArgs(salaamClientDateTimes[i].Client, isFromLocal));
}
}
else
{
tempClientDateTimes.Add(salaamClientDateTimes[i]);
}
}
salaamClientDateTimes = tempClientDateTimes;
}
~SalaamBrowser()
{
Dispose();
}
/// <summary>
/// Gets or sets a value indicating whether this <see cref="SalaamBrowser"/> is enabled.
/// </summary>
/// <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
public bool Enabled
{
get { return timer.Enabled; }
set
{
timer.Enabled = value;
if (value == true)
{
Start(ServiceType);
}
else
{
Stop();
}
}
}
/// <summary>
/// Gets or sets the disappearance delay in seconds.
/// </summary>
/// <value>The disappearance delay.</value>
public int DisappearanceDelay
{
get
{
return delay;
}
set
{
delay = value;
timer.Interval = 1000 * ((double)delay/5);
disappearanceDelay = new TimeSpan(0, 0, DisappearanceDelay);
}
}
/// <summary>
/// Gets the type of the service.
/// </summary>
public string ServiceType { get; private set; }
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
try
{
timer.Stop();
}
catch
{
}
try
{
timer.Dispose();
}
catch
{
}
try
{
timer = null;
}
catch
{
}
try
{
udpClient.Client.Shutdown(SocketShutdown.Both);
}
catch
{
}
try
{
udpClient.Close();
}
catch
{
}
try
{
udpClient = null;
}
catch
{
}
}
/// <summary>
/// Starts the specified service type.
/// </summary>
/// <param name="serviceType">Type of the service.</param>
public void Start(string serviceType)
{
if (serviceType.Contains(";"))
{
throw new ArgumentException("Semicolon character is not allowed in ServiceType argument.");
}
try
{
salaamClientDateTimes.Clear();
currentHostName = Dns.GetHostName();
currentIPAddresses.Clear();
currentIPAddresses.AddRange(Dns.GetHostAddresses(currentHostName));
ServiceType = serviceType;
timer.Enabled = true;
udpClient = new UdpClient { EnableBroadcast = true, ExclusiveAddressUse = true };
udpClient.Client.Bind(ipEndPoint);
udpClient.BeginReceive(OnUdpDataReceived, udpClient);
if (Started != null)
{
Started(this, new EventArgs());
}
isBrowserRunning = true;
}
catch
{
if (StartFailed != null)
{
StartFailed(this, new EventArgs());
}
try
{
timer.Enabled = false;
}
catch
{
}
}
}
private void OnUdpDataReceived(IAsyncResult asyncResult)
{
IPEndPoint tempIPEndPoint = new IPEndPoint(ipEndPoint.Address, ipEndPoint.Port);
try
{
UdpClient tempUdpClient = (UdpClient) asyncResult.AsyncState;
byte[] bytes = tempUdpClient.EndReceive(asyncResult, ref tempIPEndPoint);
ProcessClientData(bytes, tempIPEndPoint);
}
catch(ObjectDisposedException)
{
}
try
{
udpClient.BeginReceive(OnUdpDataReceived, udpClient);
}
catch
{
if (BrowserFailed != null && isBrowserRunning)
{
BrowserFailed(this, new EventArgs());
}
}
}
private void ProcessClientData(byte[] dataBytes, IPEndPoint clientIPEndPoint)
{
const string messageRegex = "^Salaam:(?<Base64>(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?)$";
const string messageDataRegex =
@"^(?<Length>\d+);(?<HostName>.*?);(?<ServiceType>.*?);(?<Name>.*?);(?<Port>\d+);(?<Message>.*);(<(?<ProtocolMessage>[A-Z][A-Z0-9]{2,3})>)?$";
string dataString = Encoding.UTF8.GetString(dataBytes);
if (Regex.IsMatch(dataString, messageRegex))
{
try
{
string messageData =
Encoding.UTF8.GetString(
Convert.FromBase64String(Regex.Match(dataString, messageRegex).Groups["Base64"].Value));
if (Regex.IsMatch(messageData, messageDataRegex))
{
try
{
Match dataMatch = Regex.Match(messageData,messageDataRegex);
int length = int.Parse(dataMatch.Groups["Length"].Value);
length += length.ToString().Length + 1;
if (messageData.Length == length)
{
string hostName = dataMatch.Groups["HostName"].Value;
string serviceType = dataMatch.Groups["ServiceType"].Value;
string name = dataMatch.Groups["Name"].Value;
int port = int.Parse(dataMatch.Groups["Port"].Value);
string message = dataMatch.Groups["Message"].Value;
IPAddress ipAddress = clientIPEndPoint.Address;
string protocolMessage = "";
if (dataMatch.Groups["ProtocolMessage"].Success)
{
protocolMessage = dataMatch.Groups["ProtocolMessage"].Value;
}
bool isFromLocal = false;
if (hostName.ToLower() == currentHostName.ToLower() && (currentIPAddresses.Contains(ipAddress) || IPAddress.IsLoopback(ipAddress)))
{
isFromLocal = true;
if (!ReceiveFromLocalMachine)
{
return;
}
}
if (ServiceType == "*" || serviceType.ToLower() == ServiceType.ToLower())
{
SalaamClient salaamClient = new SalaamClient(ipAddress, hostName, serviceType, name,
port, message);
processSalaamClient(salaamClient, protocolMessage, isFromLocal);
}
else
{
return;
}
}
else
{
return;
}
}
catch
{
}
}
}
catch
{
}
}
}
private void processSalaamClient(SalaamClient salaamClient, string protocolMessage, bool isFromLocal)
{
bool contains = salaamClientDateTimes.Contains(new SalaamClientDateTime(salaamClient));
if (contains)
{
int index = salaamClientDateTimes.IndexOf(new SalaamClientDateTime(salaamClient));
salaamClientDateTimes[index].Time = DateTime.Now;
if (string.IsNullOrEmpty(protocolMessage))
{
if (salaamClient.Message != salaamClientDateTimes[index].Client.Message)
{
salaamClientDateTimes[index].Client.SetMessage(salaamClient.Message);
if (ClientMessageChanged != null)
{
ClientMessageChanged(this, new SalaamClientEventArgs(salaamClientDateTimes[index].Client, isFromLocal));
}
}
}
else
{
if (protocolMessage.ToUpper() == "EOS")
{
if (ClientDisappeared != null)
{
ClientDisappeared(this, new SalaamClientEventArgs(salaamClientDateTimes[index].Client, isFromLocal));
salaamClientDateTimes.Remove(salaamClientDateTimes[index]);
}
}
}
}
else
{
if (string.IsNullOrEmpty(protocolMessage))
{
salaamClientDateTimes.Add(new SalaamClientDateTime(salaamClient, DateTime.Now));
int index = salaamClientDateTimes.Count - 1;
if (ClientAppeared != null)
{
ClientAppeared(this, new SalaamClientEventArgs(salaamClientDateTimes[index].Client, isFromLocal));
}
}
else
{
if (protocolMessage.ToUpper() == "EOS")
{
return;
}
}
}
}
/// <summary>
/// Stops the service.
/// </summary>
public void Stop()
{
isBrowserRunning = false;
try
{
timer.Enabled = false;
}
catch
{
}
try
{
udpClient.Client.Shutdown(SocketShutdown.Both);
}
catch
{
}
try
{
udpClient.Close();
}
catch
{
}
if (Stopped != null)
{
Stopped(this, new EventArgs());
}
}
/// <summary>
/// A private class used to hold the DateTime objects for the Individual SalaamClients
/// </summary>
private class SalaamClientDateTime:IEquatable<SalaamClientDateTime>
{
public SalaamClient Client { get; private set; }
public DateTime Time { get; set; }
public SalaamClientDateTime(SalaamClient client, DateTime time = new DateTime())
{
Client = client;
Time = time;
}
public static bool operator ==(SalaamClientDateTime salaamClientDateTime1, SalaamClientDateTime salaamClientDateTime2)
{
return salaamClientDateTime1.Client == salaamClientDateTime2.Client;
}
public static bool operator !=(SalaamClientDateTime salaamClientDateTime1, SalaamClientDateTime salaamClientDateTime2)
{
return !(salaamClientDateTime1 == salaamClientDateTime2);
}
public bool Equals(SalaamClientDateTime other)
{
if (ReferenceEquals(null, other))
{
return false;
}
if (ReferenceEquals(this, other))
{
return true;
}
return Equals(other.Client, Client);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj))
{
return false;
}
if (ReferenceEquals(this, obj))
{
return true;
}
if (obj.GetType() != typeof (SalaamClientDateTime))
{
return false;
}
return Equals((SalaamClientDateTime) obj);
}
public override int GetHashCode()
{
unchecked
{
return Client.GetHashCode();
}
}
}
}
}