import net.pterodactylus.fcp.GenerateSSK;
import net.pterodactylus.fcp.GetFailed;
import net.pterodactylus.fcp.IdentifierCollision;
+import net.pterodactylus.fcp.ListPeers;
import net.pterodactylus.fcp.NodeData;
import net.pterodactylus.fcp.NodeHello;
import net.pterodactylus.fcp.Peer;
/** Mapping from request identifiers to callbacks. */
private Map<String, HighLevelCallback<KeyGenerationResult>> keyGenerationCallbacks = Collections.synchronizedMap(new HashMap<String, HighLevelCallback<KeyGenerationResult>>());
+ /** Mapping from request identifier to peer list callbacks. */
+ private Map<String, HighLevelCallback<PeerListResult>> peerListCallbacks = Collections.synchronizedMap(new HashMap<String, HighLevelCallback<PeerListResult>>());
+
/**
* Creates a new high-level client that connects to a node on
* <code>localhost</code>.
}
/**
+ * Gets a list of all peers from the node.
+ *
+ * @return A callback with the peer list
+ * @throws IOException
+ * if an I/O error occurs with the node
+ */
+ public HighLevelCallback<PeerListResult> getPeers() throws IOException {
+ String identifier = generateIdentifier("listPeers");
+ ListPeers listPeers = new ListPeers(identifier, true, true);
+ HighLevelCallback<PeerListResult> peerListCallback = new HighLevelCallback<PeerListResult>();
+ peerListCallbacks.put(identifier, peerListCallback);
+ fcpConnection.sendMessage(listPeers);
+ return peerListCallback;
+ }
+
+ /**
* Generates an identifier for the given function.
*
* @param function
* @see net.pterodactylus.fcp.FcpListener#receivedPeer(net.pterodactylus.fcp.FcpConnection,
* net.pterodactylus.fcp.Peer)
*/
+ @SuppressWarnings("synthetic-access")
public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
+ if (fcpConnection != HighLevelClient.this.fcpConnection) {
+ return;
+ }
+ String identifier = peer.getIdentifier();
+ HighLevelCallback<PeerListResult> peerListCallback = peerListCallbacks.get(identifier);
+ PeerListResult peerListResult = peerListCallback.getIntermediaryResult();
+ if (peerListResult == null) {
+ peerListResult = new PeerListResult();
+ peerListCallback.setResult(peerListResult, false);
+ }
}
/**
--- /dev/null
+/*
+ * jFCPlib-high-level-client - PeerListResult.java -
+ * Copyright © 2008 David Roden
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+package net.pterodactylus.fcp.highlevel;
+
+/**
+ * The result of a {@link HighLevelClient#getPeers()} operation.
+ *
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
+ * @version $Id$
+ */
+public class PeerListResult extends HighLevelResult {
+
+}