Commit | Line | Data |
---|---|---|
8537d55a NR |
1 | package be.nikiroo.utils.serial.server; |
2 | ||
08f80ac5 | 3 | import java.io.ByteArrayInputStream; |
8537d55a | 4 | import java.io.IOException; |
08f80ac5 | 5 | import java.io.InputStream; |
452f38c8 | 6 | import java.lang.reflect.Array; |
8537d55a | 7 | import java.net.Socket; |
f4053377 | 8 | import java.net.UnknownHostException; |
8537d55a | 9 | |
452f38c8 | 10 | import be.nikiroo.utils.StringUtils; |
8537d55a | 11 | import be.nikiroo.utils.TraceHandler; |
3087aeb5 | 12 | import be.nikiroo.utils.Version; |
8537d55a NR |
13 | import be.nikiroo.utils.serial.Importer; |
14 | ||
15 | /** | |
16 | * This class implements a simple server that can bridge two other | |
17 | * {@link Server}s. | |
18 | * <p> | |
19 | * It can, of course, inspect the data that goes through it (by default, it | |
20 | * prints traces of the data). | |
21 | * <p> | |
22 | * Note: this {@link ServerBridge} has to be discarded after use (cannot be | |
23 | * started twice). | |
24 | * | |
25 | * @author niki | |
26 | */ | |
27 | public class ServerBridge extends Server { | |
28 | private final String forwardToHost; | |
29 | private final int forwardToPort; | |
8468bb79 | 30 | private final String forwardToKey; |
8537d55a NR |
31 | |
32 | /** | |
33 | * Create a new server that will start listening on the network when | |
34 | * {@link ServerBridge#start()} is called. | |
35 | * | |
36 | * @param port | |
37 | * the port to listen on, or 0 to assign any unallocated port | |
38 | * found (which can later on be queried via | |
39 | * {@link ServerBridge#getPort()} | |
8468bb79 NR |
40 | * @param key |
41 | * an optional key to encrypt all the communications (if NULL, | |
42 | * everything will be sent in clear text) | |
452f38c8 NR |
43 | * @param forwardToHost |
44 | * the host server to forward the calls to | |
45 | * @param forwardToPort | |
46 | * the host port to forward the calls to | |
8468bb79 NR |
47 | * @param forwardToKey |
48 | * an optional key to encrypt all the communications (if NULL, | |
49 | * everything will be sent in clear text) | |
8537d55a NR |
50 | * |
51 | * @throws IOException | |
52 | * in case of I/O error | |
f4053377 NR |
53 | * @throws UnknownHostException |
54 | * if the IP address of the host could not be determined | |
55 | * @throws IllegalArgumentException | |
56 | * if the port parameter is outside the specified range of valid | |
57 | * port values, which is between 0 and 65535, inclusive | |
8537d55a | 58 | */ |
8468bb79 NR |
59 | public ServerBridge(int port, String key, String forwardToHost, |
60 | int forwardToPort, String forwardToKey) throws IOException { | |
61 | super(port, key); | |
8537d55a NR |
62 | this.forwardToHost = forwardToHost; |
63 | this.forwardToPort = forwardToPort; | |
8468bb79 | 64 | this.forwardToKey = forwardToKey; |
8537d55a NR |
65 | } |
66 | ||
67 | /** | |
68 | * Create a new server that will start listening on the network when | |
69 | * {@link ServerBridge#start()} is called. | |
70 | * | |
71 | * @param name | |
72 | * the server name (only used for debug info and traces) | |
73 | * @param port | |
74 | * the port to listen on | |
8468bb79 NR |
75 | * @param key |
76 | * an optional key to encrypt all the communications (if NULL, | |
77 | * everything will be sent in clear text) | |
452f38c8 NR |
78 | * @param forwardToHost |
79 | * the host server to forward the calls to | |
80 | * @param forwardToPort | |
81 | * the host port to forward the calls to | |
8468bb79 NR |
82 | * @param forwardToKey |
83 | * an optional key to encrypt all the communications (if NULL, | |
84 | * everything will be sent in clear text) use an SSL connection | |
85 | * for the forward server or not | |
8537d55a NR |
86 | * |
87 | * @throws IOException | |
88 | * in case of I/O error | |
f4053377 NR |
89 | * @throws UnknownHostException |
90 | * if the IP address of the host could not be determined | |
91 | * @throws IllegalArgumentException | |
92 | * if the port parameter is outside the specified range of valid | |
93 | * port values, which is between 0 and 65535, inclusive | |
8537d55a | 94 | */ |
8468bb79 NR |
95 | public ServerBridge(String name, int port, String key, |
96 | String forwardToHost, int forwardToPort, String forwardToKey) | |
8537d55a | 97 | throws IOException { |
8468bb79 | 98 | super(name, port, key); |
8537d55a NR |
99 | this.forwardToHost = forwardToHost; |
100 | this.forwardToPort = forwardToPort; | |
8468bb79 | 101 | this.forwardToKey = forwardToKey; |
8537d55a NR |
102 | } |
103 | ||
104 | /** | |
105 | * The traces handler for this {@link Server}. | |
106 | * <p> | |
452f38c8 | 107 | * The trace levels are handled as follow: |
8537d55a | 108 | * <ul> |
452f38c8 NR |
109 | * <li>1: it will only print basic IN/OUT messages with length</li> |
110 | * <li>2: it will try to interpret it as an object (SLOW) and print the | |
111 | * object class if possible</li> | |
112 | * <li>3: it will try to print the {@link Object#toString()} value, or the | |
113 | * data if it is not an object</li> | |
114 | * <li>4: it will also print the unzipped serialised value if it is an | |
115 | * object</li> | |
8537d55a NR |
116 | * </ul> |
117 | * | |
118 | * @param tracer | |
119 | * the new traces handler | |
120 | */ | |
121 | @Override | |
122 | public void setTraceHandler(TraceHandler tracer) { | |
123 | super.setTraceHandler(tracer); | |
124 | } | |
125 | ||
126 | @Override | |
127 | protected ConnectActionServer createConnectActionServer(Socket s) { | |
08f80ac5 | 128 | // Bad impl, not up to date (should work, but not efficient) |
8468bb79 | 129 | return new ConnectActionServerString(s, key) { |
8537d55a | 130 | @Override |
3087aeb5 NR |
131 | public void action(Version clientVersion) throws Exception { |
132 | onClientContact(clientVersion); | |
8537d55a NR |
133 | final ConnectActionServerString bridge = this; |
134 | ||
f4053377 NR |
135 | try { |
136 | new ConnectActionClientString(forwardToHost, forwardToPort, | |
08f80ac5 | 137 | forwardToKey) { |
f4053377 | 138 | @Override |
3087aeb5 NR |
139 | public void action(Version serverVersion) |
140 | throws Exception { | |
141 | onServerContact(serverVersion); | |
8537d55a | 142 | |
f4053377 NR |
143 | for (String fromClient = bridge.rec(); fromClient != null; fromClient = bridge |
144 | .rec()) { | |
08f80ac5 | 145 | onRec(fromClient); |
f4053377 | 146 | String fromServer = send(fromClient); |
08f80ac5 | 147 | onSend(fromServer); |
f4053377 NR |
148 | bridge.send(fromServer); |
149 | } | |
d827da2a | 150 | |
f4053377 NR |
151 | getTraceHandler().trace("=== DONE", 1); |
152 | getTraceHandler().trace("", 1); | |
153 | } | |
0ff71477 | 154 | |
f4053377 NR |
155 | @Override |
156 | protected void onError(Exception e) { | |
157 | ServerBridge.this.onError(e); | |
158 | } | |
159 | }.connect(); | |
160 | } catch (Exception e) { | |
161 | ServerBridge.this.onError(e); | |
162 | } | |
8537d55a NR |
163 | } |
164 | }; | |
165 | } | |
166 | ||
167 | /** | |
168 | * This is the method that is called each time a client contact us. | |
8537d55a | 169 | */ |
3087aeb5 NR |
170 | protected void onClientContact(Version clientVersion) { |
171 | getTraceHandler().trace(">>> CLIENT " + clientVersion); | |
8537d55a NR |
172 | } |
173 | ||
174 | /** | |
175 | * This is the method that is called each time a client contact us. | |
8537d55a | 176 | */ |
3087aeb5 NR |
177 | protected void onServerContact(Version serverVersion) { |
178 | getTraceHandler().trace("<<< SERVER " + serverVersion); | |
217a3310 | 179 | getTraceHandler().trace(""); |
8537d55a NR |
180 | } |
181 | ||
182 | /** | |
183 | * This is the method that is called each time a client contact us. | |
184 | * | |
8537d55a NR |
185 | * @param data |
186 | * the data sent by the client | |
187 | */ | |
08f80ac5 NR |
188 | protected void onRec(String data) { |
189 | trace(">>> CLIENT", data); | |
8537d55a NR |
190 | } |
191 | ||
192 | /** | |
193 | * This is the method that is called each time the forwarded server contact | |
194 | * us. | |
195 | * | |
8537d55a NR |
196 | * @param data |
197 | * the data sent by the client | |
198 | */ | |
08f80ac5 NR |
199 | protected void onSend(String data) { |
200 | trace("<<< SERVER", data); | |
8537d55a NR |
201 | } |
202 | ||
340e6065 NR |
203 | @Override |
204 | protected ConnectActionClient getConnectionToMe() | |
205 | throws UnknownHostException, IOException { | |
206 | return new ConnectActionClientString(new Socket((String) null, | |
207 | getPort()), key); | |
208 | } | |
209 | ||
f4053377 NR |
210 | @Override |
211 | public void run() { | |
212 | getTraceHandler().trace( | |
213 | getName() + ": will forward to " + forwardToHost + ":" | |
214 | + forwardToPort + " (" | |
8468bb79 NR |
215 | + (forwardToKey != null ? "encrypted" : "plain text") |
216 | + ")"); | |
f4053377 NR |
217 | super.run(); |
218 | } | |
219 | ||
8537d55a NR |
220 | /** |
221 | * Trace the data with the given prefix. | |
222 | * | |
223 | * @param prefix | |
224 | * the prefix (client, server, version...) | |
225 | * @param data | |
226 | * the data to trace | |
227 | */ | |
228 | private void trace(String prefix, String data) { | |
f8f2afb4 | 229 | int size = data == null ? 0 : data.length(); |
8468bb79 | 230 | String ssize = StringUtils.formatNumber(size) + "bytes"; |
452f38c8 NR |
231 | |
232 | getTraceHandler().trace(prefix + ": " + ssize, 1); | |
8537d55a NR |
233 | |
234 | if (getTraceHandler().getTraceLevel() >= 2) { | |
235 | try { | |
a359464f NR |
236 | while (data.startsWith("ZIP:") || data.startsWith("B64:")) { |
237 | if (data.startsWith("ZIP:")) { | |
a6a73de3 | 238 | data = StringUtils.unzip64s(data.substring(4)); |
a359464f | 239 | } else if (data.startsWith("B64:")) { |
a6a73de3 | 240 | data = StringUtils.unzip64s(data.substring(4)); |
a359464f | 241 | } |
452f38c8 NR |
242 | } |
243 | ||
08f80ac5 | 244 | InputStream stream = new ByteArrayInputStream( |
f8147a0e | 245 | StringUtils.getBytes(data)); |
08f80ac5 NR |
246 | try { |
247 | Object obj = new Importer().read(stream).getValue(); | |
248 | if (obj == null) { | |
249 | getTraceHandler().trace("NULL", 2); | |
250 | getTraceHandler().trace("NULL", 3); | |
251 | getTraceHandler().trace("NULL", 4); | |
452f38c8 | 252 | } else { |
08f80ac5 NR |
253 | if (obj.getClass().isArray()) { |
254 | getTraceHandler().trace( | |
255 | "(" + obj.getClass() + ") with " | |
256 | + Array.getLength(obj) | |
257 | + "element(s)", 3); | |
258 | } else { | |
259 | getTraceHandler().trace("(" + obj.getClass() + ")", | |
260 | 2); | |
261 | } | |
262 | getTraceHandler().trace("" + obj.toString(), 3); | |
263 | getTraceHandler().trace(data, 4); | |
452f38c8 | 264 | } |
08f80ac5 NR |
265 | } finally { |
266 | stream.close(); | |
8537d55a | 267 | } |
452f38c8 NR |
268 | } catch (NoSuchMethodException e) { |
269 | getTraceHandler().trace("(not an object)", 2); | |
270 | getTraceHandler().trace(data, 3); | |
271 | getTraceHandler().trace("", 4); | |
272 | } catch (NoSuchFieldException e) { | |
273 | getTraceHandler().trace( | |
217a3310 | 274 | "(incompatible: " + e.getMessage() + ")", 2); |
452f38c8 NR |
275 | getTraceHandler().trace(data, 3); |
276 | getTraceHandler().trace("", 4); | |
277 | } catch (ClassNotFoundException e) { | |
278 | getTraceHandler().trace( | |
279 | "(unknown object: " + e.getMessage() + ")", 2); | |
280 | getTraceHandler().trace(data, 3); | |
281 | getTraceHandler().trace("", 4); | |
8537d55a | 282 | } catch (Exception e) { |
217a3310 NR |
283 | getTraceHandler().trace( |
284 | "(decode error: " + e.getMessage() + ")", 2); | |
452f38c8 NR |
285 | getTraceHandler().trace(data, 3); |
286 | getTraceHandler().trace("", 4); | |
8537d55a NR |
287 | } |
288 | ||
452f38c8 | 289 | getTraceHandler().trace("", 2); |
8537d55a NR |
290 | } |
291 | } | |
8537d55a | 292 | } |