2 * Sone - FreenetInterface.java - Copyright © 2010–2013 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.Collections;
22 import java.util.HashMap;
24 import java.util.concurrent.TimeUnit;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
28 import net.pterodactylus.sone.core.event.ImageInsertAbortedEvent;
29 import net.pterodactylus.sone.core.event.ImageInsertFailedEvent;
30 import net.pterodactylus.sone.core.event.ImageInsertFinishedEvent;
31 import net.pterodactylus.sone.core.event.ImageInsertStartedEvent;
32 import net.pterodactylus.sone.data.Image;
33 import net.pterodactylus.sone.data.Sone;
34 import net.pterodactylus.sone.data.TemporaryImage;
35 import net.pterodactylus.util.logging.Logging;
37 import com.db4o.ObjectContainer;
38 import com.google.common.eventbus.EventBus;
39 import com.google.inject.Inject;
41 import freenet.client.ClientMetadata;
42 import freenet.client.FetchException;
43 import freenet.client.FetchResult;
44 import freenet.client.HighLevelSimpleClient;
45 import freenet.client.HighLevelSimpleClientImpl;
46 import freenet.client.InsertBlock;
47 import freenet.client.InsertContext;
48 import freenet.client.InsertException;
49 import freenet.client.async.BaseClientPutter;
50 import freenet.client.async.ClientContext;
51 import freenet.client.async.ClientPutCallback;
52 import freenet.client.async.ClientPutter;
53 import freenet.client.async.USKCallback;
54 import freenet.keys.FreenetURI;
55 import freenet.keys.InsertableClientSSK;
56 import freenet.keys.USK;
57 import freenet.node.Node;
58 import freenet.node.RequestStarter;
59 import freenet.support.api.Bucket;
60 import freenet.support.io.ArrayBucket;
63 * Contains all necessary functionality for interacting with the Freenet node.
65 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
67 public class FreenetInterface {
70 private static final Logger logger = Logging.getLogger(FreenetInterface.class);
73 private final EventBus eventBus;
75 /** The node to interact with. */
76 private final Node node;
78 /** The high-level client to use for requests. */
79 private final HighLevelSimpleClient client;
81 /** The USK callbacks. */
82 private final Map<String, USKCallback> soneUskCallbacks = new HashMap<String, USKCallback>();
84 /** The not-Sone-related USK callbacks. */
85 private final Map<FreenetURI, USKCallback> uriUskCallbacks = Collections.synchronizedMap(new HashMap<FreenetURI, USKCallback>());
88 * Creates a new Freenet interface.
93 * The node to interact with
96 public FreenetInterface(EventBus eventBus, Node node) {
97 this.eventBus = eventBus;
99 this.client = node.clientCore.makeClient(RequestStarter.INTERACTIVE_PRIORITY_CLASS, false, true);
107 * Fetches the given URI.
111 * @return The result of the fetch, or {@code null} if an error occured
113 public Fetched fetchUri(FreenetURI uri) {
114 FreenetURI currentUri = new FreenetURI(uri);
117 FetchResult fetchResult = client.fetch(currentUri);
118 return new Fetched(currentUri, fetchResult);
119 } catch (FetchException fe1) {
120 if (fe1.getMode() == FetchException.PERMANENT_REDIRECT) {
121 currentUri = fe1.newURI;
124 logger.log(Level.WARNING, String.format("Could not fetch “%s”!", uri), fe1);
131 * Creates a key pair.
133 * @return The request key at index 0, the insert key at index 1
135 public String[] generateKeyPair() {
136 FreenetURI[] keyPair = client.generateKeyPair("");
137 return new String[] { keyPair[1].toString(), keyPair[0].toString() };
141 * Inserts the image data of the given {@link TemporaryImage} and returns
142 * the given insert token that can be used to add listeners or cancel the
145 * @param temporaryImage
146 * The temporary image data
151 * @throws SoneException
152 * if the insert could not be started
154 public void insertImage(TemporaryImage temporaryImage, Image image, InsertToken insertToken) throws SoneException {
155 String filenameHint = image.getId() + "." + temporaryImage.getMimeType().substring(temporaryImage.getMimeType().lastIndexOf("/") + 1);
156 InsertableClientSSK key = InsertableClientSSK.createRandom(node.random, "");
157 FreenetURI targetUri = key.getInsertURI().setDocName(filenameHint);
158 InsertContext insertContext = client.getInsertContext(true);
159 Bucket bucket = new ArrayBucket(temporaryImage.getImageData());
160 ClientMetadata metadata = new ClientMetadata(temporaryImage.getMimeType());
161 InsertBlock insertBlock = new InsertBlock(bucket, metadata, targetUri);
163 ClientPutter clientPutter = client.insert(insertBlock, false, null, false, insertContext, insertToken, RequestStarter.INTERACTIVE_PRIORITY_CLASS);
164 insertToken.setClientPutter(clientPutter);
165 } catch (InsertException ie1) {
166 throw new SoneInsertException("Could not start image insert.", ie1);
171 * Inserts a directory into Freenet.
175 * @param manifestEntries
176 * The directory entries
178 * The name of the default file
179 * @return The generated URI
180 * @throws SoneException
181 * if an insert error occurs
183 public FreenetURI insertDirectory(FreenetURI insertUri, HashMap<String, Object> manifestEntries, String defaultFile) throws SoneException {
185 return client.insertManifest(insertUri, manifestEntries, defaultFile);
186 } catch (InsertException ie1) {
187 throw new SoneException(ie1);
192 * Registers the USK for the given Sone and notifies the given
193 * {@link SoneDownloader} if an update was found.
197 * @param soneDownloader
198 * The Sone download to notify on updates
200 public void registerUsk(final Sone sone, final SoneDownloader soneDownloader) {
202 logger.log(Level.FINE, String.format("Registering Sone “%s” for USK updates at %s…", sone, sone.getRequestUri().setMetaString(new String[] { "sone.xml" })));
203 USKCallback uskCallback = new USKCallback() {
206 @SuppressWarnings("synthetic-access")
207 public void onFoundEdition(long edition, USK key, ObjectContainer objectContainer, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
208 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));
209 if (edition > sone.getLatestEdition()) {
210 sone.setLatestEdition(edition);
211 new Thread(new Runnable() {
215 soneDownloader.fetchSone(sone);
217 }, "Sone Downloader").start();
222 public short getPollingPriorityProgress() {
223 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
227 public short getPollingPriorityNormal() {
228 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
231 soneUskCallbacks.put(sone.getId(), uskCallback);
232 boolean runBackgroundFetch = (System.currentTimeMillis() - sone.getTime()) < TimeUnit.DAYS.toMillis(7);
233 node.clientCore.uskManager.subscribe(USK.create(sone.getRequestUri()), uskCallback, runBackgroundFetch, (HighLevelSimpleClientImpl) client);
234 } catch (MalformedURLException mue1) {
235 logger.log(Level.WARNING, String.format("Could not subscribe USK “%s”!", sone.getRequestUri()), mue1);
240 * Unsubscribes the request URI of the given Sone.
243 * The Sone to unregister
245 public void unregisterUsk(Sone sone) {
246 USKCallback uskCallback = soneUskCallbacks.remove(sone.getId());
247 if (uskCallback == null) {
251 logger.log(Level.FINEST, String.format("Unsubscribing from USK for %s…", sone));
252 node.clientCore.uskManager.unsubscribe(USK.create(sone.getRequestUri()), uskCallback);
253 } catch (MalformedURLException mue1) {
254 logger.log(Level.FINE, String.format("Could not unsubscribe USK “%s”!", sone.getRequestUri()), mue1);
259 * Registers an arbitrary URI and calls the given callback if a new edition
265 * The callback to call
267 public void registerUsk(FreenetURI uri, final Callback callback) {
268 USKCallback uskCallback = new USKCallback() {
271 public void onFoundEdition(long edition, USK key, ObjectContainer objectContainer, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
272 callback.editionFound(key.getURI(), edition, newKnownGood, newSlotToo);
276 public short getPollingPriorityNormal() {
277 return RequestStarter.PREFETCH_PRIORITY_CLASS;
281 public short getPollingPriorityProgress() {
282 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
287 node.clientCore.uskManager.subscribe(USK.create(uri), uskCallback, true, (HighLevelSimpleClientImpl) client);
288 uriUskCallbacks.put(uri, uskCallback);
289 } catch (MalformedURLException mue1) {
290 logger.log(Level.WARNING, String.format("Could not subscribe to USK: %s", uri), mue1);
295 * Unregisters the USK watcher for the given URI.
298 * The URI to unregister the USK watcher for
300 public void unregisterUsk(FreenetURI uri) {
301 USKCallback uskCallback = uriUskCallbacks.remove(uri);
302 if (uskCallback == null) {
303 logger.log(Level.INFO, String.format("Could not unregister unknown USK: %s", uri));
307 node.clientCore.uskManager.unsubscribe(USK.create(uri), uskCallback);
308 } catch (MalformedURLException mue1) {
309 logger.log(Level.INFO, String.format("Could not unregister invalid USK: %s", uri), mue1);
314 * Container for a fetched URI and the {@link FetchResult}.
316 * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
318 public static class Fetched {
320 /** The fetched URI. */
321 private final FreenetURI freenetUri;
323 /** The fetch result. */
324 private final FetchResult fetchResult;
327 * Creates a new fetched URI.
330 * The URI that was fetched
334 public Fetched(FreenetURI freenetUri, FetchResult fetchResult) {
335 this.freenetUri = freenetUri;
336 this.fetchResult = fetchResult;
344 * Returns the fetched URI.
346 * @return The fetched URI
348 public FreenetURI getFreenetUri() {
353 * Returns the fetch result.
355 * @return The fetch result
357 public FetchResult getFetchResult() {
364 * Callback for USK watcher events.
366 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
368 public static interface Callback {
371 * Notifies a listener that a new edition was found for a URI.
374 * The URI that a new edition was found for
377 * @param newKnownGood
378 * Whether the found edition was actually fetched
380 * Whether the found edition is higher than all previously
383 public void editionFound(FreenetURI uri, long edition, boolean newKnownGood, boolean newSlot);
388 * Insert token that can cancel a running insert and sends events.
390 * @see ImageInsertAbortedEvent
391 * @see ImageInsertStartedEvent
392 * @see ImageInsertFailedEvent
393 * @see ImageInsertFinishedEvent
394 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
396 public class InsertToken implements ClientPutCallback {
398 /** The image being inserted. */
399 private final Image image;
401 /** The client putter. */
402 private ClientPutter clientPutter;
404 /** The final URI. */
405 private volatile FreenetURI resultingUri;
408 * Creates a new insert token for the given image.
411 * The image being inserted
413 public InsertToken(Image image) {
422 * Sets the client putter that is inserting the image. This will also
423 * signal all registered listeners that the image has started.
425 * @param clientPutter
428 @SuppressWarnings("synthetic-access")
429 public void setClientPutter(ClientPutter clientPutter) {
430 this.clientPutter = clientPutter;
431 eventBus.post(new ImageInsertStartedEvent(image));
439 * Cancels the running insert.
441 @SuppressWarnings("synthetic-access")
442 public void cancel() {
443 clientPutter.cancel(null, node.clientCore.clientContext);
444 eventBus.post(new ImageInsertAbortedEvent(image));
448 // INTERFACE ClientPutCallback
455 public void onMajorProgress(ObjectContainer objectContainer) {
456 /* ignore, we don’t care. */
463 @SuppressWarnings("synthetic-access")
464 public void onFailure(InsertException insertException, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
465 if ((insertException != null) && ("Cancelled by user".equals(insertException.getMessage()))) {
466 eventBus.post(new ImageInsertAbortedEvent(image));
468 eventBus.post(new ImageInsertFailedEvent(image, insertException));
476 public void onFetchable(BaseClientPutter clientPutter, ObjectContainer objectContainer) {
477 /* ignore, we don’t care. */
484 public void onGeneratedMetadata(Bucket metadata, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
485 /* ignore, we don’t care. */
492 public void onGeneratedURI(FreenetURI generatedUri, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
493 resultingUri = generatedUri;
500 @SuppressWarnings("synthetic-access")
501 public void onSuccess(BaseClientPutter clientPutter, ObjectContainer objectContainer) {
502 eventBus.post(new ImageInsertFinishedEvent(image, resultingUri));