summaryrefslogtreecommitdiff
path: root/Ivy/IvyClient.cs
blob: 7a3407027b80f50948f0f1f08853f06aac8330b0 (plain)
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
/// François-Régis Colin
/// http://www.tls.cena.fr/products/ivy/
/// *
/// (C) CENA
/// *
namespace IvyBus
{
	using System;
	using System.Collections;
	using System.Collections.Specialized;
	using System.Collections.Generic;
	using System.Threading;
	using System.Text;
	using System.IO;
	using System.Net;
	using System.Net.Sockets;
	using System.Configuration;
	using System.Diagnostics;
	using System.Collections.ObjectModel;
	using IvyBus.Properties;

	/// <summary> A Class for the the peers on the bus.
	/// </summary>
	/// <remarks>
	/// each time a connexion is made with a remote peer, the regexp are exchanged
	/// once ready, a ready message is sent, and then we can send messages, 
	/// die messages, direct messages, add or remove regexps, or quit. A thread is
	/// created for each remote client.
	/// </remarks>
	public class IvyClient : IvyProtocol, IComparable<IvyClient>, IDisposable  
	{
		public int CompareTo(IvyClient other)
		{
			if (other == null)
				return clientPriority;
			else
				return (other.clientPriority - clientPriority);
		}

		/// <summary>
		/// the client application Name
		/// </summary>
		public String ApplicationName
		{
			get
			{
				return appName;
			}
			
		}

		//public ReadOnlyCollection<string> Regexps
		//{
		//    get
		//    {
		//        List<string> tab = new List<string>();
		//        lock (bindings)
		//        {
		//            foreach (IvyBindingBase bind in bindings.Values)
		//                tab.Add(bind.Expression);
		//        }
		//        return new ReadOnlyCollection<string>(tab);
		//    }
			
		//}
		internal int AppPort
		{
			get
			{
				return appPort;
			}
			
		}
		/// <summary>
		/// adress of the client
		/// </summary>
		public IPAddress RemoteAddress
		{
			get
			{
				return remoteHost;
			}
			
		}
		/// <summary>
		/// port of the client
		/// </summary>
		public int RemotePort
		{
			get
			{
				return remotePort;
			}
			
		}
		
		private Ivy bus;
		//private Dictionary<ushort,IvyBindingBase> bindings;
		private int appPort;
		private string clientId;	/* an unique ID for each IvyClient */
		private int clientPriority;	/* client priority */
		
		private volatile Thread clientThread; // volatile to ensure the quick communication
		private bool doping; // false by runtime default
		private const int PINGTIMEOUT = 5000;
		private volatile Thread pingerThread;

		private int localPort;

		private int remotePort;
		private IPAddress remoteHost;
		private int readyToSend;
		private Object readyToSendLock;
		// protected variables
		internal String appName;
		internal IvyProtocol stream;

		internal IvyClient(Ivy bus, Socket socket, string appname, int appPort)
		{
			//bindings = new Dictionary<ushort,IvyBindingBase>();
			this.appName = appname;
			this.appPort = appPort;
			this.bus = bus;
			readyToSendLock = new Object();
			this.readyToSend = 0;

			// set TCP_NODELAY to lower latency
			//socket.SetSocketOption( SocketOptionLevel.IP, SocketOptionName.NoDelay, true);
			socket.NoDelay = true;
			localPort = ((IPEndPoint)socket.LocalEndPoint).Port;
			
			IPEndPoint endpoint = (IPEndPoint)socket.RemoteEndPoint;
			remoteHost = endpoint.Address;
			remotePort = endpoint.Port;
				
			if ( bus.ProtocolVersion == 4 )
				stream = new IvyTCPStreamV4( socket, this );
				else
				stream = new IvyTCPStreamV3(socket, this);

			// spawns a thread to manage the incoming traffic on this
			// socket. We should be ready to receive messages now.
			clientThread = new Thread(new ThreadStart(this.Run));
			clientThread.Name = "Ivy Tcp Client Reader Thread ("+appname+")";

			bus.addClient(this);
					
			clientThread.Start();

		}

		internal void SendBindings()
		{
			try
				{
					
					// sends our ID, whether we initiated the connexion or not
					// the ID is the couple "host name,application Port", the host name
					// information is in the socket itself, the port is not known if we
					// initiate the connexion
					stream.TokenStartRegexp(bus.applicationPort, bus.appName);
					// sends our regexps to the peer
					lock (bus.bindings)
					{
						foreach (IvyApplicationBinding bind in bus.bindings.Values)
						{
							stream.TokenAddBinding(bind.Binding, bind.Key, bind.FormattedExpression);
						}
					}
					// send end of bindings peers can now send ReadyMessage
					stream.TokenEndRegexp();
					// try to send Ready Msg
					SendReadyToPeer();

#if (!PocketPC)
					doping = Properties.Settings.Default.IvyPing;
#endif
					if (doping)
					{
						pingerThread = new Thread(new ThreadStart(PingerRun));
						pingerThread.Name = "Ivy Pinger Thread";
						pingerThread.Start();
					}


				}
				catch (NullReferenceException ex)
				{
					// the client nous a coupé l'herbe sous le pied 
					Ivy.traceError(Resources.IvyClient, Resources.IvyClientLeft + " " + appName + " " + ex.Message);
					// connexion  close in rare concurrent connexion 
					close(false);
				}
				catch (ObjectDisposedException ex)
				{
					// the client nous a coupé l'herbe sous le pied 
					Ivy.traceError(Resources.IvyClient, Resources.IvyClientLeft + " " + appName + " " + ex.Message);
					// invokes the Disconnected applicationListeners
					//bus.OnClientDisconnected(new IvyEventArgs(this,id, message ));
					// called by the receiver Thread
					close(false);
				}
				catch (IOException ex)
				{
					// the client nous a coupé l'herbe sous le pied 
					Ivy.traceError(Resources.IvyClient, Resources.IvyClientLeft + " " + appName + " " + ex.Message);
					// invokes the Disconnected applicationListeners
					//bus.OnClientDisconnected(new IvyEventArgs(this,id, message ));
					// called by the receiver Thread
					close(false);
				}
			
		}
		
		/// <summary>  returns the name of the remote agent.
		/// allow an Ivy package class to access the list of regexps at a
		/// given time.
		/// perhaps we should implement a new IvyApplicationListener method to
		/// allow the notification of regexp addition and deletion
		/// </summary>
		
		/// <summary> sends a direct message to the peer
		/// </summary>
		/// <param name='id'>the numeric value provided to the remote client
		/// </param>
		/// <param name='message'>the string that will be match-tested
		/// 
		/// </param>
		public void SendDirectMsg(int id, string message)
		{
			try 
			{
				stream.TokenDirectMsg( id, message);
			}
			catch (IOException ex)
			{
				Ivy.traceError(Resources.IvyClient,Resources.IvyClientLeft+ex.Message);
				// first, I'm not a first class IvyClient any more
				bus.removeClient(this);
				// invokes the Disconnected applicationListeners
				//bus.OnClientDisconnected(new IvyEventArgs(this,id, message ));
				// should be called by receiver thread
				close(false);
			}
		}
		
		/// <summary> closes the connexion to the peer.
		/// </summary>
		/// <param name='notify'>should I send Bye message ?
		/// the thread managing the socket is stopped
		/// 
		/// </param>
		internal void  close(bool notify)
		{
			Ivy.traceProtocol(Resources.IvyClient,Resources.Closing + appName);
			if (doping )
			{
				StopPinging();
			}
			if (notify)
				try
				{
					if (stream != null)
						stream.TokenBye(0, Resources.ByeMessage);
				}
				catch (ObjectDisposedException)
				{
				}
				catch (IOException ioe)
				{    
					SocketException se = ioe.InnerException as SocketException;
					if (se != null)
					{
						if (!(se.SocketErrorCode == SocketError.ConnectionReset || 
							 se.SocketErrorCode == SocketError.ConnectionAborted))
						  
							throw new IvyException(ioe.Message);
					}
					else
					{
						throw new IvyException(ioe.Message);
					}

				}
			// stop the thread and close the stream
			if (clientThread == null)
				return;
			// Tell Thread to stop.
			if (stream != null)
			{
				try
				{
					stream.Close();    // should stop the Reading Client Thread 
				}
				catch (EndOfStreamException ioe)
				{
					throw new IvyException(ioe.Message);
				}
				catch (IOException ioe)
				{
					throw new IvyException(ioe.Message);
				}
				//socket.Close(); // pris en charge par stream ( NetWorkStream )
				stream = null;
			}
			// Potential dead lok when thread issue ClientDisconnected event
			//if (Thread.CurrentThread != clientThread && (clientThread != null))
			//{
			//    // Wait for Thread to end.
			//    bool term = clientThread.Join(10000);
			//    if (!term && (clientThread != null)) clientThread.Abort();
			//}

			clientThread = null;
			
		
		}
		
		/// <summary> sends the substrings of a message to the peer for each matching regexp.
		/// </summary>
		/// <param name='message'>the string that will be match-tested
		/// </param>
		/// <returns>the number of messages sent to the peer
		/// 
		/// </returns>
		internal int sendMsg(ushort id, string[] args)
		{
			int count = 0;


			try
			{
				if (stream != null)
				{
					stream.TokenMsg(id, args);
					count++;
				}
			}
			catch (ObjectDisposedException ex)
			{
				Ivy.traceError(Resources.IvyClient, Resources.IvyClientLeft + ex.Message);
				// first, I'm not a first class IvyClient any more
				bus.removeClient(this); //TODO trouble in upper loop iter 
				// invokes the Disconnected applicationListeners
				// in the receiver thread
				close(false);
			}
			catch (IOException ex)
			{
				Ivy.traceError(Resources.IvyClient, Resources.IvyClientLeft + ex.Message);
				// first, I'm not a first class IvyClient any more
				bus.removeClient(this); //TODO trouble in upper loop iter 
				// invokes the Disconnected applicationListeners
				// in the receiver thread
				close(false);
			}
			
			   
			
			return count;
		}
		
		/// <summary> compares two peers the id is the couple (host,service port).
		/// </summary>
		/// <param name='clnt'>the other peer
		/// </param>
		/// <returns>true if the peers are similir. This should not happen, it is bad
		/// © ® (tm)
		/// 
		/// </returns>
		internal bool sameIvyClient(IvyClient clnt)
		{
			// clientId est null si le protocol n'envoie pas le client ID        
			if (clnt.clientId != null && this.clientId != null && clnt.clientId == this.clientId)
				return true;
			return (this.appPort != 0) && (this.appPort == clnt.appPort) && (this.RemoteAddress.Equals(clnt.RemoteAddress));
		}
		
		/// <summary> the code of the thread handling the incoming messages.
		/// </summary>
		private void  Run()
		{
			Ivy.traceProtocol(Resources.IvyClient, Resources.Connected + RemoteAddress + ":" + RemotePort);
			
			Ivy.traceProtocol(Resources.IvyClient,Resources.ThreadStart);

			bool running = true;
			while ( running && (stream != null) )
			{
				try
				{
					if ( stream.ReceiveMsg() )
					{
						// early stop during readLine()
						if (doping && (pingerThread != null))
							pingerThread.Abort();
					}
					else
					{
						Ivy.traceProtocol(Resources.IvyClient, Resources.BadReceive);
						running = false;
						break;
					}
				}
				catch ( ObjectDisposedException ex )
				{
					Ivy.traceError(Resources.IvyClient, Resources.SocketClosed + ex.Message);
					running = false;
					break;
				}
				catch (IvyException ie)
				{
					Ivy.traceError(Resources.IvyClient, Resources.SocketClosed + ie.Message);
					running = false;
					break;
				}
				catch (SocketException se)
				{
					Ivy.traceError(Resources.IvyClient, Resources.SocketClosed + se.Message );
					running = false;
					break;
				}
				catch (IOException ex)
				{
					if ( ex.InnerException is SocketException )
					{
						Ivy.traceProtocol(Resources.IvyClient, Resources.SocketClosed );
					
					}
					else 
					{
						Ivy.traceError(Resources.IvyClient, Resources.AbDisconnect + RemoteAddress + ":" + RemotePort);
					}
					running = false;
					break;
				}
			}
			Ivy.traceProtocol(Resources.IvyClient,Resources.Disconnected + appName);
			Ivy.traceProtocol(Resources.IvyClient,Resources.ThreadStop);
			// invokes the Disconnected applicationListeners
			bus.OnClientDisconnected(new IvyEventArgs(this,0, string.Empty ));
			// first, I'm not a first class IvyClient any more
			if (stream != null)
			{
				stream.Close();
				stream = null;
			}
			bus.removeClient(this);
			
		}
		void IvyProtocol.Close()
		{
			// never call in this side
		}
		bool IvyProtocol.ReceiveMsg()
		{
			// nerver call in this side
			return false;
		}
		void IvyProtocol.TokenDie(int id, string arg)
		{
			Ivy.traceProtocol(Resources.IvyClient, Resources.DieReceive + appName + Resources.Reason + arg);
			// invokes the die applicationListeners
			IvyDieEventArgs ev = new IvyDieEventArgs(this, id, arg);
			bus.OnDie(ev);
			// first, I'm not a first class IvyClient any more
			bus.removeClient(this);
			// makes the bus die
			bus.Stop();
			close(false);
			if (ev.ForceExit)
#if (PocketPC)
				System.Windows.Forms.Application.Exit();
#else
				System.Environment.Exit(0);
#endif
		}
		void IvyProtocol.TokenBye(int err, string arg)
		{
			// the peer quits
			Ivy.traceProtocol(Resources.IvyClient, Resources.ByeReceive + appName + Resources.Reason + arg);
			// first, I'm not a first class IvyClient any more
			//bus.removeClient(this); // this is done in the receive thread terminaison!!
			// invokes the disconnect applicationListeners
			//bus.FireClientDisconnected(this); done in Running Thread
			close(false);  // will fire disconnected
		}

		void IvyProtocol.TokenAddBinding(BindingType type, int id, string expression)
		{
			
			if (type == BindingType.RegularExpression && !bus.CheckRegexp(expression))
			{
			bus.OnClientFilterBinding(new IvyEventArgs(this, id, expression ));
			return;
			}
			IvyBindingBase bind = null;
			try
			{
				switch (type)
				{
					case BindingType.RegularExpression:
						bind = new IvyBindingRegexp(expression);
						break;
					case BindingType.Simple:
						bind = new IvyBindingSimple(expression);
						break;
				}
				bus.AddBinding(id, this, bind);
			}
			catch (ArgumentException ex)
			{
				//throw new IvyException("binding expression error " + ex.Message);
				stream.TokenError(7, Resources.BadExpression + " "+ ex.Message);
			}
					
		}


		void IvyProtocol.TokenDelBinding(int id)
		{
			bus.DelBinding(id, this);
		}
		void IvyProtocol.TokenMsg(int id, string[] args)
		{
			bus.OnMessage(new IvyMessageEventArgs(this, id, args));		
		}
		void IvyProtocol.TokenError(int id, string arg)
		{
			bus.OnError(new IvyEventArgs(this, id, arg));
			Ivy.traceError(Resources.IvyClient,Resources.ErrorReceive + id + " " + arg);
		}
		
		void IvyProtocol.TokenEndRegexp()
		{
			bus.OnClientConnected(new IvyEventArgs(this, 0, string.Empty));
			/* 
			* the peer is perhaps not ready to handle this message
			* an assymetric processing should be written
			*/
			SendReadyToPeer();
		}

		private void SendReadyToPeer()
		{
			lock (readyToSendLock)
			{
				readyToSend++;
				if (bus.ReadyMessage != null && readyToSend == 2)
				{
					bus.SendMsgToClient(this, bus.ReadyMessage);
				}
			}
		}
		void IvyProtocol.TokenStartRegexp(int id, string arg)
		{
			//bool bindingToSend = appPort == 0;
			appName = arg;
			appPort = id;
			IvyClient target = this;
			IvyClient client = bus.checkConnected(this);
			if (client != null)
			{
				// Dilemma choose the rigth client to close
				// the symetric processing will try to close each other 
				// only one side may be closed 
				//Console.WriteLine(" should close {0} this local {1} rem {2} other local {3} rem {4}", this.appName, this.localPort, this.remotePort, client.localPort, client.remotePort);
				if (Math.Max(client.localPort, client.remotePort) > Math.Max( this.localPort, this.remotePort ))
				{
					target = client;
					//Console.WriteLine("choose {0} other ports {1},{2}", target.appName, target.localPort, target.remotePort);
				}
				else
				{
					target = this;
					//Console.WriteLine("choose {0} this ports {1},{2}", target.appName, target.remotePort, target.localPort);
				}
				bus.removeClient(target);
				target.close(false);
				//throw new IvyException(Resources.ConcurrentConnect + " " + appName + " " + clientId);
				
			}
			//if ( bindingToSend && target != this)
			//        SendBindings();
			
					
		}
		void IvyProtocol.TokenDirectMsg(int id, string arg)
		{
			bus.OnDirectMessage(new IvyEventArgs(this,id,arg));
		}
		void IvyProtocol.TokenPing(int id, string arg)
		{
			// I receive a ping. I can answer a pong.
			Ivy.traceProtocol(Resources.IvyClient, Resources.PingReceive + appName + " : " +  arg );
			stream.TokenPong(id,arg);
		}
		void IvyProtocol.TokenPong(int id, string arg)
		{
			Ivy.traceProtocol(Resources.IvyClient, Resources.PingReceive + appName + " : " + arg);
		}



		/// <summary>
		/// return full Application name pair
		/// </summary>
		public override String ToString()
		{
			return Resources.IvyClient+ " " + bus.appName + ":" + appName;
		}

		/* is the Pinging Thread Runninng */
		internal bool isPinging;

		private void  PingerRun()
		{
			isPinging = true;
			Ivy.traceProtocol(Resources.IvyClient,Resources.PingerThreadStarted);
			while (isPinging)
			{
				try
				{
					Thread.Sleep(PINGTIMEOUT);
					int id = (int)DateTime.Now.Ticks;
					stream.TokenPing( id, Resources.PingerThreadMessage);
				}
				catch (ThreadAbortException ie)
				{
					Ivy.traceError(Resources.IvyClient,Resources.PingerThreadKilled + ie.Message);
				}
			}
			Ivy.traceProtocol(Resources.IvyClient,Resources.PingerThreadStopped);
		}
		/// <summary>
		/// stop the pinger Thread
		/// </summary>
		public virtual void  StopPinging()
		{
			isPinging = false; 
			//pingerThread.Interrupt();
			pingerThread.Abort();
		}

		#region IDisposable Members

		 //Implement IDisposable.
		public void Dispose()
		{
			Dispose(true);
			GC.SuppressFinalize(this);
		}

		protected virtual void Dispose(bool disposing)
		{
			if (disposing)
			{
				// Free other state (managed objects).
				if (stream != null)
				{
					stream.Close();
					stream = null;
				}
			}
			// Free your own state (unmanaged objects).
			// Set large fields to null.
			
		}

		// Use C# destructor syntax for finalization code.
		~IvyClient()
		{
			// Simply call Dispose(false).
			Dispose(false);
		}

		#endregion
	}
}