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
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
package sonia.scm.plugin.ext;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import com.google.common.collect.Iterables;
|
|
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
|
import com.google.inject.Binder;
|
2014-03-28 22:49:55 +01:00
|
|
|
import com.google.inject.Scopes;
|
|
|
|
|
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
|
|
|
|
|
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
import javax.ws.rs.ext.Provider;
|
|
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
2014-03-28 22:49:55 +01:00
|
|
|
public final class ExtensionBinder
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* the logger for ExtensionBinder
|
|
|
|
|
*/
|
|
|
|
|
private static final Logger logger =
|
|
|
|
|
LoggerFactory.getLogger(ExtensionBinder.class);
|
|
|
|
|
|
|
|
|
|
//~--- constructors ---------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructs ...
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param binder
|
|
|
|
|
*/
|
|
|
|
|
public ExtensionBinder(Binder binder)
|
|
|
|
|
{
|
|
|
|
|
this.binder = binder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
2014-03-28 22:49:55 +01:00
|
|
|
* @param mutipleExtensionPoints
|
|
|
|
|
* @param singleExtensionPoints
|
2013-01-18 09:39:32 +01:00
|
|
|
* @param extensions
|
|
|
|
|
*/
|
2014-03-28 22:49:55 +01:00
|
|
|
public void bind(Set<Class> mutipleExtensionPoints,
|
|
|
|
|
Set<Class> singleExtensionPoints, Set<Class> extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
|
|
|
|
if (logger.isInfoEnabled())
|
|
|
|
|
{
|
|
|
|
|
logger.info("bind {} extensions to {} extension points",
|
2014-03-28 22:49:55 +01:00
|
|
|
extensions.size(),
|
|
|
|
|
mutipleExtensionPoints.size() + singleExtensionPoints.size());
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
Set<Class> boundClasses = Sets.newHashSet();
|
|
|
|
|
|
|
|
|
|
for (Class extensionPointClass : mutipleExtensionPoints)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-03-28 22:49:55 +01:00
|
|
|
bindMultiExtensionPoint(boundClasses, extensionPointClass, extensions);
|
|
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
for (Class extensionPointClass : singleExtensionPoints)
|
|
|
|
|
{
|
|
|
|
|
bindExtensionPoint(boundClasses, extensionPointClass, extensions);
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
Set<Class> extensionsCopy = Sets.newHashSet(extensions);
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
Iterables.removeAll(extensionsCopy, boundClasses);
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
for (Class extension : extensionsCopy)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-03-28 22:49:55 +01:00
|
|
|
AnnotatedBindingBuilder abb = binder.bind(extension);
|
2013-02-17 13:57:37 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
if (isProvider(extension))
|
2013-02-17 13:57:37 +01:00
|
|
|
{
|
2014-03-28 22:49:55 +01:00
|
|
|
logger.info("bind provider {} as singleton", extension);
|
|
|
|
|
abb.in(Scopes.SINGLETON);
|
2013-02-17 13:57:37 +01:00
|
|
|
}
|
2014-03-28 22:49:55 +01:00
|
|
|
else if (isEagerSingleton(extension))
|
|
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
logger.info("bind {} as eager singleton, without extensionpoint",
|
|
|
|
|
extension);
|
|
|
|
|
abb.asEagerSingleton();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logger.info("bind {}, without extensionpoint", extension);
|
|
|
|
|
binder.bind(extension);
|
|
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param found
|
2014-03-28 22:49:55 +01:00
|
|
|
*
|
|
|
|
|
* @param boundClasses
|
2013-01-18 09:39:32 +01:00
|
|
|
* @param extensionPointClass
|
|
|
|
|
* @param extensions
|
|
|
|
|
*/
|
2014-01-11 15:17:44 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2014-03-28 22:49:55 +01:00
|
|
|
private void bindExtensionPoint(Set<Class> boundClasses,
|
|
|
|
|
Class extensionPointClass, Set<Class> extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
2014-03-28 22:49:55 +01:00
|
|
|
boolean bound = false;
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
for (Class extensionClass : extensions)
|
|
|
|
|
{
|
2013-01-18 09:39:32 +01:00
|
|
|
if (extensionPointClass.isAssignableFrom(extensionClass))
|
|
|
|
|
{
|
2014-03-28 22:49:55 +01:00
|
|
|
if (bound)
|
|
|
|
|
{
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"extension point ".concat(extensionPointClass.getName()).concat(
|
|
|
|
|
" is not multiple and is already bound to another class"));
|
|
|
|
|
}
|
2013-01-18 09:39:32 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
bindSingleInstance(extensionPointClass, extensionClass);
|
|
|
|
|
boundClasses.add(extensionClass);
|
|
|
|
|
bound = true;
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param found
|
2014-03-28 22:49:55 +01:00
|
|
|
*
|
|
|
|
|
* @param boundClasses
|
2013-01-18 09:39:32 +01:00
|
|
|
* @param extensionPointClass
|
|
|
|
|
* @param extensions
|
|
|
|
|
*/
|
2014-01-11 15:17:44 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2014-03-28 22:49:55 +01:00
|
|
|
private void bindMultiExtensionPoint(Set<Class> boundClasses,
|
|
|
|
|
Class extensionPointClass, Iterable<Class> extensions)
|
2013-01-18 09:39:32 +01:00
|
|
|
{
|
|
|
|
|
if (logger.isInfoEnabled())
|
|
|
|
|
{
|
|
|
|
|
logger.info("create multibinder for {}", extensionPointClass.getName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
|
if (extensionPointClass.isAssignableFrom(extensionClass))
|
|
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
boolean eagerSingleton = isEagerSingleton(extensionClass);
|
|
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
if (logger.isInfoEnabled())
|
|
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
String as = Util.EMPTY_STRING;
|
|
|
|
|
|
|
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
|
|
|
|
as = " as eager singleton";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.info("bind {} to multibinder of {}{}",
|
|
|
|
|
extensionClass.getName(), extensionPointClass.getName(), as);
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-17 13:57:37 +01:00
|
|
|
ScopedBindingBuilder sbb = multibinder.addBinding().to(extensionClass);
|
|
|
|
|
|
|
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
|
|
|
|
sbb.asEagerSingleton();
|
|
|
|
|
logger.info("bind {} as eager singleton");
|
|
|
|
|
}
|
2014-03-28 22:49:55 +01:00
|
|
|
|
|
|
|
|
boundClasses.add(extensionClass);
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param extensionPointClass
|
|
|
|
|
* @param extensionClass
|
|
|
|
|
*/
|
2014-01-11 15:17:44 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2013-01-18 09:39:32 +01:00
|
|
|
private void bindSingleInstance(Class extensionPointClass,
|
|
|
|
|
Class extensionClass)
|
|
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
boolean eagerSingleton = isEagerSingleton(extensionClass);
|
|
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
if (logger.isInfoEnabled())
|
|
|
|
|
{
|
2013-02-17 13:57:37 +01:00
|
|
|
String as = Util.EMPTY_STRING;
|
|
|
|
|
|
|
|
|
|
if (eagerSingleton)
|
|
|
|
|
{
|
|
|
|
|
as = " as eager singleton";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.info("bind {} to {}{}", extensionClass.getName(),
|
|
|
|
|
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
|
|
|
|
2013-02-17 13:57:37 +01:00
|
|
|
//~--- get methods ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param extensionClass
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2014-03-28 22:49:55 +01:00
|
|
|
private boolean isEagerSingleton(Class extensionClass)
|
2013-02-17 13:57:37 +01:00
|
|
|
{
|
|
|
|
|
return extensionClass.isAnnotationPresent(EagerSingleton.class);
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param extensionClass
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private boolean isProvider(Class extensionClass)
|
|
|
|
|
{
|
|
|
|
|
return extensionClass.isAnnotationPresent(Provider.class);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-18 09:39:32 +01:00
|
|
|
//~--- fields ---------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
2014-03-28 22:49:55 +01:00
|
|
|
private final Binder binder;
|
2013-01-18 09:39:32 +01:00
|
|
|
}
|