privatestaticclassLockData { final Thread owningThread; //拥有锁的线程 final String lockPath; //锁的路径 final AtomicInteger lockCount = new AtomicInteger(1); //锁的数量
privatebooleaninternalLock(long time, TimeUnit unit)throws Exception { /* Note on concurrency: a given lockData instance can be only acted on by a single thread so locking isn't necessary */
try { //创建锁,并把锁的path返回来 ourPath = driver.createsTheLock(client, path, localLockNodeBytes); //节点创建完之后,循环等待获取锁,如果没有设置等待时间,就一直等待,如果设置了等待时间,在超时后会删除节点 hasTheLock = internalLockLoop(startMillis, millisToWait, ourPath); } catch ( KeeperException.NoNodeException e ) { // gets thrown by StandardLockInternalsDriver when it can't find the lock node // this can happen when the session expires, etc. So, if the retry allows, just try it all again //如果创建节点失败或者没有找到对应的节点,重试创建 if ( client.getZookeeperClient().getRetryPolicy().allowRetry(retryCount++, System.currentTimeMillis() - startMillis, RetryLoop.getDefaultRetrySleeper()) ) { isDone = false; } else { throw e; } } }
publicvoidrelease()throws Exception { /* Note on concurrency: a given lockData instance can be only acted on by a single thread so locking isn't necessary */
Thread currentThread = Thread.currentThread(); //获取当前线程 LockData lockData = threadData.get(currentThread); //从map中取到当前线程的锁 if ( lockData == null ) //如果没有锁,抛出异常 { thrownew IllegalMonitorStateException("You do not own the lock: " + basePath); } //进行原子减操作 int newLockCount = lockData.lockCount.decrementAndGet(); //如果大于0,返回 if ( newLockCount > 0 ) { return; } //如果减后小于0,说明已经多释放了一次,抛异常 if ( newLockCount < 0 ) { thrownew IllegalMonitorStateException("Lock count has gone negative for lock: " + basePath); } //如果为0,说明当前是最后一个锁了,准备释放锁 try { internals.releaseLock(lockData.lockPath); } //把节点删掉 finally { threadData.remove(currentThread); } }