服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Java 并发编程ArrayBlockingQueue的实现

Java 并发编程ArrayBlockingQueue的实现

2021-08-09 11:49maomaoJava Java教程

这篇文章主要介绍了Java 并发编程ArrayBlockingQueue的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

一、简介

ArrayBlockingQueue 顾名思义:基于数组的阻塞队列。数组是要指定长度的,所以使用 ArrayBlockingQueue 时必须指定长度,也就是它是一个有界队列。它实现了 BlockingQueue 接口,有着队列、集合以及阻塞队列的所有方法。

Java 并发编程ArrayBlockingQueue的实现

ArrayBlockingQueue 是线程安全的,内部使用 ReentrantLock 来保证。ArrayBlockingQueue 支持对生产者线程和消费者线程进行公平的调度。当然默认情况下是不保证公平性的,因为公平性通常会降低吞吐量,但是可以减少可变性和避免线程饥饿问题。

二、数据结构

通常,队列的实现方式有数组和链表两种方式。对于数组这种实现方式来说,我们可以通过维护一个队尾指针,使得在入队的时候可以在 O(1)O(1) 的时间内完成;但是对于出队操作,在删除队头元素之后,必须将数组中的所有元素都往前移动一个位置,这个操作的复杂度达到了 O(n)O(n),效果并不是很好。如下图所示:

Java 并发编程ArrayBlockingQueue的实现

为了解决这个问题,我们可以使用另外一种逻辑结构来处理数组中各个位置之间的关系。假设现在我们有一个数组 A[1…n],我们可以把它想象成一个环型结构,即 A[n] 之后是 A[1],相信了解过一致性 Hash 算法的童鞋应该很容易能够理解。

如下图所示:我们可以使用两个指针,分别维护队头和队尾两个位置,使入队和出队操作都可以在 O(1O(1 )的时间内完成。当然,这个环形结构只是逻辑上的结构,实际的物理结构还是一个普通的数组。

Java 并发编程ArrayBlockingQueue的实现

讲完 ArrayBlockingQueue 的数据结构,接下来我们从源码层面看看它是如何实现阻塞的。

三、源码分析

3.1 属性

  1. // 队列的底层结构
  2. final Object[] items;
  3. // 队头指针
  4. int takeIndex;
  5. // 队尾指针
  6. int putIndex;
  7. // 队列中的元素个数
  8. int count;
  9.  
  10. final ReentrantLock lock;
  11.  
  12. // 并发时的两种状态
  13. private final Condition notEmpty;
  14. private final Condition notFull;

items 是一个数组,用来存放入队的数据;count 表示队列中元素的个数;takeIndex 和 putIndex 分别代表队头和队尾指针。

3.2 构造方法

  1. public ArrayBlockingQueue(int capacity) {
  2. this(capacity, false);
  3. }
  4.  
  5. public ArrayBlockingQueue(int capacity, boolean fair) {
  6. if (capacity <= 0)
  7. throw new IllegalArgumentException();
  8. this.items = new Object[capacity];
  9. lock = new ReentrantLock(fair);
  10. notEmpty = lock.newCondition();
  11. notFull = lock.newCondition();
  12. }
  13.  
  14. public ArrayBlockingQueue(int capacity, boolean fair, Collection<? extends E> c) {
  15. this(capacity, fair);
  16.  
  17. final ReentrantLock lock = this.lock;
  18. lock.lock(); // Lock only for visibility, not mutual exclusion
  19. try {
  20. int i = 0;
  21. try {
  22. for (E e : c) {
  23. checkNotNull(e);
  24. items[i++] = e;
  25. }
  26. } catch (ArrayIndexOutOfBoundsException ex) {
  27. throw new IllegalArgumentException();
  28. }
  29. count = i;
  30. putIndex = (i == capacity) ? 0 : i;
  31. } finally {
  32. lock.unlock();
  33. }
  34. }

第一个构造函数只需要指定队列大小,默认为非公平锁;第二个构造函数可以手动指定公平性和队列大小;第三个构造函数里面使用了 ReentrantLock 来加锁,然后把传入的集合元素按顺序一个个放入 items 中。这里加锁目的不是使用它的互斥性,而是让 items 中的元素对其他线程可见(参考 AQS 里的 state 的 volatile 可见性)。

3.3 方法

3.3.1 入队

ArrayBlockingQueue 提供了多种入队操作的实现来满足不同情况下的需求,入队操作有如下几种:

  • boolean add(E e)
  • void put(E e)
  • boolean offer(E e)
  • boolean offer(E e, long timeout, TimeUnit unit)

(1)add(E e)

  1. public boolean add(E e) {
  2. return super.add(e);
  3. }
  4.  
  5. //super.add(e)
  6. public boolean add(E e) {
  7. if (offer(e))
  8. return true;
  9. else
  10. throw new IllegalStateException("Queue full");
  11. }

可以看到 add 方法调用的是父类,也就是 AbstractQueue 的 add 方法,它实际上调用的就是 offer 方法。

(2)offer(E e)

我们接着上面的 add 方法来看 offer 方法:

  1. public boolean offer(E e) {
  2. checkNotNull(e);
  3. final ReentrantLock lock = this.lock;
  4. lock.lock();
  5. try {
  6. if (count == items.length)
  7. return false;
  8. else {
  9. enqueue(e);
  10. return true;
  11. }
  12. } finally {
  13. lock.unlock();
  14. }
  15. }

offer 方法在队列满了的时候返回 false,否则调用 enqueue 方法插入元素,并返回 true。

  1. private void enqueue(E x) {
  2. final Object[] items = this.items;
  3. items[putIndex] = x;
  4. // 圆环的index操作
  5. if (++putIndex == items.length)
  6. putIndex = 0;
  7. count++;
  8. notEmpty.signal();
  9. }

enqueue 方法首先把元素放在 items 的 putIndex 位置,接着判断在 putIndex+1 等于队列的长度时把 putIndex 设置为0,也就是上面提到的圆环的 index 操作。最后唤醒等待获取元素的线程。

(3)offer(E e, long timeout, TimeUnit unit)

该方法在 offer(E e) 的基础上增加了超时的概念。

  1. public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException {
  2.  
  3. checkNotNull(e);
  4. // 把超时时间转换成纳秒
  5. long nanos = unit.toNanos(timeout);
  6. final ReentrantLock lock = this.lock;
  7. // 获取一个可中断的互斥锁
  8. lock.lockInterruptibly();
  9. try {
  10. // while循环的目的是防止在中断后没有到达传入的timeout时间,继续重试
  11. while (count == items.length) {
  12. if (nanos <= 0)
  13. return false;
  14. // 等待nanos纳秒,返回剩余的等待时间(可被中断)
  15. nanos = notFull.awaitNanos(nanos);
  16. }
  17. enqueue(e);
  18. return true;
  19. } finally {
  20. lock.unlock();
  21. }
  22. }

利用了 Condition 的 awaitNanos 方法,等待指定时间,因为该方法可中断,所以这里利用 while 循环来处理中断后还有剩余时间的问题,等待时间到了以后调用 enqueue 方法放入队列。

(4)put(E e)

  1. public void put(E e) throws InterruptedException {
  2. checkNotNull(e);
  3. final ReentrantLock lock = this.lock;
  4. lock.lockInterruptibly();
  5. try {
  6. while (count == items.length)
  7. notFull.await();
  8. enqueue(e);
  9. } finally {
  10. lock.unlock();
  11. }
  12. }

put 方法在 count 等于 items 长度时,一直等待,直到被其他线程唤醒。唤醒后调用 enqueue 方法放入队列。

3.3.2 出队

入队列的方法说完后,我们来说说出队列的方法。ArrayBlockingQueue 提供了多种出队操作的实现来满足不同情况下的需求,如下:

  • E poll()
  • E poll(long timeout, TimeUnit unit)
  • E take()
  • drainTo(Collection<? super E> c, int maxElements)

(1)poll()

  1. public E poll() {
  2. final ReentrantLock lock = this.lock;
  3. lock.lock();
  4. try {
  5. return (count == 0) ? null : dequeue();
  6. } finally {
  7. lock.unlock();
  8. }
  9. }

poll 方法是非阻塞方法,如果队列没有元素返回 null,否则调用 dequeue 把队首的元素出队列。

  1. private E dequeue() {
  2. final Object[] items = this.items;
  3. @SuppressWarnings("unchecked")
  4. E x = (E) items[takeIndex];
  5. items[takeIndex] = null;
  6. if (++takeIndex == items.length)
  7. takeIndex = 0;
  8. count--;
  9. if (itrs != null)
  10. itrs.elementDequeued();
  11. notFull.signal();
  12. return x;
  13. }

dequeue 会根据 takeIndex 获取到该位置的元素,并把该位置置为 null,接着利用圆环原理,在 takeIndex 到达列表长度时设置为0,最后唤醒等待元素放入队列的线程。

(2)poll(long timeout, TimeUnit unit)

该方法是 poll() 的可配置超时等待方法,和上面的 offer 一样,使用 while 循环配合 Condition 的 awaitNanos 来进行等待,等待时间到后执行 dequeue 获取元素。

  1. public E poll(long timeout, TimeUnit unit) throws InterruptedException {
  2. long nanos = unit.toNanos(timeout);
  3. final ReentrantLock lock = this.lock;
  4. lock.lockInterruptibly();
  5. try {
  6. while (count == 0) {
  7. if (nanos <= 0)
  8. return null;
  9. nanos = notEmpty.awaitNanos(nanos);
  10. }
  11. return dequeue();
  12. } finally {
  13. lock.unlock();
  14. }
  15. }

(3)take()

  1. public E take() throws InterruptedException {
  2. final ReentrantLock lock = this.lock;
  3. lock.lockInterruptibly();
  4. try {
  5. while (count == 0)
  6. notEmpty.await();
  7. return dequeue();
  8. } finally {
  9. lock.unlock();
  10. }
  11. }

取走队列里排在首位的对象,不同于 poll() 方法,若BlockingQueue为空,就阻塞等待直到有新的数据被加入。
(4)drainTo()

  1. public int drainTo(Collection<? super E> c) {
  2. return drainTo(c, Integer.MAX_VALUE);
  3. }
  4.  
  5. public int drainTo(Collection<? super E> c, int maxElements) {
  6. checkNotNull(c);
  7. if (c == this)
  8. throw new IllegalArgumentException();
  9. if (maxElements <= 0)
  10. return 0;
  11. final Object[] items = this.items;
  12. final ReentrantLock lock = this.lock;
  13. lock.lock();
  14. try {
  15. int n = Math.min(maxElements, count);
  16. int take = takeIndex;
  17. int i = 0;
  18. try {
  19. while (i < n) {
  20. @SuppressWarnings("unchecked")
  21. E x = (E) items[take];
  22. c.add(x);
  23. items[take] = null;
  24. if (++take == items.length)
  25. take = 0;
  26. i++;
  27. }
  28. return n;
  29. } finally {
  30. // Restore invariants even if c.add() threw
  31. if (i > 0) {
  32. count -= i;
  33. takeIndex = take;
  34. if (itrs != null) {
  35. if (count == 0)
  36. itrs.queueIsEmpty();
  37. else if (i > take)
  38. itrs.takeIndexWrapped();
  39. }
  40. for (; i > 0 && lock.hasWaiters(notFull); i--)
  41. notFull.signal();
  42. }
  43. }
  44. } finally {
  45. lock.unlock();
  46. }
  47. }

drainTo 相比于其他获取方法,能够一次性从队列中获取所有可用的数据对象(还可以指定获取数据的个数)。通过该方法,可以提升获取数据效率,不需要多次分批加锁或释放锁。

3.3.3 获取元素

  1. public E peek() {
  2. final ReentrantLock lock = this.lock;
  3. lock.lock();
  4. try {
  5. return itemAt(takeIndex); // null when queue is empty
  6. } finally {
  7. lock.unlock();
  8. }
  9. }
  10.  
  11. final E itemAt(int i) {
  12. return (E) items[i];
  13. }

这里获取元素时上锁是为了避免脏数据的产生。

3.3.4 删除元素

我们可以想象一下,队列中删除某一个元素时,是不是要遍历整个数据找到该元素,并把该元素后的所有元素往前移一位,也就是说,该方法的时间复杂度为 O(n)O(n)。

  1. public boolean remove(Object o) {
  2. if (o == null) return false;
  3. final Object[] items = this.items;
  4. final ReentrantLock lock = this.lock;
  5. lock.lock();
  6. try {
  7. if (count > 0) {
  8. final int putIndex = this.putIndex;
  9. int i = takeIndex;
  10. // 从takeIndex一直遍历到putIndex,直到找到和元素o相同的元素,调用removeAt进行删除
  11. do {
  12. if (o.equals(items[i])) {
  13. removeAt(i);
  14. return true;
  15. }
  16. if (++i == items.length)
  17. i = 0;
  18. } while (i != putIndex);
  19. }
  20. return false;
  21. } finally {
  22. lock.unlock();
  23. }
  24. }

remove 方法比较简单,它从 takeIndex 一直遍历到 putIndex,直到找到和元素 o 相同的元素,调用 removeAt 进行删除。我们重点来看一下 removeAt 方法。

  1. void removeAt(final int removeIndex) {
  2. final Object[] items = this.items;
  3. if (removeIndex == takeIndex) {
  4. // removing front item; just advance
  5. items[takeIndex] = null;
  6. if (++takeIndex == items.length)
  7. takeIndex = 0;
  8. count--;
  9. if (itrs != null)
  10. itrs.elementDequeued();
  11. } else {
  12. // an "interior" remove
  13. // slide over all others up through putIndex.
  14. final int putIndex = this.putIndex;
  15. for (int i = removeIndex;;) {
  16. int next = i + 1;
  17. if (next == items.length)
  18. next = 0;
  19. if (next != putIndex) {
  20. items[i] = items[next];
  21. i = next;
  22. } else {
  23. items[i] = null;
  24. this.putIndex = i;
  25. break;
  26. }
  27. }
  28. count--;
  29. if (itrs != null)
  30. itrs.removedAt(removeIndex);
  31. }
  32. notFull.signal();
  33. }

removeAt 的处理方式和我想的稍微有一点出入,它内部分为两种情况来考虑:

  • removeIndex == takeIndex
  • removeIndex != takeIndex

也就是我考虑的时候没有考虑边界问题。当 removeIndex == takeIndex 时就不需要后面的元素整体往前移了,而只需要把 takeIndex的指向下一个元素即可(类比圆环);当 removeIndex != takeIndex 时,通过 putIndex 将 removeIndex 后的元素往前移一位。

四、总结

ArrayBlockingQueue 是一个阻塞队列,内部由 ReentrantLock 来实现线程安全,由 Condition 的 await 和 signal 来实现等待唤醒的功能。它的数据结构是数组,准确的说是一个循环数组(可以类比一个圆环),所有的下标在到达最大长度时自动从 0 继续开始。

到此这篇关于Java 并发编程ArrayBlockingQueue的实现的文章就介绍到这了,更多相关Java 并发编程ArrayBlockingQueue内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://juejin.cn/post/6930401738021961742

延伸 · 阅读

精彩推荐