Store the client name and version in the inserted Sone.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneInserter.java
1 /*
2  * FreenetSone - SoneInserter.java - Copyright © 2010 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.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;
26 import java.util.Map;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
29
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;
46
47 /**
48  * A Sone inserter is responsible for inserting a Sone if it has changed.
49  *
50  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
51  */
52 public class SoneInserter extends AbstractService {
53
54         /** The logger. */
55         private static final Logger logger = Logging.getLogger(SoneInserter.class);
56
57         /** The insertion delay (in seconds). */
58         private static volatile int insertionDelay = 60;
59
60         /** The template factory used to create the templates. */
61         private static final DefaultTemplateFactory templateFactory = new DefaultTemplateFactory();
62
63         static {
64                 templateFactory.addAccessor(Object.class, new ReflectionAccessor());
65                 templateFactory.addFilter("xml", new XmlFilter());
66         }
67
68         /** The UTF-8 charset. */
69         private static final Charset utf8Charset = Charset.forName("UTF-8");
70
71         /** The core. */
72         private final Core core;
73
74         /** The Freenet interface. */
75         private final FreenetInterface freenetInterface;
76
77         /** The Sone to insert. */
78         private final Sone sone;
79
80         /** Whether a modification has been detected. */
81         private volatile boolean modified = false;
82
83         /** The fingerprint of the last insert. */
84         private volatile String lastInsertFingerprint;
85
86         /**
87          * Creates a new Sone inserter.
88          *
89          * @param core
90          *            The core
91          * @param freenetInterface
92          *            The freenet interface
93          * @param sone
94          *            The Sone to insert
95          */
96         public SoneInserter(Core core, FreenetInterface freenetInterface, Sone sone) {
97                 super("Sone Inserter for “" + sone.getName() + "”", false);
98                 this.core = core;
99                 this.freenetInterface = freenetInterface;
100                 this.sone = sone;
101         }
102
103         //
104         // ACCESSORS
105         //
106
107         /**
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.
110          *
111          * @param insertionDelay
112          *            The insertion delay (in seconds)
113          */
114         public static void setInsertionDelay(int insertionDelay) {
115                 SoneInserter.insertionDelay = insertionDelay;
116         }
117
118         /**
119          * Returns the fingerprint of the last insert.
120          *
121          * @return The fingerprint of the last insert
122          */
123         public String getLastInsertFingerprint() {
124                 return lastInsertFingerprint;
125         }
126
127         /**
128          * Sets the fingerprint of the last insert.
129          *
130          * @param lastInsertFingerprint
131          *            The fingerprint of the last insert
132          */
133         public void setLastInsertFingerprint(String lastInsertFingerprint) {
134                 this.lastInsertFingerprint = lastInsertFingerprint;
135         }
136
137         /**
138          * Returns whether the Sone inserter has detected a modification of the
139          * Sone.
140          *
141          * @return {@code true} if the Sone has been modified, {@code false}
142          *         otherwise
143          */
144         public boolean isModified() {
145                 return modified;
146         }
147
148         //
149         // SERVICE METHODS
150         //
151
152         /**
153          * {@inheritDoc}
154          */
155         @Override
156         protected void serviceRun() {
157                 long lastModificationTime = 0;
158                 String lastFingerprint = "";
159                 while (!shouldStop()) {
160                         /* check every seconds. */
161                         sleep(1000);
162
163                         InsertInformation insertInformation = null;
164                         synchronized (sone) {
165                                 String fingerprint = sone.getFingerprint();
166                                 if (!fingerprint.equals(lastFingerprint)) {
167                                         if (fingerprint.equals(lastInsertFingerprint)) {
168                                                 modified = false;
169                                                 lastModificationTime = 0;
170                                                 logger.log(Level.FINE, "Sone %s has been reverted to last insert state.", sone);
171                                         } else {
172                                                 lastModificationTime = System.currentTimeMillis();
173                                                 modified = true;
174                                                 sone.setTime(lastModificationTime);
175                                                 logger.log(Level.FINE, "Sone %s has been modified, waiting %d seconds before inserting.", new Object[] { sone.getName(), insertionDelay });
176                                         }
177                                         lastFingerprint = fingerprint;
178                                 }
179                                 if (modified && (lastModificationTime > 0) && ((System.currentTimeMillis() - lastModificationTime) > (insertionDelay * 1000))) {
180                                         lastInsertFingerprint = fingerprint;
181                                         insertInformation = new InsertInformation(sone);
182                                 }
183                         }
184
185                         if (insertInformation != null) {
186                                 logger.log(Level.INFO, "Inserting Sone “%s”…", new Object[] { sone.getName() });
187
188                                 boolean success = false;
189                                 try {
190                                         core.setSoneStatus(sone, SoneStatus.inserting);
191                                         FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri().setKeyType("USK").setSuggestedEdition(0), insertInformation.generateManifestEntries(), "index.html");
192                                         /* at this point we might already be stopped. */
193                                         if (shouldStop()) {
194                                                 /* if so, bail out, don’t change anything. */
195                                                 break;
196                                         }
197                                         sone.setLatestEdition(finalUri.getEdition());
198                                         success = true;
199                                         logger.log(Level.INFO, "Inserted Sone “%s” at %s.", new Object[] { sone.getName(), finalUri });
200                                 } catch (SoneException se1) {
201                                         logger.log(Level.WARNING, "Could not insert Sone “" + sone.getName() + "”!", se1);
202                                 } finally {
203                                         core.setSoneStatus(sone, SoneStatus.idle);
204                                 }
205
206                                 /*
207                                  * reset modification counter if Sone has not been modified
208                                  * while it was inserted.
209                                  */
210                                 if (success) {
211                                         synchronized (sone) {
212                                                 if (lastInsertFingerprint.equals(sone.getFingerprint())) {
213                                                         logger.log(Level.FINE, "Sone “%s” was not modified further, resetting counter…", new Object[] { sone });
214                                                         core.saveSone(sone);
215                                                         lastModificationTime = 0;
216                                                         modified = false;
217                                                 }
218                                         }
219                                 }
220                         }
221                 }
222         }
223
224         /**
225          * Container for information that are required to insert a Sone. This
226          * container merely exists to copy all relevant data without holding a lock
227          * on the {@link Sone} object for too long.
228          *
229          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
230          */
231         private class InsertInformation {
232
233                 /** All properties of the Sone, copied for thread safety. */
234                 private final Map<String, Object> soneProperties = new HashMap<String, Object>();
235
236                 /**
237                  * Creates a new insert information container.
238                  *
239                  * @param sone
240                  *            The sone to insert
241                  */
242                 public InsertInformation(Sone sone) {
243                         soneProperties.put("id", sone.getId());
244                         soneProperties.put("name", sone.getName());
245                         soneProperties.put("time", sone.getTime());
246                         soneProperties.put("requestUri", sone.getRequestUri());
247                         soneProperties.put("insertUri", sone.getInsertUri());
248                         soneProperties.put("profile", sone.getProfile());
249                         soneProperties.put("posts", new ArrayList<Post>(sone.getPosts()));
250                         soneProperties.put("replies", new HashSet<Reply>(sone.getReplies()));
251                         soneProperties.put("likedPostIds", new HashSet<String>(sone.getLikedPostIds()));
252                         soneProperties.put("likeReplyIds", new HashSet<String>(sone.getLikedReplyIds()));
253                 }
254
255                 //
256                 // ACCESSORS
257                 //
258
259                 /**
260                  * Returns the insert URI of the Sone.
261                  *
262                  * @return The insert URI of the Sone
263                  */
264                 public FreenetURI getInsertUri() {
265                         return (FreenetURI) soneProperties.get("insertUri");
266                 }
267
268                 //
269                 // ACTIONS
270                 //
271
272                 /**
273                  * Generates all manifest entries required to insert this Sone.
274                  *
275                  * @return The manifest entries for the Sone insert
276                  */
277                 public HashMap<String, Object> generateManifestEntries() {
278                         HashMap<String, Object> manifestEntries = new HashMap<String, Object>();
279
280                         /* first, create an index.html. */
281                         manifestEntries.put("index.html", createManifestElement("index.html", "text/html; charset=utf-8", "/templates/insert/index.html"));
282
283                         /* now, store the sone. */
284                         manifestEntries.put("sone.xml", createManifestElement("sone.xml", "text/xml; charset=utf-8", "/templates/insert/sone.xml"));
285
286                         return manifestEntries;
287                 }
288
289                 //
290                 // PRIVATE METHODS
291                 //
292
293                 /**
294                  * Creates a new manifest element.
295                  *
296                  * @param name
297                  *            The name of the file
298                  * @param contentType
299                  *            The content type of the file
300                  * @param templateName
301                  *            The name of the template to render
302                  * @return The manifest element
303                  */
304                 @SuppressWarnings("synthetic-access")
305                 private ManifestElement createManifestElement(String name, String contentType, String templateName) {
306                         InputStreamReader templateInputStreamReader;
307                         Template template = templateFactory.createTemplate(templateInputStreamReader = new InputStreamReader(getClass().getResourceAsStream(templateName), utf8Charset));
308                         try {
309                                 template.parse();
310                         } catch (TemplateException te1) {
311                                 logger.log(Level.SEVERE, "Could not parse template “" + templateName + "”!", te1);
312                                 return null;
313                         } finally {
314                                 Closer.close(templateInputStreamReader);
315                         }
316
317                         template.set("currentSone", soneProperties);
318                         template.set("version", SonePlugin.VERSION);
319                         StringWriter writer = new StringWriter();
320                         StringBucket bucket = null;
321                         try {
322                                 template.render(writer);
323                                 bucket = new StringBucket(writer.toString(), utf8Charset);
324                                 return new ManifestElement(name, bucket, contentType, bucket.size());
325                         } catch (TemplateException te1) {
326                                 logger.log(Level.SEVERE, "Could not render template “" + templateName + "”!", te1);
327                                 return null;
328                         } finally {
329                                 Closer.close(writer);
330                                 if (bucket != null) {
331                                         bucket.free();
332                                 }
333                         }
334                 }
335
336         }
337
338 }