public boolean hasWaiters(Condition condition) { if (condition == null) throw new NullPointerException(); if (!(condition instanceof AbstractQueuedSynchronizer.ConditionObject)) throw new IllegalArgumentException("not owner"); return sync.hasWaiters((AbstractQueuedSynchronizer.ConditionObject)condition); }
getWaitQueueLength(Condition condition)
阻塞在condition的await()的方法上的线程数量
1 2 3 4 5 6 7
public int getWaitQueueLength(Condition condition) { if (condition == null) throw new NullPointerException(); if (!(condition instanceof AbstractQueuedSynchronizer.ConditionObject)) throw new IllegalArgumentException("not owner"); return sync.getWaitQueueLength((AbstractQueuedSynchronizer.ConditionObject)condition); }
getWaitingThreads(Condition condition)
阻塞在condition的await()的方法上的线程集合
1 2 3 4 5 6 7
protected Collection<Thread> getWaitingThreads(Condition condition) { if (condition == null) throw new NullPointerException(); if (!(condition instanceof AbstractQueuedSynchronizer.ConditionObject)) throw new IllegalArgumentException("not owner"); return sync.getWaitingThreads((AbstractQueuedSynchronizer.ConditionObject)condition); }
final boolean nonfairTryAcquire(int acquires) { final Thread current = Thread.currentThread();//当前线程 int c = getState();//获取加锁状态 if (c == 0) {//为0则代表还没有上锁 if (compareAndSetState(0, acquires)) {//执行CAS操作并且上锁 setExclusiveOwnerThread(current);//设置持有锁的线程 return true;//加锁成功 } } else if (current == getExclusiveOwnerThread()) {//执行到这里说明已经有某个线程获取到锁了,因为是可重入锁,判断持有锁的线程是否为当前线程 int nextc = c + acquires;//执行到这里说明是已经不是第一次上锁,并且当前线程是锁的持有线程,则可以直接进行累加(也就是重入) if (nextc < 0) // 额,超过int的最大值,出现溢出了(真的存在这种场景么= =??) throw new Error("Maximum lock count exceeded"); setState(nextc);//更新state return true; } return false;//获取失败 }
boolean tryRelease(int releases)
非阻塞方式尝试释放资源,具体看源码分析
1 2 3 4 5 6 7 8 9 10 11 12
protected final boolean tryRelease(int releases) { int c = getState() - releases;//待更新资源 if (Thread.currentThread() != getExclusiveOwnerThread())//判断是否为锁的持有现成 throw new IllegalMonitorStateException(); boolean free = false;//释放标识位置。为true则代表当前线程不再持有当前锁的任何资源 if (c == 0) {//如果释放资源后,资源数量为0,代表释放锁,其他线程可以尝试获取锁,如果不为0,则需要继续释放(因为是重入多次,需要释放多次) free = true; setExclusiveOwnerThread(null);//清空锁持有线程 } setState(c);//更新状态标志位 return free; }
boolean isHeldExclusively()
判断当前线程是否为锁持有线程
1 2 3
protected final boolean isHeldExclusively() { return getExclusiveOwnerThread() == Thread.currentThread(); }
ConditionObject newCondition()
创建条件变量对象,ConditionObject之后分析
1 2 3
final ConditionObject newCondition() { return new ConditionObject(); }
protected final boolean tryAcquire(int acquires) { final Thread current = Thread.currentThread(); int c = getState(); if (c == 0) { if (!hasQueuedPredecessors() && compareAndSetState(0, acquires)) { setExclusiveOwnerThread(current); return true; } } else if (current == getExclusiveOwnerThread()) { int nextc = c + acquires; if (nextc < 0) throw new Error("Maximum lock count exceeded"); setState(nextc); return true; } return false; }