Files
SCM-Manager/scm-webapp/src/main/java/sonia/scm/plugin/DefaultPluginLoader.java

204 lines
5.1 KiB
Java
Raw Normal View History

/*
* MIT License
2010-10-31 19:22:53 +01:00
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
2010-10-31 19:22:53 +01:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
2010-10-31 19:22:53 +01:00
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
2010-10-31 19:22:53 +01:00
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
2010-10-12 09:16:40 +02:00
*/
2020-04-16 12:03:12 +02:00
2010-12-01 14:26:29 +01:00
package sonia.scm.plugin;
2010-10-12 09:16:40 +02:00
//~--- non-JDK imports --------------------------------------------------------
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSet.Builder;
2010-10-12 09:16:40 +02:00
2020-04-16 12:03:12 +02:00
import javax.servlet.ServletContext;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
2010-10-12 09:16:40 +02:00
import java.io.IOException;
import java.net.URL;
2010-12-01 14:26:29 +01:00
import java.util.Collection;
2010-10-12 09:16:40 +02:00
import java.util.Enumeration;
import java.util.Set;
2020-04-16 12:03:12 +02:00
//~--- JDK imports ------------------------------------------------------------
2010-10-12 09:16:40 +02:00
/**
*
* @author Sebastian Sdorra
*/
2010-12-13 18:59:00 +01:00
public class DefaultPluginLoader implements PluginLoader
2010-10-12 09:16:40 +02:00
{
/** Field description */
public static final String PATH_MODULECONFIG = "META-INF/scm/module.xml";
2010-10-12 09:16:40 +02:00
/** Field description */
2010-12-01 14:26:29 +01:00
public static final String PATH_PLUGINCONFIG = "META-INF/scm/plugin.xml";
//~--- constructors ---------------------------------------------------------
2010-10-12 09:16:40 +02:00
/**
2010-12-01 14:26:29 +01:00
* Constructs ...
2010-10-12 09:16:40 +02:00
*
* @param servletContext
* @param parent
* @param installedPlugins
2010-10-12 09:16:40 +02:00
*/
public DefaultPluginLoader(ServletContext servletContext, ClassLoader parent,
Set<InstalledPlugin> installedPlugins)
2010-10-12 09:16:40 +02:00
{
this.installedPlugins = installedPlugins;
this.uberClassLoader = new UberClassLoader(parent, installedPlugins);
this.uberWebResourceLoader =
new DefaultUberWebResourceLoader(servletContext, installedPlugins);
2010-10-12 09:16:40 +02:00
2010-12-01 14:26:29 +01:00
try
2010-10-12 09:16:40 +02:00
{
JAXBContext context = JAXBContext.newInstance(ScmModule.class,
InstalledPluginDescriptor.class);
2010-10-12 09:16:40 +02:00
modules = getInstalled(parent, context, PATH_MODULECONFIG);
2020-04-16 12:03:12 +02:00
ExtensionCollector collector = new ExtensionCollector(parent, modules, installedPlugins);
extensionProcessor = new DefaultExtensionProcessor(collector);
}
catch (IOException | JAXBException ex)
{
throw Throwables.propagate(ex);
}
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @return
*/
@Override
public ExtensionProcessor getExtensionProcessor()
{
return extensionProcessor;
2010-10-12 09:16:40 +02:00
}
/**
* Method description
*
*
* @return
*/
@Override
public Collection<ScmModule> getInstalledModules()
{
return modules;
}
2010-12-01 14:26:29 +01:00
/**
* Method description
*
*
* @return
2010-12-01 14:26:29 +01:00
*/
@Override
public Collection<InstalledPlugin> getInstalledPlugins()
{
return installedPlugins;
}
/**
* Method description
*
*
* @return
*/
@Override
public ClassLoader getUberClassLoader()
{
return uberClassLoader;
}
/**
* Method description
*
*
* @return
*/
@Override
public UberWebResourceLoader getUberWebResourceLoader()
{
return uberWebResourceLoader;
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @param classLoader
* @param context
* @param path
* @param <T>
*
* @return
*
* @throws IOException
* @throws JAXBException
*/
2014-08-19 21:45:23 +02:00
@SuppressWarnings("unchecked")
private <T> Set<T> getInstalled(ClassLoader classLoader, JAXBContext context,
String path)
throws IOException, JAXBException
{
Builder<T> builder = ImmutableSet.builder();
Enumeration<URL> urls = classLoader.getResources(path);
while (urls.hasMoreElements())
{
URL url = urls.nextElement();
T module = (T) context.createUnmarshaller().unmarshal(url);
builder.add(module);
}
return builder.build();
}
2010-10-12 09:16:40 +02:00
//~--- fields ---------------------------------------------------------------
/** Field description */
private final ExtensionProcessor extensionProcessor;
/** Field description */
private final Set<InstalledPlugin> installedPlugins;
/** Field description */
private final Set<ScmModule> modules;
/** Field description */
private final ClassLoader uberClassLoader;
/** Field description */
private final UberWebResourceLoader uberWebResourceLoader;
2010-10-12 09:16:40 +02:00
}