From 22ed6a50dd6742d5b3a964be4b7a8d7c2b58f88e Mon Sep 17 00:00:00 2001 From: James Moger Date: Thu, 4 Sep 2014 20:17:17 -0400 Subject: [PATCH] Allow Plugins to have injected members and Extensions to be constructed --- .classpath | 2 +- build.moxie | 2 +- gitblit.iml | 6 +- .../com/gitblit/manager/PluginManager.java | 77 ++++++++++++------- 4 files changed, 56 insertions(+), 31 deletions(-) diff --git a/.classpath b/.classpath index 3e6b8a90..53faa536 100644 --- a/.classpath +++ b/.classpath @@ -75,7 +75,7 @@ - + diff --git a/build.moxie b/build.moxie index b2651154..ea2763c4 100644 --- a/build.moxie +++ b/build.moxie @@ -176,7 +176,7 @@ dependencies: - compile 'args4j:args4j:2.0.26' :war :fedclient - compile 'commons-codec:commons-codec:1.7' :war - compile 'redis.clients:jedis:2.3.1' :war -- compile 'ro.fortsoft.pf4j:pf4j:0.8.0' :war +- compile 'ro.fortsoft.pf4j:pf4j:0.9.0' :war - compile 'org.apache.tika:tika-core:1.5' :war - test 'junit' # Dependencies for Selenium web page testing diff --git a/gitblit.iml b/gitblit.iml index d36f3218..4061daf4 100644 --- a/gitblit.iml +++ b/gitblit.iml @@ -780,13 +780,13 @@ - + - + - + diff --git a/src/main/java/com/gitblit/manager/PluginManager.java b/src/main/java/com/gitblit/manager/PluginManager.java index 874e24b5..58303750 100644 --- a/src/main/java/com/gitblit/manager/PluginManager.java +++ b/src/main/java/com/gitblit/manager/PluginManager.java @@ -37,10 +37,12 @@ import java.util.TreeMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import ro.fortsoft.pf4j.DefaultExtensionFinder; +import ro.fortsoft.pf4j.DefaultPluginFactory; import ro.fortsoft.pf4j.DefaultPluginManager; -import ro.fortsoft.pf4j.ExtensionFinder; +import ro.fortsoft.pf4j.ExtensionFactory; +import ro.fortsoft.pf4j.Plugin; import ro.fortsoft.pf4j.PluginClassLoader; +import ro.fortsoft.pf4j.PluginFactory; import ro.fortsoft.pf4j.PluginState; import ro.fortsoft.pf4j.PluginStateEvent; import ro.fortsoft.pf4j.PluginStateListener; @@ -105,32 +107,18 @@ public class PluginManager implements IPluginManager, PluginStateListener { public PluginManager start() { File dir = runtimeManager.getFileOrFolder(Keys.plugins.folder, "${baseFolder}/plugins"); dir.mkdirs(); + pf4j = new DefaultPluginManager(dir) { + + @Override + protected PluginFactory createPluginFactory() { + return new GuicePluginFactory(); + } + @Override - protected ExtensionFinder createExtensionFinder() { - DefaultExtensionFinder extensionFinder = new DefaultExtensionFinder(this) { - @Override - protected ExtensionFactory createExtensionFactory() { - return new ExtensionFactory() { - @Override - public Object create(Class extensionType) { - // instantiate && inject the extension - logger.debug("Create instance for extension '{}'", extensionType.getName()); - try { - return runtimeManager.getInjector().getInstance(extensionType); - } catch (Exception e) { - logger.error(e.getMessage(), e); - } - return null; - } - - }; - } - }; - addPluginStateListener(extensionFinder); - - return extensionFinder; - } + protected ExtensionFactory createExtensionFactory() { + return new GuiceExtensionFactory(); + } }; try { @@ -600,4 +588,41 @@ public class PluginManager implements IPluginManager, PluginStateListener { protected String getProxyAuthorization(URL url) { return ""; } + + /** + * Instantiates a plugin using pf4j but injects member fields + * with Guice. + */ + private class GuicePluginFactory extends DefaultPluginFactory { + + @Override + public Plugin create(PluginWrapper pluginWrapper) { + // use pf4j to create the plugin + Plugin plugin = super.create(pluginWrapper); + + if (plugin != null) { + // allow Guice to inject member fields + runtimeManager.getInjector().injectMembers(plugin); + } + + return plugin; + } + } + + /** + * Instantiates an extension using Guice. + */ + private class GuiceExtensionFactory implements ExtensionFactory { + @Override + public Object create(Class extensionClass) { + // instantiate && inject the extension + logger.debug("Create instance for extension '{}'", extensionClass.getName()); + try { + return runtimeManager.getInjector().getInstance(extensionClass); + } catch (Exception e) { + logger.error(e.getMessage(), e); + } + return null; + } + } } -- 2.39.5