X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fmain%2FSonePlugin.java;h=60812cdab1af339a44567928bdc0fac02d9e2037;hb=5a39f06f8f723980112394cc845c3d16b59aaf6b;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..60812cd 100644 --- a/src/main/java/net/pterodactylus/sone/main/SonePlugin.java +++ b/src/main/java/net/pterodactylus/sone/main/SonePlugin.java @@ -23,14 +23,21 @@ 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; /** @@ -39,7 +46,7 @@ import freenet.pluginmanager.PluginRespirator; * * @author David ‘Bombe’ Roden */ -public class SonePlugin implements FredPlugin { +public class SonePlugin implements FredPlugin, FredPluginL10n, FredPluginBaseL10n, FredPluginThreadless { static { /* initialize logging. */ @@ -49,9 +56,49 @@ public class SonePlugin implements FredPlugin { /** 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 // @@ -61,6 +108,7 @@ public class SonePlugin implements FredPlugin { */ @Override public void runPlugin(PluginRespirator pluginRespirator) { + this.pluginRespirator = pluginRespirator; /* create a configuration. */ Configuration configuration; @@ -76,12 +124,20 @@ public class SonePlugin implements FredPlugin { } } + /* 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(); } /** @@ -89,10 +145,69 @@ public class SonePlugin implements FredPlugin { */ @Override public void terminate() { + /* 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(); + } + }