2 * Sone - FreenetInterface.java - Copyright © 2010–2012 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 3 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, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.core;
20 import java.net.MalformedURLException;
21 import java.util.ArrayList;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.List;
26 import java.util.logging.Level;
27 import java.util.logging.Logger;
29 import net.pterodactylus.sone.data.Image;
30 import net.pterodactylus.sone.data.Sone;
31 import net.pterodactylus.sone.data.TemporaryImage;
32 import net.pterodactylus.util.logging.Logging;
34 import com.db4o.ObjectContainer;
35 import com.google.inject.Inject;
37 import freenet.client.ClientMetadata;
38 import freenet.client.FetchException;
39 import freenet.client.FetchResult;
40 import freenet.client.HighLevelSimpleClient;
41 import freenet.client.HighLevelSimpleClientImpl;
42 import freenet.client.InsertBlock;
43 import freenet.client.InsertContext;
44 import freenet.client.InsertException;
45 import freenet.client.async.BaseClientPutter;
46 import freenet.client.async.ClientContext;
47 import freenet.client.async.ClientPutCallback;
48 import freenet.client.async.ClientPutter;
49 import freenet.client.async.USKCallback;
50 import freenet.keys.FreenetURI;
51 import freenet.keys.InsertableClientSSK;
52 import freenet.keys.USK;
53 import freenet.node.Node;
54 import freenet.node.RequestStarter;
55 import freenet.support.api.Bucket;
56 import freenet.support.io.ArrayBucket;
59 * Contains all necessary functionality for interacting with the Freenet node.
61 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
63 public class FreenetInterface {
66 private static final Logger logger = Logging.getLogger(FreenetInterface.class);
68 /** The node to interact with. */
69 private final Node node;
71 /** The high-level client to use for requests. */
72 private final HighLevelSimpleClient client;
74 /** The USK callbacks. */
75 private final Map<String, USKCallback> soneUskCallbacks = new HashMap<String, USKCallback>();
77 /** The not-Sone-related USK callbacks. */
78 private final Map<FreenetURI, USKCallback> uriUskCallbacks = Collections.synchronizedMap(new HashMap<FreenetURI, USKCallback>());
81 * Creates a new Freenet interface.
84 * The node to interact with
87 public FreenetInterface(Node node) {
89 this.client = node.clientCore.makeClient(RequestStarter.INTERACTIVE_PRIORITY_CLASS, false, true);
97 * Fetches the given URI.
101 * @return The result of the fetch, or {@code null} if an error occured
103 public Fetched fetchUri(FreenetURI uri) {
104 FetchResult fetchResult = null;
105 FreenetURI currentUri = new FreenetURI(uri);
108 fetchResult = client.fetch(currentUri);
109 return new Fetched(currentUri, fetchResult);
110 } catch (FetchException fe1) {
111 if (fe1.getMode() == FetchException.PERMANENT_REDIRECT) {
112 currentUri = fe1.newURI;
115 logger.log(Level.WARNING, String.format("Could not fetch “%s”!", uri), fe1);
122 * Creates a key pair.
124 * @return The request key at index 0, the insert key at index 1
126 public String[] generateKeyPair() {
127 FreenetURI[] keyPair = client.generateKeyPair("");
128 return new String[] { keyPair[1].toString(), keyPair[0].toString() };
132 * Inserts the image data of the given {@link TemporaryImage} and returns
133 * the given insert token that can be used to add listeners or cancel the
136 * @param temporaryImage
137 * The temporary image data
142 * @throws SoneException
143 * if the insert could not be started
145 public void insertImage(TemporaryImage temporaryImage, Image image, InsertToken insertToken) throws SoneException {
146 String filenameHint = image.getId() + "." + temporaryImage.getMimeType().substring(temporaryImage.getMimeType().lastIndexOf("/") + 1);
147 InsertableClientSSK key = InsertableClientSSK.createRandom(node.random, "");
148 FreenetURI targetUri = key.getInsertURI().setDocName(filenameHint);
149 InsertContext insertContext = client.getInsertContext(true);
150 Bucket bucket = new ArrayBucket(temporaryImage.getImageData());
151 ClientMetadata metadata = new ClientMetadata(temporaryImage.getMimeType());
152 InsertBlock insertBlock = new InsertBlock(bucket, metadata, targetUri);
154 ClientPutter clientPutter = client.insert(insertBlock, false, null, false, insertContext, insertToken, RequestStarter.INTERACTIVE_PRIORITY_CLASS);
155 insertToken.setClientPutter(clientPutter);
156 } catch (InsertException ie1) {
157 throw new SoneInsertException("Could not start image insert.", ie1);
162 * Inserts a directory into Freenet.
166 * @param manifestEntries
167 * The directory entries
169 * The name of the default file
170 * @return The generated URI
171 * @throws SoneException
172 * if an insert error occurs
174 public FreenetURI insertDirectory(FreenetURI insertUri, HashMap<String, Object> manifestEntries, String defaultFile) throws SoneException {
176 return client.insertManifest(insertUri, manifestEntries, defaultFile);
177 } catch (InsertException ie1) {
178 throw new SoneException(ie1);
183 * Registers the USK for the given Sone and notifies the given
184 * {@link SoneDownloader} if an update was found.
188 * @param soneDownloader
189 * The Sone download to notify on updates
191 public void registerUsk(final Sone sone, final SoneDownloader soneDownloader) {
193 logger.log(Level.FINE, String.format("Registering Sone “%s” for USK updates at %s…", sone, sone.getRequestUri().setMetaString(new String[] { "sone.xml" })));
194 USKCallback uskCallback = new USKCallback() {
197 @SuppressWarnings("synthetic-access")
198 public void onFoundEdition(long edition, USK key, ObjectContainer objectContainer, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
199 logger.log(Level.FINE, String.format("Found USK update for Sone “%s” at %s, new known good: %s, new slot too: %s.", sone, key, newKnownGood, newSlotToo));
200 if (edition > sone.getLatestEdition()) {
201 sone.setLatestEdition(edition);
202 new Thread(new Runnable() {
206 soneDownloader.fetchSone(sone);
208 }, "Sone Downloader").start();
213 public short getPollingPriorityProgress() {
214 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
218 public short getPollingPriorityNormal() {
219 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
222 soneUskCallbacks.put(sone.getId(), uskCallback);
223 node.clientCore.uskManager.subscribe(USK.create(sone.getRequestUri()), uskCallback, (System.currentTimeMillis() - sone.getTime()) < 7 * 24 * 60 * 60 * 1000, (HighLevelSimpleClientImpl) client);
224 } catch (MalformedURLException mue1) {
225 logger.log(Level.WARNING, String.format("Could not subscribe USK “%s”!", sone.getRequestUri()), mue1);
230 * Unsubscribes the request URI of the given Sone.
233 * The Sone to unregister
235 public void unregisterUsk(Sone sone) {
236 USKCallback uskCallback = soneUskCallbacks.remove(sone.getId());
237 if (uskCallback == null) {
241 logger.log(Level.FINEST, String.format("Unsubscribing from USK for %s…", sone));
242 node.clientCore.uskManager.unsubscribe(USK.create(sone.getRequestUri()), uskCallback);
243 } catch (MalformedURLException mue1) {
244 logger.log(Level.FINE, String.format("Could not unsubscribe USK “%s”!", sone.getRequestUri()), mue1);
249 * Registers an arbitrary URI and calls the given callback if a new edition
255 * The callback to call
257 public void registerUsk(FreenetURI uri, final Callback callback) {
258 USKCallback uskCallback = new USKCallback() {
261 public void onFoundEdition(long edition, USK key, ObjectContainer objectContainer, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
262 callback.editionFound(key.getURI(), edition, newKnownGood, newSlotToo);
266 public short getPollingPriorityNormal() {
267 return RequestStarter.PREFETCH_PRIORITY_CLASS;
271 public short getPollingPriorityProgress() {
272 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
277 node.clientCore.uskManager.subscribe(USK.create(uri), uskCallback, true, (HighLevelSimpleClientImpl) client);
278 uriUskCallbacks.put(uri, uskCallback);
279 } catch (MalformedURLException mue1) {
280 logger.log(Level.WARNING, String.format("Could not subscribe to USK: %s", uri), mue1);
285 * Unregisters the USK watcher for the given URI.
288 * The URI to unregister the USK watcher for
290 public void unregisterUsk(FreenetURI uri) {
291 USKCallback uskCallback = uriUskCallbacks.remove(uri);
292 if (uskCallback == null) {
293 logger.log(Level.INFO, String.format("Could not unregister unknown USK: %s", uri));
297 node.clientCore.uskManager.unsubscribe(USK.create(uri), uskCallback);
298 } catch (MalformedURLException mue1) {
299 logger.log(Level.INFO, String.format("Could not unregister invalid USK: %s", uri), mue1);
304 * Container for a fetched URI and the {@link FetchResult}.
306 * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
308 public static class Fetched {
310 /** The fetched URI. */
311 private final FreenetURI freenetUri;
313 /** The fetch result. */
314 private final FetchResult fetchResult;
317 * Creates a new fetched URI.
320 * The URI that was fetched
324 public Fetched(FreenetURI freenetUri, FetchResult fetchResult) {
325 this.freenetUri = freenetUri;
326 this.fetchResult = fetchResult;
334 * Returns the fetched URI.
336 * @return The fetched URI
338 public FreenetURI getFreenetUri() {
343 * Returns the fetch result.
345 * @return The fetch result
347 public FetchResult getFetchResult() {
354 * Callback for USK watcher events.
356 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
358 public static interface Callback {
361 * Notifies a listener that a new edition was found for a URI.
364 * The URI that a new edition was found for
367 * @param newKnownGood
368 * Whether the found edition was actually fetched
370 * Whether the found edition is higher than all previously
373 public void editionFound(FreenetURI uri, long edition, boolean newKnownGood, boolean newSlot);
378 * Insert token that can be used to add {@link ImageInsertListener}s and
379 * cancel a running insert.
381 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
383 public class InsertToken implements ClientPutCallback {
385 /** The image being inserted. */
386 private final Image image;
388 /** The list of registered image insert listeners. */
389 private final List<ImageInsertListener> imageInsertListeners = Collections.synchronizedList(new ArrayList<ImageInsertListener>());
391 /** The client putter. */
392 private ClientPutter clientPutter;
394 /** The final URI. */
395 private volatile FreenetURI resultingUri;
398 * Creates a new insert token for the given image.
401 * The image being inserted
403 public InsertToken(Image image) {
408 // LISTENER MANAGEMENT
412 * Adds the given listener to the list of registered listener.
414 * @param imageInsertListener
415 * The listener to add
417 public void addImageInsertListener(ImageInsertListener imageInsertListener) {
418 imageInsertListeners.add(imageInsertListener);
422 * Removes the given listener from the list of registered listener.
424 * @param imageInsertListener
425 * The listener to remove
427 public void removeImageInsertListener(ImageInsertListener imageInsertListener) {
428 imageInsertListeners.remove(imageInsertListener);
436 * Sets the client putter that is inserting the image. This will also
437 * signal all registered listeners that the image has started.
439 * @see ImageInsertListener#imageInsertStarted(Image)
440 * @param clientPutter
443 public void setClientPutter(ClientPutter clientPutter) {
444 this.clientPutter = clientPutter;
445 for (ImageInsertListener imageInsertListener : imageInsertListeners) {
446 imageInsertListener.imageInsertStarted(image);
455 * Cancels the running insert.
457 * @see ImageInsertListener#imageInsertAborted(Image)
459 @SuppressWarnings("synthetic-access")
460 public void cancel() {
461 clientPutter.cancel(null, node.clientCore.clientContext);
462 for (ImageInsertListener imageInsertListener : imageInsertListeners) {
463 imageInsertListener.imageInsertAborted(image);
468 // INTERFACE ClientPutCallback
475 public void onMajorProgress(ObjectContainer objectContainer) {
476 /* ignore, we don’t care. */
483 public void onFailure(InsertException insertException, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
484 for (ImageInsertListener imageInsertListener : imageInsertListeners) {
485 if ((insertException != null) && ("Cancelled by user".equals(insertException.getMessage()))) {
486 imageInsertListener.imageInsertAborted(image);
488 imageInsertListener.imageInsertFailed(image, insertException);
497 public void onFetchable(BaseClientPutter clientPutter, ObjectContainer objectContainer) {
498 /* ignore, we don’t care. */
505 public void onGeneratedMetadata(Bucket metadata, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
506 /* ignore, we don’t care. */
513 public void onGeneratedURI(FreenetURI generatedUri, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
514 resultingUri = generatedUri;
521 public void onSuccess(BaseClientPutter clientPutter, ObjectContainer objectContainer) {
522 for (ImageInsertListener imageInsertListener : imageInsertListeners) {
523 imageInsertListener.imageInsertFinished(image, resultingUri);