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
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/rootfilter/RootFilter.java (file contents):
Revision 1.15 by tdb, Tue Jan 2 03:19:37 2001 UTC vs.
Revision 1.43 by tdb, Mon May 5 22:05:14 2003 UTC

# Line 1 | Line 1
1 + /*
2 + * i-scream central monitoring system
3 + * http://www.i-scream.org.uk
4 + * Copyright (C) 2000-2002 i-scream
5 + *
6 + * This program is free software; you can redistribute it and/or
7 + * modify it under the terms of the GNU General Public License
8 + * as published by the Free Software Foundation; either version 2
9 + * of the License, or (at your option) any later version.
10 + *
11 + * This program is distributed in the hope that it will be useful,
12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 + * GNU General Public License for more details.
15 + *
16 + * You should have received a copy of the GNU General Public License
17 + * along with this program; if not, write to the Free Software
18 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + */
20 +
21 +
22   //---PACKAGE DECLARATION---
23 < package uk.ac.ukc.iscream.rootfilter;
23 > package uk.org.iscream.cms.server.rootfilter;
24  
25   //---IMPORTS---
26 < import uk.ac.ukc.iscream.util.*;
27 < import uk.ac.ukc.iscream.core.*;
28 < import uk.ac.ukc.iscream.clientinterface.*;
26 > import uk.org.iscream.cms.util.*;
27 > import uk.org.iscream.cms.server.core.*;
28 > import uk.org.iscream.cms.server.componentmanager.*;
29 > import uk.org.iscream.cms.server.clientinterface.*;
30  
31   /**
32   * The root filter is what all filters talk to
# Line 17 | Line 39 | import uk.ac.ukc.iscream.clientinterface.*;
39   * @author  $Author$
40   * @version $Id$
41   */
42 < public class RootFilter implements uk.ac.ukc.iscream.util.Component {
42 > public class RootFilter implements Component {
43  
44   //---FINAL ATTRIBUTES---
45  
# Line 36 | Line 58 | public class RootFilter implements uk.ac.ukc.iscream.u
58       * This starts the Root Filter for the system
59       */
60      public void start() throws ComponentStartException {
61 <
61 >        // get references to key objects
62 >        _logger = _refman.getLogger();
63 >        
64          _logger.write(toString(), Logger.SYSINIT, "coming up");
41            
42        // configuration variables we require
43        String ourName = null;
44        String realInterface = null;
45        String dbInterface = null;
65          
66 <        Configuration config = _refman.getCM().getConfiguration("RootFilter");
67 <        if (config == null) {
68 <            System.err.println("CRITICAL:Unable to obtain configuration" +
69 <                               "\n         Advise you check the i-scream log for more information.");
70 <            _logger.write(toString(), Logger.FATAL, "ERROR - unable to obtain configuration");
71 <            System.exit(1);
72 <        } else {
73 <            try {
74 <                ourName = config.getProperty("RootFilter.name");
56 <                realInterface = config.getProperty("RootFilter.realtimeInterfaceName");
57 <                dbInterface = config.getProperty("RootFilter.dbInterfaceName");
58 <            } catch (org.omg.CORBA.MARSHAL e) {
59 <                System.err.println ("CRITICAL:Unable to obtain required configuration property" +
60 <                                    "\n         Advise you check the i-scream log for more information.");
61 <                _logger.write(toString(), Logger.FATAL, "ERROR - required configuration property not present");
62 <                System.exit(1);
63 <            }
66 >        ConfigurationProxy cp = ConfigurationProxy.getInstance();
67 >        String configName = "RootFilter";
68 >        
69 >        // set the name of the root filter
70 >        try {
71 >            NAME = cp.getProperty(configName, "RootFilter.name");
72 >        } catch (PropertyNotFoundException e) {
73 >            NAME = null;
74 >            _logger.write(toString(), Logger.WARNING, "RootFilter name not set: "+e);
75          }
65        // now we have the name of the Root Filter we set it
66        NAME = ourName;
76          
77 <        _logger.write(toString(), Logger.SYSINIT, "configured");
78 <        
79 <        ClientInterface ciReal = null, ciDB = null;
80 <        // get reference to the client interfaces - the real time one
81 <        if (realInterface != null) {
82 <            ciReal = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + realInterface));
77 >        // setup a queue
78 >        Queue queue;
79 >        // see if this Queue needs a size limit
80 >        try {
81 >            int queueSizeLimit = Integer.parseInt(cp.getProperty(configName, "Queue.SizeLimit"));
82 >            String queueRemoveAlgorithm = cp.getProperty(configName, "Queue.RemoveAlgorithm");
83 >            int algorithm = StringUtils.getStringPos(queueRemoveAlgorithm, Queue.algorithms);
84 >            if(algorithm != -1) {
85 >                _logger.write(toString(), Logger.DEBUG, "Starting Queue with size limit of "+queueSizeLimit+", using remove algorithm "+queueRemoveAlgorithm);
86 >                // we have valid values, so lets start it.
87 >                queue = new Queue(queueSizeLimit, algorithm);
88 >            }
89 >            else {
90 >                _logger.write(toString(), Logger.WARNING, "Bad Queue Algorithm configuration, not known: "+queueRemoveAlgorithm);
91 >                // just don't activate a limit
92 >                queue = new Queue();
93 >            }
94 >            
95 >        } catch (PropertyNotFoundException e) {
96 >            _logger.write(toString(), Logger.DEBUG, "Optional config not set: "+e);
97 >            // just don't activate a limit
98 >            queue = new Queue();
99 >        } catch (NumberFormatException e) {
100 >            _logger.write(toString(), Logger.WARNING, "Bad Queue SizeLimit configuration: "+e);
101 >            // just don't activate a limit
102 >            queue = new Queue();
103          }
75        // get reference to the client interfaces - and the db one
76        if (dbInterface != null) {
77            ciDB = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + dbInterface));
78        }
104          
105 <        Queue queue = new Queue();
106 <        
107 <        if (realInterface == null) {        
108 <            _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + dbInterface);
109 <            CIWrapper c = new CIWrapper(ciDB, queue);
110 <            c.start();
111 <        } else if (dbInterface == null) {
112 <            _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + realInterface);
88 <            CIWrapper c = new CIWrapper(ciReal, queue);
89 <            c.start();
90 <        } else {
91 <            _logger.write(toString(), Logger.DEBUG, "hooked to interfaces - " + realInterface + " & " + dbInterface);
92 <            CIWrapper c = new CIWrapper(ciReal, queue);
93 <            c.start();
94 <            c = new CIWrapper(ciDB, queue);
95 <            c.start();
105 >        // startup a monitor on this queue
106 >        try {
107 >            // try to get the interval, if this fails, we won't start up the monitor
108 >            int queueMonitorInterval = Integer.parseInt(cp.getProperty(configName, "Queue.MonitorInterval"));
109 >            String queueName = NAME + " RootFilter";
110 >            queue.startMonitor(queueMonitorInterval*1000, queueName);
111 >        } catch (PropertyNotFoundException e) {
112 >            _logger.write(toString(), Logger.WARNING, "failed to find queue monitor config, disabling. " + e);
113          }
114 <                
114 >        
115          // RootFilterServant start (for inbound child filter data)
116          _logger.write(toString(), Logger.DEBUG, "starting Root Filter");
117          RootFilterServant filterServant = new RootFilterServant(queue);
118          // bind to the naming service as a filter
119 <        _refman.bindToOrb(filterServant, "iscream.Filter." + RootFilter.NAME);
119 >        _refman.bindToOrb(filterServant, "iscream.Filter\\." + RootFilter.NAME);
120          
121 +        // Startup the CORBA Listener
122 +        _logger.write(toString(), Logger.DEBUG, "starting servant for inbound clients");
123 +        CorbaClientListenerServant corbaServant = new CorbaClientListenerServant(queue);
124 +        _refman.bindToOrb(corbaServant, "iscream.ClientInterface\\." + RootFilter.NAME);
125 +        
126          _logger.write(toString(), Logger.SYSINIT, "started");
127 +        
128      }
129      
130      /**
131 +     * Does a dependency check. Used mainly at startup to
132 +     * see if the required dependencies (components) are up
133 +     * and running.
134 +     *
135 +     * @return a boolean value, true if the depdencies are satisfied
136 +     */
137 +    public boolean depCheck() {
138 +        org.omg.CORBA.Object obj;
139 +        
140 +        // first we need to check the Configuration system is available
141 +        try {
142 +            // first check the ConfigurationManager is alive
143 +            obj = _refman.getCORBARef("iscream.ConfigurationManager");
144 +        } catch(ComponentCORBAException e) {
145 +            System.err.println(toString() + ": Dependency Failure: "+e);
146 +            return false;
147 +        }
148 +        
149 +        // dependency check suceeded
150 +        return true;
151 +    }
152 +    
153 +    /**
154       * Overrides the {@link java.lang.Object#toString() Object.toString()}
155       * method to provide clean logging (every class should have this).
156       *
157 <     * This uses the uk.ac.ukc.iscream.util.NameFormat class
157 >     * This uses the uk.org.iscream.cms.util.NameFormat class
158       * to format the toString()
159       *
160       * @return the name of this class and its CVS revision
# Line 130 | Line 176 | public class RootFilter implements uk.ac.ukc.iscream.u
176       * This holds a reference to the
177       * system logger that is being used.
178       */
179 <    private Logger _logger = ReferenceManager.getInstance().getLogger();
179 >    private Logger _logger;
180  
181      /**
182       * A reference to the reference manager in use
# Line 146 | Line 192 | public class RootFilter implements uk.ac.ukc.iscream.u
192       */
193      public static String NAME;
194  
195 < }            
195 > }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines