| EntityLockInterceptor.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.ejb.plugins;
import org.jboss.ejb.BeanLock;
import org.jboss.invocation.Invocation;
/**
* The lock interceptors role is to schedule thread wanting to invoke method on a target bean
*
* <p>The policies for implementing scheduling (pessimistic locking etc) is implemented by pluggable
* locks
*
* <p>We also implement serialization of calls in here (this is a spec
* requirement). This is a fine grained notify, notifyAll mechanism. We
* notify on ctx serialization locks and notifyAll on global transactional
* locks.
*
* <p><b>WARNING: critical code</b>, get approval from senior developers
* before changing.
*
* @author <a href="mailto:marc.fleury@jboss.org">Marc Fleury</a>
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1.14 $
*
* <p><b>Revisions:</b><br>
* <p><b>2001/07/30: marcf</b>
* <ol>
* <li>Initial revision
* <li>Factorization of the lock out of the context in cache
* <li>The new locking is implement as "scheduling" in the lock which allows for pluggable locks
* </ol>
* <p><b>2001/08/07: billb</b>
* <ol>
* <li>Removed while loop and moved it to SimplePessimisticEJBLock where it belongs.
* </ol>
*/
public class EntityLockInterceptor
extends AbstractInterceptor
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
// Public --------------------------------------------------------
// Interceptor implementation --------------------------------------
public Object invokeHome(Invocation mi)
throws Exception
{
// Invoke through interceptors
return getNext().invokeHome(mi);
}
public Object invoke(Invocation mi)
throws Exception
{
// The key.
Object key = mi.getId();
// The lock.
BeanLock lock ;
boolean threadIsScheduled = false;
boolean trace = log.isTraceEnabled();
if( trace ) log.trace("Begin invoke, key="+key);
lock = container.getLockManager().getLock(key);
try
{
lock.schedule(mi);
try {
return getNext().invoke(mi);
}
finally
{
// we are done with the method, decrease the count, if it reaches 0 it will wake up
// the next thread
lock.sync();
lock.endInvocation(mi);
lock.releaseSync();
}
}
finally
{
// We are done with the lock in general
container.getLockManager().removeLockRef(key);
if( trace ) log.trace("End invoke, key="+key);
}
}
}
| EntityLockInterceptor.java |