ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/LinkedTransferQueue.java
Revision: 1.38
Committed: Fri Jul 31 14:48:18 2009 UTC (14 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.37: +3 -2 lines
Log Message:
minor spec improvement

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     * http://creativecommons.org/licenses/publicdomain
5     */
6    
7     package jsr166y;
8 jsr166 1.26
9 dl 1.1 import java.util.concurrent.*;
10 jsr166 1.26
11     import java.util.AbstractQueue;
12     import java.util.Collection;
13 jsr166 1.35 import java.util.ConcurrentModificationException;
14 jsr166 1.26 import java.util.Iterator;
15     import java.util.NoSuchElementException;
16 jsr166 1.35 import java.util.Queue;
17 jsr166 1.26 import java.util.concurrent.locks.LockSupport;
18     import java.util.concurrent.atomic.AtomicReference;
19 dl 1.1
20     /**
21     * An unbounded {@linkplain TransferQueue} based on linked nodes.
22     * This queue orders elements FIFO (first-in-first-out) with respect
23     * to any given producer. The <em>head</em> of the queue is that
24     * element that has been on the queue the longest time for some
25     * producer. The <em>tail</em> of the queue is that element that has
26     * been on the queue the shortest time for some producer.
27     *
28 jsr166 1.11 * <p>Beware that, unlike in most collections, the {@code size}
29 dl 1.1 * method is <em>NOT</em> a constant-time operation. Because of the
30     * asynchronous nature of these queues, determining the current number
31     * of elements requires a traversal of the elements.
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>Memory consistency effects: As with other concurrent
38     * collections, actions in a thread prior to placing an object into a
39     * {@code LinkedTransferQueue}
40     * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
41     * actions subsequent to the access or removal of that element from
42     * the {@code LinkedTransferQueue} in another thread.
43     *
44     * <p>This class is a member of the
45     * <a href="{@docRoot}/../technotes/guides/collections/index.html">
46     * Java Collections Framework</a>.
47     *
48 dl 1.3 * @since 1.7
49 dl 1.1 * @author Doug Lea
50     * @param <E> the type of elements held in this collection
51     */
52     public class LinkedTransferQueue<E> extends AbstractQueue<E>
53     implements TransferQueue<E>, java.io.Serializable {
54     private static final long serialVersionUID = -3223113410248163686L;
55    
56     /*
57     * This class extends the approach used in FIFO-mode
58     * SynchronousQueues. See the internal documentation, as well as
59     * the PPoPP 2006 paper "Scalable Synchronous Queues" by Scherer,
60     * Lea & Scott
61     * (http://www.cs.rice.edu/~wns1/papers/2006-PPoPP-SQ.pdf)
62     *
63 dl 1.9 * The main extension is to provide different Wait modes for the
64     * main "xfer" method that puts or takes items. These don't
65     * impact the basic dual-queue logic, but instead control whether
66     * or how threads block upon insertion of request or data nodes
67     * into the dual queue. It also uses slightly different
68     * conventions for tracking whether nodes are off-list or
69     * cancelled.
70 dl 1.1 */
71    
72     // Wait modes for xfer method
73     static final int NOWAIT = 0;
74     static final int TIMEOUT = 1;
75     static final int WAIT = 2;
76    
77     /** The number of CPUs, for spin control */
78     static final int NCPUS = Runtime.getRuntime().availableProcessors();
79    
80     /**
81     * The number of times to spin before blocking in timed waits.
82     * The value is empirically derived -- it works well across a
83     * variety of processors and OSes. Empirically, the best value
84     * seems not to vary with number of CPUs (beyond 2) so is just
85     * a constant.
86     */
87 jsr166 1.22 static final int maxTimedSpins = (NCPUS < 2) ? 0 : 32;
88 dl 1.1
89     /**
90     * The number of times to spin before blocking in untimed waits.
91     * This is greater than timed value because untimed waits spin
92     * faster since they don't need to check times on each spin.
93     */
94     static final int maxUntimedSpins = maxTimedSpins * 16;
95    
96     /**
97     * The number of nanoseconds for which it is faster to spin
98     * rather than to use timed park. A rough estimate suffices.
99     */
100     static final long spinForTimeoutThreshold = 1000L;
101    
102 jsr166 1.5 /**
103 dl 1.9 * Node class for LinkedTransferQueue. Opportunistically
104     * subclasses from AtomicReference to represent item. Uses Object,
105     * not E, to allow setting item to "this" after use, to avoid
106     * garbage retention. Similarly, setting the next field to this is
107     * used as sentinel that node is off list.
108 dl 1.1 */
109 jsr166 1.25 static final class Node<E> extends AtomicReference<Object> {
110     volatile Node<E> next;
111 dl 1.1 volatile Thread waiter; // to control park/unpark
112     final boolean isData;
113 jsr166 1.25
114     Node(E item, boolean isData) {
115 dl 1.1 super(item);
116     this.isData = isData;
117     }
118    
119 jsr166 1.32 // Unsafe mechanics
120    
121     private static final sun.misc.Unsafe UNSAFE = getUnsafe();
122     private static final long nextOffset =
123     objectFieldOffset(UNSAFE, "next", Node.class);
124    
125 jsr166 1.25 final boolean casNext(Node<E> cmp, Node<E> val) {
126 jsr166 1.31 return UNSAFE.compareAndSwapObject(this, nextOffset, cmp, val);
127 dl 1.1 }
128 dl 1.15
129     final void clearNext() {
130 jsr166 1.31 UNSAFE.putOrderedObject(this, nextOffset, this);
131     }
132    
133     /**
134     * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package.
135     * Replace with a simple call to Unsafe.getUnsafe when integrating
136     * into a jdk.
137     *
138     * @return a sun.misc.Unsafe
139     */
140     private static sun.misc.Unsafe getUnsafe() {
141     try {
142     return sun.misc.Unsafe.getUnsafe();
143     } catch (SecurityException se) {
144     try {
145     return java.security.AccessController.doPrivileged
146     (new java.security
147     .PrivilegedExceptionAction<sun.misc.Unsafe>() {
148     public sun.misc.Unsafe run() throws Exception {
149     java.lang.reflect.Field f = sun.misc
150     .Unsafe.class.getDeclaredField("theUnsafe");
151     f.setAccessible(true);
152     return (sun.misc.Unsafe) f.get(null);
153     }});
154     } catch (java.security.PrivilegedActionException e) {
155     throw new RuntimeException("Could not initialize intrinsics",
156     e.getCause());
157     }
158     }
159 dl 1.15 }
160    
161 jsr166 1.24 private static final long serialVersionUID = -3375979862319811754L;
162 dl 1.1 }
163    
164     /**
165     * Padded version of AtomicReference used for head, tail and
166     * cleanMe, to alleviate contention across threads CASing one vs
167     * the other.
168     */
169     static final class PaddedAtomicReference<T> extends AtomicReference<T> {
170     // enough padding for 64bytes with 4byte refs
171     Object p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, pa, pb, pc, pd, pe;
172     PaddedAtomicReference(T r) { super(r); }
173 jsr166 1.24 private static final long serialVersionUID = 8170090609809740854L;
174 dl 1.1 }
175    
176    
177 dl 1.7 /** head of the queue */
178 jsr166 1.25 private transient final PaddedAtomicReference<Node<E>> head;
179 jsr166 1.23
180 dl 1.7 /** tail of the queue */
181 jsr166 1.25 private transient final PaddedAtomicReference<Node<E>> tail;
182 dl 1.1
183     /**
184     * Reference to a cancelled node that might not yet have been
185     * unlinked from queue because it was the last inserted node
186     * when it cancelled.
187     */
188 jsr166 1.25 private transient final PaddedAtomicReference<Node<E>> cleanMe;
189 dl 1.1
190     /**
191     * Tries to cas nh as new head; if successful, unlink
192     * old head's next node to avoid garbage retention.
193     */
194 jsr166 1.25 private boolean advanceHead(Node<E> h, Node<E> nh) {
195 dl 1.1 if (h == head.get() && head.compareAndSet(h, nh)) {
196 dl 1.15 h.clearNext(); // forget old next
197 dl 1.1 return true;
198     }
199     return false;
200     }
201 jsr166 1.5
202 dl 1.1 /**
203     * Puts or takes an item. Used for most queue operations (except
204 dl 1.9 * poll() and tryTransfer()). See the similar code in
205     * SynchronousQueue for detailed explanation.
206 jsr166 1.17 *
207 jsr166 1.4 * @param e the item or if null, signifies that this is a take
208 dl 1.1 * @param mode the wait mode: NOWAIT, TIMEOUT, WAIT
209     * @param nanos timeout in nanosecs, used only if mode is TIMEOUT
210     * @return an item, or null on failure
211     */
212 jsr166 1.25 private E xfer(E e, int mode, long nanos) {
213 dl 1.1 boolean isData = (e != null);
214 jsr166 1.25 Node<E> s = null;
215     final PaddedAtomicReference<Node<E>> head = this.head;
216     final PaddedAtomicReference<Node<E>> tail = this.tail;
217 dl 1.1
218     for (;;) {
219 jsr166 1.25 Node<E> t = tail.get();
220     Node<E> h = head.get();
221 dl 1.1
222     if (t != null && (t == h || t.isData == isData)) {
223     if (s == null)
224 jsr166 1.25 s = new Node<E>(e, isData);
225     Node<E> last = t.next;
226 dl 1.1 if (last != null) {
227     if (t == tail.get())
228     tail.compareAndSet(t, last);
229     }
230     else if (t.casNext(null, s)) {
231     tail.compareAndSet(t, s);
232     return awaitFulfill(t, s, e, mode, nanos);
233     }
234     }
235 jsr166 1.5
236 dl 1.1 else if (h != null) {
237 jsr166 1.25 Node<E> first = h.next;
238 jsr166 1.5 if (t == tail.get() && first != null &&
239 dl 1.1 advanceHead(h, first)) {
240     Object x = first.get();
241     if (x != first && first.compareAndSet(x, e)) {
242     LockSupport.unpark(first.waiter);
243 jsr166 1.25 return isData ? e : (E) x;
244 dl 1.1 }
245     }
246     }
247     }
248     }
249    
250    
251     /**
252     * Version of xfer for poll() and tryTransfer, which
253 jsr166 1.17 * simplifies control paths both here and in xfer.
254 dl 1.1 */
255 jsr166 1.25 private E fulfill(E e) {
256 dl 1.1 boolean isData = (e != null);
257 jsr166 1.25 final PaddedAtomicReference<Node<E>> head = this.head;
258     final PaddedAtomicReference<Node<E>> tail = this.tail;
259 dl 1.1
260     for (;;) {
261 jsr166 1.25 Node<E> t = tail.get();
262     Node<E> h = head.get();
263 dl 1.1
264     if (t != null && (t == h || t.isData == isData)) {
265 jsr166 1.25 Node<E> last = t.next;
266 dl 1.1 if (t == tail.get()) {
267     if (last != null)
268     tail.compareAndSet(t, last);
269     else
270     return null;
271     }
272     }
273     else if (h != null) {
274 jsr166 1.25 Node<E> first = h.next;
275 jsr166 1.5 if (t == tail.get() &&
276 dl 1.1 first != null &&
277     advanceHead(h, first)) {
278     Object x = first.get();
279     if (x != first && first.compareAndSet(x, e)) {
280     LockSupport.unpark(first.waiter);
281 jsr166 1.25 return isData ? e : (E) x;
282 dl 1.1 }
283     }
284     }
285     }
286     }
287    
288     /**
289     * Spins/blocks until node s is fulfilled or caller gives up,
290     * depending on wait mode.
291     *
292     * @param pred the predecessor of waiting node
293     * @param s the waiting node
294     * @param e the comparison value for checking match
295     * @param mode mode
296     * @param nanos timeout value
297     * @return matched item, or s if cancelled
298     */
299 jsr166 1.25 private E awaitFulfill(Node<E> pred, Node<E> s, E e,
300     int mode, long nanos) {
301 dl 1.1 if (mode == NOWAIT)
302     return null;
303    
304 jsr166 1.22 long lastTime = (mode == TIMEOUT) ? System.nanoTime() : 0;
305 dl 1.1 Thread w = Thread.currentThread();
306     int spins = -1; // set to desired spin count below
307     for (;;) {
308     if (w.isInterrupted())
309     s.compareAndSet(e, s);
310     Object x = s.get();
311     if (x != e) { // Node was matched or cancelled
312     advanceHead(pred, s); // unlink if head
313 jsr166 1.17 if (x == s) { // was cancelled
314 dl 1.9 clean(pred, s);
315     return null;
316     }
317 jsr166 1.5 else if (x != null) {
318 dl 1.1 s.set(s); // avoid garbage retention
319 jsr166 1.25 return (E) x;
320 dl 1.1 }
321     else
322     return e;
323     }
324     if (mode == TIMEOUT) {
325     long now = System.nanoTime();
326     nanos -= now - lastTime;
327     lastTime = now;
328     if (nanos <= 0) {
329     s.compareAndSet(e, s); // try to cancel
330     continue;
331     }
332     }
333     if (spins < 0) {
334 jsr166 1.25 Node<E> h = head.get(); // only spin if at head
335 dl 1.1 spins = ((h != null && h.next == s) ?
336 jsr166 1.22 ((mode == TIMEOUT) ?
337 dl 1.1 maxTimedSpins : maxUntimedSpins) : 0);
338     }
339     if (spins > 0)
340     --spins;
341     else if (s.waiter == null)
342     s.waiter = w;
343     else if (mode != TIMEOUT) {
344 dl 1.12 LockSupport.park(this);
345 dl 1.1 s.waiter = null;
346     spins = -1;
347     }
348     else if (nanos > spinForTimeoutThreshold) {
349 dl 1.12 LockSupport.parkNanos(this, nanos);
350 dl 1.1 s.waiter = null;
351     spins = -1;
352     }
353     }
354     }
355    
356     /**
357 jsr166 1.17 * Returns validated tail for use in cleaning methods.
358 dl 1.9 */
359 jsr166 1.25 private Node<E> getValidatedTail() {
360 dl 1.9 for (;;) {
361 jsr166 1.25 Node<E> h = head.get();
362     Node<E> first = h.next;
363 dl 1.9 if (first != null && first.next == first) { // help advance
364     advanceHead(h, first);
365     continue;
366     }
367 jsr166 1.25 Node<E> t = tail.get();
368     Node<E> last = t.next;
369 dl 1.9 if (t == tail.get()) {
370     if (last != null)
371     tail.compareAndSet(t, last); // help advance
372     else
373     return t;
374     }
375     }
376 jsr166 1.10 }
377 dl 1.9
378     /**
379 dl 1.1 * Gets rid of cancelled node s with original predecessor pred.
380 jsr166 1.17 *
381 dl 1.9 * @param pred predecessor of cancelled node
382     * @param s the cancelled node
383 dl 1.1 */
384 jsr166 1.25 private void clean(Node<E> pred, Node<E> s) {
385 dl 1.1 Thread w = s.waiter;
386     if (w != null) { // Wake up thread
387     s.waiter = null;
388     if (w != Thread.currentThread())
389     LockSupport.unpark(w);
390     }
391 dl 1.15
392     if (pred == null)
393     return;
394    
395 dl 1.9 /*
396     * At any given time, exactly one node on list cannot be
397     * deleted -- the last inserted node. To accommodate this, if
398     * we cannot delete s, we save its predecessor as "cleanMe",
399     * processing the previously saved version first. At least one
400     * of node s or the node previously saved can always be
401     * processed, so this always terminates.
402     */
403     while (pred.next == s) {
404 jsr166 1.25 Node<E> oldpred = reclean(); // First, help get rid of cleanMe
405     Node<E> t = getValidatedTail();
406 dl 1.9 if (s != t) { // If not tail, try to unsplice
407 jsr166 1.25 Node<E> sn = s.next; // s.next == s means s already off list
408 jsr166 1.10 if (sn == s || pred.casNext(s, sn))
409 dl 1.9 break;
410     }
411     else if (oldpred == pred || // Already saved
412     (oldpred == null && cleanMe.compareAndSet(null, pred)))
413     break; // Postpone cleaning
414     }
415     }
416 jsr166 1.5
417 dl 1.9 /**
418     * Tries to unsplice the cancelled node held in cleanMe that was
419     * previously uncleanable because it was at tail.
420 jsr166 1.17 *
421 dl 1.9 * @return current cleanMe node (or null)
422     */
423 jsr166 1.25 private Node<E> reclean() {
424 jsr166 1.10 /*
425 dl 1.9 * cleanMe is, or at one time was, predecessor of cancelled
426     * node s that was the tail so could not be unspliced. If s
427     * is no longer the tail, try to unsplice if necessary and
428     * make cleanMe slot available. This differs from similar
429     * code in clean() because we must check that pred still
430     * points to a cancelled node that must be unspliced -- if
431     * not, we can (must) clear cleanMe without unsplicing.
432     * This can loop only due to contention on casNext or
433 jsr166 1.10 * clearing cleanMe.
434 dl 1.9 */
435 jsr166 1.25 Node<E> pred;
436 dl 1.9 while ((pred = cleanMe.get()) != null) {
437 jsr166 1.25 Node<E> t = getValidatedTail();
438     Node<E> s = pred.next;
439 jsr166 1.10 if (s != t) {
440 jsr166 1.25 Node<E> sn;
441 dl 1.9 if (s == null || s == pred || s.get() != s ||
442     (sn = s.next) == s || pred.casNext(s, sn))
443     cleanMe.compareAndSet(pred, null);
444 dl 1.1 }
445 dl 1.9 else // s is still tail; cannot clean
446     break;
447 dl 1.1 }
448 dl 1.9 return pred;
449 dl 1.1 }
450 jsr166 1.5
451 dl 1.1 /**
452 jsr166 1.11 * Creates an initially empty {@code LinkedTransferQueue}.
453 dl 1.1 */
454     public LinkedTransferQueue() {
455 jsr166 1.25 Node<E> dummy = new Node<E>(null, false);
456     head = new PaddedAtomicReference<Node<E>>(dummy);
457     tail = new PaddedAtomicReference<Node<E>>(dummy);
458     cleanMe = new PaddedAtomicReference<Node<E>>(null);
459 dl 1.1 }
460    
461     /**
462 jsr166 1.11 * Creates a {@code LinkedTransferQueue}
463 dl 1.1 * initially containing the elements of the given collection,
464     * added in traversal order of the collection's iterator.
465 jsr166 1.17 *
466 dl 1.1 * @param c the collection of elements to initially contain
467     * @throws NullPointerException if the specified collection or any
468     * of its elements are null
469     */
470     public LinkedTransferQueue(Collection<? extends E> c) {
471 dl 1.7 this();
472 dl 1.1 addAll(c);
473     }
474    
475 jsr166 1.29 /**
476 jsr166 1.35 * Inserts the specified element at the tail of this queue.
477     * As the queue is unbounded, this method will never block.
478     *
479     * @throws NullPointerException if the specified element is null
480 jsr166 1.29 */
481 jsr166 1.35 public void put(E e) {
482     offer(e);
483 dl 1.1 }
484    
485 jsr166 1.29 /**
486 jsr166 1.35 * Inserts the specified element at the tail of this queue.
487     * As the queue is unbounded, this method will never block or
488     * return {@code false}.
489     *
490     * @return {@code true} (as specified by
491     * {@link BlockingQueue#offer(Object,long,TimeUnit) BlockingQueue.offer})
492     * @throws NullPointerException if the specified element is null
493 jsr166 1.29 */
494 jsr166 1.35 public boolean offer(E e, long timeout, TimeUnit unit) {
495     return offer(e);
496 dl 1.1 }
497    
498 jsr166 1.29 /**
499 jsr166 1.35 * Inserts the specified element at the tail of this queue.
500     * As the queue is unbounded, this method will never return {@code false}.
501     *
502     * @return {@code true} (as specified by
503     * {@link BlockingQueue#offer(Object) BlockingQueue.offer})
504     * @throws NullPointerException if the specified element is null
505 jsr166 1.29 */
506 dl 1.1 public boolean offer(E e) {
507     if (e == null) throw new NullPointerException();
508     xfer(e, NOWAIT, 0);
509     return true;
510     }
511    
512 jsr166 1.29 /**
513 jsr166 1.35 * Inserts the specified element at the tail of this queue.
514 jsr166 1.37 * As the queue is unbounded, this method will never throw
515 jsr166 1.35 * {@link IllegalStateException} or return {@code false}.
516     *
517     * @return {@code true} (as specified by {@link Collection#add})
518     * @throws NullPointerException if the specified element is null
519 jsr166 1.29 */
520 dl 1.15 public boolean add(E e) {
521 jsr166 1.35 return offer(e);
522     }
523    
524     /**
525     * Transfers the specified element immediately if there exists a
526     * consumer already waiting to receive it (in {@link #take} or
527 jsr166 1.36 * timed {@link #poll(long,TimeUnit) poll}), otherwise
528 jsr166 1.35 * returning {@code false} without enqueuing the element.
529     *
530     * @throws NullPointerException if the specified element is null
531     */
532     public boolean tryTransfer(E e) {
533 dl 1.15 if (e == null) throw new NullPointerException();
534 jsr166 1.35 return fulfill(e) != null;
535 dl 1.15 }
536    
537 jsr166 1.29 /**
538 jsr166 1.35 * Inserts the specified element at the tail of this queue,
539     * waiting if necessary for the element to be received by a
540     * consumer invoking {@code take} or {@code poll}.
541     *
542     * @throws NullPointerException if the specified element is null
543 jsr166 1.29 */
544 dl 1.1 public void transfer(E e) throws InterruptedException {
545     if (e == null) throw new NullPointerException();
546     if (xfer(e, WAIT, 0) == null) {
547 jsr166 1.6 Thread.interrupted();
548 dl 1.1 throw new InterruptedException();
549 jsr166 1.6 }
550 dl 1.1 }
551    
552 jsr166 1.29 /**
553 jsr166 1.35 * Inserts the specified element at the tail of this queue,
554 jsr166 1.38 * waiting up to the specified wait time if necessary for the
555     * element to be received by a consumer invoking {@code take} or
556     * {@code poll}.
557 jsr166 1.35 *
558     * @throws NullPointerException if the specified element is null
559 jsr166 1.29 */
560 dl 1.1 public boolean tryTransfer(E e, long timeout, TimeUnit unit)
561     throws InterruptedException {
562     if (e == null) throw new NullPointerException();
563     if (xfer(e, TIMEOUT, unit.toNanos(timeout)) != null)
564     return true;
565     if (!Thread.interrupted())
566     return false;
567     throw new InterruptedException();
568     }
569    
570     public E take() throws InterruptedException {
571 jsr166 1.34 E e = xfer(null, WAIT, 0);
572 dl 1.1 if (e != null)
573 jsr166 1.34 return e;
574 jsr166 1.6 Thread.interrupted();
575 dl 1.1 throw new InterruptedException();
576     }
577    
578     public E poll(long timeout, TimeUnit unit) throws InterruptedException {
579 jsr166 1.34 E e = xfer(null, TIMEOUT, unit.toNanos(timeout));
580 dl 1.1 if (e != null || !Thread.interrupted())
581 jsr166 1.34 return e;
582 dl 1.1 throw new InterruptedException();
583     }
584    
585     public E poll() {
586 jsr166 1.25 return fulfill(null);
587 dl 1.1 }
588    
589 jsr166 1.29 /**
590 jsr166 1.30 * @throws NullPointerException {@inheritDoc}
591     * @throws IllegalArgumentException {@inheritDoc}
592 jsr166 1.29 */
593 dl 1.1 public int drainTo(Collection<? super E> c) {
594     if (c == null)
595     throw new NullPointerException();
596     if (c == this)
597     throw new IllegalArgumentException();
598     int n = 0;
599     E e;
600     while ( (e = poll()) != null) {
601     c.add(e);
602     ++n;
603     }
604     return n;
605     }
606    
607 jsr166 1.29 /**
608 jsr166 1.30 * @throws NullPointerException {@inheritDoc}
609     * @throws IllegalArgumentException {@inheritDoc}
610 jsr166 1.29 */
611 dl 1.1 public int drainTo(Collection<? super E> c, int maxElements) {
612     if (c == null)
613     throw new NullPointerException();
614     if (c == this)
615     throw new IllegalArgumentException();
616     int n = 0;
617     E e;
618     while (n < maxElements && (e = poll()) != null) {
619     c.add(e);
620     ++n;
621     }
622     return n;
623     }
624    
625     // Traversal-based methods
626    
627     /**
628 jsr166 1.17 * Returns head after performing any outstanding helping steps.
629 dl 1.1 */
630 jsr166 1.25 private Node<E> traversalHead() {
631 dl 1.1 for (;;) {
632 jsr166 1.25 Node<E> t = tail.get();
633     Node<E> h = head.get();
634 dl 1.1 if (h != null && t != null) {
635 jsr166 1.25 Node<E> last = t.next;
636     Node<E> first = h.next;
637 dl 1.1 if (t == tail.get()) {
638 jsr166 1.5 if (last != null)
639 dl 1.1 tail.compareAndSet(t, last);
640     else if (first != null) {
641     Object x = first.get();
642 jsr166 1.5 if (x == first)
643     advanceHead(h, first);
644 dl 1.1 else
645     return h;
646     }
647     else
648     return h;
649     }
650     }
651 dl 1.15 reclean();
652 dl 1.1 }
653     }
654    
655 jsr166 1.35 /**
656     * Returns an iterator over the elements in this queue in proper
657     * sequence, from head to tail.
658     *
659     * <p>The returned iterator is a "weakly consistent" iterator that
660     * will never throw
661     * {@link ConcurrentModificationException ConcurrentModificationException},
662     * and guarantees to traverse elements as they existed upon
663     * construction of the iterator, and may (but is not guaranteed
664     * to) reflect any modifications subsequent to construction.
665     *
666     * @return an iterator over the elements in this queue in proper sequence
667     */
668 dl 1.1 public Iterator<E> iterator() {
669     return new Itr();
670     }
671    
672     /**
673 jsr166 1.4 * Iterators. Basic strategy is to traverse list, treating
674 dl 1.1 * non-data (i.e., request) nodes as terminating list.
675     * Once a valid data node is found, the item is cached
676     * so that the next call to next() will return it even
677     * if subsequently removed.
678     */
679     class Itr implements Iterator<E> {
680 jsr166 1.25 Node<E> next; // node to return next
681     Node<E> pnext; // predecessor of next
682     Node<E> curr; // last returned node, for remove()
683     Node<E> pcurr; // predecessor of curr, for remove()
684 dl 1.33 E nextItem; // Cache of next item, once committed to in next
685 jsr166 1.5
686 dl 1.1 Itr() {
687 dl 1.33 advance();
688 dl 1.1 }
689 jsr166 1.5
690 dl 1.15 /**
691 dl 1.33 * Moves to next valid node and returns item to return for
692     * next(), or null if no such.
693 dl 1.15 */
694 dl 1.33 private E advance() {
695     pcurr = pnext;
696     curr = next;
697     E item = nextItem;
698    
699 dl 1.1 for (;;) {
700 jsr166 1.34 pnext = (next == null) ? traversalHead() : next;
701 dl 1.33 next = pnext.next;
702     if (next == pnext) {
703 dl 1.15 next = null;
704 dl 1.33 continue; // restart
705 dl 1.15 }
706 dl 1.33 if (next == null)
707     break;
708     Object x = next.get();
709     if (x != null && x != next) {
710 jsr166 1.22 nextItem = (E) x;
711 dl 1.33 break;
712 dl 1.1 }
713     }
714 dl 1.33 return item;
715 dl 1.1 }
716 jsr166 1.5
717 dl 1.1 public boolean hasNext() {
718 dl 1.15 return next != null;
719 dl 1.1 }
720 jsr166 1.5
721 dl 1.1 public E next() {
722 jsr166 1.35 if (next == null)
723 dl 1.33 throw new NoSuchElementException();
724     return advance();
725 dl 1.1 }
726 jsr166 1.5
727 dl 1.1 public void remove() {
728 jsr166 1.25 Node<E> p = curr;
729 dl 1.15 if (p == null)
730 dl 1.1 throw new IllegalStateException();
731     Object x = p.get();
732     if (x != null && x != p && p.compareAndSet(x, p))
733 dl 1.15 clean(pcurr, p);
734 dl 1.1 }
735     }
736    
737     public E peek() {
738     for (;;) {
739 jsr166 1.25 Node<E> h = traversalHead();
740     Node<E> p = h.next;
741 dl 1.1 if (p == null)
742     return null;
743     Object x = p.get();
744     if (p != x) {
745     if (!p.isData)
746     return null;
747     if (x != null)
748 jsr166 1.22 return (E) x;
749 dl 1.1 }
750     }
751     }
752    
753 dl 1.2 public boolean isEmpty() {
754     for (;;) {
755 jsr166 1.25 Node<E> h = traversalHead();
756     Node<E> p = h.next;
757 dl 1.2 if (p == null)
758     return true;
759     Object x = p.get();
760     if (p != x) {
761     if (!p.isData)
762     return true;
763     if (x != null)
764     return false;
765     }
766     }
767     }
768    
769 dl 1.1 public boolean hasWaitingConsumer() {
770     for (;;) {
771 jsr166 1.25 Node<E> h = traversalHead();
772     Node<E> p = h.next;
773 dl 1.1 if (p == null)
774     return false;
775     Object x = p.get();
776 jsr166 1.5 if (p != x)
777 dl 1.1 return !p.isData;
778     }
779     }
780 jsr166 1.5
781 dl 1.1 /**
782     * Returns the number of elements in this queue. If this queue
783 jsr166 1.11 * contains more than {@code Integer.MAX_VALUE} elements, returns
784     * {@code Integer.MAX_VALUE}.
785 dl 1.1 *
786     * <p>Beware that, unlike in most collections, this method is
787     * <em>NOT</em> a constant-time operation. Because of the
788     * asynchronous nature of these queues, determining the current
789     * number of elements requires an O(n) traversal.
790     *
791     * @return the number of elements in this queue
792     */
793     public int size() {
794 dl 1.33 for (;;) {
795     int count = 0;
796     Node<E> pred = traversalHead();
797     for (;;) {
798     Node<E> q = pred.next;
799     if (q == pred) // restart
800 dl 1.1 break;
801 dl 1.33 if (q == null || !q.isData)
802     return count;
803     Object x = q.get();
804     if (x != null && x != q) {
805     if (++count == Integer.MAX_VALUE) // saturated
806     return count;
807     }
808     pred = q;
809 dl 1.1 }
810     }
811     }
812    
813     public int getWaitingConsumerCount() {
814 dl 1.33 // converse of size -- count valid non-data nodes
815     for (;;) {
816     int count = 0;
817     Node<E> pred = traversalHead();
818     for (;;) {
819     Node<E> q = pred.next;
820     if (q == pred) // restart
821 dl 1.1 break;
822 dl 1.33 if (q == null || q.isData)
823     return count;
824     Object x = q.get();
825     if (x == null) {
826     if (++count == Integer.MAX_VALUE) // saturated
827     return count;
828     }
829     pred = q;
830 dl 1.1 }
831     }
832     }
833    
834 dl 1.15 public boolean remove(Object o) {
835     if (o == null)
836     return false;
837     for (;;) {
838 jsr166 1.25 Node<E> pred = traversalHead();
839 dl 1.15 for (;;) {
840 jsr166 1.25 Node<E> q = pred.next;
841 dl 1.33 if (q == pred) // restart
842     break;
843 dl 1.15 if (q == null || !q.isData)
844     return false;
845     Object x = q.get();
846 jsr166 1.17 if (x != null && x != q && o.equals(x) &&
847 dl 1.15 q.compareAndSet(x, q)) {
848     clean(pred, q);
849     return true;
850     }
851     pred = q;
852     }
853     }
854     }
855    
856 jsr166 1.35 /**
857     * Always returns {@code Integer.MAX_VALUE} because a
858     * {@code LinkedTransferQueue} is not capacity constrained.
859     *
860     * @return {@code Integer.MAX_VALUE} (as specified by
861     * {@link BlockingQueue#remainingCapacity()})
862     */
863 dl 1.33 public int remainingCapacity() {
864     return Integer.MAX_VALUE;
865     }
866    
867 dl 1.1 /**
868     * Save the state to a stream (that is, serialize it).
869     *
870 jsr166 1.11 * @serialData All of the elements (each an {@code E}) in
871 dl 1.1 * the proper order, followed by a null
872     * @param s the stream
873     */
874     private void writeObject(java.io.ObjectOutputStream s)
875     throws java.io.IOException {
876     s.defaultWriteObject();
877 jsr166 1.16 for (E e : this)
878     s.writeObject(e);
879 dl 1.1 // Use trailing null as sentinel
880     s.writeObject(null);
881     }
882    
883     /**
884     * Reconstitute the Queue instance from a stream (that is,
885     * deserialize it).
886 jsr166 1.19 *
887 dl 1.1 * @param s the stream
888     */
889     private void readObject(java.io.ObjectInputStream s)
890     throws java.io.IOException, ClassNotFoundException {
891     s.defaultReadObject();
892 dl 1.7 resetHeadAndTail();
893 dl 1.1 for (;;) {
894 jsr166 1.25 @SuppressWarnings("unchecked") E item = (E) s.readObject();
895 dl 1.1 if (item == null)
896     break;
897     else
898     offer(item);
899     }
900     }
901 dl 1.7
902     // Support for resetting head/tail while deserializing
903 dl 1.12 private void resetHeadAndTail() {
904 jsr166 1.25 Node<E> dummy = new Node<E>(null, false);
905 jsr166 1.20 UNSAFE.putObjectVolatile(this, headOffset,
906 jsr166 1.25 new PaddedAtomicReference<Node<E>>(dummy));
907 jsr166 1.20 UNSAFE.putObjectVolatile(this, tailOffset,
908 jsr166 1.25 new PaddedAtomicReference<Node<E>>(dummy));
909 jsr166 1.20 UNSAFE.putObjectVolatile(this, cleanMeOffset,
910 jsr166 1.25 new PaddedAtomicReference<Node<E>>(null));
911 dl 1.12 }
912 dl 1.7
913 jsr166 1.28 // Unsafe mechanics
914    
915     private static final sun.misc.Unsafe UNSAFE = getUnsafe();
916     private static final long headOffset =
917 jsr166 1.31 objectFieldOffset(UNSAFE, "head", LinkedTransferQueue.class);
918 jsr166 1.28 private static final long tailOffset =
919 jsr166 1.31 objectFieldOffset(UNSAFE, "tail", LinkedTransferQueue.class);
920 jsr166 1.28 private static final long cleanMeOffset =
921 jsr166 1.31 objectFieldOffset(UNSAFE, "cleanMe", LinkedTransferQueue.class);
922    
923 jsr166 1.28
924 jsr166 1.31 static long objectFieldOffset(sun.misc.Unsafe UNSAFE,
925     String field, Class<?> klazz) {
926 jsr166 1.28 try {
927     return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
928     } catch (NoSuchFieldException e) {
929     // Convert Exception to corresponding Error
930     NoSuchFieldError error = new NoSuchFieldError(field);
931     error.initCause(e);
932     throw error;
933     }
934     }
935    
936     /**
937     * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package.
938     * Replace with a simple call to Unsafe.getUnsafe when integrating
939     * into a jdk.
940     *
941     * @return a sun.misc.Unsafe
942     */
943 jsr166 1.25 private static sun.misc.Unsafe getUnsafe() {
944 jsr166 1.13 try {
945 jsr166 1.25 return sun.misc.Unsafe.getUnsafe();
946 jsr166 1.13 } catch (SecurityException se) {
947     try {
948     return java.security.AccessController.doPrivileged
949 jsr166 1.28 (new java.security
950     .PrivilegedExceptionAction<sun.misc.Unsafe>() {
951 jsr166 1.25 public sun.misc.Unsafe run() throws Exception {
952 jsr166 1.28 java.lang.reflect.Field f = sun.misc
953     .Unsafe.class.getDeclaredField("theUnsafe");
954     f.setAccessible(true);
955     return (sun.misc.Unsafe) f.get(null);
956 jsr166 1.13 }});
957     } catch (java.security.PrivilegedActionException e) {
958 jsr166 1.25 throw new RuntimeException("Could not initialize intrinsics",
959     e.getCause());
960 jsr166 1.13 }
961     }
962     }
963 dl 1.1 }