ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/LinkedBlockingDeque.java
Revision: 1.23
Committed: Tue Sep 28 11:05:19 2010 UTC (13 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.22: +26 -22 lines
Log Message:
Move more allocations outside of locks to reduce footprint

File Contents

# Content
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 * http://creativecommons.org/licenses/publicdomain
5 */
6
7 package java.util.concurrent;
8
9 import java.util.AbstractQueue;
10 import java.util.Collection;
11 import java.util.Iterator;
12 import java.util.NoSuchElementException;
13 import java.util.concurrent.locks.Condition;
14 import java.util.concurrent.locks.ReentrantLock;
15
16 /**
17 * An optionally-bounded {@linkplain BlockingDeque blocking deque} based on
18 * linked nodes.
19 *
20 * <p> The optional capacity bound constructor argument serves as a
21 * way to prevent excessive expansion. The capacity, if unspecified,
22 * is equal to {@link Integer#MAX_VALUE}. Linked nodes are
23 * dynamically created upon each insertion unless this would bring the
24 * deque above capacity.
25 *
26 * <p>Most operations run in constant time (ignoring time spent
27 * blocking). Exceptions include {@link #remove(Object) remove},
28 * {@link #removeFirstOccurrence removeFirstOccurrence}, {@link
29 * #removeLastOccurrence removeLastOccurrence}, {@link #contains
30 * contains}, {@link #iterator iterator.remove()}, and the bulk
31 * operations, all of which run in linear time.
32 *
33 * <p>This class and its iterator implement all of the
34 * <em>optional</em> methods of the {@link Collection} and {@link
35 * Iterator} interfaces.
36 *
37 * <p>This class is a member of the
38 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
39 * Java Collections Framework</a>.
40 *
41 * @since 1.6
42 * @author Doug Lea
43 * @param <E> the type of elements held in this collection
44 */
45 public class LinkedBlockingDeque<E>
46 extends AbstractQueue<E>
47 implements BlockingDeque<E>, java.io.Serializable {
48
49 /*
50 * Implemented as a simple doubly-linked list protected by a
51 * single lock and using conditions to manage blocking.
52 *
53 * To implement weakly consistent iterators, it appears we need to
54 * keep all Nodes GC-reachable from a predecessor dequeued Node.
55 * That would cause two problems:
56 * - allow a rogue Iterator to cause unbounded memory retention
57 * - cause cross-generational linking of old Nodes to new Nodes if
58 * a Node was tenured while live, which generational GCs have a
59 * hard time dealing with, causing repeated major collections.
60 * However, only non-deleted Nodes need to be reachable from
61 * dequeued Nodes, and reachability does not necessarily have to
62 * be of the kind understood by the GC. We use the trick of
63 * linking a Node that has just been dequeued to itself. Such a
64 * self-link implicitly means to jump to "first" (for next links)
65 * or "last" (for prev links).
66 */
67
68 /*
69 * We have "diamond" multiple interface/abstract class inheritance
70 * here, and that introduces ambiguities. Often we want the
71 * BlockingDeque javadoc combined with the AbstractQueue
72 * implementation, so a lot of method specs are duplicated here.
73 */
74
75 private static final long serialVersionUID = -387911632671998426L;
76
77 /** Doubly-linked list node class */
78 static final class Node<E> {
79 /**
80 * The item, or null if this node has been removed.
81 */
82 E item;
83
84 /**
85 * One of:
86 * - the real predecessor Node
87 * - this Node, meaning the predecessor is tail
88 * - null, meaning there is no predecessor
89 */
90 Node<E> prev;
91
92 /**
93 * One of:
94 * - the real successor Node
95 * - this Node, meaning the successor is head
96 * - null, meaning there is no successor
97 */
98 Node<E> next;
99
100 Node(E x) {
101 item = x;
102 }
103 }
104
105 /**
106 * Pointer to first node.
107 * Invariant: (first == null && last == null) ||
108 * (first.prev == null && first.item != null)
109 */
110 transient Node<E> first;
111
112 /**
113 * Pointer to last node.
114 * Invariant: (first == null && last == null) ||
115 * (last.next == null && last.item != null)
116 */
117 transient Node<E> last;
118
119 /** Number of items in the deque */
120 private transient int count;
121
122 /** Maximum number of items in the deque */
123 private final int capacity;
124
125 /** Main lock guarding all access */
126 final ReentrantLock lock = new ReentrantLock();
127
128 /** Condition for waiting takes */
129 private final Condition notEmpty = lock.newCondition();
130
131 /** Condition for waiting puts */
132 private final Condition notFull = lock.newCondition();
133
134 /**
135 * Creates a {@code LinkedBlockingDeque} with a capacity of
136 * {@link Integer#MAX_VALUE}.
137 */
138 public LinkedBlockingDeque() {
139 this(Integer.MAX_VALUE);
140 }
141
142 /**
143 * Creates a {@code LinkedBlockingDeque} with the given (fixed) capacity.
144 *
145 * @param capacity the capacity of this deque
146 * @throws IllegalArgumentException if {@code capacity} is less than 1
147 */
148 public LinkedBlockingDeque(int capacity) {
149 if (capacity <= 0) throw new IllegalArgumentException();
150 this.capacity = capacity;
151 }
152
153 /**
154 * Creates a {@code LinkedBlockingDeque} with a capacity of
155 * {@link Integer#MAX_VALUE}, initially containing the elements of
156 * the given collection, added in traversal order of the
157 * collection's iterator.
158 *
159 * @param c the collection of elements to initially contain
160 * @throws NullPointerException if the specified collection or any
161 * of its elements are null
162 */
163 public LinkedBlockingDeque(Collection<? extends E> c) {
164 this(Integer.MAX_VALUE);
165 final ReentrantLock lock = this.lock;
166 lock.lock(); // Never contended, but necessary for visibility
167 try {
168 for (E e : c) {
169 if (e == null)
170 throw new NullPointerException();
171 if (!linkLast(new Node<E>(e)))
172 throw new IllegalStateException("Deque full");
173 }
174 } finally {
175 lock.unlock();
176 }
177 }
178
179
180 // Basic linking and unlinking operations, called only while holding lock
181
182 /**
183 * Links node as first element, or returns false if full.
184 */
185 private boolean linkFirst(Node<E> node) {
186 // assert lock.isHeldByCurrentThread();
187 if (count >= capacity)
188 return false;
189 Node<E> f = first;
190 node.next = f;
191 first = node;
192 if (last == null)
193 last = node;
194 else
195 f.prev = node;
196 ++count;
197 notEmpty.signal();
198 return true;
199 }
200
201 /**
202 * Links node as last element, or returns false if full.
203 */
204 private boolean linkLast(Node<E> node) {
205 // assert lock.isHeldByCurrentThread();
206 if (count >= capacity)
207 return false;
208 Node<E> l = last;
209 node.prev = l;
210 last = node;
211 if (first == null)
212 first = node;
213 else
214 l.next = node;
215 ++count;
216 notEmpty.signal();
217 return true;
218 }
219
220 /**
221 * Removes and returns first element, or null if empty.
222 */
223 private E unlinkFirst() {
224 // assert lock.isHeldByCurrentThread();
225 Node<E> f = first;
226 if (f == null)
227 return null;
228 Node<E> n = f.next;
229 E item = f.item;
230 f.item = null;
231 f.next = f; // help GC
232 first = n;
233 if (n == null)
234 last = null;
235 else
236 n.prev = null;
237 --count;
238 notFull.signal();
239 return item;
240 }
241
242 /**
243 * Removes and returns last element, or null if empty.
244 */
245 private E unlinkLast() {
246 // assert lock.isHeldByCurrentThread();
247 Node<E> l = last;
248 if (l == null)
249 return null;
250 Node<E> p = l.prev;
251 E item = l.item;
252 l.item = null;
253 l.prev = l; // help GC
254 last = p;
255 if (p == null)
256 first = null;
257 else
258 p.next = null;
259 --count;
260 notFull.signal();
261 return item;
262 }
263
264 /**
265 * Unlinks x.
266 */
267 void unlink(Node<E> x) {
268 // assert lock.isHeldByCurrentThread();
269 Node<E> p = x.prev;
270 Node<E> n = x.next;
271 if (p == null) {
272 unlinkFirst();
273 } else if (n == null) {
274 unlinkLast();
275 } else {
276 p.next = n;
277 n.prev = p;
278 x.item = null;
279 // Don't mess with x's links. They may still be in use by
280 // an iterator.
281 --count;
282 notFull.signal();
283 }
284 }
285
286 // BlockingDeque methods
287
288 /**
289 * @throws IllegalStateException {@inheritDoc}
290 * @throws NullPointerException {@inheritDoc}
291 */
292 public void addFirst(E e) {
293 if (!offerFirst(e))
294 throw new IllegalStateException("Deque full");
295 }
296
297 /**
298 * @throws IllegalStateException {@inheritDoc}
299 * @throws NullPointerException {@inheritDoc}
300 */
301 public void addLast(E e) {
302 if (!offerLast(e))
303 throw new IllegalStateException("Deque full");
304 }
305
306 /**
307 * @throws NullPointerException {@inheritDoc}
308 */
309 public boolean offerFirst(E e) {
310 if (e == null) throw new NullPointerException();
311 Node<E> node = new Node<E>(e);
312 final ReentrantLock lock = this.lock;
313 lock.lock();
314 try {
315 return linkFirst(node);
316 } finally {
317 lock.unlock();
318 }
319 }
320
321 /**
322 * @throws NullPointerException {@inheritDoc}
323 */
324 public boolean offerLast(E e) {
325 if (e == null) throw new NullPointerException();
326 Node<E> node = new Node<E>(e);
327 final ReentrantLock lock = this.lock;
328 lock.lock();
329 try {
330 return linkLast(node);
331 } finally {
332 lock.unlock();
333 }
334 }
335
336 /**
337 * @throws NullPointerException {@inheritDoc}
338 * @throws InterruptedException {@inheritDoc}
339 */
340 public void putFirst(E e) throws InterruptedException {
341 if (e == null) throw new NullPointerException();
342 Node<E> node = new Node<E>(e);
343 final ReentrantLock lock = this.lock;
344 lock.lock();
345 try {
346 while (!linkFirst(node))
347 notFull.await();
348 } finally {
349 lock.unlock();
350 }
351 }
352
353 /**
354 * @throws NullPointerException {@inheritDoc}
355 * @throws InterruptedException {@inheritDoc}
356 */
357 public void putLast(E e) throws InterruptedException {
358 if (e == null) throw new NullPointerException();
359 Node<E> node = new Node<E>(e);
360 final ReentrantLock lock = this.lock;
361 lock.lock();
362 try {
363 while (!linkLast(node))
364 notFull.await();
365 } finally {
366 lock.unlock();
367 }
368 }
369
370 /**
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 Node<E> node = new Node<E>(e);
378 long nanos = unit.toNanos(timeout);
379 final ReentrantLock lock = this.lock;
380 lock.lockInterruptibly();
381 try {
382 while (!linkFirst(node)) {
383 if (nanos <= 0)
384 return false;
385 nanos = notFull.awaitNanos(nanos);
386 }
387 return true;
388 } finally {
389 lock.unlock();
390 }
391 }
392
393 /**
394 * @throws NullPointerException {@inheritDoc}
395 * @throws InterruptedException {@inheritDoc}
396 */
397 public boolean offerLast(E e, long timeout, TimeUnit unit)
398 throws InterruptedException {
399 if (e == null) throw new NullPointerException();
400 Node<E> node = new Node<E>(e);
401 long nanos = unit.toNanos(timeout);
402 final ReentrantLock lock = this.lock;
403 lock.lockInterruptibly();
404 try {
405 while (!linkLast(node)) {
406 if (nanos <= 0)
407 return false;
408 nanos = notFull.awaitNanos(nanos);
409 }
410 return true;
411 } finally {
412 lock.unlock();
413 }
414 }
415
416 /**
417 * @throws NoSuchElementException {@inheritDoc}
418 */
419 public E removeFirst() {
420 E x = pollFirst();
421 if (x == null) throw new NoSuchElementException();
422 return x;
423 }
424
425 /**
426 * @throws NoSuchElementException {@inheritDoc}
427 */
428 public E removeLast() {
429 E x = pollLast();
430 if (x == null) throw new NoSuchElementException();
431 return x;
432 }
433
434 public E pollFirst() {
435 final ReentrantLock lock = this.lock;
436 lock.lock();
437 try {
438 return unlinkFirst();
439 } finally {
440 lock.unlock();
441 }
442 }
443
444 public E pollLast() {
445 final ReentrantLock lock = this.lock;
446 lock.lock();
447 try {
448 return unlinkLast();
449 } finally {
450 lock.unlock();
451 }
452 }
453
454 public E takeFirst() throws InterruptedException {
455 final ReentrantLock lock = this.lock;
456 lock.lock();
457 try {
458 E x;
459 while ( (x = unlinkFirst()) == null)
460 notEmpty.await();
461 return x;
462 } finally {
463 lock.unlock();
464 }
465 }
466
467 public E takeLast() throws InterruptedException {
468 final ReentrantLock lock = this.lock;
469 lock.lock();
470 try {
471 E x;
472 while ( (x = unlinkLast()) == null)
473 notEmpty.await();
474 return x;
475 } finally {
476 lock.unlock();
477 }
478 }
479
480 public E pollFirst(long timeout, TimeUnit unit)
481 throws InterruptedException {
482 long nanos = unit.toNanos(timeout);
483 final ReentrantLock lock = this.lock;
484 lock.lockInterruptibly();
485 try {
486 E x;
487 while ( (x = unlinkFirst()) == null) {
488 if (nanos <= 0)
489 return null;
490 nanos = notEmpty.awaitNanos(nanos);
491 }
492 return x;
493 } finally {
494 lock.unlock();
495 }
496 }
497
498 public E pollLast(long timeout, TimeUnit unit)
499 throws InterruptedException {
500 long nanos = unit.toNanos(timeout);
501 final ReentrantLock lock = this.lock;
502 lock.lockInterruptibly();
503 try {
504 E x;
505 while ( (x = unlinkLast()) == null) {
506 if (nanos <= 0)
507 return null;
508 nanos = notEmpty.awaitNanos(nanos);
509 }
510 return x;
511 } finally {
512 lock.unlock();
513 }
514 }
515
516 /**
517 * @throws NoSuchElementException {@inheritDoc}
518 */
519 public E getFirst() {
520 E x = peekFirst();
521 if (x == null) throw new NoSuchElementException();
522 return x;
523 }
524
525 /**
526 * @throws NoSuchElementException {@inheritDoc}
527 */
528 public E getLast() {
529 E x = peekLast();
530 if (x == null) throw new NoSuchElementException();
531 return x;
532 }
533
534 public E peekFirst() {
535 final ReentrantLock lock = this.lock;
536 lock.lock();
537 try {
538 return (first == null) ? null : first.item;
539 } finally {
540 lock.unlock();
541 }
542 }
543
544 public E peekLast() {
545 final ReentrantLock lock = this.lock;
546 lock.lock();
547 try {
548 return (last == null) ? null : last.item;
549 } finally {
550 lock.unlock();
551 }
552 }
553
554 public boolean removeFirstOccurrence(Object o) {
555 if (o == null) return false;
556 final ReentrantLock lock = this.lock;
557 lock.lock();
558 try {
559 for (Node<E> p = first; p != null; p = p.next) {
560 if (o.equals(p.item)) {
561 unlink(p);
562 return true;
563 }
564 }
565 return false;
566 } finally {
567 lock.unlock();
568 }
569 }
570
571 public boolean removeLastOccurrence(Object o) {
572 if (o == null) return false;
573 final ReentrantLock lock = this.lock;
574 lock.lock();
575 try {
576 for (Node<E> p = last; p != null; p = p.prev) {
577 if (o.equals(p.item)) {
578 unlink(p);
579 return true;
580 }
581 }
582 return false;
583 } finally {
584 lock.unlock();
585 }
586 }
587
588 // BlockingQueue methods
589
590 /**
591 * Inserts the specified element at the end of this deque unless it would
592 * violate capacity restrictions. When using a capacity-restricted deque,
593 * it is generally preferable to use method {@link #offer(Object) offer}.
594 *
595 * <p>This method is equivalent to {@link #addLast}.
596 *
597 * @throws IllegalStateException if the element cannot be added at this
598 * time due to capacity restrictions
599 * @throws NullPointerException if the specified element is null
600 */
601 public boolean add(E e) {
602 addLast(e);
603 return true;
604 }
605
606 /**
607 * @throws NullPointerException if the specified element is null
608 */
609 public boolean offer(E e) {
610 return offerLast(e);
611 }
612
613 /**
614 * @throws NullPointerException {@inheritDoc}
615 * @throws InterruptedException {@inheritDoc}
616 */
617 public void put(E e) throws InterruptedException {
618 putLast(e);
619 }
620
621 /**
622 * @throws NullPointerException {@inheritDoc}
623 * @throws InterruptedException {@inheritDoc}
624 */
625 public boolean offer(E e, long timeout, TimeUnit unit)
626 throws InterruptedException {
627 return offerLast(e, timeout, unit);
628 }
629
630 /**
631 * Retrieves and removes the head of the queue represented by this deque.
632 * This method differs from {@link #poll poll} only in that it throws an
633 * exception if this deque is empty.
634 *
635 * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
636 *
637 * @return the head of the queue represented by this deque
638 * @throws NoSuchElementException if this deque is empty
639 */
640 public E remove() {
641 return removeFirst();
642 }
643
644 public E poll() {
645 return pollFirst();
646 }
647
648 public E take() throws InterruptedException {
649 return takeFirst();
650 }
651
652 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
653 return pollFirst(timeout, unit);
654 }
655
656 /**
657 * Retrieves, but does not remove, the head of the queue represented by
658 * this deque. This method differs from {@link #peek peek} only in that
659 * it throws an exception if this deque is empty.
660 *
661 * <p>This method is equivalent to {@link #getFirst() getFirst}.
662 *
663 * @return the head of the queue represented by this deque
664 * @throws NoSuchElementException if this deque is empty
665 */
666 public E element() {
667 return getFirst();
668 }
669
670 public E peek() {
671 return peekFirst();
672 }
673
674 /**
675 * Returns the number of additional elements that this deque can ideally
676 * (in the absence of memory or resource constraints) accept without
677 * blocking. This is always equal to the initial capacity of this deque
678 * less the current {@code size} of this deque.
679 *
680 * <p>Note that you <em>cannot</em> always tell if an attempt to insert
681 * an element will succeed by inspecting {@code remainingCapacity}
682 * because it may be the case that another thread is about to
683 * insert or remove an element.
684 */
685 public int remainingCapacity() {
686 final ReentrantLock lock = this.lock;
687 lock.lock();
688 try {
689 return capacity - count;
690 } finally {
691 lock.unlock();
692 }
693 }
694
695 /**
696 * @throws UnsupportedOperationException {@inheritDoc}
697 * @throws ClassCastException {@inheritDoc}
698 * @throws NullPointerException {@inheritDoc}
699 * @throws IllegalArgumentException {@inheritDoc}
700 */
701 public int drainTo(Collection<? super E> c) {
702 return drainTo(c, Integer.MAX_VALUE);
703 }
704
705 /**
706 * @throws UnsupportedOperationException {@inheritDoc}
707 * @throws ClassCastException {@inheritDoc}
708 * @throws NullPointerException {@inheritDoc}
709 * @throws IllegalArgumentException {@inheritDoc}
710 */
711 public int drainTo(Collection<? super E> c, int maxElements) {
712 if (c == null)
713 throw new NullPointerException();
714 if (c == this)
715 throw new IllegalArgumentException();
716 final ReentrantLock lock = this.lock;
717 lock.lock();
718 try {
719 int n = Math.min(maxElements, count);
720 for (int i = 0; i < n; i++) {
721 c.add(first.item); // In this order, in case add() throws.
722 unlinkFirst();
723 }
724 return n;
725 } finally {
726 lock.unlock();
727 }
728 }
729
730 // Stack methods
731
732 /**
733 * @throws IllegalStateException {@inheritDoc}
734 * @throws NullPointerException {@inheritDoc}
735 */
736 public void push(E e) {
737 addFirst(e);
738 }
739
740 /**
741 * @throws NoSuchElementException {@inheritDoc}
742 */
743 public E pop() {
744 return removeFirst();
745 }
746
747 // Collection methods
748
749 /**
750 * Removes the first occurrence of the specified element from this deque.
751 * If the deque does not contain the element, it is unchanged.
752 * More formally, removes the first element {@code e} such that
753 * {@code o.equals(e)} (if such an element exists).
754 * Returns {@code true} if this deque contained the specified element
755 * (or equivalently, if this deque changed as a result of the call).
756 *
757 * <p>This method is equivalent to
758 * {@link #removeFirstOccurrence(Object) removeFirstOccurrence}.
759 *
760 * @param o element to be removed from this deque, if present
761 * @return {@code true} if this deque changed as a result of the call
762 */
763 public boolean remove(Object o) {
764 return removeFirstOccurrence(o);
765 }
766
767 /**
768 * Returns the number of elements in this deque.
769 *
770 * @return the number of elements in this deque
771 */
772 public int size() {
773 final ReentrantLock lock = this.lock;
774 lock.lock();
775 try {
776 return count;
777 } finally {
778 lock.unlock();
779 }
780 }
781
782 /**
783 * Returns {@code true} if this deque contains the specified element.
784 * More formally, returns {@code true} if and only if this deque contains
785 * at least one element {@code e} such that {@code o.equals(e)}.
786 *
787 * @param o object to be checked for containment in this deque
788 * @return {@code true} if this deque contains the specified element
789 */
790 public boolean contains(Object o) {
791 if (o == null) return false;
792 final ReentrantLock lock = this.lock;
793 lock.lock();
794 try {
795 for (Node<E> p = first; p != null; p = p.next)
796 if (o.equals(p.item))
797 return true;
798 return false;
799 } finally {
800 lock.unlock();
801 }
802 }
803
804 /*
805 * TODO: Add support for more efficient bulk operations.
806 *
807 * We don't want to acquire the lock for every iteration, but we
808 * also want other threads a chance to interact with the
809 * collection, especially when count is close to capacity.
810 */
811
812 // /**
813 // * Adds all of the elements in the specified collection to this
814 // * queue. Attempts to addAll of a queue to itself result in
815 // * {@code IllegalArgumentException}. Further, the behavior of
816 // * this operation is undefined if the specified collection is
817 // * modified while the operation is in progress.
818 // *
819 // * @param c collection containing elements to be added to this queue
820 // * @return {@code true} if this queue changed as a result of the call
821 // * @throws ClassCastException {@inheritDoc}
822 // * @throws NullPointerException {@inheritDoc}
823 // * @throws IllegalArgumentException {@inheritDoc}
824 // * @throws IllegalStateException {@inheritDoc}
825 // * @see #add(Object)
826 // */
827 // public boolean addAll(Collection<? extends E> c) {
828 // if (c == null)
829 // throw new NullPointerException();
830 // if (c == this)
831 // throw new IllegalArgumentException();
832 // final ReentrantLock lock = this.lock;
833 // lock.lock();
834 // try {
835 // boolean modified = false;
836 // for (E e : c)
837 // if (linkLast(e))
838 // modified = true;
839 // return modified;
840 // } finally {
841 // lock.unlock();
842 // }
843 // }
844
845 /**
846 * Returns an array containing all of the elements in this deque, in
847 * proper sequence (from first to last element).
848 *
849 * <p>The returned array will be "safe" in that no references to it are
850 * maintained by this deque. (In other words, this method must allocate
851 * a new array). The caller is thus free to modify the returned array.
852 *
853 * <p>This method acts as bridge between array-based and collection-based
854 * APIs.
855 *
856 * @return an array containing all of the elements in this deque
857 */
858 @SuppressWarnings("unchecked")
859 public Object[] toArray() {
860 final ReentrantLock lock = this.lock;
861 lock.lock();
862 try {
863 Object[] a = new Object[count];
864 int k = 0;
865 for (Node<E> p = first; p != null; p = p.next)
866 a[k++] = p.item;
867 return a;
868 } finally {
869 lock.unlock();
870 }
871 }
872
873 /**
874 * Returns an array containing all of the elements in this deque, in
875 * proper sequence; the runtime type of the returned array is that of
876 * the specified array. If the deque fits in the specified array, it
877 * is returned therein. Otherwise, a new array is allocated with the
878 * runtime type of the specified array and the size of this deque.
879 *
880 * <p>If this deque fits in the specified array with room to spare
881 * (i.e., the array has more elements than this deque), the element in
882 * the array immediately following the end of the deque is set to
883 * {@code null}.
884 *
885 * <p>Like the {@link #toArray()} method, this method acts as bridge between
886 * array-based and collection-based APIs. Further, this method allows
887 * precise control over the runtime type of the output array, and may,
888 * under certain circumstances, be used to save allocation costs.
889 *
890 * <p>Suppose {@code x} is a deque known to contain only strings.
891 * The following code can be used to dump the deque into a newly
892 * allocated array of {@code String}:
893 *
894 * <pre>
895 * String[] y = x.toArray(new String[0]);</pre>
896 *
897 * Note that {@code toArray(new Object[0])} is identical in function to
898 * {@code toArray()}.
899 *
900 * @param a the array into which the elements of the deque are to
901 * be stored, if it is big enough; otherwise, a new array of the
902 * same runtime type is allocated for this purpose
903 * @return an array containing all of the elements in this deque
904 * @throws ArrayStoreException if the runtime type of the specified array
905 * is not a supertype of the runtime type of every element in
906 * this deque
907 * @throws NullPointerException if the specified array is null
908 */
909 @SuppressWarnings("unchecked")
910 public <T> T[] toArray(T[] a) {
911 final ReentrantLock lock = this.lock;
912 lock.lock();
913 try {
914 if (a.length < count)
915 a = (T[])java.lang.reflect.Array.newInstance
916 (a.getClass().getComponentType(), count);
917
918 int k = 0;
919 for (Node<E> p = first; p != null; p = p.next)
920 a[k++] = (T)p.item;
921 if (a.length > k)
922 a[k] = null;
923 return a;
924 } finally {
925 lock.unlock();
926 }
927 }
928
929 public String toString() {
930 final ReentrantLock lock = this.lock;
931 lock.lock();
932 try {
933 return super.toString();
934 } finally {
935 lock.unlock();
936 }
937 }
938
939 /**
940 * Atomically removes all of the elements from this deque.
941 * The deque will be empty after this call returns.
942 */
943 public void clear() {
944 final ReentrantLock lock = this.lock;
945 lock.lock();
946 try {
947 for (Node<E> f = first; f != null; ) {
948 f.item = null;
949 Node<E> n = f.next;
950 f.prev = null;
951 f.next = null;
952 f = n;
953 }
954 first = last = null;
955 count = 0;
956 notFull.signalAll();
957 } finally {
958 lock.unlock();
959 }
960 }
961
962 /**
963 * Returns an iterator over the elements in this deque in proper sequence.
964 * The elements will be returned in order from first (head) to last (tail).
965 * The returned {@code Iterator} is a "weakly consistent" iterator that
966 * will never throw {@link java.util.ConcurrentModificationException
967 * ConcurrentModificationException},
968 * and guarantees to traverse elements as they existed upon
969 * construction of the iterator, and may (but is not guaranteed to)
970 * reflect any modifications subsequent to construction.
971 *
972 * @return an iterator over the elements in this deque in proper sequence
973 */
974 public Iterator<E> iterator() {
975 return new Itr();
976 }
977
978 /**
979 * Returns an iterator over the elements in this deque in reverse
980 * sequential order. The elements will be returned in order from
981 * last (tail) to first (head).
982 * The returned {@code Iterator} is a "weakly consistent" iterator that
983 * will never throw {@link java.util.ConcurrentModificationException
984 * ConcurrentModificationException},
985 * and guarantees to traverse elements as they existed upon
986 * construction of the iterator, and may (but is not guaranteed to)
987 * reflect any modifications subsequent to construction.
988 */
989 public Iterator<E> descendingIterator() {
990 return new DescendingItr();
991 }
992
993 /**
994 * Base class for Iterators for LinkedBlockingDeque
995 */
996 private abstract class AbstractItr implements Iterator<E> {
997 /**
998 * The next node to return in next()
999 */
1000 Node<E> next;
1001
1002 /**
1003 * nextItem holds on to item fields because once we claim that
1004 * an element exists in hasNext(), we must return item read
1005 * under lock (in advance()) even if it was in the process of
1006 * being removed when hasNext() was called.
1007 */
1008 E nextItem;
1009
1010 /**
1011 * Node returned by most recent call to next. Needed by remove.
1012 * Reset to null if this element is deleted by a call to remove.
1013 */
1014 private Node<E> lastRet;
1015
1016 abstract Node<E> firstNode();
1017 abstract Node<E> nextNode(Node<E> n);
1018
1019 AbstractItr() {
1020 // set to initial position
1021 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1022 lock.lock();
1023 try {
1024 next = firstNode();
1025 nextItem = (next == null) ? null : next.item;
1026 } finally {
1027 lock.unlock();
1028 }
1029 }
1030
1031 /**
1032 * Advances next.
1033 */
1034 void advance() {
1035 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1036 lock.lock();
1037 try {
1038 // assert next != null;
1039 Node<E> s = nextNode(next);
1040 if (s == next) {
1041 next = firstNode();
1042 } else {
1043 // Skip over removed nodes.
1044 // May be necessary if multiple interior Nodes are removed.
1045 while (s != null && s.item == null)
1046 s = nextNode(s);
1047 next = s;
1048 }
1049 nextItem = (next == null) ? null : next.item;
1050 } finally {
1051 lock.unlock();
1052 }
1053 }
1054
1055 public boolean hasNext() {
1056 return next != null;
1057 }
1058
1059 public E next() {
1060 if (next == null)
1061 throw new NoSuchElementException();
1062 lastRet = next;
1063 E x = nextItem;
1064 advance();
1065 return x;
1066 }
1067
1068 public void remove() {
1069 Node<E> n = lastRet;
1070 if (n == null)
1071 throw new IllegalStateException();
1072 lastRet = null;
1073 final ReentrantLock lock = LinkedBlockingDeque.this.lock;
1074 lock.lock();
1075 try {
1076 if (n.item != null)
1077 unlink(n);
1078 } finally {
1079 lock.unlock();
1080 }
1081 }
1082 }
1083
1084 /** Forward iterator */
1085 private class Itr extends AbstractItr {
1086 Node<E> firstNode() { return first; }
1087 Node<E> nextNode(Node<E> n) { return n.next; }
1088 }
1089
1090 /** Descending iterator */
1091 private class DescendingItr extends AbstractItr {
1092 Node<E> firstNode() { return last; }
1093 Node<E> nextNode(Node<E> n) { return n.prev; }
1094 }
1095
1096 /**
1097 * Save the state of this deque to a stream (that is, serialize it).
1098 *
1099 * @serialData The capacity (int), followed by elements (each an
1100 * {@code Object}) in the proper order, followed by a null
1101 * @param s the stream
1102 */
1103 private void writeObject(java.io.ObjectOutputStream s)
1104 throws java.io.IOException {
1105 final ReentrantLock lock = this.lock;
1106 lock.lock();
1107 try {
1108 // Write out capacity and any hidden stuff
1109 s.defaultWriteObject();
1110 // Write out all elements in the proper order.
1111 for (Node<E> p = first; p != null; p = p.next)
1112 s.writeObject(p.item);
1113 // Use trailing null as sentinel
1114 s.writeObject(null);
1115 } finally {
1116 lock.unlock();
1117 }
1118 }
1119
1120 /**
1121 * Reconstitute this deque from a stream (that is,
1122 * deserialize it).
1123 * @param s the stream
1124 */
1125 private void readObject(java.io.ObjectInputStream s)
1126 throws java.io.IOException, ClassNotFoundException {
1127 s.defaultReadObject();
1128 count = 0;
1129 first = null;
1130 last = null;
1131 // Read in all elements and place in queue
1132 for (;;) {
1133 @SuppressWarnings("unchecked")
1134 E item = (E)s.readObject();
1135 if (item == null)
1136 break;
1137 add(item);
1138 }
1139 }
1140
1141 }