NetLogServerpublic class NetLogServer extends Object Threaded NetLog Server, pre-allocation schema. |
Fields Summary |
---|
public static final int | PORT | public static final int | NUM_THREADS | JFrame | theFrame | JTextArea | theTextArea |
Constructors Summary |
---|
public NetLogServer(int port, int numThreads)Constructor
ServerSocket servSock;
Socket clientSocket;
try {
servSock = new ServerSocket(PORT);
} catch(IOException e) {
/* Crash the server if IO fails. Something bad has happened */
System.err.println("Could not create ServerSocket " + e);
System.exit(1);
return; /*NOTREACHED*/
}
// Build the GUI - must be before Handler constructors!
theFrame = new JFrame("NetLog Server");
theTextArea = new JTextArea(24, 80);
theTextArea.setEditable(false);
theTextArea.setBorder(BorderFactory.createTitledBorder("NetLogServer"));
theFrame.getContentPane().add(new JScrollPane(theTextArea));
// Now start the Threads
for (int i=0; i<numThreads; i++) {
new Handler(servSock, i).start();
}
theFrame.pack();
theFrame.setVisible(true);
theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
Methods Summary |
---|
public synchronized void | log(int tid, java.lang.String s)
StringBuffer sb = new StringBuffer();
sb.append(tid);
sb.append(": ");
if (s == null) {
sb.append("(null)");
}
else if (s.length() == 0) {
sb.append("(null string)");
}
else
sb.append(s);
sb.append('\n");
theTextArea.append(sb.toString());
theTextArea.setCaretPosition(theTextArea.getText().length());
theFrame.toFront();
| public static void | main(java.lang.String[] av)Main method, to start the servers.
new NetLogServer(PORT, NUM_THREADS);
|
|