aboutsummaryrefslogtreecommitdiff
path: root/src/IvyDaemon.java
blob: 6fc884d92acea753f58bd2c6b0f6b3096a21d011 (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
/**
 * IvyDaemon: simple TCP to Ivy relay, can be useful if a shell command wants
 * to send a message on the bus.
 *
 * @author	Yannick Jestin
 * @author	<a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
 *
 * 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.
 *
 * (c) CENA
 *
 * changelog:
 *   1.2.14
 *    - remove the Thread.start() from the constructor, to avoid mulithread issues
 *  	see *  	http://findbugs.sourceforge.net/bugDescriptions.html#SC_START_IN_CTOR
 *  	now ,we have to call IvyClient.start() after it has been created
 *    - gracefully quits when message is received, by quitting the Ivy
 *   1.2.8
 *    - goes into tools subpackage
 *   1.2.3
 *    - adds the traceDebug
 *    - uses the daemonThread paradigm to programm the thread sync
 *    - invalid port number as a command line argument now stops the program
 *    - cleans up the code
 *    - adds a "quiet" option on the command line
 *   1.2.2
 *    - changes the setProperty to a backward compatible construct
 *   1.0.12
 *    - class goes public access !
 */
package fr.dgac.ivy.tools ;
import fr.dgac.ivy.* ;
import java.io.*;
import java.net.*;
import java.util.Properties ;
import gnu.getopt.Getopt;

public class IvyDaemon implements Runnable {


  private ServerSocket serviceSocket;
  private static boolean debug = (System.getProperty("IVY_DEBUG")!=null) ;
  private volatile Thread daemonThread;// volatile to ensure the quick communication
  private Ivy bus;

  public static final int DEFAULT_SERVICE_PORT = 3456 ;
  public static final String DEFAULTNAME = "IvyDaemon";
  public static final String helpmsg = "usage: java fr.dgac.ivy.tools.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";

  private static String name = DEFAULTNAME;
  public static void main(String[] args) throws IvyException, IOException {
    Ivy bus;
    Getopt opt = new Getopt("IvyDaemon",args,"n:b:dqp:h");
    int c;
    int servicePort = DEFAULT_SERVICE_PORT;
    boolean quiet = false;
    String domain=Ivy.getDomain(null);
    while ((c = opt.getopt()) != -1) switch (c) {
    case 'n':
      name=opt.getOptarg();
      break;
    case 'b':
      domain=opt.getOptarg();
      break;
    case 'q':
      quiet=true;
      break;
    case 'd':
      Properties sysProp = System.getProperties();
      sysProp.put("IVY_DEBUG","yes");
      break;
    case 'p':
      String s="";
      try {
        servicePort = Integer.parseInt(s=opt.getOptarg());
      } catch (NumberFormatException nfe) {
        System.out.println("Invalid port number: " + s );
	return;
      }
      break;
    case 'h':
    default:
      System.out.println(helpmsg);
      return;
    }
    bus=new Ivy(name,name+" ready",null);
    if (!quiet) System.out.println("broadcasting on "+bus.domains(domain));
    bus.start(domain);
    if (!quiet) System.out.println("listening on "+servicePort);
    new IvyDaemon(bus,servicePort).doStart();
  }

  public IvyDaemon(Ivy bus,int servicePort) throws IOException {
    this.bus=bus;
    serviceSocket = new ServerSocket(servicePort) ;
    daemonThread=new Thread(this);
    daemonThread.setName("Ivy Daemon tool thread");
  }

  protected void doStart() {
    daemonThread.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 ( daemonThread==thisThread ) {
      try {
        new SubReader(serviceSocket.accept());
      } catch( IOException e ) {
	traceDebug("TCP socket reader caught an exception " + e.getMessage());
      }
    }
    traceDebug("Thread stopped");
  }

  class SubReader extends Thread {
    BufferedReader in;

    SubReader(Socket socket) throws IOException {
      in=new BufferedReader(new InputStreamReader(socket.getInputStream()));
      SubReader.this.start();
    }

    public void run() {
      traceDebug("Subreader Thread started");
      String msg = null;
      try {
	while (true) {
	  msg=in.readLine();
	  if (msg==null) break;
	  try {
	    bus.sendMsg(msg);
	  } catch (IvyException ie) {
	    System.out.println("incorrect characters whithin the message. Not sent");
	  }
	}
      } catch (IOException ioe) {
        traceDebug("Subreader exception ...");
	ioe.printStackTrace();
	throw new RuntimeException();
      }
      traceDebug("Subreader Thread stopped");
    }
  }

  private static void traceDebug(String s){
    if (debug) System.out.println("-->IvyDaemon "+name+"<-- "+s);
  }

}