package org.infinispan.factories; import org.infinispan.commons.CacheConfigurationException; import org.infinispan.configuration.global.GlobalConfiguration; import org.infinispan.factories.annotations.Inject; import org.infinispan.factories.scopes.Scope; import org.infinispan.factories.scopes.Scopes; /** * Factory that creates components used internally within Infinispan, and also wires dependencies into the components. * <p/> * The {@link InternalCacheFactory} is a special subclass of this, which bootstraps the construction of other * components. When this class is loaded, it maintains a static list of known default factories for known components, * which it then delegates to, when actually performing the construction. * <p/> * * @author Manik Surtani (<a href="mailto:manik@jboss.org">manik@jboss.org</a>) * @see Inject * @see ComponentRegistry * @since 4.0 */ @Scope(Scopes.GLOBAL) public abstract class AbstractComponentFactory { protected GlobalComponentRegistry globalComponentRegistry; protected GlobalConfiguration globalConfiguration; /** * Constructs a new ComponentFactory. */ public AbstractComponentFactory() { } @Inject private void injectGlobalDependencies(GlobalConfiguration globalConfiguration, GlobalComponentRegistry globalComponentRegistry) { this.globalComponentRegistry = globalComponentRegistry; this.globalConfiguration = globalConfiguration; } /** * Constructs a component. * * @param componentType type of component * @return a component */ public abstract <T> T construct(Class<T> componentType); protected void assertTypeConstructable(Class<?> requestedType, Class<?>... ableToConstruct) { boolean canConstruct = false; for (Class<?> c : ableToConstruct) { canConstruct = canConstruct || requestedType.isAssignableFrom(c); } if (!canConstruct) throw new CacheConfigurationException("Don't know how to construct " + requestedType); } }