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 getReadHoldCount() method. This lets me "magically" obtain the number of holds - so for the current thread, and thus I can use it for example in my second code block to initialise release the holdCount variable readlock this many times (and go from therereacquire it the same number afterwards). So this works, as shown by a quick-and-dirty test:
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();
}
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.
