2 * FreenetSone - SoneInserter.java - Copyright © 2010 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.io.InputStreamReader;
21 import java.io.StringWriter;
22 import java.nio.charset.Charset;
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.HashSet;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
30 import net.pterodactylus.sone.core.Core.SoneStatus;
31 import net.pterodactylus.sone.data.Post;
32 import net.pterodactylus.sone.data.Reply;
33 import net.pterodactylus.sone.data.Sone;
34 import net.pterodactylus.sone.freenet.StringBucket;
35 import net.pterodactylus.sone.main.SonePlugin;
36 import net.pterodactylus.util.io.Closer;
37 import net.pterodactylus.util.logging.Logging;
38 import net.pterodactylus.util.service.AbstractService;
39 import net.pterodactylus.util.template.HtmlFilter;
40 import net.pterodactylus.util.template.ReflectionAccessor;
41 import net.pterodactylus.util.template.Template;
42 import net.pterodactylus.util.template.TemplateContext;
43 import net.pterodactylus.util.template.TemplateContextFactory;
44 import net.pterodactylus.util.template.TemplateException;
45 import net.pterodactylus.util.template.TemplateParser;
46 import net.pterodactylus.util.template.XmlFilter;
47 import freenet.client.async.ManifestElement;
48 import freenet.keys.FreenetURI;
51 * A Sone inserter is responsible for inserting a Sone if it has changed.
53 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
55 public class SoneInserter extends AbstractService {
58 private static final Logger logger = Logging.getLogger(SoneInserter.class);
60 /** The insertion delay (in seconds). */
61 private static volatile int insertionDelay = 60;
63 /** The template factory used to create the templates. */
64 private static final TemplateContextFactory templateContextFactory = new TemplateContextFactory();
67 templateContextFactory.addAccessor(Object.class, new ReflectionAccessor());
68 templateContextFactory.addFilter("xml", new XmlFilter());
69 templateContextFactory.addFilter("html", new HtmlFilter());
72 /** The UTF-8 charset. */
73 private static final Charset utf8Charset = Charset.forName("UTF-8");
76 private final Core core;
78 /** The Freenet interface. */
79 private final FreenetInterface freenetInterface;
81 /** The Sone to insert. */
82 private final Sone sone;
84 /** Whether a modification has been detected. */
85 private volatile boolean modified = false;
87 /** The fingerprint of the last insert. */
88 private volatile String lastInsertFingerprint;
91 * Creates a new Sone inserter.
95 * @param freenetInterface
96 * The freenet interface
100 public SoneInserter(Core core, FreenetInterface freenetInterface, Sone sone) {
101 super("Sone Inserter for “" + sone.getName() + "”", false);
103 this.freenetInterface = freenetInterface;
112 * Changes the insertion delay, i.e. the time the Sone inserter waits after
113 * it has noticed a Sone modification before it starts the insert.
115 * @param insertionDelay
116 * The insertion delay (in seconds)
118 public static void setInsertionDelay(int insertionDelay) {
119 SoneInserter.insertionDelay = insertionDelay;
123 * Returns the fingerprint of the last insert.
125 * @return The fingerprint of the last insert
127 public String getLastInsertFingerprint() {
128 return lastInsertFingerprint;
132 * Sets the fingerprint of the last insert.
134 * @param lastInsertFingerprint
135 * The fingerprint of the last insert
137 public void setLastInsertFingerprint(String lastInsertFingerprint) {
138 this.lastInsertFingerprint = lastInsertFingerprint;
142 * Returns whether the Sone inserter has detected a modification of the
145 * @return {@code true} if the Sone has been modified, {@code false}
148 public boolean isModified() {
160 protected void serviceRun() {
161 long lastModificationTime = 0;
162 String lastFingerprint = "";
163 while (!shouldStop()) {
164 /* check every seconds. */
167 /* don’t insert locked Sones. */
168 if (core.isLocked(sone)) {
169 /* trigger redetection when the Sone is unlocked. */
170 synchronized (sone) {
171 modified = !sone.getFingerprint().equals(lastInsertFingerprint);
173 lastFingerprint = "";
174 lastModificationTime = 0;
178 InsertInformation insertInformation = null;
179 synchronized (sone) {
180 String fingerprint = sone.getFingerprint();
181 if (!fingerprint.equals(lastFingerprint)) {
182 if (fingerprint.equals(lastInsertFingerprint)) {
184 lastModificationTime = 0;
185 logger.log(Level.FINE, "Sone %s has been reverted to last insert state.", sone);
187 lastModificationTime = System.currentTimeMillis();
189 logger.log(Level.FINE, "Sone %s has been modified, waiting %d seconds before inserting.", new Object[] { sone.getName(), insertionDelay });
191 lastFingerprint = fingerprint;
193 if (modified && (lastModificationTime > 0) && ((System.currentTimeMillis() - lastModificationTime) > (insertionDelay * 1000))) {
194 lastInsertFingerprint = fingerprint;
195 insertInformation = new InsertInformation(sone);
199 if (insertInformation != null) {
200 logger.log(Level.INFO, "Inserting Sone “%s”…", new Object[] { sone.getName() });
202 boolean success = false;
204 core.setSoneStatus(sone, SoneStatus.inserting);
205 long insertTime = System.currentTimeMillis();
206 insertInformation.setTime(insertTime);
207 FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri().setKeyType("USK").setSuggestedEdition(0), insertInformation.generateManifestEntries(), "index.html");
208 /* at this point we might already be stopped. */
210 /* if so, bail out, don’t change anything. */
213 sone.setTime(insertTime);
214 sone.setLatestEdition(finalUri.getEdition());
216 logger.log(Level.INFO, "Inserted Sone “%s” at %s.", new Object[] { sone.getName(), finalUri });
217 } catch (SoneException se1) {
218 logger.log(Level.WARNING, "Could not insert Sone “" + sone.getName() + "”!", se1);
220 core.setSoneStatus(sone, SoneStatus.idle);
224 * reset modification counter if Sone has not been modified
225 * while it was inserted.
228 synchronized (sone) {
229 if (lastInsertFingerprint.equals(sone.getFingerprint())) {
230 logger.log(Level.FINE, "Sone “%s” was not modified further, resetting counter…", new Object[] { sone });
232 lastModificationTime = 0;
242 * Container for information that are required to insert a Sone. This
243 * container merely exists to copy all relevant data without holding a lock
244 * on the {@link Sone} object for too long.
246 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
248 private class InsertInformation {
250 /** All properties of the Sone, copied for thread safety. */
251 private final Map<String, Object> soneProperties = new HashMap<String, Object>();
254 * Creates a new insert information container.
259 public InsertInformation(Sone sone) {
260 soneProperties.put("id", sone.getId());
261 soneProperties.put("name", sone.getName());
262 soneProperties.put("time", sone.getTime());
263 soneProperties.put("requestUri", sone.getRequestUri());
264 soneProperties.put("insertUri", sone.getInsertUri());
265 soneProperties.put("profile", sone.getProfile());
266 soneProperties.put("posts", new ArrayList<Post>(sone.getPosts()));
267 soneProperties.put("replies", new HashSet<Reply>(sone.getReplies()));
268 soneProperties.put("likedPostIds", new HashSet<String>(sone.getLikedPostIds()));
269 soneProperties.put("likedReplyIds", new HashSet<String>(sone.getLikedReplyIds()));
277 * Returns the insert URI of the Sone.
279 * @return The insert URI of the Sone
281 public FreenetURI getInsertUri() {
282 return (FreenetURI) soneProperties.get("insertUri");
286 * Sets the time of the Sone at the time of the insert.
289 * The time of the Sone
291 public void setTime(long time) {
292 soneProperties.put("time", time);
300 * Generates all manifest entries required to insert this Sone.
302 * @return The manifest entries for the Sone insert
304 public HashMap<String, Object> generateManifestEntries() {
305 HashMap<String, Object> manifestEntries = new HashMap<String, Object>();
307 /* first, create an index.html. */
308 manifestEntries.put("index.html", createManifestElement("index.html", "text/html; charset=utf-8", "/templates/insert/index.html"));
310 /* now, store the sone. */
311 manifestEntries.put("sone.xml", createManifestElement("sone.xml", "text/xml; charset=utf-8", "/templates/insert/sone.xml"));
313 return manifestEntries;
321 * Creates a new manifest element.
324 * The name of the file
326 * The content type of the file
327 * @param templateName
328 * The name of the template to render
329 * @return The manifest element
331 @SuppressWarnings("synthetic-access")
332 private ManifestElement createManifestElement(String name, String contentType, String templateName) {
333 InputStreamReader templateInputStreamReader = null;
336 templateInputStreamReader = new InputStreamReader(getClass().getResourceAsStream(templateName), utf8Charset);
337 template = TemplateParser.parse(templateInputStreamReader);
338 } catch (TemplateException te1) {
339 logger.log(Level.SEVERE, "Could not parse template “" + templateName + "”!", te1);
342 Closer.close(templateInputStreamReader);
345 TemplateContext templateContext = templateContextFactory.createTemplateContext();
346 templateContext.set("currentSone", soneProperties);
347 templateContext.set("version", SonePlugin.VERSION);
348 StringWriter writer = new StringWriter();
349 StringBucket bucket = null;
351 template.render(templateContext, writer);
352 bucket = new StringBucket(writer.toString(), utf8Charset);
353 return new ManifestElement(name, bucket, contentType, bucket.size());
354 } catch (TemplateException te1) {
355 logger.log(Level.SEVERE, "Could not render template “" + templateName + "”!", te1);
358 Closer.close(writer);
359 if (bucket != null) {