2 * Sone - SoneInserter.java - Copyright © 2010–2019 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 static java.lang.String.format;
21 import static java.lang.System.currentTimeMillis;
22 import static java.util.concurrent.TimeUnit.*;
23 import static java.util.logging.Logger.getLogger;
24 import static net.pterodactylus.sone.data.Album.NOT_EMPTY;
26 import java.io.Closeable;
27 import java.io.InputStream;
28 import java.io.InputStreamReader;
29 import java.io.StringWriter;
30 import java.nio.charset.Charset;
31 import java.util.HashMap;
32 import java.util.HashSet;
35 import java.util.concurrent.*;
36 import java.util.concurrent.atomic.AtomicInteger;
37 import java.util.logging.Level;
38 import java.util.logging.Logger;
40 import com.codahale.metrics.*;
41 import com.google.common.base.*;
42 import net.pterodactylus.sone.core.SoneModificationDetector.LockableFingerprintProvider;
43 import net.pterodactylus.sone.core.event.InsertionDelayChangedEvent;
44 import net.pterodactylus.sone.core.event.SoneInsertAbortedEvent;
45 import net.pterodactylus.sone.core.event.SoneInsertedEvent;
46 import net.pterodactylus.sone.core.event.SoneInsertingEvent;
47 import net.pterodactylus.sone.data.Album;
48 import net.pterodactylus.sone.data.Post;
49 import net.pterodactylus.sone.data.Reply;
50 import net.pterodactylus.sone.data.Sone;
51 import net.pterodactylus.sone.data.Sone.SoneStatus;
52 import net.pterodactylus.sone.main.SonePlugin;
53 import net.pterodactylus.util.io.Closer;
54 import net.pterodactylus.util.service.AbstractService;
55 import net.pterodactylus.util.template.HtmlFilter;
56 import net.pterodactylus.util.template.ReflectionAccessor;
57 import net.pterodactylus.util.template.Template;
58 import net.pterodactylus.util.template.TemplateContext;
59 import net.pterodactylus.util.template.TemplateContextFactory;
60 import net.pterodactylus.util.template.TemplateException;
61 import net.pterodactylus.util.template.TemplateParser;
62 import net.pterodactylus.util.template.XmlFilter;
64 import com.google.common.annotations.VisibleForTesting;
65 import com.google.common.collect.FluentIterable;
66 import com.google.common.collect.Ordering;
67 import com.google.common.eventbus.EventBus;
68 import com.google.common.eventbus.Subscribe;
70 import freenet.keys.FreenetURI;
71 import freenet.support.api.Bucket;
72 import freenet.support.api.ManifestElement;
73 import freenet.support.api.RandomAccessBucket;
74 import freenet.support.io.ArrayBucket;
77 * A Sone inserter is responsible for inserting a Sone if it has changed.
79 public class SoneInserter extends AbstractService {
82 private static final Logger logger = getLogger(SoneInserter.class.getName());
84 /** The insertion delay (in seconds). */
85 private static final AtomicInteger insertionDelay = new AtomicInteger(60);
87 /** The template factory used to create the templates. */
88 private static final TemplateContextFactory templateContextFactory = new TemplateContextFactory();
91 templateContextFactory.addAccessor(Object.class, new ReflectionAccessor());
92 templateContextFactory.addFilter("xml", new XmlFilter());
93 templateContextFactory.addFilter("html", new HtmlFilter());
96 /** The UTF-8 charset. */
97 private static final Charset utf8Charset = Charset.forName("UTF-8");
100 private final Core core;
102 /** The event bus. */
103 private final EventBus eventBus;
105 /** The Freenet interface. */
106 private final FreenetInterface freenetInterface;
108 private final SoneModificationDetector soneModificationDetector;
109 private final long delay;
110 private final String soneId;
111 private final Histogram soneInsertDurationHistogram;
112 private final Meter soneInsertErrorMeter;
115 * Creates a new Sone inserter.
121 * @param freenetInterface
122 * The freenet interface
124 * The ID of the Sone to insert
126 public SoneInserter(final Core core, EventBus eventBus, FreenetInterface freenetInterface, MetricRegistry metricRegistry, final String soneId) {
127 this(core, eventBus, freenetInterface, metricRegistry, soneId, new SoneModificationDetector(new LockableFingerprintProvider() {
129 public boolean isLocked() {
130 Sone sone = core.getSone(soneId);
134 return core.isLocked(sone);
138 public String getFingerprint() {
139 Sone sone = core.getSone(soneId);
143 return sone.getFingerprint();
145 }, insertionDelay), 1000);
149 SoneInserter(Core core, EventBus eventBus, FreenetInterface freenetInterface, MetricRegistry metricRegistry, String soneId, SoneModificationDetector soneModificationDetector, long delay) {
150 super("Sone Inserter for “" + soneId + "”", false);
152 this.eventBus = eventBus;
153 this.freenetInterface = freenetInterface;
154 this.soneInsertDurationHistogram = metricRegistry.histogram("sone.insert.duration", () -> new Histogram(new ExponentiallyDecayingReservoir(3000, 0)));
155 this.soneInsertErrorMeter = metricRegistry.meter("sone.insert.errors");
156 this.soneId = soneId;
157 this.soneModificationDetector = soneModificationDetector;
166 static AtomicInteger getInsertionDelay() {
167 return insertionDelay;
171 * Changes the insertion delay, i.e. the time the Sone inserter waits after it
172 * has noticed a Sone modification before it starts the insert.
174 * @param insertionDelay
175 * The insertion delay (in seconds)
177 private static void setInsertionDelay(int insertionDelay) {
178 SoneInserter.insertionDelay.set(insertionDelay);
182 * Returns the fingerprint of the last insert.
184 * @return The fingerprint of the last insert
186 public String getLastInsertFingerprint() {
187 return soneModificationDetector.getLastInsertFingerprint();
191 * Sets the fingerprint of the last insert.
193 * @param lastInsertFingerprint
194 * The fingerprint of the last insert
196 public void setLastInsertFingerprint(String lastInsertFingerprint) {
197 soneModificationDetector.setFingerprint(lastInsertFingerprint);
201 * Returns whether the Sone inserter has detected a modification of the
204 * @return {@code true} if the Sone has been modified, {@code false}
207 public boolean isModified() {
208 return soneModificationDetector.isModified();
219 protected void serviceRun() {
220 while (!shouldStop()) {
222 /* check every second. */
225 if (soneModificationDetector.isEligibleForInsert()) {
226 Sone sone = core.getSone(soneId);
228 logger.log(Level.WARNING, format("Sone %s has disappeared, exiting inserter.", soneId));
231 InsertInformation insertInformation = new InsertInformation(sone);
232 logger.log(Level.INFO, String.format("Inserting Sone “%s”…", sone.getName()));
234 boolean success = false;
236 sone.setStatus(SoneStatus.inserting);
237 long insertTime = currentTimeMillis();
238 eventBus.post(new SoneInsertingEvent(sone));
239 Stopwatch stopwatch = Stopwatch.createStarted();
240 FreenetURI finalUri = freenetInterface.insertDirectory(sone.getInsertUri(), insertInformation.generateManifestEntries(), "index.html");
242 soneInsertDurationHistogram.update(stopwatch.elapsed(MICROSECONDS));
243 eventBus.post(new SoneInsertedEvent(sone, stopwatch.elapsed(MILLISECONDS), insertInformation.getFingerprint()));
244 /* at this point we might already be stopped. */
246 /* if so, bail out, don’t change anything. */
249 sone.setTime(insertTime);
250 sone.setLatestEdition(finalUri.getEdition());
251 core.touchConfiguration();
253 logger.log(Level.INFO, String.format("Inserted Sone “%s” at %s.", sone.getName(), finalUri));
254 } catch (SoneException se1) {
255 soneInsertErrorMeter.mark();
256 eventBus.post(new SoneInsertAbortedEvent(sone, se1));
257 logger.log(Level.WARNING, String.format("Could not insert Sone “%s”!", sone.getName()), se1);
259 insertInformation.close();
260 sone.setStatus(SoneStatus.idle);
264 * reset modification counter if Sone has not been modified
265 * while it was inserted.
268 synchronized (sone) {
269 if (insertInformation.getFingerprint().equals(sone.getFingerprint())) {
270 logger.log(Level.FINE, String.format("Sone “%s” was not modified further, resetting counter…", sone));
271 soneModificationDetector.setFingerprint(insertInformation.getFingerprint());
272 core.touchConfiguration();
277 } catch (Throwable t1) {
278 logger.log(Level.SEVERE, "SoneInserter threw an Exception!", t1);
284 public void insertionDelayChanged(InsertionDelayChangedEvent insertionDelayChangedEvent) {
285 setInsertionDelay(insertionDelayChangedEvent.getInsertionDelay());
289 * Container for information that are required to insert a Sone. This
290 * container merely exists to copy all relevant data without holding a lock
291 * on the {@link Sone} object for too long.
294 class InsertInformation implements Closeable {
296 /** All properties of the Sone, copied for thread safety. */
297 private final Map<String, Object> soneProperties = new HashMap<>();
298 private final String fingerprint;
299 private final ManifestCreator manifestCreator;
302 * Creates a new insert information container.
307 public InsertInformation(Sone sone) {
308 this.fingerprint = sone.getFingerprint();
309 Map<String, Object> soneProperties = new HashMap<>();
310 soneProperties.put("id", sone.getId());
311 soneProperties.put("name", sone.getName());
312 soneProperties.put("time", currentTimeMillis());
313 soneProperties.put("requestUri", sone.getRequestUri());
314 soneProperties.put("profile", sone.getProfile());
315 soneProperties.put("posts", Ordering.from(Post.NEWEST_FIRST).sortedCopy(sone.getPosts()));
316 soneProperties.put("replies", Ordering.from(Reply.TIME_COMPARATOR).reverse().sortedCopy(sone.getReplies()));
317 soneProperties.put("likedPostIds", new HashSet<>(sone.getLikedPostIds()));
318 soneProperties.put("likedReplyIds", new HashSet<>(sone.getLikedReplyIds()));
319 soneProperties.put("albums", FluentIterable.from(sone.getRootAlbum().getAlbums()).transformAndConcat(Album.FLATTENER).filter(NOT_EMPTY).toList());
320 manifestCreator = new ManifestCreator(core, soneProperties);
328 String getFingerprint() {
337 * Generates all manifest entries required to insert this Sone.
339 * @return The manifest entries for the Sone insert
341 public HashMap<String, Object> generateManifestEntries() {
342 HashMap<String, Object> manifestEntries = new HashMap<>();
344 /* first, create an index.html. */
345 manifestEntries.put("index.html", manifestCreator.createManifestElement(
346 "index.html", "text/html; charset=utf-8",
347 "/templates/insert/index.html"));
349 /* now, store the sone. */
350 manifestEntries.put("sone.xml", manifestCreator.createManifestElement(
351 "sone.xml", "text/xml; charset=utf-8",
352 "/templates/insert/sone.xml"));
354 return manifestEntries;
358 public void close() {
359 manifestCreator.close();
365 * Creates manifest elements for an insert by rendering a template.
368 static class ManifestCreator implements Closeable {
370 private final Core core;
371 private final Map<String, Object> soneProperties;
372 private final Set<Bucket> buckets = new HashSet<>();
374 ManifestCreator(Core core, Map<String, Object> soneProperties) {
376 this.soneProperties = soneProperties;
379 public ManifestElement createManifestElement(String name, String contentType, String templateName) {
380 InputStreamReader templateInputStreamReader = null;
381 InputStream templateInputStream = null;
384 templateInputStream = getClass().getResourceAsStream(templateName);
385 templateInputStreamReader = new InputStreamReader(templateInputStream, utf8Charset);
386 template = TemplateParser.parse(templateInputStreamReader);
387 } catch (TemplateException te1) {
388 logger.log(Level.SEVERE, String.format("Could not parse template “%s”!", templateName), te1);
391 Closer.close(templateInputStreamReader);
392 Closer.close(templateInputStream);
395 TemplateContext templateContext = templateContextFactory.createTemplateContext();
396 templateContext.set("core", core);
397 templateContext.set("currentSone", soneProperties);
398 templateContext.set("currentEdition", core.getUpdateChecker().getLatestEdition());
399 templateContext.set("version", SonePlugin.getPluginVersion());
400 StringWriter writer = new StringWriter();
402 template.render(templateContext, writer);
403 RandomAccessBucket bucket = new ArrayBucket(writer.toString().getBytes(Charsets.UTF_8));
405 return new ManifestElement(name, bucket, contentType, bucket.size());
406 } catch (TemplateException te1) {
407 logger.log(Level.SEVERE, String.format("Could not render template “%s”!", templateName), te1);
410 Closer.close(writer);
414 public void close() {
415 for (Bucket bucket : buckets) {