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.

There are synchronization constraints on this class. See the field comments of the type: GuardedBy("lock").

In addition 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]

Field Summary
protected  java.util.Map attributes
          The server side attributes for this page.
protected  java.util.SortedSet conduits
          The script conduits that we can use to transfer data to the browser.
protected  long creationTime
          When we we created?
protected  java.lang.String id
          What is our page session id?
protected  boolean invalidated
          Have we been made invalid?
protected  long lastAccessedTime
          When the the web page that we represent last contact us using DWR?
protected  DefaultScriptSessionManager manager
          The session manager that collects sessions together
protected  java.util.List scripts
          The list of waiting scripts.
 
Constructor Summary
protected DefaultScriptSession(java.lang.String id, DefaultScriptSessionManager manager)
          Simple constructor
 
Method Summary
 void addScript(ScriptBuffer script)
          Add a script to the list waiting for remote execution.
 void addScriptConduit(ScriptConduit conduit)
          While a Marshaller is processing a request it can register a ScriptConduit with the ScriptSession to say - "pass scripts to me"
protected  void checkNotInvalidated()
          Check that we are still valid and throw an IllegalStateException if not.
 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 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.
 int hashCode()
           
 boolean hasWaitingScripts()
          Allows for checking to see if there is data waiting to be returned
 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 removeScriptConduit(ScriptConduit conduit)
          Remove a ScriptConduit.
 void setAttribute(java.lang.String name, java.lang.Object value)
          Binds an object to this session, using the name specified.
 java.lang.String toString()
           
protected  void updateLastAccessedTime()
          Called whenever a browser accesses this data using DWR
 void writeScripts(ScriptConduit conduit)
          We might need to send a script directly to a conduit without adding the conduit to the "open" list and then removing it directly.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

attributes

protected final java.util.Map attributes
The server side attributes for this page.

GuardedBy("attributes")


lastAccessedTime

protected volatile long lastAccessedTime
When the the web page that we represent last contact us using DWR?

GuardedBy("invalidLock")


invalidated

protected volatile boolean invalidated
Have we been made invalid?

GuardedBy("invalidLock")


conduits

protected final java.util.SortedSet conduits
The script conduits that we can use to transfer data to the browser.

GuardedBy("scriptLock")


scripts

protected final java.util.List scripts
The list of waiting scripts.

GuardedBy("scriptLock")


id

protected final java.lang.String id
What is our page session id?

This should not need careful synchronization since it is unchanging


creationTime

protected final long creationTime
When we we created?

This should not need careful synchronization since it is unchanging


manager

protected final DefaultScriptSessionManager manager
The session manager that collects sessions together

This should not need careful synchronization since it is unchanging

Constructor Detail

DefaultScriptSession

protected DefaultScriptSession(java.lang.String id,
                               DefaultScriptSessionManager manager)
Simple constructor

Parameters:
id - The new unique identifier for this session
manager - The manager that created us
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.

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.

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

getAttributeNames

public java.util.Iterator 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

addScriptConduit

public void addScriptConduit(ScriptConduit conduit)
                      throws java.io.IOException
Description copied from interface: RealScriptSession
While a Marshaller is processing a request it can register a ScriptConduit with the ScriptSession to say - "pass scripts to me"

Several Marshallers may be active on the same page as a time and it doesn't really matter which gets the script. So ScriptSession should record all of the active ScriptConduits, but just pick one

Specified by:
addScriptConduit in interface RealScriptSession
Parameters:
conduit - The new ScriptConduit
Throws:
java.io.IOException - If the write to the output fails
See Also:
RealScriptSession.removeScriptConduit(ScriptConduit)

writeScripts

public void writeScripts(ScriptConduit conduit)
                  throws java.io.IOException
Description copied from interface: RealScriptSession
We might need to send a script directly to a conduit without adding the conduit to the "open" list and then removing it directly.

Specified by:
writeScripts in interface RealScriptSession
Parameters:
conduit - The conduit to write to
Throws:
java.io.IOException - If writing fails

removeScriptConduit

public void removeScriptConduit(ScriptConduit conduit)
Description copied from interface: RealScriptSession
Remove a ScriptConduit.

Specified by:
removeScriptConduit in interface RealScriptSession
Parameters:
conduit - The ScriptConduit to remove
See Also:
RealScriptSession.addScriptConduit(ScriptConduit)

hasWaitingScripts

public boolean hasWaitingScripts()
Description copied from interface: RealScriptSession
Allows for checking to see if there is data waiting to be returned

Specified by:
hasWaitingScripts in interface RealScriptSession
Returns:
true if there are no waiting scripts

updateLastAccessedTime

protected void updateLastAccessedTime()
Called whenever a browser accesses this data using DWR


checkNotInvalidated

protected void checkNotInvalidated()
Check that we are still valid and throw an IllegalStateException if not. At the same time set the lastAccessedTime flag.

Throws:
java.lang.IllegalStateException - If this object has become invalid

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