|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.catalina.session.ManagerBase org.apache.catalina.session.PersistentManagerBase
public abstract class PersistentManagerBase
Extends the ManagerBase class to implement most of the functionality required by a Manager which supports any kind of persistence, even if onlyfor restarts.
IMPLEMENTATION NOTE: Correct behavior of session storing and
reloading depends upon external calls to the start()
and
stop()
methods of this class at the correct times.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.apache.catalina.session.ManagerBase |
---|
ManagerBase.SessionTiming |
Field Summary | |
---|---|
protected LifecycleSupport |
lifecycle
The lifecycle event support for this component. |
protected int |
maxActiveSessions
The maximum number of active Sessions allowed, or -1 for no limit. |
protected int |
maxIdleBackup
How long a session must be idle before it should be backed up |
protected int |
maxIdleSwap
The maximum time in seconds a session may be idle before it is eligible to be swapped to disk due to inactivity. |
protected int |
minIdleSwap
The minimum time in seconds a session must be idle before it is eligible to be swapped to disk to keep the active session count below maxActiveSessions. |
protected long |
processingTime
Processing time during session expiration and passivation. |
protected int |
rejectedSessions
Number of session creations that failed due to maxActiveSessions. |
protected boolean |
saveOnRestart
Whether to save and reload sessions when the Manager unload
and load methods are called. |
protected boolean |
started
Has this component been started yet? |
protected Store |
store
Store object which will manage the Session store. |
Fields inherited from class org.apache.catalina.session.ManagerBase |
---|
algorithm, container, DEFAULT_ALGORITHM, devRandomSource, digest, distributable, domain, duplicates, entropy, expiredSessions, initialized, maxActive, maxInactiveInterval, mserver, oname, processExpiresFrequency, random, randomClass, randomIS, sessionAverageAliveTime, sessionCounter, sessionCreationTiming, sessionExpirationTiming, sessionIdLength, sessionMaxAliveTime, sessions, sm, support, TIMING_STATS_CACHE_SIZE |
Fields inherited from interface org.apache.catalina.Lifecycle |
---|
AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, DESTROY_EVENT, INIT_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
Constructor Summary | |
---|---|
PersistentManagerBase()
|
Method Summary | |
---|---|
void |
addLifecycleListener(LifecycleListener listener)
Add a lifecycle event listener to this component. |
void |
clearStore()
Clear all sessions from the Store. |
LifecycleListener[] |
findLifecycleListeners()
Get the lifecycle listeners associated with this lifecycle. |
Session |
findSession(java.lang.String id)
Return the active Session, associated with this Manager, with the specified session id (if any); otherwise return null . |
java.lang.String |
getInfo()
Return descriptive information about this Manager implementation and the corresponding version number, in the format <description>/<version> . |
int |
getMaxActiveSessions()
Return the maximum number of active Sessions allowed, or -1 for no limit. |
int |
getMaxIdleBackup()
Indicates how many seconds old a session can get, after its last use in a request, before it should be backed up to the store. -1 means sessions are not backed up. |
int |
getMaxIdleSwap()
|
int |
getMinIdleSwap()
|
java.lang.String |
getName()
Return the descriptive short name of this Manager implementation. |
int |
getRejectedSessions()
Number of session creations that failed due to maxActiveSessions. |
boolean |
getSaveOnRestart()
Indicates whether sessions are saved when the Manager is shut down properly. |
Store |
getStore()
Return the Store object which manages persistent Session storage for this Manager. |
boolean |
isLoaded(java.lang.String id)
Return true, if the session id is loaded in memory otherwise false is returned |
protected boolean |
isStarted()
Get the started status. |
void |
load()
Load all sessions found in the persistence mechanism, assuming they are marked as valid and have not passed their expiration limit. |
void |
processExpires()
Implements the Manager interface, direct call to processExpires and processPersistenceChecks |
protected void |
processMaxActiveSwaps()
Swap idle sessions out to Store if too many are active |
protected void |
processMaxIdleBackups()
Back up idle sessions. |
protected void |
processMaxIdleSwaps()
Swap idle sessions out to Store if they are idle too long. |
void |
processPersistenceChecks()
Called by the background thread after active sessions have been checked for expiration, to allow sessions to be swapped out, backed up, etc. |
void |
propertyChange(java.beans.PropertyChangeEvent event)
Process property change events from our associated Context. |
void |
remove(Session session)
Remove this Session from the active Sessions for this Manager, and from the Store. |
void |
removeLifecycleListener(LifecycleListener listener)
Remove a lifecycle event listener from this component. |
protected void |
removeSession(java.lang.String id)
Remove this Session from the active Sessions for this Manager, and from the Store. |
void |
removeSuper(Session session)
Remove this Session from the active Sessions for this Manager, but not from the Store. |
void |
setContainer(Container container)
Set the Container with which this Manager has been associated. |
void |
setMaxActiveSessions(int max)
Set the maximum number of actives Sessions allowed, or -1 for no limit. |
void |
setMaxIdleBackup(int backup)
Sets the option to back sessions up to the Store after they are used in a request. |
void |
setMaxIdleSwap(int max)
Sets the maximum time in seconds a session may be idle before it is eligible to be swapped to disk due to inactivity. |
void |
setMinIdleSwap(int min)
Sets the minimum time in seconds a session must be idle before it is eligible to be swapped to disk to keep the active session count below maxActiveSessions. |
void |
setRejectedSessions(int rejectedSessions)
Sets the number of sessions that were not created because the maximum number of active sessions was reached. |
void |
setSaveOnRestart(boolean saveOnRestart)
Set the option to save sessions to the Store when the Manager is shut down, then loaded when the Manager starts again. |
protected void |
setStarted(boolean started)
Set the started flag |
void |
setStore(Store store)
Set the Store object which will manage persistent Session storage for this Manager. |
void |
start()
Prepare for the beginning of active use of the public methods of this component. |
void |
stop()
Gracefully terminate the active use of the public methods of this component. |
protected Session |
swapIn(java.lang.String id)
Look for a session in the Store and, if found, restore it in the Manager's list of active sessions if appropriate. |
protected void |
swapOut(Session session)
Remove the session from the Manager's list of active sessions and write it out to the Store. |
void |
unload()
Save all currently active sessions in the appropriate persistence mechanism, if any. |
protected void |
writeSession(Session session)
Write the provided session to the Store without modifying the copy in memory or triggering passivation events. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected LifecycleSupport lifecycle
protected int maxActiveSessions
protected boolean started
protected Store store
protected boolean saveOnRestart
unload
and load
methods are called.
protected int maxIdleBackup
protected int minIdleSwap
-1
means sessions will not be
swapped out to keep the active session count down.
protected int maxIdleSwap
-1
means
sessions should not be swapped out just because of inactivity.
protected int rejectedSessions
protected long processingTime
Constructor Detail |
---|
public PersistentManagerBase()
Method Detail |
---|
public int getMaxIdleBackup()
public void setMaxIdleBackup(int backup)
Note that this is not a hard limit: sessions are checked against this age limit periodically according to processExpiresFrequency. This value should be considered to indicate when a session is ripe for backing up.
So it is possible that a session may be idle for maxIdleBackup + processExpiresFrequency * engine.backgroundProcessorDelay seconds, plus the time it takes to handle other session expiration, swapping, etc. tasks.
backup
- The number of seconds after their last accessed
time when they should be written to the Store.public int getMaxIdleSwap()
-1
means sessions should not be swapped out just because of inactivity.public void setMaxIdleSwap(int max)
-1
means sessions should not be swapped out just because of
inactivity.
public int getMinIdleSwap()
-1
means sessions will not be
swapped out to keep the active session count down.public void setMinIdleSwap(int min)
-1
means sessions will not be
swapped out to keep the active session count down.
public void setContainer(Container container)
setContainer
in interface Manager
setContainer
in class ManagerBase
container
- The associated Containerpublic java.lang.String getInfo()
<description>/<version>
.
getInfo
in interface Manager
getInfo
in class ManagerBase
public boolean isLoaded(java.lang.String id)
id
- The session id for the session to be searched forpublic int getMaxActiveSessions()
public void setMaxActiveSessions(int max)
max
- The new maximum number of sessionspublic int getRejectedSessions()
getRejectedSessions
in interface Manager
public void setRejectedSessions(int rejectedSessions)
Manager
setRejectedSessions
in interface Manager
rejectedSessions
- Number of rejected sessionspublic java.lang.String getName()
getName
in class ManagerBase
protected boolean isStarted()
protected void setStarted(boolean started)
public void setStore(Store store)
store
- the associated Storepublic Store getStore()
public boolean getSaveOnRestart()
public void setSaveOnRestart(boolean saveOnRestart)
saveOnRestart
- true if sessions should be saved on restart, false if
they should be ignored.public void clearStore()
public void processExpires()
processExpires
in class ManagerBase
public void processPersistenceChecks()
public Session findSession(java.lang.String id) throws java.io.IOException
null
.
This method checks the persistence store if persistence is enabled,
otherwise just uses the functionality from ManagerBase.
findSession
in interface Manager
findSession
in class ManagerBase
id
- The session id for the session to be returned
java.lang.IllegalStateException
- if a new session cannot be
instantiated for any reason
java.io.IOException
- if an input/output error occurs while
processing this requestpublic void removeSuper(Session session)
session
- Session to be removedpublic void load()
Note that by default, this method is not called by the MiddleManager class. In order to use it, a subclass must specifically call it, for example in the start() and/or processPersistenceChecks() methods.
load
in interface Manager
public void remove(Session session)
remove
in interface Manager
remove
in class ManagerBase
session
- Session to be removedprotected void removeSession(java.lang.String id)
id
- Session's id to be removedpublic void unload()
Note that by default, this method is not called by the MiddleManager class. In order to use it, a subclass must specifically call it, for example in the stop() and/or processPersistenceChecks() methods.
unload
in interface Manager
protected Session swapIn(java.lang.String id) throws java.io.IOException
java.io.IOException
protected void swapOut(Session session) throws java.io.IOException
session
- The Session to write out.
java.io.IOException
protected void writeSession(Session session) throws java.io.IOException
java.io.IOException
public void addLifecycleListener(LifecycleListener listener)
addLifecycleListener
in interface Lifecycle
listener
- The listener to addpublic LifecycleListener[] findLifecycleListeners()
findLifecycleListeners
in interface Lifecycle
public void removeLifecycleListener(LifecycleListener listener)
removeLifecycleListener
in interface Lifecycle
listener
- The listener to removepublic void start() throws LifecycleException
configure()
,
and before any of the public methods of the component are utilized.
start
in interface Lifecycle
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedpublic void stop() throws LifecycleException
stop
in interface Lifecycle
LifecycleException
- if this component detects a fatal error
that needs to be reportedpublic void propertyChange(java.beans.PropertyChangeEvent event)
propertyChange
in interface java.beans.PropertyChangeListener
event
- The property change event that has occurredprotected void processMaxIdleSwaps()
protected void processMaxActiveSwaps()
protected void processMaxIdleBackups()
|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |