vote up 0 vote down star
1

I'm writing something to handle concurrent read/write requests to a database file.

ReentrantReadWriteLock looks like a good match. If all threads access a shared RandomAccessFile object, do I need to worry about the file pointer with concurrent readers? Consider this example:

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.concurrent.locks.ReentrantReadWriteLock;

public class Database {

	private static final int RECORD_SIZE = 50;
	private static Database instance = null;

	private ReentrantReadWriteLock lock;
	private RandomAccessFile database;

	private Database() {
		lock = new ReentrantReadWriteLock();

		try {
			database = new RandomAccessFile("foo.db", "rwd");
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}
	};

	public static synchronized Database getInstance() {
		if(instance == null) {
			instance = new Database();
		}
		return instance;
	}

	public byte[] getRecord(int n) {
		byte[] data = new byte[RECORD_SIZE];
		try {
			// Begin critical section
			lock.readLock().lock();
			database.seek(RECORD_SIZE*n);
			database.readFully(data);
			lock.readLock().unlock();
			// End critical section
		} catch (IOException e) {
			e.printStackTrace();
		}
		return data;
	}

}

In the getRecord() method, is the following interleaving possible with multiple concurrent readers?

Thread 1 -> getRecord(0)
Thread 2 -> getRecord(1)
Thread 1 -> acquires shared lock
Thread 2 -> acquires shared lock
Thread 1 -> seeks to record 0
Thread 2 -> seeks to record 1
Thread 1 -> reads record at file pointer (1)
Thread 2 -> reads record at file pointer (1)

If there are indeed potential concurrency issues using ReentrantReadWriteLock and RandomAccessFile, what would an alternative be?

flag

3 Answers

vote up 1 vote down check

Yes, this code isn't synchronized properly, just as you outline. A read-write lock isn't useful if the write lock is never acquired; it's as if there is no lock.

Use a traditional synchronized block to make the seek and read appear atomic to other threads, or create a pool of RandomAccessFile instances that are borrowed for the exclusive use of a single thread and then returned. (Or simply dedicate a channel to each thread, if you don't have too many threads.)

link|flag
Is a read-write lock any use at all then with a RandomAccessFile? It seems that if I were to go with the traditional synchronized block, reads and writes would be treated the same and would therefore not exploit the fact that reads can be carried out in parallel. – Ed Mazur Oct 19 at 6:58
If you are actually doing some writes in the application somewhere, yes, a read-write lock could be useful. For example, if you have a pool of RandomAccessFiles to support concurrent reads, you'd need a way to exclude all of them, simultaneously, from reading while a single thread performed its write. That would be a great application of read-write locks. – sylvarking Oct 19 at 13:41
vote up 0 vote down

Rather operate on the single lock object rather than the method, ReentrantReadWriteLock can support upto a maximum of 65535 recursive write locks and 65535 read locks.

Assign a read and write lock

private final Lock r = rwl.readLock(); private final Lock w = rwl.writeLock();

Then work on them...

Also: you are not catering for an exception and failure to unlock subsequent to locking. Call the lock as you enter the method (like a mutex locker) then do your work in a try/catch block with the unlock in the finally section, eg:

public String[] allKeys() { r.lock(); try { return m.keySet().toArray(); } finally { r.unlock(); } }

link|flag
vote up 0 vote down

You may want to consider using File System locks instead of managing your own locking.

Call getChannel().lock() on your RandomAccessFile to lock the file via the FileChannel class. This prevents write access, even from processes outside your control.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.