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.10 by tdb, Thu Dec 7 00:02:17 2000 UTC vs.
Revision 1.18 by tdb, Tue Mar 13 13:40:26 2001 UTC

# Line 2 | Line 2
2   package uk.ac.ukc.iscream.filtermanager;
3  
4   //---IMPORTS---
5 import uk.ac.ukc.iscream.core.*;
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 assignment of Filters to hosts.
10 > * The FilterManager handles initialisation
11 > * of hosts with the system, allowing hosts to
12 > * gain their configuration and a hook to a Filter
13 > * to talk to.
14   *
15   * @author  $Author$
16   * @version $Id$
17   */
18 < class FilterManager {
18 > public class FilterManager implements Component {
19  
20   //---FINAL ATTRIBUTES---
21  
# Line 20 | Line 24 | class FilterManager {
24       */
25      public static final String REVISION = "$Revision$";
26      
27 +    /**
28 +     * The friendly name for this component, used by
29 +     * all related classes.
30 +     */
31 +    public static final String NAME = "FilterManager";
32 +    
33   //---STATIC METHODS---
34  
35 <    public static void main(String[] args) {
26 <        // ***************************************
27 <        // VERY TEMPORARY - will find a better way
28 <        System.setProperty("org.omg.CORBA.ORBClass","jacorb.orb.ORB");
29 <        System.setProperty("org.omg.CORBA.ORBSingletonClass","jacorb.orb.ORBSingleton");
30 <        // ***************************************
31 <            
32 <        // can't have a real toString() :)
33 <        String toString = "FilterManager(" + REVISION.substring(11, REVISION.length() - 2) + ")";
34 <        
35 <        ReferenceManager refman = ReferenceManager.init(null, null);
36 <        
37 <        refman.getLogger().write(toString, Logger.SYSINIT, "coming up");
38 <        
39 <        // configuration variable we require
40 <        int listenPort = 0;
35 > //---CONSTRUCTORS---
36  
37 <        Configuration config = refman.getCM().getConfiguration(refman.getName());
43 <        if (config == null) {
44 <            throw new RuntimeException ("CRITICAL:Unable to obtain configuration" +
45 <                                        "         Advise you check the i-scream log for more information.");
46 <        } else {
47 <            try {
48 <                listenPort = Integer.parseInt(config.getProperty("FilterManager.listenPort"));
49 <            } catch (org.omg.CORBA.MARSHAL e) {
50 <                refman.getLogger().write(toString, Logger.FATAL, "required config property not present");
51 <                throw new RuntimeException ("CRITICAL:Unable to obtain required configuration property" +
52 <                                            "         Advise you check the i-scream log for more information.");
37 > //---PUBLIC METHODS---
38  
39 <            }
40 <        }
39 >    /**
40 >     * This method starts the FilterManager
41 >     */
42 >     public void start() throws ComponentStartException {
43 >        // get references to key objects
44 >        _logger = ReferenceManager.getInstance().getLogger();
45          
46 <        refman.getLogger().write(toString, Logger.SYSINIT, "configured");
46 >        _logger.write(toString(), Logger.SYSINIT, "coming up");
47          
48 <        refman.getLogger().write(toString, Logger.SYSINIT, "starting listener");
49 <        
61 <        HostListener hostListener = new HostListener(listenPort);
48 >        // startup a thread to listen for hosts
49 >        HostListener hostListener = new HostListener();
50          hostListener.start();
51          
52 <        refman.getLogger().write(toString, Logger.SYSINIT, "listener started");
65 <        
52 >        _logger.write(toString(), Logger.SYSINIT, "started");
53      }
54  
55 < //---CONSTRUCTORS---
55 >    /**
56 >     * Overrides the {@link java.lang.Object#toString() Object.toString()}
57 >     * method to provide clean logging (every class should have this).
58 >     *
59 >     * This uses the uk.ac.ukc.iscream.util.NameFormat class
60 >     * to format the toString()
61 >     *
62 >     * @return the name of this class and its CVS revision
63 >     */
64 >    public String toString() {
65 >        return FormatName.getName(
66 >            _name,
67 >            getClass().getName(),
68 >            REVISION);
69 >    }
70  
70 //---PUBLIC METHODS---
71
71   //---PRIVATE METHODS---
72  
73   //---ACCESSOR/MUTATOR METHODS---
74  
75   //---ATTRIBUTES---
76 +
77 +    /**
78 +     * This is the friendly identifier of the
79 +     * component this class is running in.
80 +     * eg, a Filter may be called "filter1",
81 +     * If this class does not have an owning
82 +     * component,  a name from the configuration
83 +     * can be placed here.  This name could also
84 +     * be changed to null for utility classes.
85 +     */
86 +    private String _name = FilterManager.NAME;
87 +
88 +    /**
89 +     * This holds a reference to the
90 +     * system logger that is being used.
91 +     */
92 +    private Logger _logger;
93  
94   //---STATIC ATTRIBUTES---
95  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines