|
Apache Tomcat 7.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.catalina.util.LifecycleBase
org.apache.catalina.util.LifecycleMBeanBase
org.apache.catalina.core.ContainerBase
public abstract class ContainerBase
Abstract implementation of the Container interface, providing common
functionality required by nearly every implementation. Classes extending
this base class must implement getInfo(), and may implement
a replacement for 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. |
addValve |
Valve |
Valve added to this Container. |
removeChild |
Container |
Child container removed from this Container. |
removeValve |
Valve |
Valve removed from this Container. |
start |
null |
Container was started. |
stop |
null |
Container was stopped. |
| Nested Class Summary | |
|---|---|
protected class |
ContainerBase.ContainerBackgroundProcessor
Private thread class to invoke the backgroundProcess method of this container and its children after a fixed delay. |
protected static class |
ContainerBase.NoopAccessLog
|
protected class |
ContainerBase.PrivilegedAddChild
Perform addChild with the permissions of this class. |
| Field Summary | |
|---|---|
protected AccessLog |
accessLog
The access log to use for requests normally handled by this container that have been handled earlier in the processing chain. |
protected int |
backgroundProcessorDelay
The processor delay for this component. |
protected HashMap<String,Container> |
children
The child Containers belonging to this Container, keyed by name. |
protected Cluster |
cluster
The cluster with which this Container is associated. |
protected ArrayList<ContainerListener> |
listeners
The container event listeners for this Container. |
protected Loader |
loader
The Loader implementation with which this Container is associated. |
protected Log |
logger
The Logger implementation with which this Container is associated. |
protected String |
logName
Associated logger name. |
protected Manager |
manager
The Manager implementation with which this Container is associated. |
protected String |
name
The human-readable name of this Container. |
protected Container |
parent
The parent Container to which this Container is a child. |
protected ClassLoader |
parentClassLoader
The parent class loader to be configured when we install a Loader. |
protected Pipeline |
pipeline
The Pipeline object with which this Container is associated. |
protected Realm |
realm
The Realm with which this Container is associated. |
protected DirContext |
resources
The resources DirContext object with which this Container is associated. |
protected static StringManager |
sm
The string manager for this package. |
protected boolean |
startChildren
Will children be started automatically when they are added. |
protected PropertyChangeSupport |
support
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_MAPPER_EVENT, ADD_VALVE_EVENT, REMOVE_CHILD_EVENT, REMOVE_MAPPER_EVENT, REMOVE_VALVE_EVENT |
| Fields inherited from interface org.apache.catalina.Lifecycle |
|---|
AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, DESTROY_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
| Constructor Summary | |
|---|---|
ContainerBase()
|
|
| Method Summary | |
|---|---|
void |
addChild(Container child)
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 |
addPropertyChangeListener(PropertyChangeListener listener)
Add a property change listener to this component. |
void |
addValve(Valve valve)
Convenience method, intended for use by the digester to simplify the process of adding Valves to containers. |
void |
backgroundProcess()
Execute a periodic task, such as reloading, etc. |
protected void |
destroyInternal()
Sub-classes wishing to perform additional clean-up should override this method, ensuring that super.destroyInternal() is the last call in the overriding method. |
Container |
findChild(String name)
Return the child Container, associated with this Container, with the specified name (if any); otherwise, return null |
Container[] |
findChildren()
Return the set of children Containers associated with this Container. |
ContainerListener[] |
findContainerListeners()
Return the set of 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. |
AccessLog |
getAccessLog()
Identify the AccessLog to use to log a request/response that was destined for this container but was handled earlier in the processing chain so that the request/response still appears in the correct access logs. |
int |
getBackgroundProcessorDelay()
Get the delay between the invocation of the backgroundProcess method on this container and its children. |
ObjectName[] |
getChildren()
|
Cluster |
getCluster()
Return the Cluster with which this Container is associated. |
protected String |
getDomainInternal()
Method implemented by sub-classes to identify the domain in which MBeans should be registered. |
String |
getInfo()
Return descriptive information about this Container implementation and the corresponding version number, in the format <description>/<version>. |
Loader |
getLoader()
Return the Loader with which this Container is associated. |
Log |
getLogger()
Return the Logger for this Container. |
Manager |
getManager()
Return the Manager with which this Container is associated. |
Object |
getMappingObject()
Return an object which may be utilized for mapping to this component. |
String |
getName()
Return a name string (suitable for use by humans) that describes this Container. |
Container |
getParent()
Return the Container for which this Container is a child, if there is one. |
ClassLoader |
getParentClassLoader()
Return the parent class loader (if any) for this web application. |
Pipeline |
getPipeline()
Return the Pipeline object that manages the Valves associated with this Container. |
Realm |
getRealm()
Return the Realm with which this Container is associated. |
DirContext |
getResources()
Return the resources DirContext object with which this Container is associated. |
boolean |
getStartChildren()
Return if children of this container will be started automatically when they are added to this container. |
void |
invoke(Request request,
Response response)
Process the specified Request, to produce the corresponding Response, by invoking the first Valve in our pipeline (if any), or the basic Valve otherwise. |
void |
logAccess(Request request,
Response response,
long time,
boolean useDefault)
Check this container for an access log and if none is found, look to the parent. |
protected String |
logName()
Return the abbreviated name of this container for logging messages |
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 |
removePropertyChangeListener(PropertyChangeListener listener)
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 |
setLoader(Loader loader)
Set the Loader with which this Container is associated. |
void |
setManager(Manager manager)
Set the Manager with which this Container is associated. |
void |
setName(String name)
Set a name string (suitable for use by humans) that describes this Container. |
void |
setParent(Container container)
Set the parent Container to which this Container is being added as a child. |
void |
setParentClassLoader(ClassLoader parent)
Set the parent class loader (if any) for this web application. |
void |
setRealm(Realm realm)
Set the Realm with which this Container is associated. |
void |
setResources(DirContext resources)
Set the resources DirContext object 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. |
protected void |
startInternal()
Start this component and implement the requirements of LifecycleBase.startInternal(). |
protected void |
stopInternal()
Stop this component and implement the requirements of LifecycleBase.stopInternal(). |
protected void |
threadStart()
Start the background thread that will periodically check for session timeouts. |
protected void |
threadStop()
Stop the background thread that is periodically checking for session timeouts. |
| Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase |
|---|
getDomain, getObjectName, getObjectNameKeyProperties, initInternal, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister |
| Methods inherited from class org.apache.catalina.util.LifecycleBase |
|---|
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, init, removeLifecycleListener, setState, setState, start, stop |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.catalina.Container |
|---|
getObjectName |
| Methods inherited from interface org.apache.catalina.Lifecycle |
|---|
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop |
| Field Detail |
|---|
protected HashMap<String,Container> children
protected int backgroundProcessorDelay
protected ArrayList<ContainerListener> listeners
protected Loader loader
protected Log logger
protected String logName
protected Manager manager
protected Cluster cluster
protected String name
protected Container parent
protected ClassLoader parentClassLoader
protected Pipeline pipeline
protected Realm realm
protected DirContext resources
protected static final StringManager sm
protected boolean startChildren
protected PropertyChangeSupport support
protected volatile AccessLog accessLog
| Constructor Detail |
|---|
public ContainerBase()
| Method Detail |
|---|
public int getBackgroundProcessorDelay()
getBackgroundProcessorDelay in interface Containerpublic void setBackgroundProcessorDelay(int delay)
setBackgroundProcessorDelay in interface Containerdelay - The delay in seconds between the invocation of
backgroundProcess methodspublic String getInfo()
<description>/<version>.
getInfo in interface Containerpublic Loader getLoader()
null.
getLoader in interface Containerpublic void setLoader(Loader loader)
setLoader in interface Containerloader - The newly associated loaderpublic Log getLogger()
getLogger in interface Containerpublic Manager getManager()
null.
getManager in interface Containerpublic void setManager(Manager manager)
setManager in interface Containermanager - The newly associated Managerpublic Object getMappingObject()
getMappingObject in interface Containerpublic Cluster getCluster()
null.
getCluster in interface Containerpublic void setCluster(Cluster cluster)
setCluster in interface Containercluster - The newly associated Clusterpublic String getName()
getName in interface Containerpublic void setName(String name)
setName in interface Containername - New name of this container
IllegalStateException - if this Container has already been
added to the children of a parent Container (after which the name
may not be changed)public boolean getStartChildren()
public void setStartChildren(boolean startChildren)
startChildren - New value of the startChildren flagpublic Container getParent()
null.
getParent in interface Containerpublic void setParent(Container container)
setParent in interface Containercontainer - Container to which this Container is being added
as a child
IllegalArgumentException - if this Container refuses to become
attached to the specified Containerpublic ClassLoader getParentClassLoader()
getParentClassLoader in interface Containerpublic void setParentClassLoader(ClassLoader parent)
setParentClassLoader in interface Containerparent - The new parent class loaderpublic Pipeline getPipeline()
getPipeline in interface Containerpublic Realm getRealm()
null.
getRealm in interface Containerpublic void setRealm(Realm realm)
setRealm in interface Containerrealm - The newly associated Realmpublic DirContext getResources()
null.
getResources in interface Containerpublic void setResources(DirContext resources)
setResources in interface Containerresources - The newly associated DirContextpublic void addChild(Container child)
setParent() method must be called, with this
Container as an argument. This method may thrown an
IllegalArgumentException if this Container chooses not
to be attached to the specified Container, in which case it is not added
addChild in interface Containerchild - New child Container to be added
IllegalArgumentException - if this exception is thrown by
the setParent() method of the child Container
IllegalArgumentException - if the new child does not have
a name unique from that of existing children of this Container
IllegalStateException - if this Container does not support
child Containerspublic void addContainerListener(ContainerListener listener)
addContainerListener in interface Containerlistener - The listener to addpublic void addPropertyChangeListener(PropertyChangeListener listener)
addPropertyChangeListener in interface Containerlistener - The listener to addpublic Container findChild(String name)
null
findChild in interface Containername - Name of the child Container to be retrievedpublic Container[] findChildren()
findChildren in interface Containerpublic ContainerListener[] findContainerListeners()
findContainerListeners in interface Container
public void invoke(Request request,
Response response)
throws IOException,
ServletException
invoke in interface Containerrequest - Request to be processedresponse - Response to be produced
IllegalStateException - if neither a pipeline or a basic
Valve have been configured for this Container
IOException - if an input/output error occurred while
processing
ServletException - if a ServletException was thrown
while processing this requestpublic void removeChild(Container child)
removeChild in interface Containerchild - Existing child Container to be removedpublic void removeContainerListener(ContainerListener listener)
removeContainerListener in interface Containerlistener - The listener to removepublic void removePropertyChangeListener(PropertyChangeListener listener)
removePropertyChangeListener in interface Containerlistener - The listener to remove
protected void startInternal()
throws LifecycleException
LifecycleBase.startInternal().
startInternal in class LifecycleBaseLifecycleException - if this component detects a fatal error
that prevents this component from being used
protected void stopInternal()
throws LifecycleException
LifecycleBase.stopInternal().
stopInternal in class LifecycleBaseLifecycleException - if this component detects a fatal error
that prevents this component from being used
protected void destroyInternal()
throws LifecycleException
LifecycleMBeanBase
destroyInternal in class LifecycleMBeanBaseLifecycleException
public void logAccess(Request request,
Response response,
long time,
boolean useDefault)
logAccess in interface Containerrequest - 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 logpublic AccessLog getAccessLog()
Container
getAccessLog in interface Containerpublic void addValve(Valve valve)
Pipeline.addValve(Valve) for full details. Components other than
the digester should use getPipeline().addValve(Valve) in case a
future implementation provides an alternative method for the digester to
use.
valve - Valve to be added
IllegalArgumentException - if this Container refused to
accept the specified Valve
IllegalArgumentException - if the specified Valve refuses to be
associated with this Container
IllegalStateException - if the specified Valve is already
associated with a different Containerpublic void backgroundProcess()
backgroundProcess in interface Container
public void fireContainerEvent(String type,
Object data)
fireContainerEvent in interface Containertype - Event typedata - Event dataprotected String logName()
protected String getDomainInternal()
LifecycleMBeanBase
getDomainInternal in class LifecycleMBeanBasepublic ObjectName[] getChildren()
protected void threadStart()
protected void threadStop()
|
Apache Tomcat 7.0.4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||