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