package org.infinispan.lock; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import org.infinispan.test.AbstractInfinispanTest; import org.infinispan.util.concurrent.locks.StripedLock; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; /** * Tester class for {@link org.infinispan.util.concurrent.locks.StripedLock}. * * @author Mircea.Markus@jboss.com */ @Test(groups = "unit", testName = "lock.StripedLockTest") public class StripedLockTest extends AbstractInfinispanTest { StripedLock stripedLock; public static final int CAN_ACQUIRE_WL = 1; public static final int CAN_ACQUIRE_RL = 2; public static final int ACQUIRE_WL = 3; public static final int ACQUIRE_RL = 4; /* this value will make sure that the index of the underlying shared lock is not 0*/ private static final String KEY = "21321321321321321"; @BeforeMethod public void cretateStripedLock() { stripedLock = new StripedLock(5); } public void testGlobalReadLockSimple() throws Exception { assert canAquireWL(); assert canAquireRL(); assert stripedLock.acquireGlobalLock(false, 0); assert stripedLock.getTotalReadLockCount() == stripedLock.getSharedLockCount(); assert !canAquireWL(); assert canAquireRL(); } public void testGlobalReadLockIsAtomic() throws Exception { assert aquireWL(); assert 1 == stripedLock.getTotalWriteLockCount(); assert !stripedLock.acquireGlobalLock(false, 0); assert stripedLock.getTotalReadLockCount() == 0 : "No read locks should be held if the operation failed"; } public void testGlobalReadLockOverExistingReadLocks() throws Exception { assert aquireRL(); assert aquireRL(); assert stripedLock.getTotalReadLockCount() == 2; assert stripedLock.acquireGlobalLock(false, 0); assert stripedLock.getTotalReadLockCount() == stripedLock.getSharedLockCount() + 2; } public void testAquireGlobalAndRelease() { assert stripedLock.acquireGlobalLock(false, 0); assert stripedLock.getTotalReadLockCount() == stripedLock.getSharedLockCount(); assert stripedLock.getTotalWriteLockCount() == 0; try { stripedLock.releaseGlobalLock(true); //this should not fail assert false : "this should fail as we do not have a monitor over the locks"; } catch (Exception e) { //expected } stripedLock.releaseGlobalLock(false); assert stripedLock.getTotalReadLockCount() == 0; assert stripedLock.getTotalWriteLockCount() == 0; assert stripedLock.acquireGlobalLock(true, 0); assert stripedLock.getTotalReadLockCount() == 0; assert stripedLock.getTotalWriteLockCount() == stripedLock.getSharedLockCount(); try { stripedLock.releaseGlobalLock(false); //this should not fail assert false : "this should fail as we do not have a monitor over the locks"; } catch (Exception e) { //expected } stripedLock.releaseGlobalLock(true); assert stripedLock.getTotalReadLockCount() == 0; assert stripedLock.getTotalWriteLockCount() == 0; } private boolean aquireWL() throws Exception { OtherThread otherThread = new OtherThread(); otherThread.start(); otherThread.operationQueue.put(ACQUIRE_WL); return otherThread.responseQueue.take(); } private boolean aquireRL() throws Exception { OtherThread otherThread = new OtherThread(); otherThread.start(); otherThread.operationQueue.put(ACQUIRE_RL); return otherThread.responseQueue.take(); } private boolean canAquireRL() throws Exception { OtherThread otherThread = new OtherThread(); otherThread.start(); otherThread.operationQueue.put(CAN_ACQUIRE_RL); return otherThread.responseQueue.take(); } private boolean canAquireWL() throws Exception { OtherThread otherThread = new OtherThread(); otherThread.start(); otherThread.operationQueue.put(CAN_ACQUIRE_WL); return otherThread.responseQueue.take(); } public class OtherThread extends Thread { volatile BlockingQueue<Integer> operationQueue = new ArrayBlockingQueue<Integer>(1); volatile BlockingQueue<Boolean> responseQueue = new ArrayBlockingQueue<Boolean>(1); public void run() { try { int operation = operationQueue.take(); Boolean response; switch (operation) { case CAN_ACQUIRE_RL: { response = stripedLock.acquireLock(KEY, false, 0); if (response) stripedLock.releaseLock(KEY); break; } case CAN_ACQUIRE_WL: { response = stripedLock.acquireLock(KEY, true, 0); if (response) stripedLock.releaseLock(KEY); break; } case ACQUIRE_RL: { response = stripedLock.acquireLock(KEY, false, 0); break; } case ACQUIRE_WL: { response = stripedLock.acquireLock(KEY, true, 0); break; } default: { throw new IllegalStateException("Unknown operation: " + operation); } } responseQueue.put(response); } catch (Throwable e) { log.error("Error performing lock operation", e); } } } }