mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 09:46:16 +01:00
204 lines
5.1 KiB
Java
204 lines
5.1 KiB
Java
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
*
|
|
* 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:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
package sonia.scm.plugin;
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
import com.google.common.base.Throwables;
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.google.common.collect.ImmutableSet.Builder;
|
|
|
|
import javax.servlet.ServletContext;
|
|
import javax.xml.bind.JAXBContext;
|
|
import javax.xml.bind.JAXBException;
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.util.Collection;
|
|
import java.util.Enumeration;
|
|
import java.util.Set;
|
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
/**
|
|
*
|
|
* @author Sebastian Sdorra
|
|
*/
|
|
public class DefaultPluginLoader implements PluginLoader
|
|
{
|
|
|
|
/** Field description */
|
|
public static final String PATH_MODULECONFIG = "META-INF/scm/module.xml";
|
|
|
|
/** Field description */
|
|
public static final String PATH_PLUGINCONFIG = "META-INF/scm/plugin.xml";
|
|
|
|
//~--- constructors ---------------------------------------------------------
|
|
|
|
/**
|
|
* Constructs ...
|
|
*
|
|
* @param servletContext
|
|
* @param parent
|
|
* @param installedPlugins
|
|
*/
|
|
public DefaultPluginLoader(ServletContext servletContext, ClassLoader parent,
|
|
Set<InstalledPlugin> installedPlugins)
|
|
{
|
|
this.installedPlugins = installedPlugins;
|
|
this.uberClassLoader = new UberClassLoader(parent, installedPlugins);
|
|
this.uberWebResourceLoader =
|
|
new DefaultUberWebResourceLoader(servletContext, installedPlugins);
|
|
|
|
try
|
|
{
|
|
JAXBContext context = JAXBContext.newInstance(ScmModule.class,
|
|
InstalledPluginDescriptor.class);
|
|
|
|
modules = getInstalled(parent, context, PATH_MODULECONFIG);
|
|
|
|
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;
|
|
}
|
|
|
|
/**
|
|
* Method description
|
|
*
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
public Collection<ScmModule> getInstalledModules()
|
|
{
|
|
return modules;
|
|
}
|
|
|
|
/**
|
|
* Method description
|
|
*
|
|
*
|
|
* @return
|
|
*/
|
|
@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
|
|
*/
|
|
@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();
|
|
}
|
|
|
|
//~--- 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;
|
|
}
|