ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/componentmanager/ComponentManager.java
Revision: 1.8
Committed: Mon Jan 8 13:07:48 2001 UTC (23 years, 4 months ago) by tdb
Branch: MAIN
Changes since 1.7: +3 -2 lines
Log Message:
Little change in the help message.

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.ac.ukc.iscream.componentmanager;
3
4 //---IMPORTS---
5 import uk.ac.ukc.iscream.util.*;
6 import java.util.*;
7 import java.io.*;
8
9 /**
10 * The component manager is the starting point for all
11 * server side components of the iscream system.
12 * It loads its initial system configuration from the
13 * default properties file, it then starts all the iscream
14 * components as specified in the default.properties under
15 * uk.ac.ukc.iscream.ComponentList
16 *
17 * @author $Author: ajm4 $
18 * @version $Id: ComponentManager.java,v 1.7 2000/12/13 13:37:45 ajm4 Exp $
19 */
20 public class ComponentManager {
21
22 //---FINAL ATTRIBUTES---
23
24 /**
25 * The current CVS revision of this class
26 */
27 public static final String REVISION = "$Revision: 1.7 $";
28
29 /**
30 * The toString() of this class
31 * As it won't be instatiated, this is needed.
32 * Not also that we pass a null as the class name (as we are static)
33 */
34 public static final String toString = FormatName.getName("ComponentManager", null, REVISION);
35
36 /**
37 * The default location of the properties file for the system
38 */
39 public static final String DEFAULTPROPERTIES = "./etc/default.properties";
40
41 //---STATIC METHODS---
42
43 /**
44 * The main method which starts the components as
45 * listed in the default.properties file.
46 *
47 * @param args the command line arguments
48 */
49 public static void main(String[] args) {
50 System.out.println("--- I-Scream System Component Manager ---");
51 System.out.println("--- Starting System ---");
52
53 // get the command line args
54 // this is a bit messy and should be looked at
55 String defaultProperties = DEFAULTPROPERTIES;
56 String filterName = null;
57 if (args.length > 0) {
58 if (args[0].equals("-l")) {
59 defaultProperties = args[1];
60 } else if (args[0].equals("-f")) {
61 filterName = args[1];
62 } else if (args[2].equals("-l")) {
63 filterName = args[3];
64 } else if (args[2].equals("-f")) {
65 filterName = args[3];
66 } else {
67 usage();
68 }
69 }
70
71 // load the default properties file into the system properties
72 System.out.println(toString + ": initialising - using " + defaultProperties);
73 try {
74 Properties initProperties = new Properties(System.getProperties());
75 initProperties.load(new FileInputStream(new File(defaultProperties)));
76 System.setProperties(initProperties);
77 } catch (Exception e) {
78 System.err.println(toString + ": ERROR " + e.getMessage());
79 usage();
80 }
81
82 // continue to bring the system up
83 System.out.println(toString + ": coming up");
84
85 // start the ORB by initialising the ReferenceManager
86 ReferenceManager refman = ReferenceManager.getInstance();
87
88 // now the ORB is running, we need to activate our RootPOA
89 // so that we can start serving requests once servants start up
90 refman.activatePOA();
91
92 // get the list of components
93 String componentList = System.getProperty("uk.ac.ukc.iscream.ComponentList");
94 StringTokenizer st = new StringTokenizer(componentList, ";");
95
96 // this could be done using reflection
97 // but..well..we don't ;-p
98 while (st.hasMoreTokens()){
99 String componentName = st.nextToken();
100 Component component = null;
101 System.out.println(toString + ": starting component - " + componentName);
102
103 // ### This is where the list of supported components is checked! ###
104 if (componentName.equalsIgnoreCase("core")) {
105 component = new uk.ac.ukc.iscream.core.Core();
106 } else if (componentName.equalsIgnoreCase("filtermanager")) {
107 component = new uk.ac.ukc.iscream.filtermanager.FilterManager();
108 } else if (componentName.equalsIgnoreCase("rootfilter")) {
109 component = new uk.ac.ukc.iscream.rootfilter.RootFilter();
110 } else if (componentName.equalsIgnoreCase("dbinterface")) {
111 component = new uk.ac.ukc.iscream.dbinterface.DBInterface();
112 } else if (componentName.equalsIgnoreCase("clientinterface")) {
113 component = new uk.ac.ukc.iscream.clientinterface.ClientInterfaceMain();
114 // note the passing of the Filter's name in its constructor
115 } else if (componentName.equalsIgnoreCase("filter")) {
116 component = new uk.ac.ukc.iscream.filter.FilterMain(filterName);
117 }
118 // ### Add new component constructors in the above section! ###
119
120 if (component != null) {
121 try {
122 component.start();
123 } catch (ComponentStartException e) {
124 System.err.println(toString + ": ERROR starting component - " + componentName);
125 System.err.println(toString + ": component reports - " + e.getMessage());
126 System.exit(1);
127 }
128 } else {
129 System.err.println(toString + ": WARNING unsupported component not started");
130 }
131 }
132 System.out.println(toString + ": running");
133
134 // block on the ORB...in time, management functionality can be placed here.
135 refman.getORB().run();
136 }
137
138 /**
139 * A simple method to print the usage of this class.
140 * It never returns, but instead exits to the system
141 * with a value 1, to indicate the system did not start
142 * properly.
143 */
144 public static void usage() {
145 System.out.println("USAGE: java uk.ac.ukc.iscream.componentmanager.ComponentManager <option>");
146 System.out.println(" or: java -jar iscream.jar <option>");
147 System.out.println("WHERE <option>:");
148 System.out.println(" -l <filename> - the location of initial system properties");
149 System.out.println(" the default is ./etc/default.properties");
150 System.out.println(" -f <name> - the name of the filter (if there is one configured");
151 System.out.println(" -h - this help screen");
152 System.exit(1);
153 }
154
155 //---CONSTRUCTORS---
156
157 //---PUBLIC METHODS---
158
159 //---PRIVATE METHODS---
160
161 //---ACCESSOR/MUTATOR METHODS---
162
163 //---ATTRIBUTES---
164
165 //---STATIC ATTRIBUTES---
166
167 }