Free bucket after image insert.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / FreenetInterface.java
1 /*
2  * Sone - FreenetInterface.java - Copyright © 2010–2013 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 3 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.core;
19
20 import java.net.MalformedURLException;
21 import java.util.Collections;
22 import java.util.HashMap;
23 import java.util.Map;
24 import java.util.concurrent.TimeUnit;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27
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;
36
37 import com.google.common.eventbus.EventBus;
38 import com.google.inject.Inject;
39
40 import freenet.client.ClientMetadata;
41 import freenet.client.FetchException;
42 import freenet.client.FetchException.FetchExceptionMode;
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.RequestClient;
59 import freenet.node.RequestStarter;
60 import freenet.support.api.Bucket;
61 import freenet.support.api.RandomAccessBucket;
62 import freenet.support.io.ArrayBucket;
63 import freenet.support.io.ResumeFailedException;
64
65 /**
66  * Contains all necessary functionality for interacting with the Freenet node.
67  *
68  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
69  */
70 public class FreenetInterface {
71
72         /** The logger. */
73         private static final Logger logger = Logging.getLogger(FreenetInterface.class);
74
75         /** The event bus. */
76         private final EventBus eventBus;
77
78         /** The node to interact with. */
79         private final Node node;
80
81         /** The high-level client to use for requests. */
82         private final HighLevelSimpleClient client;
83
84         /** The USK callbacks. */
85         private final Map<String, USKCallback> soneUskCallbacks = new HashMap<String, USKCallback>();
86
87         /** The not-Sone-related USK callbacks. */
88         private final Map<FreenetURI, USKCallback> uriUskCallbacks = Collections.synchronizedMap(new HashMap<FreenetURI, USKCallback>());
89
90         /**
91          * Creates a new Freenet interface.
92          *
93          * @param eventBus
94          *            The event bus
95          * @param node
96          *            The node to interact with
97          */
98         @Inject
99         public FreenetInterface(EventBus eventBus, Node node) {
100                 this.eventBus = eventBus;
101                 this.node = node;
102                 this.client = node.clientCore.makeClient(RequestStarter.INTERACTIVE_PRIORITY_CLASS, false, true);
103         }
104
105         //
106         // ACTIONS
107         //
108
109         /**
110          * Fetches the given URI.
111          *
112          * @param uri
113          *            The URI to fetch
114          * @return The result of the fetch, or {@code null} if an error occured
115          */
116         public Fetched fetchUri(FreenetURI uri) {
117                 FetchResult fetchResult = null;
118                 FreenetURI currentUri = new FreenetURI(uri);
119                 while (true) {
120                         try {
121                                 fetchResult = client.fetch(currentUri);
122                                 return new Fetched(currentUri, fetchResult);
123                         } catch (FetchException fe1) {
124                                 if (fe1.getMode() == FetchExceptionMode.PERMANENT_REDIRECT) {
125                                         currentUri = fe1.newURI;
126                                         continue;
127                                 }
128                                 logger.log(Level.WARNING, String.format("Could not fetch “%s”!", uri), fe1);
129                                 return null;
130                         }
131                 }
132         }
133
134         /**
135          * Creates a key pair.
136          *
137          * @return The request key at index 0, the insert key at index 1
138          */
139         public String[] generateKeyPair() {
140                 FreenetURI[] keyPair = client.generateKeyPair("");
141                 return new String[] { keyPair[1].toString(), keyPair[0].toString() };
142         }
143
144         /**
145          * Inserts the image data of the given {@link TemporaryImage} and returns
146          * the given insert token that can be used to add listeners or cancel the
147          * insert.
148          *
149          * @param temporaryImage
150          *            The temporary image data
151          * @param image
152          *            The image
153          * @param insertToken
154          *            The insert token
155          * @throws SoneException
156          *             if the insert could not be started
157          */
158         public void insertImage(TemporaryImage temporaryImage, Image image, InsertToken insertToken) throws SoneException {
159                 String filenameHint = image.getId() + "." + temporaryImage.getMimeType().substring(temporaryImage.getMimeType().lastIndexOf("/") + 1);
160                 InsertableClientSSK key = InsertableClientSSK.createRandom(node.random, "");
161                 FreenetURI targetUri = key.getInsertURI().setDocName(filenameHint);
162                 InsertContext insertContext = client.getInsertContext(true);
163                 RandomAccessBucket bucket = new ArrayBucket(temporaryImage.getImageData());
164                 ClientMetadata metadata = new ClientMetadata(temporaryImage.getMimeType());
165                 InsertBlock insertBlock = new InsertBlock(bucket, metadata, targetUri);
166                 try {
167                         ClientPutter clientPutter = client.insert(insertBlock, null, false, insertContext, insertToken, RequestStarter.INTERACTIVE_PRIORITY_CLASS);
168                         insertToken.setClientPutter(clientPutter);
169                 } catch (InsertException ie1) {
170                         throw new SoneInsertException("Could not start image insert.", ie1);
171                 } finally {
172                         bucket.free();
173                 }
174         }
175
176         /**
177          * Inserts a directory into Freenet.
178          *
179          * @param insertUri
180          *            The insert URI
181          * @param manifestEntries
182          *            The directory entries
183          * @param defaultFile
184          *            The name of the default file
185          * @return The generated URI
186          * @throws SoneException
187          *             if an insert error occurs
188          */
189         public FreenetURI insertDirectory(FreenetURI insertUri, HashMap<String, Object> manifestEntries, String defaultFile) throws SoneException {
190                 try {
191                         return client.insertManifest(insertUri, manifestEntries, defaultFile);
192                 } catch (InsertException ie1) {
193                         throw new SoneException(ie1);
194                 }
195         }
196
197         /**
198          * Registers the USK for the given Sone and notifies the given
199          * {@link SoneDownloader} if an update was found.
200          *
201          * @param sone
202          *            The Sone to watch
203          * @param soneDownloader
204          *            The Sone download to notify on updates
205          */
206         public void registerUsk(final Sone sone, final SoneDownloader soneDownloader) {
207                 try {
208                         logger.log(Level.FINE, String.format("Registering Sone “%s” for USK updates at %s…", sone, sone.getRequestUri().setMetaString(new String[] { "sone.xml" })));
209                         USKCallback uskCallback = new USKCallback() {
210
211                                 @Override
212                                 @SuppressWarnings("synthetic-access")
213                                 public void onFoundEdition(long edition, USK key, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
214                                         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));
215                                         if (edition > sone.getLatestEdition()) {
216                                                 sone.setLatestEdition(edition);
217                                                 new Thread(new Runnable() {
218
219                                                         @Override
220                                                         public void run() {
221                                                                 soneDownloader.fetchSone(sone);
222                                                         }
223                                                 }, "Sone Downloader").start();
224                                         }
225                                 }
226
227                                 @Override
228                                 public short getPollingPriorityProgress() {
229                                         return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
230                                 }
231
232                                 @Override
233                                 public short getPollingPriorityNormal() {
234                                         return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
235                                 }
236                         };
237                         soneUskCallbacks.put(sone.getId(), uskCallback);
238                         boolean runBackgroundFetch = (System.currentTimeMillis() - sone.getTime()) < TimeUnit.DAYS.toMillis(7);
239                         node.clientCore.uskManager.subscribe(USK.create(sone.getRequestUri()), uskCallback, runBackgroundFetch, (HighLevelSimpleClientImpl) client);
240                 } catch (MalformedURLException mue1) {
241                         logger.log(Level.WARNING, String.format("Could not subscribe USK “%s”!", sone.getRequestUri()), mue1);
242                 }
243         }
244
245         /**
246          * Unsubscribes the request URI of the given Sone.
247          *
248          * @param sone
249          *            The Sone to unregister
250          */
251         public void unregisterUsk(Sone sone) {
252                 USKCallback uskCallback = soneUskCallbacks.remove(sone.getId());
253                 if (uskCallback == null) {
254                         return;
255                 }
256                 try {
257                         logger.log(Level.FINEST, String.format("Unsubscribing from USK for %s…", sone));
258                         node.clientCore.uskManager.unsubscribe(USK.create(sone.getRequestUri()), uskCallback);
259                 } catch (MalformedURLException mue1) {
260                         logger.log(Level.FINE, String.format("Could not unsubscribe USK “%s”!", sone.getRequestUri()), mue1);
261                 }
262         }
263
264         /**
265          * Registers an arbitrary URI and calls the given callback if a new edition
266          * is found.
267          *
268          * @param uri
269          *            The URI to watch
270          * @param callback
271          *            The callback to call
272          */
273         public void registerUsk(FreenetURI uri, final Callback callback) {
274                 USKCallback uskCallback = new USKCallback() {
275
276                         @Override
277                         public void onFoundEdition(long edition, USK key, ClientContext clientContext, boolean metadata, short codec, byte[] data, boolean newKnownGood, boolean newSlotToo) {
278                                 callback.editionFound(key.getURI(), edition, newKnownGood, newSlotToo);
279                         }
280
281                         @Override
282                         public short getPollingPriorityNormal() {
283                                 return RequestStarter.PREFETCH_PRIORITY_CLASS;
284                         }
285
286                         @Override
287                         public short getPollingPriorityProgress() {
288                                 return RequestStarter.INTERACTIVE_PRIORITY_CLASS;
289                         }
290
291                 };
292                 try {
293                         node.clientCore.uskManager.subscribe(USK.create(uri), uskCallback, true, (HighLevelSimpleClientImpl) client);
294                         uriUskCallbacks.put(uri, uskCallback);
295                 } catch (MalformedURLException mue1) {
296                         logger.log(Level.WARNING, String.format("Could not subscribe to USK: %s", uri), mue1);
297                 }
298         }
299
300         /**
301          * Unregisters the USK watcher for the given URI.
302          *
303          * @param uri
304          *            The URI to unregister the USK watcher for
305          */
306         public void unregisterUsk(FreenetURI uri) {
307                 USKCallback uskCallback = uriUskCallbacks.remove(uri);
308                 if (uskCallback == null) {
309                         logger.log(Level.INFO, String.format("Could not unregister unknown USK: %s", uri));
310                         return;
311                 }
312                 try {
313                         node.clientCore.uskManager.unsubscribe(USK.create(uri), uskCallback);
314                 } catch (MalformedURLException mue1) {
315                         logger.log(Level.INFO, String.format("Could not unregister invalid USK: %s", uri), mue1);
316                 }
317         }
318
319         /**
320          * Container for a fetched URI and the {@link FetchResult}.
321          *
322          * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
323          */
324         public static class Fetched {
325
326                 /** The fetched URI. */
327                 private final FreenetURI freenetUri;
328
329                 /** The fetch result. */
330                 private final FetchResult fetchResult;
331
332                 /**
333                  * Creates a new fetched URI.
334                  *
335                  * @param freenetUri
336                  *            The URI that was fetched
337                  * @param fetchResult
338                  *            The fetch result
339                  */
340                 public Fetched(FreenetURI freenetUri, FetchResult fetchResult) {
341                         this.freenetUri = freenetUri;
342                         this.fetchResult = fetchResult;
343                 }
344
345                 //
346                 // ACCESSORS
347                 //
348
349                 /**
350                  * Returns the fetched URI.
351                  *
352                  * @return The fetched URI
353                  */
354                 public FreenetURI getFreenetUri() {
355                         return freenetUri;
356                 }
357
358                 /**
359                  * Returns the fetch result.
360                  *
361                  * @return The fetch result
362                  */
363                 public FetchResult getFetchResult() {
364                         return fetchResult;
365                 }
366
367         }
368
369         /**
370          * Callback for USK watcher events.
371          *
372          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
373          */
374         public static interface Callback {
375
376                 /**
377                  * Notifies a listener that a new edition was found for a URI.
378                  *
379                  * @param uri
380                  *            The URI that a new edition was found for
381                  * @param edition
382                  *            The found edition
383                  * @param newKnownGood
384                  *            Whether the found edition was actually fetched
385                  * @param newSlot
386                  *            Whether the found edition is higher than all previously
387                  *            found editions
388                  */
389                 public void editionFound(FreenetURI uri, long edition, boolean newKnownGood, boolean newSlot);
390
391         }
392
393         /**
394          * Insert token that can cancel a running insert and sends events.
395          *
396          * @see ImageInsertAbortedEvent
397          * @see ImageInsertStartedEvent
398          * @see ImageInsertFailedEvent
399          * @see ImageInsertFinishedEvent
400          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
401          */
402         public class InsertToken implements ClientPutCallback {
403
404                 /** The image being inserted. */
405                 private final Image image;
406
407                 /** The client putter. */
408                 private ClientPutter clientPutter;
409
410                 /** The final URI. */
411                 private volatile FreenetURI resultingUri;
412
413                 /**
414                  * Creates a new insert token for the given image.
415                  *
416                  * @param image
417                  *            The image being inserted
418                  */
419                 public InsertToken(Image image) {
420                         this.image = image;
421                 }
422
423                 //
424                 // ACCESSORS
425                 //
426
427                 /**
428                  * Sets the client putter that is inserting the image. This will also
429                  * signal all registered listeners that the image has started.
430                  *
431                  * @param clientPutter
432                  *            The client putter
433                  */
434                 @SuppressWarnings("synthetic-access")
435                 public void setClientPutter(ClientPutter clientPutter) {
436                         this.clientPutter = clientPutter;
437                         eventBus.post(new ImageInsertStartedEvent(image));
438                 }
439
440                 //
441                 // ACTIONS
442                 //
443
444                 /**
445                  * Cancels the running insert.
446                  */
447                 @SuppressWarnings("synthetic-access")
448                 public void cancel() {
449                         clientPutter.cancel(node.clientCore.clientContext);
450                         eventBus.post(new ImageInsertAbortedEvent(image));
451                 }
452
453                 //
454                 // INTERFACE ClientPutCallback
455                 //
456
457                 @Override
458                 public RequestClient getRequestClient() {
459                         return clientPutter.getClient();
460                 }
461
462                 @Override
463                 public void onResume(ClientContext context) throws ResumeFailedException {
464                         /* ignore. */
465                 }
466
467                 /**
468                  * {@inheritDoc}
469                  */
470                 @Override
471                 @SuppressWarnings("synthetic-access")
472                 public void onFailure(InsertException insertException, BaseClientPutter clientPutter) {
473                         if ((insertException != null) && ("Cancelled by user".equals(insertException.getMessage()))) {
474                                 eventBus.post(new ImageInsertAbortedEvent(image));
475                         } else {
476                                 eventBus.post(new ImageInsertFailedEvent(image, insertException));
477                         }
478                 }
479
480                 /**
481                  * {@inheritDoc}
482                  */
483                 @Override
484                 public void onFetchable(BaseClientPutter clientPutter) {
485                         /* ignore, we don’t care. */
486                 }
487
488                 /**
489                  * {@inheritDoc}
490                  */
491                 @Override
492                 public void onGeneratedMetadata(Bucket metadata, BaseClientPutter clientPutter) {
493                         /* ignore, we don’t care. */
494                 }
495
496                 /**
497                  * {@inheritDoc}
498                  */
499                 @Override
500                 public void onGeneratedURI(FreenetURI generatedUri, BaseClientPutter clientPutter) {
501                         resultingUri = generatedUri;
502                 }
503
504                 /**
505                  * {@inheritDoc}
506                  */
507                 @Override
508                 @SuppressWarnings("synthetic-access")
509                 public void onSuccess(BaseClientPutter clientPutter) {
510                         eventBus.post(new ImageInsertFinishedEvent(image, resultingUri));
511                 }
512
513         }
514
515 }