| StatefulHASessionInstanceCache.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.ejb.plugins;
import java.rmi.NoSuchObjectException;
import java.rmi.RemoteException;
import org.jboss.ejb.EnterpriseContext;
/**
* SFSB cache for clustered environment. Mainly avoid "excessive" locking
* that can generate cluster-distributed deadlocks.
*
* @see org.jboss.ejb.plugins.StatefulSessionInstanceCache
*
* @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>.
* @version $Revision: 1.5.6.1 $
*
* <p><b>Revisions:</b>
*
* <p><b>19 decembre 2002 Sacha Labourey:</b>
* <ul>
* <li> First implementation </li>
* </ul>
*/
public class StatefulHASessionInstanceCache
extends StatefulSessionInstanceCache
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
// Public --------------------------------------------------------
/**
* Remove an object from the local cache *without* any locking
* (synchronized, etc.) to avoid huge cluster-wide deadlock situations
* We have to unschedule passivation as well as the bean may be
* used on another node.
*/
public void invalidateLocally (Object id)
{
if (id == null) return;
try
{
getCache().remove(id);
}
catch (Exception e)
{
log.debug (e);
}
}
// Z implementation ----------------------------------------------
// AbstractInstanceCache overrides -------------------------------
/*
* Make less extensive use of global locking when state must be activated: it
* will most probably generate time-costly cluster-wide communication =>
* we must avoid globally locking the whole cache! Furthermore, The
* StatefulSessionInstanceInterceptor *already* locks concurrent access to the
* cache that targets the *same* SFSB identity
*/
public EnterpriseContext get(Object id)
throws RemoteException, NoSuchObjectException
{
if (id == null) throw new IllegalArgumentException("Can't get an object with a null key");
EnterpriseContext ctx = null;
synchronized (getCacheLock())
{
ctx = (EnterpriseContext)getCache().get(id);
if (ctx != null)
{
return ctx;
}
}
// If the ctx is still null at this point, it means that we must activate it
// => we don't lock the cache during this operation
// StatefulSessionInstanceInterceptor prevents multiple accesses for the same id
//
try
{
ctx = acquireContext();
setKey(id, ctx);
activate(ctx);
logActivation(id);
insert(ctx);
}
catch (Exception x)
{
if (ctx != null)
freeContext(ctx);
log.debug("Activation failure, id="+id, x);
throw new NoSuchObjectException(x.getMessage());
}
// FIXME marcf: How can this ever be reached? the ctx is always assigned
if (ctx == null) throw new NoSuchObjectException("Can't find bean with id = " + id);
return ctx;
}
// Package protected ---------------------------------------------
// Protected -----------------------------------------------------
// Private -------------------------------------------------------
// Inner classes -------------------------------------------------
}
| StatefulHASessionInstanceCache.java |