ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/LinkedBlockingDeque.java
Revision: 1.83
Committed: Thu Oct 17 01:51:38 2019 UTC (4 years, 7 months ago) by jsr166
Branch: MAIN
CVS Tags: HEAD
Changes since 1.82: +2 -0 lines
Log Message:
8232230: Suppress warnings on non-serializable non-transient instance fields in java.util.concurrent

File Contents

# User Rev Content
1 dl 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4 jsr166 1.27 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.1 */
6    
7     package java.util.concurrent;
8 jsr166 1.21
9     import java.util.AbstractQueue;
10     import java.util.Collection;
11     import java.util.Iterator;
12     import java.util.NoSuchElementException;
13 jsr166 1.67 import java.util.Objects;
14 jsr166 1.53 import java.util.Spliterator;
15     import java.util.Spliterators;
16 jsr166 1.21 import java.util.concurrent.locks.Condition;
17     import java.util.concurrent.locks.ReentrantLock;
18 jsr166 1.53 import java.util.function.Consumer;
19 jsr166 1.74 import java.util.function.Predicate;
20 dl 1.1
21     /**
22     * An optionally-bounded {@linkplain BlockingDeque blocking deque} based on
23     * linked nodes.
24     *
25 jsr166 1.35 * <p>The optional capacity bound constructor argument serves as a
26 dl 1.1 * way to prevent excessive expansion. The capacity, if unspecified,
27     * is equal to {@link Integer#MAX_VALUE}. Linked nodes are
28     * dynamically created upon each insertion unless this would bring the
29     * deque above capacity.
30     *
31     * <p>Most operations run in constant time (ignoring time spent
32     * blocking). Exceptions include {@link #remove(Object) remove},
33     * {@link #removeFirstOccurrence removeFirstOccurrence}, {@link
34     * #removeLastOccurrence removeLastOccurrence}, {@link #contains
35 jsr166 1.9 * contains}, {@link #iterator iterator.remove()}, and the bulk
36 dl 1.1 * operations, all of which run in linear time.
37     *
38 jsr166 1.77 * <p>This class and its iterator implement all of the <em>optional</em>
39     * methods of the {@link Collection} and {@link Iterator} interfaces.
40 jsr166 1.9 *
41     * <p>This class is a member of the
42 jsr166 1.82 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
43 jsr166 1.9 * Java Collections Framework</a>.
44 dl 1.1 *
45     * @since 1.6
46     * @author Doug Lea
47 jsr166 1.52 * @param <E> the type of elements held in this deque
48 dl 1.1 */
49     public class LinkedBlockingDeque<E>
50     extends AbstractQueue<E>
51 jsr166 1.33 implements BlockingDeque<E>, java.io.Serializable {
52 dl 1.1
53     /*
54     * Implemented as a simple doubly-linked list protected by a
55     * single lock and using conditions to manage blocking.
56 jsr166 1.21 *
57     * To implement weakly consistent iterators, it appears we need to
58     * keep all Nodes GC-reachable from a predecessor dequeued Node.
59     * That would cause two problems:
60     * - allow a rogue Iterator to cause unbounded memory retention
61     * - cause cross-generational linking of old Nodes to new Nodes if
62     * a Node was tenured while live, which generational GCs have a
63     * hard time dealing with, causing repeated major collections.
64     * However, only non-deleted Nodes need to be reachable from
65     * dequeued Nodes, and reachability does not necessarily have to
66     * be of the kind understood by the GC. We use the trick of
67     * linking a Node that has just been dequeued to itself. Such a
68     * self-link implicitly means to jump to "first" (for next links)
69     * or "last" (for prev links).
70 dl 1.1 */
71    
72 jsr166 1.9 /*
73     * We have "diamond" multiple interface/abstract class inheritance
74     * here, and that introduces ambiguities. Often we want the
75     * BlockingDeque javadoc combined with the AbstractQueue
76     * implementation, so a lot of method specs are duplicated here.
77     */
78    
79 dl 1.1 private static final long serialVersionUID = -387911632671998426L;
80    
81     /** Doubly-linked list node class */
82     static final class Node<E> {
83 jsr166 1.21 /**
84     * The item, or null if this node has been removed.
85     */
86 jsr166 1.19 E item;
87 jsr166 1.21
88     /**
89     * One of:
90     * - the real predecessor Node
91     * - this Node, meaning the predecessor is tail
92     * - null, meaning there is no predecessor
93     */
94 dl 1.1 Node<E> prev;
95 jsr166 1.21
96     /**
97     * One of:
98     * - the real successor Node
99     * - this Node, meaning the successor is head
100     * - null, meaning there is no successor
101     */
102 dl 1.1 Node<E> next;
103 jsr166 1.21
104 dl 1.23 Node(E x) {
105 dl 1.1 item = x;
106     }
107     }
108    
109 jsr166 1.21 /**
110     * Pointer to first node.
111     * Invariant: (first == null && last == null) ||
112     * (first.prev == null && first.item != null)
113     */
114     transient Node<E> first;
115    
116     /**
117     * Pointer to last node.
118     * Invariant: (first == null && last == null) ||
119     * (last.next == null && last.item != null)
120     */
121     transient Node<E> last;
122    
123 dl 1.1 /** Number of items in the deque */
124     private transient int count;
125 jsr166 1.21
126 dl 1.1 /** Maximum number of items in the deque */
127     private final int capacity;
128 jsr166 1.21
129 dl 1.1 /** Main lock guarding all access */
130 jsr166 1.21 final ReentrantLock lock = new ReentrantLock();
131    
132 dl 1.1 /** Condition for waiting takes */
133 jsr166 1.83 @SuppressWarnings("serial") // Classes implementing Condition may be serializable.
134 dl 1.1 private final Condition notEmpty = lock.newCondition();
135 jsr166 1.21
136 dl 1.1 /** Condition for waiting puts */
137 jsr166 1.83 @SuppressWarnings("serial") // Classes implementing Condition may be serializable.
138 dl 1.1 private final Condition notFull = lock.newCondition();
139    
140     /**
141 jsr166 1.21 * Creates a {@code LinkedBlockingDeque} with a capacity of
142 dl 1.1 * {@link Integer#MAX_VALUE}.
143     */
144     public LinkedBlockingDeque() {
145     this(Integer.MAX_VALUE);
146     }
147    
148     /**
149 jsr166 1.21 * Creates a {@code LinkedBlockingDeque} with the given (fixed) capacity.
150 jsr166 1.9 *
151 dl 1.1 * @param capacity the capacity of this deque
152 jsr166 1.21 * @throws IllegalArgumentException if {@code capacity} is less than 1
153 dl 1.1 */
154     public LinkedBlockingDeque(int capacity) {
155     if (capacity <= 0) throw new IllegalArgumentException();
156     this.capacity = capacity;
157     }
158    
159     /**
160 jsr166 1.21 * Creates a {@code LinkedBlockingDeque} with a capacity of
161 jsr166 1.9 * {@link Integer#MAX_VALUE}, initially containing the elements of
162     * the given collection, added in traversal order of the
163     * collection's iterator.
164     *
165 dl 1.1 * @param c the collection of elements to initially contain
166 jsr166 1.9 * @throws NullPointerException if the specified collection or any
167     * of its elements are null
168 dl 1.1 */
169     public LinkedBlockingDeque(Collection<? extends E> c) {
170     this(Integer.MAX_VALUE);
171 jsr166 1.74 addAll(c);
172 dl 1.1 }
173    
174    
175     // Basic linking and unlinking operations, called only while holding lock
176    
177     /**
178 dl 1.23 * Links node as first element, or returns false if full.
179 dl 1.1 */
180 dl 1.23 private boolean linkFirst(Node<E> node) {
181 jsr166 1.21 // assert lock.isHeldByCurrentThread();
182 dl 1.1 if (count >= capacity)
183     return false;
184     Node<E> f = first;
185 dl 1.23 node.next = f;
186     first = node;
187 dl 1.1 if (last == null)
188 dl 1.23 last = node;
189 dl 1.1 else
190 dl 1.23 f.prev = node;
191 jsr166 1.21 ++count;
192 dl 1.1 notEmpty.signal();
193     return true;
194     }
195    
196     /**
197 dl 1.23 * Links node as last element, or returns false if full.
198 dl 1.1 */
199 dl 1.23 private boolean linkLast(Node<E> node) {
200 jsr166 1.21 // assert lock.isHeldByCurrentThread();
201 dl 1.1 if (count >= capacity)
202     return false;
203     Node<E> l = last;
204 dl 1.23 node.prev = l;
205     last = node;
206 dl 1.1 if (first == null)
207 dl 1.23 first = node;
208 dl 1.1 else
209 dl 1.23 l.next = node;
210 jsr166 1.21 ++count;
211 dl 1.1 notEmpty.signal();
212     return true;
213     }
214    
215     /**
216 jsr166 1.3 * Removes and returns first element, or null if empty.
217 dl 1.1 */
218     private E unlinkFirst() {
219 jsr166 1.21 // assert lock.isHeldByCurrentThread();
220 dl 1.1 Node<E> f = first;
221     if (f == null)
222     return null;
223     Node<E> n = f.next;
224 jsr166 1.21 E item = f.item;
225     f.item = null;
226     f.next = f; // help GC
227 dl 1.1 first = n;
228 jsr166 1.3 if (n == null)
229 dl 1.1 last = null;
230 jsr166 1.3 else
231 dl 1.1 n.prev = null;
232     --count;
233     notFull.signal();
234 jsr166 1.21 return item;
235 dl 1.1 }
236    
237     /**
238 jsr166 1.3 * Removes and returns last element, or null if empty.
239 dl 1.1 */
240     private E unlinkLast() {
241 jsr166 1.21 // assert lock.isHeldByCurrentThread();
242 dl 1.1 Node<E> l = last;
243     if (l == null)
244     return null;
245     Node<E> p = l.prev;
246 jsr166 1.21 E item = l.item;
247     l.item = null;
248     l.prev = l; // help GC
249 dl 1.1 last = p;
250 jsr166 1.3 if (p == null)
251 dl 1.1 first = null;
252 jsr166 1.3 else
253 dl 1.1 p.next = null;
254     --count;
255     notFull.signal();
256 jsr166 1.21 return item;
257 dl 1.1 }
258    
259     /**
260 jsr166 1.21 * Unlinks x.
261 dl 1.1 */
262 jsr166 1.21 void unlink(Node<E> x) {
263     // assert lock.isHeldByCurrentThread();
264 jsr166 1.75 // assert x.item != null;
265 dl 1.1 Node<E> p = x.prev;
266     Node<E> n = x.next;
267     if (p == null) {
268 jsr166 1.21 unlinkFirst();
269 dl 1.1 } else if (n == null) {
270 jsr166 1.21 unlinkLast();
271 dl 1.1 } else {
272     p.next = n;
273     n.prev = p;
274 jsr166 1.21 x.item = null;
275     // Don't mess with x's links. They may still be in use by
276     // an iterator.
277     --count;
278     notFull.signal();
279 dl 1.1 }
280     }
281    
282 jsr166 1.9 // BlockingDeque methods
283 dl 1.1
284 jsr166 1.9 /**
285 jsr166 1.46 * @throws IllegalStateException if this deque is full
286     * @throws NullPointerException {@inheritDoc}
287 jsr166 1.9 */
288     public void addFirst(E e) {
289     if (!offerFirst(e))
290     throw new IllegalStateException("Deque full");
291     }
292    
293     /**
294 jsr166 1.46 * @throws IllegalStateException if this deque is full
295 jsr166 1.9 * @throws NullPointerException {@inheritDoc}
296     */
297     public void addLast(E e) {
298     if (!offerLast(e))
299     throw new IllegalStateException("Deque full");
300     }
301    
302     /**
303     * @throws NullPointerException {@inheritDoc}
304     */
305 jsr166 1.6 public boolean offerFirst(E e) {
306     if (e == null) throw new NullPointerException();
307 dl 1.23 Node<E> node = new Node<E>(e);
308 jsr166 1.21 final ReentrantLock lock = this.lock;
309 dl 1.1 lock.lock();
310     try {
311 dl 1.23 return linkFirst(node);
312 dl 1.1 } finally {
313 jsr166 1.65 // checkInvariants();
314 dl 1.1 lock.unlock();
315     }
316     }
317    
318 jsr166 1.9 /**
319     * @throws NullPointerException {@inheritDoc}
320     */
321 jsr166 1.6 public boolean offerLast(E e) {
322     if (e == null) throw new NullPointerException();
323 dl 1.23 Node<E> node = new Node<E>(e);
324 jsr166 1.21 final ReentrantLock lock = this.lock;
325 dl 1.1 lock.lock();
326     try {
327 dl 1.23 return linkLast(node);
328 dl 1.1 } finally {
329 jsr166 1.65 // checkInvariants();
330 dl 1.1 lock.unlock();
331     }
332     }
333    
334 jsr166 1.9 /**
335     * @throws NullPointerException {@inheritDoc}
336     * @throws InterruptedException {@inheritDoc}
337     */
338     public void putFirst(E e) throws InterruptedException {
339     if (e == null) throw new NullPointerException();
340 dl 1.23 Node<E> node = new Node<E>(e);
341 jsr166 1.21 final ReentrantLock lock = this.lock;
342 dl 1.1 lock.lock();
343     try {
344 dl 1.23 while (!linkFirst(node))
345 jsr166 1.9 notFull.await();
346 dl 1.1 } finally {
347 jsr166 1.65 // checkInvariants();
348 dl 1.1 lock.unlock();
349     }
350     }
351    
352 jsr166 1.9 /**
353     * @throws NullPointerException {@inheritDoc}
354     * @throws InterruptedException {@inheritDoc}
355     */
356     public void putLast(E e) throws InterruptedException {
357     if (e == null) throw new NullPointerException();
358 dl 1.23 Node<E> node = new Node<E>(e);
359 jsr166 1.21 final ReentrantLock lock = this.lock;
360 dl 1.1 lock.lock();
361     try {
362 dl 1.23 while (!linkLast(node))
363 jsr166 1.9 notFull.await();
364 dl 1.1 } finally {
365 jsr166 1.65 // checkInvariants();
366 dl 1.1 lock.unlock();
367     }
368     }
369    
370 jsr166 1.9 /**
371     * @throws NullPointerException {@inheritDoc}
372     * @throws InterruptedException {@inheritDoc}
373     */
374     public boolean offerFirst(E e, long timeout, TimeUnit unit)
375     throws InterruptedException {
376     if (e == null) throw new NullPointerException();
377 dl 1.23 Node<E> node = new Node<E>(e);
378 jsr166 1.19 long nanos = unit.toNanos(timeout);
379 jsr166 1.21 final ReentrantLock lock = this.lock;
380 jsr166 1.9 lock.lockInterruptibly();
381 dl 1.1 try {
382 dl 1.23 while (!linkFirst(node)) {
383 jsr166 1.59 if (nanos <= 0L)
384 jsr166 1.9 return false;
385     nanos = notFull.awaitNanos(nanos);
386     }
387 jsr166 1.21 return true;
388 dl 1.1 } finally {
389 jsr166 1.65 // checkInvariants();
390 dl 1.1 lock.unlock();
391     }
392     }
393    
394 jsr166 1.9 /**
395     * @throws NullPointerException {@inheritDoc}
396     * @throws InterruptedException {@inheritDoc}
397     */
398     public boolean offerLast(E e, long timeout, TimeUnit unit)
399     throws InterruptedException {
400     if (e == null) throw new NullPointerException();
401 dl 1.23 Node<E> node = new Node<E>(e);
402 jsr166 1.19 long nanos = unit.toNanos(timeout);
403 jsr166 1.21 final ReentrantLock lock = this.lock;
404 jsr166 1.9 lock.lockInterruptibly();
405 dl 1.1 try {
406 dl 1.23 while (!linkLast(node)) {
407 jsr166 1.59 if (nanos <= 0L)
408 jsr166 1.9 return false;
409     nanos = notFull.awaitNanos(nanos);
410     }
411 jsr166 1.21 return true;
412 dl 1.1 } finally {
413 jsr166 1.65 // checkInvariants();
414 dl 1.1 lock.unlock();
415     }
416     }
417    
418 jsr166 1.9 /**
419     * @throws NoSuchElementException {@inheritDoc}
420     */
421     public E removeFirst() {
422     E x = pollFirst();
423 dl 1.1 if (x == null) throw new NoSuchElementException();
424     return x;
425     }
426    
427 jsr166 1.9 /**
428     * @throws NoSuchElementException {@inheritDoc}
429     */
430     public E removeLast() {
431     E x = pollLast();
432 dl 1.1 if (x == null) throw new NoSuchElementException();
433     return x;
434     }
435    
436 jsr166 1.9 public E pollFirst() {
437 jsr166 1.21 final ReentrantLock lock = this.lock;
438 dl 1.1 lock.lock();
439     try {
440 jsr166 1.9 return unlinkFirst();
441 dl 1.1 } finally {
442 jsr166 1.65 // checkInvariants();
443 dl 1.1 lock.unlock();
444     }
445     }
446    
447 jsr166 1.9 public E pollLast() {
448 jsr166 1.21 final ReentrantLock lock = this.lock;
449 dl 1.1 lock.lock();
450     try {
451 jsr166 1.9 return unlinkLast();
452 dl 1.1 } finally {
453 jsr166 1.65 // checkInvariants();
454 dl 1.1 lock.unlock();
455     }
456     }
457    
458     public E takeFirst() throws InterruptedException {
459 jsr166 1.21 final ReentrantLock lock = this.lock;
460 dl 1.1 lock.lock();
461     try {
462     E x;
463     while ( (x = unlinkFirst()) == null)
464     notEmpty.await();
465     return x;
466     } finally {
467 jsr166 1.65 // checkInvariants();
468 dl 1.1 lock.unlock();
469     }
470     }
471    
472     public E takeLast() throws InterruptedException {
473 jsr166 1.21 final ReentrantLock lock = this.lock;
474 dl 1.1 lock.lock();
475     try {
476     E x;
477     while ( (x = unlinkLast()) == null)
478     notEmpty.await();
479     return x;
480     } finally {
481 jsr166 1.65 // checkInvariants();
482 dl 1.1 lock.unlock();
483     }
484     }
485    
486 jsr166 1.9 public E pollFirst(long timeout, TimeUnit unit)
487 dl 1.1 throws InterruptedException {
488 jsr166 1.19 long nanos = unit.toNanos(timeout);
489 jsr166 1.21 final ReentrantLock lock = this.lock;
490 dl 1.1 lock.lockInterruptibly();
491     try {
492 jsr166 1.21 E x;
493     while ( (x = unlinkFirst()) == null) {
494 jsr166 1.59 if (nanos <= 0L)
495 jsr166 1.9 return null;
496     nanos = notEmpty.awaitNanos(nanos);
497 dl 1.1 }
498 jsr166 1.21 return x;
499 dl 1.1 } finally {
500 jsr166 1.65 // checkInvariants();
501 dl 1.1 lock.unlock();
502     }
503     }
504 jsr166 1.3
505 jsr166 1.9 public E pollLast(long timeout, TimeUnit unit)
506 dl 1.1 throws InterruptedException {
507 jsr166 1.19 long nanos = unit.toNanos(timeout);
508 jsr166 1.21 final ReentrantLock lock = this.lock;
509 dl 1.1 lock.lockInterruptibly();
510     try {
511 jsr166 1.21 E x;
512     while ( (x = unlinkLast()) == null) {
513 jsr166 1.59 if (nanos <= 0L)
514 jsr166 1.9 return null;
515     nanos = notEmpty.awaitNanos(nanos);
516 dl 1.1 }
517 jsr166 1.21 return x;
518 dl 1.1 } finally {
519 jsr166 1.65 // checkInvariants();
520 dl 1.1 lock.unlock();
521     }
522     }
523    
524 jsr166 1.9 /**
525     * @throws NoSuchElementException {@inheritDoc}
526     */
527     public E getFirst() {
528     E x = peekFirst();
529     if (x == null) throw new NoSuchElementException();
530     return x;
531     }
532    
533     /**
534     * @throws NoSuchElementException {@inheritDoc}
535     */
536     public E getLast() {
537     E x = peekLast();
538     if (x == null) throw new NoSuchElementException();
539     return x;
540     }
541    
542     public E peekFirst() {
543 jsr166 1.21 final ReentrantLock lock = this.lock;
544 jsr166 1.9 lock.lock();
545     try {
546     return (first == null) ? null : first.item;
547     } finally {
548 jsr166 1.65 // checkInvariants();
549 jsr166 1.9 lock.unlock();
550     }
551     }
552    
553     public E peekLast() {
554 jsr166 1.21 final ReentrantLock lock = this.lock;
555 jsr166 1.9 lock.lock();
556     try {
557     return (last == null) ? null : last.item;
558     } finally {
559 jsr166 1.65 // checkInvariants();
560 jsr166 1.9 lock.unlock();
561     }
562     }
563    
564     public boolean removeFirstOccurrence(Object o) {
565     if (o == null) return false;
566 jsr166 1.21 final ReentrantLock lock = this.lock;
567 jsr166 1.9 lock.lock();
568 dl 1.1 try {
569 jsr166 1.9 for (Node<E> p = first; p != null; p = p.next) {
570     if (o.equals(p.item)) {
571     unlink(p);
572     return true;
573     }
574 dl 1.1 }
575 jsr166 1.9 return false;
576 dl 1.1 } finally {
577 jsr166 1.65 // checkInvariants();
578 dl 1.1 lock.unlock();
579     }
580     }
581    
582 jsr166 1.9 public boolean removeLastOccurrence(Object o) {
583     if (o == null) return false;
584 jsr166 1.21 final ReentrantLock lock = this.lock;
585 jsr166 1.9 lock.lock();
586 dl 1.1 try {
587 jsr166 1.9 for (Node<E> p = last; p != null; p = p.prev) {
588     if (o.equals(p.item)) {
589     unlink(p);
590     return true;
591     }
592 dl 1.1 }
593 jsr166 1.9 return false;
594 dl 1.1 } finally {
595 jsr166 1.65 // checkInvariants();
596 dl 1.1 lock.unlock();
597     }
598     }
599    
600 jsr166 1.9 // BlockingQueue methods
601 dl 1.1
602 jsr166 1.9 /**
603     * Inserts the specified element at the end of this deque unless it would
604     * violate capacity restrictions. When using a capacity-restricted deque,
605     * it is generally preferable to use method {@link #offer(Object) offer}.
606     *
607 jsr166 1.13 * <p>This method is equivalent to {@link #addLast}.
608 jsr166 1.9 *
609 jsr166 1.46 * @throws IllegalStateException if this deque is full
610 jsr166 1.9 * @throws NullPointerException if the specified element is null
611     */
612     public boolean add(E e) {
613 jsr166 1.19 addLast(e);
614     return true;
615 jsr166 1.9 }
616    
617     /**
618     * @throws NullPointerException if the specified element is null
619     */
620     public boolean offer(E e) {
621 jsr166 1.19 return offerLast(e);
622 jsr166 1.9 }
623 dl 1.1
624 jsr166 1.9 /**
625     * @throws NullPointerException {@inheritDoc}
626     * @throws InterruptedException {@inheritDoc}
627     */
628     public void put(E e) throws InterruptedException {
629 jsr166 1.19 putLast(e);
630 jsr166 1.9 }
631 dl 1.1
632 jsr166 1.9 /**
633     * @throws NullPointerException {@inheritDoc}
634     * @throws InterruptedException {@inheritDoc}
635     */
636 jsr166 1.7 public boolean offer(E e, long timeout, TimeUnit unit)
637 jsr166 1.9 throws InterruptedException {
638 jsr166 1.19 return offerLast(e, timeout, unit);
639 jsr166 1.9 }
640    
641     /**
642     * Retrieves and removes the head of the queue represented by this deque.
643 jsr166 1.79 * This method differs from {@link #poll() poll()} only in that it throws an
644 jsr166 1.9 * exception if this deque is empty.
645     *
646     * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
647     *
648     * @return the head of the queue represented by this deque
649     * @throws NoSuchElementException if this deque is empty
650     */
651     public E remove() {
652 jsr166 1.19 return removeFirst();
653 jsr166 1.9 }
654    
655     public E poll() {
656 jsr166 1.19 return pollFirst();
657 jsr166 1.9 }
658    
659     public E take() throws InterruptedException {
660 jsr166 1.19 return takeFirst();
661 jsr166 1.9 }
662    
663     public E poll(long timeout, TimeUnit unit) throws InterruptedException {
664 jsr166 1.19 return pollFirst(timeout, unit);
665 jsr166 1.9 }
666 dl 1.1
667     /**
668 jsr166 1.9 * Retrieves, but does not remove, the head of the queue represented by
669 jsr166 1.79 * this deque. This method differs from {@link #peek() peek()} only in that
670 jsr166 1.9 * it throws an exception if this deque is empty.
671     *
672     * <p>This method is equivalent to {@link #getFirst() getFirst}.
673 dl 1.1 *
674 jsr166 1.9 * @return the head of the queue represented by this deque
675     * @throws NoSuchElementException if this deque is empty
676 dl 1.1 */
677 jsr166 1.9 public E element() {
678 jsr166 1.19 return getFirst();
679 jsr166 1.9 }
680    
681     public E peek() {
682 jsr166 1.19 return peekFirst();
683 dl 1.1 }
684    
685     /**
686 jsr166 1.4 * Returns the number of additional elements that this deque can ideally
687     * (in the absence of memory or resource constraints) accept without
688 dl 1.1 * blocking. This is always equal to the initial capacity of this deque
689 jsr166 1.21 * less the current {@code size} of this deque.
690 jsr166 1.4 *
691     * <p>Note that you <em>cannot</em> always tell if an attempt to insert
692 jsr166 1.21 * an element will succeed by inspecting {@code remainingCapacity}
693 jsr166 1.4 * because it may be the case that another thread is about to
694 jsr166 1.9 * insert or remove an element.
695 dl 1.1 */
696     public int remainingCapacity() {
697 jsr166 1.21 final ReentrantLock lock = this.lock;
698 dl 1.1 lock.lock();
699     try {
700     return capacity - count;
701     } finally {
702 jsr166 1.65 // checkInvariants();
703 dl 1.1 lock.unlock();
704     }
705     }
706    
707 jsr166 1.9 /**
708     * @throws UnsupportedOperationException {@inheritDoc}
709     * @throws ClassCastException {@inheritDoc}
710     * @throws NullPointerException {@inheritDoc}
711     * @throws IllegalArgumentException {@inheritDoc}
712     */
713     public int drainTo(Collection<? super E> c) {
714 jsr166 1.21 return drainTo(c, Integer.MAX_VALUE);
715 dl 1.1 }
716    
717 jsr166 1.9 /**
718     * @throws UnsupportedOperationException {@inheritDoc}
719     * @throws ClassCastException {@inheritDoc}
720     * @throws NullPointerException {@inheritDoc}
721     * @throws IllegalArgumentException {@inheritDoc}
722     */
723     public int drainTo(Collection<? super E> c, int maxElements) {
724 jsr166 1.67 Objects.requireNonNull(c);
725 jsr166 1.9 if (c == this)
726     throw new IllegalArgumentException();
727 jsr166 1.30 if (maxElements <= 0)
728     return 0;
729 jsr166 1.21 final ReentrantLock lock = this.lock;
730 dl 1.1 lock.lock();
731     try {
732 jsr166 1.21 int n = Math.min(maxElements, count);
733     for (int i = 0; i < n; i++) {
734     c.add(first.item); // In this order, in case add() throws.
735     unlinkFirst();
736 dl 1.1 }
737 jsr166 1.9 return n;
738     } finally {
739 jsr166 1.65 // checkInvariants();
740 jsr166 1.9 lock.unlock();
741     }
742     }
743    
744     // Stack methods
745    
746     /**
747 jsr166 1.46 * @throws IllegalStateException if this deque is full
748     * @throws NullPointerException {@inheritDoc}
749 jsr166 1.9 */
750     public void push(E e) {
751 jsr166 1.19 addFirst(e);
752 jsr166 1.9 }
753    
754     /**
755     * @throws NoSuchElementException {@inheritDoc}
756     */
757     public E pop() {
758 jsr166 1.19 return removeFirst();
759 jsr166 1.9 }
760    
761     // Collection methods
762    
763 jsr166 1.11 /**
764     * Removes the first occurrence of the specified element from this deque.
765     * If the deque does not contain the element, it is unchanged.
766 jsr166 1.21 * More formally, removes the first element {@code e} such that
767     * {@code o.equals(e)} (if such an element exists).
768     * Returns {@code true} if this deque contained the specified element
769 jsr166 1.11 * (or equivalently, if this deque changed as a result of the call).
770     *
771     * <p>This method is equivalent to
772     * {@link #removeFirstOccurrence(Object) removeFirstOccurrence}.
773     *
774     * @param o element to be removed from this deque, if present
775 jsr166 1.21 * @return {@code true} if this deque changed as a result of the call
776 jsr166 1.11 */
777 jsr166 1.9 public boolean remove(Object o) {
778 jsr166 1.19 return removeFirstOccurrence(o);
779 jsr166 1.9 }
780    
781     /**
782     * Returns the number of elements in this deque.
783     *
784     * @return the number of elements in this deque
785     */
786     public int size() {
787 jsr166 1.21 final ReentrantLock lock = this.lock;
788 jsr166 1.9 lock.lock();
789     try {
790     return count;
791 dl 1.1 } finally {
792 jsr166 1.65 // checkInvariants();
793 dl 1.1 lock.unlock();
794     }
795     }
796    
797 jsr166 1.9 /**
798 jsr166 1.21 * Returns {@code true} if this deque contains the specified element.
799     * More formally, returns {@code true} if and only if this deque contains
800     * at least one element {@code e} such that {@code o.equals(e)}.
801 jsr166 1.9 *
802     * @param o object to be checked for containment in this deque
803 jsr166 1.21 * @return {@code true} if this deque contains the specified element
804 jsr166 1.9 */
805     public boolean contains(Object o) {
806     if (o == null) return false;
807 jsr166 1.21 final ReentrantLock lock = this.lock;
808 dl 1.1 lock.lock();
809     try {
810 jsr166 1.9 for (Node<E> p = first; p != null; p = p.next)
811     if (o.equals(p.item))
812 dl 1.1 return true;
813     return false;
814     } finally {
815 jsr166 1.65 // checkInvariants();
816 dl 1.1 lock.unlock();
817     }
818     }
819    
820 jsr166 1.74 /**
821     * Appends all of the elements in the specified collection to the end of
822     * this deque, in the order that they are returned by the specified
823     * collection's iterator. Attempts to {@code addAll} of a deque to
824     * itself result in {@code IllegalArgumentException}.
825 jsr166 1.21 *
826 jsr166 1.74 * @param c the elements to be inserted into this deque
827     * @return {@code true} if this deque changed as a result of the call
828     * @throws NullPointerException if the specified collection or any
829     * of its elements are null
830     * @throws IllegalArgumentException if the collection is this deque
831     * @throws IllegalStateException if this deque is full
832     * @see #add(Object)
833     */
834     public boolean addAll(Collection<? extends E> c) {
835     if (c == this)
836     // As historically specified in AbstractQueue#addAll
837     throw new IllegalArgumentException();
838    
839     // Copy c into a private chain of Nodes
840     Node<E> beg = null, end = null;
841     int n = 0;
842     for (E e : c) {
843     Objects.requireNonNull(e);
844     n++;
845     Node<E> newNode = new Node<E>(e);
846     if (beg == null)
847     beg = end = newNode;
848     else {
849     end.next = newNode;
850     newNode.prev = end;
851     end = newNode;
852     }
853     }
854     if (beg == null)
855     return false;
856    
857     // Atomically append the chain at the end
858     final ReentrantLock lock = this.lock;
859     lock.lock();
860     try {
861     if (count + n <= capacity) {
862     beg.prev = last;
863     if (first == null)
864     first = beg;
865     else
866     last.next = beg;
867     last = end;
868     count += n;
869     notEmpty.signalAll();
870     return true;
871     }
872     } finally {
873     // checkInvariants();
874     lock.unlock();
875     }
876     // Fall back to historic non-atomic implementation, failing
877     // with IllegalStateException when the capacity is exceeded.
878     return super.addAll(c);
879     }
880 dl 1.1
881 jsr166 1.9 /**
882     * Returns an array containing all of the elements in this deque, in
883     * proper sequence (from first to last element).
884     *
885     * <p>The returned array will be "safe" in that no references to it are
886     * maintained by this deque. (In other words, this method must allocate
887     * a new array). The caller is thus free to modify the returned array.
888 jsr166 1.10 *
889 jsr166 1.9 * <p>This method acts as bridge between array-based and collection-based
890     * APIs.
891     *
892     * @return an array containing all of the elements in this deque
893     */
894 jsr166 1.21 @SuppressWarnings("unchecked")
895 dl 1.1 public Object[] toArray() {
896 jsr166 1.21 final ReentrantLock lock = this.lock;
897 dl 1.1 lock.lock();
898     try {
899     Object[] a = new Object[count];
900     int k = 0;
901 jsr166 1.3 for (Node<E> p = first; p != null; p = p.next)
902 dl 1.1 a[k++] = p.item;
903     return a;
904     } finally {
905 jsr166 1.65 // checkInvariants();
906 dl 1.1 lock.unlock();
907     }
908     }
909    
910 jsr166 1.9 /**
911     * Returns an array containing all of the elements in this deque, in
912     * proper sequence; the runtime type of the returned array is that of
913     * the specified array. If the deque fits in the specified array, it
914     * is returned therein. Otherwise, a new array is allocated with the
915     * runtime type of the specified array and the size of this deque.
916     *
917     * <p>If this deque fits in the specified array with room to spare
918     * (i.e., the array has more elements than this deque), the element in
919     * the array immediately following the end of the deque is set to
920 jsr166 1.21 * {@code null}.
921 jsr166 1.9 *
922     * <p>Like the {@link #toArray()} method, this method acts as bridge between
923     * array-based and collection-based APIs. Further, this method allows
924     * precise control over the runtime type of the output array, and may,
925     * under certain circumstances, be used to save allocation costs.
926     *
927 jsr166 1.21 * <p>Suppose {@code x} is a deque known to contain only strings.
928 jsr166 1.9 * The following code can be used to dump the deque into a newly
929 jsr166 1.21 * allocated array of {@code String}:
930 jsr166 1.9 *
931 jsr166 1.55 * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
932 jsr166 1.9 *
933 jsr166 1.21 * Note that {@code toArray(new Object[0])} is identical in function to
934     * {@code toArray()}.
935 jsr166 1.9 *
936     * @param a the array into which the elements of the deque are to
937     * be stored, if it is big enough; otherwise, a new array of the
938     * same runtime type is allocated for this purpose
939     * @return an array containing all of the elements in this deque
940     * @throws ArrayStoreException if the runtime type of the specified array
941     * is not a supertype of the runtime type of every element in
942     * this deque
943     * @throws NullPointerException if the specified array is null
944     */
945 jsr166 1.21 @SuppressWarnings("unchecked")
946 dl 1.1 public <T> T[] toArray(T[] a) {
947 jsr166 1.21 final ReentrantLock lock = this.lock;
948 dl 1.1 lock.lock();
949     try {
950     if (a.length < count)
951 jsr166 1.21 a = (T[])java.lang.reflect.Array.newInstance
952     (a.getClass().getComponentType(), count);
953 dl 1.1
954     int k = 0;
955 jsr166 1.3 for (Node<E> p = first; p != null; p = p.next)
956 dl 1.1 a[k++] = (T)p.item;
957     if (a.length > k)
958     a[k] = null;
959     return a;
960     } finally {
961 jsr166 1.65 // checkInvariants();
962 dl 1.1 lock.unlock();
963     }
964     }
965    
966     public String toString() {
967 jsr166 1.56 return Helpers.collectionToString(this);
968 dl 1.1 }
969    
970     /**
971     * Atomically removes all of the elements from this deque.
972     * The deque will be empty after this call returns.
973     */
974     public void clear() {
975 jsr166 1.21 final ReentrantLock lock = this.lock;
976 dl 1.1 lock.lock();
977     try {
978 jsr166 1.21 for (Node<E> f = first; f != null; ) {
979     f.item = null;
980     Node<E> n = f.next;
981     f.prev = null;
982     f.next = null;
983     f = n;
984     }
985 dl 1.1 first = last = null;
986     count = 0;
987     notFull.signalAll();
988     } finally {
989 jsr166 1.65 // checkInvariants();
990 dl 1.1 lock.unlock();
991     }
992     }
993    
994     /**
995 jsr166 1.67 * Used for any element traversal that is not entirely under lock.
996     * Such traversals must handle both:
997     * - dequeued nodes (p.next == p)
998     * - (possibly multiple) interior removed nodes (p.item == null)
999     */
1000     Node<E> succ(Node<E> p) {
1001 jsr166 1.76 if (p == (p = p.next))
1002     p = first;
1003     return p;
1004 jsr166 1.67 }
1005    
1006     /**
1007 dl 1.1 * Returns an iterator over the elements in this deque in proper sequence.
1008 jsr166 1.9 * The elements will be returned in order from first (head) to last (tail).
1009 jsr166 1.26 *
1010 jsr166 1.51 * <p>The returned iterator is
1011     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1012 dl 1.1 *
1013 jsr166 1.9 * @return an iterator over the elements in this deque in proper sequence
1014 dl 1.1 */
1015     public Iterator<E> iterator() {
1016     return new Itr();
1017     }
1018    
1019     /**
1020 dl 1.14 * Returns an iterator over the elements in this deque in reverse
1021     * sequential order. The elements will be returned in order from
1022     * last (tail) to first (head).
1023 jsr166 1.26 *
1024 jsr166 1.51 * <p>The returned iterator is
1025     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1026 jsr166 1.26 *
1027     * @return an iterator over the elements in this deque in reverse order
1028 dl 1.14 */
1029     public Iterator<E> descendingIterator() {
1030     return new DescendingItr();
1031     }
1032    
1033     /**
1034 jsr166 1.58 * Base class for LinkedBlockingDeque iterators.
1035 dl 1.1 */
1036 dl 1.16 private abstract class AbstractItr implements Iterator<E> {
1037 jsr166 1.15 /**
1038 jsr166 1.58 * The next node to return in next().
1039 dl 1.14 */
1040 jsr166 1.28 Node<E> next;
1041 dl 1.1
1042     /**
1043     * nextItem holds on to item fields because once we claim that
1044     * an element exists in hasNext(), we must return item read
1045 jsr166 1.67 * under lock even if it was in the process of being removed
1046     * when hasNext() was called.
1047 jsr166 1.3 */
1048 dl 1.14 E nextItem;
1049 dl 1.1
1050     /**
1051     * Node returned by most recent call to next. Needed by remove.
1052     * Reset to null if this element is deleted by a call to remove.
1053     */
1054 dl 1.16 private Node<E> lastRet;
1055    
1056 jsr166 1.21 abstract Node<E> firstNode();
1057     abstract Node<E> nextNode(Node<E> n);
1058    
1059 jsr166 1.66 private Node<E> succ(Node<E> p) {
1060 jsr166 1.76 if (p == (p = nextNode(p)))
1061     p = firstNode();
1062     return p;
1063 jsr166 1.66 }
1064    
1065 dl 1.16 AbstractItr() {
1066 jsr166 1.21 // set to initial position
1067     final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1068     lock.lock();
1069     try {
1070 jsr166 1.66 if ((next = firstNode()) != null)
1071     nextItem = next.item;
1072 jsr166 1.21 } finally {
1073 jsr166 1.65 // checkInvariants();
1074 jsr166 1.21 lock.unlock();
1075     }
1076 dl 1.16 }
1077 dl 1.1
1078 jsr166 1.67 public boolean hasNext() {
1079     return next != null;
1080     }
1081    
1082     public E next() {
1083     Node<E> p;
1084     if ((p = next) == null)
1085     throw new NoSuchElementException();
1086     lastRet = p;
1087 jsr166 1.69 E x = nextItem;
1088 jsr166 1.21 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1089     lock.lock();
1090     try {
1091 jsr166 1.69 E e = null;
1092     for (p = nextNode(p); p != null && (e = p.item) == null; )
1093     p = succ(p);
1094     next = p;
1095     nextItem = e;
1096 jsr166 1.21 } finally {
1097 jsr166 1.65 // checkInvariants();
1098 jsr166 1.21 lock.unlock();
1099     }
1100 jsr166 1.69 return x;
1101 jsr166 1.21 }
1102 dl 1.1
1103 jsr166 1.67 public void forEachRemaining(Consumer<? super E> action) {
1104     // A variant of forEachFrom
1105     Objects.requireNonNull(action);
1106     Node<E> p;
1107     if ((p = next) == null) return;
1108 jsr166 1.71 lastRet = p;
1109 jsr166 1.67 next = null;
1110     final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1111 jsr166 1.78 final int batchSize = 64;
1112 jsr166 1.67 Object[] es = null;
1113     int n, len = 1;
1114     do {
1115     lock.lock();
1116     try {
1117     if (es == null) {
1118     p = nextNode(p);
1119     for (Node<E> q = p; q != null; q = succ(q))
1120     if (q.item != null && ++len == batchSize)
1121     break;
1122     es = new Object[len];
1123     es[0] = nextItem;
1124     nextItem = null;
1125     n = 1;
1126     } else
1127     n = 0;
1128     for (; p != null && n < len; p = succ(p))
1129     if ((es[n] = p.item) != null) {
1130     lastRet = p;
1131     n++;
1132     }
1133     } finally {
1134     // checkInvariants();
1135     lock.unlock();
1136     }
1137     for (int i = 0; i < n; i++) {
1138     @SuppressWarnings("unchecked") E e = (E) es[i];
1139     action.accept(e);
1140     }
1141     } while (n > 0 && p != null);
1142 dl 1.1 }
1143    
1144     public void remove() {
1145 dl 1.14 Node<E> n = lastRet;
1146 dl 1.1 if (n == null)
1147     throw new IllegalStateException();
1148 dl 1.14 lastRet = null;
1149     final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1150     lock.lock();
1151     try {
1152 jsr166 1.21 if (n.item != null)
1153     unlink(n);
1154 dl 1.14 } finally {
1155 jsr166 1.65 // checkInvariants();
1156 dl 1.14 lock.unlock();
1157     }
1158     }
1159     }
1160    
1161 jsr166 1.21 /** Forward iterator */
1162     private class Itr extends AbstractItr {
1163 jsr166 1.68 Itr() {} // prevent access constructor creation
1164 jsr166 1.21 Node<E> firstNode() { return first; }
1165     Node<E> nextNode(Node<E> n) { return n.next; }
1166     }
1167    
1168     /** Descending iterator */
1169 dl 1.16 private class DescendingItr extends AbstractItr {
1170 jsr166 1.68 DescendingItr() {} // prevent access constructor creation
1171 jsr166 1.21 Node<E> firstNode() { return last; }
1172     Node<E> nextNode(Node<E> n) { return n.prev; }
1173 dl 1.14 }
1174    
1175 jsr166 1.66 /**
1176     * A customized variant of Spliterators.IteratorSpliterator.
1177     * Keep this class in sync with (very similar) LBQSpliterator.
1178     */
1179 jsr166 1.64 private final class LBDSpliterator implements Spliterator<E> {
1180 dl 1.43 static final int MAX_BATCH = 1 << 25; // max batch array size;
1181 dl 1.36 Node<E> current; // current node; null until initialized
1182     int batch; // batch size for splits
1183     boolean exhausted; // true when no more nodes
1184 jsr166 1.66 long est = size(); // size estimate
1185    
1186     LBDSpliterator() {}
1187 jsr166 1.64
1188 dl 1.36 public long estimateSize() { return est; }
1189    
1190     public Spliterator<E> trySplit() {
1191 dl 1.43 Node<E> h;
1192 jsr166 1.41 if (!exhausted &&
1193 jsr166 1.66 ((h = current) != null || (h = first) != null)
1194 jsr166 1.60 && h.next != null) {
1195 jsr166 1.73 int n = batch = Math.min(batch + 1, MAX_BATCH);
1196 dl 1.47 Object[] a = new Object[n];
1197 jsr166 1.64 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1198 dl 1.36 int i = 0;
1199     Node<E> p = current;
1200     lock.lock();
1201     try {
1202 jsr166 1.66 if (p != null || (p = first) != null)
1203     for (; p != null && i < n; p = succ(p))
1204     if ((a[i] = p.item) != null)
1205     i++;
1206 dl 1.36 } finally {
1207 jsr166 1.65 // checkInvariants();
1208 dl 1.36 lock.unlock();
1209     }
1210     if ((current = p) == null) {
1211     est = 0L;
1212     exhausted = true;
1213     }
1214 dl 1.40 else if ((est -= i) < 0L)
1215     est = 0L;
1216 jsr166 1.73 if (i > 0)
1217 dl 1.43 return Spliterators.spliterator
1218 jsr166 1.57 (a, 0, i, (Spliterator.ORDERED |
1219     Spliterator.NONNULL |
1220     Spliterator.CONCURRENT));
1221 dl 1.36 }
1222     return null;
1223     }
1224    
1225 jsr166 1.66 public boolean tryAdvance(Consumer<? super E> action) {
1226 jsr166 1.67 Objects.requireNonNull(action);
1227 jsr166 1.66 if (!exhausted) {
1228 jsr166 1.70 E e = null;
1229 jsr166 1.66 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1230 dl 1.36 lock.lock();
1231     try {
1232 jsr166 1.71 Node<E> p;
1233     if ((p = current) != null || (p = first) != null)
1234 jsr166 1.66 do {
1235     e = p.item;
1236     p = succ(p);
1237     } while (e == null && p != null);
1238 jsr166 1.72 if ((current = p) == null)
1239     exhausted = true;
1240 dl 1.36 } finally {
1241 jsr166 1.65 // checkInvariants();
1242 dl 1.36 lock.unlock();
1243     }
1244 jsr166 1.66 if (e != null) {
1245 jsr166 1.62 action.accept(e);
1246 jsr166 1.66 return true;
1247 jsr166 1.62 }
1248 dl 1.36 }
1249 jsr166 1.66 return false;
1250 dl 1.36 }
1251    
1252 jsr166 1.67 public void forEachRemaining(Consumer<? super E> action) {
1253     Objects.requireNonNull(action);
1254     if (!exhausted) {
1255     exhausted = true;
1256     Node<E> p = current;
1257     current = null;
1258     forEachFrom(action, p);
1259     }
1260     }
1261    
1262 dl 1.36 public int characteristics() {
1263 jsr166 1.60 return (Spliterator.ORDERED |
1264     Spliterator.NONNULL |
1265     Spliterator.CONCURRENT);
1266 dl 1.36 }
1267     }
1268    
1269 jsr166 1.50 /**
1270     * Returns a {@link Spliterator} over the elements in this deque.
1271     *
1272 jsr166 1.51 * <p>The returned spliterator is
1273     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1274     *
1275 jsr166 1.50 * <p>The {@code Spliterator} reports {@link Spliterator#CONCURRENT},
1276     * {@link Spliterator#ORDERED}, and {@link Spliterator#NONNULL}.
1277     *
1278     * @implNote
1279     * The {@code Spliterator} implements {@code trySplit} to permit limited
1280     * parallelism.
1281     *
1282     * @return a {@code Spliterator} over the elements in this deque
1283     * @since 1.8
1284     */
1285 dl 1.39 public Spliterator<E> spliterator() {
1286 jsr166 1.64 return new LBDSpliterator();
1287 dl 1.36 }
1288    
1289 dl 1.1 /**
1290 jsr166 1.67 * @throws NullPointerException {@inheritDoc}
1291     */
1292     public void forEach(Consumer<? super E> action) {
1293     Objects.requireNonNull(action);
1294     forEachFrom(action, null);
1295     }
1296    
1297     /**
1298     * Runs action on each element found during a traversal starting at p.
1299     * If p is null, traversal starts at head.
1300     */
1301     void forEachFrom(Consumer<? super E> action, Node<E> p) {
1302     // Extract batches of elements while holding the lock; then
1303     // run the action on the elements while not
1304     final ReentrantLock lock = this.lock;
1305 jsr166 1.78 final int batchSize = 64; // max number of elements per batch
1306 jsr166 1.67 Object[] es = null; // container for batch of elements
1307     int n, len = 0;
1308     do {
1309     lock.lock();
1310     try {
1311     if (es == null) {
1312     if (p == null) p = first;
1313     for (Node<E> q = p; q != null; q = succ(q))
1314     if (q.item != null && ++len == batchSize)
1315     break;
1316     es = new Object[len];
1317     }
1318     for (n = 0; p != null && n < len; p = succ(p))
1319     if ((es[n] = p.item) != null)
1320     n++;
1321     } finally {
1322     // checkInvariants();
1323     lock.unlock();
1324     }
1325     for (int i = 0; i < n; i++) {
1326     @SuppressWarnings("unchecked") E e = (E) es[i];
1327     action.accept(e);
1328     }
1329     } while (n > 0 && p != null);
1330     }
1331    
1332     /**
1333 jsr166 1.74 * @throws NullPointerException {@inheritDoc}
1334     */
1335     public boolean removeIf(Predicate<? super E> filter) {
1336     Objects.requireNonNull(filter);
1337     return bulkRemove(filter);
1338     }
1339    
1340     /**
1341     * @throws NullPointerException {@inheritDoc}
1342     */
1343     public boolean removeAll(Collection<?> c) {
1344     Objects.requireNonNull(c);
1345     return bulkRemove(e -> c.contains(e));
1346     }
1347    
1348     /**
1349     * @throws NullPointerException {@inheritDoc}
1350     */
1351     public boolean retainAll(Collection<?> c) {
1352     Objects.requireNonNull(c);
1353     return bulkRemove(e -> !c.contains(e));
1354     }
1355    
1356     /** Implementation of bulk remove methods. */
1357     @SuppressWarnings("unchecked")
1358     private boolean bulkRemove(Predicate<? super E> filter) {
1359     boolean removed = false;
1360 jsr166 1.81 final ReentrantLock lock = this.lock;
1361 jsr166 1.74 Node<E> p = null;
1362     Node<E>[] nodes = null;
1363     int n, len = 0;
1364     do {
1365     // 1. Extract batch of up to 64 elements while holding the lock.
1366     lock.lock();
1367     try {
1368 jsr166 1.81 if (nodes == null) { // first batch; initialize
1369     p = first;
1370 jsr166 1.74 for (Node<E> q = p; q != null; q = succ(q))
1371     if (q.item != null && ++len == 64)
1372     break;
1373     nodes = (Node<E>[]) new Node<?>[len];
1374     }
1375     for (n = 0; p != null && n < len; p = succ(p))
1376     nodes[n++] = p;
1377     } finally {
1378     // checkInvariants();
1379     lock.unlock();
1380     }
1381    
1382     // 2. Run the filter on the elements while lock is free.
1383 jsr166 1.81 long deathRow = 0L; // "bitset" of size 64
1384 jsr166 1.74 for (int i = 0; i < n; i++) {
1385     final E e;
1386     if ((e = nodes[i].item) != null && filter.test(e))
1387     deathRow |= 1L << i;
1388     }
1389    
1390     // 3. Remove any filtered elements while holding the lock.
1391     if (deathRow != 0) {
1392     lock.lock();
1393     try {
1394     for (int i = 0; i < n; i++) {
1395     final Node<E> q;
1396     if ((deathRow & (1L << i)) != 0L
1397     && (q = nodes[i]).item != null) {
1398     unlink(q);
1399     removed = true;
1400     }
1401 jsr166 1.81 nodes[i] = null; // help GC
1402 jsr166 1.74 }
1403     } finally {
1404     // checkInvariants();
1405     lock.unlock();
1406     }
1407     }
1408     } while (n > 0 && p != null);
1409     return removed;
1410     }
1411    
1412     /**
1413 jsr166 1.34 * Saves this deque to a stream (that is, serializes it).
1414 dl 1.1 *
1415 jsr166 1.48 * @param s the stream
1416 jsr166 1.49 * @throws java.io.IOException if an I/O error occurs
1417 dl 1.1 * @serialData The capacity (int), followed by elements (each an
1418 jsr166 1.21 * {@code Object}) in the proper order, followed by a null
1419 dl 1.1 */
1420     private void writeObject(java.io.ObjectOutputStream s)
1421     throws java.io.IOException {
1422 jsr166 1.21 final ReentrantLock lock = this.lock;
1423 dl 1.1 lock.lock();
1424     try {
1425     // Write out capacity and any hidden stuff
1426     s.defaultWriteObject();
1427     // Write out all elements in the proper order.
1428     for (Node<E> p = first; p != null; p = p.next)
1429     s.writeObject(p.item);
1430     // Use trailing null as sentinel
1431     s.writeObject(null);
1432     } finally {
1433 jsr166 1.65 // checkInvariants();
1434 dl 1.1 lock.unlock();
1435     }
1436     }
1437    
1438     /**
1439 jsr166 1.31 * Reconstitutes this deque from a stream (that is, deserializes it).
1440 jsr166 1.48 * @param s the stream
1441 jsr166 1.49 * @throws ClassNotFoundException if the class of a serialized object
1442     * could not be found
1443     * @throws java.io.IOException if an I/O error occurs
1444 dl 1.1 */
1445     private void readObject(java.io.ObjectInputStream s)
1446     throws java.io.IOException, ClassNotFoundException {
1447     s.defaultReadObject();
1448     count = 0;
1449     first = null;
1450     last = null;
1451     // Read in all elements and place in queue
1452     for (;;) {
1453 jsr166 1.67 @SuppressWarnings("unchecked") E item = (E)s.readObject();
1454 dl 1.1 if (item == null)
1455     break;
1456     add(item);
1457     }
1458     }
1459 jsr166 1.3
1460 jsr166 1.65 void checkInvariants() {
1461     // assert lock.isHeldByCurrentThread();
1462     // Nodes may get self-linked or lose their item, but only
1463     // after being unlinked and becoming unreachable from first.
1464     for (Node<E> p = first; p != null; p = p.next) {
1465     // assert p.next != p;
1466     // assert p.item != null;
1467     }
1468     }
1469    
1470 dl 1.1 }