ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/PriorityBlockingQueue.java
Revision: 1.117
Committed: Wed Nov 23 20:36:31 2016 UTC (7 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.116: +4 -1 lines
Log Message:
8132964: Spliterator documentation on Priority(Blocking)Queue

File Contents

# User Rev Content
1 dl 1.2 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.33 * Expert Group and released to the public domain, as explained at
4 jsr166 1.71 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.2 */
6    
7 tim 1.1 package java.util.concurrent;
8 tim 1.13
9 dl 1.115 import java.lang.invoke.MethodHandles;
10     import java.lang.invoke.VarHandle;
11 dl 1.86 import java.util.AbstractQueue;
12     import java.util.Arrays;
13     import java.util.Collection;
14     import java.util.Comparator;
15     import java.util.Iterator;
16     import java.util.NoSuchElementException;
17     import java.util.PriorityQueue;
18     import java.util.Queue;
19     import java.util.SortedSet;
20     import java.util.Spliterator;
21 jsr166 1.105 import java.util.concurrent.locks.Condition;
22     import java.util.concurrent.locks.ReentrantLock;
23     import java.util.function.Consumer;
24 tim 1.1
25     /**
26 dl 1.25 * An unbounded {@linkplain BlockingQueue blocking queue} that uses
27     * the same ordering rules as class {@link PriorityQueue} and supplies
28     * blocking retrieval operations. While this queue is logically
29 dl 1.24 * unbounded, attempted additions may fail due to resource exhaustion
30 jsr166 1.63 * (causing {@code OutOfMemoryError}). This class does not permit
31     * {@code null} elements. A priority queue relying on {@linkplain
32 jsr166 1.42 * Comparable natural ordering} also does not permit insertion of
33     * non-comparable objects (doing so results in
34 jsr166 1.63 * {@code ClassCastException}).
35 dl 1.20 *
36 dl 1.38 * <p>This class and its iterator implement all of the
37     * <em>optional</em> methods of the {@link Collection} and {@link
38 dl 1.41 * Iterator} interfaces. The Iterator provided in method {@link
39 jsr166 1.117 * #iterator()} and the Spliterator provided in method {@link #spliterator()}
40     * are <em>not</em> guaranteed to traverse the elements of
41 dl 1.41 * the PriorityBlockingQueue in any particular order. If you need
42     * ordered traversal, consider using
43 jsr166 1.63 * {@code Arrays.sort(pq.toArray())}. Also, method {@code drainTo}
44 dl 1.41 * can be used to <em>remove</em> some or all elements in priority
45     * order and place them in another collection.
46     *
47     * <p>Operations on this class make no guarantees about the ordering
48     * of elements with equal priority. If you need to enforce an
49     * ordering, you can define custom classes or comparators that use a
50     * secondary key to break ties in primary priority values. For
51     * example, here is a class that applies first-in-first-out
52     * tie-breaking to comparable elements. To use it, you would insert a
53 jsr166 1.63 * {@code new FIFOEntry(anEntry)} instead of a plain entry object.
54 dl 1.41 *
55 jsr166 1.109 * <pre> {@code
56 jsr166 1.56 * class FIFOEntry<E extends Comparable<? super E>>
57     * implements Comparable<FIFOEntry<E>> {
58 jsr166 1.58 * static final AtomicLong seq = new AtomicLong(0);
59 dl 1.41 * final long seqNum;
60     * final E entry;
61     * public FIFOEntry(E entry) {
62     * seqNum = seq.getAndIncrement();
63     * this.entry = entry;
64     * }
65     * public E getEntry() { return entry; }
66 jsr166 1.56 * public int compareTo(FIFOEntry<E> other) {
67 dl 1.41 * int res = entry.compareTo(other.entry);
68 jsr166 1.56 * if (res == 0 && other.entry != this.entry)
69     * res = (seqNum < other.seqNum ? -1 : 1);
70 dl 1.41 * return res;
71     * }
72 jsr166 1.56 * }}</pre>
73 dl 1.20 *
74 dl 1.35 * <p>This class is a member of the
75 jsr166 1.53 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
76 dl 1.35 * Java Collections Framework</a>.
77     *
78 dl 1.6 * @since 1.5
79     * @author Doug Lea
80 jsr166 1.104 * @param <E> the type of elements held in this queue
81 dl 1.28 */
82 jsr166 1.82 @SuppressWarnings("unchecked")
83 dl 1.5 public class PriorityBlockingQueue<E> extends AbstractQueue<E>
84 dl 1.15 implements BlockingQueue<E>, java.io.Serializable {
85 dl 1.21 private static final long serialVersionUID = 5595510919245408276L;
86 tim 1.1
87 dl 1.59 /*
88 dl 1.66 * The implementation uses an array-based binary heap, with public
89     * operations protected with a single lock. However, allocation
90     * during resizing uses a simple spinlock (used only while not
91     * holding main lock) in order to allow takes to operate
92     * concurrently with allocation. This avoids repeated
93     * postponement of waiting consumers and consequent element
94     * build-up. The need to back away from lock during allocation
95     * makes it impossible to simply wrap delegated
96     * java.util.PriorityQueue operations within a lock, as was done
97     * in a previous version of this class. To maintain
98     * interoperability, a plain PriorityQueue is still used during
99 jsr166 1.77 * serialization, which maintains compatibility at the expense of
100 dl 1.66 * transiently doubling overhead.
101 dl 1.59 */
102    
103     /**
104     * Default array capacity.
105     */
106     private static final int DEFAULT_INITIAL_CAPACITY = 11;
107    
108     /**
109 dl 1.66 * The maximum size of array to allocate.
110     * Some VMs reserve some header words in an array.
111     * Attempts to allocate larger arrays may result in
112     * OutOfMemoryError: Requested array size exceeds VM limit
113     */
114     private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
115    
116     /**
117 dl 1.59 * Priority queue represented as a balanced binary heap: the two
118     * children of queue[n] are queue[2*n+1] and queue[2*(n+1)]. The
119     * priority queue is ordered by comparator, or by the elements'
120     * natural ordering, if comparator is null: For each node n in the
121     * heap and each descendant d of n, n <= d. The element with the
122     * lowest value is in queue[0], assuming the queue is nonempty.
123     */
124     private transient Object[] queue;
125    
126     /**
127     * The number of elements in the priority queue.
128     */
129 dl 1.66 private transient int size;
130 dl 1.59
131     /**
132     * The comparator, or null if priority queue uses elements'
133     * natural ordering.
134     */
135     private transient Comparator<? super E> comparator;
136    
137     /**
138 jsr166 1.112 * Lock used for all public operations.
139 dl 1.59 */
140 dl 1.66 private final ReentrantLock lock;
141 dl 1.59
142     /**
143 jsr166 1.112 * Condition for blocking when empty.
144 dl 1.59 */
145 dl 1.66 private final Condition notEmpty;
146 dl 1.5
147 dl 1.2 /**
148 dl 1.59 * Spinlock for allocation, acquired via CAS.
149     */
150     private transient volatile int allocationSpinLock;
151    
152     /**
153 dl 1.66 * A plain PriorityQueue used only for serialization,
154     * to maintain compatibility with previous versions
155     * of this class. Non-null only during serialization/deserialization.
156     */
157 jsr166 1.72 private PriorityQueue<E> q;
158 dl 1.66
159     /**
160 jsr166 1.63 * Creates a {@code PriorityBlockingQueue} with the default
161 jsr166 1.42 * initial capacity (11) that orders its elements according to
162     * their {@linkplain Comparable natural ordering}.
163 dl 1.2 */
164     public PriorityBlockingQueue() {
165 dl 1.59 this(DEFAULT_INITIAL_CAPACITY, null);
166 dl 1.2 }
167    
168     /**
169 jsr166 1.63 * Creates a {@code PriorityBlockingQueue} with the specified
170 jsr166 1.42 * initial capacity that orders its elements according to their
171     * {@linkplain Comparable natural ordering}.
172 dl 1.2 *
173 jsr166 1.42 * @param initialCapacity the initial capacity for this priority queue
174 jsr166 1.63 * @throws IllegalArgumentException if {@code initialCapacity} is less
175 jsr166 1.52 * than 1
176 dl 1.2 */
177     public PriorityBlockingQueue(int initialCapacity) {
178 dl 1.59 this(initialCapacity, null);
179 dl 1.2 }
180    
181     /**
182 jsr166 1.63 * Creates a {@code PriorityBlockingQueue} with the specified initial
183 jsr166 1.39 * capacity that orders its elements according to the specified
184     * comparator.
185 dl 1.2 *
186 jsr166 1.42 * @param initialCapacity the initial capacity for this priority queue
187 jsr166 1.52 * @param comparator the comparator that will be used to order this
188     * priority queue. If {@code null}, the {@linkplain Comparable
189     * natural ordering} of the elements will be used.
190 jsr166 1.63 * @throws IllegalArgumentException if {@code initialCapacity} is less
191 jsr166 1.52 * than 1
192 dl 1.2 */
193 tim 1.13 public PriorityBlockingQueue(int initialCapacity,
194 dholmes 1.14 Comparator<? super E> comparator) {
195 dl 1.59 if (initialCapacity < 1)
196     throw new IllegalArgumentException();
197 dl 1.66 this.lock = new ReentrantLock();
198     this.notEmpty = lock.newCondition();
199     this.comparator = comparator;
200 dl 1.59 this.queue = new Object[initialCapacity];
201 dl 1.2 }
202    
203     /**
204 jsr166 1.63 * Creates a {@code PriorityBlockingQueue} containing the elements
205 jsr166 1.52 * in the specified collection. If the specified collection is a
206 jsr166 1.99 * {@link SortedSet} or a {@link PriorityQueue}, this
207 jsr166 1.52 * priority queue will be ordered according to the same ordering.
208     * Otherwise, this priority queue will be ordered according to the
209     * {@linkplain Comparable natural ordering} of its elements.
210 dl 1.2 *
211 jsr166 1.52 * @param c the collection whose elements are to be placed
212     * into this priority queue
213 dl 1.2 * @throws ClassCastException if elements of the specified collection
214     * cannot be compared to one another according to the priority
215 jsr166 1.52 * queue's ordering
216 jsr166 1.42 * @throws NullPointerException if the specified collection or any
217     * of its elements are null
218 dl 1.2 */
219 dholmes 1.14 public PriorityBlockingQueue(Collection<? extends E> c) {
220 dl 1.66 this.lock = new ReentrantLock();
221     this.notEmpty = lock.newCondition();
222     boolean heapify = true; // true if not known to be in heap order
223     boolean screen = true; // true if must screen for nulls
224 dl 1.59 if (c instanceof SortedSet<?>) {
225     SortedSet<? extends E> ss = (SortedSet<? extends E>) c;
226     this.comparator = (Comparator<? super E>) ss.comparator();
227 dl 1.66 heapify = false;
228 dl 1.59 }
229     else if (c instanceof PriorityBlockingQueue<?>) {
230 jsr166 1.61 PriorityBlockingQueue<? extends E> pq =
231 dl 1.59 (PriorityBlockingQueue<? extends E>) c;
232     this.comparator = (Comparator<? super E>) pq.comparator();
233 jsr166 1.67 screen = false;
234 dl 1.66 if (pq.getClass() == PriorityBlockingQueue.class) // exact match
235     heapify = false;
236 dl 1.59 }
237     Object[] a = c.toArray();
238 dl 1.66 int n = a.length;
239 dl 1.59 // If c.toArray incorrectly doesn't return Object[], copy it.
240     if (a.getClass() != Object[].class)
241 dl 1.66 a = Arrays.copyOf(a, n, Object[].class);
242     if (screen && (n == 1 || this.comparator != null)) {
243     for (int i = 0; i < n; ++i)
244 dl 1.59 if (a[i] == null)
245     throw new NullPointerException();
246 dl 1.66 }
247 dl 1.59 this.queue = a;
248 dl 1.66 this.size = n;
249     if (heapify)
250     heapify();
251 dl 1.59 }
252    
253     /**
254 dl 1.66 * Tries to grow array to accommodate at least one more element
255     * (but normally expand by about 50%), giving up (allowing retry)
256     * on contention (which we expect to be rare). Call only while
257     * holding lock.
258 jsr166 1.67 *
259 dl 1.66 * @param array the heap array
260     * @param oldCap the length of the array
261 dl 1.59 */
262 dl 1.66 private void tryGrow(Object[] array, int oldCap) {
263 dl 1.59 lock.unlock(); // must release and then re-acquire main lock
264     Object[] newArray = null;
265     if (allocationSpinLock == 0 &&
266 dl 1.115 ALLOCATIONSPINLOCK.compareAndSet(this, 0, 1)) {
267 dl 1.59 try {
268     int newCap = oldCap + ((oldCap < 64) ?
269 dl 1.66 (oldCap + 2) : // grow faster if small
270 dl 1.59 (oldCap >> 1));
271 dl 1.66 if (newCap - MAX_ARRAY_SIZE > 0) { // possible overflow
272     int minCap = oldCap + 1;
273 dl 1.59 if (minCap < 0 || minCap > MAX_ARRAY_SIZE)
274     throw new OutOfMemoryError();
275     newCap = MAX_ARRAY_SIZE;
276     }
277 dl 1.66 if (newCap > oldCap && queue == array)
278 dl 1.59 newArray = new Object[newCap];
279     } finally {
280     allocationSpinLock = 0;
281     }
282     }
283 dl 1.66 if (newArray == null) // back off if another thread is allocating
284 dl 1.59 Thread.yield();
285     lock.lock();
286     if (newArray != null && queue == array) {
287     queue = newArray;
288 dl 1.66 System.arraycopy(array, 0, newArray, 0, oldCap);
289 dl 1.59 }
290     }
291    
292     /**
293 jsr166 1.62 * Mechanics for poll(). Call only while holding lock.
294 dl 1.59 */
295 jsr166 1.79 private E dequeue() {
296 dl 1.66 int n = size - 1;
297     if (n < 0)
298 jsr166 1.74 return null;
299 dl 1.66 else {
300     Object[] array = queue;
301 jsr166 1.74 E result = (E) array[0];
302 dl 1.66 E x = (E) array[n];
303     array[n] = null;
304     Comparator<? super E> cmp = comparator;
305     if (cmp == null)
306     siftDownComparable(0, x, array, n);
307 jsr166 1.67 else
308 dl 1.66 siftDownUsingComparator(0, x, array, n, cmp);
309     size = n;
310 jsr166 1.74 return result;
311 dl 1.59 }
312     }
313    
314     /**
315     * Inserts item x at position k, maintaining heap invariant by
316     * promoting x up the tree until it is greater than or equal to
317     * its parent, or is the root.
318     *
319     * To simplify and speed up coercions and comparisons. the
320     * Comparable and Comparator versions are separated into different
321     * methods that are otherwise identical. (Similarly for siftDown.)
322 dl 1.66 * These methods are static, with heap state as arguments, to
323     * simplify use in light of possible comparator exceptions.
324 dl 1.59 *
325     * @param k the position to fill
326     * @param x the item to insert
327 dl 1.66 * @param array the heap array
328 dl 1.59 */
329 dl 1.66 private static <T> void siftUpComparable(int k, T x, Object[] array) {
330     Comparable<? super T> key = (Comparable<? super T>) x;
331 dl 1.59 while (k > 0) {
332     int parent = (k - 1) >>> 1;
333 dl 1.66 Object e = array[parent];
334     if (key.compareTo((T) e) >= 0)
335 dl 1.59 break;
336 dl 1.66 array[k] = e;
337 dl 1.59 k = parent;
338     }
339 dl 1.66 array[k] = key;
340 dl 1.59 }
341    
342 dl 1.66 private static <T> void siftUpUsingComparator(int k, T x, Object[] array,
343     Comparator<? super T> cmp) {
344 dl 1.59 while (k > 0) {
345     int parent = (k - 1) >>> 1;
346 dl 1.66 Object e = array[parent];
347     if (cmp.compare(x, (T) e) >= 0)
348 dl 1.59 break;
349 dl 1.66 array[k] = e;
350 dl 1.59 k = parent;
351     }
352 dl 1.66 array[k] = x;
353 dl 1.59 }
354    
355     /**
356     * Inserts item x at position k, maintaining heap invariant by
357     * demoting x down the tree repeatedly until it is less than or
358     * equal to its children or is a leaf.
359     *
360     * @param k the position to fill
361     * @param x the item to insert
362 dl 1.66 * @param array the heap array
363     * @param n heap size
364 dl 1.59 */
365 jsr166 1.67 private static <T> void siftDownComparable(int k, T x, Object[] array,
366 dl 1.66 int n) {
367 dl 1.85 if (n > 0) {
368     Comparable<? super T> key = (Comparable<? super T>)x;
369     int half = n >>> 1; // loop while a non-leaf
370     while (k < half) {
371     int child = (k << 1) + 1; // assume left child is least
372     Object c = array[child];
373     int right = child + 1;
374     if (right < n &&
375     ((Comparable<? super T>) c).compareTo((T) array[right]) > 0)
376     c = array[child = right];
377     if (key.compareTo((T) c) <= 0)
378     break;
379     array[k] = c;
380     k = child;
381     }
382     array[k] = key;
383 dl 1.59 }
384     }
385    
386 dl 1.66 private static <T> void siftDownUsingComparator(int k, T x, Object[] array,
387     int n,
388     Comparator<? super T> cmp) {
389 dl 1.85 if (n > 0) {
390     int half = n >>> 1;
391     while (k < half) {
392     int child = (k << 1) + 1;
393     Object c = array[child];
394     int right = child + 1;
395     if (right < n && cmp.compare((T) c, (T) array[right]) > 0)
396     c = array[child = right];
397     if (cmp.compare(x, (T) c) <= 0)
398     break;
399     array[k] = c;
400     k = child;
401     }
402     array[k] = x;
403 dl 1.59 }
404 dl 1.7 }
405    
406 dholmes 1.10 /**
407 dl 1.59 * Establishes the heap invariant (described above) in the entire tree,
408     * assuming nothing about the order of the elements prior to the call.
409     */
410     private void heapify() {
411 dl 1.66 Object[] array = queue;
412     int n = size;
413     int half = (n >>> 1) - 1;
414     Comparator<? super E> cmp = comparator;
415     if (cmp == null) {
416     for (int i = half; i >= 0; i--)
417     siftDownComparable(i, (E) array[i], array, n);
418     }
419     else {
420     for (int i = half; i >= 0; i--)
421     siftDownUsingComparator(i, (E) array[i], array, n, cmp);
422     }
423 dl 1.59 }
424    
425     /**
426 jsr166 1.42 * Inserts the specified element into this priority queue.
427     *
428 jsr166 1.40 * @param e the element to add
429 jsr166 1.63 * @return {@code true} (as specified by {@link Collection#add})
430 dholmes 1.16 * @throws ClassCastException if the specified element cannot be compared
431 jsr166 1.42 * with elements currently in the priority queue according to the
432     * priority queue's ordering
433     * @throws NullPointerException if the specified element is null
434 dholmes 1.10 */
435 jsr166 1.40 public boolean add(E e) {
436 jsr166 1.42 return offer(e);
437 dl 1.5 }
438    
439 dholmes 1.16 /**
440 dl 1.24 * Inserts the specified element into this priority queue.
441 jsr166 1.64 * As the queue is unbounded, this method will never return {@code false}.
442 dholmes 1.16 *
443 jsr166 1.40 * @param e the element to add
444 jsr166 1.63 * @return {@code true} (as specified by {@link Queue#offer})
445 dholmes 1.16 * @throws ClassCastException if the specified element cannot be compared
446 jsr166 1.42 * with elements currently in the priority queue according to the
447     * priority queue's ordering
448     * @throws NullPointerException if the specified element is null
449 dholmes 1.16 */
450 jsr166 1.40 public boolean offer(E e) {
451 dl 1.59 if (e == null)
452     throw new NullPointerException();
453 dl 1.31 final ReentrantLock lock = this.lock;
454 dl 1.5 lock.lock();
455 dl 1.66 int n, cap;
456 dl 1.59 Object[] array;
457 dl 1.66 while ((n = size) >= (cap = (array = queue).length))
458     tryGrow(array, cap);
459 dl 1.59 try {
460 dl 1.66 Comparator<? super E> cmp = comparator;
461     if (cmp == null)
462     siftUpComparable(n, e, array);
463 dl 1.59 else
464 dl 1.66 siftUpUsingComparator(n, e, array, cmp);
465     size = n + 1;
466 dl 1.5 notEmpty.signal();
467 tim 1.19 } finally {
468 tim 1.13 lock.unlock();
469 dl 1.5 }
470 dl 1.59 return true;
471 dl 1.5 }
472    
473 dholmes 1.16 /**
474 jsr166 1.64 * Inserts the specified element into this priority queue.
475     * As the queue is unbounded, this method will never block.
476 jsr166 1.42 *
477 jsr166 1.40 * @param e the element to add
478 jsr166 1.42 * @throws ClassCastException if the specified element cannot be compared
479     * with elements currently in the priority queue according to the
480     * priority queue's ordering
481     * @throws NullPointerException if the specified element is null
482 dholmes 1.16 */
483 jsr166 1.40 public void put(E e) {
484     offer(e); // never need to block
485 dl 1.5 }
486    
487 dholmes 1.16 /**
488 jsr166 1.64 * Inserts the specified element into this priority queue.
489     * As the queue is unbounded, this method will never block or
490     * return {@code false}.
491 jsr166 1.42 *
492 jsr166 1.40 * @param e the element to add
493 dholmes 1.16 * @param timeout This parameter is ignored as the method never blocks
494     * @param unit This parameter is ignored as the method never blocks
495 jsr166 1.65 * @return {@code true} (as specified by
496     * {@link BlockingQueue#offer(Object,long,TimeUnit) BlockingQueue.offer})
497 jsr166 1.42 * @throws ClassCastException if the specified element cannot be compared
498     * with elements currently in the priority queue according to the
499     * priority queue's ordering
500     * @throws NullPointerException if the specified element is null
501 dholmes 1.16 */
502 jsr166 1.40 public boolean offer(E e, long timeout, TimeUnit unit) {
503     return offer(e); // never need to block
504 dl 1.5 }
505    
506 jsr166 1.42 public E poll() {
507     final ReentrantLock lock = this.lock;
508     lock.lock();
509     try {
510 jsr166 1.79 return dequeue();
511 jsr166 1.42 } finally {
512     lock.unlock();
513     }
514     }
515    
516 dl 1.5 public E take() throws InterruptedException {
517 dl 1.31 final ReentrantLock lock = this.lock;
518 dl 1.5 lock.lockInterruptibly();
519 dl 1.66 E result;
520 dl 1.5 try {
521 jsr166 1.79 while ( (result = dequeue()) == null)
522 jsr166 1.55 notEmpty.await();
523 tim 1.19 } finally {
524 dl 1.5 lock.unlock();
525     }
526 dl 1.59 return result;
527 dl 1.5 }
528    
529     public E poll(long timeout, TimeUnit unit) throws InterruptedException {
530 dholmes 1.10 long nanos = unit.toNanos(timeout);
531 dl 1.31 final ReentrantLock lock = this.lock;
532 dl 1.5 lock.lockInterruptibly();
533 dl 1.66 E result;
534 dl 1.5 try {
535 jsr166 1.79 while ( (result = dequeue()) == null && nanos > 0)
536 jsr166 1.55 nanos = notEmpty.awaitNanos(nanos);
537 tim 1.19 } finally {
538 dl 1.5 lock.unlock();
539     }
540 dl 1.59 return result;
541 dl 1.5 }
542    
543     public E peek() {
544 dl 1.31 final ReentrantLock lock = this.lock;
545 dl 1.5 lock.lock();
546     try {
547 jsr166 1.74 return (size == 0) ? null : (E) queue[0];
548 tim 1.19 } finally {
549 tim 1.13 lock.unlock();
550 dl 1.5 }
551     }
552 jsr166 1.61
553 jsr166 1.42 /**
554     * Returns the comparator used to order the elements in this queue,
555 jsr166 1.63 * or {@code null} if this queue uses the {@linkplain Comparable
556 jsr166 1.42 * natural ordering} of its elements.
557     *
558     * @return the comparator used to order the elements in this queue,
559 jsr166 1.63 * or {@code null} if this queue uses the natural
560 jsr166 1.52 * ordering of its elements
561 jsr166 1.42 */
562     public Comparator<? super E> comparator() {
563 dl 1.59 return comparator;
564 jsr166 1.42 }
565    
566 dl 1.5 public int size() {
567 dl 1.31 final ReentrantLock lock = this.lock;
568 dl 1.5 lock.lock();
569     try {
570 jsr166 1.68 return size;
571 tim 1.19 } finally {
572 dl 1.5 lock.unlock();
573     }
574     }
575    
576     /**
577 jsr166 1.63 * Always returns {@code Integer.MAX_VALUE} because
578     * a {@code PriorityBlockingQueue} is not capacity constrained.
579     * @return {@code Integer.MAX_VALUE} always
580 dl 1.5 */
581     public int remainingCapacity() {
582     return Integer.MAX_VALUE;
583     }
584    
585 dl 1.59 private int indexOf(Object o) {
586     if (o != null) {
587 dl 1.66 Object[] array = queue;
588     int n = size;
589     for (int i = 0; i < n; i++)
590     if (o.equals(array[i]))
591 dl 1.59 return i;
592     }
593     return -1;
594     }
595    
596     /**
597     * Removes the ith element from queue.
598     */
599     private void removeAt(int i) {
600 dl 1.66 Object[] array = queue;
601     int n = size - 1;
602     if (n == i) // removed last element
603     array[i] = null;
604 dl 1.59 else {
605 dl 1.66 E moved = (E) array[n];
606     array[n] = null;
607     Comparator<? super E> cmp = comparator;
608 jsr166 1.67 if (cmp == null)
609 dl 1.66 siftDownComparable(i, moved, array, n);
610     else
611     siftDownUsingComparator(i, moved, array, n, cmp);
612     if (array[i] == moved) {
613     if (cmp == null)
614     siftUpComparable(i, moved, array);
615     else
616     siftUpUsingComparator(i, moved, array, cmp);
617     }
618 dl 1.59 }
619 dl 1.66 size = n;
620 dl 1.59 }
621    
622 dl 1.37 /**
623 jsr166 1.42 * Removes a single instance of the specified element from this queue,
624 jsr166 1.52 * if it is present. More formally, removes an element {@code e} such
625     * that {@code o.equals(e)}, if this queue contains one or more such
626     * elements. Returns {@code true} if and only if this queue contained
627     * the specified element (or equivalently, if this queue changed as a
628     * result of the call).
629 jsr166 1.42 *
630     * @param o element to be removed from this queue, if present
631 jsr166 1.63 * @return {@code true} if this queue changed as a result of the call
632 dl 1.37 */
633 dholmes 1.14 public boolean remove(Object o) {
634 dl 1.31 final ReentrantLock lock = this.lock;
635 dl 1.5 lock.lock();
636     try {
637 dl 1.59 int i = indexOf(o);
638 jsr166 1.78 if (i == -1)
639     return false;
640     removeAt(i);
641     return true;
642 dl 1.59 } finally {
643     lock.unlock();
644     }
645     }
646    
647     /**
648 jsr166 1.112 * Identity-based version for use in Itr.remove.
649 dl 1.59 */
650 jsr166 1.80 void removeEQ(Object o) {
651 dl 1.59 final ReentrantLock lock = this.lock;
652     lock.lock();
653     try {
654 dl 1.66 Object[] array = queue;
655 jsr166 1.78 for (int i = 0, n = size; i < n; i++) {
656 dl 1.66 if (o == array[i]) {
657 dl 1.59 removeAt(i);
658     break;
659     }
660     }
661 tim 1.19 } finally {
662 dl 1.5 lock.unlock();
663     }
664     }
665    
666 jsr166 1.42 /**
667 jsr166 1.52 * Returns {@code true} if this queue contains the specified element.
668     * More formally, returns {@code true} if and only if this queue contains
669     * at least one element {@code e} such that {@code o.equals(e)}.
670 jsr166 1.42 *
671     * @param o object to be checked for containment in this queue
672 jsr166 1.63 * @return {@code true} if this queue contains the specified element
673 jsr166 1.42 */
674 dholmes 1.14 public boolean contains(Object o) {
675 dl 1.31 final ReentrantLock lock = this.lock;
676 dl 1.5 lock.lock();
677     try {
678 jsr166 1.78 return indexOf(o) != -1;
679 tim 1.19 } finally {
680 dl 1.5 lock.unlock();
681     }
682     }
683    
684     public String toString() {
685 jsr166 1.111 return Helpers.collectionToString(this);
686 dl 1.5 }
687    
688 jsr166 1.42 /**
689     * @throws UnsupportedOperationException {@inheritDoc}
690     * @throws ClassCastException {@inheritDoc}
691     * @throws NullPointerException {@inheritDoc}
692     * @throws IllegalArgumentException {@inheritDoc}
693     */
694 dl 1.26 public int drainTo(Collection<? super E> c) {
695 jsr166 1.76 return drainTo(c, Integer.MAX_VALUE);
696 dl 1.26 }
697    
698 jsr166 1.42 /**
699     * @throws UnsupportedOperationException {@inheritDoc}
700     * @throws ClassCastException {@inheritDoc}
701     * @throws NullPointerException {@inheritDoc}
702     * @throws IllegalArgumentException {@inheritDoc}
703     */
704 dl 1.26 public int drainTo(Collection<? super E> c, int maxElements) {
705     if (c == null)
706     throw new NullPointerException();
707     if (c == this)
708     throw new IllegalArgumentException();
709     if (maxElements <= 0)
710     return 0;
711 dl 1.31 final ReentrantLock lock = this.lock;
712 dl 1.26 lock.lock();
713     try {
714 jsr166 1.76 int n = Math.min(size, maxElements);
715     for (int i = 0; i < n; i++) {
716     c.add((E) queue[0]); // In this order, in case add() throws.
717 jsr166 1.79 dequeue();
718 dl 1.26 }
719     return n;
720     } finally {
721     lock.unlock();
722     }
723     }
724    
725 dl 1.17 /**
726 dl 1.37 * Atomically removes all of the elements from this queue.
727 dl 1.17 * The queue will be empty after this call returns.
728     */
729     public void clear() {
730 dl 1.31 final ReentrantLock lock = this.lock;
731 dl 1.17 lock.lock();
732     try {
733 dl 1.66 Object[] array = queue;
734     int n = size;
735 dl 1.59 size = 0;
736 dl 1.66 for (int i = 0; i < n; i++)
737     array[i] = null;
738 tim 1.19 } finally {
739 dl 1.17 lock.unlock();
740     }
741     }
742    
743 jsr166 1.42 /**
744 jsr166 1.110 * Returns an array containing all of the elements in this queue.
745     * The returned array elements are in no particular order.
746     *
747     * <p>The returned array will be "safe" in that no references to it are
748     * maintained by this queue. (In other words, this method must allocate
749     * a new array). The caller is thus free to modify the returned array.
750     *
751     * <p>This method acts as bridge between array-based and collection-based
752     * APIs.
753     *
754     * @return an array containing all of the elements in this queue
755     */
756     public Object[] toArray() {
757     final ReentrantLock lock = this.lock;
758     lock.lock();
759     try {
760     return Arrays.copyOf(queue, size);
761     } finally {
762     lock.unlock();
763     }
764     }
765    
766     /**
767 jsr166 1.42 * Returns an array containing all of the elements in this queue; the
768     * runtime type of the returned array is that of the specified array.
769     * The returned array elements are in no particular order.
770     * If the queue fits in the specified array, it is returned therein.
771     * Otherwise, a new array is allocated with the runtime type of the
772     * specified array and the size of this queue.
773     *
774     * <p>If this queue fits in the specified array with room to spare
775     * (i.e., the array has more elements than this queue), the element in
776     * the array immediately following the end of the queue is set to
777 jsr166 1.63 * {@code null}.
778 jsr166 1.42 *
779     * <p>Like the {@link #toArray()} method, this method acts as bridge between
780     * array-based and collection-based APIs. Further, this method allows
781     * precise control over the runtime type of the output array, and may,
782     * under certain circumstances, be used to save allocation costs.
783     *
784 jsr166 1.63 * <p>Suppose {@code x} is a queue known to contain only strings.
785 jsr166 1.42 * The following code can be used to dump the queue into a newly
786 jsr166 1.63 * allocated array of {@code String}:
787 jsr166 1.42 *
788 jsr166 1.109 * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
789 jsr166 1.42 *
790 jsr166 1.63 * Note that {@code toArray(new Object[0])} is identical in function to
791     * {@code toArray()}.
792 jsr166 1.42 *
793     * @param a the array into which the elements of the queue are to
794     * be stored, if it is big enough; otherwise, a new array of the
795     * same runtime type is allocated for this purpose
796     * @return an array containing all of the elements in this queue
797     * @throws ArrayStoreException if the runtime type of the specified array
798     * is not a supertype of the runtime type of every element in
799     * this queue
800     * @throws NullPointerException if the specified array is null
801     */
802 dl 1.5 public <T> T[] toArray(T[] a) {
803 dl 1.31 final ReentrantLock lock = this.lock;
804 dl 1.5 lock.lock();
805     try {
806 dl 1.66 int n = size;
807     if (a.length < n)
808 dl 1.59 // Make a new array of a's runtime type, but my contents:
809     return (T[]) Arrays.copyOf(queue, size, a.getClass());
810 dl 1.66 System.arraycopy(queue, 0, a, 0, n);
811     if (a.length > n)
812     a[n] = null;
813 dl 1.59 return a;
814 tim 1.19 } finally {
815 dl 1.5 lock.unlock();
816     }
817     }
818    
819 dholmes 1.16 /**
820 dl 1.23 * Returns an iterator over the elements in this queue. The
821     * iterator does not return the elements in any particular order.
822 jsr166 1.69 *
823 jsr166 1.103 * <p>The returned iterator is
824     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
825 dholmes 1.16 *
826 jsr166 1.42 * @return an iterator over the elements in this queue
827 dholmes 1.16 */
828 dl 1.5 public Iterator<E> iterator() {
829 dl 1.51 return new Itr(toArray());
830 dl 1.5 }
831    
832 dl 1.49 /**
833     * Snapshot iterator that works off copy of underlying q array.
834     */
835 dl 1.59 final class Itr implements Iterator<E> {
836 dl 1.49 final Object[] array; // Array of all elements
837 jsr166 1.81 int cursor; // index of next element to return
838 jsr166 1.54 int lastRet; // index of last element, or -1 if no such
839 jsr166 1.50
840 dl 1.49 Itr(Object[] array) {
841     lastRet = -1;
842     this.array = array;
843 dl 1.5 }
844    
845 tim 1.13 public boolean hasNext() {
846 dl 1.49 return cursor < array.length;
847 tim 1.13 }
848    
849     public E next() {
850 dl 1.49 if (cursor >= array.length)
851     throw new NoSuchElementException();
852     lastRet = cursor;
853     return (E)array[cursor++];
854 tim 1.13 }
855    
856     public void remove() {
857 jsr166 1.50 if (lastRet < 0)
858 jsr166 1.54 throw new IllegalStateException();
859 dl 1.59 removeEQ(array[lastRet]);
860 dl 1.49 lastRet = -1;
861 tim 1.13 }
862 dl 1.5 }
863    
864     /**
865 jsr166 1.83 * Saves this queue to a stream (that is, serializes it).
866     *
867     * For compatibility with previous version of this class, elements
868     * are first copied to a java.util.PriorityQueue, which is then
869     * serialized.
870 jsr166 1.97 *
871     * @param s the stream
872 jsr166 1.98 * @throws java.io.IOException if an I/O error occurs
873 dl 1.5 */
874     private void writeObject(java.io.ObjectOutputStream s)
875     throws java.io.IOException {
876     lock.lock();
877     try {
878 jsr166 1.78 // avoid zero capacity argument
879     q = new PriorityQueue<E>(Math.max(size, 1), comparator);
880 dl 1.59 q.addAll(this);
881 dl 1.5 s.defaultWriteObject();
882 dl 1.66 } finally {
883 dl 1.59 q = null;
884 dl 1.5 lock.unlock();
885     }
886 tim 1.1 }
887    
888 dl 1.59 /**
889 jsr166 1.83 * Reconstitutes this queue from a stream (that is, deserializes it).
890 jsr166 1.97 * @param s the stream
891 jsr166 1.98 * @throws ClassNotFoundException if the class of a serialized object
892     * could not be found
893     * @throws java.io.IOException if an I/O error occurs
894 dl 1.59 */
895     private void readObject(java.io.ObjectInputStream s)
896     throws java.io.IOException, ClassNotFoundException {
897 jsr166 1.67 try {
898 dl 1.66 s.defaultReadObject();
899     this.queue = new Object[q.size()];
900     comparator = q.comparator();
901     addAll(q);
902 jsr166 1.67 } finally {
903 dl 1.66 q = null;
904     }
905 dl 1.59 }
906    
907 jsr166 1.116 /**
908     * Immutable snapshot spliterator that binds to elements "late".
909     */
910 dl 1.93 static final class PBQSpliterator<E> implements Spliterator<E> {
911     final PriorityBlockingQueue<E> queue;
912     Object[] array;
913     int index;
914     int fence;
915    
916     PBQSpliterator(PriorityBlockingQueue<E> queue, Object[] array,
917     int index, int fence) {
918     this.queue = queue;
919     this.array = array;
920     this.index = index;
921     this.fence = fence;
922     }
923    
924     final int getFence() {
925     int hi;
926     if ((hi = fence) < 0)
927     hi = fence = (array = queue.toArray()).length;
928     return hi;
929     }
930    
931 jsr166 1.113 public PBQSpliterator<E> trySplit() {
932 dl 1.93 int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
933     return (lo >= mid) ? null :
934     new PBQSpliterator<E>(queue, array, lo, index = mid);
935     }
936    
937     @SuppressWarnings("unchecked")
938 dl 1.95 public void forEachRemaining(Consumer<? super E> action) {
939 dl 1.93 Object[] a; int i, hi; // hoist accesses and checks from loop
940     if (action == null)
941     throw new NullPointerException();
942     if ((a = array) == null)
943     fence = (a = queue.toArray()).length;
944     if ((hi = fence) <= a.length &&
945     (i = index) >= 0 && i < (index = hi)) {
946     do { action.accept((E)a[i]); } while (++i < hi);
947     }
948     }
949    
950     public boolean tryAdvance(Consumer<? super E> action) {
951     if (action == null)
952     throw new NullPointerException();
953     if (getFence() > index && index >= 0) {
954     @SuppressWarnings("unchecked") E e = (E) array[index++];
955     action.accept(e);
956     return true;
957     }
958     return false;
959     }
960    
961     public long estimateSize() { return (long)(getFence() - index); }
962    
963     public int characteristics() {
964     return Spliterator.NONNULL | Spliterator.SIZED | Spliterator.SUBSIZED;
965     }
966     }
967    
968 jsr166 1.102 /**
969     * Returns a {@link Spliterator} over the elements in this queue.
970 jsr166 1.117 * The spliterator does not traverse elements in any particular order
971     * (the {@link Spliterator#ORDERED ORDERED} characteristic is not reported).
972 jsr166 1.102 *
973 jsr166 1.103 * <p>The returned spliterator is
974     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
975     *
976 jsr166 1.102 * <p>The {@code Spliterator} reports {@link Spliterator#SIZED} and
977     * {@link Spliterator#NONNULL}.
978     *
979     * @implNote
980     * The {@code Spliterator} additionally reports {@link Spliterator#SUBSIZED}.
981     *
982     * @return a {@code Spliterator} over the elements in this queue
983     * @since 1.8
984     */
985 dl 1.94 public Spliterator<E> spliterator() {
986 dl 1.93 return new PBQSpliterator<E>(this, null, 0, -1);
987 dl 1.86 }
988    
989 dl 1.115 // VarHandle mechanics
990     private static final VarHandle ALLOCATIONSPINLOCK;
991 dl 1.70 static {
992 dl 1.59 try {
993 dl 1.115 MethodHandles.Lookup l = MethodHandles.lookup();
994     ALLOCATIONSPINLOCK = l.findVarHandle(PriorityBlockingQueue.class,
995     "allocationSpinLock",
996     int.class);
997 jsr166 1.107 } catch (ReflectiveOperationException e) {
998 dl 1.70 throw new Error(e);
999 dl 1.59 }
1000     }
1001 tim 1.1 }