Merge branch 'release-0.9.5'
[Sone.git] / src / main / java / net / pterodactylus / sone / main / SonePlugin.java
1 /*
2  * Sone - SonePlugin.java - Copyright © 2010–2016 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.main;
19
20 import static com.google.common.base.Optional.of;
21 import static java.util.logging.Logger.getLogger;
22
23 import java.io.File;
24 import java.util.logging.Handler;
25 import java.util.logging.Level;
26 import java.util.logging.LogRecord;
27 import java.util.logging.Logger;
28
29 import net.pterodactylus.sone.core.Core;
30 import net.pterodactylus.sone.fcp.FcpInterface;
31 import net.pterodactylus.sone.freenet.PluginStoreConfigurationBackend;
32 import net.pterodactylus.sone.freenet.wot.Context;
33 import net.pterodactylus.sone.freenet.wot.WebOfTrustConnector;
34 import net.pterodactylus.sone.web.WebInterface;
35 import net.pterodactylus.util.config.Configuration;
36 import net.pterodactylus.util.config.ConfigurationException;
37 import net.pterodactylus.util.config.MapConfigurationBackend;
38 import net.pterodactylus.util.version.Version;
39
40 import com.google.common.base.Optional;
41 import com.google.common.cache.CacheBuilder;
42 import com.google.common.cache.CacheLoader;
43 import com.google.common.cache.LoadingCache;
44 import com.google.common.eventbus.EventBus;
45 import com.google.inject.AbstractModule;
46 import com.google.inject.Guice;
47 import com.google.inject.Injector;
48 import com.google.inject.TypeLiteral;
49 import com.google.inject.matcher.Matchers;
50 import com.google.inject.spi.InjectionListener;
51 import com.google.inject.spi.TypeEncounter;
52 import com.google.inject.spi.TypeListener;
53
54 import freenet.client.async.PersistenceDisabledException;
55 import freenet.l10n.BaseL10n.LANGUAGE;
56 import freenet.l10n.PluginL10n;
57 import freenet.node.Node;
58 import freenet.pluginmanager.FredPlugin;
59 import freenet.pluginmanager.FredPluginBaseL10n;
60 import freenet.pluginmanager.FredPluginFCP;
61 import freenet.pluginmanager.FredPluginL10n;
62 import freenet.pluginmanager.FredPluginThreadless;
63 import freenet.pluginmanager.FredPluginVersioned;
64 import freenet.pluginmanager.PluginReplySender;
65 import freenet.pluginmanager.PluginRespirator;
66 import freenet.support.SimpleFieldSet;
67 import freenet.support.api.Bucket;
68
69 /**
70  * This class interfaces with Freenet. It is the class that is loaded by the
71  * node and starts up the whole Sone system.
72  *
73  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
74  */
75 public class SonePlugin implements FredPlugin, FredPluginFCP, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless, FredPluginVersioned {
76
77         private static final Logger soneLogger = getLogger("net.pterodactylus.sone");
78
79         static {
80                 /* initialize logging. */
81                 soneLogger.setUseParentHandlers(false);
82                 soneLogger.addHandler(new Handler() {
83                         private final LoadingCache<String, Class<?>> classCache = CacheBuilder.newBuilder()
84                                         .build(new CacheLoader<String, Class<?>>() {
85                                                 @Override
86                                                 public Class<?> load(String key) throws Exception {
87                                                         return Class.forName(key);
88                                                 }
89                                         });
90
91                         @Override
92                         public void publish(LogRecord logRecord) {
93                                 int recordLevel = logRecord.getLevel().intValue();
94                                 Class<?> loggingClass = classCache.getUnchecked(logRecord.getLoggerName());
95                                 if (recordLevel < Level.FINE.intValue()) {
96                                         freenet.support.Logger.debug(loggingClass, logRecord.getMessage(), logRecord.getThrown());
97                                 } else if (recordLevel < Level.INFO.intValue()) {
98                                         freenet.support.Logger.minor(loggingClass, logRecord.getMessage(), logRecord.getThrown());
99                                 } else if (recordLevel < Level.WARNING.intValue()) {
100                                         freenet.support.Logger.normal(loggingClass, logRecord.getMessage(), logRecord.getThrown());
101                                 } else if (recordLevel < Level.SEVERE.intValue()) {
102                                         freenet.support.Logger.warning(loggingClass, logRecord.getMessage(), logRecord.getThrown());
103                                 } else {
104                                         freenet.support.Logger.error(loggingClass, logRecord.getMessage(), logRecord.getThrown());
105                                 }
106                         }
107
108                         @Override
109                         public void flush() {
110                         }
111
112                         @Override
113                         public void close() {
114                         }
115                 });
116         }
117
118         /** The version. */
119         public static final Version VERSION = new Version(0, 9, 5);
120
121         /** The current year at time of release. */
122         private static final int YEAR = 2016;
123         private static final String SONE_HOMEPAGE = "USK@nwa8lHa271k2QvJ8aa0Ov7IHAV-DFOCFgmDt3X6BpCI,DuQSUZiI~agF8c-6tjsFFGuZ8eICrzWCILB60nT8KKo,AQACAAE/sone/";
124         private static final int LATEST_EDITION = 72;
125
126         /** The logger. */
127         private static final Logger logger = getLogger(SonePlugin.class.getName());
128
129         /** The plugin respirator. */
130         private PluginRespirator pluginRespirator;
131
132         /** The core. */
133         private Core core;
134
135         /** The web interface. */
136         private WebInterface webInterface;
137
138         /** The FCP interface. */
139         private FcpInterface fcpInterface;
140
141         /** The l10n helper. */
142         private PluginL10n l10n;
143
144         /** The web of trust connector. */
145         private WebOfTrustConnector webOfTrustConnector;
146
147         //
148         // ACCESSORS
149         //
150
151         /**
152          * Returns the plugin respirator for this plugin.
153          *
154          * @return The plugin respirator
155          */
156         public PluginRespirator pluginRespirator() {
157                 return pluginRespirator;
158         }
159
160         /**
161          * Returns the core started by this plugin.
162          *
163          * @return The core
164          */
165         public Core core() {
166                 return core;
167         }
168
169         /**
170          * Returns the plugin’s l10n helper.
171          *
172          * @return The plugin’s l10n helper
173          */
174         public PluginL10n l10n() {
175                 return l10n;
176         }
177
178         public static int getYear() {
179                 return YEAR;
180         }
181
182         public static String getHomepage() {
183                 return SONE_HOMEPAGE + LATEST_EDITION;
184         }
185
186         public static long getLatestEdition() {
187                 return LATEST_EDITION;
188         }
189
190         //
191         // FREDPLUGIN METHODS
192         //
193
194         /**
195          * {@inheritDoc}
196          */
197         @Override
198         public void runPlugin(PluginRespirator pluginRespirator) {
199                 this.pluginRespirator = pluginRespirator;
200
201                 /* create a configuration. */
202                 Configuration oldConfiguration;
203                 Configuration newConfiguration = null;
204                 boolean firstStart = !new File("sone.properties").exists();
205                 boolean newConfig = false;
206                 try {
207                         oldConfiguration = new Configuration(new MapConfigurationBackend(new File("sone.properties"), false));
208                         newConfiguration = oldConfiguration;
209                 } catch (ConfigurationException ce1) {
210                         newConfig = true;
211                         logger.log(Level.INFO, "Could not load configuration file, trying plugin store…", ce1);
212                         try {
213                                 newConfiguration = new Configuration(new MapConfigurationBackend(new File("sone.properties"), true));
214                                 logger.log(Level.INFO, "Created new configuration file.");
215                         } catch (ConfigurationException ce2) {
216                                 logger.log(Level.SEVERE, "Could not create configuration file, using Plugin Store!", ce2);
217                         }
218                         try {
219                                 oldConfiguration = new Configuration(new PluginStoreConfigurationBackend(pluginRespirator));
220                                 logger.log(Level.INFO, "Plugin store loaded.");
221                         } catch (PersistenceDisabledException pde1) {
222                                 logger.log(Level.SEVERE, "Could not load any configuration, using empty configuration!");
223                                 oldConfiguration = new Configuration(new MapConfigurationBackend());
224                         }
225                 }
226
227                 final Configuration startConfiguration;
228                 if ((newConfiguration != null) && (oldConfiguration != newConfiguration)) {
229                         logger.log(Level.INFO, "Setting configuration to file-based configuration.");
230                         startConfiguration = newConfiguration;
231                 } else {
232                         startConfiguration = oldConfiguration;
233                 }
234                 final EventBus eventBus = new EventBus();
235
236                 /* Freenet injector configuration. */
237                 AbstractModule freenetModule = new AbstractModule() {
238
239                         @Override
240                         @SuppressWarnings("synthetic-access")
241                         protected void configure() {
242                                 bind(PluginRespirator.class).toInstance(SonePlugin.this.pluginRespirator);
243                                 bind(Node.class).toInstance(SonePlugin.this.pluginRespirator.getNode());
244                         }
245                 };
246                 /* Sone injector configuration. */
247                 AbstractModule soneModule = new AbstractModule() {
248
249                         @Override
250                         protected void configure() {
251                                 bind(EventBus.class).toInstance(eventBus);
252                                 bind(Configuration.class).toInstance(startConfiguration);
253                                 Context context = new Context("Sone");
254                                 bind(Context.class).toInstance(context);
255                                 bind(getOptionalContextTypeLiteral()).toInstance(of(context));
256                                 bind(SonePlugin.class).toInstance(SonePlugin.this);
257                                 bind(Version.class).toInstance(VERSION);
258                                 if (startConfiguration.getBooleanValue("Developer.LoadFromFilesystem").getValue(false)) {
259                                         String path = startConfiguration.getStringValue("Developer.FilesystemPath").getValue(null);
260                                         if (path != null) {
261                                                 bind(Loaders.class).toInstance(new DebugLoaders(path));
262                                         }
263                                 }
264                                 bindListener(Matchers.any(), new TypeListener() {
265
266                                         @Override
267                                         public <I> void hear(TypeLiteral<I> typeLiteral, TypeEncounter<I> typeEncounter) {
268                                                 typeEncounter.register(new InjectionListener<I>() {
269
270                                                         @Override
271                                                         public void afterInjection(I injectee) {
272                                                                 eventBus.register(injectee);
273                                                         }
274                                                 });
275                                         }
276                                 });
277                         }
278
279                         private TypeLiteral<Optional<Context>> getOptionalContextTypeLiteral() {
280                                 return new TypeLiteral<Optional<Context>>() {
281                                 };
282                         }
283
284                 };
285                 Injector injector = Guice.createInjector(freenetModule, soneModule);
286                 core = injector.getInstance(Core.class);
287
288                 /* create web of trust connector. */
289                 webOfTrustConnector = injector.getInstance(WebOfTrustConnector.class);
290
291                 /* create FCP interface. */
292                 fcpInterface = injector.getInstance(FcpInterface.class);
293
294                 /* create the web interface. */
295                 webInterface = injector.getInstance(WebInterface.class);
296
297                 /* start core! */
298                 core.start();
299                 webInterface.start();
300                 webInterface.setFirstStart(firstStart);
301                 webInterface.setNewConfig(newConfig);
302         }
303
304         /**
305          * {@inheritDoc}
306          */
307         @Override
308         public void terminate() {
309                 try {
310                         /* stop the web interface. */
311                         webInterface.stop();
312
313                         /* stop the core. */
314                         core.stop();
315
316                         /* stop the web of trust connector. */
317                         webOfTrustConnector.stop();
318                 } catch (Throwable t1) {
319                         logger.log(Level.SEVERE, "Error while shutting down!", t1);
320                 } finally {
321                         deregisterLoggerHandlers();
322                 }
323         }
324
325         private void deregisterLoggerHandlers() {
326                 for (Handler handler : soneLogger.getHandlers()) {
327                         soneLogger.removeHandler(handler);
328                 }
329         }
330
331         //
332         // INTERFACE FredPluginFCP
333         //
334
335         /**
336          * {@inheritDoc}
337          */
338         @Override
339         public void handle(PluginReplySender pluginReplySender, SimpleFieldSet parameters, Bucket data, int accessType) {
340                 fcpInterface.handle(pluginReplySender, parameters, data, accessType);
341         }
342
343         //
344         // INTERFACE FredPluginL10n
345         //
346
347         /**
348          * {@inheritDoc}
349          */
350         @Override
351         public String getString(String key) {
352                 return l10n.getBase().getString(key);
353         }
354
355         /**
356          * {@inheritDoc}
357          */
358         @Override
359         public void setLanguage(LANGUAGE newLanguage) {
360                 l10n = new PluginL10n(this, newLanguage);
361         }
362
363         //
364         // INTERFACE FredPluginBaseL10n
365         //
366
367         /**
368          * {@inheritDoc}
369          */
370         @Override
371         public String getL10nFilesBasePath() {
372                 return "i18n";
373         }
374
375         /**
376          * {@inheritDoc}
377          */
378         @Override
379         public String getL10nFilesMask() {
380                 return "sone.${lang}.properties";
381         }
382
383         /**
384          * {@inheritDoc}
385          */
386         @Override
387         public String getL10nOverrideFilesMask() {
388                 return "sone.${lang}.override.properties";
389         }
390
391         /**
392          * {@inheritDoc}
393          */
394         @Override
395         public ClassLoader getPluginClassLoader() {
396                 return SonePlugin.class.getClassLoader();
397         }
398
399         //
400         // INTERFACE FredPluginVersioned
401         //
402
403         /**
404          * {@inheritDoc}
405          */
406         @Override
407         public String getVersion() {
408                 return VERSION.toString();
409         }
410
411 }