summaryrefslogtreecommitdiff
path: root/IvyDaemon/IvyDaemon.cs
blob: 9ec2ceab5e7eeba734c4a6cc34f60306a4aa0d7c (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
/// François-Régis Colin
/// http://www.tls.cena.fr/products/ivy/
/// *
/// (C) CENA
/// *
namespace IvyDaemon
{
	using System;
	using System.IO;
	using System.Threading;
	using System.Net;
	using System.Net.Sockets;
	using System.Configuration;
	using System.Diagnostics;
	using IvyBus;
	/// <summary> IvyDaemon: simple TCP to Ivy relay.
	/// </summary>
	/// <remarks>
	/// This is a sample implementation of an Ivy Daemon, like ivyd
	/// sends anonymous messages to an Ivy bus through a simple tcp socket,
	/// line by line. The default port is 3456.
	/// </remarks>
	public class IvyDaemon 
	{
		
		
		private TcpListener serviceSocket;
		private static bool debug = Properties.Settings.Default.IvyDebug;
		private volatile Thread clientThread; // volatile to ensure the quick communication
		private Ivy bus;
		
		public static int DEFAULT_SERVICE_PORT = 3456;
		public const System.String DEFAULTNAME = "IvyDaemon";
		public static System.String helpmsg = "usage: IvyDaemon [options]\n\t-b BUS\tspecifies the Ivy bus domain\n\t-p\tport number, default " + DEFAULT_SERVICE_PORT + "\n\t-n ivyname (default " + DEFAULTNAME + ")\n\t-q\tquiet, no tty output\n\t-d\tdebug\n\t-h\thelp\nListens on the TCP port, and sends each line read on the Ivy bus. It is useful to launch one Ivy Daemon and let scripts send their message on the bus.\n";
		[STAThread]
		public static void  Main(System.String[] args)
		{
			Ivy bus;
			int servicePort = DEFAULT_SERVICE_PORT;
			System.String name = DEFAULTNAME;
			bool quiet = false;
			System.String domain = Ivy.GetDomain(null);
/*			Getopt opt = new Getopt("IvyDaemon", args, "n:b:dqp:h");
			int c;
			while ((c = opt.getopt()) != - 1)
			{
				switch (c)
				{
					case 'n': 
						name = opt.Optarg;
						break;
					
					case 'b': 
						domain = opt.Optarg;
						break;
					
					case 'q': 
						quiet = true;
						break;
					
					case 'd': 
						//UPGRADE_ISSUE: Method 'java.lang.System.getProperties' was not converted. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1000_javalangSystemgetProperties"'
						//System.Configuration.AppSettingsReader sysProp = System.getProperties();
						//SupportClass.PutElement(sysProp, "IVY_DEBUG", "yes");
						break;
					
					case 'p': 
						System.String s = "";
						try
						{
							servicePort = System.Int32.Parse(s = opt.Optarg);
						}
						catch (System.FormatException nfe)
						{
							System.Console.Out.WriteLine("Invalid port number: " + s);
							System.Environment.Exit(0);
						}
						break;
					
					case 'h': default: 
						System.Console.Out.WriteLine(helpmsg);
						System.Environment.Exit(0);
						break;
					
				}
			}
*/
			bus = new Ivy(name, name + " ready");
			if (!quiet)
				System.Console.Out.WriteLine("broadcasting on " + Ivy.GetDomain(domain));
			bus.Start(domain);
			if (!quiet)
				System.Console.Out.WriteLine("listening on " + servicePort);
			IvyDaemon d = new IvyDaemon(bus, servicePort);
		}
		
		public IvyDaemon(Ivy bus, int servicePort)
		{
			this.bus = bus;
			IPAddress localAddr = IPAddress.Any;
			serviceSocket = new TcpListener(localAddr, servicePort);
			clientThread = new Thread(new ThreadStart(this.Run));
			clientThread.Start();
		}
		
		/*
		* the service socket reader. 
		* it could be a thread, but as long as we've got one ....
		*/
		public void  Run()
		{
			Thread thisThread = Thread.CurrentThread;
			traceDebug("Thread started");
			while (clientThread == thisThread)
			{
				try
				{
					SubReader generatedAux2 = new SubReader(serviceSocket.AcceptTcpClient(),bus);
				}
				catch (IOException e)
				{
					traceDebug("TCP socket reader caught an exception " + e.Message);
				}
			}
			traceDebug("Thread stopped");
		}
		
		internal class SubReader
		{
			internal StreamReader in_Renamed;
			internal Thread looperThread;
			internal Ivy bus;
			internal SubReader(TcpClient socket, Ivy bus)
			{
				this.bus = bus;
				in_Renamed =  new StreamReader(socket.GetStream());
				looperThread = new Thread(new ThreadStart(this.Run));
				looperThread.Start();
			}
			public void  Run()
			{
				traceDebug("Subreader Thread started");
				String msg = null;
				try
				{
					while (true)
					{
						msg = in_Renamed.ReadLine();
						if (msg == null)
							break;
						bus.SendMsg(msg);
					}
				}
				catch (IOException ioe)
				{
					traceDebug("Subreader exception:" + ioe.Message);
					System.Environment.Exit(0);
				}
				traceDebug("Subreader Thread stopped");
			}

		}
		[Conditional("DEBUG")]
		private static void traceDebug(string s)
		{
			Trace.WriteLineIf(debug, "-->IvyDaemon<-- " + s);
		}
	}
}