summaryrefslogtreecommitdiff
path: root/java/tests/Connection/AcceptorTest.java
blob: 0f8877f52d9cb28143d5ca54ae828db646599745 (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
// ============================================================================
//
// = PACKAGE
//    tests.Connection
// 
// = FILENAME
//    AcceptorTest.java
//
// = AUTHOR
//    Prashant Jain
// 
// ============================================================================
package tests.Connection;

import java.io.*;
import java.net.*;
import JACE.OS.*;
import JACE.Connection.*;

public class AcceptorTest
{
  void print_usage_and_die ()
    {
      System.out.println ("Usage: test_server [<port>]");
      System.exit (0);
    }

  public void init (int port)
    {
      try
	{
	  Acceptor acceptor = new Acceptor (Class.forName ("tests.Connection.ServerHandler"));
	  acceptor.open (port);
	  while (true)
	    {
	      acceptor.accept ();
	    }
	}
      catch (ClassNotFoundException e)
	{
	  ACE.ERROR (e);
	}
      catch (SocketException e)
	{
	  ACE.ERROR ("Socket Exception: " + e);
	}
      catch (InstantiationException e)
	{
	  ACE.ERROR (e);
	}
      catch (IllegalAccessException e)
	{
	  ACE.ERROR ("Dang!" + e);
	}
      catch (IOException e)
	{
	  ACE.ERROR (e);
	}
    }

  public static void main (String [] args)
    {
      int port = ACE.DEFAULT_SERVER_PORT;
      AcceptorTest acceptorTest = new AcceptorTest ();

      if (args.length == 1)
	{
	  try
	    {
	      port = Integer.parseInt (args[0]);
	    }
	  catch (NumberFormatException e)
	    {
	      acceptorTest.print_usage_and_die ();
	    }
	}
      acceptorTest.init (port);
    }
}