blob: 6ec301f86522c17ce1db626b0febc531fb96c870 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ki.session.mgt;
import java.io.Serializable;
import java.net.InetAddress;
import java.util.Collection;
import java.util.Date;
import java.util.Collections;
import org.apache.ki.session.InvalidSessionException;
import org.apache.ki.session.ReplacedSessionException;
import org.apache.ki.session.Session;
/**
* A DelegatingSession is a client-tier representation of a server side
* {@link org.apache.ki.session.Session Session}.
* This implementation is basically a proxy to a server-side {@link SessionManager SessionManager},
* which will return the proper results for each method call.
* <p/>
* <p>A <tt>DelegatingSession</tt> will cache data when appropriate to avoid a remote method invocation,
* only communicating with the server when necessary.
* <p/>
* <p>Of course, if used in-process with a SessionManager business POJO, as might be the case in a
* web-based application where the web classes and server-side business pojos exist in the same
* JVM, a remote method call will not be incurred.
*
* @author Les Hazlewood
* @author Jeremy Haile
* @since 0.1
*/
public class DelegatingSession implements Session {
//TODO - complete JavaDoc
private Serializable id = null;
//cached fields to avoid a server-side method call if out-of-process:
private Date startTimestamp = null;
private InetAddress hostAddress = null;
/** Handle to a server-side SessionManager. See {@link #setSessionManager} for details. */
private SessionManager sessionManager = null;
public DelegatingSession() {
}
public DelegatingSession(SessionManager sessionManager, Serializable id) {
this.sessionManager = sessionManager;
this.id = id;
}
/**
* Returns the {@link SessionManager SessionManager} used by this handle to invoke
* all session-related methods.
*
* @return the {@link SessionManager SessionManager} used by this handle to invoke
* all session-related methods.
*/
public SessionManager getSessionManager() {
return sessionManager;
}
/**
* Sets the {@link SessionManager SessionManager} to which this <tt>DelegatingSession</tt> will
* delegate its method calls. In a rich client environment, this <tt>SessionManager</tt> will
* probably be a remoting proxy which executes remote method invocations. In a single-process
* environment (e.g. a web application deployed in the same JVM of the application server),
* the <tt>SessionManager</tt> can be the actual business POJO implementation.
* <p/>
* <p>You'll notice the {@link Session Session} interface and the {@link SessionManager}
* interface are nearly identical. This is to ensure the SessionManager can support
* most method calls in the Session interface, via this handle/proxy technique. The session
* manager is implementated as a stateless business POJO, with the handle passing the
* session id as necessary.
*
* @param sessionManager the <tt>SessionManager</tt> this handle will use when delegating
* method calls.
*/
public void setSessionManager(SessionManager sessionManager) {
this.sessionManager = sessionManager;
}
/**
* Sets the sessionId used by this handle for all future {@link SessionManager SessionManager}
* method invocations.
*
* @param id the <tt>sessionId</tt> to use for all <tt>SessionManager</tt> invocations.
* @see #setSessionManager(SessionManager sessionManager)
*/
public void setId(Serializable id) {
this.id = id;
}
/** @see org.apache.ki.session.Session#getId() */
public Serializable getId() {
return id;
}
/** @see org.apache.ki.session.Session#getStartTimestamp() */
public Date getStartTimestamp() {
if (startTimestamp == null) {
try {
startTimestamp = sessionManager.getStartTimestamp(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
startTimestamp = sessionManager.getStartTimestamp(id);
}
}
return startTimestamp;
}
/** @see org.apache.ki.session.Session#getLastAccessTime() */
public Date getLastAccessTime() {
//can't cache - only business pojo knows the accurate time:
try {
return sessionManager.getLastAccessTime(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
return sessionManager.getLastAccessTime(id);
}
}
public long getTimeout() throws InvalidSessionException {
try {
return sessionManager.getTimeout(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
return sessionManager.getTimeout(id);
}
}
public void setTimeout(long maxIdleTimeInMillis) throws InvalidSessionException {
try {
sessionManager.setTimeout(id, maxIdleTimeInMillis);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
sessionManager.setTimeout(id, maxIdleTimeInMillis);
}
}
/** @see org.apache.ki.session.Session#getHostAddress() */
public InetAddress getHostAddress() {
if (hostAddress == null) {
try {
hostAddress = sessionManager.getHostAddress(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
hostAddress = sessionManager.getHostAddress(id);
}
}
return hostAddress;
}
/** @see org.apache.ki.session.Session#touch() */
public void touch() throws InvalidSessionException {
try {
sessionManager.touch(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
// No need to 'hit' the session manager again - a newly created session is 'touched' at the time of creation
}
}
/** @see org.apache.ki.session.Session#stop() */
public void stop() throws InvalidSessionException {
try {
sessionManager.stop(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
//TODO - prevent sessionManager from creating new session when 'stop' is already requested.
sessionManager.stop(id);
}
}
/** @see org.apache.ki.session.Session#getAttributeKeys */
@SuppressWarnings({"unchecked"})
public Collection<Object> getAttributeKeys() throws InvalidSessionException {
try {
return sessionManager.getAttributeKeys(id);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
// No need to 'hit' the session manager again - a new session won't have any attributes:
return Collections.EMPTY_SET;
}
}
/** @see org.apache.ki.session.Session#getAttribute(Object key) */
public Object getAttribute(Object key) throws InvalidSessionException {
try {
return sessionManager.getAttribute(id, key);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
// No need to 'hit' the session manager again - a new session won't have any attributes
return null;
}
}
/** @see Session#setAttribute(Object key, Object value) */
public void setAttribute(Object key, Object value) throws InvalidSessionException {
if (value == null) {
removeAttribute(key);
} else {
try {
sessionManager.setAttribute(id, key, value);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
sessionManager.setAttribute(id, key, value);
}
}
}
/** @see Session#removeAttribute(Object key) */
public Object removeAttribute(Object key) throws InvalidSessionException {
try {
return sessionManager.removeAttribute(id, key);
} catch (ReplacedSessionException e) {
this.id = e.getNewSessionId();
// No need to 'hit' the session manager again - a new session won't have any attributes:
return null;
}
}
}