aboutsummaryrefslogtreecommitdiff
path: root/src/Probe.java
blob: 0b8a73e62570a96f7aa497f65dcd1a2f842db908 (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
package fr.dgac.ivy ;
import java.io.*;
import java.util.*;
import gnu.getopt.Getopt;

/**
 * terminal implementation in java of the ivyprobe.
 * @author	Yannick Jestin
 * @author	<a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
 * 
 *
 * Changelog:
 * 1.2.1
 *   - new -t switch to print the date for each ivy message
 *   - now displays the correct domain list
 *   - now has .bind and .unbind commands
 * 1.2.0
 *   - Probe can now send empty strings on keyboard input
 *   - rewritten with a looping thread on stdin to allow a cleaner exit on die
 *     message : not very good
 *   - processes .help, .die , .quit and .bye commands
 *   - it is possible to rename the JPROBE on the bus with the -n switch, it can
 *     circumvent name collisions during tests
 *     e.g: java fr.dgac.ivy.Probe -n JPROBE2
 * 1.0.10
 * 	exits on end of user input
 *	handles multiple domains - it was a IvyWatcher problem -
 */
class Probe implements IvyApplicationListener, IvyMessageListener, Runnable {

  /**
   *  help message for the standalone program
   */
  public static final String helpCommands = "Available commands:\n.die CLIENTNAME sends a die message\n.bye quits the application\n.quit idem\n.list lists the available clients\n.ping sends a ping request if IVY_PING is enabled\n.bind REGEXP binds to a regexp at runtime\n.unbind REGEXP unbinds to a regexp at runtime";
  public static final String helpmsg = "usage: java fr.dgac.ivy.Probe [options] [regexp]\n\t-b BUS\tspecifies the Ivy bus domain\n\t-n ivyname (default JPROBE)\n\t-q\tquiet, no tty output\n\t-d\tdebug\n\t-t\ttime stamp each message\n\t-h\thelp\n\n\t regexp is a Perl5 compatible regular expression";

  public static void main(String[] args) throws IvyException {
    Getopt opt = new Getopt("Probe",args,"n:b:dht");
    int c;
    boolean timestamp=false;
    String domain=Ivy.getDomain(null);
    String name="JPROBE";
    while ((c = opt.getopt()) != -1) switch (c) {
    case 'b':
      domain=opt.getOptarg();
      break;
    case 'n':
      name=opt.getOptarg();
      break;
    case 't':
      timestamp=true;
      break;
    case 'd':
      System.setProperty("IVY_DEBUG","yes");
      break;
    case 'h':
    default:
	System.out.println(helpmsg);
	System.exit(0);
    } // getopt
    Probe p = new Probe(timestamp);
    Ivy bus=new Ivy(name,name+" ready",p);
    for (int i=opt.getOptind();i<args.length;i++) {
      System.out.println("you want to subscribe to " + args[i]);
      bus.bindMsg(args[i],p);
    }
    String s = "broadcasting on ";
    Ivy.Domain[] d = bus.parseDomains(domain);
    for (int index=0;index<d.length;index++) {
      s+=d[index].getDomainaddr()+":"+d[index].getPort()+" ";
    }
    System.out.println(s);
    bus.start(domain);
    p.start(bus);
  }

  private BufferedReader in;
  private volatile Thread looperThread;
  private Ivy bus;
  private boolean timestamp;

  Probe(boolean timestamp) {
    in = new BufferedReader(new InputStreamReader(System.in));
    looperThread=new Thread(this);
    this.timestamp=timestamp;
  }

  public void start(Ivy bus) {
    this.bus=bus;
    looperThread.start();
  }

  public void run() {
    // System.out.println("Probe Thread started"); // THREADDEBUG
    Thread thisThread=Thread.currentThread();
    String s;
    while (looperThread==thisThread) {
      // infinite loop on keyboard input
      try {
	s=in.readLine();
	parseCommand(s);
      } catch (NullPointerException e) {
	// EOF triggered by a ^D, for instance
	bus.stop();
      } catch (IOException e) {
	System.out.println("ioe ?");
	e.printStackTrace();
	bus.stop();
      } catch (InterruptedException ie) {
	System.out.println("allo ?");
      }
    } //while
    System.out.println("End of looping");
    // System.out.println("Probe Thread stopped"); // THREADDEBUG
    System.exit(0);
  }

  void parseCommand(String s) throws IOException, InterruptedException {
    // System.out.println("parsing the ["+s+"] (length "+s.length()+") string");
    // crude parsing of the ".xyz" commands
    // TODO use regexps instends of String.lastIndexOf(String)
    if (s.length()==0) {
      System.out.println(date()+"-> Sent to " +bus.sendMsg(s)+" peers");
    } else if (s.lastIndexOf(".die ")>=0){
      String target=s.substring(5);
      Vector v=bus.getIvyClientsByName(target);
      if (v.size()==0) {
	System.out.println("no Ivy client with  the name \""+target+"\"");
      }
      for (int i=0;i<v.size();i++) {
	((IvyClient)v.elementAt(i)).sendDie();
      }
    } else if (s.lastIndexOf(".unbind ")>=0){
      String regexp=s.substring(8);
      if (bus.unBindMsg(regexp)) {
        System.out.println("you want to unsubscribe to " + regexp);
      } else {
        System.out.println("you can't unsubscribe to " + regexp + ", your're not subscribed to it");
      }
    } else if (s.lastIndexOf(".bind ")>=0){
      String regexp=s.substring(6);
      System.out.println("you want to subscribe to " + regexp);
      bus.bindMsg(regexp,this);
    } else if (s.lastIndexOf(".ping ")>=0){
      String target=s.substring(6);
      Vector v=bus.getIvyClientsByName(target);
      if (v.size()==0) {
	System.out.println("no Ivy client with  the name \""+target+"\"");
      }
      for (int i=0;i<v.size();i++) {
	((IvyClient)v.elementAt(i)).sendPing("test");
      }
    } else if ( (s.lastIndexOf(".quit")>=0)||(s.lastIndexOf(".bye")>=0)){
      bus.stop();
      System.exit(0);
    } else if (s.lastIndexOf(".list")>=0) {
      Vector v = bus.getIvyClients();
      System.out.println(v.size()+" clients on the bus");
      for (int i=0;i<v.size();i++) {
	System.out.println("-> "+((IvyClient)v.elementAt(i)).getApplicationName());
      }
    } else if ( s.lastIndexOf(".help")>=0) {
      System.out.println(helpCommands);
    } else if ( s.charAt(0)=='.') {
      System.out.println("this command is not recognized");
      System.out.println(helpCommands);
    } else {
      System.out.println(date()+"-> Sent to " +bus.sendMsg(s)+" peers");
    }
  } // parseCommand

  public void connect(IvyClient client) {
    System.out.println(client.getApplicationName() + " connected " );
    for (java.util.Enumeration e=client.getRegexps();e.hasMoreElements();)
      System.out.println(client.getApplicationName() + " subscribes to "
        +e.nextElement() );
  }

  public void disconnect(IvyClient client) {
    System.out.println(client.getApplicationName() + " disconnected " );
  }

  public void die(IvyClient client, int id) {
    System.out.println("received die msg from " + client.getApplicationName() );
    Thread t = looperThread;
    looperThread = null;
    t.interrupt(); // TODO does'nt work
    System.exit(0);
  }

  public void directMessage(IvyClient client, int id, String arg) {
   System.out.println(client.getApplicationName() + " direct Message "+ id + arg );
  }

  public void receive(IvyClient client, String[] args) {
    String s=date()+client.getApplicationName() + " sent";
    for (int i=0;i<args.length;i++) s+=" '"+args[i]+"'";
    System.out.println(s);
  }

  private String date() {
    if (!timestamp) return "";
    Date d = new Date();
    java.text.DateFormat df = java.text.DateFormat.getTimeInstance();
    return "["+df.format(d)+"] ";
  }

}