X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fmain%2FSonePlugin.java;h=f1b9ff3ece6ac7cf3c729d7f79fdacf3dbcc39db;hb=2c5b76a2fbce16ef33f079a3de9ae9fc9a9d30b8;hp=be4f1fb298dbce90a890efe5ae2ad42da1955246;hpb=703ed07aba96c1ddbd28b8483e2a25a0fff74c61;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 be4f1fb..f1b9ff3 100644 --- a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java +++ b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java @@ -23,15 +23,28 @@ import java.util.logging.Level; import 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.freenet.wot.IdentityManager; +import net.pterodactylus.sone.freenet.wot.PluginConnector; +import net.pterodactylus.sone.freenet.wot.WebOfTrustConnector; +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 net.pterodactylus.util.version.Version; 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.FredPluginVersioned; import freenet.pluginmanager.PluginRespirator; +import freenet.pluginmanager.PluginStore; /** * This class interfaces with Freenet. It is the class that is loaded by the @@ -39,19 +52,92 @@ import freenet.pluginmanager.PluginRespirator; * * @author David ‘Bombe’ Roden */ -public class SonePlugin implements FredPlugin { +public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless, FredPluginVersioned { static { /* initialize logging. */ Logging.setup("sone"); + Logging.setupConsoleLogging(); + /* + * Logging.addLoggingListener(new LoggingListener() { + * @Override public void logged(LogRecord logRecord) { Class + * loggerClass = Logging.getLoggerClass(logRecord.getLoggerName()); int + * recordLevel = logRecord.getLevel().intValue(); if (recordLevel < + * Level.FINE.intValue()) { freenet.support.Logger.debug(loggerClass, + * String.format(logRecord.getMessage(), logRecord.getParameters()), + * logRecord.getThrown()); } else if (recordLevel < + * Level.INFO.intValue()) { freenet.support.Logger.minor(loggerClass, + * String.format(logRecord.getMessage(), logRecord.getParameters()), + * logRecord.getThrown()); } else if (recordLevel < + * Level.WARNING.intValue()) { + * freenet.support.Logger.normal(loggerClass, + * String.format(logRecord.getMessage(), logRecord.getParameters()), + * logRecord.getThrown()); } else if (recordLevel < + * Level.SEVERE.intValue()) { + * freenet.support.Logger.warning(loggerClass, + * String.format(logRecord.getMessage(), logRecord.getParameters()), + * logRecord.getThrown()); } else { + * freenet.support.Logger.error(loggerClass, + * String.format(logRecord.getMessage(), logRecord.getParameters()), + * logRecord.getThrown()); } } }); + */ } + /** The version. */ + public static final Version VERSION = new Version("RC1", 0, 2); + /** The logger. */ private static final Logger logger = Logging.getLogger(SonePlugin.class); + /** The plugin respirator. */ + private PluginRespirator pluginRespirator; + /** The core. */ private Core core; + /** The web interface. */ + private WebInterface webInterface; + + /** The l10n helper. */ + private PluginL10n l10n; + + /** The plugin store. */ + private PluginStore pluginStore; + + /** The identity manager. */ + private IdentityManager identityManager; + + // + // ACCESSORS + // + + /** + * Returns the plugin respirator for this plugin. + * + * @return The plugin respirator + */ + public PluginRespirator pluginRespirator() { + return pluginRespirator; + } + + /** + * Returns the core started by this plugin. + * + * @return The core + */ + public Core core() { + return core; + } + + /** + * Returns the plugin’s l10n helper. + * + * @return The plugin’s l10n helper + */ + public PluginL10n l10n() { + return l10n; + } + // // FREDPLUGIN METHODS // @@ -61,11 +147,12 @@ public class SonePlugin implements FredPlugin { */ @Override public void runPlugin(PluginRespirator pluginRespirator) { + this.pluginRespirator = pluginRespirator; /* create a configuration. */ Configuration configuration; try { - configuration = new Configuration(new PluginStoreConfigurationBackend(pluginRespirator.getStore())); + configuration = new Configuration(new PluginStoreConfigurationBackend(pluginStore = pluginRespirator.getStore())); } catch (DatabaseDisabledException dde1) { logger.log(Level.WARNING, "Could not load plugin store, using XML files."); try { @@ -76,12 +163,41 @@ public class SonePlugin implements FredPlugin { } } + /* create freenet interface. */ + FreenetInterface freenetInterface = new FreenetInterface(pluginRespirator.getNode(), pluginRespirator.getHLSimpleClient()); + + /* create web of trust connector. */ + PluginConnector pluginConnector = new PluginConnector(pluginRespirator); + WebOfTrustConnector webOfTrustConnector = new WebOfTrustConnector(pluginConnector); + identityManager = new IdentityManager(webOfTrustConnector); + identityManager.setContext("Sone"); + + /* create the web interface. */ + webInterface = new WebInterface(this); + /* create core. */ - core = new Core(); - core.configuration(configuration); + core = new Core(configuration, freenetInterface, identityManager); + + /* create the identity manager. */ + identityManager.addIdentityListener(core); /* start core! */ - core.start(); + boolean startupFailed = true; + try { + core.start(); + webInterface.start(); + identityManager.start(); + startupFailed = false; + } finally { + if (startupFailed) { + /* + * we let the exception bubble up but shut the logging down so + * that the logfile is not swamped by the installed logging + * handlers of the failed instances. + */ + Logging.shutdown(); + } + } } /** @@ -89,10 +205,95 @@ public class SonePlugin implements FredPlugin { */ @Override public void terminate() { - /* stop the core. */ - core.stop(); + try { + /* stop the web interface. */ + webInterface.stop(); + + /* stop the core. */ + core.stop(); + + /* stop the identity manager. */ + identityManager.stop(); + + /* TODO wait for core to stop? */ + try { + pluginRespirator.putStore(pluginStore); + } catch (DatabaseDisabledException dde1) { + logger.log(Level.WARNING, "Could not store plugin store, database is disabled.", dde1); + } + + } finally { + /* shutdown logger. */ + Logging.shutdown(); + } + } + + // + // INTERFACE FredPluginL10n + // + + /** + * {@inheritDoc} + */ + @Override + public String getString(String key) { + return l10n.getBase().getString(key); + } + + /** + * {@inheritDoc} + */ + @Override + public void setLanguage(LANGUAGE newLanguage) { + l10n = new PluginL10n(this, newLanguage); + } + + // + // INTERFACE FredPluginBaseL10n + // - /* TODO wait for core to stop? */ + /** + * {@inheritDoc} + */ + @Override + public String getL10nFilesBasePath() { + return "i18n"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getL10nFilesMask() { + return "sone.${lang}.properties"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getL10nOverrideFilesMask() { + return "sone.${lang}.override.properties"; + } + + /** + * {@inheritDoc} + */ + @Override + public ClassLoader getPluginClassLoader() { + return SonePlugin.class.getClassLoader(); + } + + // + // INTERFACE FredPluginVersioned + // + + /** + * {@inheritDoc} + */ + @Override + public String getVersion() { + return VERSION.toString(); } }