2 * jFCPlib - FpcConnection.java - Copyright © 2008 David Roden
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.
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.
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.
19 package net.pterodactylus.fcp;
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;
32 import java.util.logging.Logger;
35 * An FCP connection to a Freenet node.
37 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
39 public class FcpConnection implements Closeable {
42 private static final Logger logger = Logger.getLogger(FcpConnection.class.getName());
44 /** The default port for FCP v2. */
45 public static final int DEFAULT_PORT = 9481;
47 /** Listener management. */
48 private final FcpListenerManager fcpListenerManager = new FcpListenerManager(this);
50 /** The address of the node. */
51 private final InetAddress address;
53 /** The port number of the node’s FCP port. */
54 private final int port;
56 /** The remote socket. */
57 private Socket remoteSocket;
59 /** The input stream from the node. */
60 private InputStream remoteInputStream;
62 /** The output stream to the node. */
63 private OutputStream remoteOutputStream;
65 /** The connection handler. */
66 private FcpConnectionHandler connectionHandler;
68 /** Incoming message statistics. */
69 private static final Map<String, Integer> incomingMessageStatistics = Collections.synchronizedMap(new HashMap<String, Integer>());
72 * Creates a new FCP connection to the freenet node running on localhost,
73 * using the default port.
75 * @throws UnknownHostException
76 * if the hostname can not be resolved
78 public FcpConnection() throws UnknownHostException {
79 this(InetAddress.getLocalHost());
83 * Creates a new FCP connection to the Freenet node running on the given
84 * host, listening on the default port.
87 * The hostname of the Freenet node
88 * @throws UnknownHostException
89 * if <code>host</code> can not be resolved
91 public FcpConnection(String host) throws UnknownHostException {
92 this(host, DEFAULT_PORT);
96 * Creates a new FCP connection to the Freenet node running on the given
97 * host, listening on the given port.
100 * The hostname of the Freenet node
102 * The port number of the node’s FCP port
103 * @throws UnknownHostException
104 * if <code>host</code> can not be resolved
106 public FcpConnection(String host, int port) throws UnknownHostException {
107 this(InetAddress.getByName(host), port);
111 * Creates a new FCP connection to the Freenet node running at the given
112 * address, listening on the default port.
115 * The address of the Freenet node
117 public FcpConnection(InetAddress address) {
118 this(address, DEFAULT_PORT);
122 * Creates a new FCP connection to the Freenet node running at the given
123 * address, listening on the given port.
126 * The address of the Freenet node
128 * The port number of the node’s FCP port
130 public FcpConnection(InetAddress address, int port) {
131 this.address = address;
135 public synchronized boolean isClosed() {
136 return connectionHandler == null;
140 // LISTENER MANAGEMENT
144 * Adds the given listener to the list of listeners.
147 * The listener to add
149 public void addFcpListener(FcpListener fcpListener) {
150 fcpListenerManager.addListener(fcpListener);
154 * Removes the given listener from the list of listeners.
157 * The listener to remove
159 public void removeFcpListener(FcpListener fcpListener) {
160 fcpListenerManager.removeListener(fcpListener);
168 * Connects to the node.
170 * @throws IOException
171 * if an I/O error occurs
172 * @throws IllegalStateException
173 * if there is already a connection to the node
175 public synchronized void connect() throws IOException, IllegalStateException {
176 if (connectionHandler != null) {
177 throw new IllegalStateException("already connected, disconnect first");
179 logger.info("connecting to " + address + ":" + port + "…");
180 remoteSocket = new Socket(address, port);
181 remoteInputStream = remoteSocket.getInputStream();
182 remoteOutputStream = remoteSocket.getOutputStream();
183 new Thread(connectionHandler = new FcpConnectionHandler(this, remoteInputStream)).start();
187 * Disconnects from the node. If there is no connection to the node, this
188 * method does nothing.
190 * @deprecated Use {@link #close()} instead
193 public synchronized void disconnect() {
198 * Closes the connection. If there is no connection to the node, this
199 * method does nothing.
202 public void close() {
203 handleDisconnect(null);
207 * Sends the given FCP message.
210 * The FCP message to send
211 * @throws IOException
212 * if an I/O error occurs
214 public synchronized void sendMessage(FcpMessage fcpMessage) throws IOException {
215 logger.fine("sending message: " + fcpMessage.getName());
216 fcpMessage.write(remoteOutputStream);
220 // PACKAGE-PRIVATE METHODS
224 * Handles the given message, notifying listeners. This message should only
225 * be called by {@link FcpConnectionHandler}.
228 * The received message
230 void handleMessage(FcpMessage fcpMessage) {
231 logger.fine("received message: " + fcpMessage.getName());
232 String messageName = fcpMessage.getName();
233 countMessage(messageName);
234 if ("SimpleProgress".equals(messageName)) {
235 fcpListenerManager.fireReceivedSimpleProgress(new SimpleProgress(fcpMessage));
236 } else if ("ProtocolError".equals(messageName)) {
237 fcpListenerManager.fireReceivedProtocolError(new ProtocolError(fcpMessage));
238 } else if ("PersistentGet".equals(messageName)) {
239 fcpListenerManager.fireReceivedPersistentGet(new PersistentGet(fcpMessage));
240 } else if ("PersistentPut".equals(messageName)) {
241 fcpListenerManager.fireReceivedPersistentPut(new PersistentPut(fcpMessage));
242 } else if ("PersistentPutDir".equals(messageName)) {
243 fcpListenerManager.fireReceivedPersistentPutDir(new PersistentPutDir(fcpMessage));
244 } else if ("URIGenerated".equals(messageName)) {
245 fcpListenerManager.fireReceivedURIGenerated(new URIGenerated(fcpMessage));
246 } else if ("EndListPersistentRequests".equals(messageName)) {
247 fcpListenerManager.fireReceivedEndListPersistentRequests(new EndListPersistentRequests(fcpMessage));
248 } else if ("Peer".equals(messageName)) {
249 fcpListenerManager.fireReceivedPeer(new Peer(fcpMessage));
250 } else if ("PeerNote".equals(messageName)) {
251 fcpListenerManager.fireReceivedPeerNote(new PeerNote(fcpMessage));
252 } else if ("StartedCompression".equals(messageName)) {
253 fcpListenerManager.fireReceivedStartedCompression(new StartedCompression(fcpMessage));
254 } else if ("FinishedCompression".equals(messageName)) {
255 fcpListenerManager.fireReceivedFinishedCompression(new FinishedCompression(fcpMessage));
256 } else if ("GetFailed".equals(messageName)) {
257 fcpListenerManager.fireReceivedGetFailed(new GetFailed(fcpMessage));
258 } else if ("PutFetchable".equals(messageName)) {
259 fcpListenerManager.fireReceivedPutFetchable(new PutFetchable(fcpMessage));
260 } else if ("PutSuccessful".equals(messageName)) {
261 fcpListenerManager.fireReceivedPutSuccessful(new PutSuccessful(fcpMessage));
262 } else if ("PutFailed".equals(messageName)) {
263 fcpListenerManager.fireReceivedPutFailed(new PutFailed(fcpMessage));
264 } else if ("DataFound".equals(messageName)) {
265 fcpListenerManager.fireReceivedDataFound(new DataFound(fcpMessage));
266 } else if ("SubscribedUSKUpdate".equals(messageName)) {
267 fcpListenerManager.fireReceivedSubscribedUSKUpdate(new SubscribedUSKUpdate(fcpMessage));
268 } else if ("IdentifierCollision".equals(messageName)) {
269 fcpListenerManager.fireReceivedIdentifierCollision(new IdentifierCollision(fcpMessage));
270 } else if ("AllData".equals(messageName)) {
271 LimitedInputStream payloadInputStream = getInputStream(FcpUtils.safeParseLong(fcpMessage.getField("DataLength")));
272 fcpListenerManager.fireReceivedAllData(new AllData(fcpMessage, payloadInputStream));
274 payloadInputStream.consume();
275 } catch (IOException ioe1) {
276 /* well, ignore. when the connection handler fails, all fails. */
278 } else if ("EndListPeerNotes".equals(messageName)) {
279 fcpListenerManager.fireReceivedEndListPeerNotes(new EndListPeerNotes(fcpMessage));
280 } else if ("EndListPeers".equals(messageName)) {
281 fcpListenerManager.fireReceivedEndListPeers(new EndListPeers(fcpMessage));
282 } else if ("SSKKeypair".equals(messageName)) {
283 fcpListenerManager.fireReceivedSSKKeypair(new SSKKeypair(fcpMessage));
284 } else if ("PeerRemoved".equals(messageName)) {
285 fcpListenerManager.fireReceivedPeerRemoved(new PeerRemoved(fcpMessage));
286 } else if ("PersistentRequestModified".equals(messageName)) {
287 fcpListenerManager.fireReceivedPersistentRequestModified(new PersistentRequestModified(fcpMessage));
288 } else if ("PersistentRequestRemoved".equals(messageName)) {
289 fcpListenerManager.fireReceivedPersistentRequestRemoved(new PersistentRequestRemoved(fcpMessage));
290 } else if ("UnknownPeerNoteType".equals(messageName)) {
291 fcpListenerManager.fireReceivedUnknownPeerNoteType(new UnknownPeerNoteType(fcpMessage));
292 } else if ("UnknownNodeIdentifier".equals(messageName)) {
293 fcpListenerManager.fireReceivedUnknownNodeIdentifier(new UnknownNodeIdentifier(fcpMessage));
294 } else if ("FCPPluginReply".equals(messageName)) {
295 LimitedInputStream payloadInputStream = getInputStream(FcpUtils.safeParseLong(fcpMessage.getField("DataLength")));
296 fcpListenerManager.fireReceivedFCPPluginReply(new FCPPluginReply(fcpMessage, payloadInputStream));
298 payloadInputStream.consume();
299 } catch (IOException ioe1) {
302 } else if ("PluginInfo".equals(messageName)) {
303 fcpListenerManager.fireReceivedPluginInfo(new PluginInfo(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));
321 fcpListenerManager.fireMessageReceived(fcpMessage);
326 * Handles a disconnect from the node.
329 * The exception that caused the disconnect, or
330 * <code>null</code> if there was no exception
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);
348 * Incremets the counter in {@link #incomingMessageStatistics} by
349 * <cod>1</code> for the given message name.
352 * The name of the message to count
354 private void countMessage(String name) {
356 if (incomingMessageStatistics.containsKey(name)) {
357 oldValue = incomingMessageStatistics.get(name);
359 incomingMessageStatistics.put(name, oldValue + 1);
360 logger.finest("count for " + name + ": " + (oldValue + 1));
364 * Returns a limited input stream from the node’s input stream.
367 * The length of the stream
368 * @return The limited input stream
370 private synchronized LimitedInputStream getInputStream(long dataLength) {
371 if (dataLength <= 0) {
372 return new LimitedInputStream(null, 0);
374 return new LimitedInputStream(remoteInputStream, dataLength);
378 * A wrapper around an {@link InputStream} that only supplies a limit
379 * number of bytes from the underlying input stream.
381 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
383 private static class LimitedInputStream extends FilterInputStream {
385 /** The remaining number of bytes that can be read. */
386 private long remaining;
389 * Creates a new LimitedInputStream that supplies at most
390 * <code>length</code> bytes from the given input stream.
395 * The number of bytes to read
397 public LimitedInputStream(InputStream inputStream, long length) {
403 * @see java.io.FilterInputStream#available()
406 public synchronized int available() throws IOException {
407 if (remaining == 0) {
410 return (int) Math.min(super.available(), Math.min(Integer.MAX_VALUE, remaining));
414 * @see java.io.FilterInputStream#read()
417 public synchronized int read() throws IOException {
427 * @see java.io.FilterInputStream#read(byte[], int, int)
430 public synchronized int read(byte[] b, int off, int len) throws IOException {
431 if (remaining == 0) {
434 int toCopy = (int) Math.min(len, Math.min(remaining, Integer.MAX_VALUE));
435 int read = super.read(b, off, toCopy);
441 * @see java.io.FilterInputStream#skip(long)
444 public synchronized long skip(long n) throws IOException {
445 if ((n < 0) || (remaining == 0)) {
448 long skipped = super.skip(Math.min(n, remaining));
449 remaining -= skipped;
454 * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
455 * {@link #reset()} are not supported.
457 * @see java.io.FilterInputStream#mark(int)
460 public synchronized void mark(int readlimit) {
467 * @see java.io.FilterInputStream#markSupported()
468 * @return <code>false</code>
471 public boolean markSupported() {
476 * {@inheritDoc} This method does nothing, as {@link #mark(int)} and
477 * {@link #reset()} are not supported.
479 * @see java.io.FilterInputStream#reset()
482 public synchronized void reset() throws IOException {
487 * Consumes the input stream, i.e. read all bytes until the limit is
490 * @throws IOException
491 * if an I/O error occurs
493 public synchronized void consume() throws IOException {
494 while (remaining > 0) {