Package org.apache.catalina.core
Class ContainerBase
java.lang.Object
org.apache.catalina.util.LifecycleBase
org.apache.catalina.util.LifecycleMBeanBase
org.apache.catalina.core.ContainerBase
- All Implemented Interfaces:
MBeanRegistration
,Container
,JmxEnabled
,Lifecycle
- Direct Known Subclasses:
StandardContext
,StandardEngine
,StandardHost
,StandardWrapper
Abstract implementation of the Container interface, providing common functionality required by nearly every
implementation. Classes extending this base class must may implement a replacement for
Subclasses that fire additional events should document them in the class comments of the implementation class.
invoke()
.
All subclasses of this abstract base class will include support for a Pipeline object that defines the processing to
be performed for each request received by the invoke()
method of this class, utilizing the "Chain of
Responsibility" design pattern. A subclass should encapsulate its own processing functionality as a
Valve
, and configure this Valve into the pipeline by calling setBasic()
.
This implementation fires property change events, per the JavaBeans design pattern, for changes in singleton
properties. In addition, it fires the following ContainerEvent
events to listeners who register
themselves with addContainerListener()
:
Type | Data | Description |
---|---|---|
addChild |
Container |
Child container added to this Container. |
|
Valve |
Valve added to this Container. |
removeChild |
Container |
Child container removed from this Container. |
|
Valve |
Valve removed from this Container. |
start |
null |
Container was started. |
stop |
null |
Container was stopped. |
- Author:
- Craig R. McClanahan
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
Private runnable class to invoke the backgroundProcess method of this container and its children after a fixed delay.protected class
protected class
Perform addChild with the permissions of this class. addChild can be called with the XML parser on the stack, this allows the XML parser to have fewer privileges than Tomcat.Nested classes/interfaces inherited from interface org.apache.catalina.Lifecycle
Lifecycle.SingleUse
-
Field Summary
Modifier and TypeFieldDescriptionprotected AccessLog
The access log to use for requests normally handled by this container that have been handled earlier in the processing chain.protected int
The processor delay for this component.protected ScheduledFuture<?>
The future allowing control of the background processor.The child Containers belonging to this Container, keyed by name.protected Cluster
The cluster with which this Container is associated.protected final List<ContainerListener>
The container event listeners for this Container.protected Log
The Logger implementation with which this Container is associated.protected String
Associated logger name.protected ScheduledFuture<?>
protected String
The human-readable name of this Container.protected Container
The parent Container to which this Container is a child.protected ClassLoader
The parent class loader to be configured when we install a Loader.protected final Pipeline
The Pipeline object with which this Container is associated.protected static final StringManager
The string manager for this package.protected boolean
Will children be started automatically when they are added.protected ExecutorService
protected final PropertyChangeSupport
The property change support for this component.Fields inherited from class org.apache.catalina.util.LifecycleMBeanBase
mserver
Fields inherited from interface org.apache.catalina.Container
ADD_CHILD_EVENT, ADD_VALVE_EVENT, REMOVE_CHILD_EVENT, REMOVE_VALVE_EVENT
Fields inherited from interface org.apache.catalina.Lifecycle
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a new child Container to those associated with this Container, if supported.void
addContainerListener
(ContainerListener listener) Add a container event listener to this component.void
Add a property change listener to this component.void
Convenience method, intended for use by the digester to simplify the process of adding Valves to containers.void
Execute a periodic task, such as reloading, etc.protected void
Sub-classes implement this method to perform any instance destruction required.Obtain a child Container by name.Obtain the child Containers associated with this Container.Obtain the container listeners associated with this Container.void
fireContainerEvent
(String type, Object data) Notify all container event listeners that a particular event has occurred for this Container.Obtain the AccessLog to use to log a request/response that is destined for this container.int
Get the delay between the invocation of the backgroundProcess method on this container and its children.Obtain the location of CATALINA_BASE.Obtain the location of CATALINA_HOME.Get the Cluster for this container.protected Cluster
protected String
Method implemented by sub-classes to identify the domain in which MBeans should be registered.Obtain the log to which events for this container should be logged.Return the logger name that the container will use.Calculate the key properties string to be added to an object'sObjectName
to indicate that it is associated with this container.getName()
Return a name string (suitable for use by humans) that describes this Container.Get the parent container.Get the parent class loader.Return the Pipeline object that manages the Valves associated with this Container.getRealm()
Obtain the Realm with which this Container is associated.protected Realm
boolean
Return if children of this container will be started automatically when they are added to this container.int
Obtain the number of threads available for starting and stopping any children associated with this container.void
Log a request/response that was destined for this container but has been handled earlier in the processing chain so that the request/response still appears in the correct access logs.void
removeChild
(Container child) Remove an existing child Container from association with this parent Container.void
removeContainerListener
(ContainerListener listener) Remove a container event listener from this component.void
Remove a property change listener from this component.void
setBackgroundProcessorDelay
(int delay) Set the delay between the invocation of the execute method on this container and its children.void
setCluster
(Cluster cluster) Set the Cluster with which this Container is associated.void
Set a name string (suitable for use by humans) that describes this Container.void
Set the parent Container to which this Container is being added as a child.void
setParentClassLoader
(ClassLoader parent) Set the parent class loader for this component.void
Set the Realm with which this Container is associated.void
setStartChildren
(boolean startChildren) Set if children of this container will be started automatically when they are added to this container.void
setStartStopThreads
(int startStopThreads) Sets the number of threads available for starting and stopping any children associated with this container.protected void
Start this component and implement the requirements ofLifecycleBase.startInternal()
.protected void
Stop this component and implement the requirements ofLifecycleBase.stopInternal()
.protected void
Start the background thread that will periodically check for session timeouts.protected void
Stop the background thread that is periodically checking for session timeouts.final String
toString()
Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase
getDomain, getObjectName, getObjectNameKeyProperties, initInternal, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister, unregister
Methods inherited from class org.apache.catalina.util.LifecycleBase
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, getThrowOnFailure, init, removeLifecycleListener, setState, setState, setThrowOnFailure, start, stop
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.catalina.Container
getDomain, getObjectName
Methods inherited from interface org.apache.catalina.Lifecycle
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop
-
Field Details
-
children
The child Containers belonging to this Container, keyed by name. -
backgroundProcessorDelay
protected int backgroundProcessorDelayThe processor delay for this component. -
backgroundProcessorFuture
The future allowing control of the background processor. -
monitorFuture
-
listeners
The container event listeners for this Container. Implemented as a CopyOnWriteArrayList since listeners may invoke methods to add/remove themselves or other listeners and with a ReadWriteLock that would trigger a deadlock. -
logger
The Logger implementation with which this Container is associated. -
logName
Associated logger name. -
cluster
The cluster with which this Container is associated. -
name
The human-readable name of this Container. -
parent
The parent Container to which this Container is a child. -
parentClassLoader
The parent class loader to be configured when we install a Loader. -
pipeline
The Pipeline object with which this Container is associated. -
sm
The string manager for this package. -
startChildren
protected boolean startChildrenWill children be started automatically when they are added. -
support
The property change support for this component. -
accessLog
The access log to use for requests normally handled by this container that have been handled earlier in the processing chain. -
startStopExecutor
-
-
Constructor Details
-
ContainerBase
public ContainerBase()
-
-
Method Details
-
getStartStopThreads
public int getStartStopThreads()Description copied from interface:Container
Obtain the number of threads available for starting and stopping any children associated with this container. This allows start/stop calls to children to be processed in parallel.- Specified by:
getStartStopThreads
in interfaceContainer
- Returns:
- The currently configured number of threads used to start/stop children associated with this container
-
setStartStopThreads
public void setStartStopThreads(int startStopThreads) Description copied from interface:Container
Sets the number of threads available for starting and stopping any children associated with this container. This allows start/stop calls to children to be processed in parallel.- Specified by:
setStartStopThreads
in interfaceContainer
- Parameters:
startStopThreads
- The new number of threads to be used
-
getBackgroundProcessorDelay
public int getBackgroundProcessorDelay()Description copied from interface:Container
Get the delay between the invocation of the backgroundProcess method on this container and its children. Child containers will not be invoked if their delay value is positive (which would mean they are using their own thread). Setting this to a positive value will cause a thread to be spawned. After waiting the specified amount of time, the thread will invoke theContainer.backgroundProcess()
method on this container and all children with non-positive delay values.- Specified by:
getBackgroundProcessorDelay
in interfaceContainer
- Returns:
- The delay between the invocation of the backgroundProcess method on this container and its children. A non-positive value indicates that background processing will be managed by the parent.
-
setBackgroundProcessorDelay
public void setBackgroundProcessorDelay(int delay) Description copied from interface:Container
Set the delay between the invocation of the execute method on this container and its children.- Specified by:
setBackgroundProcessorDelay
in interfaceContainer
- Parameters:
delay
- The delay in seconds between the invocation of backgroundProcess methods
-
getLogger
Description copied from interface:Container
Obtain the log to which events for this container should be logged. -
getLogName
Description copied from interface:Container
Return the logger name that the container will use.- Specified by:
getLogName
in interfaceContainer
- Returns:
- the abbreviated name of this container for logging messages
-
getCluster
Description copied from interface:Container
Get the Cluster for this container.- Specified by:
getCluster
in interfaceContainer
- Returns:
- The Cluster with which this Container is associated. If there is no associated Cluster, return the
Cluster associated with our parent Container (if any); otherwise return
null
.
-
getClusterInternal
-
setCluster
Description copied from interface:Container
Set the Cluster with which this Container is associated.- Specified by:
setCluster
in interfaceContainer
- Parameters:
cluster
- the Cluster with which this Container is associated.
-
getName
Description copied from interface:Container
Return a name string (suitable for use by humans) that describes this Container. Within the set of child containers belonging to a particular parent, Container names must be unique. -
setName
Description copied from interface:Container
Set a name string (suitable for use by humans) that describes this Container. Within the set of child containers belonging to a particular parent, Container names must be unique. -
getStartChildren
public boolean getStartChildren()Return if children of this container will be started automatically when they are added to this container.- Returns:
true
if the children will be started
-
setStartChildren
public void setStartChildren(boolean startChildren) Set if children of this container will be started automatically when they are added to this container.- Parameters:
startChildren
- New value of the startChildren flag
-
getParent
Description copied from interface:Container
Get the parent container. -
setParent
Description copied from interface:Container
Set the parent Container to which this Container is being added as a child. This Container may refuse to become attached to the specified Container by throwing an exception. -
getParentClassLoader
Description copied from interface:Container
Get the parent class loader.- Specified by:
getParentClassLoader
in interfaceContainer
- Returns:
- the parent class loader for this component. If not set, return
Container.getParent()
.Container.getParentClassLoader()
. If no parent has been set, return the system class loader.
-
setParentClassLoader
Description copied from interface:Container
Set the parent class loader for this component. ForContext
s this call is meaningful only before a Loader has been configured, and the specified value (if non-null) should be passed as an argument to the class loader constructor.- Specified by:
setParentClassLoader
in interfaceContainer
- Parameters:
parent
- The new parent class loader
-
getPipeline
Description copied from interface:Container
Return the Pipeline object that manages the Valves associated with this Container.- Specified by:
getPipeline
in interfaceContainer
- Returns:
- The Pipeline
-
getRealm
Description copied from interface:Container
Obtain the Realm with which this Container is associated. -
getRealmInternal
-
setRealm
Description copied from interface:Container
Set the Realm with which this Container is associated. -
addChild
Description copied from interface:Container
Add a new child Container to those associated with this Container, if supported. Prior to adding this Container to the set of children, the child'ssetParent()
method must be called, with this Container as an argument. This method may thrown anIllegalArgumentException
if this Container chooses not to be attached to the specified Container, in which case it is not added -
addContainerListener
Description copied from interface:Container
Add a container event listener to this component.- Specified by:
addContainerListener
in interfaceContainer
- Parameters:
listener
- The listener to add
-
addPropertyChangeListener
Description copied from interface:Container
Add a property change listener to this component.- Specified by:
addPropertyChangeListener
in interfaceContainer
- Parameters:
listener
- The listener to add
-
findChild
Description copied from interface:Container
Obtain a child Container by name. -
findChildren
Description copied from interface:Container
Obtain the child Containers associated with this Container.- Specified by:
findChildren
in interfaceContainer
- Returns:
- An array containing all children of this container. If this Container has no children, a zero-length array is returned.
-
findContainerListeners
Description copied from interface:Container
Obtain the container listeners associated with this Container.- Specified by:
findContainerListeners
in interfaceContainer
- Returns:
- An array containing the container listeners associated with this Container. If this Container has no registered container listeners, a zero-length array is returned.
-
removeChild
Description copied from interface:Container
Remove an existing child Container from association with this parent Container.- Specified by:
removeChild
in interfaceContainer
- Parameters:
child
- Existing child Container to be removed
-
removeContainerListener
Description copied from interface:Container
Remove a container event listener from this component.- Specified by:
removeContainerListener
in interfaceContainer
- Parameters:
listener
- The listener to remove
-
removePropertyChangeListener
Description copied from interface:Container
Remove a property change listener from this component.- Specified by:
removePropertyChangeListener
in interfaceContainer
- Parameters:
listener
- The listener to remove
-
startInternal
Start this component and implement the requirements ofLifecycleBase.startInternal()
.- Specified by:
startInternal
in classLifecycleBase
- Throws:
LifecycleException
- if this component detects a fatal error that prevents this component from being used
-
stopInternal
Stop this component and implement the requirements ofLifecycleBase.stopInternal()
.- Specified by:
stopInternal
in classLifecycleBase
- Throws:
LifecycleException
- if this component detects a fatal error that prevents this component from being used
-
destroyInternal
Description copied from class:LifecycleBase
Sub-classes implement this method to perform any instance destruction required.- Overrides:
destroyInternal
in classLifecycleMBeanBase
- Throws:
LifecycleException
- If the destruction fails
-
logAccess
Description copied from interface:Container
Log a request/response that was destined for this container but has been handled earlier in the processing chain so that the request/response still appears in the correct access logs.- Specified by:
logAccess
in interfaceContainer
- Parameters:
request
- Request (associated with the response) to logresponse
- Response (associated with the request) to logtime
- Time taken to process the request/response in milliseconds (use 0 if not known)useDefault
- Flag that indicates that the request/response should be logged in the engine's default access log
-
getAccessLog
Description copied from interface:Container
Obtain the AccessLog to use to log a request/response that is destined for this container. This is typically used when the request/response was handled (and rejected) earlier in the processing chain so that the request/response still appears in the correct access logs.- Specified by:
getAccessLog
in interfaceContainer
- Returns:
- The AccessLog to use for a request/response destined for this container
-
addValve
Convenience method, intended for use by the digester to simplify the process of adding Valves to containers. SeePipeline.addValve(Valve)
for full details. Components other than the digester should usegetPipeline()
.addValve(Valve)
in case a future implementation provides an alternative method for the digester to use.- Parameters:
valve
- Valve to be added- Throws:
IllegalArgumentException
- if this Container refused to accept the specified ValveIllegalArgumentException
- if the specified Valve refuses to be associated with this ContainerIllegalStateException
- if the specified Valve is already associated with a different Container
-
backgroundProcess
public void backgroundProcess()Description copied from interface:Container
Execute a periodic task, such as reloading, etc. This method will be invoked inside the classloading context of this container. Unexpected throwables will be caught and logged.- Specified by:
backgroundProcess
in interfaceContainer
-
getCatalinaBase
Description copied from interface:Container
Obtain the location of CATALINA_BASE.- Specified by:
getCatalinaBase
in interfaceContainer
- Returns:
- The location of CATALINA_BASE.
-
getCatalinaHome
Description copied from interface:Container
Obtain the location of CATALINA_HOME.- Specified by:
getCatalinaHome
in interfaceContainer
- Returns:
- The location of CATALINA_HOME.
-
fireContainerEvent
Description copied from interface:Container
Notify all container event listeners that a particular event has occurred for this Container. The default implementation performs this notification synchronously using the calling thread.- Specified by:
fireContainerEvent
in interfaceContainer
- Parameters:
type
- Event typedata
- Event data
-
getDomainInternal
Description copied from class:LifecycleMBeanBase
Method implemented by sub-classes to identify the domain in which MBeans should be registered.- Specified by:
getDomainInternal
in classLifecycleMBeanBase
- Returns:
- The name of the domain to use to register MBeans.
-
getMBeanKeyProperties
Description copied from interface:Container
Calculate the key properties string to be added to an object'sObjectName
to indicate that it is associated with this container.- Specified by:
getMBeanKeyProperties
in interfaceContainer
- Returns:
- A string suitable for appending to the ObjectName
-
getChildren
-
threadStart
protected void threadStart()Start the background thread that will periodically check for session timeouts. -
threadStop
protected void threadStop()Stop the background thread that is periodically checking for session timeouts. -
toString
-