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.DefaultTemplateFactory;
40 import net.pterodactylus.util.template.ReflectionAccessor;
41 import net.pterodactylus.util.template.Template;
42 import net.pterodactylus.util.template.TemplateException;
43 import net.pterodactylus.util.template.XmlFilter;
44 import freenet.client.async.ManifestElement;
45 import freenet.keys.FreenetURI;
48 * A Sone inserter is responsible for inserting a Sone if it has changed.
50 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
52 public class SoneInserter extends AbstractService {
55 private static final Logger logger = Logging.getLogger(SoneInserter.class);
57 /** The insertion delay (in seconds). */
58 private static volatile int insertionDelay = 60;
60 /** The template factory used to create the templates. */
61 private static final DefaultTemplateFactory templateFactory = new DefaultTemplateFactory();
64 templateFactory.addAccessor(Object.class, new ReflectionAccessor());
65 templateFactory.addFilter("xml", new XmlFilter());
68 /** The UTF-8 charset. */
69 private static final Charset utf8Charset = Charset.forName("UTF-8");
72 private final Core core;
74 /** The Freenet interface. */
75 private final FreenetInterface freenetInterface;
77 /** The Sone to insert. */
78 private final Sone sone;
80 /** Whether a modification has been detected. */
81 private volatile boolean modified = false;
83 /** The fingerprint of the last insert. */
84 private volatile String lastInsertFingerprint;
87 * Creates a new Sone inserter.
91 * @param freenetInterface
92 * The freenet interface
96 public SoneInserter(Core core, FreenetInterface freenetInterface, Sone sone) {
97 super("Sone Inserter for “" + sone.getName() + "”", false);
99 this.freenetInterface = freenetInterface;
108 * Changes the insertion delay, i.e. the time the Sone inserter waits after
109 * it has noticed a Sone modification before it starts the insert.
111 * @param insertionDelay
112 * The insertion delay (in seconds)
114 public static void setInsertionDelay(int insertionDelay) {
115 SoneInserter.insertionDelay = insertionDelay;
119 * Returns the fingerprint of the last insert.
121 * @return The fingerprint of the last insert
123 public String getLastInsertFingerprint() {
124 return lastInsertFingerprint;
128 * Sets the fingerprint of the last insert.
130 * @param lastInsertFingerprint
131 * The fingerprint of the last insert
133 public void setLastInsertFingerprint(String lastInsertFingerprint) {
134 this.lastInsertFingerprint = lastInsertFingerprint;
138 * Returns whether the Sone inserter has detected a modification of the
141 * @return {@code true} if the Sone has been modified, {@code false}
144 public boolean isModified() {
156 protected void serviceRun() {
157 long lastModificationTime = 0;
158 String lastFingerprint = "";
159 while (!shouldStop()) {
160 /* check every seconds. */
163 /* don’t insert locked Sones. */
164 if (core.isLocked(sone)) {
165 /* trigger redetection when the Sone is unlocked. */
166 synchronized (sone) {
167 modified = !sone.getFingerprint().equals(lastInsertFingerprint);
169 lastFingerprint = "";
170 lastModificationTime = 0;
174 InsertInformation insertInformation = null;
175 synchronized (sone) {
176 String fingerprint = sone.getFingerprint();
177 if (!fingerprint.equals(lastFingerprint)) {
178 if (fingerprint.equals(lastInsertFingerprint)) {
180 lastModificationTime = 0;
181 logger.log(Level.FINE, "Sone %s has been reverted to last insert state.", sone);
183 lastModificationTime = System.currentTimeMillis();
185 sone.setTime(lastModificationTime);
186 logger.log(Level.FINE, "Sone %s has been modified, waiting %d seconds before inserting.", new Object[] { sone.getName(), insertionDelay });
188 lastFingerprint = fingerprint;
190 if (modified && (lastModificationTime > 0) && ((System.currentTimeMillis() - lastModificationTime) > (insertionDelay * 1000))) {
191 lastInsertFingerprint = fingerprint;
192 insertInformation = new InsertInformation(sone);
196 if (insertInformation != null) {
197 logger.log(Level.INFO, "Inserting Sone “%s”…", new Object[] { sone.getName() });
199 boolean success = false;
201 core.setSoneStatus(sone, SoneStatus.inserting);
202 FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri().setKeyType("USK").setSuggestedEdition(0), insertInformation.generateManifestEntries(), "index.html");
203 /* at this point we might already be stopped. */
205 /* if so, bail out, don’t change anything. */
208 sone.setLatestEdition(finalUri.getEdition());
210 logger.log(Level.INFO, "Inserted Sone “%s” at %s.", new Object[] { sone.getName(), finalUri });
211 } catch (SoneException se1) {
212 logger.log(Level.WARNING, "Could not insert Sone “" + sone.getName() + "”!", se1);
214 core.setSoneStatus(sone, SoneStatus.idle);
218 * reset modification counter if Sone has not been modified
219 * while it was inserted.
222 synchronized (sone) {
223 if (lastInsertFingerprint.equals(sone.getFingerprint())) {
224 logger.log(Level.FINE, "Sone “%s” was not modified further, resetting counter…", new Object[] { sone });
226 lastModificationTime = 0;
236 * Container for information that are required to insert a Sone. This
237 * container merely exists to copy all relevant data without holding a lock
238 * on the {@link Sone} object for too long.
240 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
242 private class InsertInformation {
244 /** All properties of the Sone, copied for thread safety. */
245 private final Map<String, Object> soneProperties = new HashMap<String, Object>();
248 * Creates a new insert information container.
253 public InsertInformation(Sone sone) {
254 soneProperties.put("id", sone.getId());
255 soneProperties.put("name", sone.getName());
256 soneProperties.put("time", sone.getTime());
257 soneProperties.put("requestUri", sone.getRequestUri());
258 soneProperties.put("insertUri", sone.getInsertUri());
259 soneProperties.put("profile", sone.getProfile());
260 soneProperties.put("posts", new ArrayList<Post>(sone.getPosts()));
261 soneProperties.put("replies", new HashSet<Reply>(sone.getReplies()));
262 soneProperties.put("likedPostIds", new HashSet<String>(sone.getLikedPostIds()));
263 soneProperties.put("likeReplyIds", new HashSet<String>(sone.getLikedReplyIds()));
271 * Returns the insert URI of the Sone.
273 * @return The insert URI of the Sone
275 public FreenetURI getInsertUri() {
276 return (FreenetURI) soneProperties.get("insertUri");
284 * Generates all manifest entries required to insert this Sone.
286 * @return The manifest entries for the Sone insert
288 public HashMap<String, Object> generateManifestEntries() {
289 HashMap<String, Object> manifestEntries = new HashMap<String, Object>();
291 /* first, create an index.html. */
292 manifestEntries.put("index.html", createManifestElement("index.html", "text/html; charset=utf-8", "/templates/insert/index.html"));
294 /* now, store the sone. */
295 manifestEntries.put("sone.xml", createManifestElement("sone.xml", "text/xml; charset=utf-8", "/templates/insert/sone.xml"));
297 return manifestEntries;
305 * Creates a new manifest element.
308 * The name of the file
310 * The content type of the file
311 * @param templateName
312 * The name of the template to render
313 * @return The manifest element
315 @SuppressWarnings("synthetic-access")
316 private ManifestElement createManifestElement(String name, String contentType, String templateName) {
317 InputStreamReader templateInputStreamReader;
318 Template template = templateFactory.createTemplate(templateInputStreamReader = new InputStreamReader(getClass().getResourceAsStream(templateName), utf8Charset));
321 } catch (TemplateException te1) {
322 logger.log(Level.SEVERE, "Could not parse template “" + templateName + "”!", te1);
325 Closer.close(templateInputStreamReader);
328 template.set("currentSone", soneProperties);
329 template.set("version", SonePlugin.VERSION);
330 StringWriter writer = new StringWriter();
331 StringBucket bucket = null;
333 template.render(writer);
334 bucket = new StringBucket(writer.toString(), utf8Charset);
335 return new ManifestElement(name, bucket, contentType, bucket.size());
336 } catch (TemplateException te1) {
337 logger.log(Level.SEVERE, "Could not render template “" + templateName + "”!", te1);
340 Closer.close(writer);
341 if (bucket != null) {