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/TCPReaderInit.java
Revision: 1.15
Committed: Wed Feb 7 13:47:11 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.14: +3 -12 lines
Log Message:
Made use of the autoflush feature of PrintWriter.

File Contents

# User Rev Content
1 tdb 1.1 //---PACKAGE DECLARATION---
2 tdb 1.5 package uk.ac.ukc.iscream.filter;
3 tdb 1.1
4     //---IMPORTS---
5     import uk.ac.ukc.iscream.core.*;
6     import uk.ac.ukc.iscream.filter.*;
7 tdb 1.12 import uk.ac.ukc.iscream.componentmanager.*;
8 tdb 1.1 import java.net.Socket;
9     import java.io.InputStream;
10     import java.io.OutputStream;
11     import java.io.IOException;
12     import java.io.*;
13 ajm 1.9 import uk.ac.ukc.iscream.util.*;
14 tdb 1.1
15     /**
16 ajm 1.10 * This provides Host heartbeat functionality
17 tdb 1.1 *
18 tdb 1.12 * @author $Author: tdb1 $
19 tdb 1.15 * @version $Id: TCPReaderInit.java,v 1.14 2001/02/01 00:18:42 tdb1 Exp $
20 tdb 1.1 */
21     class TCPReaderInit extends Thread {
22    
23     //---FINAL ATTRIBUTES---
24    
25     /**
26     * The current CVS revision of this class
27     */
28 tdb 1.15 public final String REVISION = "$Revision: 1.14 $";
29 tdb 1.1
30     //---STATIC METHODS---
31    
32     //---CONSTRUCTORS---
33 tdb 1.13
34     /**
35     * Construct a new TCPReaderInit.
36     *
37     * @param socket the Socket to which the host is connected
38     * @param queue the Queue to which we'll add data
39     * @throws IOException if something goes badly wrong
40     */
41 tdb 1.11 public TCPReaderInit(Socket socket, Queue queue) throws IOException {
42 tdb 1.1 _socket = socket;
43 tdb 1.11 _queue = queue;
44 tdb 1.13 // setup the reader & writer
45 tdb 1.1 _socketIn = new BufferedReader(new InputStreamReader(_socket.getInputStream()));
46 tdb 1.15 _socketOut = new PrintWriter(_socket.getOutputStream(), true);
47 tdb 1.8 _logger.write(toString(), Logger.SYSINIT, "created");
48 tdb 1.1 }
49    
50     //---PUBLIC METHODS---
51 tdb 1.13
52     /**
53     * Main run method. Will communicate with the host, inform it
54     * if any updates to it's configuration are needed, and send
55     * a heartbeat packet into the system.
56     */
57 tdb 1.1 public void run() {
58     try {
59 tdb 1.3 //variables
60     String filelist = "";
61     String lastModified = "";
62     String inBound = "";
63 tdb 1.2
64 tdb 1.3 inBound = _socketIn.readLine();
65     if(!inBound.equals("HEARTBEAT")) {
66     _socketOut.println("ERROR");
67     throw new IOException("protocol error - expecting:HEARTBEAT got:" + inBound);
68     } else {
69     _socketOut.println("OK");
70     }
71    
72     inBound = _socketIn.readLine();
73     if(!inBound.equals("CONFIG")) {
74     _socketOut.println("ERROR");
75     throw new IOException("protocol error - expecting:CONFIG got:" + inBound);
76     } else {
77     _socketOut.println("OK");
78     }
79    
80     inBound = _socketIn.readLine();
81     filelist = inBound;
82     _socketOut.println("OK");
83    
84     inBound = _socketIn.readLine();
85     lastModified = inBound;
86    
87     boolean newConfig = _configManager.isModified(filelist, Long.parseLong(lastModified));
88    
89     if(newConfig) {
90     _socketOut.println("ERROR");
91     }
92     else {
93     _socketOut.println("OK");
94     }
95    
96     inBound = _socketIn.readLine();
97     if(!inBound.equals("ENDHEARTBEAT")) {
98     _socketOut.println("ERROR");
99     throw new IOException("protocol error - expecting:ENDHEARTBEAT got:" + inBound);
100     } else {
101     _socketOut.println("OK");
102     }
103 tdb 1.4
104 tdb 1.6 String date = new Long(System.currentTimeMillis()).toString();
105     String hostname = _socket.getInetAddress().getHostName();
106     String ipadd = _socket.getInetAddress().getHostAddress();
107     String xml = "<packet type=\"heartbeat\" machine_name=\""+hostname+"\" date=\""+date+"\" ip=\""+ipadd+"\"></packet>";
108    
109 tdb 1.11 _queue.add(xml);
110 tdb 1.1
111     } catch (Exception e) {
112 tdb 1.8 _logger.write(toString(), Logger.ERROR, "ERROR: " + e.getMessage());
113 tdb 1.1 }
114    
115     // Disconnect streams & socket
116     try {
117     _socketIn.close();
118     _socketOut.close();
119     _socket.close();
120     } catch (IOException e) {
121 tdb 1.8 _logger.write(toString(), Logger.ERROR, "exception on socket close");
122 tdb 1.1 }
123 tdb 1.14 _logger.write(toString(), Logger.DEBUG, "finished");
124 tdb 1.1 }
125    
126     /**
127     * Overrides the {@link java.lang.Object#toString() Object.toString()}
128     * method to provide clean logging (every class should have this).
129     *
130 ajm 1.10 * This uses the uk.ac.ukc.iscream.util.NameFormat class
131     * to format the toString()
132     *
133 tdb 1.1 * @return the name of this class and its CVS revision
134     */
135     public String toString() {
136 ajm 1.10 return FormatName.getName(
137     _name,
138     getClass().getName(),
139     REVISION);
140 tdb 1.1 }
141    
142     //---PRIVATE METHODS---
143    
144     //---ACCESSOR/MUTATOR METHODS---
145    
146     //---ATTRIBUTES---
147    
148 ajm 1.10 /**
149     * A reference to the configuration manager
150     */
151 tdb 1.8 ConfigurationManager _configManager = ReferenceManager.getInstance().getCM();
152 ajm 1.10
153     /**
154     * This is the friendly identifier of the
155     * component this class is running in.
156     * eg, a Filter may be called "filter1",
157     * If this class does not have an owning
158     * component, a name from the configuration
159     * can be placed here. This name could also
160     * be changed to null for utility classes.
161     */
162     private String _name = FilterMain.NAME;
163    
164     /**
165     * This holds a reference to the
166     * system logger that is being used.
167     */
168     private Logger _logger = ReferenceManager.getInstance().getLogger();
169    
170     /**
171     * The socket we are talking on
172     */
173 tdb 1.1 Socket _socket;
174 ajm 1.10
175     /**
176     * The input from the socket
177     */
178 tdb 1.1 BufferedReader _socketIn;
179 ajm 1.10
180     /**
181     * The output from the socket
182     */
183 tdb 1.1 PrintWriter _socketOut;
184 ajm 1.10
185     /**
186 tdb 1.11 * A reference to our Queue
187 ajm 1.10 */
188 tdb 1.11 Queue _queue;
189 tdb 1.1 //---STATIC ATTRIBUTES---
190    
191     }