find and bind extension points automatically

This commit is contained in:
Sebastian Sdorra
2013-01-18 09:39:32 +01:00
parent 8232a24344
commit e581751624
11 changed files with 762 additions and 781 deletions

View File

@@ -35,6 +35,12 @@ package sonia.scm.plugin;
//~--- non-JDK imports --------------------------------------------------------
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import com.google.common.io.Closeables;
import com.google.inject.Binder;
import com.google.inject.Module;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -46,8 +52,10 @@ import sonia.scm.plugin.ext.AnnotationScanner;
import sonia.scm.plugin.ext.AnnotationScannerFactory;
import sonia.scm.plugin.ext.DefaultAnnotationScannerFactory;
import sonia.scm.plugin.ext.Extension;
import sonia.scm.plugin.ext.ExtensionBinder;
import sonia.scm.plugin.ext.ExtensionProcessor;
import sonia.scm.util.IOUtil;
import sonia.scm.plugin.ext.Extensions;
import sonia.scm.web.security.DefaultAuthenticationHandler;
//~--- JDK imports ------------------------------------------------------------
@@ -58,6 +66,7 @@ import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLDecoder;
@@ -66,6 +75,9 @@ import java.util.Enumeration;
import java.util.HashSet;
import java.util.Set;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextListener;
import javax.xml.bind.JAXB;
/**
@@ -78,9 +90,18 @@ public class DefaultPluginLoader implements PluginLoader
/** Field description */
public static final String ENCODING = "UTF-8";
/** Field description */
public static final String EXTENSION_JAR = ".jar";
/** Field description */
public static final String PATH_PLUGINCONFIG = "META-INF/scm/plugin.xml";
/** Field description */
public static final String PATH_WEBINFLIB = "/WEB-INF/lib";
/** Field description */
public static final String PATH_SCMCORE = PATH_WEBINFLIB.concat("/scm-core");
/** Field description */
public static final String REGE_COREPLUGIN =
"^.*(?:/|\\\\)WEB-INF(?:/|\\\\)lib(?:/|\\\\).*\\.jar$";
@@ -94,16 +115,22 @@ public class DefaultPluginLoader implements PluginLoader
/**
* Constructs ...
*
*
* @param servletContext
*/
public DefaultPluginLoader()
public DefaultPluginLoader(ServletContext servletContext)
{
this.servletContext = servletContext;
this.annotationScannerFactory = new DefaultAnnotationScannerFactory();
ClassLoader classLoader = getClassLoader();
try
{
load(classLoader);
locateCoreFile();
loadPlugins(classLoader);
scanForAnnotations();
findModules();
}
catch (IOException ex)
{
@@ -121,22 +148,44 @@ public class DefaultPluginLoader implements PluginLoader
* @param packages
* @param annotation
* @param processor
* @param extensionPointProcessor
* @param extensionProcessor
* @param <T>
*
* @return
*/
public <T extends Annotation> AnnotationScanner createAnnotationScanner(
ClassLoader classLoader, Collection<String> packages, Class<T> annotation,
AnnotationProcessor<T> processor)
ClassLoader classLoader, Collection<String> packages,
AnnotationProcessor<ExtensionPoint> extensionPointProcessor,
AnnotationProcessor<Extension> extensionProcessor)
{
AnnotationScanner scanner = annotationScannerFactory.create(classLoader,
packages);
scanner.addProcessor(annotation, processor);
if (extensionPointProcessor != null)
{
scanner.addProcessor(ExtensionPoint.class, extensionPointProcessor);
}
if (extensionProcessor != null)
{
scanner.addProcessor(Extension.class, extensionProcessor);
}
return scanner;
}
/**
* Method description
*
*
* @param binder
*/
public void processExtensions(Binder binder)
{
new ExtensionBinder(binder).bind(bounds, extensionPoints, extensions);
}
/**
* Method description
*
@@ -146,90 +195,10 @@ public class DefaultPluginLoader implements PluginLoader
@Override
public void processExtensions(ExtensionProcessor processor)
{
ClassLoader classLoader = getClassLoader();
AnnotationCollector<Extension> annotationCollector =
new AnnotationCollector<Extension>();
for (Plugin plugin : installedPlugins)
for (AnnotatedClass<Extension> extension : extensions)
{
if (logger.isDebugEnabled())
{
logger.debug("search extensions from plugin {}",
plugin.getInformation().getId());
}
InputStream input = null;
try
{
Set<String> packageSet = plugin.getPackageSet();
if (packageSet == null)
{
packageSet = new HashSet<String>();
}
packageSet.add(SCMContext.DEFAULT_PACKAGE);
File pluginFile = new File(plugin.getPath());
if (pluginFile.exists())
{
if (logger.isTraceEnabled())
{
String type = pluginFile.isDirectory()
? "directory"
: "jar";
logger.trace("search extensions in packages {} of {} plugin {}",
new Object[] { packageSet,
type, pluginFile });
}
if (pluginFile.isDirectory())
{
createAnnotationScanner(classLoader, packageSet, Extension.class,
annotationCollector).scanDirectory(pluginFile);
}
else
{
input = new FileInputStream(plugin.getPath());
createAnnotationScanner(classLoader, packageSet, Extension.class,
annotationCollector).scanArchive(input);
}
}
else
{
logger.error("could not find plugin file {}", plugin.getPath());
}
}
catch (IOException ex)
{
logger.error("error during extension processing", ex);
}
finally
{
IOUtil.close(input);
}
}
Set<AnnotatedClass<Extension>> extensions =
annotationCollector.getAnnotatedClasses();
if (logger.isTraceEnabled())
{
logger.trace("start processing {} extensions", extensions.size());
}
for (AnnotatedClass<Extension> ac : extensions)
{
if (logger.isTraceEnabled())
{
logger.trace("process extension {}", ac.getAnnotatedClass());
}
processor.processExtension(ac.getAnnotation(), ac.getAnnotatedClass());
processor.processExtension(extension.getAnnotation(),
extension.getAnnotatedClass());
}
}
@@ -247,8 +216,41 @@ public class DefaultPluginLoader implements PluginLoader
return installedPlugins;
}
/**
* Method description
*
*
* @return
*/
public Set<Module> getModuleSet()
{
return moduleSet;
}
//~--- methods --------------------------------------------------------------
/**
* Method description
*
*
* @param moduleClass
*/
private void addModule(Class moduleClass)
{
try
{
logger.info("add module {}", moduleClass);
moduleSet.add((Module) moduleClass.newInstance());
}
catch (Exception ex)
{
logger.error(
"could not create module instance of ".concat(moduleClass.getName()),
ex);
}
}
/**
* Method description
*
@@ -280,31 +282,47 @@ public class DefaultPluginLoader implements PluginLoader
* Method description
*
*
* @param classLoader
* @param url
*
* @throws IOException
* @return
*/
private void load(ClassLoader classLoader) throws IOException
private String extractResourcePath(URL url)
{
Enumeration<URL> urlEnum = classLoader.getResources(PATH_PLUGINCONFIG);
String path = url.toExternalForm();
if (urlEnum != null)
if (path.startsWith("file:"))
{
while (urlEnum.hasMoreElements())
{
URL url = urlEnum.nextElement();
loadPlugin(url);
}
if (logger.isDebugEnabled())
{
logger.debug("loaded {} plugins", installedPlugins.size());
}
path = path.substring("file:".length(),
path.length() - "/META-INF/scm/plugin.xml".length());
}
else if (logger.isWarnEnabled())
else
{
logger.warn("no plugin descriptor found");
// jar:file:/some/path/file.jar!/META-INF/scm/plugin.xml
path = path.substring("jar:file:".length(), path.lastIndexOf("!"));
path = decodePath(path);
}
logger.trace("extrace resource path {} from url {}", path, url);
return path;
}
/**
* Method description
*
*/
private void findModules()
{
for (AnnotatedClass<Extension> extension : extensions)
{
Class extensionClass = extension.getAnnotatedClass();
if (Module.class.isAssignableFrom(extensionClass))
{
bounds.add(extension);
addModule(extensionClass);
}
}
}
@@ -316,7 +334,7 @@ public class DefaultPluginLoader implements PluginLoader
*/
private void loadPlugin(URL url)
{
String path = url.toExternalForm();
String path = extractResourcePath(url);
if (logger.isTraceEnabled())
{
@@ -325,19 +343,6 @@ public class DefaultPluginLoader implements PluginLoader
try
{
if (path.startsWith("file:"))
{
path = path.substring("file:".length(),
path.length() - "/META-INF/scm/plugin.xml".length());
}
else
{
// jar:file:/some/path/file.jar!/META-INF/scm/plugin.xml
path = path.substring("jar:file:".length(), path.lastIndexOf("!"));
path = decodePath(path);
}
boolean corePlugin = path.matches(REGE_COREPLUGIN);
if (logger.isInfoEnabled())
@@ -378,6 +383,234 @@ public class DefaultPluginLoader implements PluginLoader
}
}
/**
* Method description
*
*
* @param classLoader
*
* @throws IOException
*/
private void loadPlugins(ClassLoader classLoader) throws IOException
{
Enumeration<URL> urlEnum = classLoader.getResources(PATH_PLUGINCONFIG);
if (urlEnum != null)
{
while (urlEnum.hasMoreElements())
{
URL url = urlEnum.nextElement();
loadPlugin(url);
}
if (logger.isDebugEnabled())
{
logger.debug("loaded {} plugins", installedPlugins.size());
}
}
else if (logger.isWarnEnabled())
{
logger.warn("no plugin descriptor found");
}
}
/**
* Method description
*
*
* @param classLoader
*
* @throws MalformedURLException
*/
private void locateCoreFile() throws MalformedURLException
{
Set<String> paths = servletContext.getResourcePaths(PATH_WEBINFLIB);
for (String path : paths)
{
if (path.startsWith(PATH_SCMCORE) && path.endsWith(EXTENSION_JAR))
{
coreFile = servletContext.getResource(path);
break;
}
}
if (coreFile == null)
{
throw new IllegalStateException("could not find scm-core file");
}
}
/**
* Method description
*
*
* @param classLoader
* @param packageSet
* @param extensionPointCollector
* @param extensionCollector
* @param file
*
* @throws IOException
*/
private void scanFile(ClassLoader classLoader, Collection<String> packageSet,
AnnotationCollector<ExtensionPoint> extensionPointCollector,
AnnotationCollector<Extension> extensionCollector, File file)
throws IOException
{
if (logger.isTraceEnabled())
{
String type = file.isDirectory()
? "directory"
: "jar";
logger.trace("search extensions in packages {} of {} file {}",
new Object[] { packageSet,
type, file });
}
if (file.isDirectory())
{
createAnnotationScanner(classLoader, packageSet, extensionPointCollector,
extensionCollector).scanDirectory(file);
}
else
{
InputStream input = null;
try
{
input = new FileInputStream(file);
createAnnotationScanner(classLoader, packageSet,
extensionPointCollector, extensionCollector).scanArchive(input);
}
finally
{
Closeables.closeQuietly(input);
}
}
}
/**
* Method description
*
*
* @param processor
*
* @param binder
*/
private void scanForAnnotations()
{
ClassLoader classLoader = getClassLoader();
AnnotationCollector<ExtensionPoint> extensionPointCollector =
new AnnotationCollector<ExtensionPoint>();
AnnotationCollector<Extension> extensionCollector =
new AnnotationCollector<Extension>();
logger.debug("search extension points in {}", coreFile);
Set<String> corePackages = ImmutableSet.of("sonia.scm");
try
{
scanURL(classLoader, corePackages, extensionPointCollector, null,
coreFile);
}
catch (Exception ex)
{
throw new IllegalStateException("could not process scm-core", ex);
}
for (Plugin plugin : installedPlugins)
{
if (logger.isDebugEnabled())
{
logger.debug("search extensions from plugin {}",
plugin.getInformation().getId());
}
try
{
Set<String> packageSet = plugin.getPackageSet();
if (packageSet == null)
{
packageSet = new HashSet<String>();
}
packageSet.add(SCMContext.DEFAULT_PACKAGE);
File pluginFile = new File(plugin.getPath());
if (pluginFile.exists())
{
scanFile(classLoader, packageSet, extensionPointCollector,
extensionCollector, pluginFile);
}
else
{
logger.error("could not find plugin file {}", plugin.getPath());
}
}
catch (IOException ex)
{
logger.error("error during extension processing", ex);
}
}
//J-
extensionPoints = extensionPointCollector.getAnnotatedClasses();
extensionPoints.add(
new AnnotatedClass<ExtensionPoint>(
Extensions.createExtensionPoint(true),
ServletContextListener.class
)
);
extensions = extensionCollector.getAnnotatedClasses();
extensions.add(
new AnnotatedClass<Extension>(
Extensions.createExtension(),
DefaultAuthenticationHandler.class
)
);
//J+
}
/**
* Method description
*
*
* @param classLoader
* @param packageSet
* @param extensionPointCollector
* @param extensionCollector
* @param file
*
* @throws IOException
*/
private void scanURL(ClassLoader classLoader, Collection<String> packageSet,
AnnotationCollector<ExtensionPoint> extensionPointCollector,
AnnotationCollector<Extension> extensionCollector, URL file)
throws IOException
{
InputStream content = null;
try
{
content = file.openStream();
createAnnotationScanner(classLoader, packageSet, extensionPointCollector,
extensionCollector).scanArchive(content);
}
finally
{
Closeables.closeQuietly(content);
}
}
//~--- get methods ----------------------------------------------------------
/**
@@ -408,6 +641,24 @@ public class DefaultPluginLoader implements PluginLoader
/** Field description */
private AnnotationScannerFactory annotationScannerFactory;
/** Field description */
private Set<AnnotatedClass<Extension>> bounds = Sets.newHashSet();
/** Field description */
private URL coreFile;
/** Field description */
private Set<AnnotatedClass<ExtensionPoint>> extensionPoints;
/** Field description */
private Set<AnnotatedClass<Extension>> extensions;
/** Field description */
private Set<Module> moduleSet = Sets.newHashSet();
/** Field description */
private Set<Plugin> installedPlugins = new HashSet<Plugin>();
/** Field description */
private ServletContext servletContext;
}