aboutsummaryrefslogtreecommitdiff
path: root/src/ProxyMaster.java
blob: f8585fd1c2858ba9e8450fb7ebbeff2a43c8acf2 (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
/**
 * ProxyMaster: Ivy relay, first attempt
 *
 * @author	Yannick Jestin
 * @author	<a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
 *
 * (c) ENAC
 *
 * changelog:
 *   1.2.13
 *    - adds support for RESyntaxException
 *   1.2.12
 */
package fr.dgac.ivy.tools ; // TODO go into sub tools, and build a shell/.BAT script
import fr.dgac.ivy.* ;
import java.io.*;
import java.net.*;
import java.util.* ;
import gnu.getopt.Getopt;
import org.apache.regexp.*;

public class ProxyMaster {

  private ServerSocket serviceSocket;
  private boolean isRunning=false;
  private static boolean debug=false;
  private boolean doRun=true; // stops running when set to false
  private Vector proxyClients = new Vector();
  private Hashtable ghostFathers = new Hashtable(); // key: ghostId value: SubReader
  private static int serial=0;

  public static int DEFAULT_SERVICE_PORT = 3456 ;
  public static final String DEFAULTNAME = "ProxyMaster";
  public static final String helpmsg = "usage: java fr.dgac.ivy.ProxyMaster [options]\n\t-p\tport number, default "+DEFAULT_SERVICE_PORT+"\n\t-q\tquiet, no tty output\n\t-d\tdebug\n\t-h\thelp\nListens on the TCP port for ProxyClients to join.\n";

  private static String name = DEFAULTNAME;
  public static void main(String[] args) {
    Ivy bus;
    Getopt opt = new Getopt("ProxyMaster",args,"dqp:h");
    int c;
    int servicePort = DEFAULT_SERVICE_PORT;
    boolean quiet = false;
    while ((c = opt.getopt()) != -1) switch (c) {
    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 );
	System.exit(0);
      }
      break;
    case 'h':
    default:
      System.out.println(helpmsg);
      System.exit(0);
    }
    try {
      if (!quiet) System.out.println("listening on "+servicePort);
      ProxyMaster pm = new ProxyMaster(servicePort);
    } catch (IOException ioe) {
      System.out.println("error, can't set up the proxy master");
      ioe.printStackTrace();
      System.exit(-1);
    }
  }

  public ProxyMaster(int servicePort) throws IOException {
    serviceSocket = new ServerSocket(servicePort) ;
    while ( true ) {
      try {
        new SubReader(serviceSocket.accept());
      } catch( IOException e ) {
	traceDebug("TCP socket reader caught an exception " + e.getMessage());
      }
    }
  }

  class SubReader extends Thread {
    BufferedReader in;
    PrintWriter out;
    String hostname=null;	// I will know from the socket
    String busDomain=null;	// I will know it from the Hello message
    RE helloRE, getId,fwdPuppet,fwdGhost;

    SubReader(Socket socket) throws IOException {
      try {
	helloRE=new RE("^Hello bus=(.*)");
	getId=new RE("^GetID id=(.*)");
	fwdPuppet=new RE("^ForwardPuppet id=(.*) buffer=(.*)");
	fwdGhost=new RE("^ForwardGhost id=(.*) buffer=(.*)");
      } catch ( RESyntaxException res ) {
	res.printStackTrace();
	System.out.println("Regular Expression bug in Ivy source code ... bailing out");
	System.exit(0);
      }
      proxyClients.addElement(this);
      hostname = socket.getInetAddress().getHostName();
      in=new BufferedReader(new InputStreamReader(socket.getInputStream()));
      out=new PrintWriter(new OutputStreamWriter(socket.getOutputStream()));
      start();
    }

    public void send(String s) { // sends a message to the SubReader peer ( a ProxyClient )
      out.println(s);
      out.flush();
    }

    public void run() {
      traceDebug("Subreader Thread started");
      String msg = null;
      try {
	while (doRun) {
	  msg=in.readLine();
	  if (msg==null) break;
	  parseMsg(msg);
	}
      } catch (IOException ioe) {
	traceDebug("Subreader exception ...");
	ioe.printStackTrace();
	System.exit(0);
      }
      traceDebug("Subreader Thread stopped");
      System.out.println("ProxyClient on "+hostname+", bus "+busDomain+" disconnected");
      proxyClients.removeElement(this);
    }



    void parseMsg(String msg) {
      // System.out.println("PM parsing "+msg);
      if (helloRE.match(msg)) {
	busDomain = helloRE.getParen(1);
	System.out.println("PC connected from "+hostname+", on the bus "+busDomain);
      } else if (getId.match(msg)) {
	// a new Ghost has appeared and requests an Id
	System.out.println("PM registering a new Ghost");
	String newGhostId = new Integer(serial++).toString();
	// I give it its ID
	send("ID id="+getId.getParen(1)+" value="+newGhostId);
	ghostFathers.put(newGhostId,this); // remember the SubReader holding this Ghost
	// I ask all other Clients to prepare a puppet
	for (Enumeration e=proxyClients.elements();e.hasMoreElements();) {
	  SubReader sr = (SubReader)e.nextElement();
	  if (sr!=SubReader.this) {
	    // System.out.println("propagate CreatePuppet to "+sr.busDomain);
	    sr.send("CreatePuppet id="+newGhostId);
	  } else {
	    // System.out.println("won't propagate CreatePuppet to "+sr.busDomain);
	  }
	}
      } else if (fwdGhost.match(msg)) {
	System.out.println("PM forwarding ["+msg+"] to its Ghost");
	SubReader sr = (SubReader) ghostFathers.get(fwdGhost.getParen(1));
	sr.send(msg);
      } else if (fwdPuppet.match(msg)) {
	System.out.println("PM forwarding ["+msg+"] to all other PCs");
	for (Enumeration e=proxyClients.elements();e.hasMoreElements();) {
	  SubReader sr = (SubReader)e.nextElement();
	  if (sr!=SubReader.this) sr.send(msg);
	}
      } else {
	System.out.println("error unknown message "+msg);
      }
    }
  } // class SubReader

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

}