ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/plugins/EnforceEssentialData__Plugin.java
Revision: 1.11
Committed: Mon Dec 10 22:20:23 2001 UTC (22 years, 5 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.10: +4 -4 lines
Log Message:
Some minor javadoc tweaks. The first sentence is now more obvious to the
javadoc parser.

File Contents

# User Rev Content
1 ajm 1.2 //---PACKAGE DECLARATION---
2 tdb 1.10 package uk.org.iscream.cms.server.filter.plugins;
3 ajm 1.2
4     //---IMPORTS---
5 tdb 1.10 import uk.org.iscream.cms.server.filter.PluginFilter;
6     import uk.org.iscream.cms.server.filter.*;
7     import uk.org.iscream.cms.server.core.*;
8     import uk.org.iscream.cms.server.util.*;
9     import uk.org.iscream.cms.server.componentmanager.*;
10 ajm 1.2
11     /**
12 tdb 1.11 * This plugin rejects packets that do not
13     * contain all of the 'essential' data.
14 ajm 1.2 *
15 tdb 1.5 * @author $Author: tdb1 $
16 tdb 1.11 * @version $Id: EnforceEssentialData__Plugin.java,v 1.10 2001/05/29 17:02:35 tdb1 Exp $
17 ajm 1.2 */
18     public class EnforceEssentialData__Plugin implements PluginFilter {
19    
20     //---FINAL ATTRIBUTES---
21    
22     /**
23     * The current CVS revision of this class
24     */
25 tdb 1.11 public final String REVISION = "$Revision: 1.10 $";
26 ajm 1.2
27 tdb 1.5 public final String DESC = "Rejects packets that do not have an ip, machine_name, seq_no, date and type specified as attributes of the root packet tag.";
28 ajm 1.2
29     //---STATIC METHODS---
30    
31     //---CONSTRUCTORS---
32    
33     //---PUBLIC METHODS---
34    
35     // apply the filter and return true if successful.
36     public boolean runFilter(XMLPacket packet){
37 tdb 1.6
38 tdb 1.8 // return true if a heartbeat packet seems ok
39 tdb 1.7 if (packet.getParam("packet.attributes.type").equals("heartbeat")
40 tdb 1.6 && packet.getParam("packet.attributes.date") != null
41     && packet.getParam("packet.attributes.ip") != null
42     && packet.getParam("packet.attributes.machine_name") != null){
43     return true;
44     }
45 ajm 1.2
46 tdb 1.8 // return true if a queueStat packet seems ok
47     if (packet.getParam("packet.attributes.type").equals("queueStat")
48     && packet.getParam("packet.attributes.date") != null
49     && packet.getParam("packet.attributes.name") != null){
50     return true;
51     }
52    
53     // return false if any of the essential data is not present
54     // in a "data" packet
55 ajm 1.2 if (packet.getParam("packet.attributes.machine_name") == null
56     || packet.getParam("packet.attributes.ip") == null
57     || packet.getParam("packet.attributes.seq_no") == null
58 tdb 1.5 || packet.getParam("packet.attributes.date") == null
59     || packet.getParam("packet.attributes.type") == null){
60 ajm 1.2 return false;
61     }
62    
63     // otherwise return true!
64     return true;
65    
66     }
67    
68     /**
69     * Overrides the {@link java.lang.Object#toString() Object.toString()}
70     * method to provide clean logging (every class should have this).
71     *
72 tdb 1.10 * This uses the uk.org.iscream.cms.server.util.NameFormat class
73 ajm 1.2 * to format the toString()
74     *
75     * @return the name of this class and its CVS revision
76     */
77     public String toString() {
78     return FormatName.getName(
79     _name,
80     getClass().getName(),
81     REVISION);
82     }
83    
84     /**
85     * return the String representation of what the filter does
86     */
87     public String getDescription(){
88     return DESC;
89     }
90    
91     //---PRIVATE METHODS---
92    
93     //---ACCESSOR/MUTATOR METHODS---
94    
95     //---ATTRIBUTES---
96    
97     /**
98     * This is the friendly identifier of the
99     * component this class is running in.
100     * eg, a Filter may be called "filter1",
101     * If this class does not have an owning
102     * component, a name from the configuration
103     * can be placed here. This name could also
104     * be changed to null for utility classes.
105     */
106     private String _name = FilterMain.NAME;
107    
108     /**
109     * This holds a reference to the
110     * system logger that is being used.
111     */
112     private Logger _logger = ReferenceManager.getInstance().getLogger();
113    
114     //---STATIC ATTRIBUTES---
115    
116     }