X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fmain%2FSonePlugin.java;h=60812cdab1af339a44567928bdc0fac02d9e2037;hb=2f68aaf6cfc4b5665436bebdd560cad472ce79d7;hp=a9f492819cf3db2b6aca942cbb8145b1096490ce;hpb=e86e9e09387b960278b71e5c009e414fd43c5f89;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 a9f4928..60812cd 100644 --- a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java +++ b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java @@ -17,8 +17,27 @@ package net.pterodactylus.sone.main; +import java.io.File; +import java.util.Collections; +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.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; /** @@ -27,13 +46,59 @@ import freenet.pluginmanager.PluginRespirator; * * @author David ‘Bombe’ Roden */ -public class SonePlugin implements FredPlugin { +public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless { static { /* initialize logging. */ Logging.setup("sone"); } + /** 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; + + // + // 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 // @@ -43,7 +108,36 @@ public class SonePlugin implements FredPlugin { */ @Override public void runPlugin(PluginRespirator pluginRespirator) { - /* TODO */ + 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())); + } + } + + /* create freenet interface. */ + FreenetInterface freenetInterface = new FreenetInterface(pluginRespirator.getNode(), pluginRespirator.getHLSimpleClient()); + + /* create the web interface. */ + webInterface = new WebInterface(this); + + /* create core. */ + core = new Core(); + core.configuration(configuration); + core.freenetInterface(freenetInterface); + + /* start core! */ + core.start(); + webInterface.start(); } /** @@ -51,7 +145,69 @@ public class SonePlugin implements FredPlugin { */ @Override public void terminate() { - /* TODO */ + /* stop the web interface. */ + webInterface.stop(); + + /* stop the core. */ + core.stop(); + + /* TODO wait for core to stop? */ + } + + // + // 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 + // + + /** + * {@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(); } }