Java并发编程之浅谈ReentrantLock
一、首先看图
二、lock()跟踪源码
这里对公平锁和非公平锁做了不同实现,由构造方法参数决定是否公平。
public reentrantlock(boolean fair) { sync = fair ? new fairsync() : new nonfairsync(); }
2.1 非公平锁实现
static final class nonfairsync extends sync { private static final long serialversionuid = 7316153563782823691l; final void lock() { if (compareandsetstate(0, 1)) setexclusiveownerthread(thread.currentthread()); else acquire(1); } protected final boolean tryacquire(int acquires) { return nonfairtryacquire(acquires); } }
代码量很少。首先compareandsetstate(0, 1)
通过cas(期望值0,新值1,内存值stateoffset)
- 如果修改成功,即抢占到锁,
setexclusiveownerthread(thread.currentthread());
将aqs中的变量exclusiveownerthread
设置为当前抢占到锁的线程,也就是图中的threada。 - 若没有抢占成功,证明此时锁被占用,执行方法
acquire(1);
。
public final void acquire(int arg) { if (!tryacquire(arg) && acquirequeued(addwaiter(node.exclusive), arg)) selfinterrupt(); }
这里主要看两个方法tryacquire(arg)
和acquirequeued(addwaiter(node.exclusive), arg)
。当满足if条件后,会给当前线程标记一个interrupt
状态。
2.1.1 tryacquire(arg)
这个方法又有多个实现。这里看nonfairsync
非公平锁。
protected final boolean tryacquire(int acquires) { return nonfairtryacquire(acquires); } final boolean nonfairtryacquire(int acquires) { final thread current = thread.currentthread(); int c = getstate(); if (c == 0) { if (compareandsetstate(0, acquires)) { setexclusiveownerthread(current); return true; } } else if (current == getexclusiveownerthread()) { int nextc = c + acquires; if (nextc < 0) // overflow throw new error("maximum lock count exceeded"); setstate(nextc); return true; } return false; }
在这个方法中,还不死心,首先会判断下aqs中的state是否为0,为0也就是说距离上次尝试获取锁到现在准备进入队列(双向链表)中这段时间内,锁已经被释放,可以重新cas尝试获取锁。
如果当前锁还是被持有状态,就是state!=0
,就会判断,当前线程是不是当前持有锁的线程exclusiveownerthread
,如果是,则state+1
,从这里可以看出state表示的是重入次数。
全部不满足,返回false。
2.1.2 acquirequeued(addwaiter(node.exclusive), arg)
addwaiter
private node addwaiter(node mode) { node node = new node(thread.currentthread(), mode); // try the fast path of enq; backup to full enq on failure node pred = tail; if (pred != null) { node.prev = pred; if (compareandsettail(pred, node)) { pred.next = node; return node; } } enq(node); return node; }
tryacquire(arg)返回false,证明当前线程还是没有获取到锁。那么就要进入队列等待了,首先addwaiter
方法,将当前线程封装成一个node,如果pred不为空,则将当前节点做链表的尾部插入,同时为了防止在此期间前序节点已经不在队列中了,也会运用cas操作来执行(期望值pred,新值node,内存值tailoffset)。
如果前序节点为空,或者在cas时发现前序节点已经不存在了,则重新构建链表,将当前节点封装的node,加入到链表当中。
private node enq(final node node) { for (;;) { node t = tail; if (t == null) { // must initialize if (compareandsethead(new node())) tail = head; } else { node.prev = t; if (compareandsettail(t, node)) { t.next = node; return t; } } } }
加入完成后,返回当前node节点,进入acquirequeued
方法。
acquirequeued
final boolean acquirequeued(final node node, int arg) { boolean failed = true; try { boolean interrupted = false; for (;;) { //获取到当前node节点的上一个节点 final node p = node.predecessor(); //如果当前的上个节点就是头节点,会再次尝试获取锁 if (p == head && tryacquire(arg)) { //获取成功,将当前节点置空,并成为新的头节点 sethead(node); //这个p已经没用了,防止内存泄漏,直接指向null,下次gc时回收 p.next = null; // help gc //不需要取消 failed = false; //return false,不需要中断当前线程 return interrupted; } if (shouldparkafterfailedacquire(p, node) && parkandcheckinterrupt()) interrupted = true; } } finally { if (failed) cancelacquire(node); } }
这里是一个自旋操作,首先拿到当前线程封装节点的上一个节点,如果满足第一个if条件if (p == head && tryacquire(arg))
,证明上个节点为头节点,则此时当前线程也会再次尝试获取锁,获取锁成功,证明此时没有别的线程在队列中了,则将当前node清空并设置为头节点,返回不需要中断当前线程。
在第二个if条件中if (shouldparkafterfailedacquire(p, node) && parkandcheckinterrupt())
。走到这里证明当前线程不是第一个线程节点,或者没有抢占到锁,shouldparkafterfailedacquire
这个方法见名知意,在抢占失败后是否需要park阻塞,里面主要是用于清理双向链表中被取消的节点线程和未被阻塞的节点线程。
private static boolean shouldparkafterfailedacquire(node pred, node node) { int ws = pred.waitstatus;//获取前置节点的等待状态 if (ws == node.signal) //前置节点的等待状态为-1,表示前置节点在队列中阻塞,那么当前节点也需要被阻塞在队列中 return true; if (ws > 0) { //前置节点等待状态大于0,此前置节点已经被取消,循环遍历清除所有已被取消的节点。 do { node.prev = pred = pred.prev; } while (pred.waitstatus > 0); pred.next = node; } else { //前置节点等待状态小于等于0,且不等于-1,也就是没有被阻塞也没有被取消 //则将前置节点设置为阻塞状态。 compareandsetwaitstatus(pred, ws, node.signal); } return false; }
- 前置节点的等待状态为-1,表示前置节点在队列中阻塞,那么当前节点也需要被阻塞在队列中
- 前置节点等待状态大于0,此前置节点已经被取消,循环遍历清除所有已被取消的节点。
- 前置节点等待状态小于等于0,且不等于-1,也就是没有被阻塞也没有被取消。则将前置节点设置为阻塞状态。
到这里,基于非公平锁的实现结束。
2.2 公平锁实现
公平锁和乐观锁的区别就在于,非公平锁acquire(1)
前会先尝试获取锁,公平锁直接acquire(1)
。
static final class fairsync extends sync { private static final long serialversionuid = -3000897897090466540l; final void lock() { acquire(1); } }
2.2.1 tryacquire(arg)
在tryacquire中也和非公平锁有一定的区别。在当前锁没有被占有时。非公平锁不用考虑目前aqs队列中的排队情况,直接通过cas尝试获取锁。公平锁会看目前队列的状态,再来决定是尝试占有锁还是在队列中等待。
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; }
到此这篇关于java并发编程之浅谈reentrantlock的文章就介绍到这了,更多相关java reentrantlock内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 服务器 UDP端口占用几千个的解决办法
下一篇: 五个北方人去吃饭