2013-01-18 09:39:32 +01:00
|
|
|
/**
|
2013-02-10 14:55:35 +01:00
|
|
|
* Copyright (c) 2010, Sebastian Sdorra
|
|
|
|
|
* All rights reserved.
|
2013-01-18 09:39:32 +01:00
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
2013-02-10 14:55:35 +01:00
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
* 3. Neither the name of SCM-Manager; nor the names of its
|
|
|
|
|
* contributors may be used to endorse or promote products derived from this
|
|
|
|
|
* software without specific prior written permission.
|
2013-01-18 09:39:32 +01:00
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
2013-02-10 14:55:35 +01:00
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2013-01-18 09:39:32 +01:00
|
|
|
*
|
|
|
|
|
* http://bitbucket.org/sdorra/scm-manager
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2013-02-17 13:57:37 +01:00
|
|
|
|
2014-03-29 09:46:16 +01:00
|
|
|
package sonia.scm.plugin;
|
2013-01-18 09:39:32 +01:00
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import com.google.inject.Binder;
|
2014-12-19 17:15:50 +01:00
|
|
|
import com.google.inject.Singleton;
|
2014-03-28 22:49:55 +01:00
|
|
|
import com.google.inject.binder.AnnotatedBindingBuilder;
|
2013-02-17 13:57:37 +01:00
|
|
|
import com.google.inject.binder.ScopedBindingBuilder;
|
2013-01-18 09:39:32 +01:00
|
|
|
import com.google.inject.multibindings.Multibinder;
|
|
|
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
2013-02-17 13:57:37 +01:00
|
|
|
import sonia.scm.EagerSingleton;
|
|
|
|
|
import sonia.scm.util.Util;
|
2013-01-18 09:39:32 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
2014-08-19 21:45:23 +02:00
|
|
|
@SuppressWarnings("unchecked")
|
2014-03-28 22:49:55 +01:00
|
|
|
public final class ExtensionBinder
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
|
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
private static final String TYPE_LOOSE_EXT = "loose extension";
|
|
|
|
|
private static final String TYPE_REST_RESOURCE = "rest resource";
|
2020-01-08 14:22:14 +01:00
|
|
|
private static final String AS_EAGER_SINGLETON = " as eager singleton";
|
2014-12-19 17:15:50 +01:00
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
/**
|
|
|
|
|
* the logger for ExtensionBinder
|
|
|
|
|
*/
|
2020-01-08 14:22:14 +01:00
|
|
|
private static final Logger logger = LoggerFactory.getLogger(ExtensionBinder.class);
|
2013-01-18 09:39:32 +01:00
|
|
|
|
|
|
|
|
public ExtensionBinder(Binder binder)
|
|
|
|
|
{
|
|
|
|
|
this.binder = binder;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
public void bind(ExtensionCollector collector)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind extensions to extension points");
|
2014-03-28 22:49:55 +01:00
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
for (ExtensionPointElement epe : collector.getExtensionPointElements())
|
2014-12-19 17:41:46 +01:00
|
|
|
{
|
|
|
|
|
bindExtensionPoint(collector, epe);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind loose extensions");
|
2014-12-19 17:41:46 +01:00
|
|
|
bindLooseExtensions(collector.getLooseExtensions());
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind rest providers");
|
2014-12-19 17:41:46 +01:00
|
|
|
bindRestProviders(collector.getRestProviders());
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind rest resources");
|
2014-12-19 17:41:46 +01:00
|
|
|
bindRestResource(collector.getRestResources());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void bindExtensionPoint(ExtensionCollector collector,
|
|
|
|
|
ExtensionPointElement epe)
|
|
|
|
|
{
|
|
|
|
|
if (epe.isAutoBind())
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
if (epe.isMultiple())
|
2014-03-28 22:49:55 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
bindMultiExtensionPoint(epe, collector.byExtensionPoint(epe));
|
2014-03-28 22:49:55 +01:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
Class extension = collector.oneByExtensionPoint(epe);
|
|
|
|
|
|
|
|
|
|
if (extension != null)
|
|
|
|
|
{
|
|
|
|
|
bindSingleInstance(epe, extension);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logger.warn("could not find extension for extension point {}",
|
|
|
|
|
epe.getClazz());
|
|
|
|
|
}
|
2014-03-28 22:49:55 +01:00
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
2014-12-19 17:41:46 +01:00
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logger.debug("bind type of {} is manual", epe.getClazz());
|
|
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
private void bindLooseExtensions(Iterable<Class> extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
for (Class extension : extensions)
|
2014-03-28 22:49:55 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
singleBind(TYPE_LOOSE_EXT, extension);
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
private void bindMultiExtensionPoint(ExtensionPointElement extensionPoint, Iterable<Class> extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
Class extensionPointClass = extensionPoint.getClazz();
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("create multibinder for {}", extensionPointClass.getName());
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
Multibinder multibinder = Multibinder.newSetBinder(binder, extensionPointClass);
|
2014-03-28 22:49:55 +01:00
|
|
|
for (Class extensionClass : extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
boolean eagerSingleton = isEagerSingleton(extensionClass);
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
if (logger.isDebugEnabled())
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
String as = Util.EMPTY_STRING;
|
2013-02-17 13:57:37 +01:00
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
if (eagerSingleton)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2020-01-08 14:22:14 +01:00
|
|
|
as = AS_EAGER_SINGLETON;
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind {} to multibinder of {}{}", extensionClass.getName(),
|
2014-12-19 17:15:50 +01:00
|
|
|
extensionPointClass.getName(), as);
|
|
|
|
|
}
|
2013-02-17 13:57:37 +01:00
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
ScopedBindingBuilder sbb = multibinder.addBinding().to(extensionClass);
|
2014-03-28 22:49:55 +01:00
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
|
|
|
|
sbb.asEagerSingleton();
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
private void bindRestProviders(Iterable<Class> restProviders)
|
|
|
|
|
{
|
|
|
|
|
for (Class restProvider : restProviders)
|
|
|
|
|
{
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind rest provider {}", restProvider);
|
2014-12-19 17:15:50 +01:00
|
|
|
binder.bind(restProvider).in(Singleton.class);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void bindRestResource(Iterable<Class> restResources)
|
|
|
|
|
{
|
|
|
|
|
for (Class restResource : restResources)
|
|
|
|
|
{
|
|
|
|
|
singleBind(TYPE_REST_RESOURCE, restResource);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void bindSingleInstance(ExtensionPointElement extensionPoint,
|
2013-01-18 09:39:32 +01:00
|
|
|
Class extensionClass)
|
|
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
Class extensionPointClass = extensionPoint.getClazz();
|
2013-02-17 13:57:37 +01:00
|
|
|
boolean eagerSingleton = isEagerSingleton(extensionClass);
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
if (logger.isDebugEnabled())
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
String as = Util.EMPTY_STRING;
|
|
|
|
|
|
|
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
2020-01-08 14:22:14 +01:00
|
|
|
as = AS_EAGER_SINGLETON;
|
2013-02-17 13:57:37 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
logger.debug("bind {} to {}{}", extensionClass.getName(),
|
2013-02-17 13:57:37 +01:00
|
|
|
extensionPointClass.getName(), as);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScopedBindingBuilder sbb =
|
|
|
|
|
binder.bind(extensionPointClass).to(extensionClass);
|
|
|
|
|
|
|
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
|
|
|
|
sbb.asEagerSingleton();
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
2013-02-17 13:57:37 +01:00
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
private void singleBind(String type, Class extension)
|
2013-02-17 13:57:37 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
StringBuilder log = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
log.append("bind ").append(type).append(" ").append(extension);
|
|
|
|
|
|
|
|
|
|
AnnotatedBindingBuilder abb = binder.bind(extension);
|
|
|
|
|
|
|
|
|
|
if (isEagerSingleton(extension))
|
|
|
|
|
{
|
2020-01-08 14:22:14 +01:00
|
|
|
log.append(AS_EAGER_SINGLETON);
|
2014-12-19 17:15:50 +01:00
|
|
|
abb.asEagerSingleton();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-08 14:22:14 +01:00
|
|
|
if (logger.isDebugEnabled()) {
|
|
|
|
|
logger.debug(log.toString());
|
|
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-12-19 17:15:50 +01:00
|
|
|
private boolean isEagerSingleton(Class extensionClass)
|
2014-03-28 22:49:55 +01:00
|
|
|
{
|
2014-12-19 17:15:50 +01:00
|
|
|
return extensionClass.isAnnotationPresent(EagerSingleton.class);
|
2014-03-28 22:49:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private final Binder binder;
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|