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

271 lines
7.1 KiB
Java
Raw Normal View History

/**
2013-02-10 14:55:35 +01:00
* Copyright (c) 2010, Sebastian Sdorra
* All rights reserved.
*
* 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.
*
* 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.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
2013-02-17 13:57:37 +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;
2013-02-17 13:57:37 +01:00
import com.google.inject.binder.ScopedBindingBuilder;
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.plugin.ExtensionPoint;
2013-02-17 13:57:37 +01:00
import sonia.scm.util.Util;
//~--- JDK imports ------------------------------------------------------------
import java.util.Set;
/**
*
* @author Sebastian Sdorra
*/
public class ExtensionBinder
{
/**
* 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
*
*
*
* @param bounds
* @param extensionPoints
* @param extensions
*/
public void bind(Set<AnnotatedClass<Extension>> bounds,
Set<AnnotatedClass<ExtensionPoint>> extensionPoints,
Set<AnnotatedClass<Extension>> extensions)
{
if (logger.isInfoEnabled())
{
logger.info("bind {} extensions to {} extension points",
extensions.size(), extensionPoints.size());
}
for (AnnotatedClass<ExtensionPoint> extensionPoint : extensionPoints)
{
ExtensionPoint extensionPointAnnotation = extensionPoint.getAnnotation();
Class extensionPointClass = extensionPoint.getAnnotatedClass();
if (extensionPointAnnotation.multi())
{
bindMultiExtensionPoint(bounds, extensionPointClass, extensions);
}
else
{
bindExtensionPoint(bounds, extensionPointClass, extensions);
}
}
Set<AnnotatedClass<Extension>> extensionsCopy = Sets.newHashSet(extensions);
Iterables.removeAll(extensionsCopy, bounds);
for (AnnotatedClass<Extension> extension : extensionsCopy)
{
2013-02-17 13:57:37 +01:00
boolean eagerSingleton = isEagerSingleton(extension.getAnnotatedClass());
String as = Util.EMPTY_STRING;
if (eagerSingleton)
{
as = " as eager singleton";
}
logger.info("bind {}{}, without extensionpoint",
extension.getAnnotatedClass(), as);
binder.bind(extension.getAnnotatedClass());
}
}
/**
* Method description
*
*
*
* @param found
* @param extensionPointClass
* @param extensions
*/
private void bindExtensionPoint(Set<AnnotatedClass<Extension>> found,
Class extensionPointClass, Set<AnnotatedClass<Extension>> extensions)
{
for (AnnotatedClass<Extension> extension : extensions)
{
Class extensionClass = extension.getAnnotatedClass();
if (extensionPointClass.isAssignableFrom(extensionClass))
{
found.add(extension);
bindSingleInstance(extensionPointClass, extensionClass);
break;
}
}
}
/**
* Method description
*
*
*
* @param found
* @param extensionPointClass
* @param extensions
*/
private void bindMultiExtensionPoint(Set<AnnotatedClass<Extension>> found,
Class extensionPointClass, Set<AnnotatedClass<Extension>> extensions)
{
if (logger.isInfoEnabled())
{
logger.info("create multibinder for {}", extensionPointClass.getName());
}
Multibinder multibinder = Multibinder.newSetBinder(binder,
extensionPointClass);
for (AnnotatedClass<Extension> extension : extensions)
{
Class extensionClass = extension.getAnnotatedClass();
if (extensionPointClass.isAssignableFrom(extensionClass))
{
2013-02-17 13:57:37 +01:00
boolean eagerSingleton = isEagerSingleton(extensionClass);
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);
}
found.add(extension);
2013-02-17 13:57:37 +01:00
ScopedBindingBuilder sbb = multibinder.addBinding().to(extensionClass);
if (eagerSingleton)
{
sbb.asEagerSingleton();
logger.info("bind {} as eager singleton");
}
}
}
}
/**
* Method description
*
*
* @param extensionPointClass
* @param extensionClass
*/
private void bindSingleInstance(Class extensionPointClass,
Class extensionClass)
{
2013-02-17 13:57:37 +01:00
boolean eagerSingleton = isEagerSingleton(extensionClass);
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-02-17 13:57:37 +01:00
}
2013-02-17 13:57:37 +01:00
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @param extensionClass
*
* @return
*/
private boolean isEagerSingleton(Class<?> extensionClass)
{
return extensionClass.isAnnotationPresent(EagerSingleton.class);
}
//~--- fields ---------------------------------------------------------------
/** Field description */
private Binder binder;
}