org.directwebremoting.impl
Class DefaultScriptSession

java.lang.Object
  extended by org.directwebremoting.impl.DefaultScriptSession
All Implemented Interfaces:
RealScriptSession, ScriptSession

public class DefaultScriptSession
extends java.lang.Object
implements RealScriptSession

An implementation of ScriptSession and RealScriptSession.

You should note that DefaultScriptSession and DefaultScriptSessionManager make calls to each other and you should take care not to break any constraints in inheriting from these classes.

Author:
Joe Walker [joe at getahead dot ltd dot uk]

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.directwebremoting.extend.RealScriptSession
RealScriptSession.Scripts
 
Method Summary
 void addScript(ScriptBuffer script)
          Add a script to the list waiting for remote execution.
 void clearSleeper(Sleeper sleeper)
          Remove Sleeper.
 void confirmScripts(long confirmedScriptIndex)
          Confirms that the client has received all scripts up to and including the supplied index so that script data may be purged.
 boolean equals(java.lang.Object obj)
           
 java.lang.Object getAttribute(java.lang.String name)
          Returns the object bound with the specified name in this session, or null if no object is bound under the name.
 java.util.Iterator<java.lang.String> getAttributeNames()
          Returns an Enumeration of String objects containing the names of all the objects bound to this session.
 long getCreationTime()
          Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.
 java.lang.String getId()
          Returns a string containing the unique identifier assigned to this session.
 long getLastAccessedTime()
          Returns the last time the client sent a request associated with this session, as the number of milliseconds since 1/1/1970 GMT, and marked by the time the container received the request.
 java.lang.String getPage()
          What page is this script session attached to? The page does not include server information, but does include everything from the host/port onwards, including the query parameters depending on the configured PageNormalizer, which by default removes them.
 RealScriptSession.Scripts getScripts(long fromScriptIndex)
          Get queued scripts starting from the supplied index.
 java.lang.String getWindowName()
          Accessor for the name attached to this window
 int hashCode()
           
 void invalidate()
          Invalidates this session then unbinds any objects bound to it.
 boolean isInvalidated()
          Checks to see if this ScriptSession has been invalidated.
 void removeAttribute(java.lang.String name)
          Removes the object bound with the specified name from this session.
 void setAttribute(java.lang.String name, java.lang.Object value)
          Binds an object to this session, using the name specified.
 void setConnectionValidationTimeout(int connectionValidationTimeout)
          Set the time to wait for client to poll when asking for connection validation.
 void setPage(java.lang.String page)
          Set a new page for the ScriptSession (in case of HTML pushState)
 void setSleeper(Sleeper sleeper)
          While a Marshaller is processing a request it can register a Sleeper with the ScriptSession to say - "tell me when there is new data"
 void setWindowName(java.lang.String windowName)
          If the global parameter avoid2ConnectionLimitWithWindowName == true then we need to keep a track of the names of the windows that connect to us
 java.lang.String toString()
           
 void updateLastAccessedTime()
          Called whenever a browser accesses this ScriptSession to ensure that the session does not timeout before it should.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

getAttribute

public java.lang.Object getAttribute(java.lang.String name)
Description copied from interface: ScriptSession
Returns the object bound with the specified name in this session, or null if no object is bound under the name.

Specified by:
getAttribute in interface ScriptSession
Parameters:
name - a string specifying the name of the object
Returns:
the object with the specified name

setAttribute

public void setAttribute(java.lang.String name,
                         java.lang.Object value)
Description copied from interface: ScriptSession
Binds an object to this session, using the name specified. If an object of the same name is already bound to the session, the object is replaced.

After this method executes, and if the new object implements ScriptSessionBindingListener, the container calls ScriptSessionBindingListener.valueBound(org.directwebremoting.event.ScriptSessionBindingEvent).

If an object was already bound to this session of this name that implements ScriptSessionBindingListener, its ScriptSessionBindingListener.valueUnbound(org.directwebremoting.event.ScriptSessionBindingEvent) method is called.

If the value passed in is null, this has the same effect as calling ScriptSession.removeAttribute(java.lang.String).

Specified by:
setAttribute in interface ScriptSession
Parameters:
name - the name to which the object is bound; cannot be null
value - the object to be bound

removeAttribute

public void removeAttribute(java.lang.String name)
Description copied from interface: ScriptSession
Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.

After this method executes, and if the object implements ScriptSessionBindingListener, the container calls ScriptSessionBindingListener.valueUnbound(org.directwebremoting.event.ScriptSessionBindingEvent).

Specified by:
removeAttribute in interface ScriptSession
Parameters:
name - the name of the object to remove from this session

getAttributeNames

public java.util.Iterator<java.lang.String> getAttributeNames()
Description copied from interface: ScriptSession
Returns an Enumeration of String objects containing the names of all the objects bound to this session.

Specified by:
getAttributeNames in interface ScriptSession
Returns:
an Iterator of Strings, specifying the names of all the objects bound to this session

invalidate

public void invalidate()
Description copied from interface: ScriptSession
Invalidates this session then unbinds any objects bound to it.

Specified by:
invalidate in interface ScriptSession

isInvalidated

public boolean isInvalidated()
Description copied from interface: ScriptSession
Checks to see if this ScriptSession has been invalidated.

There is no similar method on HttpSession because it is assumed that you do not store HttpSessions from one request to another, so all sessions that you have access to will always be either valid, or you have just invalidated it yourself so you wont need to ask. This method makes up for the change that now ScriptSessions are accessible from outside the normal scope.

Specified by:
isInvalidated in interface ScriptSession
Returns:
true if the ScriptSession has been invalidated

getId

public java.lang.String getId()
Description copied from interface: ScriptSession
Returns a string containing the unique identifier assigned to this session. The identifier is assigned by the servlet container and is implementation dependent.

Specified by:
getId in interface ScriptSession
Returns:
a string specifying the identifier assigned to this session

getCreationTime

public long getCreationTime()
Description copied from interface: ScriptSession
Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.

Specified by:
getCreationTime in interface ScriptSession
Returns:
when was this page created, in milliseconds since 1/1/1970 GMT

getLastAccessedTime

public long getLastAccessedTime()
Description copied from interface: ScriptSession
Returns the last time the client sent a request associated with this session, as the number of milliseconds since 1/1/1970 GMT, and marked by the time the container received the request.

Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.

Specified by:
getLastAccessedTime in interface ScriptSession
Returns:
when was this page last accessed, in milliseconds since 1/1/1970 GMT

addScript

public void addScript(ScriptBuffer script)
Description copied from interface: ScriptSession
Add a script to the list waiting for remote execution. The version automatically wraps the string in a ClientScript object.

Specified by:
addScript in interface ScriptSession
Parameters:
script - The script to execute

setSleeper

public void setSleeper(Sleeper sleeper)
Description copied from interface: RealScriptSession
While a Marshaller is processing a request it can register a Sleeper with the ScriptSession to say - "tell me when there is new data"

Specified by:
setSleeper in interface RealScriptSession

clearSleeper

public void clearSleeper(Sleeper sleeper)
Description copied from interface: RealScriptSession
Remove Sleeper.

Specified by:
clearSleeper in interface RealScriptSession

getScripts

public RealScriptSession.Scripts getScripts(long fromScriptIndex)
Description copied from interface: RealScriptSession
Get queued scripts starting from the supplied index.

Specified by:
getScripts in interface RealScriptSession
Parameters:
fromScriptIndex - start index
Returns:
a Script instance containing the scripts

confirmScripts

public void confirmScripts(long confirmedScriptIndex)
Description copied from interface: RealScriptSession
Confirms that the client has received all scripts up to and including the supplied index so that script data may be purged.

Specified by:
confirmScripts in interface RealScriptSession
Parameters:
confirmedScriptIndex - last index that can be purged

setPage

public void setPage(java.lang.String page)
Description copied from interface: RealScriptSession
Set a new page for the ScriptSession (in case of HTML pushState)

Specified by:
setPage in interface RealScriptSession

getPage

public java.lang.String getPage()
Description copied from interface: ScriptSession
What page is this script session attached to? The page does not include server information, but does include everything from the host/port onwards, including the query parameters depending on the configured PageNormalizer, which by default removes them.

Specified by:
getPage in interface ScriptSession
Returns:
The page that this script session is viewing

setWindowName

public void setWindowName(java.lang.String windowName)
Description copied from interface: RealScriptSession
If the global parameter avoid2ConnectionLimitWithWindowName == true then we need to keep a track of the names of the windows that connect to us

Specified by:
setWindowName in interface RealScriptSession
Parameters:
windowName - The new name for the window that spawned this Session

getWindowName

public java.lang.String getWindowName()
Description copied from interface: RealScriptSession
Accessor for the name attached to this window

Specified by:
getWindowName in interface RealScriptSession

updateLastAccessedTime

public void updateLastAccessedTime()
Description copied from interface: RealScriptSession
Called whenever a browser accesses this ScriptSession to ensure that the session does not timeout before it should.

Specified by:
updateLastAccessedTime in interface RealScriptSession

setConnectionValidationTimeout

public void setConnectionValidationTimeout(int connectionValidationTimeout)
Set the time to wait for client to poll when asking for connection validation.

Parameters:
connectionValidationTimeout -

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

Copyright ยจ 2008