package org.jboss.ejb.plugins;
import java.util.HashSet;
import java.util.Map;
import java.util.Iterator;
import java.rmi.RemoteException;
import javax.transaction.Status;
import javax.transaction.SystemException;
import org.jboss.ejb.Container;
import org.jboss.ejb.StatefulSessionContainer;
import org.jboss.ejb.EnterpriseContext;
import org.jboss.ejb.StatefulSessionEnterpriseContext;
import org.jboss.ejb.StatefulSessionPersistenceManager;
import EDU.oswego.cs.dl.util.concurrent.ConcurrentReaderHashMap;
public class StatefulSessionInstanceCache extends AbstractInstanceCache
{
private StatefulSessionContainer m_container;
private ConcurrentReaderHashMap passivatedIDs = new ConcurrentReaderHashMap();
private HashSet activating = new HashSet();
private StringBuffer buffer = new StringBuffer();
public long getPassivatedCount()
{
return passivatedIDs.size();
}
public void setContainer(Container c)
{
m_container = (StatefulSessionContainer) c;
}
public void destroy()
{
synchronized (this)
{
this.m_container = null;
}
passivatedIDs.clear();
super.destroy();
}
protected synchronized Container getContainer()
{
return m_container;
}
protected void passivate(EnterpriseContext ctx) throws RemoteException
{
m_container.getPersistenceManager().passivateSession((StatefulSessionEnterpriseContext) ctx);
passivatedIDs.put(ctx.getId(), new Long(System.currentTimeMillis()));
}
protected void activate(EnterpriseContext ctx) throws RemoteException
{
m_container.getPersistenceManager().activateSession((StatefulSessionEnterpriseContext) ctx);
passivatedIDs.remove(ctx.getId());
}
protected boolean doActivate(EnterpriseContext ctx) throws RemoteException
{
Object id = ctx.getId();
synchronized (activating)
{
if (activating.contains(id))
return false;
activating.add(id);
}
try
{
return super.doActivate(ctx);
}
finally
{
synchronized (activating)
{
activating.remove(id);
}
}
}
protected EnterpriseContext acquireContext() throws Exception
{
return m_container.getInstancePool().get();
}
protected void freeContext(EnterpriseContext ctx)
{
m_container.getInstancePool().free(ctx);
}
protected Object getKey(EnterpriseContext ctx)
{
return ctx.getId();
}
protected void setKey(Object id, EnterpriseContext ctx)
{
ctx.setId(id);
}
protected boolean canPassivate(EnterpriseContext ctx)
{
if (ctx.isLocked())
{
return false;
}
else if (m_container.getLockManager().canPassivate(ctx.getId()) == false)
{
return false;
}
else
{
if (ctx.getTransaction() != null)
{
try
{
return (ctx.getTransaction().getStatus() == Status.STATUS_NO_TRANSACTION);
}
catch (SystemException e)
{
return false;
}
}
}
return true;
}
protected void removePassivated(long maxLifeAfterPassivation)
{
StatefulSessionPersistenceManager store = m_container.getPersistenceManager();
long now = System.currentTimeMillis();
log.debug("removePassivated, now="+now+", maxLifeAfterPassivation="+maxLifeAfterPassivation);
Iterator entries = passivatedIDs.entrySet().iterator();
while (entries.hasNext())
{
Map.Entry entry = (Map.Entry) entries.next();
Object key = entry.getKey();
long passivationTime = ((Long) entry.getValue()).longValue();
if (now - passivationTime > maxLifeAfterPassivation)
{
preRemovalPreparation(key);
store.removePassivated(key);
if (log.isTraceEnabled())
log(key, passivationTime);
entries.remove();
postRemovalCleanup(key);
}
}
}
protected void preRemovalPreparation(Object key)
{
}
protected void postRemovalCleanup(Object key)
{
}
private void log(Object key, long passivationTime)
{
if (log.isTraceEnabled())
{
buffer.setLength(0);
buffer.append("Removing from storage bean '");
buffer.append(m_container.getBeanMetaData().getEjbName());
buffer.append("' with id = ");
buffer.append(key);
buffer.append(", passivationTime=");
buffer.append(passivationTime);
log.trace(buffer.toString());
}
}
}