Package org.picocontainer.containers
Class AbstractDelegatingMutablePicoContainer
- java.lang.Object
-
- org.picocontainer.containers.AbstractDelegatingPicoContainer
-
- org.picocontainer.containers.AbstractDelegatingMutablePicoContainer
-
- All Implemented Interfaces:
java.io.Serializable,Converting,Disposable,MutablePicoContainer,PicoContainer,Startable
- Direct Known Subclasses:
DefaultClassLoadingPicoContainer
public abstract class AbstractDelegatingMutablePicoContainer extends AbstractDelegatingPicoContainer implements MutablePicoContainer
abstract base class for delegating to mutable containers- Author:
- Paul Hammant
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractDelegatingMutablePicoContainer(MutablePicoContainer delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutablePicoContaineraddAdapter(ComponentAdapter<?> componentAdapter)Register a component via a ComponentAdapter.MutablePicoContaineraddChildContainer(PicoContainer child)Add a child container.MutablePicoContaineraddComponent(java.lang.Object implOrInstance)Register an arbitrary object.MutablePicoContaineraddComponent(java.lang.Object componentKey, java.lang.Object componentImplementationOrInstance, Parameter... parameters)Register a component and creates specific instructions on which constructor to use, along with which components and/or constants to provide as constructor arguments.MutablePicoContaineraddConfig(java.lang.String name, java.lang.Object val)Register a config item.MutablePicoContaineras(java.util.Properties... properties)You can set for the following operation only the characteristic of registration of a component on the fly.MutablePicoContainerchange(java.util.Properties... properties)You can change the characteristic of registration of all subsequent components in this container.voiddispose()Dispose this component.MutablePicoContainergetDelegate()LifecycleStategetLifecycleState()Allow querying of the current lifecycle state of a MutablePicoContainer.java.lang.StringgetName()Retrieve the name set (if any).MutablePicoContainermakeChildContainer()Make a child container, using both the same implementation of MutablePicoContainer as the parent and identical behaviors as well.booleanremoveChildContainer(PicoContainer child)Remove a child container from this container.<T> ComponentAdapter<T>removeComponent(java.lang.Object componentKey)Unregister a component by key.<T> ComponentAdapter<T>removeComponentByInstance(T componentInstance)Unregister a component by instance.voidsetLifecycleState(LifecycleState lifecycleState)To assist ThreadLocal usage, LifecycleState can be set.voidsetName(java.lang.String name)Name the container instance, to assist debugging or other indexing.voidstart()Start this component.voidstop()Stop this component.-
Methods inherited from class org.picocontainer.containers.AbstractDelegatingPicoContainer
accept, equals, getComponent, getComponent, getComponent, getComponent, getComponentAdapter, getComponentAdapter, getComponentAdapter, getComponentAdapters, getComponentAdapters, getComponentAdapters, getComponents, getComponents, getConverters, getParent, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.picocontainer.PicoContainer
accept, getComponent, getComponent, getComponent, getComponent, getComponentAdapter, getComponentAdapter, getComponentAdapter, getComponentAdapters, getComponentAdapters, getComponentAdapters, getComponents, getComponents, getParent
-
-
-
-
Constructor Detail
-
AbstractDelegatingMutablePicoContainer
public AbstractDelegatingMutablePicoContainer(MutablePicoContainer delegate)
-
-
Method Detail
-
addComponent
public MutablePicoContainer addComponent(java.lang.Object componentKey, java.lang.Object componentImplementationOrInstance, Parameter... parameters) throws PicoCompositionException
Description copied from interface:MutablePicoContainerRegister a component and creates specific instructions on which constructor to use, along with which components and/or constants to provide as constructor arguments. These "directives" are provided through an array of Parameter objects. Parameter[0] correspondes to the first constructor argument, Parameter[N] corresponds to the N+1th constructor argument.Tips for Parameter usage
- Partial Autowiring: If you have two constructor args to match and you only wish to specify one of the constructors and
let PicoContainer wire the other one, you can use as parameters:
new ComponentParameter(), new ComponentParameter("someService")The default constructor for the component parameter indicates auto-wiring should take place for that parameter. - Force No-Arg constructor usage: If you wish to force a component to be constructed with
the no-arg constructor, use a zero length Parameter array. Ex:
new Parameter[0]
- Specified by:
addComponentin interfaceMutablePicoContainer- Parameters:
componentKey- a key that identifies the component. Must be unique within the container. The type of the key object has no semantic significance unless explicitly specified in the documentation of the implementing container.componentImplementationOrInstance- the component's implementation class. This must be a concrete class (ie, a class that can be instantiated). Or an intance of the compoent.parameters- the parameters that gives the container hints about what arguments to pass to the constructor when it is instantiated. Container implementations may ignore one or more of these hints.- Returns:
- the same instance of MutablePicoContainer
- Throws:
PicoCompositionException- if registration of the component fails.- See Also:
Parameter,ConstantParameter,ComponentParameter
- Partial Autowiring: If you have two constructor args to match and you only wish to specify one of the constructors and
let PicoContainer wire the other one, you can use as parameters:
-
addComponent
public MutablePicoContainer addComponent(java.lang.Object implOrInstance) throws PicoCompositionException
Description copied from interface:MutablePicoContainerRegister an arbitrary object. The class of the object will be used as a key. Calling this method is equivalent to callingaddComponent(componentImplementation, componentImplementation).- Specified by:
addComponentin interfaceMutablePicoContainer- Parameters:
implOrInstance- Component implementation or instance- Returns:
- the same instance of MutablePicoContainer
- Throws:
PicoCompositionException- if registration fails.
-
addConfig
public MutablePicoContainer addConfig(java.lang.String name, java.lang.Object val)
Description copied from interface:MutablePicoContainerRegister a config item.- Specified by:
addConfigin interfaceMutablePicoContainer- Parameters:
name- the name of the config itemval- the value of the config item- Returns:
- the same instance of MutablePicoContainer
-
addAdapter
public MutablePicoContainer addAdapter(ComponentAdapter<?> componentAdapter) throws PicoCompositionException
Description copied from interface:MutablePicoContainerRegister a component via a ComponentAdapter. Use this if you need fine grained control over what ComponentAdapter to use for a specific component. The adapter will be wrapped in whatever behaviors that the the container has been set up with. If you want to bypass that behavior for the adapter you are adding, you should use Characteristics.NONE like so pico.as(Characteristics.NONE).addAdapter(...)- Specified by:
addAdapterin interfaceMutablePicoContainer- Parameters:
componentAdapter- the adapter- Returns:
- the same instance of MutablePicoContainer
- Throws:
PicoCompositionException- if registration fails.
-
removeComponent
public <T> ComponentAdapter<T> removeComponent(java.lang.Object componentKey)
Description copied from interface:MutablePicoContainerUnregister a component by key.- Specified by:
removeComponentin interfaceMutablePicoContainer- Parameters:
componentKey- key of the component to unregister.- Returns:
- the ComponentAdapter that was associated with this component.
-
removeComponentByInstance
public <T> ComponentAdapter<T> removeComponentByInstance(T componentInstance)
Description copied from interface:MutablePicoContainerUnregister a component by instance.- Specified by:
removeComponentByInstancein interfaceMutablePicoContainer- Parameters:
componentInstance- the component instance to unregister.- Returns:
- the same instance of MutablePicoContainer
-
addChildContainer
public MutablePicoContainer addChildContainer(PicoContainer child)
Description copied from interface:MutablePicoContainerAdd a child container. This action will list the the 'child' as exactly that in the parents scope. It will not change the child's view of a parent. That is determined by the constructor arguments of the child itself. Lifecycle events will be cascaded from parent to child as a consequence of calling this method.- Specified by:
addChildContainerin interfaceMutablePicoContainer- Parameters:
child- the child container- Returns:
- the same instance of MutablePicoContainer
-
removeChildContainer
public boolean removeChildContainer(PicoContainer child)
Description copied from interface:MutablePicoContainerRemove a child container from this container. It will not change the child's view of a parent. Lifecycle event will no longer be cascaded from the parent to the child.- Specified by:
removeChildContainerin interfaceMutablePicoContainer- Parameters:
child- the child container- Returns:
trueif the child container has been removed.
-
change
public MutablePicoContainer change(java.util.Properties... properties)
Description copied from interface:MutablePicoContainerYou can change the characteristic of registration of all subsequent components in this container.- Specified by:
changein interfaceMutablePicoContainer- Returns:
- the same Pico instance with changed properties
-
as
public MutablePicoContainer as(java.util.Properties... properties)
Description copied from interface:MutablePicoContainerYou can set for the following operation only the characteristic of registration of a component on the fly.- Specified by:
asin interfaceMutablePicoContainer- Returns:
- the same Pico instance with temporary properties
-
dispose
public void dispose()
Description copied from interface:DisposableDispose this component. The component should deallocate all resources. The contract for this method defines a single call at the end of this component's life.- Specified by:
disposein interfaceDisposable
-
makeChildContainer
public MutablePicoContainer makeChildContainer()
Description copied from interface:MutablePicoContainerMake a child container, using both the same implementation of MutablePicoContainer as the parent and identical behaviors as well. It will have a reference to this as parent. This will list the resulting MPC as a child. Lifecycle events will be cascaded from parent to child as a consequence of this.Note that for long-lived parent containers, you need to unregister child containers made with this call before disposing or you will leak memory. (Experience speaking here! )
Incorrect Example:
MutablePicoContainer parent = new PicoBuilder().withCaching().withLifecycle().build(); MutablePicoContainer child = parent.makeChildContainer(); child = null; //Child still retains in memory because parent still holds reference.
Correct Example:
MutablePicoContainer parent = new PicoBuilder().withCaching().withLifecycle().build(); MutablePicoContainer child = parent.makeChildContainer(); parent.removeChildContainer(child); //Remove the bi-directional references. child = null;
- Specified by:
makeChildContainerin interfaceMutablePicoContainer- Returns:
- the new child container.
-
start
public void start()
Description copied from interface:StartableStart this component. Called initially at the begin of the lifecycle. It can be called again after a stop.
-
stop
public void stop()
Description copied from interface:StartableStop this component. Called near the end of the lifecycle. It can be called again after a further start. ImplementDisposableif you need a single call at the definite end of the lifecycle.
-
getDelegate
public MutablePicoContainer getDelegate()
- Overrides:
getDelegatein classAbstractDelegatingPicoContainer
-
setName
public void setName(java.lang.String name)
Description copied from interface:MutablePicoContainerName the container instance, to assist debugging or other indexing.- Specified by:
setNamein interfaceMutablePicoContainer- Parameters:
name- the name to call it.
-
setLifecycleState
public void setLifecycleState(LifecycleState lifecycleState)
Description copied from interface:MutablePicoContainerTo assist ThreadLocal usage, LifecycleState can be set. No need to use this for normal usages.- Specified by:
setLifecycleStatein interfaceMutablePicoContainer- Parameters:
lifecycleState- the lifecyle state to use.
-
getLifecycleState
public LifecycleState getLifecycleState()
Allow querying of the current lifecycle state of a MutablePicoContainer.- Specified by:
getLifecycleStatein interfaceMutablePicoContainer- Returns:
- the current Lifecycle State.
-
getName
public java.lang.String getName()
Retrieve the name set (if any).- Specified by:
getNamein interfaceMutablePicoContainer- Returns:
- Retrieve the arbitrary name of the container set by calling
setName.
-
-