Java ReentrantReadWriteLocks - how to safely acquire write lock? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:17:36Zhttp://stackoverflow.com/feeds/question/464784http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock6Java ReentrantReadWriteLocks - how to safely acquire write lock?Andrzej Doyle2009-01-21T10:42:18Z2009-01-22T11:03:50Z
<p>I am using in my code at the moment a <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/locks/ReentrantReadWriteLock.html" rel="nofollow">ReentrantReadWriteLock</a> to synchronize access over a tree-like structure. This structure is large, and read by many threads at once with occasional modifications to small parts of it - so it seems to fit the read-write idiom well. I understand that with this particular class, one cannot elevate a read lock to a write lock, so as per the Javadocs one must release the read lock before obtaining the write lock. I've used this pattern successfully in non-reentrant contexts before.</p>
<p>What I'm finding however is that I cannot reliably acquire the write lock without blocking forever. Since the read lock is reentrant and I am actually using it as such, the simple code</p>
<pre><code>lock.getReadLock().unlock();
lock.getWriteLock().lock()</code></pre>
<p>can block if I have acquired the readlock reentrantly. Each call to unlock just reduces the hold count, and the lock is only actually released when the hold count hits zero. </p>
<p><strong>EDIT</strong> to clarify this, as I don't think I explained it too well initially - I am aware that there is no built-in lock escalation in this class, and that I have to simply release the read lock and obtain the write lock. My problem is/was that regardless of what other threads are doing, calling <code>getReadLock().unlock()</code> may not actually release <em>this</em> thread's hold on the lock if it acquired it reentrantly, in which case the call to <code>getWriteLock().lock()</code> will block forever as this thread still has a hold on the read lock and thus blocks itself.</p>
<p>For example, this code snippet will never reach the println statement, even when run singlethreaded with no other threads accessing the lock:</p>
<pre><code>final ReadWriteLock lock = new ReentrantReadWriteLock();
lock.getReadLock().lock();
// In real code we would go call other methods that end up calling back and
// thus locking again
lock.getReadLock().lock();
// Now we do some stuff and realise we need to write so try to escalate the
// lock as per the Javadocs and the above description
lock.getReadLock().unlock(); // Does not actually release the lock
lock.getWriteLock().lock(); // Blocks as some thread (this one!) holds read lock
System.out.println("Will never get here");
</code></pre>
<p>So I ask, is there a nice idiom to handle this situation? Specifically, when a thread that holds a read lock (possibly reentrantly) discovers that it needs to do some writing, and thus wants to "suspend" its own read lock in order to pick up the write lock (blocking as required on other threads to release their holds on the read lock), and then "pick up" its hold on the read lock in the same state afterwards?</p>
<p>Since this ReadWriteLock implementation was specifically designed to be reentrant, surely there is some sensible way to elevate a read lock to a write lock when the locks may be acquired reentrantly? This is the critical part that means the naive approach does not work.</p>
http://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock/464824#4648241Answer by Andrzej Doyle for Java ReentrantReadWriteLocks - how to safely acquire write lock?Andrzej Doyle2009-01-21T10:58:19Z2009-01-21T11:53:36Z<p>I have made a little progress on this. By declaring the lock variable explicitly as a ReentrantReadWriteLock instead of simply a ReadWriteLock (less than ideal, but probably a necessary evil in this case) I can call the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/locks/ReentrantReadWriteLock.html#getReadHoldCount()" rel="nofollow">getReadHoldCount()</a> method. This lets me obtain the number of holds for the current thread, and thus I can release the readlock this many times (and reacquire it the same number afterwards). So this works, as shown by a quick-and-dirty test:</p>
<pre><code>final int holdCount = lock.getReadHoldCount();
for (int i = 0; i < holdCount; i++)
{
lock.getReadLock().unlock;
}
lock.getWriteLock().lock()
try
{
// Perform modifications
}
finally
{
// Downgrade by reacquiring read lock before releasing write lock
for (int i = 0; i < holdCount; i++)
{
lock.getReadLock().lock();
}
lock.getWriteLock().unlock();
}</code></pre>
<p>Still, is this going to be the best I can do? It doesn't feel very elegant, and I'm still hoping that there's a way to handle this in a less "manual" fashion.</p>
http://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock/464829#464829-1Answer by Ran Biron for Java ReentrantReadWriteLocks - how to safely acquire write lock?Ran Biron2009-01-21T10:59:18Z2009-01-21T10:59:18Z<p>Use the "fair" flag on the ReentrantReadWriteLock. "fair" means that lock requests are served on first come, first served. You could experience performance depredation since when you'll issue a "write" request, all of the subsequent "read" requests will be locked, even if they could have been served while the pre-existing read locks are still locked.</p>
http://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock/464833#4648331Answer by roe for Java ReentrantReadWriteLocks - how to safely acquire write lock?roe2009-01-21T11:01:38Z2009-01-21T11:14:18Z<p>What you're looking for is a lock upgrade, and is not possible (at least not atomically) using the standard java.concurrent ReentrantReadWriteLock. Your best shot is unlock/lock, and then check that noone made modifications inbetween.</p>
<p>What you're attempting to do, forcing all read locks out of the way is not a very good idea. Read locks are there for a reason, that you shouldn't write. :)</p>
<p><b>EDIT:</b><br />
As Ran Biron pointed out, if your problem is starvation (read locks are being set and released all the time, never dropping to zero) you could try using fair queueing. But your question didn't sound like this was your problem?</p>
<p><b>EDIT 2:</b><br />
I now see your problem, you've actually acquired multiple read-locks on the stack, and you'd like to convert them to a write-lock (upgrade). This is in fact impossible with the JDK-implementation, as it doesn't keep track of the owners of the read-lock. There could be others holding read-locks that you wouldn't see, and it has no idea how many of the read-locks belong to your thread, not to mention your current call-stack (i.e. your loop is killing <em>all</em> read locks, not just your own, so your write lock won't wait for any concurrent readers to finish, and you'll end up with a mess on your hands)</p>
<p>I've actually had a similar problem, and I ended up writing my own lock keeping track of who's got what read-locks and upgrading these to write-locks. Although this was also a Copy-on-Write kind of read/write lock (allowing one writer along the readers), so it was a little different still.</p>
http://stackoverflow.com/questions/464784/java-reentrantreadwritelocks-how-to-safely-acquire-write-lock/465041#4650410Answer by Olivier for Java ReentrantReadWriteLocks - how to safely acquire write lock?Olivier2009-01-21T12:15:46Z2009-01-21T12:15:46Z<p>I suppose the <code>ReentrantLock</code> is motivated by a recursive traversal of the tree:</p>
<pre><code>public void doSomething(Node node) {
// Acquire reentrant lock
... // Do something, possibly acquire write lock
for (Node child : node.childs) {
doSomething(child);
}
// Release reentrant lock
}
</code></pre>
<p>Can't you refactor your code to move the lock handling outside of the recursion ?</p>
<pre><code>public void doSomething(Node node) {
// Acquire NON-reentrant read lock
recurseDoSomething(node);
// Release NON-reentrant read lock
}
private void recurseDoSomething(Node node) {
... // Do something, possibly acquire write lock
for (Node child : node.childs) {
recurseDoSomething(child);
}
}
</code></pre>