Prevent resource leaks.
[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.HashMap;
24 import java.util.logging.Level;
25 import java.util.logging.Logger;
26
27 import net.pterodactylus.sone.data.Sone;
28 import net.pterodactylus.sone.freenet.StringBucket;
29 import net.pterodactylus.util.io.Closer;
30 import net.pterodactylus.util.logging.Logging;
31 import net.pterodactylus.util.service.AbstractService;
32 import net.pterodactylus.util.template.DefaultTemplateFactory;
33 import net.pterodactylus.util.template.ReflectionAccessor;
34 import net.pterodactylus.util.template.Template;
35 import net.pterodactylus.util.template.TemplateException;
36 import freenet.client.async.ManifestElement;
37 import freenet.keys.FreenetURI;
38
39 /**
40  * A Sone inserter is responsible for inserting a Sone if it has changed.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class SoneInserter extends AbstractService {
45
46         /** The logger. */
47         private static final Logger logger = Logging.getLogger(SoneInserter.class);
48
49         /** The template factory used to create the templates. */
50         private static final DefaultTemplateFactory templateFactory = new DefaultTemplateFactory();
51
52         static {
53                 templateFactory.addAccessor(Object.class, new ReflectionAccessor());
54         }
55
56         /** The UTF-8 charset. */
57         private static final Charset utf8Charset = Charset.forName("UTF-8");
58
59         /** The Freenet interface. */
60         private final FreenetInterface freenetInterface;
61
62         /** The Sone to insert. */
63         private final Sone sone;
64
65         /**
66          * Creates a new Sone inserter.
67          *
68          * @param freenetInterface
69          *            The freenet interface
70          * @param sone
71          *            The Sone to insert
72          */
73         public SoneInserter(FreenetInterface freenetInterface, Sone sone) {
74                 super("Sone Inserter for “" + sone.getName() + "”");
75                 this.freenetInterface = freenetInterface;
76                 this.sone = sone;
77         }
78
79         //
80         // SERVICE METHODS
81         //
82
83         /**
84          * {@inheritDoc}
85          */
86         @Override
87         protected void serviceRun() {
88                 long modificationCounter = 0;
89                 while (!shouldStop()) {
90                         InsertInformation insertInformation = null;
91                         synchronized (sone) {
92                                 modificationCounter = sone.getModificationCounter();
93                                 if (modificationCounter > 0) {
94                                         insertInformation = new InsertInformation(sone.getRequestUri(), sone.getInsertUri());
95                                 }
96                         }
97                         if (insertInformation != null) {
98                                 logger.log(Level.INFO, "Inserting Sone “%s”…", new Object[] { sone.getName() });
99
100                                 boolean success = false;
101                                 try {
102                                         FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri().setKeyType("USK").setDocName("Sone-" + sone.getName()).setSuggestedEdition(0), insertInformation.generateManifestEntries(), "index.html");
103                                         success = true;
104                                         logger.log(Level.INFO, "Inserted Sone “%s” at %s.", new Object[] { sone.getName(), finalUri });
105                                 } catch (SoneException se1) {
106                                         logger.log(Level.WARNING, "Could not insert Sone “" + sone.getName() + "”!", se1);
107                                 }
108
109                                 /*
110                                  * reset modification counter if Sone has not been modified
111                                  * while it was inserted.
112                                  */
113                                 if (success) {
114                                         synchronized (sone) {
115                                                 if (sone.getModificationCounter() == modificationCounter) {
116                                                         logger.log(Level.FINE, "Sone “%s” was not modified further, resetting counter…", new Object[] { sone });
117                                                         sone.setModificationCounter(0);
118                                                 } else {
119                                                         logger.log(Level.FINE, "Sone “%s” was modified since the insert started, starting another insert…", new Object[] { sone });
120                                                 }
121                                         }
122                                 }
123                         }
124                         logger.log(Level.FINEST, "Waiting 60 seconds before checking Sone “" + sone.getName() + "” again.");
125                         sleep(60 * 1000);
126                 }
127         }
128
129         /**
130          * Container for information that are required to insert a Sone. This
131          * container merely exists to copy all relevant data without holding a lock
132          * on the {@link Sone} object for too long.
133          *
134          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
135          */
136         private class InsertInformation {
137
138                 /** The request URI of the Sone. */
139                 private final FreenetURI requestUri;
140
141                 /** The insert URI of the Sone. */
142                 private final FreenetURI insertUri;
143
144                 /**
145                  * Creates a new insert information container.
146                  *
147                  * @param requestUri
148                  *            The request URI of the Sone
149                  * @param insertUri
150                  *            The insert URI of the Sone
151                  */
152                 public InsertInformation(FreenetURI requestUri, FreenetURI insertUri) {
153                         this.requestUri = requestUri;
154                         this.insertUri = insertUri;
155                 }
156
157                 //
158                 // ACCESSORS
159                 //
160
161                 /**
162                  * Returns the request URI of the Sone.
163                  *
164                  * @return The request URI of the Sone
165                  */
166                 @SuppressWarnings("unused")
167                 public FreenetURI getRequestUri() {
168                         return requestUri;
169                 }
170
171                 /**
172                  * Returns the insert URI of the Sone.
173                  *
174                  * @return The insert URI of the Sone
175                  */
176                 public FreenetURI getInsertUri() {
177                         return insertUri;
178                 }
179
180                 //
181                 // ACTIONS
182                 //
183
184                 /**
185                  * Generates all manifest entries required to insert this Sone.
186                  *
187                  * @return The manifest entries for the Sone insert
188                  */
189                 public HashMap<String, Object> generateManifestEntries() {
190                         HashMap<String, Object> manifestEntries = new HashMap<String, Object>();
191
192                         /* first, create an index.html. */
193                         manifestEntries.put("index.html", createManifestElement("index.html", "text/html; charset=utf-8", "/templates/insert/index.html"));
194
195                         /* now, store the sone. */
196                         manifestEntries.put("sone.xml", createManifestElement("sone.xml", "text/xml; charset=utf-8", "/templates/insert/sone.xml"));
197
198                         return manifestEntries;
199                 }
200
201                 //
202                 // PRIVATE METHODS
203                 //
204
205                 /**
206                  * Creates a new manifest element.
207                  *
208                  * @param name
209                  *            The name of the file
210                  * @param contentType
211                  *            The content type of the file
212                  * @param templateName
213                  *            The name of the template to render
214                  * @return The manifest element
215                  */
216                 @SuppressWarnings("synthetic-access")
217                 private ManifestElement createManifestElement(String name, String contentType, String templateName) {
218                         InputStreamReader templateInputStreamReader;
219                         Template template = templateFactory.createTemplate(templateInputStreamReader = new InputStreamReader(getClass().getResourceAsStream(templateName), utf8Charset));
220                         try {
221                                 template.parse();
222                         } catch (TemplateException te1) {
223                                 logger.log(Level.SEVERE, "Could not parse template “" + templateName + "”!", te1);
224                                 return null;
225                         } finally {
226                                 Closer.close(templateInputStreamReader);
227                         }
228                         template.set("currentSone", sone);
229                         StringWriter writer = new StringWriter();
230                         StringBucket bucket = null;
231                         try {
232                                 template.render(writer);
233                                 bucket = new StringBucket(writer.toString(), utf8Charset);
234                                 return new ManifestElement(name, bucket, contentType, bucket.size());
235                         } catch (TemplateException te1) {
236                                 logger.log(Level.SEVERE, "Could not render template “" + templateName + "”!", te1);
237                                 return null;
238                         } finally {
239                                 Closer.close(writer);
240                                 if (bucket != null) {
241                                         bucket.free();
242                                 }
243                         }
244                 }
245
246         }
247
248 }