声明:本文转载为转载文章,原出处为:
Java并发学习(二十三)-LinkedBlockingQueue和LinkedBlockingDeque分析
LinkedBlockingDeque是基于链表的、线程安全的双端阻塞队列。LinkedBlockingQueue是基于链表的先进先出的阻塞队列。
特点:
这是一个先进先出的队列,通过ReentrantLock和两个Condition来实现并发安全与阻塞。它的结构基本字段如下:
/**
* 基于链表。
* FIFO
* 单向
*最大容量是Integer.MAX_VALUE.
*/
public class LinkedBlockingQueueAnalysis extends AbstractQueue
implements BlockingQueue, java.io.Serializable {
/*
* 两个方向。
* putLock
* takeLock
* 有些操作会需要同时获取两把锁。
* 例如remove操作,也需要获取两把锁
*/
//主要的node节点
static class Node {
E item;
Node next;
Node(E x) { item = x; }
}
//容量,一开始就固定了的。
private final int capacity;
//用AtomicInteger 来记录数量。
private final AtomicInteger count = new AtomicInteger();
//head节点 head.item == null
transient Node head;
//last节点,last.next == null
private transient Node last;
//take锁
private final ReentrantLock takeLock = new ReentrantLock();
//等待take的节点序列。
private final Condition notEmpty = takeLock.newCondition();
//put的lock。
private final ReentrantLock putLock = new ReentrantLock();
//等待puts的队列。
private final Condition notFull = putLock.newCondition();
...
}
public void put(E e) throws InterruptedException {
if (e == null) throw new NullPointerException(); //e不能为null
int c = -1;
Node node = new Node(e);
final ReentrantLock putLock = this.putLock; //获取put锁
final AtomicInteger count = this.count; //获取count
putLock.lockInterruptibly();
try {
while (count.get() == capacity) { //如果满了,那么就需要使用notFull阻塞
notFull.await();
}
enqueue(node);
c = count.getAndIncrement();
if (c + 1 < capacity) //如果此时又有空间了,那么notFull唤醒
notFull.signal();
} finally {
putLock.unlock(); //释放锁
}
if (c == 0) //当c为0时候,也要根take锁说一下,并发下
signalNotEmpty(); //调用notEmpty
}
enqueue
方法:
private void enqueue(Node node) { //入对操作。
last = last.next = node; //队尾进
}
signalNotEmpty
方法:
private void signalNotEmpty() {
final ReentrantLock takeLock = this.takeLock;
takeLock.lock(); //加锁
try {
notEmpty.signal(); //用于signal,notEmpty
} finally {
takeLock.unlock();
}
}
public E take() throws InterruptedException {
E x;
int c = -1; //设定一个记录变量
final AtomicInteger count = this.count; //获得count
final ReentrantLock takeLock = this.takeLock;
takeLock.lockInterruptibly(); //加锁
try {
while (count.get() == 0) { //如果没有元素,那么就阻塞性等待
notEmpty.await();
}
x = dequeue(); //一定可以拿到。
c = count.getAndDecrement();
if (c > 1)
notEmpty.signal(); //报告还有元素,唤醒队列
} finally {
takeLock.unlock();
}
if (c == capacity)
signalNotFull(); //解锁
return x;
}
接下来看
dequeue
方法:
private E dequeue() {
Node h = head;
Node first = h.next;
h.next = h; // help GC 指向自己,帮助gc回收
head = first;
E x = first.item; //从队头出。
first.item = null; //将head.item设为null。
return x;
}
对于LinkedBlockingQueue来说,有两个ReentrantLock分别控制队头和队尾,这样就可以使得添加操作分开来做,一般的操作是获取一把锁就可以,但有些操作例如remove操作,则需要同时获取两把锁:
public boolean remove(Object o) {
if (o == null) return false;
fullyLock(); //获取锁
try {
for (Node trail = head, p = trail.next;
p != null;
trail = p, p = p.next) { //依次循环遍历
if (o.equals(p.item)) { //找到了
unlink(p, trail); //解除链接
return true;
}
}
return false; //没找到,或者解除失败
} finally {
fullyUnlock();
}
}
/**
* 双端队列。
* 最大值是Integer.MAX_VALUE
* 所谓弱一致性有利于删除,有点理解了,
* 或许是比如clear方法,不知直接把引用置为null,而是一个个解除连接。
* 利用lock锁去控制并发访问,利用condition去控制阻塞
* weakly consistent的iterators。
* 我们需要保持所有的node都要是gc可达的。
*/
public class LinkedBlockingDeque
extends AbstractQueue
implements BlockingDeque, java.io.Serializable {
//双向联结的节点。
static final class Node {
E item; //泛型的item变量
// 前一个节点
Node prev;
//next后一个节点
Node next;
Node(E x) {
item = x;
}
}
//头节点
transient Node first;
//尾节点。
transient Node last;
//count,表示数值。
private transient int count;
//容量
private final int capacity;
//实现控制访问的锁
final ReentrantLock lock = new ReentrantLock();
//take的Condition
private final Condition notEmpty = lock.newCondition();
//put的Condition
private final Condition notFull = lock.newCondition();
...
}
从上面的结果来看,其实LinkedBlockingDeque的结构上来说,有点像ArrayBlockingQueue的构造,也是一个ReentrantLock和两个Condition,下面分别对其中重要方法进行分析。
对于LinkedBlockingDeque,和ArrayBlockingQueue结构还是很类似的,也是一个ReentrantLock和两个Condition使用,但是仅仅是在这二者使用上,其实内部运转还是很大不同的。
offerFirst
就是在队头添加一个元素:
public boolean offerFirst(E e) {
if (e == null) throw new NullPointerException();
Node node = new Node(e);
final ReentrantLock lock = this.lock; //加锁
lock.lock();
try {
return linkFirst(node);
} finally {
lock.unlock();
}
}
接下来看
linkFirst
方法:
private boolean linkFirst(Node node) {
if (count >= capacity) //容量满了
return false;
Node f = first; //在队头添加
node.next = f;
first = node;
if (last == null) //第一个节点
last = node;
else
f.prev = node;
++count; //count自增
notEmpty.signal(); //说明不为null。唤醒等待队列
return true;
}
public void clear() {
final ReentrantLock lock = this.lock;
lock.lock(); //加锁后清空所有。
try {
for (Node f = first; f != null; ) { //遍历一遍
f.item = null; //置空操作
Node n = f.next;
f.prev = null;
f.next = null;
f = n; //f后移动一个
}
first = last = null;
count = 0;
notFull.signalAll(); //通知等待put线程
} finally {
lock.unlock();
}
}