ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filtermanager/FilterManager.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/filtermanager/FilterManager.java (file contents):
Revision 1.12 by ajm, Tue Dec 12 19:17:02 2000 UTC vs.
Revision 1.20 by tdb, Wed Mar 14 01:43:53 2001 UTC

# Line 4 | Line 4 | package uk.ac.ukc.iscream.filtermanager;
4   //---IMPORTS---
5   import uk.ac.ukc.iscream.util.*;
6   import uk.ac.ukc.iscream.core.*;
7 + import uk.ac.ukc.iscream.componentmanager.*;
8  
9   /**
10   * The FilterManager handles initialisation
# Line 14 | Line 15 | import uk.ac.ukc.iscream.core.*;
15   * @author  $Author$
16   * @version $Id$
17   */
18 < public class FilterManager implements uk.ac.ukc.iscream.util.Component {
18 > public class FilterManager implements Component {
19  
20   //---FINAL ATTRIBUTES---
21  
# Line 24 | Line 25 | public class FilterManager implements uk.ac.ukc.iscrea
25      public static final String REVISION = "$Revision$";
26      
27      /**
28 <     * The friendly name for the FilterManager, used by
28 >     * The friendly name for this component, used by
29       * all related classes.
30       */
31      public static final String NAME = "FilterManager";
# Line 39 | Line 40 | public class FilterManager implements uk.ac.ukc.iscrea
40       * This method starts the FilterManager
41       */
42       public void start() throws ComponentStartException {
43 <                
43 >        // get references to key objects
44 >        _logger = _refman.getLogger();
45 >        
46          _logger.write(toString(), Logger.SYSINIT, "coming up");
47          
48 <        // configuration variable we require
49 <        int listenPort = 0;
47 <
48 <        Configuration config = _refman.getCM().getConfiguration("FilterManager");
49 <        if (config == null) {
50 <            System.err.println("CRITICAL:Unable to obtain configuration" +
51 <                               "\n         Advise you check the i-scream log for more information.");
52 <            _logger.write(toString(), Logger.FATAL, "ERROR - unable to obtain configuration");
53 <            System.exit(1);
54 <        } else {
55 <            try {
56 <                listenPort = Integer.parseInt(config.getProperty("FilterManager.listenPort"));
57 <            } catch (org.omg.CORBA.MARSHAL e) {
58 <                System.err.println ("CRITICAL:Unable to obtain required configuration property" +
59 <                                    "\n         Advise you check the i-scream log for more information.");
60 <                _logger.write(toString(), Logger.FATAL, "ERROR - required configuration property not present");
61 <                System.exit(1);
62 <            }
63 <        }
64 <        
65 <        _logger.write(toString(), Logger.SYSMSG, "configured");
66 <        
67 <        HostListener hostListener = new HostListener(listenPort);
48 >        // startup a thread to listen for hosts
49 >        HostListener hostListener = new HostListener();
50          hostListener.start();
51          
52          _logger.write(toString(), Logger.SYSINIT, "started");
53      }
54 <
54 >    
55      /**
56 +     * Does a dependency check. Used mainly at startup to
57 +     * see if the required dependencies (components) are up
58 +     * and running.
59 +     *
60 +     * @return a boolean value, true if the depdencies are satisfied
61 +     */
62 +    public boolean depCheck() {
63 +        // no real dependencies
64 +        // although it will require Filter's, but these cannot
65 +        // be predicted at this stage
66 +        return true;
67 +    }
68 +    
69 +    /**
70       * Overrides the {@link java.lang.Object#toString() Object.toString()}
71       * method to provide clean logging (every class should have this).
72       *
# Line 82 | Line 78 | public class FilterManager implements uk.ac.ukc.iscrea
78      public String toString() {
79          return FormatName.getName(
80              _name,
81 <            this.getClass().getName(),
81 >            getClass().getName(),
82              REVISION);
83      }
84  
# Line 107 | Line 103 | public class FilterManager implements uk.ac.ukc.iscrea
103       * This holds a reference to the
104       * system logger that is being used.
105       */
106 <    private Logger _logger = ReferenceManager.getInstance().getLogger();
107 <
106 >    private Logger _logger;
107 >    
108      /**
109       * A reference to the reference manager in use
110       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines