summaryrefslogtreecommitdiff
path: root/java/JACE/netsvcs/Time/TSServerAcceptor.java
blob: 7e8b9476c195a037f795b2f021560b6d27b184c6 (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
package JACE.netsvcs.Time;

import java.io.*;
import java.net.*;
import java.util.*;
import JACE.OS.*;
import JACE.Misc.*;
import JACE.Connection.*;
import JACE.Reactor.*;
import JACE.ASX.TimeValue;
import JACE.Concurrency.ThreadManager;
import JACE.netsvcs.Server;

/**
 * Server for the time service.  Creates TSServerHandlers as necessary
 * to handle the requests.
 * <P>
 * <B>Valid command line arguments:</B>
 * <PRE>
 *    -p (port)        Port to listen on for clients");
 *    -d               Enable debugging messages");
 *    -a (class name)  Specify ActivateStrategy");
 *                     (Default is multi-threaded");
 * </PRE>
 *
 */
public class TSServerAcceptor extends Server
{
  public TSServerAcceptor ()
  {
    // Set the name in case we're not using the service configurator
    name ("Time Service");
  }

  /**
   * Simple main program for running the logging service without the
   * service configurator.
   *
   *@param args command line arguments
   */
  public static void main (String [] args)
  {
    // Simple main program to get things rolling
    TSServerAcceptor ta = new TSServerAcceptor();

    ta.init (args);
  }

  /**
   * Creates a new TSServerHandler instance.
   */  
  protected SvcHandler makeSvcHandler ()
  {
    return new TSServerHandler ();
  }
  
  /**
   * Prints out the valid command line arguments.  See the class
   * description for more information.  Called by Server.init when
   * parseArgs returns -1.
   */
  protected void printUsage ()
  {
    ACE.ERROR ("Valid options:\n");
    ACE.ERROR ("-p <port>        Port to listen on for clients");
    ACE.ERROR ("-d               Enable debugging messages");
    ACE.ERROR ("-a <class name>  Specify ActivateStrategy");
    ACE.ERROR ("                 (Default is multi-threaded");
  }

  /**
   * Parses the command line arguments.  See the class description
   * for more information.
   *
   *@param args command line arguments
   *@return -1 on failure, 0 on success
   */
  protected int parseArgs (String [] args) 
  {
    int c = 0;
    GetOpt opt = new GetOpt(args, "p:da:", true);
    
    try {

      while ((c = opt.next ()) != -1) {
	switch (c) 
	  {
	  case 'd':
	    ACE.enableDebugging ();
	    ACE.DEBUG ("Debugging is enabled");
	    break;
	  case 'p':
	    if (!port (opt.optarg ()))
	      return -1;
	    break;
	  case 'a':
	    Object strategy = newStrategyInstance (opt.optarg (),
						   "ActivateStrategy");
	    if (strategy == null)
	      return -1;
	    
	    activateStrategy ((ActivateStrategy) strategy);
	    break;
	  default:
	    ACE.ERROR("Unknown argument: " + (char)c);
	    return -1;
	  }
      }
    } catch (ArrayIndexOutOfBoundsException e) {
      ACE.ERROR ("Option -" + (char)c + " requires an argument");
      return -1;
    }

    return 0;
  }
}