X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fmain%2FSonePlugin.java;h=ae7c9d21508deaf0ed1ee643fe894cf3e911cdf6;hb=HEAD;hp=60812cdab1af339a44567928bdc0fac02d9e2037;hpb=88939f20101f34244b998356e64b8cdb05305f33;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java index 60812cd..82ab065 100644 --- a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java +++ b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java @@ -1,5 +1,5 @@ /* - * FreenetSone - SonePlugin.java - Copyright © 2010 David Roden + * Sone - SonePlugin.java - Copyright © 2010–2020 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,44 +17,91 @@ package net.pterodactylus.sone.main; -import java.io.File; -import java.util.Collections; -import java.util.logging.Level; -import java.util.logging.Logger; +import static java.util.logging.Logger.*; -import net.pterodactylus.sone.core.Core; -import net.pterodactylus.sone.core.FreenetInterface; -import net.pterodactylus.sone.freenet.PluginStoreConfigurationBackend; -import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.config.Configuration; -import net.pterodactylus.util.config.ConfigurationException; -import net.pterodactylus.util.config.MapConfigurationBackend; -import net.pterodactylus.util.config.XMLConfigurationBackend; -import net.pterodactylus.util.logging.Logging; -import freenet.client.async.DatabaseDisabledException; -import freenet.l10n.BaseL10n.LANGUAGE; -import freenet.l10n.PluginL10n; -import freenet.pluginmanager.FredPlugin; -import freenet.pluginmanager.FredPluginBaseL10n; -import freenet.pluginmanager.FredPluginL10n; -import freenet.pluginmanager.FredPluginThreadless; -import freenet.pluginmanager.PluginRespirator; +import java.util.logging.Logger; +import java.util.logging.*; + +import javax.annotation.Nonnull; + +import net.pterodactylus.sone.core.*; +import net.pterodactylus.sone.core.event.*; +import net.pterodactylus.sone.fcp.*; +import net.pterodactylus.sone.freenet.wot.*; +import net.pterodactylus.sone.web.*; +import net.pterodactylus.sone.web.notification.NotificationHandler; +import net.pterodactylus.sone.web.notification.NotificationHandlerModule; + +import freenet.l10n.BaseL10n.*; +import freenet.l10n.*; +import freenet.pluginmanager.*; +import freenet.support.*; +import freenet.support.api.*; + +import com.google.common.annotations.*; +import com.google.common.eventbus.*; +import com.google.common.cache.*; +import com.google.inject.*; +import com.google.inject.name.*; +import kotlin.jvm.functions.*; /** * This class interfaces with Freenet. It is the class that is loaded by the * node and starts up the whole Sone system. - * - * @author David ‘Bombe’ Roden */ -public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless { +public class SonePlugin implements FredPlugin, FredPluginFCP, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless, FredPluginVersioned { + + private static final Logger soneLogger = getLogger("net.pterodactylus.sone"); static { /* initialize logging. */ - Logging.setup("sone"); + soneLogger.setUseParentHandlers(false); + soneLogger.setLevel(Level.ALL); + soneLogger.addHandler(new Handler() { + private final LoadingCache> classCache = CacheBuilder.newBuilder() + .build(new CacheLoader>() { + @Override + public Class load(@Nonnull String key) throws Exception { + return SonePlugin.class.getClassLoader().loadClass(key); + } + }); + + @Override + public void publish(LogRecord logRecord) { + int recordLevel = logRecord.getLevel().intValue(); + Class loggingClass = classCache.getUnchecked(logRecord.getLoggerName()); + if (recordLevel < Level.FINE.intValue()) { + freenet.support.Logger.debug(loggingClass, logRecord.getMessage(), logRecord.getThrown()); + } else if (recordLevel < Level.INFO.intValue()) { + freenet.support.Logger.minor(loggingClass, logRecord.getMessage(), logRecord.getThrown()); + } else if (recordLevel < Level.WARNING.intValue()) { + freenet.support.Logger.normal(loggingClass, logRecord.getMessage(), logRecord.getThrown()); + } else if (recordLevel < Level.SEVERE.intValue()) { + freenet.support.Logger.warning(loggingClass, logRecord.getMessage(), logRecord.getThrown()); + } else { + freenet.support.Logger.error(loggingClass, logRecord.getMessage(), logRecord.getThrown()); + } + } + + @Override + public void flush() { + } + + @Override + public void close() { + } + }); } + /** The current year at time of release. */ + private static final int YEAR = 2020; + private static final String SONE_HOMEPAGE = "USK@nwa8lHa271k2QvJ8aa0Ov7IHAV-DFOCFgmDt3X6BpCI,DuQSUZiI~agF8c-6tjsFFGuZ8eICrzWCILB60nT8KKo,AQACAAE/sone/"; + private static final int LATEST_EDITION = 81; + /** The logger. */ - private static final Logger logger = Logging.getLogger(SonePlugin.class); + private static final Logger logger = getLogger(SonePlugin.class.getName()); + + private final Function1 injectorCreator; /** The plugin respirator. */ private PluginRespirator pluginRespirator; @@ -62,12 +109,30 @@ public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10 /** The core. */ private Core core; + /** The event bus. */ + private EventBus eventBus; + /** The web interface. */ private WebInterface webInterface; + /** The FCP interface. */ + private FcpInterface fcpInterface; + /** The l10n helper. */ private PluginL10n l10n; + /** The web of trust connector. */ + private WebOfTrustConnector webOfTrustConnector; + + public SonePlugin() { + this(Guice::createInjector); + } + + @VisibleForTesting + public SonePlugin(Function1 injectorCreator) { + this.injectorCreator = injectorCreator; + } + // // ACCESSORS // @@ -99,6 +164,23 @@ public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10 return l10n; } + public static String getPluginVersion() { + net.pterodactylus.sone.main.Version version = VersionParserKt.getParsedVersion(); + return (version == null) ? "unknown" : version.getNice(); + } + + public int getYear() { + return YEAR; + } + + public String getHomepage() { + return SONE_HOMEPAGE + LATEST_EDITION; + } + + public static long getLatestEdition() { + return LATEST_EDITION; + } + // // FREDPLUGIN METHODS // @@ -110,34 +192,59 @@ public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10 public void runPlugin(PluginRespirator pluginRespirator) { this.pluginRespirator = pluginRespirator; - /* create a configuration. */ - Configuration configuration; - try { - configuration = new Configuration(new PluginStoreConfigurationBackend(pluginRespirator.getStore())); - } catch (DatabaseDisabledException dde1) { - logger.log(Level.WARNING, "Could not load plugin store, using XML files."); - try { - configuration = new Configuration(new XMLConfigurationBackend(new File("sone.xml"), true)); - } catch (ConfigurationException ce1) { - logger.log(Level.SEVERE, "Could not load or create the “sone.xml” configuration file!"); - configuration = new Configuration(new MapConfigurationBackend(Collections. emptyMap())); - } - } + Injector injector = createInjector(); + core = injector.getInstance(Core.class); + + /* create web of trust connector. */ + webOfTrustConnector = injector.getInstance(WebOfTrustConnector.class); - /* create freenet interface. */ - FreenetInterface freenetInterface = new FreenetInterface(pluginRespirator.getNode(), pluginRespirator.getHLSimpleClient()); + /* create FCP interface. */ + fcpInterface = injector.getInstance(FcpInterface.class); /* create the web interface. */ - webInterface = new WebInterface(this); + webInterface = injector.getInstance(WebInterface.class); - /* create core. */ - core = new Core(); - core.configuration(configuration); - core.freenetInterface(freenetInterface); + /* we need to request this to install all notification handlers. */ + injector.getInstance(NotificationHandler.class); + + /* and this is required to shutdown all tickers. */ + injector.getInstance(TickerShutdown.class); /* start core! */ core.start(); + + /* start the web interface! */ webInterface.start(); + + /* send some events on startup */ + eventBus = injector.getInstance(EventBus.class); + + /* first start? */ + if (injector.getInstance(Key.get(Boolean.class, Names.named("FirstStart")))) { + eventBus.post(new FirstStart()); + } else { + /* new config? */ + if (injector.getInstance(Key.get(Boolean.class, Names.named("NewConfig")))) { + eventBus.post(new ConfigNotRead()); + } + } + + eventBus.post(new Startup()); + } + + @VisibleForTesting + protected Injector createInjector() { + FreenetModule freenetModule = new FreenetModule(pluginRespirator); + AbstractModule soneModule = new SoneModule(this, new EventBus()); + Module webInterfaceModule = new WebInterfaceModule(); + Module notificationHandlerModule = new NotificationHandlerModule(); + + return createInjector(freenetModule, soneModule, webInterfaceModule, notificationHandlerModule); + } + + @VisibleForTesting + protected Injector createInjector(Module... modules) { + return injectorCreator.invoke(modules); } /** @@ -145,13 +252,41 @@ public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10 */ @Override public void terminate() { - /* stop the web interface. */ - webInterface.stop(); + /* send shutdown event. */ + eventBus.post(new Shutdown()); + + try { + /* stop the web interface. */ + webInterface.stop(); + + /* stop the core. */ + core.stop(); + + /* stop the web of trust connector. */ + webOfTrustConnector.stop(); + } catch (Throwable t1) { + logger.log(Level.SEVERE, "Error while shutting down!", t1); + } finally { + deregisterLoggerHandlers(); + } + } + + private void deregisterLoggerHandlers() { + for (Handler handler : soneLogger.getHandlers()) { + soneLogger.removeHandler(handler); + } + } - /* stop the core. */ - core.stop(); + // + // INTERFACE FredPluginFCP + // - /* TODO wait for core to stop? */ + /** + * {@inheritDoc} + */ + @Override + public void handle(PluginReplySender pluginReplySender, SimpleFieldSet parameters, Bucket data, int accessType) { + fcpInterface.handle(pluginReplySender, parameters, data, accessType); } // @@ -210,4 +345,16 @@ public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10 return SonePlugin.class.getClassLoader(); } + // + // INTERFACE FredPluginVersioned + // + + /** + * {@inheritDoc} + */ + @Override + public String getVersion() { + return getPluginVersion(); + } + }