1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
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 java.util.concurrent.ConcurrentHashMap;
/**
* Cache for stateful session beans.
*
* @author <a href="mailto:simone.bordet@compaq.com">Simone Bordet</a>
* @author <a href="mailto:sebastien.alborini@m4x.org">Sebastien Alborini</a>
* @version $Revision: 57209 $
*/
public class StatefulSessionInstanceCache extends AbstractInstanceCache
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
/* The container */
private StatefulSessionContainer m_container;
/** The map<id, Long> that holds passivated bean ids that have been removed
* from the cache and passivated to the pm along with the time of passivation
*/
private ConcurrentHashMap passivatedIDs = new ConcurrentHashMap();
/* Ids that are currently being activated */
private HashSet activating = new HashSet();
/* Used for logging */
private StringBuffer buffer = new StringBuffer();
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
// Public --------------------------------------------------------
/** Get the passivated count.
* @jmx:managed-attribute
* @return the number of passivated instances.
*/
public long getPassivatedCount()
{
return passivatedIDs.size();
}
/* From ContainerPlugin interface */
public void setContainer(Container c)
{
m_container = (StatefulSessionContainer) c;
}
public void destroy()
{
synchronized (this)
{
this.m_container = null;
}
passivatedIDs.clear();
super.destroy();
}
// Z implementation ----------------------------------------------
// Y overrides ---------------------------------------------------
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)
{
// This is a recursive invocation
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())
{
// The context is in the interceptor chain
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)
{
// SA FIXME: not sure what to do here
return false;
}
}
}
return true;
}
/** Remove all passivated instances that have been inactive too long.
* @param maxLifeAfterPassivation the upper bound in milliseconds that an
* inactive session will be kept.
*/
protected void removePassivated(long maxLifeAfterPassivation)
{
StatefulSessionPersistenceManager store = m_container.getPersistenceManager();
long now = System.currentTimeMillis();
log.debug("removePassivated, now="+now+", maxLifeAfterPassivation="+maxLifeAfterPassivation);
boolean trace = log.isTraceEnabled();
Iterator entries = passivatedIDs.entrySet().iterator();
while (entries.hasNext())
{
Map.Entry entry = (Map.Entry) entries.next();
Object key = entry.getKey();
Long value = (Long) entry.getValue();
if (value != null)
{
long passivationTime = value.longValue();
if (now - passivationTime > maxLifeAfterPassivation)
{
preRemovalPreparation(key);
store.removePassivated(key);
if (trace)
log(key, passivationTime);
// Must use iterator to avoid ConcurrentModificationException
entries.remove();
postRemovalCleanup(key);
}
}
}
}
// Protected -----------------------------------------------------
protected void preRemovalPreparation(Object key)
{
// no-op...extending classes may add prep
}
protected void postRemovalCleanup(Object key)
{
// no-op...extending classes may add cleanup
}
// Private -------------------------------------------------------
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());
}
}
// Inner classes -------------------------------------------------
}
|