Recognized “SubscribedUSK” event
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / FcpConnection.java
1 /*
2  * jFCPlib - FpcConnection.java - Copyright © 2008 David Roden
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package net.pterodactylus.fcp;
20
21 import java.io.Closeable;
22 import java.io.FilterInputStream;
23 import java.io.IOException;
24 import java.io.InputStream;
25 import java.io.OutputStream;
26 import java.net.InetAddress;
27 import java.net.Socket;
28 import java.net.UnknownHostException;
29 import java.util.Collections;
30 import java.util.HashMap;
31 import java.util.Map;
32 import java.util.logging.Logger;
33
34 /**
35  * An FCP connection to a Freenet node.
36  *
37  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
38  */
39 public class FcpConnection implements Closeable {
40
41         /** Logger. */
42         private static final Logger logger = Logger.getLogger(FcpConnection.class.getName());
43
44         /** The default port for FCP v2. */
45         public static final int DEFAULT_PORT = 9481;
46
47         /** Listener management. */
48         private final FcpListenerManager fcpListenerManager = new FcpListenerManager(this);
49
50         /** The address of the node. */
51         private final InetAddress address;
52
53         /** The port number of the node’s FCP port. */
54         private final int port;
55
56         /** The remote socket. */
57         private Socket remoteSocket;
58
59         /** The input stream from the node. */
60         private InputStream remoteInputStream;
61
62         /** The output stream to the node. */
63         private OutputStream remoteOutputStream;
64
65         /** The connection handler. */
66         private FcpConnectionHandler connectionHandler;
67
68         /** Incoming message statistics. */
69         private static final Map<String, Integer> incomingMessageStatistics = Collections.synchronizedMap(new HashMap<String, Integer>());
70
71         /**
72          * Creates a new FCP connection to the freenet node running on localhost,
73          * using the default port.
74          *
75          * @throws UnknownHostException
76          *             if the hostname can not be resolved
77          */
78         public FcpConnection() throws UnknownHostException {
79                 this(InetAddress.getLocalHost());
80         }
81
82         /**
83          * Creates a new FCP connection to the Freenet node running on the given
84          * host, listening on the default port.
85          *
86          * @param host
87          *            The hostname of the Freenet node
88          * @throws UnknownHostException
89          *             if <code>host</code> can not be resolved
90          */
91         public FcpConnection(String host) throws UnknownHostException {
92                 this(host, DEFAULT_PORT);
93         }
94
95         /**
96          * Creates a new FCP connection to the Freenet node running on the given
97          * host, listening on the given port.
98          *
99          * @param host
100          *            The hostname of the Freenet node
101          * @param port
102          *            The port number of the node’s FCP port
103          * @throws UnknownHostException
104          *             if <code>host</code> can not be resolved
105          */
106         public FcpConnection(String host, int port) throws UnknownHostException {
107                 this(InetAddress.getByName(host), port);
108         }
109
110         /**
111          * Creates a new FCP connection to the Freenet node running at the given
112          * address, listening on the default port.
113          *
114          * @param address
115          *            The address of the Freenet node
116          */
117         public FcpConnection(InetAddress address) {
118                 this(address, DEFAULT_PORT);
119         }
120
121         /**
122          * Creates a new FCP connection to the Freenet node running at the given
123          * address, listening on the given port.
124          *
125          * @param address
126          *            The address of the Freenet node
127          * @param port
128          *            The port number of the node’s FCP port
129          */
130         public FcpConnection(InetAddress address, int port) {
131                 this.address = address;
132                 this.port = port;
133         }
134
135         //
136         // LISTENER MANAGEMENT
137         //
138
139         /**
140          * Adds the given listener to the list of listeners.
141          *
142          * @param fcpListener
143          *            The listener to add
144          */
145         public void addFcpListener(FcpListener fcpListener) {
146                 fcpListenerManager.addListener(fcpListener);
147         }
148
149         /**
150          * Removes the given listener from the list of listeners.
151          *
152          * @param fcpListener
153          *            The listener to remove
154          */
155         public void removeFcpListener(FcpListener fcpListener) {
156                 fcpListenerManager.removeListener(fcpListener);
157         }
158
159         //
160         // ACTIONS
161         //
162
163         /**
164          * Connects to the node.
165          *
166          * @throws IOException
167          *             if an I/O error occurs
168          * @throws IllegalStateException
169          *             if there is already a connection to the node
170          */
171         public synchronized void connect() throws IOException, IllegalStateException {
172                 if (connectionHandler != null) {
173                         throw new IllegalStateException("already connected, disconnect first");
174                 }
175                 logger.info("connecting to " + address + ":" + port + "…");
176                 remoteSocket = new Socket(address, port);
177                 remoteInputStream = remoteSocket.getInputStream();
178                 remoteOutputStream = remoteSocket.getOutputStream();
179                 new Thread(connectionHandler = new FcpConnectionHandler(this, remoteInputStream)).start();
180         }
181
182         /**
183          * Disconnects from the node. If there is no connection to the node, this
184          * method does nothing.
185          *
186          * @deprecated Use {@link #close()} instead
187          */
188         @Deprecated
189         public synchronized void disconnect() {
190                 close();
191         }
192
193         /**
194          * Closes the connection. If there is no connection to the node, this
195          * method does nothing.
196          */
197         @Override
198         public void close() {
199                 handleDisconnect(null);
200         }
201
202         /**
203          * Sends the given FCP message.
204          *
205          * @param fcpMessage
206          *            The FCP message to send
207          * @throws IOException
208          *             if an I/O error occurs
209          */
210         public synchronized void sendMessage(FcpMessage fcpMessage) throws IOException {
211                 logger.fine("sending message: " + fcpMessage.getName());
212                 fcpMessage.write(remoteOutputStream);
213         }
214
215         //
216         // PACKAGE-PRIVATE METHODS
217         //
218
219         /**
220          * Handles the given message, notifying listeners. This message should only
221          * be called by {@link FcpConnectionHandler}.
222          *
223          * @param fcpMessage
224          *            The received message
225          */
226         void handleMessage(FcpMessage fcpMessage) {
227                 logger.fine("received message: " + fcpMessage.getName());
228                 String messageName = fcpMessage.getName();
229                 countMessage(messageName);
230                 if ("SimpleProgress".equals(messageName)) {
231                         fcpListenerManager.fireReceivedSimpleProgress(new SimpleProgress(fcpMessage));
232                 } else if ("ProtocolError".equals(messageName)) {
233                         fcpListenerManager.fireReceivedProtocolError(new ProtocolError(fcpMessage));
234                 } else if ("PersistentGet".equals(messageName)) {
235                         fcpListenerManager.fireReceivedPersistentGet(new PersistentGet(fcpMessage));
236                 } else if ("PersistentPut".equals(messageName)) {
237                         fcpListenerManager.fireReceivedPersistentPut(new PersistentPut(fcpMessage));
238                 } else if ("PersistentPutDir".equals(messageName)) {
239                         fcpListenerManager.fireReceivedPersistentPutDir(new PersistentPutDir(fcpMessage));
240                 } else if ("URIGenerated".equals(messageName)) {
241                         fcpListenerManager.fireReceivedURIGenerated(new URIGenerated(fcpMessage));
242                 } else if ("EndListPersistentRequests".equals(messageName)) {
243                         fcpListenerManager.fireReceivedEndListPersistentRequests(new EndListPersistentRequests(fcpMessage));
244                 } else if ("Peer".equals(messageName)) {
245                         fcpListenerManager.fireReceivedPeer(new Peer(fcpMessage));
246                 } else if ("PeerNote".equals(messageName)) {
247                         fcpListenerManager.fireReceivedPeerNote(new PeerNote(fcpMessage));
248                 } else if ("StartedCompression".equals(messageName)) {
249                         fcpListenerManager.fireReceivedStartedCompression(new StartedCompression(fcpMessage));
250                 } else if ("FinishedCompression".equals(messageName)) {
251                         fcpListenerManager.fireReceivedFinishedCompression(new FinishedCompression(fcpMessage));
252                 } else if ("GetFailed".equals(messageName)) {
253                         fcpListenerManager.fireReceivedGetFailed(new GetFailed(fcpMessage));
254                 } else if ("PutFetchable".equals(messageName)) {
255                         fcpListenerManager.fireReceivedPutFetchable(new PutFetchable(fcpMessage));
256                 } else if ("PutSuccessful".equals(messageName)) {
257                         fcpListenerManager.fireReceivedPutSuccessful(new PutSuccessful(fcpMessage));
258                 } else if ("PutFailed".equals(messageName)) {
259                         fcpListenerManager.fireReceivedPutFailed(new PutFailed(fcpMessage));
260                 } else if ("DataFound".equals(messageName)) {
261                         fcpListenerManager.fireReceivedDataFound(new DataFound(fcpMessage));
262                 } else if ("SubscribedUSKUpdate".equals(messageName)) {
263                         fcpListenerManager.fireReceivedSubscribedUSKUpdate(new SubscribedUSKUpdate(fcpMessage));
264                 } else if ("SubscribedUSK".equals(messageName)) {
265                         fcpListenerManager.fireReceivedSubscribedUSK(new SubscribedUSK(fcpMessage));
266                 } else if ("IdentifierCollision".equals(messageName)) {
267                         fcpListenerManager.fireReceivedIdentifierCollision(new IdentifierCollision(fcpMessage));
268                 } else if ("AllData".equals(messageName)) {
269                         LimitedInputStream payloadInputStream = getInputStream(FcpUtils.safeParseLong(fcpMessage.getField("DataLength")));
270                         fcpListenerManager.fireReceivedAllData(new AllData(fcpMessage, payloadInputStream));
271                         try {
272                                 payloadInputStream.consume();
273                         } catch (IOException ioe1) {
274                                 /* well, ignore. when the connection handler fails, all fails. */
275                         }
276                 } else if ("EndListPeerNotes".equals(messageName)) {
277                         fcpListenerManager.fireReceivedEndListPeerNotes(new EndListPeerNotes(fcpMessage));
278                 } else if ("EndListPeers".equals(messageName)) {
279                         fcpListenerManager.fireReceivedEndListPeers(new EndListPeers(fcpMessage));
280                 } else if ("SSKKeypair".equals(messageName)) {
281                         fcpListenerManager.fireReceivedSSKKeypair(new SSKKeypair(fcpMessage));
282                 } else if ("PeerRemoved".equals(messageName)) {
283                         fcpListenerManager.fireReceivedPeerRemoved(new PeerRemoved(fcpMessage));
284                 } else if ("PersistentRequestModified".equals(messageName)) {
285                         fcpListenerManager.fireReceivedPersistentRequestModified(new PersistentRequestModified(fcpMessage));
286                 } else if ("PersistentRequestRemoved".equals(messageName)) {
287                         fcpListenerManager.fireReceivedPersistentRequestRemoved(new PersistentRequestRemoved(fcpMessage));
288                 } else if ("UnknownPeerNoteType".equals(messageName)) {
289                         fcpListenerManager.fireReceivedUnknownPeerNoteType(new UnknownPeerNoteType(fcpMessage));
290                 } else if ("UnknownNodeIdentifier".equals(messageName)) {
291                         fcpListenerManager.fireReceivedUnknownNodeIdentifier(new UnknownNodeIdentifier(fcpMessage));
292                 } else if ("FCPPluginReply".equals(messageName)) {
293                         LimitedInputStream payloadInputStream = getInputStream(FcpUtils.safeParseLong(fcpMessage.getField("DataLength")));
294                         fcpListenerManager.fireReceivedFCPPluginReply(new FCPPluginReply(fcpMessage, payloadInputStream));
295                         try {
296                                 payloadInputStream.consume();
297                         } catch (IOException ioe1) {
298                                 /* ignore. */
299                         }
300                 } else if ("PluginInfo".equals(messageName)) {
301                         fcpListenerManager.fireReceivedPluginInfo(new PluginInfo(fcpMessage));
302                 } else if ("PluginRemoved".equals(messageName)) {
303                         fcpListenerManager.fireReceivedPluginRemoved(new PluginRemoved(fcpMessage));
304                 } else if ("NodeData".equals(messageName)) {
305                         fcpListenerManager.fireReceivedNodeData(new NodeData(fcpMessage));
306                 } else if ("TestDDAReply".equals(messageName)) {
307                         fcpListenerManager.fireReceivedTestDDAReply(new TestDDAReply(fcpMessage));
308                 } else if ("TestDDAComplete".equals(messageName)) {
309                         fcpListenerManager.fireReceivedTestDDAComplete(new TestDDAComplete(fcpMessage));
310                 } else if ("ConfigData".equals(messageName)) {
311                         fcpListenerManager.fireReceivedConfigData(new ConfigData(fcpMessage));
312                 } else if ("NodeHello".equals(messageName)) {
313                         fcpListenerManager.fireReceivedNodeHello(new NodeHello(fcpMessage));
314                 } else if ("CloseConnectionDuplicateClientName".equals(messageName)) {
315                         fcpListenerManager.fireReceivedCloseConnectionDuplicateClientName(new CloseConnectionDuplicateClientName(fcpMessage));
316                 } else if ("SentFeed".equals(messageName)) {
317                         fcpListenerManager.fireSentFeed(new SentFeed(fcpMessage));
318                 } else if ("ReceivedBookmarkFeed".equals(messageName)) {
319                         fcpListenerManager.fireReceivedBookmarkFeed(new ReceivedBookmarkFeed(fcpMessage));
320                 } else {
321                         fcpListenerManager.fireMessageReceived(fcpMessage);
322                 }
323         }
324
325         /**
326          * Handles a disconnect from the node.
327          *
328          * @param throwable
329          *            The exception that caused the disconnect, or
330          *            <code>null</code> if there was no exception
331          */
332         synchronized void handleDisconnect(Throwable throwable) {
333                 FcpUtils.close(remoteInputStream);
334                 FcpUtils.close(remoteOutputStream);
335                 FcpUtils.close(remoteSocket);
336                 if (connectionHandler != null) {
337                         connectionHandler.stop();
338                         connectionHandler = null;
339                         fcpListenerManager.fireConnectionClosed(throwable);
340                 }
341         }
342
343         //
344         // PRIVATE METHODS
345         //
346
347         /**
348          * Incremets the counter in {@link #incomingMessageStatistics} by
349          * <cod>1</code> for the given message name.
350          *
351          * @param name
352          *            The name of the message to count
353          */
354         private void countMessage(String name) {
355                 int oldValue = 0;
356                 if (incomingMessageStatistics.containsKey(name)) {
357                         oldValue = incomingMessageStatistics.get(name);
358                 }
359                 incomingMessageStatistics.put(name, oldValue + 1);
360                 logger.finest("count for " + name + ": " + (oldValue + 1));
361         }
362
363         /**
364          * Returns a limited input stream from the node’s input stream.
365          *
366          * @param dataLength
367          *            The length of the stream
368          * @return The limited input stream
369          */
370         private synchronized LimitedInputStream getInputStream(long dataLength) {
371                 if (dataLength <= 0) {
372                         return new LimitedInputStream(null, 0);
373                 }
374                 return new LimitedInputStream(remoteInputStream, dataLength);
375         }
376
377         /**
378          * A wrapper around an {@link InputStream} that only supplies a limit
379          * number of bytes from the underlying input stream.
380          *
381          * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
382          */
383         private static class LimitedInputStream extends FilterInputStream {
384
385                 /** The remaining number of bytes that can be read. */
386                 private long remaining;
387
388                 /**
389                  * Creates a new LimitedInputStream that supplies at most
390                  * <code>length</code> bytes from the given input stream.
391                  *
392                  * @param inputStream
393                  *            The input stream
394                  * @param length
395                  *            The number of bytes to read
396                  */
397                 public LimitedInputStream(InputStream inputStream, long length) {
398                         super(inputStream);
399                         remaining = length;
400                 }
401
402                 /**
403                  * @see java.io.FilterInputStream#available()
404                  */
405                 @Override
406                 public synchronized int available() throws IOException {
407                         if (remaining == 0) {
408                                 return 0;
409                         }
410                         return (int) Math.min(super.available(), Math.min(Integer.MAX_VALUE, remaining));
411                 }
412
413                 /**
414                  * @see java.io.FilterInputStream#read()
415                  */
416                 @Override
417                 public synchronized int read() throws IOException {
418                         int read = -1;
419                         if (remaining > 0) {
420                                 read = super.read();
421                                 remaining--;
422                         }
423                         return read;
424                 }
425
426                 /**
427                  * @see java.io.FilterInputStream#read(byte[], int, int)
428                  */
429                 @Override
430                 public synchronized int read(byte[] b, int off, int len) throws IOException {
431                         if (remaining == 0) {
432                                 return -1;
433                         }
434                         int toCopy = (int) Math.min(len, Math.min(remaining, Integer.MAX_VALUE));
435                         int read = super.read(b, off, toCopy);
436                         remaining -= read;
437                         return read;
438                 }
439
440                 /**
441                  * @see java.io.FilterInputStream#skip(long)
442                  */
443                 @Override
444                 public synchronized long skip(long n) throws IOException {
445                         if ((n < 0) || (remaining == 0)) {
446                                 return 0;
447                         }
448                         long skipped = super.skip(Math.min(n, remaining));
449                         remaining -= skipped;
450                         return skipped;
451                 }
452
453                 /**
454                  * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
455                  * {@link #reset()} are not supported.
456                  *
457                  * @see java.io.FilterInputStream#mark(int)
458                  */
459                 @Override
460                 public synchronized void mark(int readlimit) {
461                         /* do nothing. */
462                 }
463
464                 /**
465                  * {@inheritDoc}
466                  *
467                  * @see java.io.FilterInputStream#markSupported()
468                  * @return <code>false</code>
469                  */
470                 @Override
471                 public boolean markSupported() {
472                         return false;
473                 }
474
475                 /**
476                  * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
477                  * {@link #reset()} are not supported.
478                  *
479                  * @see java.io.FilterInputStream#reset()
480                  */
481                 @Override
482                 public synchronized void reset() throws IOException {
483                         /* do nothing. */
484                 }
485
486                 /**
487                  * Consumes the input stream, i.e. read all bytes until the limit is
488                  * reached.
489                  *
490                  * @throws IOException
491                  *             if an I/O error occurs
492                  */
493                 public synchronized void consume() throws IOException {
494                         while (remaining > 0) {
495                                 skip(remaining);
496                         }
497                 }
498
499         }
500
501 }