ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/rootfilter/RootFilter.java
Revision: 1.38
Committed: Tue May 29 17:02:35 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.37: +8 -8 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# User Rev Content
1 ajm 1.27
2 tdb 1.1 //---PACKAGE DECLARATION---
3 tdb 1.38 package uk.org.iscream.cms.server.rootfilter;
4 tdb 1.1
5     //---IMPORTS---
6 tdb 1.38 import uk.org.iscream.cms.server.util.*;
7     import uk.org.iscream.cms.server.core.*;
8     import uk.org.iscream.cms.server.componentmanager.*;
9     import uk.org.iscream.cms.server.clientinterface.*;
10 tdb 1.1
11     /**
12 ajm 1.10 * The root filter is what all filters talk to
13     * Hosts cannot talk to this implementation of a filter.
14     * It provides hooks to all data interfaces for the system
15     * namely the client interface and the db interface.
16     * This is an i-scream component that starts the
17     * RootFilter services.
18 tdb 1.1 *
19 tdb 1.29 * @author $Author: tdb1 $
20 tdb 1.38 * @version $Id: RootFilter.java,v 1.37 2001/03/23 05:30:44 tdb1 Exp $
21 tdb 1.1 */
22 tdb 1.17 public class RootFilter implements Component {
23 tdb 1.1
24     //---FINAL ATTRIBUTES---
25    
26     /**
27     * The current CVS revision of this class
28     */
29 tdb 1.38 public static final String REVISION = "$Revision: 1.37 $";
30 ajm 1.10
31 tdb 1.1 //---STATIC METHODS---
32    
33 ajm 1.10 //---CONSTRUCTORS---
34    
35     //---PUBLIC METHODS---
36 ajm 1.5
37 ajm 1.10 /**
38     * This starts the Root Filter for the system
39     */
40     public void start() throws ComponentStartException {
41 ajm 1.26 // get references to key objects
42 tdb 1.30 _logger = _refman.getLogger();
43 ajm 1.26
44 ajm 1.10 _logger.write(toString(), Logger.SYSINIT, "coming up");
45 tdb 1.28
46     ConfigurationProxy cp = ConfigurationProxy.getInstance();
47     String configName = "RootFilter";
48    
49     // set the name of the root filter
50     try {
51     NAME = cp.getProperty(configName, "RootFilter.name");
52     } catch (PropertyNotFoundException e) {
53     NAME = null;
54     _logger.write(toString(), Logger.WARNING, "RootFilter name not set: "+e);
55 tdb 1.23 }
56 tdb 1.28
57     // try and get the names of the ciReal and ciDB
58     String realInterface, dbInterface;
59 tdb 1.36 // first realtime
60 tdb 1.28 try {
61     realInterface = cp.getProperty(configName, "RootFilter.realtimeInterfaceName");
62 tdb 1.36 } catch (PropertyNotFoundException e) {
63     _logger.write(toString(), Logger.DEBUG, "Optional config not set: "+e);
64     realInterface = null;
65     }
66     // next dbi
67     try {
68 tdb 1.28 dbInterface = cp.getProperty(configName, "RootFilter.dbInterfaceName");
69     } catch (PropertyNotFoundException e) {
70     _logger.write(toString(), Logger.DEBUG, "Optional config not set: "+e);
71     dbInterface = null;
72 tdb 1.1 }
73 tdb 1.23
74 ajm 1.13 ClientInterface ciReal = null, ciDB = null;
75 ajm 1.8 // get reference to the client interfaces - the real time one
76 ajm 1.11 if (realInterface != null) {
77 ajm 1.13 ciReal = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + realInterface));
78 ajm 1.11 }
79 ajm 1.10 // get reference to the client interfaces - and the db one
80 ajm 1.11 if (dbInterface != null) {
81 ajm 1.13 ciDB = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + dbInterface));
82 ajm 1.11 }
83 tdb 1.33
84 tdb 1.28 // setup a queue
85 tdb 1.33 Queue queue;
86     // see if this Queue needs a size limit
87     try {
88     int queueSizeLimit = Integer.parseInt(cp.getProperty(configName, "Queue.SizeLimit"));
89     String queueRemoveAlgorithm = cp.getProperty(configName, "Queue.RemoveAlgorithm");
90     int algorithm = StringUtils.getStringPos(queueRemoveAlgorithm, Queue.algorithms);
91     if(algorithm != -1) {
92 tdb 1.34 _logger.write(toString(), Logger.DEBUG, "Starting Queue with size limit of "+queueSizeLimit+", using remove algorithm "+queueRemoveAlgorithm);
93     // we have valid values, so lets start it.
94 tdb 1.33 queue = new Queue(queueSizeLimit, algorithm);
95     }
96     else {
97     _logger.write(toString(), Logger.WARNING, "Bad Queue Algorithm configuration, not known: "+queueRemoveAlgorithm);
98     // just don't activate a limit
99     queue = new Queue();
100     }
101    
102     } catch (PropertyNotFoundException e) {
103     _logger.write(toString(), Logger.DEBUG, "Optional config not set: "+e);
104     // just don't activate a limit
105     queue = new Queue();
106     } catch (NumberFormatException e) {
107     _logger.write(toString(), Logger.WARNING, "Bad Queue SizeLimit configuration: "+e);
108     // just don't activate a limit
109     queue = new Queue();
110     }
111 tdb 1.15
112 tdb 1.28 // startup a monitor on this queue
113     try {
114     // try to get the interval, if this fails, we won't start up the monitor
115     int queueMonitorInterval = Integer.parseInt(cp.getProperty(configName, "Queue.MonitorInterval"));
116     String queueName = NAME + " RootFilter";
117     queue.startMonitor(queueMonitorInterval*1000, queueName);
118     } catch (PropertyNotFoundException e) {
119     _logger.write(toString(), Logger.WARNING, "failed to find queue monitor config, disabling. " + e);
120     }
121 tdb 1.15
122 tdb 1.37 if (realInterface != null && dbInterface != null) {
123     _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + realInterface + " & " + dbInterface);
124     CIWrapper c = new CIWrapper(ciReal, queue);
125     c.start();
126     c = new CIWrapper(ciDB, queue);
127     c.start();
128     } else if (realInterface == null) {
129 ajm 1.11 _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + dbInterface);
130 tdb 1.15 CIWrapper c = new CIWrapper(ciDB, queue);
131     c.start();
132 ajm 1.11 } else if (dbInterface == null) {
133     _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + realInterface);
134 tdb 1.15 CIWrapper c = new CIWrapper(ciReal, queue);
135     c.start();
136 ajm 1.11 } else {
137 tdb 1.37 _logger.write(toString(), Logger.WARNING, "not hooked to any client interfaces, this is probably not intentional!");
138 ajm 1.11 }
139 tdb 1.15
140 ajm 1.8 // RootFilterServant start (for inbound child filter data)
141 ajm 1.10 _logger.write(toString(), Logger.DEBUG, "starting Root Filter");
142 tdb 1.15 RootFilterServant filterServant = new RootFilterServant(queue);
143 ajm 1.8 // bind to the naming service as a filter
144 ajm 1.14 _refman.bindToOrb(filterServant, "iscream.Filter." + RootFilter.NAME);
145 tdb 1.1
146 ajm 1.10 _logger.write(toString(), Logger.SYSINIT, "started");
147 tdb 1.18
148 tdb 1.29 }
149    
150     /**
151     * Does a dependency check. Used mainly at startup to
152     * see if the required dependencies (components) are up
153     * and running.
154     *
155     * @return a boolean value, true if the depdencies are satisfied
156     */
157     public boolean depCheck() {
158 tdb 1.35 org.omg.CORBA.Object obj;
159    
160     // first we need to check the Configuration system is available
161 tdb 1.29 try {
162     // first check the ConfigurationManager is alive
163     obj = _refman.getCORBARef("iscream.ConfigurationManager");
164 tdb 1.35 } catch(ComponentCORBAException e) {
165     System.err.println(toString() + ": Dependency Failure: "+e);
166     return false;
167     }
168    
169     // next we need to check which client interfaces *should*
170     // be active, and check them. Note they do not have to
171     // be enabled, and we should check this.
172     // -- each check only forces a dependency if it's configured
173     ConfigurationProxy cp = ConfigurationProxy.getInstance();
174     // first check the client interface
175     try {
176 tdb 1.29 String cli = cp.getProperty("RootFilter", "RootFilter.realtimeInterfaceName");
177 tdb 1.35 obj = _refman.getCORBARef("iscream.ClientInterface." + cli);
178     } catch(ComponentCORBAException e) {
179     System.err.println(toString() + ": Dependency Failure: "+e);
180     return false;
181     } catch(PropertyNotFoundException e) {
182     System.err.println(toString() + ": Client interface not configured and thus not enabled.");
183     }
184     // second check the database interface
185     try {
186 tdb 1.29 String dbi = cp.getProperty("RootFilter", "RootFilter.dbInterfaceName");
187     obj = _refman.getCORBARef("iscream.ClientInterface." + dbi);
188     } catch(ComponentCORBAException e) {
189 tdb 1.31 System.err.println(toString() + ": Dependency Failure: "+e);
190 tdb 1.29 return false;
191     } catch(PropertyNotFoundException e) {
192 tdb 1.35 System.err.println(toString() + ": Database interface not configured and thus not enabled.");
193 tdb 1.29 }
194 tdb 1.35
195 tdb 1.29 // dependency check suceeded
196     return true;
197 tdb 1.1 }
198 ajm 1.10
199     /**
200     * Overrides the {@link java.lang.Object#toString() Object.toString()}
201     * method to provide clean logging (every class should have this).
202     *
203 tdb 1.38 * This uses the uk.org.iscream.cms.server.util.NameFormat class
204 ajm 1.10 * to format the toString()
205     *
206     * @return the name of this class and its CVS revision
207     */
208     public String toString() {
209     return FormatName.getName(
210 ajm 1.14 NAME,
211 ajm 1.10 getClass().getName(),
212     REVISION);
213 tdb 1.1 }
214    
215     //---PRIVATE METHODS---
216    
217     //---ACCESSOR/MUTATOR METHODS---
218    
219     //---ATTRIBUTES---
220 ajm 1.10
221     /**
222     * This holds a reference to the
223     * system logger that is being used.
224     */
225 ajm 1.26 private Logger _logger;
226 ajm 1.10
227     /**
228     * A reference to the reference manager in use
229     */
230 tdb 1.30 private ReferenceManager _refman = ReferenceManager.getInstance();
231 ajm 1.10
232 tdb 1.1 //---STATIC ATTRIBUTES---
233 ajm 1.10
234     /**
235     * The friendly name for this component, used by
236     * all related classes.
237     * This is set from the configuration.
238     */
239     public static String NAME;
240 tdb 1.1
241 ajm 1.5 }