ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/LinkedTransferQueue.java
Revision: 1.117
Committed: Tue Dec 27 16:06:17 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.116: +2 -1 lines
Log Message:
coding style

File Contents

# User Rev Content
1 jsr166 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4 jsr166 1.39 * http://creativecommons.org/publicdomain/zero/1.0/
5 jsr166 1.1 */
6    
7     package java.util.concurrent;
8    
9 dl 1.97 import java.lang.invoke.MethodHandles;
10     import java.lang.invoke.VarHandle;
11 jsr166 1.1 import java.util.AbstractQueue;
12 jsr166 1.82 import java.util.Arrays;
13 jsr166 1.1 import java.util.Collection;
14     import java.util.Iterator;
15     import java.util.NoSuchElementException;
16 jsr166 1.111 import java.util.Objects;
17 jsr166 1.5 import java.util.Queue;
18 dl 1.52 import java.util.Spliterator;
19 dl 1.54 import java.util.Spliterators;
20 jsr166 1.76 import java.util.concurrent.locks.LockSupport;
21     import java.util.function.Consumer;
22 jsr166 1.116 import java.util.function.Predicate;
23 dl 1.22
24 jsr166 1.1 /**
25 jsr166 1.6 * An unbounded {@link TransferQueue} based on linked nodes.
26 jsr166 1.1 * This queue orders elements FIFO (first-in-first-out) with respect
27     * to any given producer. The <em>head</em> of the queue is that
28     * element that has been on the queue the longest time for some
29     * producer. The <em>tail</em> of the queue is that element that has
30     * been on the queue the shortest time for some producer.
31     *
32 dl 1.40 * <p>Beware that, unlike in most collections, the {@code size} method
33     * is <em>NOT</em> a constant-time operation. Because of the
34 jsr166 1.1 * asynchronous nature of these queues, determining the current number
35 dl 1.40 * of elements requires a traversal of the elements, and so may report
36     * inaccurate results if this collection is modified during traversal.
37 dl 1.41 * Additionally, the bulk operations {@code addAll},
38     * {@code removeAll}, {@code retainAll}, {@code containsAll},
39 jsr166 1.98 * and {@code toArray} are <em>not</em> guaranteed
40 dl 1.40 * to be performed atomically. For example, an iterator operating
41 dl 1.41 * concurrently with an {@code addAll} operation might view only some
42 dl 1.40 * of the added elements.
43 jsr166 1.1 *
44     * <p>This class and its iterator implement all of the
45     * <em>optional</em> methods of the {@link Collection} and {@link
46     * Iterator} interfaces.
47     *
48     * <p>Memory consistency effects: As with other concurrent
49     * collections, actions in a thread prior to placing an object into a
50     * {@code LinkedTransferQueue}
51     * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
52     * actions subsequent to the access or removal of that element from
53     * the {@code LinkedTransferQueue} in another thread.
54     *
55     * <p>This class is a member of the
56     * <a href="{@docRoot}/../technotes/guides/collections/index.html">
57     * Java Collections Framework</a>.
58     *
59     * @since 1.7
60     * @author Doug Lea
61 jsr166 1.75 * @param <E> the type of elements held in this queue
62 jsr166 1.1 */
63     public class LinkedTransferQueue<E> extends AbstractQueue<E>
64     implements TransferQueue<E>, java.io.Serializable {
65     private static final long serialVersionUID = -3223113410248163686L;
66    
67     /*
68 jsr166 1.8 * *** Overview of Dual Queues with Slack ***
69 jsr166 1.1 *
70 jsr166 1.8 * Dual Queues, introduced by Scherer and Scott
71 jsr166 1.99 * (http://www.cs.rochester.edu/~scott/papers/2004_DISC_dual_DS.pdf)
72     * are (linked) queues in which nodes may represent either data or
73 jsr166 1.8 * requests. When a thread tries to enqueue a data node, but
74     * encounters a request node, it instead "matches" and removes it;
75     * and vice versa for enqueuing requests. Blocking Dual Queues
76     * arrange that threads enqueuing unmatched requests block until
77     * other threads provide the match. Dual Synchronous Queues (see
78     * Scherer, Lea, & Scott
79     * http://www.cs.rochester.edu/u/scott/papers/2009_Scherer_CACM_SSQ.pdf)
80     * additionally arrange that threads enqueuing unmatched data also
81     * block. Dual Transfer Queues support all of these modes, as
82     * dictated by callers.
83     *
84     * A FIFO dual queue may be implemented using a variation of the
85     * Michael & Scott (M&S) lock-free queue algorithm
86 jsr166 1.72 * (http://www.cs.rochester.edu/~scott/papers/1996_PODC_queues.pdf).
87 jsr166 1.8 * It maintains two pointer fields, "head", pointing to a
88     * (matched) node that in turn points to the first actual
89     * (unmatched) queue node (or null if empty); and "tail" that
90     * points to the last node on the queue (or again null if
91     * empty). For example, here is a possible queue with four data
92     * elements:
93     *
94     * head tail
95     * | |
96     * v v
97     * M -> U -> U -> U -> U
98     *
99     * The M&S queue algorithm is known to be prone to scalability and
100     * overhead limitations when maintaining (via CAS) these head and
101     * tail pointers. This has led to the development of
102     * contention-reducing variants such as elimination arrays (see
103     * Moir et al http://portal.acm.org/citation.cfm?id=1074013) and
104     * optimistic back pointers (see Ladan-Mozes & Shavit
105     * http://people.csail.mit.edu/edya/publications/OptimisticFIFOQueue-journal.pdf).
106     * However, the nature of dual queues enables a simpler tactic for
107     * improving M&S-style implementations when dual-ness is needed.
108     *
109     * In a dual queue, each node must atomically maintain its match
110     * status. While there are other possible variants, we implement
111     * this here as: for a data-mode node, matching entails CASing an
112     * "item" field from a non-null data value to null upon match, and
113     * vice-versa for request nodes, CASing from null to a data
114     * value. (Note that the linearization properties of this style of
115     * queue are easy to verify -- elements are made available by
116     * linking, and unavailable by matching.) Compared to plain M&S
117     * queues, this property of dual queues requires one additional
118     * successful atomic operation per enq/deq pair. But it also
119     * enables lower cost variants of queue maintenance mechanics. (A
120     * variation of this idea applies even for non-dual queues that
121     * support deletion of interior elements, such as
122     * j.u.c.ConcurrentLinkedQueue.)
123     *
124     * Once a node is matched, its match status can never again
125     * change. We may thus arrange that the linked list of them
126     * contain a prefix of zero or more matched nodes, followed by a
127     * suffix of zero or more unmatched nodes. (Note that we allow
128     * both the prefix and suffix to be zero length, which in turn
129     * means that we do not use a dummy header.) If we were not
130     * concerned with either time or space efficiency, we could
131     * correctly perform enqueue and dequeue operations by traversing
132     * from a pointer to the initial node; CASing the item of the
133     * first unmatched node on match and CASing the next field of the
134     * trailing node on appends. (Plus some special-casing when
135     * initially empty). While this would be a terrible idea in
136     * itself, it does have the benefit of not requiring ANY atomic
137     * updates on head/tail fields.
138     *
139     * We introduce here an approach that lies between the extremes of
140     * never versus always updating queue (head and tail) pointers.
141     * This offers a tradeoff between sometimes requiring extra
142     * traversal steps to locate the first and/or last unmatched
143     * nodes, versus the reduced overhead and contention of fewer
144     * updates to queue pointers. For example, a possible snapshot of
145     * a queue is:
146     *
147     * head tail
148     * | |
149     * v v
150     * M -> M -> U -> U -> U -> U
151     *
152     * The best value for this "slack" (the targeted maximum distance
153     * between the value of "head" and the first unmatched node, and
154     * similarly for "tail") is an empirical matter. We have found
155     * that using very small constants in the range of 1-3 work best
156     * over a range of platforms. Larger values introduce increasing
157     * costs of cache misses and risks of long traversal chains, while
158     * smaller values increase CAS contention and overhead.
159     *
160     * Dual queues with slack differ from plain M&S dual queues by
161     * virtue of only sometimes updating head or tail pointers when
162     * matching, appending, or even traversing nodes; in order to
163     * maintain a targeted slack. The idea of "sometimes" may be
164     * operationalized in several ways. The simplest is to use a
165     * per-operation counter incremented on each traversal step, and
166     * to try (via CAS) to update the associated queue pointer
167     * whenever the count exceeds a threshold. Another, that requires
168     * more overhead, is to use random number generators to update
169     * with a given probability per traversal step.
170     *
171     * In any strategy along these lines, because CASes updating
172     * fields may fail, the actual slack may exceed targeted
173     * slack. However, they may be retried at any time to maintain
174     * targets. Even when using very small slack values, this
175     * approach works well for dual queues because it allows all
176     * operations up to the point of matching or appending an item
177     * (hence potentially allowing progress by another thread) to be
178     * read-only, thus not introducing any further contention. As
179     * described below, we implement this by performing slack
180     * maintenance retries only after these points.
181     *
182     * As an accompaniment to such techniques, traversal overhead can
183     * be further reduced without increasing contention of head
184     * pointer updates: Threads may sometimes shortcut the "next" link
185     * path from the current "head" node to be closer to the currently
186     * known first unmatched node, and similarly for tail. Again, this
187     * may be triggered with using thresholds or randomization.
188     *
189     * These ideas must be further extended to avoid unbounded amounts
190     * of costly-to-reclaim garbage caused by the sequential "next"
191     * links of nodes starting at old forgotten head nodes: As first
192     * described in detail by Boehm
193 jsr166 1.69 * (http://portal.acm.org/citation.cfm?doid=503272.503282), if a GC
194 jsr166 1.8 * delays noticing that any arbitrarily old node has become
195     * garbage, all newer dead nodes will also be unreclaimed.
196     * (Similar issues arise in non-GC environments.) To cope with
197     * this in our implementation, upon CASing to advance the head
198     * pointer, we set the "next" link of the previous head to point
199     * only to itself; thus limiting the length of connected dead lists.
200     * (We also take similar care to wipe out possibly garbage
201     * retaining values held in other Node fields.) However, doing so
202     * adds some further complexity to traversal: If any "next"
203     * pointer links to itself, it indicates that the current thread
204     * has lagged behind a head-update, and so the traversal must
205     * continue from the "head". Traversals trying to find the
206     * current tail starting from "tail" may also encounter
207     * self-links, in which case they also continue at "head".
208     *
209     * It is tempting in slack-based scheme to not even use CAS for
210     * updates (similarly to Ladan-Mozes & Shavit). However, this
211     * cannot be done for head updates under the above link-forgetting
212     * mechanics because an update may leave head at a detached node.
213     * And while direct writes are possible for tail updates, they
214     * increase the risk of long retraversals, and hence long garbage
215     * chains, which can be much more costly than is worthwhile
216     * considering that the cost difference of performing a CAS vs
217     * write is smaller when they are not triggered on each operation
218     * (especially considering that writes and CASes equally require
219     * additional GC bookkeeping ("write barriers") that are sometimes
220     * more costly than the writes themselves because of contention).
221     *
222     * *** Overview of implementation ***
223     *
224     * We use a threshold-based approach to updates, with a slack
225     * threshold of two -- that is, we update head/tail when the
226     * current pointer appears to be two or more steps away from the
227     * first/last node. The slack value is hard-wired: a path greater
228     * than one is naturally implemented by checking equality of
229     * traversal pointers except when the list has only one element,
230     * in which case we keep slack threshold at one. Avoiding tracking
231     * explicit counts across method calls slightly simplifies an
232     * already-messy implementation. Using randomization would
233     * probably work better if there were a low-quality dirt-cheap
234     * per-thread one available, but even ThreadLocalRandom is too
235     * heavy for these purposes.
236     *
237 dl 1.16 * With such a small slack threshold value, it is not worthwhile
238     * to augment this with path short-circuiting (i.e., unsplicing
239     * interior nodes) except in the case of cancellation/removal (see
240     * below).
241 jsr166 1.8 *
242     * We allow both the head and tail fields to be null before any
243     * nodes are enqueued; initializing upon first append. This
244     * simplifies some other logic, as well as providing more
245     * efficient explicit control paths instead of letting JVMs insert
246     * implicit NullPointerExceptions when they are null. While not
247     * currently fully implemented, we also leave open the possibility
248     * of re-nulling these fields when empty (which is complicated to
249     * arrange, for little benefit.)
250     *
251     * All enqueue/dequeue operations are handled by the single method
252     * "xfer" with parameters indicating whether to act as some form
253     * of offer, put, poll, take, or transfer (each possibly with
254     * timeout). The relative complexity of using one monolithic
255     * method outweighs the code bulk and maintenance problems of
256     * using separate methods for each case.
257     *
258     * Operation consists of up to three phases. The first is
259     * implemented within method xfer, the second in tryAppend, and
260     * the third in method awaitMatch.
261     *
262     * 1. Try to match an existing node
263     *
264     * Starting at head, skip already-matched nodes until finding
265     * an unmatched node of opposite mode, if one exists, in which
266     * case matching it and returning, also if necessary updating
267     * head to one past the matched node (or the node itself if the
268     * list has no other unmatched nodes). If the CAS misses, then
269     * a loop retries advancing head by two steps until either
270     * success or the slack is at most two. By requiring that each
271     * attempt advances head by two (if applicable), we ensure that
272     * the slack does not grow without bound. Traversals also check
273     * if the initial head is now off-list, in which case they
274     * start at the new head.
275     *
276     * If no candidates are found and the call was untimed
277     * poll/offer, (argument "how" is NOW) return.
278     *
279     * 2. Try to append a new node (method tryAppend)
280     *
281     * Starting at current tail pointer, find the actual last node
282     * and try to append a new node (or if head was null, establish
283     * the first node). Nodes can be appended only if their
284     * predecessors are either already matched or are of the same
285     * mode. If we detect otherwise, then a new node with opposite
286     * mode must have been appended during traversal, so we must
287     * restart at phase 1. The traversal and update steps are
288     * otherwise similar to phase 1: Retrying upon CAS misses and
289     * checking for staleness. In particular, if a self-link is
290     * encountered, then we can safely jump to a node on the list
291     * by continuing the traversal at current head.
292     *
293     * On successful append, if the call was ASYNC, return.
294     *
295     * 3. Await match or cancellation (method awaitMatch)
296     *
297     * Wait for another thread to match node; instead cancelling if
298     * the current thread was interrupted or the wait timed out. On
299     * multiprocessors, we use front-of-queue spinning: If a node
300     * appears to be the first unmatched node in the queue, it
301     * spins a bit before blocking. In either case, before blocking
302     * it tries to unsplice any nodes between the current "head"
303     * and the first unmatched node.
304     *
305     * Front-of-queue spinning vastly improves performance of
306     * heavily contended queues. And so long as it is relatively
307     * brief and "quiet", spinning does not much impact performance
308     * of less-contended queues. During spins threads check their
309     * interrupt status and generate a thread-local random number
310     * to decide to occasionally perform a Thread.yield. While
311 jsr166 1.44 * yield has underdefined specs, we assume that it might help,
312 jsr166 1.45 * and will not hurt, in limiting impact of spinning on busy
313 jsr166 1.8 * systems. We also use smaller (1/2) spins for nodes that are
314     * not known to be front but whose predecessors have not
315     * blocked -- these "chained" spins avoid artifacts of
316     * front-of-queue rules which otherwise lead to alternating
317     * nodes spinning vs blocking. Further, front threads that
318     * represent phase changes (from data to request node or vice
319     * versa) compared to their predecessors receive additional
320     * chained spins, reflecting longer paths typically required to
321     * unblock threads during phase changes.
322 dl 1.16 *
323     *
324     * ** Unlinking removed interior nodes **
325     *
326     * In addition to minimizing garbage retention via self-linking
327     * described above, we also unlink removed interior nodes. These
328     * may arise due to timed out or interrupted waits, or calls to
329     * remove(x) or Iterator.remove. Normally, given a node that was
330     * at one time known to be the predecessor of some node s that is
331     * to be removed, we can unsplice s by CASing the next field of
332     * its predecessor if it still points to s (otherwise s must
333     * already have been removed or is now offlist). But there are two
334     * situations in which we cannot guarantee to make node s
335     * unreachable in this way: (1) If s is the trailing node of list
336     * (i.e., with null next), then it is pinned as the target node
337 jsr166 1.23 * for appends, so can only be removed later after other nodes are
338 dl 1.16 * appended. (2) We cannot necessarily unlink s given a
339     * predecessor node that is matched (including the case of being
340 jsr166 1.17 * cancelled): the predecessor may already be unspliced, in which
341     * case some previous reachable node may still point to s.
342     * (For further explanation see Herlihy & Shavit "The Art of
343 dl 1.16 * Multiprocessor Programming" chapter 9). Although, in both
344     * cases, we can rule out the need for further action if either s
345     * or its predecessor are (or can be made to be) at, or fall off
346     * from, the head of list.
347     *
348     * Without taking these into account, it would be possible for an
349     * unbounded number of supposedly removed nodes to remain
350     * reachable. Situations leading to such buildup are uncommon but
351     * can occur in practice; for example when a series of short timed
352     * calls to poll repeatedly time out but never otherwise fall off
353     * the list because of an untimed call to take at the front of the
354     * queue.
355     *
356     * When these cases arise, rather than always retraversing the
357     * entire list to find an actual predecessor to unlink (which
358     * won't help for case (1) anyway), we record a conservative
359 jsr166 1.24 * estimate of possible unsplice failures (in "sweepVotes").
360     * We trigger a full sweep when the estimate exceeds a threshold
361     * ("SWEEP_THRESHOLD") indicating the maximum number of estimated
362     * removal failures to tolerate before sweeping through, unlinking
363     * cancelled nodes that were not unlinked upon initial removal.
364     * We perform sweeps by the thread hitting threshold (rather than
365     * background threads or by spreading work to other threads)
366     * because in the main contexts in which removal occurs, the
367     * caller is already timed-out, cancelled, or performing a
368     * potentially O(n) operation (e.g. remove(x)), none of which are
369     * time-critical enough to warrant the overhead that alternatives
370     * would impose on other threads.
371 dl 1.16 *
372     * Because the sweepVotes estimate is conservative, and because
373     * nodes become unlinked "naturally" as they fall off the head of
374     * the queue, and because we allow votes to accumulate even while
375 jsr166 1.17 * sweeps are in progress, there are typically significantly fewer
376 dl 1.16 * such nodes than estimated. Choice of a threshold value
377     * balances the likelihood of wasted effort and contention, versus
378     * providing a worst-case bound on retention of interior nodes in
379     * quiescent queues. The value defined below was chosen
380     * empirically to balance these under various timeout scenarios.
381     *
382     * Note that we cannot self-link unlinked interior nodes during
383     * sweeps. However, the associated garbage chains terminate when
384     * some successor ultimately falls off the head of the list and is
385     * self-linked.
386 jsr166 1.8 */
387    
388     /** True if on multiprocessor */
389     private static final boolean MP =
390     Runtime.getRuntime().availableProcessors() > 1;
391    
392     /**
393     * The number of times to spin (with randomly interspersed calls
394     * to Thread.yield) on multiprocessor before blocking when a node
395     * is apparently the first waiter in the queue. See above for
396     * explanation. Must be a power of two. The value is empirically
397     * derived -- it works pretty well across a variety of processors,
398     * numbers of CPUs, and OSes.
399     */
400     private static final int FRONT_SPINS = 1 << 7;
401    
402     /**
403     * The number of times to spin before blocking when a node is
404     * preceded by another node that is apparently spinning. Also
405     * serves as an increment to FRONT_SPINS on phase changes, and as
406     * base average frequency for yielding during spins. Must be a
407     * power of two.
408     */
409     private static final int CHAINED_SPINS = FRONT_SPINS >>> 1;
410    
411     /**
412 dl 1.16 * The maximum number of estimated removal failures (sweepVotes)
413     * to tolerate before sweeping through the queue unlinking
414     * cancelled nodes that were not unlinked upon initial
415     * removal. See above for explanation. The value must be at least
416     * two to avoid useless sweeps when removing trailing nodes.
417     */
418     static final int SWEEP_THRESHOLD = 32;
419    
420     /**
421 jsr166 1.8 * Queue nodes. Uses Object, not E, for items to allow forgetting
422 dl 1.97 * them after use. Relies heavily on VarHandles to minimize
423 dl 1.16 * unnecessary ordering constraints: Writes that are intrinsically
424     * ordered wrt other accesses or CASes use simple relaxed forms.
425 jsr166 1.8 */
426 jsr166 1.14 static final class Node {
427 jsr166 1.8 final boolean isData; // false if this is a request node
428     volatile Object item; // initially non-null if isData; CASed to match
429 jsr166 1.14 volatile Node next;
430 jsr166 1.8 volatile Thread waiter; // null until waiting
431    
432     // CAS methods for fields
433 jsr166 1.14 final boolean casNext(Node cmp, Node val) {
434 dl 1.97 return NEXT.compareAndSet(this, cmp, val);
435 jsr166 1.8 }
436 jsr166 1.1
437 jsr166 1.8 final boolean casItem(Object cmp, Object val) {
438 jsr166 1.105 // assert isData == (cmp != null);
439     // assert isData == (val == null);
440     // assert !(cmp instanceof Node);
441 dl 1.97 return ITEM.compareAndSet(this, cmp, val);
442 jsr166 1.8 }
443 jsr166 1.1
444 jsr166 1.8 /**
445 jsr166 1.25 * Constructs a new node. Uses relaxed write because item can
446     * only be seen after publication via casNext.
447 jsr166 1.8 */
448 jsr166 1.101 Node(Object item) {
449 jsr166 1.104 ITEM.set(this, item);
450 jsr166 1.101 isData = (item != null);
451 jsr166 1.8 }
452 jsr166 1.1
453 jsr166 1.8 /**
454     * Links node to itself to avoid garbage retention. Called
455     * only after CASing head field, so uses relaxed write.
456     */
457     final void forgetNext() {
458 dl 1.97 NEXT.set(this, this);
459 jsr166 1.8 }
460 jsr166 1.1
461 jsr166 1.8 /**
462 jsr166 1.105 * Sets item (of a request node) to self and waiter to null,
463     * to avoid garbage retention after matching or cancelling.
464     * Uses relaxed writes because order is already constrained in
465     * the only calling contexts: item is forgotten only after
466     * volatile/atomic mechanics that extract items. Similarly,
467     * clearing waiter follows either CAS or return from park (if
468     * ever parked; else we don't care).
469 jsr166 1.8 */
470     final void forgetContents() {
471 jsr166 1.105 // assert isMatched();
472     if (!isData)
473     ITEM.set(this, this);
474 dl 1.97 WAITER.set(this, null);
475 jsr166 1.8 }
476 jsr166 1.1
477 jsr166 1.8 /**
478     * Returns true if this node has been matched, including the
479     * case of artificial matches due to cancellation.
480     */
481     final boolean isMatched() {
482 jsr166 1.105 return isData == (item == null);
483 jsr166 1.11 }
484    
485     /**
486 jsr166 1.8 * Returns true if a node with the given mode cannot be
487     * appended to this node because this node is unmatched and
488     * has opposite data mode.
489     */
490     final boolean cannotPrecede(boolean haveData) {
491     boolean d = isData;
492 jsr166 1.105 return d != haveData && d != (item == null);
493 jsr166 1.8 }
494 jsr166 1.1
495 jsr166 1.8 /**
496     * Tries to artificially match a data node -- used by remove.
497     */
498     final boolean tryMatchData() {
499 dl 1.33 // assert isData;
500 jsr166 1.105 final Object x;
501     if ((x = item) != null && casItem(x, null)) {
502 jsr166 1.8 LockSupport.unpark(waiter);
503     return true;
504     }
505     return false;
506 jsr166 1.1 }
507    
508 dl 1.38 private static final long serialVersionUID = -3375979862319811754L;
509    
510 dl 1.97 // VarHandle mechanics
511     private static final VarHandle ITEM;
512     private static final VarHandle NEXT;
513     private static final VarHandle WAITER;
514 dl 1.38 static {
515     try {
516 dl 1.97 MethodHandles.Lookup l = MethodHandles.lookup();
517     ITEM = l.findVarHandle(Node.class, "item", Object.class);
518     NEXT = l.findVarHandle(Node.class, "next", Node.class);
519     WAITER = l.findVarHandle(Node.class, "waiter", Thread.class);
520 jsr166 1.79 } catch (ReflectiveOperationException e) {
521 dl 1.38 throw new Error(e);
522     }
523     }
524 jsr166 1.1 }
525    
526 jsr166 1.8 /** head of the queue; null until first enqueue */
527 jsr166 1.14 transient volatile Node head;
528 jsr166 1.8
529     /** tail of the queue; null until first append */
530 jsr166 1.14 private transient volatile Node tail;
531 jsr166 1.1
532 dl 1.16 /** The number of apparent failures to unsplice removed nodes */
533     private transient volatile int sweepVotes;
534    
535 jsr166 1.8 // CAS methods for fields
536 jsr166 1.14 private boolean casTail(Node cmp, Node val) {
537 dl 1.97 return TAIL.compareAndSet(this, cmp, val);
538 jsr166 1.8 }
539 jsr166 1.1
540 jsr166 1.14 private boolean casHead(Node cmp, Node val) {
541 dl 1.97 return HEAD.compareAndSet(this, cmp, val);
542 jsr166 1.8 }
543 jsr166 1.1
544 dl 1.16 private boolean casSweepVotes(int cmp, int val) {
545 dl 1.97 return SWEEPVOTES.compareAndSet(this, cmp, val);
546 jsr166 1.8 }
547 jsr166 1.1
548 jsr166 1.8 /*
549 jsr166 1.14 * Possible values for "how" argument in xfer method.
550 jsr166 1.1 */
551 jsr166 1.14 private static final int NOW = 0; // for untimed poll, tryTransfer
552     private static final int ASYNC = 1; // for offer, put, add
553     private static final int SYNC = 2; // for transfer, take
554     private static final int TIMED = 3; // for timed poll, tryTransfer
555 jsr166 1.1
556     /**
557 jsr166 1.8 * Implements all queuing methods. See above for explanation.
558 jsr166 1.1 *
559 jsr166 1.8 * @param e the item or null for take
560     * @param haveData true if this is a put, else a take
561 jsr166 1.14 * @param how NOW, ASYNC, SYNC, or TIMED
562     * @param nanos timeout in nanosecs, used only if mode is TIMED
563 jsr166 1.8 * @return an item if matched, else e
564     * @throws NullPointerException if haveData mode but e is null
565 jsr166 1.1 */
566 jsr166 1.8 private E xfer(E e, boolean haveData, int how, long nanos) {
567     if (haveData && (e == null))
568     throw new NullPointerException();
569 jsr166 1.14 Node s = null; // the node to append, if needed
570 jsr166 1.1
571 jsr166 1.29 retry:
572     for (;;) { // restart on append race
573 jsr166 1.1
574 jsr166 1.14 for (Node h = head, p = h; p != null;) { // find & match first node
575 jsr166 1.8 boolean isData = p.isData;
576     Object item = p.item;
577 jsr166 1.105 if ((item != null) == isData) { // unmatched
578 jsr166 1.8 if (isData == haveData) // can't match
579     break;
580     if (p.casItem(item, e)) { // match
581 jsr166 1.14 for (Node q = p; q != h;) {
582 dl 1.16 Node n = q.next; // update by 2 unless singleton
583 jsr166 1.37 if (head == h && casHead(h, n == null ? q : n)) {
584 jsr166 1.8 h.forgetNext();
585     break;
586     } // advance and retry
587     if ((h = head) == null ||
588     (q = h.next) == null || !q.isMatched())
589     break; // unless slack < 2
590     }
591     LockSupport.unpark(p.waiter);
592 jsr166 1.70 @SuppressWarnings("unchecked") E itemE = (E) item;
593     return itemE;
594 jsr166 1.1 }
595     }
596 jsr166 1.14 Node n = p.next;
597 jsr166 1.8 p = (p != n) ? n : (h = head); // Use head if p offlist
598     }
599    
600 jsr166 1.14 if (how != NOW) { // No matches available
601 jsr166 1.8 if (s == null)
602 jsr166 1.101 s = new Node(e);
603 jsr166 1.14 Node pred = tryAppend(s, haveData);
604 jsr166 1.8 if (pred == null)
605     continue retry; // lost race vs opposite mode
606 jsr166 1.14 if (how != ASYNC)
607     return awaitMatch(s, pred, e, (how == TIMED), nanos);
608 jsr166 1.1 }
609 jsr166 1.8 return e; // not waiting
610 jsr166 1.1 }
611     }
612    
613     /**
614 jsr166 1.8 * Tries to append node s as tail.
615     *
616     * @param s the node to append
617     * @param haveData true if appending in data mode
618     * @return null on failure due to losing race with append in
619     * different mode, else s's predecessor, or s itself if no
620     * predecessor
621 jsr166 1.1 */
622 jsr166 1.14 private Node tryAppend(Node s, boolean haveData) {
623     for (Node t = tail, p = t;;) { // move p to last node and append
624     Node n, u; // temps for reads of next & tail
625 jsr166 1.8 if (p == null && (p = head) == null) {
626     if (casHead(null, s))
627     return s; // initialize
628     }
629     else if (p.cannotPrecede(haveData))
630     return null; // lost race vs opposite mode
631     else if ((n = p.next) != null) // not last; keep traversing
632     p = p != t && t != (u = tail) ? (t = u) : // stale tail
633     (p != n) ? n : null; // restart if off list
634     else if (!p.casNext(null, s))
635     p = p.next; // re-read on CAS failure
636     else {
637     if (p != t) { // update if slack now >= 2
638     while ((tail != t || !casTail(t, s)) &&
639     (t = tail) != null &&
640     (s = t.next) != null && // advance and retry
641     (s = s.next) != null && s != t);
642 jsr166 1.1 }
643 jsr166 1.8 return p;
644 jsr166 1.1 }
645     }
646     }
647    
648     /**
649 jsr166 1.8 * Spins/yields/blocks until node s is matched or caller gives up.
650 jsr166 1.1 *
651     * @param s the waiting node
652 jsr166 1.8 * @param pred the predecessor of s, or s itself if it has no
653     * predecessor, or null if unknown (the null case does not occur
654     * in any current calls but may in possible future extensions)
655 jsr166 1.1 * @param e the comparison value for checking match
656 jsr166 1.14 * @param timed if true, wait only until timeout elapses
657     * @param nanos timeout in nanosecs, used only if timed is true
658 jsr166 1.8 * @return matched item, or e if unmatched on interrupt or timeout
659 jsr166 1.1 */
660 jsr166 1.14 private E awaitMatch(Node s, Node pred, E e, boolean timed, long nanos) {
661 jsr166 1.51 final long deadline = timed ? System.nanoTime() + nanos : 0L;
662 jsr166 1.8 Thread w = Thread.currentThread();
663     int spins = -1; // initialized after first item and cancel checks
664     ThreadLocalRandom randomYields = null; // bound if needed
665 jsr166 1.1
666     for (;;) {
667 jsr166 1.8 Object item = s.item;
668     if (item != e) { // matched
669 dl 1.33 // assert item != s;
670 jsr166 1.8 s.forgetContents(); // avoid garbage
671 jsr166 1.70 @SuppressWarnings("unchecked") E itemE = (E) item;
672     return itemE;
673 jsr166 1.8 }
674 jsr166 1.95 else if (w.isInterrupted() || (timed && nanos <= 0L)) {
675 jsr166 1.102 // try to cancel and unlink
676 jsr166 1.105 if (s.casItem(e, s.isData ? null : s)) {
677 jsr166 1.102 unsplice(pred, s);
678 jsr166 1.77 return e;
679 jsr166 1.102 }
680     // return normally if lost CAS
681 jsr166 1.8 }
682 dl 1.84 else if (spins < 0) { // establish spins at/near front
683 jsr166 1.8 if ((spins = spinsFor(pred, s.isData)) > 0)
684     randomYields = ThreadLocalRandom.current();
685     }
686     else if (spins > 0) { // spin
687 dl 1.16 --spins;
688     if (randomYields.nextInt(CHAINED_SPINS) == 0)
689 jsr166 1.8 Thread.yield(); // occasionally yield
690     }
691     else if (s.waiter == null) {
692     s.waiter = w; // request unpark then recheck
693 jsr166 1.1 }
694 jsr166 1.14 else if (timed) {
695 jsr166 1.51 nanos = deadline - System.nanoTime();
696     if (nanos > 0L)
697 jsr166 1.8 LockSupport.parkNanos(this, nanos);
698 jsr166 1.1 }
699 jsr166 1.8 else {
700 jsr166 1.1 LockSupport.park(this);
701     }
702 jsr166 1.8 }
703     }
704    
705     /**
706     * Returns spin/yield value for a node with given predecessor and
707     * data mode. See above for explanation.
708     */
709 jsr166 1.14 private static int spinsFor(Node pred, boolean haveData) {
710 jsr166 1.8 if (MP && pred != null) {
711     if (pred.isData != haveData) // phase change
712     return FRONT_SPINS + CHAINED_SPINS;
713     if (pred.isMatched()) // probably at front
714     return FRONT_SPINS;
715     if (pred.waiter == null) // pred apparently spinning
716     return CHAINED_SPINS;
717     }
718     return 0;
719     }
720    
721     /* -------------- Traversal methods -------------- */
722    
723     /**
724 jsr166 1.93 * Returns the first unmatched data node, or null if none.
725 jsr166 1.105 * Callers must recheck if the returned node is unmatched
726     * before using.
727 dl 1.52 */
728     final Node firstDataNode() {
729 jsr166 1.91 restartFromHead: for (;;) {
730     for (Node p = head; p != null;) {
731     Object item = p.item;
732     if (p.isData) {
733 jsr166 1.105 if (item != null)
734 jsr166 1.91 return p;
735     }
736     else if (item == null)
737     break;
738     if (p == (p = p.next))
739     continue restartFromHead;
740 dl 1.52 }
741 jsr166 1.91 return null;
742 dl 1.52 }
743     }
744    
745     /**
746 jsr166 1.8 * Traverses and counts unmatched nodes of the given mode.
747     * Used by methods size and getWaitingConsumerCount.
748 jsr166 1.1 */
749 jsr166 1.8 private int countOfMode(boolean data) {
750 jsr166 1.73 restartFromHead: for (;;) {
751     int count = 0;
752     for (Node p = head; p != null;) {
753     if (!p.isMatched()) {
754     if (p.isData != data)
755     return 0;
756     if (++count == Integer.MAX_VALUE)
757     break; // @see Collection.size()
758     }
759 jsr166 1.81 if (p == (p = p.next))
760 jsr166 1.73 continue restartFromHead;
761 jsr166 1.1 }
762 jsr166 1.73 return count;
763 jsr166 1.8 }
764     }
765    
766 jsr166 1.82 public String toString() {
767     String[] a = null;
768     restartFromHead: for (;;) {
769     int charLength = 0;
770     int size = 0;
771     for (Node p = head; p != null;) {
772     Object item = p.item;
773     if (p.isData) {
774 jsr166 1.105 if (item != null) {
775 jsr166 1.82 if (a == null)
776     a = new String[4];
777     else if (size == a.length)
778     a = Arrays.copyOf(a, 2 * size);
779     String s = item.toString();
780     a[size++] = s;
781     charLength += s.length();
782     }
783     } else if (item == null)
784     break;
785     if (p == (p = p.next))
786     continue restartFromHead;
787     }
788    
789     if (size == 0)
790     return "[]";
791    
792 jsr166 1.83 return Helpers.toString(a, size, charLength);
793 jsr166 1.82 }
794     }
795    
796     private Object[] toArrayInternal(Object[] a) {
797     Object[] x = a;
798     restartFromHead: for (;;) {
799     int size = 0;
800     for (Node p = head; p != null;) {
801     Object item = p.item;
802     if (p.isData) {
803 jsr166 1.105 if (item != null) {
804 jsr166 1.82 if (x == null)
805     x = new Object[4];
806     else if (size == x.length)
807     x = Arrays.copyOf(x, 2 * (size + 4));
808     x[size++] = item;
809     }
810     } else if (item == null)
811     break;
812     if (p == (p = p.next))
813     continue restartFromHead;
814     }
815     if (x == null)
816     return new Object[0];
817     else if (a != null && size <= a.length) {
818     if (a != x)
819     System.arraycopy(x, 0, a, 0, size);
820     if (size < a.length)
821     a[size] = null;
822     return a;
823     }
824     return (size == x.length) ? x : Arrays.copyOf(x, size);
825     }
826     }
827    
828     /**
829     * Returns an array containing all of the elements in this queue, in
830     * proper sequence.
831     *
832     * <p>The returned array will be "safe" in that no references to it are
833     * maintained by this queue. (In other words, this method must allocate
834     * a new array). The caller is thus free to modify the returned array.
835     *
836     * <p>This method acts as bridge between array-based and collection-based
837     * APIs.
838     *
839     * @return an array containing all of the elements in this queue
840     */
841     public Object[] toArray() {
842     return toArrayInternal(null);
843     }
844    
845     /**
846     * Returns an array containing all of the elements in this queue, in
847     * proper sequence; the runtime type of the returned array is that of
848     * the specified array. If the queue fits in the specified array, it
849     * is returned therein. Otherwise, a new array is allocated with the
850     * runtime type of the specified array and the size of this queue.
851     *
852     * <p>If this queue fits in the specified array with room to spare
853     * (i.e., the array has more elements than this queue), the element in
854     * the array immediately following the end of the queue is set to
855     * {@code null}.
856     *
857     * <p>Like the {@link #toArray()} method, this method acts as bridge between
858     * array-based and collection-based APIs. Further, this method allows
859     * precise control over the runtime type of the output array, and may,
860     * under certain circumstances, be used to save allocation costs.
861     *
862     * <p>Suppose {@code x} is a queue known to contain only strings.
863     * The following code can be used to dump the queue into a newly
864     * allocated array of {@code String}:
865     *
866     * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
867     *
868     * Note that {@code toArray(new Object[0])} is identical in function to
869     * {@code toArray()}.
870     *
871     * @param a the array into which the elements of the queue are to
872     * be stored, if it is big enough; otherwise, a new array of the
873     * same runtime type is allocated for this purpose
874     * @return an array containing all of the elements in this queue
875     * @throws ArrayStoreException if the runtime type of the specified array
876     * is not a supertype of the runtime type of every element in
877     * this queue
878     * @throws NullPointerException if the specified array is null
879     */
880     @SuppressWarnings("unchecked")
881     public <T> T[] toArray(T[] a) {
882 jsr166 1.111 Objects.requireNonNull(a);
883 jsr166 1.82 return (T[]) toArrayInternal(a);
884     }
885    
886 jsr166 1.8 final class Itr implements Iterator<E> {
887 jsr166 1.14 private Node nextNode; // next node to return item for
888     private E nextItem; // the corresponding item
889     private Node lastRet; // last returned node, to support remove
890     private Node lastPred; // predecessor to unlink lastRet
891 jsr166 1.8
892     /**
893     * Moves to next node after prev, or first node if prev null.
894     */
895 jsr166 1.14 private void advance(Node prev) {
896 dl 1.33 /*
897     * To track and avoid buildup of deleted nodes in the face
898     * of calls to both Queue.remove and Itr.remove, we must
899     * include variants of unsplice and sweep upon each
900     * advance: Upon Itr.remove, we may need to catch up links
901     * from lastPred, and upon other removes, we might need to
902     * skip ahead from stale nodes and unsplice deleted ones
903     * found while advancing.
904     */
905    
906     Node r, b; // reset lastPred upon possible deletion of lastRet
907     if ((r = lastRet) != null && !r.isMatched())
908     lastPred = r; // next lastPred is old lastRet
909     else if ((b = lastPred) == null || b.isMatched())
910     lastPred = null; // at start of list
911 jsr166 1.34 else {
912 dl 1.33 Node s, n; // help with removal of lastPred.next
913     while ((s = b.next) != null &&
914     s != b && s.isMatched() &&
915     (n = s.next) != null && n != s)
916     b.casNext(s, n);
917     }
918    
919     this.lastRet = prev;
920 jsr166 1.35
921 dl 1.33 for (Node p = prev, s, n;;) {
922     s = (p == null) ? head : p.next;
923     if (s == null)
924     break;
925     else if (s == p) {
926     p = null;
927     continue;
928     }
929     Object item = s.item;
930     if (s.isData) {
931 jsr166 1.105 if (item != null) {
932 jsr166 1.70 @SuppressWarnings("unchecked") E itemE = (E) item;
933     nextItem = itemE;
934 dl 1.33 nextNode = s;
935 jsr166 1.8 return;
936     }
937 jsr166 1.34 }
938 jsr166 1.8 else if (item == null)
939     break;
940 dl 1.33 // assert s.isMatched();
941     if (p == null)
942     p = s;
943     else if ((n = s.next) == null)
944     break;
945     else if (s == n)
946     p = null;
947     else
948     p.casNext(s, n);
949 jsr166 1.1 }
950 jsr166 1.8 nextNode = null;
951 dl 1.33 nextItem = null;
952 jsr166 1.8 }
953    
954     Itr() {
955     advance(null);
956     }
957    
958     public final boolean hasNext() {
959     return nextNode != null;
960     }
961    
962     public final E next() {
963 jsr166 1.14 Node p = nextNode;
964 jsr166 1.8 if (p == null) throw new NoSuchElementException();
965     E e = nextItem;
966     advance(p);
967     return e;
968     }
969    
970 jsr166 1.116 // Default implementation of forEachRemaining is "good enough".
971    
972 jsr166 1.8 public final void remove() {
973 dl 1.33 final Node lastRet = this.lastRet;
974     if (lastRet == null)
975     throw new IllegalStateException();
976     this.lastRet = null;
977     if (lastRet.tryMatchData())
978     unsplice(lastPred, lastRet);
979 jsr166 1.1 }
980     }
981 jsr166 1.53
982 dl 1.57 /** A customized variant of Spliterators.IteratorSpliterator */
983 jsr166 1.109 final class LTQSpliterator implements Spliterator<E> {
984 dl 1.60 static final int MAX_BATCH = 1 << 25; // max batch array size;
985 jsr166 1.87 Node current; // current node; null until initialized
986 dl 1.52 int batch; // batch size for splits
987     boolean exhausted; // true when no more nodes
988 jsr166 1.94 LTQSpliterator() {}
989 dl 1.52
990     public Spliterator<E> trySplit() {
991 jsr166 1.115 Node p, q;
992     if ((p = current()) == null || (q = p.next) == null)
993     return null;
994     int i = 0, n = batch = Math.min(batch + 1, MAX_BATCH);
995     Object[] a = null;
996     do {
997     final Object item = p.item;
998     if (p.isData) {
999     if (item != null)
1000     ((a != null) ? a : (a = new Object[n]))[i++] = item;
1001     } else if (item == null) {
1002     p = null;
1003     break;
1004 dl 1.60 }
1005 jsr166 1.117 if (p == (p = q))
1006     p = firstDataNode();
1007 jsr166 1.115 } while (p != null && (q = p.next) != null && i < n);
1008     setCurrent(p);
1009     return (i == 0) ? null :
1010     Spliterators.spliterator(a, 0, i, (Spliterator.ORDERED |
1011     Spliterator.NONNULL |
1012     Spliterator.CONCURRENT));
1013 dl 1.52 }
1014    
1015     @SuppressWarnings("unchecked")
1016 dl 1.61 public void forEachRemaining(Consumer<? super E> action) {
1017 jsr166 1.111 Objects.requireNonNull(action);
1018 jsr166 1.116 final Node p;
1019 jsr166 1.115 if ((p = current()) != null) {
1020 jsr166 1.107 current = null;
1021 dl 1.52 exhausted = true;
1022 jsr166 1.116 forEachFrom(action, p);
1023 dl 1.52 }
1024     }
1025    
1026     @SuppressWarnings("unchecked")
1027     public boolean tryAdvance(Consumer<? super E> action) {
1028 jsr166 1.111 Objects.requireNonNull(action);
1029 dl 1.52 Node p;
1030 jsr166 1.115 if ((p = current()) != null) {
1031     E e = null;
1032 dl 1.52 do {
1033 jsr166 1.115 final Object item = p.item;
1034     final boolean isData = p.isData;
1035     if (p == (p = p.next))
1036     p = head;
1037     if (isData) {
1038     if (item != null) {
1039     e = (E) item;
1040 jsr166 1.107 break;
1041     }
1042     }
1043 jsr166 1.115 else if (item == null)
1044     p = null;
1045     } while (p != null);
1046     setCurrent(p);
1047     if (e != null) {
1048     action.accept(e);
1049 dl 1.52 return true;
1050     }
1051     }
1052     return false;
1053     }
1054    
1055 jsr166 1.115 private void setCurrent(Node p) {
1056     if ((current = p) == null)
1057     exhausted = true;
1058     }
1059    
1060     private Node current() {
1061     Node p;
1062     if ((p = current) == null && !exhausted)
1063     setCurrent(p = firstDataNode());
1064     return p;
1065     }
1066    
1067 dl 1.54 public long estimateSize() { return Long.MAX_VALUE; }
1068    
1069 dl 1.52 public int characteristics() {
1070 jsr166 1.100 return (Spliterator.ORDERED |
1071     Spliterator.NONNULL |
1072     Spliterator.CONCURRENT);
1073 dl 1.52 }
1074     }
1075    
1076 jsr166 1.67 /**
1077     * Returns a {@link Spliterator} over the elements in this queue.
1078     *
1079 jsr166 1.68 * <p>The returned spliterator is
1080     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1081     *
1082 jsr166 1.67 * <p>The {@code Spliterator} reports {@link Spliterator#CONCURRENT},
1083     * {@link Spliterator#ORDERED}, and {@link Spliterator#NONNULL}.
1084     *
1085     * @implNote
1086     * The {@code Spliterator} implements {@code trySplit} to permit limited
1087     * parallelism.
1088     *
1089     * @return a {@code Spliterator} over the elements in this queue
1090     * @since 1.8
1091     */
1092 dl 1.56 public Spliterator<E> spliterator() {
1093 jsr166 1.109 return new LTQSpliterator();
1094 dl 1.52 }
1095    
1096 jsr166 1.8 /* -------------- Removal methods -------------- */
1097    
1098 jsr166 1.1 /**
1099 jsr166 1.8 * Unsplices (now or later) the given deleted/cancelled node with
1100     * the given predecessor.
1101 jsr166 1.1 *
1102 dl 1.16 * @param pred a node that was at one time known to be the
1103     * predecessor of s, or null or s itself if s is/was at head
1104 jsr166 1.8 * @param s the node to be unspliced
1105 jsr166 1.1 */
1106 dl 1.16 final void unsplice(Node pred, Node s) {
1107 dl 1.71 s.waiter = null; // disable signals
1108 jsr166 1.1 /*
1109 dl 1.16 * See above for rationale. Briefly: if pred still points to
1110     * s, try to unlink s. If s cannot be unlinked, because it is
1111     * trailing node or pred might be unlinked, and neither pred
1112     * nor s are head or offlist, add to sweepVotes, and if enough
1113     * votes have accumulated, sweep.
1114 jsr166 1.1 */
1115 dl 1.16 if (pred != null && pred != s && pred.next == s) {
1116     Node n = s.next;
1117     if (n == null ||
1118     (n != s && pred.casNext(s, n) && pred.isMatched())) {
1119     for (;;) { // check if at, or could be, head
1120     Node h = head;
1121     if (h == pred || h == s || h == null)
1122     return; // at head or list empty
1123     if (!h.isMatched())
1124     break;
1125     Node hn = h.next;
1126     if (hn == null)
1127     return; // now empty
1128     if (hn != h && casHead(h, hn))
1129     h.forgetNext(); // advance head
1130 jsr166 1.8 }
1131 dl 1.16 if (pred.next != pred && s.next != s) { // recheck if offlist
1132     for (;;) { // sweep now if enough votes
1133     int v = sweepVotes;
1134     if (v < SWEEP_THRESHOLD) {
1135     if (casSweepVotes(v, v + 1))
1136     break;
1137     }
1138     else if (casSweepVotes(v, 0)) {
1139     sweep();
1140     break;
1141     }
1142     }
1143 jsr166 1.12 }
1144 jsr166 1.1 }
1145     }
1146     }
1147    
1148     /**
1149 jsr166 1.26 * Unlinks matched (typically cancelled) nodes encountered in a
1150     * traversal from head.
1151 jsr166 1.1 */
1152 dl 1.16 private void sweep() {
1153 jsr166 1.20 for (Node p = head, s, n; p != null && (s = p.next) != null; ) {
1154 jsr166 1.28 if (!s.isMatched())
1155     // Unmatched nodes are never self-linked
1156 jsr166 1.20 p = s;
1157 jsr166 1.28 else if ((n = s.next) == null) // trailing node is pinned
1158 jsr166 1.20 break;
1159 jsr166 1.28 else if (s == n) // stale
1160     // No need to also check for p == s, since that implies s == n
1161     p = head;
1162 jsr166 1.20 else
1163 dl 1.16 p.casNext(s, n);
1164 jsr166 1.8 }
1165     }
1166    
1167     /**
1168 jsr166 1.1 * Creates an initially empty {@code LinkedTransferQueue}.
1169     */
1170     public LinkedTransferQueue() {
1171     }
1172    
1173     /**
1174     * Creates a {@code LinkedTransferQueue}
1175     * initially containing the elements of the given collection,
1176     * added in traversal order of the collection's iterator.
1177     *
1178     * @param c the collection of elements to initially contain
1179     * @throws NullPointerException if the specified collection or any
1180     * of its elements are null
1181     */
1182     public LinkedTransferQueue(Collection<? extends E> c) {
1183     this();
1184     addAll(c);
1185     }
1186    
1187 jsr166 1.4 /**
1188 jsr166 1.5 * Inserts the specified element at the tail of this queue.
1189     * As the queue is unbounded, this method will never block.
1190     *
1191     * @throws NullPointerException if the specified element is null
1192 jsr166 1.4 */
1193 jsr166 1.5 public void put(E e) {
1194 jsr166 1.8 xfer(e, true, ASYNC, 0);
1195 jsr166 1.1 }
1196    
1197 jsr166 1.4 /**
1198 jsr166 1.5 * Inserts the specified element at the tail of this queue.
1199     * As the queue is unbounded, this method will never block or
1200     * return {@code false}.
1201     *
1202     * @return {@code true} (as specified by
1203 jsr166 1.42 * {@link java.util.concurrent.BlockingQueue#offer(Object,long,TimeUnit)
1204     * BlockingQueue.offer})
1205 jsr166 1.5 * @throws NullPointerException if the specified element is null
1206 jsr166 1.4 */
1207 jsr166 1.5 public boolean offer(E e, long timeout, TimeUnit unit) {
1208 jsr166 1.8 xfer(e, true, ASYNC, 0);
1209     return true;
1210 jsr166 1.1 }
1211    
1212 jsr166 1.4 /**
1213 jsr166 1.5 * Inserts the specified element at the tail of this queue.
1214     * As the queue is unbounded, this method will never return {@code false}.
1215     *
1216 jsr166 1.32 * @return {@code true} (as specified by {@link Queue#offer})
1217 jsr166 1.5 * @throws NullPointerException if the specified element is null
1218 jsr166 1.4 */
1219 jsr166 1.1 public boolean offer(E e) {
1220 jsr166 1.8 xfer(e, true, ASYNC, 0);
1221 jsr166 1.1 return true;
1222     }
1223    
1224 jsr166 1.4 /**
1225 jsr166 1.5 * Inserts the specified element at the tail of this queue.
1226     * As the queue is unbounded, this method will never throw
1227     * {@link IllegalStateException} or return {@code false}.
1228     *
1229     * @return {@code true} (as specified by {@link Collection#add})
1230     * @throws NullPointerException if the specified element is null
1231 jsr166 1.4 */
1232 jsr166 1.1 public boolean add(E e) {
1233 jsr166 1.8 xfer(e, true, ASYNC, 0);
1234     return true;
1235 jsr166 1.5 }
1236    
1237     /**
1238 jsr166 1.6 * Transfers the element to a waiting consumer immediately, if possible.
1239     *
1240     * <p>More precisely, transfers the specified element immediately
1241     * if there exists a consumer already waiting to receive it (in
1242     * {@link #take} or timed {@link #poll(long,TimeUnit) poll}),
1243     * otherwise returning {@code false} without enqueuing the element.
1244 jsr166 1.5 *
1245     * @throws NullPointerException if the specified element is null
1246     */
1247     public boolean tryTransfer(E e) {
1248 jsr166 1.8 return xfer(e, true, NOW, 0) == null;
1249 jsr166 1.1 }
1250    
1251 jsr166 1.4 /**
1252 jsr166 1.6 * Transfers the element to a consumer, waiting if necessary to do so.
1253     *
1254     * <p>More precisely, transfers the specified element immediately
1255     * if there exists a consumer already waiting to receive it (in
1256     * {@link #take} or timed {@link #poll(long,TimeUnit) poll}),
1257     * else inserts the specified element at the tail of this queue
1258     * and waits until the element is received by a consumer.
1259 jsr166 1.5 *
1260     * @throws NullPointerException if the specified element is null
1261 jsr166 1.4 */
1262 jsr166 1.1 public void transfer(E e) throws InterruptedException {
1263 jsr166 1.8 if (xfer(e, true, SYNC, 0) != null) {
1264     Thread.interrupted(); // failure possible only due to interrupt
1265 jsr166 1.1 throw new InterruptedException();
1266     }
1267     }
1268    
1269 jsr166 1.4 /**
1270 jsr166 1.6 * Transfers the element to a consumer if it is possible to do so
1271     * before the timeout elapses.
1272     *
1273     * <p>More precisely, transfers the specified element immediately
1274     * if there exists a consumer already waiting to receive it (in
1275     * {@link #take} or timed {@link #poll(long,TimeUnit) poll}),
1276     * else inserts the specified element at the tail of this queue
1277     * and waits until the element is received by a consumer,
1278     * returning {@code false} if the specified wait time elapses
1279     * before the element can be transferred.
1280 jsr166 1.5 *
1281     * @throws NullPointerException if the specified element is null
1282 jsr166 1.4 */
1283 jsr166 1.1 public boolean tryTransfer(E e, long timeout, TimeUnit unit)
1284     throws InterruptedException {
1285 jsr166 1.14 if (xfer(e, true, TIMED, unit.toNanos(timeout)) == null)
1286 jsr166 1.1 return true;
1287     if (!Thread.interrupted())
1288     return false;
1289     throw new InterruptedException();
1290     }
1291    
1292     public E take() throws InterruptedException {
1293 jsr166 1.8 E e = xfer(null, false, SYNC, 0);
1294 jsr166 1.1 if (e != null)
1295 jsr166 1.5 return e;
1296 jsr166 1.1 Thread.interrupted();
1297     throw new InterruptedException();
1298     }
1299    
1300     public E poll(long timeout, TimeUnit unit) throws InterruptedException {
1301 jsr166 1.14 E e = xfer(null, false, TIMED, unit.toNanos(timeout));
1302 jsr166 1.1 if (e != null || !Thread.interrupted())
1303 jsr166 1.5 return e;
1304 jsr166 1.1 throw new InterruptedException();
1305     }
1306    
1307     public E poll() {
1308 jsr166 1.8 return xfer(null, false, NOW, 0);
1309 jsr166 1.1 }
1310    
1311 jsr166 1.4 /**
1312     * @throws NullPointerException {@inheritDoc}
1313     * @throws IllegalArgumentException {@inheritDoc}
1314     */
1315 jsr166 1.1 public int drainTo(Collection<? super E> c) {
1316 jsr166 1.111 Objects.requireNonNull(c);
1317 jsr166 1.1 if (c == this)
1318     throw new IllegalArgumentException();
1319     int n = 0;
1320 jsr166 1.112 for (E e; (e = poll()) != null; n++)
1321 jsr166 1.1 c.add(e);
1322     return n;
1323     }
1324    
1325 jsr166 1.4 /**
1326     * @throws NullPointerException {@inheritDoc}
1327     * @throws IllegalArgumentException {@inheritDoc}
1328     */
1329 jsr166 1.1 public int drainTo(Collection<? super E> c, int maxElements) {
1330 jsr166 1.111 Objects.requireNonNull(c);
1331 jsr166 1.1 if (c == this)
1332     throw new IllegalArgumentException();
1333     int n = 0;
1334 jsr166 1.112 for (E e; n < maxElements && (e = poll()) != null; n++)
1335 jsr166 1.1 c.add(e);
1336     return n;
1337     }
1338    
1339 jsr166 1.5 /**
1340 jsr166 1.36 * Returns an iterator over the elements in this queue in proper sequence.
1341     * The elements will be returned in order from first (head) to last (tail).
1342 jsr166 1.5 *
1343 jsr166 1.68 * <p>The returned iterator is
1344     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
1345 jsr166 1.5 *
1346     * @return an iterator over the elements in this queue in proper sequence
1347     */
1348 jsr166 1.1 public Iterator<E> iterator() {
1349     return new Itr();
1350     }
1351    
1352     public E peek() {
1353 jsr166 1.92 restartFromHead: for (;;) {
1354     for (Node p = head; p != null;) {
1355     Object item = p.item;
1356     if (p.isData) {
1357 jsr166 1.105 if (item != null) {
1358 jsr166 1.92 @SuppressWarnings("unchecked") E e = (E) item;
1359     return e;
1360     }
1361     }
1362     else if (item == null)
1363     break;
1364     if (p == (p = p.next))
1365     continue restartFromHead;
1366     }
1367     return null;
1368     }
1369 jsr166 1.1 }
1370    
1371 jsr166 1.6 /**
1372     * Returns {@code true} if this queue contains no elements.
1373     *
1374     * @return {@code true} if this queue contains no elements
1375     */
1376 jsr166 1.1 public boolean isEmpty() {
1377 jsr166 1.90 return firstDataNode() == null;
1378 jsr166 1.1 }
1379    
1380     public boolean hasWaitingConsumer() {
1381 jsr166 1.93 restartFromHead: for (;;) {
1382     for (Node p = head; p != null;) {
1383     Object item = p.item;
1384     if (p.isData) {
1385 jsr166 1.105 if (item != null)
1386 jsr166 1.93 break;
1387     }
1388     else if (item == null)
1389     return true;
1390     if (p == (p = p.next))
1391     continue restartFromHead;
1392     }
1393     return false;
1394     }
1395 jsr166 1.1 }
1396    
1397     /**
1398     * Returns the number of elements in this queue. If this queue
1399     * contains more than {@code Integer.MAX_VALUE} elements, returns
1400     * {@code Integer.MAX_VALUE}.
1401     *
1402     * <p>Beware that, unlike in most collections, this method is
1403     * <em>NOT</em> a constant-time operation. Because of the
1404     * asynchronous nature of these queues, determining the current
1405     * number of elements requires an O(n) traversal.
1406     *
1407     * @return the number of elements in this queue
1408     */
1409     public int size() {
1410 jsr166 1.8 return countOfMode(true);
1411 jsr166 1.1 }
1412    
1413     public int getWaitingConsumerCount() {
1414 jsr166 1.8 return countOfMode(false);
1415 jsr166 1.1 }
1416    
1417 jsr166 1.6 /**
1418     * Removes a single instance of the specified element from this queue,
1419     * if it is present. More formally, removes an element {@code e} such
1420     * that {@code o.equals(e)}, if this queue contains one or more such
1421     * elements.
1422     * Returns {@code true} if this queue contained the specified element
1423     * (or equivalently, if this queue changed as a result of the call).
1424     *
1425     * @param o element to be removed from this queue, if present
1426     * @return {@code true} if this queue changed as a result of the call
1427     */
1428 jsr166 1.1 public boolean remove(Object o) {
1429 jsr166 1.108 if (o == null)
1430     return false;
1431     restartFromHead: for (;;) {
1432     for (Node pred = null, p = head; p != null; ) {
1433     Object item = p.item;
1434     if (p.isData) {
1435     if (item != null
1436     && o.equals(item)
1437     && p.tryMatchData()) {
1438     unsplice(pred, p);
1439     return true;
1440     }
1441     }
1442     else if (item == null)
1443     break;
1444     if ((pred = p) == (p = p.next))
1445     continue restartFromHead;
1446     }
1447     return false;
1448     }
1449 jsr166 1.1 }
1450    
1451     /**
1452 jsr166 1.30 * Returns {@code true} if this queue contains the specified element.
1453     * More formally, returns {@code true} if and only if this queue contains
1454     * at least one element {@code e} such that {@code o.equals(e)}.
1455     *
1456     * @param o object to be checked for containment in this queue
1457     * @return {@code true} if this queue contains the specified element
1458     */
1459     public boolean contains(Object o) {
1460 jsr166 1.74 if (o != null) {
1461 jsr166 1.110 for (Node p = head; p != null; ) {
1462 jsr166 1.74 Object item = p.item;
1463     if (p.isData) {
1464 jsr166 1.105 if (item != null && o.equals(item))
1465 jsr166 1.74 return true;
1466     }
1467     else if (item == null)
1468     break;
1469 jsr166 1.110 if (p == (p = p.next))
1470     p = head;
1471 jsr166 1.30 }
1472     }
1473     return false;
1474     }
1475    
1476     /**
1477 jsr166 1.5 * Always returns {@code Integer.MAX_VALUE} because a
1478     * {@code LinkedTransferQueue} is not capacity constrained.
1479     *
1480     * @return {@code Integer.MAX_VALUE} (as specified by
1481 jsr166 1.42 * {@link java.util.concurrent.BlockingQueue#remainingCapacity()
1482     * BlockingQueue.remainingCapacity})
1483 jsr166 1.5 */
1484     public int remainingCapacity() {
1485     return Integer.MAX_VALUE;
1486     }
1487    
1488     /**
1489 jsr166 1.50 * Saves this queue to a stream (that is, serializes it).
1490 jsr166 1.1 *
1491 jsr166 1.65 * @param s the stream
1492 jsr166 1.66 * @throws java.io.IOException if an I/O error occurs
1493 jsr166 1.1 * @serialData All of the elements (each an {@code E}) in
1494     * the proper order, followed by a null
1495     */
1496     private void writeObject(java.io.ObjectOutputStream s)
1497     throws java.io.IOException {
1498     s.defaultWriteObject();
1499     for (E e : this)
1500     s.writeObject(e);
1501     // Use trailing null as sentinel
1502     s.writeObject(null);
1503     }
1504    
1505     /**
1506 jsr166 1.50 * Reconstitutes this queue from a stream (that is, deserializes it).
1507 jsr166 1.65 * @param s the stream
1508 jsr166 1.66 * @throws ClassNotFoundException if the class of a serialized object
1509     * could not be found
1510     * @throws java.io.IOException if an I/O error occurs
1511 jsr166 1.1 */
1512     private void readObject(java.io.ObjectInputStream s)
1513     throws java.io.IOException, ClassNotFoundException {
1514     s.defaultReadObject();
1515     for (;;) {
1516 jsr166 1.49 @SuppressWarnings("unchecked")
1517     E item = (E) s.readObject();
1518 jsr166 1.1 if (item == null)
1519     break;
1520     else
1521     offer(item);
1522     }
1523     }
1524    
1525 jsr166 1.116 /**
1526     * @throws NullPointerException {@inheritDoc}
1527     */
1528     public boolean removeIf(Predicate<? super E> filter) {
1529     Objects.requireNonNull(filter);
1530     return bulkRemove(filter);
1531     }
1532    
1533     /**
1534     * @throws NullPointerException {@inheritDoc}
1535     */
1536     public boolean removeAll(Collection<?> c) {
1537     Objects.requireNonNull(c);
1538     return bulkRemove(e -> c.contains(e));
1539     }
1540    
1541     /**
1542     * @throws NullPointerException {@inheritDoc}
1543     */
1544     public boolean retainAll(Collection<?> c) {
1545     Objects.requireNonNull(c);
1546     return bulkRemove(e -> !c.contains(e));
1547     }
1548    
1549     /** Implementation of bulk remove methods. */
1550     @SuppressWarnings("unchecked")
1551     private boolean bulkRemove(Predicate<? super E> filter) {
1552     boolean removed = false;
1553     restartFromHead: for (;;) {
1554     for (Node pred = null, p = head; p != null; ) {
1555     final Object item = p.item;
1556     if (p.isData) {
1557     if (item != null
1558     && filter.test((E)item)
1559     && p.tryMatchData()) {
1560     removed = true;
1561     unsplice(pred, p);
1562     p = p.next;
1563     continue;
1564     }
1565     }
1566     else if (item == null)
1567     break;
1568     if ((pred = p) == (p = p.next))
1569     continue restartFromHead;
1570     }
1571     return removed;
1572     }
1573     }
1574    
1575     /**
1576     * Runs action on each element found during a traversal starting at p.
1577     * If p is null, traversal starts at head.
1578     */
1579     @SuppressWarnings("unchecked")
1580     void forEachFrom(Consumer<? super E> action, Node p) {
1581     while (p != null) {
1582     final Object item = p.item;
1583     if (p.isData) {
1584     if (item != null)
1585     action.accept((E) item);
1586     }
1587     else if (item == null)
1588     break;
1589     if (p == (p = p.next))
1590     p = head;
1591     }
1592     }
1593    
1594     /**
1595     * @throws NullPointerException {@inheritDoc}
1596     */
1597     public void forEach(Consumer<? super E> action) {
1598     Objects.requireNonNull(action);
1599     forEachFrom(action, head);
1600     }
1601    
1602 dl 1.97 // VarHandle mechanics
1603     private static final VarHandle HEAD;
1604     private static final VarHandle TAIL;
1605     private static final VarHandle SWEEPVOTES;
1606 dl 1.38 static {
1607 jsr166 1.1 try {
1608 dl 1.97 MethodHandles.Lookup l = MethodHandles.lookup();
1609     HEAD = l.findVarHandle(LinkedTransferQueue.class, "head",
1610     Node.class);
1611     TAIL = l.findVarHandle(LinkedTransferQueue.class, "tail",
1612     Node.class);
1613     SWEEPVOTES = l.findVarHandle(LinkedTransferQueue.class, "sweepVotes",
1614     int.class);
1615 jsr166 1.79 } catch (ReflectiveOperationException e) {
1616 dl 1.38 throw new Error(e);
1617 jsr166 1.1 }
1618 jsr166 1.85
1619     // Reduce the risk of rare disastrous classloading in first call to
1620     // LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
1621     Class<?> ensureLoaded = LockSupport.class;
1622 jsr166 1.1 }
1623     }