Difference between revisions of "AllOrNothingLocks"

From CSE231 Wiki
Jump to navigation Jump to search
Line 84: Line 84:
  
 
{{Warning | If tryLockAll fails to acquire all of the locks, make sure to unlock any of the locks you did acquire.}}
 
{{Warning | If tryLockAll fails to acquire all of the locks, make sure to unlock any of the locks you did acquire.}}
 +
 +
{{Warning | If tryLockAll fails, when rolling back a ListIterator to unlock any locks you acquired, be sure to do an initial prev() to set the iterator in the correct location before looping through to unlock the rest.}}
  
 
some useful documentation:
 
some useful documentation:

Revision as of 17:56, 8 December 2017

Background

Check out the Lock_Ordering#Background studio.

In Java, locks are a synchronization tool that exists to ensure whatever is protected by the lock is only accessed one thread at a time, as to avoid a possible data race. In this studio we will explore the second type of locks: explicitly created Lock objects from the java.util.concurrent.locks package.

Every object has an intrinsic lock associated with the object, but Lock objects are explicitly defined and instantiated locks which can be called to lock or unlock. Lock objects are acted upon just like any other object, but we are mostly interested in the lock() method, the tryLock() method, and the unlock() method. For this studio, we will specifically use the ReentrantLock object, a class which implements the general Lock interface.

To demonstrate how to avoid both data races and deadlock issues, we will create a method designed to transfer money between two bank accounts. Two parties should be able to asynchronously and continuously transfer money between each other without a data race (courtesy of locks) or deadlock (something you will address).

For this approach, we will make use of the tryLock() method in order to attempt to acquire an object’s lock. If the object’s lock is not available at the time, we will continue to try to acquire the lock until it finally succeeds, after which we can successfully transfer funds from one bank account to another. In this approach, an asynchronous pair of transfers from A to B and B to A will not lead to deadlock as the two processes will give up on acquiring the lock until it becomes available, at which point it will finally acquire the lock. This approach does not make use of ordering, but simply relies on making lock attempts give up if the desired lock is not immediately available (and then try again later).

References

Refer to Oracle's official documentation for more information:

Where to Start

Navigate to the src/main/java directory to get started.

The locking.core package we used previously in the in Lock_Ordering studio is composed of utility and building block classes we created for you. Review these classes to get a better understanding of how to use them for the first part of this studio.

The classes you will need to modify can be found under the locking.allornothing.studio package.

Try Locking

As mentioned in the background section, this implementation will avoid deadlock by giving up on acquiring a lock if it is not immediately available before coming back to it later (when it might actually be available). This implementation will need to make use of the ReentrantLocks associated with the sender and recipient bank account objects. More specifically, it will have to make use of the tryLock() method. For an example of how to format a tryLock, look below:

Lock lock = ...
if (lock.tryLock()) {
	try {
		doSomething();
	} finally {
		lock.unlock();
	}
}

BankAccountTryLocking

Open BankAccountTryLocking.java.

A couple of notes and common issues:

  • tryLock() will immediately give up and return false if the lock is not available when it is called. Thus, you will need to construct a loop that will continuously run until the desired lock is available. You can exit out of this loop in two ways: with the break keyword or by returning a valid value for the method.
  • tryLock() will grab the lock if it can. There's no need to call lock() after tryLock().
  • We recommend you call the AccountUtils.checkBalanceAndTransfer(sender, receiver, amount) method for the sake of simplicity. This method will check that the sender and recipient are not the same people and that the sender has enough money in her account to send the specified amount to the recipient.
  • Anytime you lock a lock object, you should/must use a try/finally block to unlock the lock.
  • Your implementation will have to make use of a nested try/finally block (one try/finally call within another).

Useful documentation:

LockUtils runWithAllLocksOrDontRunAtAll

Open LockUtils.java.

For this part of the studio you will need to implement:

public static boolean tryLockAll(List<ReentrantLock> locks)

and

public static void unlockAllHeldLocks(List<ReentrantLock> locks)

so that the useful utility (shouldn't they all be useful?)

public static boolean runWithAllLocksOrDontRunAtAll(List<ReentrantLock> locks, Runnable body) {
	boolean hasAllLocks = tryLockAll(locks);
	if (hasAllLocks) {
		try {
			body.run();
		} finally {
			unlockAllHeldLocks(locks);
		}
	}
	return hasAllLocks;
}

produces correct thread safe behavior.

Note: in tryLockAll, you will need to call tryLock on all of the given locks. However, if one fails, you will need to unlock everything you have currently locked. A lock cannot be unlocked from a thread that doesn't hold the lock. Consider using the ListIterator interface.

Attention niels epting.svg Warning: If tryLockAll fails to acquire all of the locks, make sure to unlock any of the locks you did acquire.
Attention niels epting.svg Warning: If tryLockAll fails, when rolling back a ListIterator to unlock any locks you acquired, be sure to do an initial prev() to set the iterator in the correct location before looping through to unlock the rest.

some useful documentation: