blob: 46f1e3d2523bc09c3c75fa9ea2da671c0f5bf0ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
package com.c2kernel.entity.proxy;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.InterruptedIOException;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Iterator;
import com.c2kernel.common.InvalidDataException;
import com.c2kernel.utils.Logger;
import com.c2kernel.utils.server.SocketHandler;
/**************************************************************************
*
* $Revision: 1.18 $
* $Date: 2005/05/10 11:40:09 $
*
* Copyright (C) 2003 CERN - European Organization for Nuclear Research
* All rights reserved.
**************************************************************************/
public class ProxyClientConnection implements SocketHandler {
Socket clientSocket = null;
static int clientId = -1;
int thisClientId;
ArrayList sysKeys;
PrintWriter response;
BufferedReader request;
boolean closing = false;
public ProxyClientConnection() {
super();
thisClientId = ++clientId;
EntityProxyManager.registerProxyClient(this);
Logger.msg(1, "Proxy Client Connection Handler "+thisClientId+" ready.");
}
public String getName() {
return "Proxy Client Connection";
}
public boolean isBusy() {
return clientSocket != null;
}
public synchronized void setSocket(Socket newSocket) {
try {
Logger.msg(1, "Proxy Client Connection "+thisClientId+" connect from "+newSocket.getInetAddress()+":"+newSocket.getPort());
newSocket.setSoTimeout(500);
clientSocket = newSocket;
response = new PrintWriter(clientSocket.getOutputStream(), true);
sysKeys = new ArrayList();
} catch (SocketException ex) {
Logger.msg("Could not set socket timeout:");
Logger.error(ex);
closeSocket();
} catch (IOException ex) {
Logger.msg("Could not setup output stream:");
Logger.error(ex);
closeSocket();
}
}
/**
* Main loop. Reads proxy commands from the client and acts on them.
*/
public void run() {
Thread.currentThread().setName("Proxy Client Connection: "+clientSocket.getInetAddress());
Logger.msg(7, "ProxyClientConnection "+thisClientId+" - Setting up proxy client connection with "+clientSocket.getInetAddress());
try {
request = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
String input = null;
ProxyMessage thisMessage;
while (clientSocket != null) {
try {
input = request.readLine();
Logger.msg(9, "ProxyClientConnection "+thisClientId+" - received "+input);
thisMessage = new ProxyMessage(input);
processMessage(thisMessage);
} catch (InterruptedIOException ex) { //timeout
} catch (InvalidDataException ex) { // invalid proxy message
Logger.error("ProxyClientConnection "+thisClientId+" - Invalid proxy message: "+input);
}
}
} catch (IOException ex) {
if (!closing)
Logger.error("ProxyClientConnection "+thisClientId+" - Error reading from socket.");
}
closeSocket();
Logger.msg(1, "ProxyClientConnection "+thisClientId+" closed.");
}
private void processMessage(ProxyMessage message) throws InvalidDataException {
// proxy disconnection
if (message.getPath().equals(ProxyMessage.BYEPATH)) {
Logger.msg(7, "ProxyClientConnection "+thisClientId+" disconnecting");
closeSocket();
}
// proxy checking connection
else if (message.getPath().equals(ProxyMessage.PINGPATH))
response.println(ProxyMessage.pingMessage);
// new subscription to entity changes
else if (message.getPath().equals(ProxyMessage.ADDPATH)) {
Logger.msg(7, "ProxyClientConnection "+thisClientId+" subscribed to "+message.getSysKey());
synchronized (sysKeys) {
sysKeys.add(new Integer(message.getSysKey()));
}
}
// remove of subscription to entity changes
else if (message.getPath().equals(ProxyMessage.DELPATH)) {
synchronized (sysKeys) {
sysKeys.remove(new Integer(message.getSysKey()));
}
Logger.msg(7, "ProxyClientConnection "+thisClientId+" unsubscribed from "+message.getSysKey());
}
else // unknown message
Logger.error("ProxyClientConnection "+thisClientId+" - Unknown message type: "+message);
}
public synchronized void sendMessage(ProxyMessage message) {
if (clientSocket==null) return; // idle
boolean relevant = message.getSysKey() == ProxyMessage.NA;
synchronized (sysKeys) {
for (Iterator iter = sysKeys.iterator(); iter.hasNext() && !relevant;) {
Integer thisKey = (Integer)iter.next();
if (thisKey.intValue() == message.getSysKey())
relevant = true;
}
}
if (!relevant) return; // not for our client
response.println(message);
}
public void shutdown() {
if (isBusy()) {
closing = true;
Logger.msg("ProxyClientConnection "+thisClientId+" closing.");
closeSocket();
}
}
public String toString() {
if (clientSocket == null) return thisClientId+": idle";
else return thisClientId+": "+clientSocket.getInetAddress();
}
private synchronized void closeSocket() {
if (clientSocket==null) return;
try {
request.close();
response.close();
clientSocket.close();
} catch (IOException e) {
Logger.error("ProxyClientConnection "+thisClientId+" - Could not close socket.");
Logger.error(e);
}
synchronized (sysKeys) {
sysKeys = null;
}
clientSocket = null;
}
}
|