jdk/src/share/classes/java/util/concurrent/LinkedBlockingQueue.java
author dl
Tue, 28 Jul 2009 17:17:55 -0700
changeset 3415 79309d6eab38
parent 2 90ce3da70b43
child 3419 3ae6dc68c20d
permissions -rw-r--r--
6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage 6815766: LinkedBlockingQueue's iterator can return null if drainTo(c) executes concurrently Summary: Faster, more correct. Use self-linking trick to avoid gc retention Reviewed-by: martin, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * http://creativecommons.org/licenses/publicdomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
package java.util.concurrent;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    37
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    38
import java.util.concurrent.atomic.AtomicInteger;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    39
import java.util.concurrent.locks.Condition;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    40
import java.util.concurrent.locks.ReentrantLock;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    41
import java.util.AbstractQueue;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    42
import java.util.Collection;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    43
import java.util.Iterator;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    44
import java.util.NoSuchElementException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * An optionally-bounded {@linkplain BlockingQueue blocking queue} based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * linked nodes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * This queue orders elements FIFO (first-in-first-out).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * The <em>head</em> of the queue is that element that has been on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * queue the longest time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * The <em>tail</em> of the queue is that element that has been on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * queue the shortest time. New elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * are inserted at the tail of the queue, and the queue retrieval
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * operations obtain elements at the head of the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Linked queues typically have higher throughput than array-based queues but
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * less predictable performance in most concurrent applications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p> The optional capacity bound constructor argument serves as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * way to prevent excessive queue expansion. The capacity, if unspecified,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * is equal to {@link Integer#MAX_VALUE}.  Linked nodes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * dynamically created upon each insertion unless this would bring the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * queue above capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>This class and its iterator implement all of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <em>optional</em> methods of the {@link Collection} and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * Iterator} interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * @param <E> the type of elements held in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
public class LinkedBlockingQueue<E> extends AbstractQueue<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        implements BlockingQueue<E>, java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private static final long serialVersionUID = -6903933977591709194L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * A variant of the "two lock queue" algorithm.  The putLock gates
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * entry to put (and offer), and has an associated condition for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * waiting puts.  Similarly for the takeLock.  The "count" field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * that they both rely on is maintained as an atomic to avoid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * needing to get both locks in most cases. Also, to minimize need
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * for puts to get takeLock and vice-versa, cascading notifies are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * used. When a put notices that it has enabled at least one take,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * it signals taker. That taker in turn signals others if more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * items have been entered since the signal. And symmetrically for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * takes signalling puts. Operations such as remove(Object) and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * iterators acquire both locks.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    94
     *
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    95
     * Visibility between writers and readers is provided as follows:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    96
     *
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    97
     * Whenever an element is enqueued, the putLock is acquired and
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    98
     * count updated.  A subsequent reader guarantees visibility to the
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    99
     * enqueued Node by either acquiring the putLock (via fullyLock)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   100
     * or by acquiring the takeLock, and then reading n = count.get();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   101
     * this gives visibility to the first n items.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   102
     *
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   103
     * To implement weakly consistent iterators, it appears we need to
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   104
     * keep all Nodes GC-reachable from a predecessor dequeued Node.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   105
     * That would cause two problems:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   106
     * - allow a rogue Iterator to cause unbounded memory retention
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   107
     * - cause cross-generational linking of old Nodes to new Nodes if
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   108
     *   a Node was tenured while live, which generational GCs have a
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   109
     *   hard time dealing with, causing repeated major collections.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   110
     * However, only non-deleted Nodes need to be reachable from
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   111
     * dequeued Nodes, and reachability does not necessarily have to
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   112
     * be of the kind understood by the GC.  We use the trick of
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   113
     * linking a Node that has just been dequeued to itself.  Such a
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   114
     * self-link implicitly means to advance to head.next.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Linked list node class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    static class Node<E> {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   121
        E item;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   122
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   123
        /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   124
         * One of:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   125
         * - the real successor Node
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   126
         * - this Node, meaning the successor is head.next
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   127
         * - null, meaning there is no successor (this is the last node)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   128
         */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        Node<E> next;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   130
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        Node(E x) { item = x; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    /** The capacity bound, or Integer.MAX_VALUE if none */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    private final int capacity;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /** Current number of elements */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    private final AtomicInteger count = new AtomicInteger(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   140
    /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   141
     * Head of linked list.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   142
     * Invariant: head.item == null
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   143
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    private transient Node<E> head;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   146
    /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   147
     * Tail of linked list.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   148
     * Invariant: last.next == null
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   149
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    private transient Node<E> last;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /** Lock held by take, poll, etc */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private final ReentrantLock takeLock = new ReentrantLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /** Wait queue for waiting takes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    private final Condition notEmpty = takeLock.newCondition();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /** Lock held by put, offer, etc */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    private final ReentrantLock putLock = new ReentrantLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /** Wait queue for waiting puts */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    private final Condition notFull = putLock.newCondition();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Signals a waiting take. Called only from put/offer (which do not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * otherwise ordinarily lock takeLock.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    private void signalNotEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        final ReentrantLock takeLock = this.takeLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        takeLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            notEmpty.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Signals a waiting put. Called only from take/poll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    private void signalNotFull() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        final ReentrantLock putLock = this.putLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        putLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            notFull.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            putLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Creates a node and links it at end of queue.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   193
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @param x the item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   196
    private void enqueue(E x) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   197
        // assert putLock.isHeldByCurrentThread();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   198
        // assert last.next == null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        last = last.next = new Node<E>(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   203
     * Removes a node from head of queue.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   204
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @return the node
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   207
    private E dequeue() {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   208
        // assert takeLock.isHeldByCurrentThread();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   209
        // assert head.item == null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   210
        Node<E> h = head;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   211
        Node<E> first = h.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   212
        h.next = h; // help GC
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        head = first;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        E x = first.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        first.item = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Lock to prevent both puts and takes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   222
    void fullyLock() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        putLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        takeLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * Unlock to allow both puts and takes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   230
    void fullyUnlock() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        putLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   235
//     /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   236
//      * Tells whether both locks are held by current thread.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   237
//      */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   238
//     boolean isFullyLocked() {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   239
//         return (putLock.isHeldByCurrentThread() &&
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   240
//                 takeLock.isHeldByCurrentThread());
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   241
//     }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   244
     * Creates a {@code LinkedBlockingQueue} with a capacity of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * {@link Integer#MAX_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    public LinkedBlockingQueue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        this(Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   252
     * Creates a {@code LinkedBlockingQueue} with the given (fixed) capacity.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @param capacity the capacity of this queue
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   255
     * @throws IllegalArgumentException if {@code capacity} is not greater
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *         than zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    public LinkedBlockingQueue(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        if (capacity <= 0) throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        this.capacity = capacity;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        last = head = new Node<E>(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   265
     * Creates a {@code LinkedBlockingQueue} with a capacity of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * {@link Integer#MAX_VALUE}, initially containing the elements of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * given collection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * added in traversal order of the collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @param c the collection of elements to initially contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @throws NullPointerException if the specified collection or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public LinkedBlockingQueue(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        this(Integer.MAX_VALUE);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   276
        final ReentrantLock putLock = this.putLock;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   277
        putLock.lock(); // Never contended, but necessary for visibility
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   278
        try {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   279
            int n = 0;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   280
            for (E e : c) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   281
                if (e == null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   282
                    throw new NullPointerException();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   283
                if (n == capacity)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   284
                    throw new IllegalStateException("Queue full");
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   285
                enqueue(e);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   286
                ++n;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   287
            }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   288
            count.set(n);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   289
        } finally {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   290
            putLock.unlock();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   291
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    // this doc comment is overridden to remove the reference to collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    // greater in size than Integer.MAX_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * Returns the number of elements in this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @return the number of elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        return count.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    // this doc comment is a modified copy of the inherited doc comment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    // without the reference to unlimited queues.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * Returns the number of additional elements that this queue can ideally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * (in the absence of memory or resource constraints) accept without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * blocking. This is always equal to the initial capacity of this queue
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   312
     * less the current {@code size} of this queue.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * <p>Note that you <em>cannot</em> always tell if an attempt to insert
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   315
     * an element will succeed by inspecting {@code remainingCapacity}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * because it may be the case that another thread is about to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * insert or remove an element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    public int remainingCapacity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        return capacity - count.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * Inserts the specified element at the tail of this queue, waiting if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * necessary for space to become available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    public void put(E e) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        if (e == null) throw new NullPointerException();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   332
        // Note: convention in all put/take/etc is to preset local var
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   333
        // holding count negative to indicate failure unless set.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        final ReentrantLock putLock = this.putLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        putLock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
             * Note that count is used in wait guard even though it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
             * not protected by lock. This works because count can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
             * only decrease at this point (all other puts are shut
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
             * out by lock), and we (or some other waiting put) are
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   344
             * signalled if it ever changes from capacity. Similarly
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   345
             * for all other uses of count in other wait guards.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
             */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   347
            while (count.get() == capacity) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   348
                notFull.await();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   350
            enqueue(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            c = count.getAndIncrement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            if (c + 1 < capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                notFull.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            putLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (c == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            signalNotEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * Inserts the specified element at the tail of this queue, waiting if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * necessary up to the specified wait time for space to become available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     *
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   365
     * @return {@code true} if successful, or {@code false} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *         the specified waiting time elapses before space is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    public boolean offer(E e, long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        if (e == null) throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        long nanos = unit.toNanos(timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        final ReentrantLock putLock = this.putLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        putLock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   380
            while (count.get() == capacity) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                if (nanos <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                    return false;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   383
                nanos = notFull.awaitNanos(nanos);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   385
            enqueue(e);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   386
            c = count.getAndIncrement();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   387
            if (c + 1 < capacity)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   388
                notFull.signal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            putLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        if (c == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            signalNotEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * Inserts the specified element at the tail of this queue if it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * possible to do so immediately without exceeding the queue's capacity,
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   400
     * returning {@code true} upon success and {@code false} if this queue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * is full.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * When using a capacity-restricted queue, this method is generally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * preferable to method {@link BlockingQueue#add add}, which can fail to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * insert an element only by throwing an exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    public boolean offer(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        if (e == null) throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        if (count.get() == capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        final ReentrantLock putLock = this.putLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        putLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            if (count.get() < capacity) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   418
                enqueue(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                c = count.getAndIncrement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                if (c + 1 < capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                    notFull.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            putLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        if (c == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            signalNotEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        return c >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public E take() throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        E x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        final ReentrantLock takeLock = this.takeLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        takeLock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   439
            while (count.get() == 0) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   440
                notEmpty.await();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   442
            x = dequeue();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            c = count.getAndDecrement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            if (c > 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                notEmpty.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        if (c == capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            signalNotFull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    public E poll(long timeout, TimeUnit unit) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        E x = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        long nanos = unit.toNanos(timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        final ReentrantLock takeLock = this.takeLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        takeLock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   462
            while (count.get() == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                if (nanos <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
                    return null;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   465
                nanos = notEmpty.awaitNanos(nanos);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   467
            x = dequeue();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   468
            c = count.getAndDecrement();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   469
            if (c > 1)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   470
                notEmpty.signal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        if (c == capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            signalNotFull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    public E poll() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        final AtomicInteger count = this.count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        if (count.get() == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        E x = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        final ReentrantLock takeLock = this.takeLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        takeLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            if (count.get() > 0) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   489
                x = dequeue();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                c = count.getAndDecrement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                if (c > 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                    notEmpty.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        if (c == capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            signalNotFull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    public E peek() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        if (count.get() == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        final ReentrantLock takeLock = this.takeLock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        takeLock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            Node<E> first = head.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            if (first == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                return first.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            takeLock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   519
     * Unlinks interior Node p with predecessor trail.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   520
     */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   521
    void unlink(Node<E> p, Node<E> trail) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   522
        // assert isFullyLocked();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   523
        // p.next is not changed, to allow iterators that are
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   524
        // traversing p to maintain their weak-consistency guarantee.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   525
        p.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   526
        trail.next = p.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   527
        if (last == p)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   528
            last = trail;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   529
        if (count.getAndDecrement() == capacity)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   530
            notFull.signal();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   531
    }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   532
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   533
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * Removes a single instance of the specified element from this queue,
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   535
     * if it is present.  More formally, removes an element {@code e} such
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   536
     * that {@code o.equals(e)}, if this queue contains one or more such
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * elements.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   538
     * Returns {@code true} if this queue contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * (or equivalently, if this queue changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * @param o element to be removed from this queue, if present
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   542
     * @return {@code true} if this queue changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        if (o == null) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   548
            for (Node<E> trail = head, p = trail.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   549
                 p != null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   550
                 trail = p, p = p.next) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                if (o.equals(p.item)) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   552
                    unlink(p, trail);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   553
                    return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   556
            return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * Returns an array containing all of the elements in this queue, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * maintained by this queue.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            int size = count.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
            Object[] a = new Object[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            for (Node<E> p = head.next; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                a[k++] = p.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * Returns an array containing all of the elements in this queue, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * proper sequence; the runtime type of the returned array is that of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * the specified array.  If the queue fits in the specified array, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * is returned therein.  Otherwise, a new array is allocated with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * runtime type of the specified array and the size of this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * <p>If this queue fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * (i.e., the array has more elements than this queue), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * the array immediately following the end of the queue is set to
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   599
     * {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     *
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   606
     * <p>Suppose {@code x} is a queue known to contain only strings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * The following code can be used to dump the queue into a newly
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   608
     * allocated array of {@code String}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *     String[] y = x.toArray(new String[0]);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   613
     * Note that {@code toArray(new Object[0])} is identical in function to
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   614
     * {@code toArray()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * @param a the array into which the elements of the queue are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     *          same runtime type is allocated for this purpose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *         this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   625
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            int size = count.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
            if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                a = (T[])java.lang.reflect.Array.newInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    (a.getClass().getComponentType(), size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            int k = 0;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   635
            for (Node<E> p = head.next; p != null; p = p.next)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                a[k++] = (T)p.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            if (a.length > k)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                a[k] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            return super.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Atomically removes all of the elements from this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * The queue will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   661
            for (Node<E> p, h = head; (p = h.next) != null; h = p) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   662
                h.next = h;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   663
                p.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   664
            }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   665
            head = last;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   666
            // assert head.item == null && head.next == null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            if (count.getAndSet(0) == capacity)
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   668
                notFull.signal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    public int drainTo(Collection<? super E> c) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   681
        return drainTo(c, Integer.MAX_VALUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    public int drainTo(Collection<? super E> c, int maxElements) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        if (c == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        if (c == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
            throw new IllegalArgumentException();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   695
        boolean signalNotFull = false;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   696
        final ReentrantLock takeLock = this.takeLock;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   697
        takeLock.lock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   699
            int n = Math.min(maxElements, count.get());
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   700
            // count.get provides visibility to first n Nodes
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   701
            Node<E> h = head;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   702
            int i = 0;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   703
            try {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   704
                while (i < n) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   705
                    Node<E> p = h.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   706
                    c.add(p.item);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   707
                    p.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   708
                    h.next = h;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   709
                    h = p;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   710
                    ++i;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   711
                }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   712
                return n;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   713
            } finally {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   714
                // Restore invariants even if c.add() threw
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   715
                if (i > 0) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   716
                    // assert h.item == null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   717
                    head = h;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   718
                    signalNotFull = (count.getAndAdd(-i) == capacity);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   719
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        } finally {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   722
            takeLock.unlock();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   723
            if (signalNotFull)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   724
                signalNotFull();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * Returns an iterator over the elements in this queue in proper sequence.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   730
     * The returned {@code Iterator} is a "weakly consistent" iterator that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * will never throw {@link ConcurrentModificationException},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * and guarantees to traverse elements as they existed upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * construction of the iterator, and may (but is not guaranteed to)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * reflect any modifications subsequent to construction.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * @return an iterator over the elements in this queue in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
      return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    private class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        /*
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   744
         * Basic weakly-consistent iterator.  At all times hold the next
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
         * item to hand out so that if hasNext() reports true, we will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
         * still have it to return even if lost race with a take etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        private Node<E> current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        private Node<E> lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        private E currentElement;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        Itr() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   753
            fullyLock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                current = head.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                if (current != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                    currentElement = current.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            } finally {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   759
                fullyUnlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
            return current != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   767
        /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   768
         * Unlike other traversal methods, iterators need to handle:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   769
         * - dequeued nodes (p.next == p)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   770
         * - interior removed nodes (p.item == null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   771
         */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   772
        private Node<E> nextNode(Node<E> p) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   773
            Node<E> s = p.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   774
            if (p == s)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   775
                return head.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   776
            // Skip over removed nodes.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   777
            // May be necessary if multiple interior Nodes are removed.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   778
            while (s != null && s.item == null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   779
                s = s.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   780
            return s;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   781
        }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   782
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        public E next() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   784
            fullyLock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                if (current == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                    throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                E x = currentElement;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                lastRet = current;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   790
                current = nextNode(current);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   791
                currentElement = (current == null) ? null : current.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            } finally {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   794
                fullyUnlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
            if (lastRet == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                throw new IllegalStateException();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   801
            fullyLock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                Node<E> node = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                lastRet = null;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   805
                for (Node<E> trail = head, p = trail.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   806
                     p != null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   807
                     trail = p, p = p.next) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   808
                    if (p == node) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   809
                        unlink(p, trail);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   810
                        break;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   811
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
            } finally {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   814
                fullyUnlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * Save the state to a stream (that is, serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     * @serialData The capacity is emitted (int), followed by all of
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   823
     * its elements (each an {@code Object}) in the proper order,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * followed by a null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     * @param s the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        fullyLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
            // Write out any hidden stuff, plus capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
            s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            // Write out all elements in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            for (Node<E> p = head.next; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                s.writeObject(p.item);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
            // Use trailing null as sentinel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            s.writeObject(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            fullyUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * Reconstitute this queue instance from a stream (that is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * deserialize it).
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   849
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * @param s the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        // Read in capacity, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        count.set(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
        last = head = new Node<E>(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        // Read in all elements and place in queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        for (;;) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   862
            @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
            E item = (E)s.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
            if (item == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            add(item);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
}