本文主要研究一下BitCaskKeyDirjava
bitcask-java/src/main/java/com/trifork/bitcask/BitCaskKeyDir.javathis
public class BitCaskKeyDir { Map<ByteString, BitCaskEntry> map = new HashMap<ByteString, BitCaskEntry>(); ReadWriteLock rwl = new ReentrantReadWriteLock(); private boolean is_ready; public boolean put(ByteString key, BitCaskEntry ent) { Lock writeLock = rwl.writeLock(); writeLock.lock(); try { BitCaskEntry old = map.get(key); if (old == null) { map.put(key, ent); return true; } else if (ent.is_newer_than(old)) { map.put(key, ent); return true; } else { return false; } } finally { writeLock.unlock(); } } public BitCaskEntry get(ByteString key) { Lock readLock = rwl.readLock(); readLock.lock(); try { return map.get(key); } finally { readLock.unlock(); } } //...... }
bitcask-java/src/main/java/com/trifork/bitcask/BitCaskKeyDir.javacode
public class BitCaskKeyDir { public static Map<File,BitCaskKeyDir> key_dirs = new HashMap<File, BitCaskKeyDir>(); public static Lock keydir_lock = new ReentrantLock(); public static BitCaskKeyDir keydir_new(File dirname, int openTimeoutSecs) throws IOException { File abs_name = dirname.getAbsoluteFile(); BitCaskKeyDir dir; keydir_lock.lock(); try { dir = key_dirs.get(abs_name); if (dir == null) { dir = new BitCaskKeyDir(); key_dirs.put(abs_name, dir); return dir; } } finally { keydir_lock.unlock(); } if (dir.wait_for_ready(openTimeoutSecs)) { return dir; } else { throw new IOException("timeout while waiting for keydir"); } } public synchronized boolean is_ready() { return is_ready; } public synchronized void mark_ready() { is_ready = true; this.notifyAll(); } public synchronized boolean wait_for_ready(int timeout_secs) { long now = System.currentTimeMillis(); long abs_timeout = now + (timeout_secs * 1000); while (!is_ready && now < abs_timeout) { try { wait(); } catch (InterruptedException e) { // ignore } now = System.currentTimeMillis(); } return is_ready; } }
BitCaskKeyDir提供了map來存放BitCaskEntry;其put方法使用writeLock.lock(),對於old值爲null的或者新值大於old值的才put進去,不然返回false,最後writeLock.unlock();其get方法使用readLock.lock()從map讀取指定key的值,最後readLock.unlock()get