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.1 by tdb, Mon Nov 13 20:40:40 2000 UTC vs.
Revision 1.22 by tdb, Wed Mar 14 23:25:29 2001 UTC

# Line 1 | Line 1
1   //---PACKAGE DECLARATION---
2 + package uk.org.iscream.filtermanager;
3  
4   //---IMPORTS---
5 < import uk.ac.ukc.iscream.core.*;
6 < import uk.ac.ukc.iscream.filter.*;
7 < import org.omg.CORBA.*;
7 < import org.omg.CosNaming.*;
8 < import org.omg.PortableServer.*;
5 > import uk.org.iscream.util.*;
6 > import uk.org.iscream.core.*;
7 > import uk.org.iscream.componentmanager.*;
8  
9   /**
10 < * A FilterManager
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 22 | 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) {
35 > //---CONSTRUCTORS---
36 >
37 > //---PUBLIC METHODS---
38 >
39 >    /**
40 >     * This method starts the FilterManager
41 >     */
42 >     public void start() throws ComponentStartException {
43 >        // get references to key objects
44 >        _logger = _refman.getLogger();
45          
46 <        // can't have a real toString() :)
30 <        String toString = "FilterManager(" + REVISION.substring(11, REVISION.length() - 2) + ")";
46 >        _logger.write(toString(), Logger.SYSINIT, "coming up");
47          
48 <        try {        
49 <            ORB orb = ORB.init(args, null);
50 <            
51 <            // something to hold objects
52 <            org.omg.CORBA.Object objRef = null;    
53 <            
54 <            // get the Root POA
55 <            objRef = orb.resolve_initial_references("RootPOA");
56 <            POA poa = POAHelper.narrow(objRef);
57 <              
58 <            // get a hook to the name service
59 <            objRef = orb.resolve_initial_references("NameService");
60 <            NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
61 <                
62 <            // get a ref to the Configurator & the Logger
63 <            objRef = ncRef.resolve(ncRef.to_name("iscream.Configurator"));
64 <            Configurator configurator = ConfiguratorHelper.narrow(objRef);
65 <            objRef = ncRef.resolve(ncRef.to_name("iscream.Logger"));
66 <            Logger logger = LoggerHelper.narrow(objRef);
67 <            
68 <            logger.write(toString, "coming up");
69 <            
70 <            // create the filterManagerRef to our servant
71 <            //filterManagerRef = new FilterManagerServant;
56 <            
57 <            // register the servant with the name service
58 <            //objRef = poa.servant_to_reference(filterManagerRef);
59 <            //ncRef.bind(ncRef.to_name("iscream.FilterManager"), objRef);
60 <            
61 <            // start the POA off
62 <            poa.the_POAManager().activate();
63 <            
64 <            // get the config
65 <            Configuration myConfig = configurator.getConfiguration("filterManager");
66 <            
67 <            // some place holders for the configuration
68 <            int port = 0;
69 <  
70 <            // did we?
71 <            if (myConfig == null) {
72 <                System.out.println("Failed: is it there?, can you read it?");
73 <                System.exit(1);
74 <            } else {
75 <              
76 <                // get the property
77 <                try {
78 <                    port = new Integer(myConfig.getProperty("listenPort")).intValue();
79 <                } catch (org.omg.CORBA.MARSHAL e) {
80 <                    System.out.println("Caught org.omg.CORBA.MARSHAL, must be a null we got back");
81 <                    System.exit(1);
82 <                }
83 <            }
84 <            logger.write(toString, "configured");
85 <            logger.write(toString, "starting listener");
86 <            
87 <            FilterManagerListener fml = new FilterManagerListener(logger, configurator, port);
88 <            fml.start();
89 <            
90 <            logger.write(toString, "started");
91 <            
92 <        } catch (Exception e) {
93 <            System.err.println("FILTER MANAGER ERROR: " + e);
94 <            e.printStackTrace(System.out);
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 >    
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 >        // This also depends on Filters.. but only when requested.
64 >        // I believe the code is in place to handle that elsewhere.
65 >        try {
66 >            org.omg.CORBA.Object obj;
67 >            obj = _refman.getCORBARef("iscream.Logger");
68 >            obj = _refman.getCORBARef("iscream.ConfigurationManager");
69 >        } catch(ComponentCORBAException e) {
70 >            System.err.println(toString() + ": Dependency Failure: "+e);
71 >            return false;
72          }
73 +        // dependency check suceeded
74 +        return true;
75      }
76 +    
77 +    /**
78 +     * Overrides the {@link java.lang.Object#toString() Object.toString()}
79 +     * method to provide clean logging (every class should have this).
80 +     *
81 +     * This uses the uk.org.iscream.util.NameFormat class
82 +     * to format the toString()
83 +     *
84 +     * @return the name of this class and its CVS revision
85 +     */
86 +    public String toString() {
87 +        return FormatName.getName(
88 +            _name,
89 +            getClass().getName(),
90 +            REVISION);
91 +    }
92  
98 //---CONSTRUCTORS---
99
100 //---PUBLIC METHODS---
101
93   //---PRIVATE METHODS---
94  
95   //---ACCESSOR/MUTATOR METHODS---
96  
97   //---ATTRIBUTES---
98 +
99 +    /**
100 +     * This is the friendly identifier of the
101 +     * component this class is running in.
102 +     * eg, a Filter may be called "filter1",
103 +     * If this class does not have an owning
104 +     * component,  a name from the configuration
105 +     * can be placed here.  This name could also
106 +     * be changed to null for utility classes.
107 +     */
108 +    private String _name = FilterManager.NAME;
109 +
110 +    /**
111 +     * This holds a reference to the
112 +     * system logger that is being used.
113 +     */
114 +    private Logger _logger;
115 +    
116 +    /**
117 +     * A reference to the reference manager in use
118 +     */
119 +    private ReferenceManager _refman = ReferenceManager.getInstance();
120  
121   //---STATIC ATTRIBUTES---
122  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines