src/java.base/share/classes/java/util/concurrent/LinkedBlockingDeque.java
author darcy
Wed, 16 Oct 2019 16:55:52 -0700
changeset 58657 6252605fb005
parent 49433 b6671a111395
permissions -rw-r--r--
8232230: Suppress warnings on non-serializable non-transient instance fields in java.util.concurrent Reviewed-by: martin
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
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 7976
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
2
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;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
    42
import java.util.Objects;
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    43
import java.util.Spliterator;
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    44
import java.util.Spliterators;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    45
import java.util.concurrent.locks.Condition;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    46
import java.util.concurrent.locks.ReentrantLock;
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
    47
import java.util.function.Consumer;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
    48
import java.util.function.Predicate;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * An optionally-bounded {@linkplain BlockingDeque blocking deque} based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * linked nodes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
    54
 * <p>The optional capacity bound constructor argument serves as a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * way to prevent excessive expansion. The capacity, if unspecified,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * is equal to {@link Integer#MAX_VALUE}.  Linked nodes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * dynamically created upon each insertion unless this would bring the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * deque above capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <p>Most operations run in constant time (ignoring time spent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * blocking).  Exceptions include {@link #remove(Object) remove},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * {@link #removeFirstOccurrence removeFirstOccurrence}, {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * #removeLastOccurrence removeLastOccurrence}, {@link #contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * contains}, {@link #iterator iterator.remove()}, and the bulk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * operations, all of which run in linear time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
    67
 * <p>This class and its iterator implement all of the <em>optional</em>
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
    68
 * methods of the {@link Collection} and {@link Iterator} interfaces.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 48541
diff changeset
    71
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * @author  Doug Lea
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    76
 * @param <E> the type of elements held in this deque
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
public class LinkedBlockingDeque<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    extends AbstractQueue<E>
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 11013
diff changeset
    80
    implements BlockingDeque<E>, java.io.Serializable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * Implemented as a simple doubly-linked list protected by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * single lock and using conditions to manage blocking.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    85
     *
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    86
     * 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
    87
     * 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
    88
     * That would cause two problems:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    89
     * - allow a rogue Iterator to cause unbounded memory retention
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    90
     * - 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
    91
     *   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
    92
     *   hard time dealing with, causing repeated major collections.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    93
     * 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
    94
     * dequeued Nodes, and reachability does not necessarily have to
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
    95
     * 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
    96
     * 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
    97
     * 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
    98
     * or "last" (for prev links).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * We have "diamond" multiple interface/abstract class inheritance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * here, and that introduces ambiguities. Often we want the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * BlockingDeque javadoc combined with the AbstractQueue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * implementation, so a lot of method specs are duplicated here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private static final long serialVersionUID = -387911632671998426L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /** Doubly-linked list node class */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    static final class Node<E> {
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
         * 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
   114
         */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        E item;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   116
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   117
        /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   118
         * One of:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   119
         * - the real predecessor Node
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   120
         * - this Node, meaning the predecessor is tail
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   121
         * - null, meaning there is no predecessor
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   122
         */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        Node<E> prev;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   124
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   125
        /**
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   126
         * One of:
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   127
         * - the real successor Node
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   128
         * - this Node, meaning the successor is head
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   129
         * - null, meaning there is no successor
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   130
         */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        Node<E> next;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   132
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   133
        Node(E x) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            item = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
3415
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
     * Pointer to first node.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   140
     * Invariant: (first == null && last == null) ||
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   141
     *            (first.prev == null && first.item != null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   142
     */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   143
    transient Node<E> first;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   144
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
     * Pointer to last node.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   147
     * Invariant: (first == null && last == null) ||
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   148
     *            (last.next == null && last.item != null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   149
     */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   150
    transient Node<E> last;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   151
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /** Number of items in the deque */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private transient int count;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   154
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /** Maximum number of items in the deque */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    private final int capacity;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   157
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /** Main lock guarding all access */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   159
    final ReentrantLock lock = new ReentrantLock();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   160
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /** Condition for waiting takes */
58657
6252605fb005 8232230: Suppress warnings on non-serializable non-transient instance fields in java.util.concurrent
darcy
parents: 49433
diff changeset
   162
    @SuppressWarnings("serial") // Classes implementing Condition may be serializable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    private final Condition notEmpty = lock.newCondition();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   164
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    /** Condition for waiting puts */
58657
6252605fb005 8232230: Suppress warnings on non-serializable non-transient instance fields in java.util.concurrent
darcy
parents: 49433
diff changeset
   166
    @SuppressWarnings("serial") // Classes implementing Condition may be serializable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    private final Condition notFull = lock.newCondition();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   170
     * Creates a {@code LinkedBlockingDeque} with a capacity of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * {@link Integer#MAX_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public LinkedBlockingDeque() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        this(Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   178
     * Creates a {@code LinkedBlockingDeque} with the given (fixed) capacity.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param capacity the capacity of this deque
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   181
     * @throws IllegalArgumentException if {@code capacity} is less than 1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    public LinkedBlockingDeque(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        if (capacity <= 0) throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        this.capacity = capacity;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   189
     * Creates a {@code LinkedBlockingDeque} with a capacity of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * {@link Integer#MAX_VALUE}, initially containing the elements of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * the given collection, added in traversal order of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @param c the collection of elements to initially contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @throws NullPointerException if the specified collection or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    public LinkedBlockingDeque(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        this(Integer.MAX_VALUE);
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   200
        addAll(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    // Basic linking and unlinking operations, called only while holding lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   207
     * Links node as first element, or returns false if full.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   209
    private boolean linkFirst(Node<E> node) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   210
        // assert lock.isHeldByCurrentThread();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (count >= capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        Node<E> f = first;
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   214
        node.next = f;
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   215
        first = node;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (last == null)
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   217
            last = node;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        else
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   219
            f.prev = node;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   220
        ++count;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        notEmpty.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   226
     * Links node as last element, or returns false if full.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   228
    private boolean linkLast(Node<E> node) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   229
        // assert lock.isHeldByCurrentThread();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        if (count >= capacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        Node<E> l = last;
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   233
        node.prev = l;
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   234
        last = node;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (first == null)
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   236
            first = node;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        else
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   238
            l.next = node;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   239
        ++count;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        notEmpty.signal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * Removes and returns first element, or null if empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    private E unlinkFirst() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   248
        // assert lock.isHeldByCurrentThread();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        Node<E> f = first;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        if (f == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        Node<E> n = f.next;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   253
        E item = f.item;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   254
        f.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   255
        f.next = f; // help GC
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        first = n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        if (n == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            last = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            n.prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        --count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        notFull.signal();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   263
        return item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * Removes and returns last element, or null if empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    private E unlinkLast() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   270
        // assert lock.isHeldByCurrentThread();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        Node<E> l = last;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (l == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        Node<E> p = l.prev;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   275
        E item = l.item;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   276
        l.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   277
        l.prev = l; // help GC
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        last = p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        if (p == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            first = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            p.next = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        --count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        notFull.signal();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   285
        return item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   289
     * Unlinks x.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   291
    void unlink(Node<E> x) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   292
        // assert lock.isHeldByCurrentThread();
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   293
        // assert x.item != null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        Node<E> p = x.prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        Node<E> n = x.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        if (p == null) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   297
            unlinkFirst();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        } else if (n == null) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   299
            unlinkLast();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            p.next = n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            n.prev = p;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   303
            x.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   304
            // 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
   305
            // an iterator.
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   306
            --count;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   307
            notFull.signal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    // BlockingDeque methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    /**
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   314
     * @throws IllegalStateException if this deque is full
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   315
     * @throws NullPointerException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    public void addFirst(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        if (!offerFirst(e))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            throw new IllegalStateException("Deque full");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    /**
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   323
     * @throws IllegalStateException if this deque is full
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @throws NullPointerException  {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    public void addLast(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        if (!offerLast(e))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
            throw new IllegalStateException("Deque full");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public boolean offerFirst(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   336
        Node<E> node = new Node<E>(e);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   337
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   340
            return linkFirst(node);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public boolean offerLast(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   351
        Node<E> node = new Node<E>(e);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   352
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   355
            return linkLast(node);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    public void putFirst(E e) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   367
        Node<E> node = new Node<E>(e);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   368
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   371
            while (!linkFirst(node))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                notFull.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    public void putLast(E e) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   384
        Node<E> node = new Node<E>(e);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   385
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   388
            while (!linkLast(node))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                notFull.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    public boolean offerFirst(E e, long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   402
        Node<E> node = new Node<E>(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        long nanos = unit.toNanos(timeout);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   404
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        lock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   407
            while (!linkFirst(node)) {
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   408
                if (nanos <= 0L)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                nanos = notFull.awaitNanos(nanos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   412
            return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public boolean offerLast(E e, long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        if (e == null) throw new NullPointerException();
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   425
        Node<E> node = new Node<E>(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        long nanos = unit.toNanos(timeout);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   427
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        lock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        try {
7188
d0f966792a5d 6993789: LinkedBlockingDeque iterator/descendingIterator loops and owns lock forever
chegar
parents: 5506
diff changeset
   430
            while (!linkLast(node)) {
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   431
                if (nanos <= 0L)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                nanos = notFull.awaitNanos(nanos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   435
            return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @throws NoSuchElementException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public E removeFirst() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        E x = pollFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        if (x == null) throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * @throws NoSuchElementException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    public E removeLast() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        E x = pollLast();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        if (x == null) throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    public E pollFirst() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   460
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            return unlinkFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    public E pollLast() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   470
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            return unlinkLast();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    public E takeFirst() throws InterruptedException {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   480
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            E x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            while ( (x = unlinkFirst()) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                notEmpty.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public E takeLast() throws InterruptedException {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   493
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            E x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            while ( (x = unlinkLast()) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                notEmpty.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    public E pollFirst(long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        long nanos = unit.toNanos(timeout);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   508
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        lock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   511
            E x;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   512
            while ( (x = unlinkFirst()) == null) {
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   513
                if (nanos <= 0L)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                nanos = notEmpty.awaitNanos(nanos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   517
            return x;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    public E pollLast(long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        long nanos = unit.toNanos(timeout);
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   526
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        lock.lockInterruptibly();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   529
            E x;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   530
            while ( (x = unlinkLast()) == null) {
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   531
                if (nanos <= 0L)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                nanos = notEmpty.awaitNanos(nanos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            }
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   535
            return x;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @throws NoSuchElementException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public E getFirst() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        E x = peekFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        if (x == null) throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @throws NoSuchElementException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    public E getLast() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        E x = peekLast();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        if (x == null) throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    public E peekFirst() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   560
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            return (first == null) ? null : first.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    public E peekLast() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   570
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            return (last == null) ? null : last.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    public boolean removeFirstOccurrence(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        if (o == null) return false;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   581
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            for (Node<E> p = first; p != null; p = p.next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                if (o.equals(p.item)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                    unlink(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    public boolean removeLastOccurrence(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        if (o == null) return false;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   598
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
            for (Node<E> p = last; p != null; p = p.prev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                if (o.equals(p.item)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                    unlink(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    // BlockingQueue methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * Inserts the specified element at the end of this deque unless it would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * violate capacity restrictions.  When using a capacity-restricted deque,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * it is generally preferable to use method {@link #offer(Object) offer}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * <p>This method is equivalent to {@link #addLast}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   622
     * @throws IllegalStateException if this deque is full
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        addLast(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    public boolean offer(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        return offerLast(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    public void put(E e) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        putLast(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * @throws InterruptedException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    public boolean offer(E e, long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        return offerLast(e, timeout, unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Retrieves and removes the head of the queue represented by this deque.
45937
646816090183 8178409: Miscellaneous changes imported from jsr166 CVS 2017-07
dl
parents: 44743
diff changeset
   656
     * This method differs from {@link #poll() poll()} only in that it throws an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * exception if this deque is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * @return the head of the queue represented by this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * @throws NoSuchElementException if this deque is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    public E remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        return removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    public E poll() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        return pollFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    public E take() throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        return takeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    public E poll(long timeout, TimeUnit unit) throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        return pollFirst(timeout, unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * Retrieves, but does not remove, the head of the queue represented by
45937
646816090183 8178409: Miscellaneous changes imported from jsr166 CVS 2017-07
dl
parents: 44743
diff changeset
   682
     * this deque.  This method differs from {@link #peek() peek()} only in that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * it throws an exception if this deque is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * <p>This method is equivalent to {@link #getFirst() getFirst}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @return the head of the queue represented by this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @throws NoSuchElementException if this deque is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    public E element() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        return getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    public E peek() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        return peekFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * Returns the number of additional elements that this deque can ideally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * (in the absence of memory or resource constraints) accept without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * 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
   702
     * less the current {@code size} of this deque.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * <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
   705
     * an element will succeed by inspecting {@code remainingCapacity}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * because it may be the case that another thread is about to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * insert or remove an element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    public int remainingCapacity() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   710
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            return capacity - count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    public int drainTo(Collection<? super E> c) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   726
        return drainTo(c, Integer.MAX_VALUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    public int drainTo(Collection<? super E> c, int maxElements) {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
   736
        Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        if (c == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            throw new IllegalArgumentException();
11013
27f7a2f3be20 7107516: LinkedBlockingQueue/Deque.drainTo(Collection, int) returns 'maxElements' if its value is negative
dl
parents: 9242
diff changeset
   739
        if (maxElements <= 0)
27f7a2f3be20 7107516: LinkedBlockingQueue/Deque.drainTo(Collection, int) returns 'maxElements' if its value is negative
dl
parents: 9242
diff changeset
   740
            return 0;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   741
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   744
            int n = Math.min(maxElements, count);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   745
            for (int i = 0; i < n; i++) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   746
                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
   747
                unlinkFirst();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    // Stack methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    /**
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   758
     * @throws IllegalStateException if this deque is full
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
   759
     * @throws NullPointerException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    public void push(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        addFirst(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * @throws NoSuchElementException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    public E pop() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        return removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    // Collection methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * Removes the first occurrence of the specified element from this deque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * 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
   777
     * 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
   778
     * {@code o.equals(e)} (if such an element exists).
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   779
     * Returns {@code true} if this deque contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * (or equivalently, if this deque changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * <p>This method is equivalent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * {@link #removeFirstOccurrence(Object) removeFirstOccurrence}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * @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
   786
     * @return {@code true} if this deque changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        return removeFirstOccurrence(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * Returns the number of elements in this deque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * @return the number of elements in this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    public int size() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   798
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            return count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    /**
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   808
     * 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
   809
     * 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
   810
     * at least one element {@code e} such that {@code o.equals(e)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @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
   813
     * @return {@code true} if this deque contains the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        if (o == null) return false;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   817
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            for (Node<E> p = first; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                if (o.equals(p.item))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   829
    /**
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   830
     * Appends all of the elements in the specified collection to the end of
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   831
     * this deque, in the order that they are returned by the specified
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   832
     * collection's iterator.  Attempts to {@code addAll} of a deque to
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   833
     * itself result in {@code IllegalArgumentException}.
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   834
     *
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   835
     * @param c the elements to be inserted into this deque
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   836
     * @return {@code true} if this deque changed as a result of the call
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   837
     * @throws NullPointerException if the specified collection or any
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   838
     *         of its elements are null
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   839
     * @throws IllegalArgumentException if the collection is this deque
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   840
     * @throws IllegalStateException if this deque is full
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   841
     * @see #add(Object)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     */
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   843
    public boolean addAll(Collection<? extends E> c) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   844
        if (c == this)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   845
            // As historically specified in AbstractQueue#addAll
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   846
            throw new IllegalArgumentException();
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   847
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   848
        // Copy c into a private chain of Nodes
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   849
        Node<E> beg = null, end = null;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   850
        int n = 0;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   851
        for (E e : c) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   852
            Objects.requireNonNull(e);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   853
            n++;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   854
            Node<E> newNode = new Node<E>(e);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   855
            if (beg == null)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   856
                beg = end = newNode;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   857
            else {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   858
                end.next = newNode;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   859
                newNode.prev = end;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   860
                end = newNode;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   861
            }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   862
        }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   863
        if (beg == null)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   864
            return false;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   865
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   866
        // Atomically append the chain at the end
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   867
        final ReentrantLock lock = this.lock;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   868
        lock.lock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   869
        try {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   870
            if (count + n <= capacity) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   871
                beg.prev = last;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   872
                if (first == null)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   873
                    first = beg;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   874
                else
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   875
                    last.next = beg;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   876
                last = end;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   877
                count += n;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   878
                notEmpty.signalAll();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   879
                return true;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   880
            }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   881
        } finally {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   882
            lock.unlock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   883
        }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   884
        // Fall back to historic non-atomic implementation, failing
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   885
        // with IllegalStateException when the capacity is exceeded.
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   886
        return super.addAll(c);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
   887
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * Returns an array containing all of the elements in this deque, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * proper sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * maintained by this deque.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * @return an array containing all of the elements in this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   902
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    public Object[] toArray() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   904
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
            Object[] a = new Object[count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
            for (Node<E> p = first; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                a[k++] = p.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * Returns an array containing all of the elements in this deque, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * proper sequence; the runtime type of the returned array is that of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * the specified array.  If the deque fits in the specified array, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * is returned therein.  Otherwise, a new array is allocated with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * runtime type of the specified array and the size of this deque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     * <p>If this deque fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * (i.e., the array has more elements than this deque), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * 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
   927
     * {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     *
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   934
     * <p>Suppose {@code x} is a deque known to contain only strings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     * 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
   936
     * allocated array of {@code String}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     *
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   938
     * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     *
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   940
     * 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
   941
     * {@code toArray()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * @param a the array into which the elements of the deque are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     *          same runtime type is allocated for this purpose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * @return an array containing all of the elements in this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     *         this deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     */
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   952
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    public <T> T[] toArray(T[] a) {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   954
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            if (a.length < count)
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   958
                a = (T[])java.lang.reflect.Array.newInstance
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   959
                    (a.getClass().getComponentType(), count);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
            int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            for (Node<E> p = first; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
                a[k++] = (T)p.item;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            if (a.length > k)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                a[k] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
    public String toString() {
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   973
        return Helpers.collectionToString(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * Atomically removes all of the elements from this deque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * The deque will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    public void clear() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   981
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   984
            for (Node<E> f = first; f != null; ) {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   985
                f.item = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   986
                Node<E> n = f.next;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   987
                f.prev = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   988
                f.next = null;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   989
                f = n;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
   990
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            first = last = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
            count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
            notFull.signalAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
    /**
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1000
     * Used for any element traversal that is not entirely under lock.
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1001
     * Such traversals must handle both:
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1002
     * - dequeued nodes (p.next == p)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1003
     * - (possibly multiple) interior removed nodes (p.item == null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1004
     */
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1005
    Node<E> succ(Node<E> p) {
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1006
        if (p == (p = p.next))
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1007
            p = first;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1008
        return p;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1009
    }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1010
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1011
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     * Returns an iterator over the elements in this deque in proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * The elements will be returned in order from first (head) to last (tail).
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7188
diff changeset
  1014
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1015
     * <p>The returned iterator is
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1016
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * @return an iterator over the elements in this deque in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     * Returns an iterator over the elements in this deque in reverse
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     * sequential order.  The elements will be returned in order from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * last (tail) to first (head).
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7188
diff changeset
  1028
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1029
     * <p>The returned iterator is
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1030
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 7518
diff changeset
  1031
     *
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 7518
diff changeset
  1032
     * @return an iterator over the elements in this deque in reverse order
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    public Iterator<E> descendingIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        return new DescendingItr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    /**
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
  1039
     * Base class for LinkedBlockingDeque iterators.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
    private abstract class AbstractItr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        /**
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
  1043
         * The next node to return in next().
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
         */
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 11013
diff changeset
  1045
        Node<E> next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
         * nextItem holds on to item fields because once we claim that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
         * an element exists in hasNext(), we must return item read
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1050
         * under lock even if it was in the process of being removed
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1051
         * when hasNext() was called.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        E nextItem;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
         * Node returned by most recent call to next. Needed by remove.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
         * Reset to null if this element is deleted by a call to remove.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        private Node<E> lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1061
        abstract Node<E> firstNode();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1062
        abstract Node<E> nextNode(Node<E> n);
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1063
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1064
        private Node<E> succ(Node<E> p) {
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1065
            if (p == (p = nextNode(p)))
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1066
                p = firstNode();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1067
            return p;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1068
        }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1069
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
        AbstractItr() {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1071
            // set to initial position
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1072
            final ReentrantLock lock = LinkedBlockingDeque.this.lock;
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1073
            lock.lock();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1074
            try {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1075
                if ((next = firstNode()) != null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1076
                    nextItem = next.item;
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1077
            } finally {
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1078
                lock.unlock();
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1079
            }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1080
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
            return next != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        public E next() {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1087
            Node<E> p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1088
            if ((p = next) == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                throw new NoSuchElementException();
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1090
            lastRet = p;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            E x = nextItem;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1092
            final ReentrantLock lock = LinkedBlockingDeque.this.lock;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1093
            lock.lock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1094
            try {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1095
                E e = null;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1096
                for (p = nextNode(p); p != null && (e = p.item) == null; )
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1097
                    p = succ(p);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1098
                next = p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1099
                nextItem = e;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1100
            } finally {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1101
                lock.unlock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1102
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
            return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1106
        public void forEachRemaining(Consumer<? super E> action) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1107
            // A variant of forEachFrom
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1108
            Objects.requireNonNull(action);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1109
            Node<E> p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1110
            if ((p = next) == null) return;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1111
            lastRet = p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1112
            next = null;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1113
            final ReentrantLock lock = LinkedBlockingDeque.this.lock;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1114
            final int batchSize = 64;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1115
            Object[] es = null;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1116
            int n, len = 1;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1117
            do {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1118
                lock.lock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1119
                try {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1120
                    if (es == null) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1121
                        p = nextNode(p);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1122
                        for (Node<E> q = p; q != null; q = succ(q))
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1123
                            if (q.item != null && ++len == batchSize)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1124
                                break;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1125
                        es = new Object[len];
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1126
                        es[0] = nextItem;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1127
                        nextItem = null;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1128
                        n = 1;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1129
                    } else
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1130
                        n = 0;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1131
                    for (; p != null && n < len; p = succ(p))
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1132
                        if ((es[n] = p.item) != null) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1133
                            lastRet = p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1134
                            n++;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1135
                        }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1136
                } finally {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1137
                    lock.unlock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1138
                }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1139
                for (int i = 0; i < n; i++) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1140
                    @SuppressWarnings("unchecked") E e = (E) es[i];
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1141
                    action.accept(e);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1142
                }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1143
            } while (n > 0 && p != null);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1144
        }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1145
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
            Node<E> n = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            if (n == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            lastRet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
            final ReentrantLock lock = LinkedBlockingDeque.this.lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            try {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1154
                if (n.item != null)
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1155
                    unlink(n);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
                lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1162
    /** Forward iterator */
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1163
    private class Itr extends AbstractItr {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1164
        Itr() {}                        // prevent access constructor creation
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1165
        Node<E> firstNode() { return first; }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1166
        Node<E> nextNode(Node<E> n) { return n.next; }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1167
    }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1168
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1169
    /** Descending iterator */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
    private class DescendingItr extends AbstractItr {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1171
        DescendingItr() {}              // prevent access constructor creation
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1172
        Node<E> firstNode() { return last; }
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1173
        Node<E> nextNode(Node<E> n) { return n.prev; }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1176
    /**
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1177
     * A customized variant of Spliterators.IteratorSpliterator.
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1178
     * Keep this class in sync with (very similar) LBQSpliterator.
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1179
     */
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1180
    private final class LBDSpliterator implements Spliterator<E> {
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1181
        static final int MAX_BATCH = 1 << 25;  // max batch array size;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1182
        Node<E> current;    // current node; null until initialized
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1183
        int batch;          // batch size for splits
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1184
        boolean exhausted;  // true when no more nodes
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1185
        long est = size();  // size estimate
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1186
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1187
        LBDSpliterator() {}
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1188
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1189
        public long estimateSize() { return est; }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1190
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1191
        public Spliterator<E> trySplit() {
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1192
            Node<E> h;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1193
            if (!exhausted &&
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1194
                ((h = current) != null || (h = first) != null)
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1195
                && h.next != null) {
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1196
                int n = batch = Math.min(batch + 1, MAX_BATCH);
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1197
                Object[] a = new Object[n];
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1198
                final ReentrantLock lock = LinkedBlockingDeque.this.lock;
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1199
                int i = 0;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1200
                Node<E> p = current;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1201
                lock.lock();
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1202
                try {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1203
                    if (p != null || (p = first) != null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1204
                        for (; p != null && i < n; p = succ(p))
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1205
                            if ((a[i] = p.item) != null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1206
                                i++;
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1207
                } finally {
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1208
                    lock.unlock();
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1209
                }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1210
                if ((current = p) == null) {
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1211
                    est = 0L;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1212
                    exhausted = true;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1213
                }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1214
                else if ((est -= i) < 0L)
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1215
                    est = 0L;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1216
                if (i > 0)
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1217
                    return Spliterators.spliterator
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
  1218
                        (a, 0, i, (Spliterator.ORDERED |
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
  1219
                                   Spliterator.NONNULL |
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
  1220
                                   Spliterator.CONCURRENT));
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1221
            }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1222
            return null;
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1223
        }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1224
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1225
        public boolean tryAdvance(Consumer<? super E> action) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1226
            Objects.requireNonNull(action);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1227
            if (!exhausted) {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1228
                E e = null;
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1229
                final ReentrantLock lock = LinkedBlockingDeque.this.lock;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1230
                lock.lock();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1231
                try {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1232
                    Node<E> p;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1233
                    if ((p = current) != null || (p = first) != null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1234
                        do {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1235
                            e = p.item;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1236
                            p = succ(p);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1237
                        } while (e == null && p != null);
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1238
                    if ((current = p) == null)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1239
                        exhausted = true;
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1240
                } finally {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1241
                    lock.unlock();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1242
                }
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1243
                if (e != null) {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1244
                    action.accept(e);
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1245
                    return true;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1246
                }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1247
            }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1248
            return false;
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1249
        }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1250
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1251
        public void forEachRemaining(Consumer<? super E> action) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1252
            Objects.requireNonNull(action);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1253
            if (!exhausted) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1254
                exhausted = true;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1255
                Node<E> p = current;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1256
                current = null;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1257
                forEachFrom(action, p);
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1258
            }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1259
        }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1260
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1261
        public int characteristics() {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1262
            return (Spliterator.ORDERED |
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1263
                    Spliterator.NONNULL |
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1264
                    Spliterator.CONCURRENT);
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1265
        }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1266
    }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1267
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1268
    /**
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1269
     * Returns a {@link Spliterator} over the elements in this deque.
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1270
     *
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1271
     * <p>The returned spliterator is
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1272
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1273
     *
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1274
     * <p>The {@code Spliterator} reports {@link Spliterator#CONCURRENT},
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1275
     * {@link Spliterator#ORDERED}, and {@link Spliterator#NONNULL}.
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1276
     *
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1277
     * @implNote
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1278
     * The {@code Spliterator} implements {@code trySplit} to permit limited
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1279
     * parallelism.
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1280
     *
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1281
     * @return a {@code Spliterator} over the elements in this deque
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1282
     * @since 1.8
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1283
     */
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1284
    public Spliterator<E> spliterator() {
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1285
        return new LBDSpliterator();
18767
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1286
    }
6214297bf27d 8011427: java.util.concurrent collection Spliterator implementations
psandoz
parents: 14325
diff changeset
  1287
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
    /**
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1289
     * @throws NullPointerException {@inheritDoc}
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1290
     */
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1291
    public void forEach(Consumer<? super E> action) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1292
        Objects.requireNonNull(action);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1293
        forEachFrom(action, null);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1294
    }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1295
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1296
    /**
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1297
     * Runs action on each element found during a traversal starting at p.
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1298
     * If p is null, traversal starts at head.
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1299
     */
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1300
    void forEachFrom(Consumer<? super E> action, Node<E> p) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1301
        // Extract batches of elements while holding the lock; then
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1302
        // run the action on the elements while not
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1303
        final ReentrantLock lock = this.lock;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1304
        final int batchSize = 64;       // max number of elements per batch
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1305
        Object[] es = null;             // container for batch of elements
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1306
        int n, len = 0;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1307
        do {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1308
            lock.lock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1309
            try {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1310
                if (es == null) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1311
                    if (p == null) p = first;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1312
                    for (Node<E> q = p; q != null; q = succ(q))
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1313
                        if (q.item != null && ++len == batchSize)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1314
                            break;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1315
                    es = new Object[len];
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1316
                }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1317
                for (n = 0; p != null && n < len; p = succ(p))
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1318
                    if ((es[n] = p.item) != null)
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1319
                        n++;
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1320
            } finally {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1321
                lock.unlock();
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1322
            }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1323
            for (int i = 0; i < n; i++) {
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1324
                @SuppressWarnings("unchecked") E e = (E) es[i];
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1325
                action.accept(e);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1326
            }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1327
        } while (n > 0 && p != null);
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1328
    }
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1329
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1330
    /**
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1331
     * @throws NullPointerException {@inheritDoc}
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1332
     */
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1333
    public boolean removeIf(Predicate<? super E> filter) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1334
        Objects.requireNonNull(filter);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1335
        return bulkRemove(filter);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1336
    }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1337
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1338
    /**
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1339
     * @throws NullPointerException {@inheritDoc}
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1340
     */
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1341
    public boolean removeAll(Collection<?> c) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1342
        Objects.requireNonNull(c);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1343
        return bulkRemove(e -> c.contains(e));
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1344
    }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1345
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1346
    /**
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1347
     * @throws NullPointerException {@inheritDoc}
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1348
     */
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1349
    public boolean retainAll(Collection<?> c) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1350
        Objects.requireNonNull(c);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1351
        return bulkRemove(e -> !c.contains(e));
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1352
    }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1353
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1354
    /** Implementation of bulk remove methods. */
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1355
    @SuppressWarnings("unchecked")
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1356
    private boolean bulkRemove(Predicate<? super E> filter) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1357
        boolean removed = false;
48541
946e34c2dec9 8193300: Miscellaneous changes imported from jsr166 CVS 2018-01
dl
parents: 47216
diff changeset
  1358
        final ReentrantLock lock = this.lock;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1359
        Node<E> p = null;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1360
        Node<E>[] nodes = null;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1361
        int n, len = 0;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1362
        do {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1363
            // 1. Extract batch of up to 64 elements while holding the lock.
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1364
            lock.lock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1365
            try {
48541
946e34c2dec9 8193300: Miscellaneous changes imported from jsr166 CVS 2018-01
dl
parents: 47216
diff changeset
  1366
                if (nodes == null) {  // first batch; initialize
946e34c2dec9 8193300: Miscellaneous changes imported from jsr166 CVS 2018-01
dl
parents: 47216
diff changeset
  1367
                    p = first;
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1368
                    for (Node<E> q = p; q != null; q = succ(q))
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1369
                        if (q.item != null && ++len == 64)
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1370
                            break;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1371
                    nodes = (Node<E>[]) new Node<?>[len];
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1372
                }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1373
                for (n = 0; p != null && n < len; p = succ(p))
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1374
                    nodes[n++] = p;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1375
            } finally {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1376
                lock.unlock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1377
            }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1378
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1379
            // 2. Run the filter on the elements while lock is free.
48541
946e34c2dec9 8193300: Miscellaneous changes imported from jsr166 CVS 2018-01
dl
parents: 47216
diff changeset
  1380
            long deathRow = 0L;       // "bitset" of size 64
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1381
            for (int i = 0; i < n; i++) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1382
                final E e;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1383
                if ((e = nodes[i].item) != null && filter.test(e))
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1384
                    deathRow |= 1L << i;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1385
            }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1386
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1387
            // 3. Remove any filtered elements while holding the lock.
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1388
            if (deathRow != 0) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1389
                lock.lock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1390
                try {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1391
                    for (int i = 0; i < n; i++) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1392
                        final Node<E> q;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1393
                        if ((deathRow & (1L << i)) != 0L
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1394
                            && (q = nodes[i]).item != null) {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1395
                            unlink(q);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1396
                            removed = true;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1397
                        }
48541
946e34c2dec9 8193300: Miscellaneous changes imported from jsr166 CVS 2018-01
dl
parents: 47216
diff changeset
  1398
                        nodes[i] = null; // help GC
43521
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1399
                    }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1400
                } finally {
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1401
                    lock.unlock();
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1402
                }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1403
            }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1404
        } while (n > 0 && p != null);
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1405
        return removed;
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1406
    }
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1407
60e247b8d9a4 8169748: LinkedTransferQueue bulk remove is O(n^2)
dl
parents: 42926
diff changeset
  1408
    /**
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 11013
diff changeset
  1409
     * Saves this deque to a stream (that is, serializes it).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1411
     * @param s the stream
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1412
     * @throws java.io.IOException if an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
     * @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
  1414
     * {@code Object}) in the proper order, followed by a null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
        throws java.io.IOException {
3415
79309d6eab38 6805775: LinkedBlockingQueue Nodes should unlink themselves before becoming garbage
dl
parents: 2
diff changeset
  1418
        final ReentrantLock lock = this.lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
        lock.lock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
            // Write out capacity and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
            s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
            // Write out all elements in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
            for (Node<E> p = first; p != null; p = p.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
                s.writeObject(p.item);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
            // Use trailing null as sentinel
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
            s.writeObject(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
            lock.unlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    /**
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 11013
diff changeset
  1434
     * Reconstitutes this deque from a stream (that is, deserializes it).
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1435
     * @param s the stream
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1436
     * @throws ClassNotFoundException if the class of a serialized object
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1437
     *         could not be found
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18767
diff changeset
  1438
     * @throws java.io.IOException if an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
        count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
        first = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
        last = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
        // Read in all elements and place in queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
        for (;;) {
42926
8b9cacdadb2d 8171051: LinkedBlockingQueue spliterator needs to support node self-linking
dl
parents: 42319
diff changeset
  1448
            @SuppressWarnings("unchecked") E item = (E)s.readObject();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
            if (item == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
            add(item);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
42319
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1455
    void checkInvariants() {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1456
        // assert lock.isHeldByCurrentThread();
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1457
        // Nodes may get self-linked or lose their item, but only
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1458
        // after being unlinked and becoming unreachable from first.
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1459
        for (Node<E> p = first; p != null; p = p.next) {
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1460
            // assert p.next != p;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1461
            // assert p.item != null;
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1462
        }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1463
    }
0193886267c3 8143577: optimize ArrayList.removeIf
dl
parents: 32991
diff changeset
  1464
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
}