Use static import for currentTimeMillis().
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneInserter.java
1 /*
2  * Sone - SoneInserter.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 static com.google.common.base.Preconditions.checkArgument;
21 import static java.lang.System.currentTimeMillis;
22 import static net.pterodactylus.sone.data.Album.NOT_EMPTY;
23
24 import java.io.InputStreamReader;
25 import java.io.StringWriter;
26 import java.nio.charset.Charset;
27 import java.util.HashMap;
28 import java.util.HashSet;
29 import java.util.Map;
30 import java.util.logging.Level;
31 import java.util.logging.Logger;
32
33 import net.pterodactylus.sone.core.event.SoneInsertAbortedEvent;
34 import net.pterodactylus.sone.core.event.SoneInsertedEvent;
35 import net.pterodactylus.sone.core.event.SoneInsertingEvent;
36 import net.pterodactylus.sone.data.Album;
37 import net.pterodactylus.sone.data.Post;
38 import net.pterodactylus.sone.data.Reply;
39 import net.pterodactylus.sone.data.Sone;
40 import net.pterodactylus.sone.data.Sone.SoneStatus;
41 import net.pterodactylus.sone.freenet.StringBucket;
42 import net.pterodactylus.sone.main.SonePlugin;
43 import net.pterodactylus.util.io.Closer;
44 import net.pterodactylus.util.logging.Logging;
45 import net.pterodactylus.util.service.AbstractService;
46 import net.pterodactylus.util.template.HtmlFilter;
47 import net.pterodactylus.util.template.ReflectionAccessor;
48 import net.pterodactylus.util.template.Template;
49 import net.pterodactylus.util.template.TemplateContext;
50 import net.pterodactylus.util.template.TemplateContextFactory;
51 import net.pterodactylus.util.template.TemplateException;
52 import net.pterodactylus.util.template.TemplateParser;
53 import net.pterodactylus.util.template.XmlFilter;
54
55 import com.google.common.collect.FluentIterable;
56 import com.google.common.collect.Ordering;
57 import com.google.common.eventbus.EventBus;
58
59 import freenet.client.async.ManifestElement;
60 import freenet.keys.FreenetURI;
61
62 /**
63  * A Sone inserter is responsible for inserting a Sone if it has changed.
64  *
65  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
66  */
67 public class SoneInserter extends AbstractService {
68
69         /** The logger. */
70         private static final Logger logger = Logging.getLogger(SoneInserter.class);
71
72         /** The insertion delay (in seconds). */
73         private static volatile int insertionDelay = 60;
74
75         /** The template factory used to create the templates. */
76         private static final TemplateContextFactory templateContextFactory = new TemplateContextFactory();
77
78         static {
79                 templateContextFactory.addAccessor(Object.class, new ReflectionAccessor());
80                 templateContextFactory.addFilter("xml", new XmlFilter());
81                 templateContextFactory.addFilter("html", new HtmlFilter());
82         }
83
84         /** The UTF-8 charset. */
85         private static final Charset utf8Charset = Charset.forName("UTF-8");
86
87         /** The core. */
88         private final Core core;
89
90         /** The event bus. */
91         private final EventBus eventBus;
92
93         /** The Freenet interface. */
94         private final FreenetInterface freenetInterface;
95
96         /** The Sone to insert. */
97         private volatile Sone sone;
98
99         /** Whether a modification has been detected. */
100         private volatile boolean modified = false;
101
102         /** The fingerprint of the last insert. */
103         private volatile String lastInsertFingerprint;
104
105         /**
106          * Creates a new Sone inserter.
107          *
108          * @param core
109          *            The core
110          * @param eventBus
111          *            The event bus
112          * @param freenetInterface
113          *            The freenet interface
114          * @param sone
115          *            The Sone to insert
116          */
117         public SoneInserter(Core core, EventBus eventBus, FreenetInterface freenetInterface, Sone sone) {
118                 super("Sone Inserter for “" + sone.getName() + "”", false);
119                 this.core = core;
120                 this.eventBus = eventBus;
121                 this.freenetInterface = freenetInterface;
122                 this.sone = sone;
123         }
124
125         //
126         // ACCESSORS
127         //
128
129         /**
130          * Sets the Sone to insert.
131          *
132          * @param sone
133          *              The Sone to insert
134          * @return This Sone inserter
135          */
136         public SoneInserter setSone(Sone sone) {
137                 checkArgument((this.sone == null) || sone.equals(this.sone), "Sone to insert can not be set to a different Sone");
138                 this.sone = sone;
139                 return this;
140         }
141
142         /**
143          * Changes the insertion delay, i.e. the time the Sone inserter waits after it
144          * has noticed a Sone modification before it starts the insert.
145          *
146          * @param insertionDelay
147          *            The insertion delay (in seconds)
148          */
149         public static void setInsertionDelay(int insertionDelay) {
150                 SoneInserter.insertionDelay = insertionDelay;
151         }
152
153         /**
154          * Returns the fingerprint of the last insert.
155          *
156          * @return The fingerprint of the last insert
157          */
158         public String getLastInsertFingerprint() {
159                 return lastInsertFingerprint;
160         }
161
162         /**
163          * Sets the fingerprint of the last insert.
164          *
165          * @param lastInsertFingerprint
166          *            The fingerprint of the last insert
167          */
168         public void setLastInsertFingerprint(String lastInsertFingerprint) {
169                 this.lastInsertFingerprint = lastInsertFingerprint;
170         }
171
172         /**
173          * Returns whether the Sone inserter has detected a modification of the
174          * Sone.
175          *
176          * @return {@code true} if the Sone has been modified, {@code false}
177          *         otherwise
178          */
179         public boolean isModified() {
180                 return modified;
181         }
182
183         //
184         // SERVICE METHODS
185         //
186
187         /**
188          * {@inheritDoc}
189          */
190         @Override
191         protected void serviceRun() {
192                 long lastModificationTime = 0;
193                 String lastInsertedFingerprint = lastInsertFingerprint;
194                 String lastFingerprint = "";
195                 while (!shouldStop()) {
196                         try {
197                                 /* check every second. */
198                                 sleep(1000);
199
200                                 /* don’t insert locked Sones. */
201                                 Sone sone = this.sone;
202                                 if (core.isLocked(sone)) {
203                                         /* trigger redetection when the Sone is unlocked. */
204                                         synchronized (sone) {
205                                                 modified = !sone.getFingerprint().equals(lastInsertedFingerprint);
206                                         }
207                                         lastFingerprint = "";
208                                         lastModificationTime = 0;
209                                         continue;
210                                 }
211
212                                 InsertInformation insertInformation = null;
213                                 synchronized (sone) {
214                                         String fingerprint = sone.getFingerprint();
215                                         if (!fingerprint.equals(lastFingerprint)) {
216                                                 if (fingerprint.equals(lastInsertedFingerprint)) {
217                                                         modified = false;
218                                                         lastModificationTime = 0;
219                                                         logger.log(Level.FINE, String.format("Sone %s has been reverted to last insert state.", sone));
220                                                 } else {
221                                                         lastModificationTime = System.currentTimeMillis();
222                                                         modified = true;
223                                                         logger.log(Level.FINE, String.format("Sone %s has been modified, waiting %d seconds before inserting.", sone.getName(), insertionDelay));
224                                                 }
225                                                 lastFingerprint = fingerprint;
226                                         }
227                                         if (modified && (lastModificationTime > 0) && ((System.currentTimeMillis() - lastModificationTime) > (insertionDelay * 1000))) {
228                                                 lastInsertedFingerprint = fingerprint;
229                                                 insertInformation = new InsertInformation(sone);
230                                         }
231                                 }
232
233                                 if (insertInformation != null) {
234                                         logger.log(Level.INFO, String.format("Inserting Sone “%s”…", sone.getName()));
235
236                                         boolean success = false;
237                                         try {
238                                                 sone.setStatus(SoneStatus.inserting);
239                                                 long insertTime = currentTimeMillis();
240                                                 insertInformation.setTime(insertTime);
241                                                 eventBus.post(new SoneInsertingEvent(sone));
242                                                 FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri(), insertInformation.generateManifestEntries(), "index.html");
243                                                 eventBus.post(new SoneInsertedEvent(sone, currentTimeMillis() - insertTime));
244                                                 /* at this point we might already be stopped. */
245                                                 if (shouldStop()) {
246                                                         /* if so, bail out, don’t change anything. */
247                                                         break;
248                                                 }
249                                                 sone.setTime(insertTime);
250                                                 sone.setLatestEdition(finalUri.getEdition());
251                                                 core.touchConfiguration();
252                                                 success = true;
253                                                 logger.log(Level.INFO, String.format("Inserted Sone “%s” at %s.", sone.getName(), finalUri));
254                                         } catch (SoneException se1) {
255                                                 eventBus.post(new SoneInsertAbortedEvent(sone, se1));
256                                                 logger.log(Level.WARNING, String.format("Could not insert Sone “%s”!", sone.getName()), se1);
257                                         } finally {
258                                                 sone.setStatus(SoneStatus.idle);
259                                         }
260
261                                         /*
262                                          * reset modification counter if Sone has not been modified
263                                          * while it was inserted.
264                                          */
265                                         if (success) {
266                                                 synchronized (sone) {
267                                                         if (lastInsertedFingerprint.equals(sone.getFingerprint())) {
268                                                                 logger.log(Level.FINE, String.format("Sone “%s” was not modified further, resetting counter…", sone));
269                                                                 lastModificationTime = 0;
270                                                                 lastInsertFingerprint = lastInsertedFingerprint;
271                                                                 core.touchConfiguration();
272                                                                 modified = false;
273                                                         }
274                                                 }
275                                         }
276                                 }
277                         } catch (Throwable t1) {
278                                 logger.log(Level.SEVERE, "SoneInserter threw an Exception!", t1);
279                         }
280                 }
281         }
282
283         /**
284          * Container for information that are required to insert a Sone. This
285          * container merely exists to copy all relevant data without holding a lock
286          * on the {@link Sone} object for too long.
287          *
288          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
289          */
290         private class InsertInformation {
291
292                 /** All properties of the Sone, copied for thread safety. */
293                 private final Map<String, Object> soneProperties = new HashMap<String, Object>();
294
295                 /**
296                  * Creates a new insert information container.
297                  *
298                  * @param sone
299                  *            The sone to insert
300                  */
301                 public InsertInformation(Sone sone) {
302                         soneProperties.put("id", sone.getId());
303                         soneProperties.put("name", sone.getName());
304                         soneProperties.put("time", sone.getTime());
305                         soneProperties.put("requestUri", sone.getRequestUri());
306                         soneProperties.put("insertUri", sone.getInsertUri());
307                         soneProperties.put("profile", sone.getProfile());
308                         soneProperties.put("posts", Ordering.from(Post.TIME_COMPARATOR).sortedCopy(sone.getPosts()));
309                         soneProperties.put("replies", Ordering.from(Reply.TIME_COMPARATOR).reverse().sortedCopy(sone.getReplies()));
310                         soneProperties.put("likedPostIds", new HashSet<String>(sone.getLikedPostIds()));
311                         soneProperties.put("likedReplyIds", new HashSet<String>(sone.getLikedReplyIds()));
312                         soneProperties.put("albums", FluentIterable.from(sone.getRootAlbum().getAlbums()).transformAndConcat(Album.FLATTENER).filter(NOT_EMPTY).toList());
313                 }
314
315                 //
316                 // ACCESSORS
317                 //
318
319                 /**
320                  * Returns the insert URI of the Sone.
321                  *
322                  * @return The insert URI of the Sone
323                  */
324                 public FreenetURI getInsertUri() {
325                         return (FreenetURI) soneProperties.get("insertUri");
326                 }
327
328                 /**
329                  * Sets the time of the Sone at the time of the insert.
330                  *
331                  * @param time
332                  *            The time of the Sone
333                  */
334                 public void setTime(long time) {
335                         soneProperties.put("time", time);
336                 }
337
338                 //
339                 // ACTIONS
340                 //
341
342                 /**
343                  * Generates all manifest entries required to insert this Sone.
344                  *
345                  * @return The manifest entries for the Sone insert
346                  */
347                 public HashMap<String, Object> generateManifestEntries() {
348                         HashMap<String, Object> manifestEntries = new HashMap<String, Object>();
349
350                         /* first, create an index.html. */
351                         manifestEntries.put("index.html", createManifestElement("index.html", "text/html; charset=utf-8", "/templates/insert/index.html"));
352
353                         /* now, store the sone. */
354                         manifestEntries.put("sone.xml", createManifestElement("sone.xml", "text/xml; charset=utf-8", "/templates/insert/sone.xml"));
355
356                         return manifestEntries;
357                 }
358
359                 //
360                 // PRIVATE METHODS
361                 //
362
363                 /**
364                  * Creates a new manifest element.
365                  *
366                  * @param name
367                  *            The name of the file
368                  * @param contentType
369                  *            The content type of the file
370                  * @param templateName
371                  *            The name of the template to render
372                  * @return The manifest element
373                  */
374                 @SuppressWarnings("synthetic-access")
375                 private ManifestElement createManifestElement(String name, String contentType, String templateName) {
376                         InputStreamReader templateInputStreamReader = null;
377                         Template template;
378                         try {
379                                 templateInputStreamReader = new InputStreamReader(getClass().getResourceAsStream(templateName), utf8Charset);
380                                 template = TemplateParser.parse(templateInputStreamReader);
381                         } catch (TemplateException te1) {
382                                 logger.log(Level.SEVERE, String.format("Could not parse template “%s”!", templateName), te1);
383                                 return null;
384                         } finally {
385                                 Closer.close(templateInputStreamReader);
386                         }
387
388                         TemplateContext templateContext = templateContextFactory.createTemplateContext();
389                         templateContext.set("core", core);
390                         templateContext.set("currentSone", soneProperties);
391                         templateContext.set("currentEdition", core.getUpdateChecker().getLatestEdition());
392                         templateContext.set("version", SonePlugin.VERSION);
393                         StringWriter writer = new StringWriter();
394                         StringBucket bucket = null;
395                         try {
396                                 template.render(templateContext, writer);
397                                 bucket = new StringBucket(writer.toString(), utf8Charset);
398                                 return new ManifestElement(name, bucket, contentType, bucket.size());
399                         } catch (TemplateException te1) {
400                                 logger.log(Level.SEVERE, String.format("Could not render template “%s”!", templateName), te1);
401                                 return null;
402                         } finally {
403                                 Closer.close(writer);
404                                 if (bucket != null) {
405                                         bucket.free();
406                                 }
407                         }
408                 }
409
410         }
411
412 }