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/FilterInfoServant.java
Revision: 1.6
Committed: Sun Aug 1 10:40:58 2004 UTC (19 years, 9 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +3 -3 lines
Error occurred while calculating annotation data.
Log Message:
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

File Contents

# Content
1 /*
2 * i-scream central monitoring system
3 * http://www.i-scream.org
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 //---PACKAGE DECLARATION---
22 package uk.org.iscream.cms.server.filter;
23
24 //---IMPORTS---
25 import uk.org.iscream.cms.server.core.*;
26 import uk.org.iscream.cms.server.componentmanager.*;
27 import uk.org.iscream.cms.server.filter.*;
28 import uk.org.iscream.cms.util.*;
29 import java.net.InetAddress;
30
31 /**
32 * Provides info about Filter's to other parts of the system.
33 *
34 * @author $Author: tdb $
35 * @version $Id: FilterInfoServant.java,v 1.5 2003/02/24 20:18:49 tdb Exp $
36 */
37 class FilterInfoServant extends FilterInfoPOA {
38
39 //---FINAL ATTRIBUTES---
40
41 /**
42 * The current CVS revision of this class
43 */
44 public final String REVISION = "$Revision: 1.5 $";
45
46 //---STATIC METHODS---
47
48 //---CONSTRUCTORS---
49
50 /**
51 * Creates a new FilterServant.
52 *
53 * @param UDPListenPort the UDP port this filter is listening on
54 */
55 public FilterInfoServant(int UDPListenPort) {
56 _UDPListenPort = UDPListenPort;
57 _logger.write(toString(), Logger.SYSINIT, "started");
58 }
59
60 //---PUBLIC METHODS---
61
62 /**
63 * Overrides the {@link java.lang.Object#toString() Object.toString()}
64 * method to provide clean logging (every class should have this).
65 *
66 * This uses the uk.org.iscream.cms.util.NameFormat class
67 * to format the toString()
68 *
69 * @return the name of this class and its CVS revision
70 */
71 public String toString() {
72 return FormatName.getName(
73 _name,
74 getClass().getName(),
75 REVISION);
76 }
77
78 //---PRIVATE METHODS---
79
80 //---ACCESSOR/MUTATOR METHODS---
81
82 /**
83 * Provides information to the FilterManager
84 */
85 public String getUDPPort() {
86 return new Integer(_UDPListenPort).toString();
87 }
88
89 /**
90 * Provides information to the FilterManager
91 */
92 public String getHostName() {
93 try {
94 // hacky fix for windows boxes, where getHostName() returns the NetBIOS name !
95 return InetAddress.getByName(InetAddress.getLocalHost().getHostAddress()).getHostName();
96 } catch (java.net.UnknownHostException e) {
97 _logger.write(toString(), Logger.ERROR, e.getMessage());
98 }
99 return null;
100 }
101
102 //---ATTRIBUTES---
103
104 /**
105 * This is the friendly identifier of the
106 * component this class is running in.
107 * eg, a Filter may be called "filter1",
108 * If this class does not have an owning
109 * component, a name from the configuration
110 * can be placed here. This name could also
111 * be changed to null for utility classes.
112 */
113 private String _name = FilterMain.NAME;
114
115 /**
116 * This holds a reference to the
117 * system logger that is being used.
118 */
119 private Logger _logger = ReferenceManager.getInstance().getLogger();
120
121 /**
122 * The UDP port we're listening on
123 */
124 private int _UDPListenPort;
125
126 //---STATIC ATTRIBUTES---
127
128 }