jdk/src/java.base/share/classes/java/util/ArrayList.java
author redestad
Mon, 12 Sep 2016 17:45:55 +0200
changeset 40812 dc3755b63ade
parent 36747 b984c3a69c74
child 41208 8a97b5704e66
permissions -rw-r--r--
8165723: JarFile::isMultiRelease() method returns false when it should return true Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    28
import java.util.function.Consumer;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    29
import java.util.function.Predicate;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    30
import java.util.function.UnaryOperator;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    33
 * Resizable-array implementation of the {@code List} interface.  Implements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * all optional list operations, and permits all elements, including
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    35
 * {@code null}.  In addition to implementing the {@code List} interface,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * this class provides methods to manipulate the size of the array that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * used internally to store the list.  (This class is roughly equivalent to
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    38
 * {@code Vector}, except that it is unsynchronized.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    40
 * <p>The {@code size}, {@code isEmpty}, {@code get}, {@code set},
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    41
 * {@code iterator}, and {@code listIterator} operations run in constant
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    42
 * time.  The {@code add} operation runs in <i>amortized constant time</i>,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * that is, adding n elements requires O(n) time.  All of the other operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * run in linear time (roughly speaking).  The constant factor is low compared
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    45
 * to that for the {@code LinkedList} implementation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    47
 * <p>Each {@code ArrayList} instance has a <i>capacity</i>.  The capacity is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * the size of the array used to store the elements in the list.  It is always
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * at least as large as the list size.  As elements are added to an ArrayList,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * its capacity grows automatically.  The details of the growth policy are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * specified beyond the fact that adding an element has constant amortized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * time cost.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    54
 * <p>An application can increase the capacity of an {@code ArrayList} instance
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    55
 * before adding a large number of elements using the {@code ensureCapacity}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * operation.  This may reduce the amount of incremental reallocation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p><strong>Note that this implementation is not synchronized.</strong>
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    59
 * If multiple threads access an {@code ArrayList} instance concurrently,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * and at least one of the threads modifies the list structurally, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <i>must</i> be synchronized externally.  (A structural modification is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * any operation that adds or deletes one or more elements, or explicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * resizes the backing array; merely setting the value of an element is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * a structural modification.)  This is typically accomplished by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * synchronizing on some object that naturally encapsulates the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * If no such object exists, the list should be "wrapped" using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * {@link Collections#synchronizedList Collections.synchronizedList}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * method.  This is best done at creation time, to prevent accidental
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * unsynchronized access to the list:<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *   List list = Collections.synchronizedList(new ArrayList(...));</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
24196
61c9885d76e2 8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents: 24122
diff changeset
    73
 * <p id="fail-fast">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * The iterators returned by this class's {@link #iterator() iterator} and
24196
61c9885d76e2 8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents: 24122
diff changeset
    75
 * {@link #listIterator(int) listIterator} methods are <em>fail-fast</em>:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * if the list is structurally modified at any time after the iterator is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * created, in any way except through the iterator's own
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * {@link ListIterator#remove() remove} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * {@link ListIterator#add(Object) add} methods, the iterator will throw a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * {@link ConcurrentModificationException}.  Thus, in the face of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * concurrent modification, the iterator fails quickly and cleanly, rather
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * than risking arbitrary, non-deterministic behavior at an undetermined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * throw {@code ConcurrentModificationException} on a best-effort basis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * exception for its correctness:  <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    97
 * @param <E> the type of elements in this list
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
    98
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * @see     Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * @see     LinkedList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * @see     Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
public class ArrayList<E> extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        implements List<E>, RandomAccess, Cloneable, java.io.Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private static final long serialVersionUID = 8683452581122892189L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   114
     * Default initial capacity.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   115
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   116
    private static final int DEFAULT_CAPACITY = 10;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   117
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   118
    /**
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   119
     * Shared empty array instance used for empty instances.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   120
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   121
    private static final Object[] EMPTY_ELEMENTDATA = {};
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   122
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   123
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   124
     * Shared empty array instance used for default sized empty instances. We
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   125
     * distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   126
     * first element is added.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   127
     */
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   128
    private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   129
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   130
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * The array buffer into which the elements of the ArrayList are stored.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   132
     * The capacity of the ArrayList is the length of this array buffer. Any
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   133
     * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   134
     * will be expanded to DEFAULT_CAPACITY when the first element is added.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   136
    transient Object[] elementData; // non-private to simplify nested class access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * The size of the ArrayList (the number of elements it contains).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private int size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Constructs an empty list with the specified initial capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   148
     * @param  initialCapacity  the initial capacity of the list
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   149
     * @throws IllegalArgumentException if the specified initial capacity
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   150
     *         is negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    public ArrayList(int initialCapacity) {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   153
        if (initialCapacity > 0) {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   154
            this.elementData = new Object[initialCapacity];
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   155
        } else if (initialCapacity == 0) {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   156
            this.elementData = EMPTY_ELEMENTDATA;
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   157
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            throw new IllegalArgumentException("Illegal Capacity: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                                               initialCapacity);
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   160
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * Constructs an empty list with an initial capacity of ten.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    public ArrayList() {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   167
        this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Constructs a list containing the elements of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * collection, in the order they are returned by the collection's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param c the collection whose elements are to be placed into this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public ArrayList(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        elementData = c.toArray();
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   180
        if ((size = elementData.length) != 0) {
31540
6efd719b3330 6260652: (coll) Arrays.asList(x).toArray().getClass() should be Object[].class
martin
parents: 25859
diff changeset
   181
            // defend against c.toArray (incorrectly) not returning Object[]
6efd719b3330 6260652: (coll) Arrays.asList(x).toArray().getClass() should be Object[].class
martin
parents: 25859
diff changeset
   182
            // (see e.g. https://bugs.openjdk.java.net/browse/JDK-6260652)
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   183
            if (elementData.getClass() != Object[].class)
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   184
                elementData = Arrays.copyOf(elementData, size, Object[].class);
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   185
        } else {
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   186
            // replace with empty array.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   187
            this.elementData = EMPTY_ELEMENTDATA;
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   188
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   192
     * Trims the capacity of this {@code ArrayList} instance to be the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * list's current size.  An application can use this operation to minimize
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   194
     * the storage of an {@code ArrayList} instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    public void trimToSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        modCount++;
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   198
        if (size < elementData.length) {
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   199
            elementData = (size == 0)
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   200
              ? EMPTY_ELEMENTDATA
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   201
              : Arrays.copyOf(elementData, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   206
     * Increases the capacity of this {@code ArrayList} instance, if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * necessary, to ensure that it can hold at least the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * specified by the minimum capacity argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   210
     * @param minCapacity the desired minimum capacity
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    public void ensureCapacity(int minCapacity) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   213
        if (minCapacity > elementData.length
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   214
            && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   215
                 && minCapacity <= DEFAULT_CAPACITY)) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   216
            modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   217
            grow(minCapacity);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   218
        }
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   219
    }
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   220
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   221
    /**
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   222
     * The maximum size of array to allocate (unless necessary).
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   223
     * Some VMs reserve some header words in an array.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   224
     * Attempts to allocate larger arrays may result in
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   225
     * OutOfMemoryError: Requested array size exceeds VM limit
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   226
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   227
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   228
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   229
    /**
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   230
     * Increases the capacity to ensure that it can hold at least the
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   231
     * number of elements specified by the minimum capacity argument.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   232
     *
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   233
     * @param minCapacity the desired minimum capacity
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   234
     * @throws OutOfMemoryError if minCapacity is less than zero
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   235
     */
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   236
    private Object[] grow(int minCapacity) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   237
        return elementData = Arrays.copyOf(elementData,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   238
                                           newCapacity(minCapacity));
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   239
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   240
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   241
    private Object[] grow() {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   242
        return grow(size + 1);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   243
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   244
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   245
    /**
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   246
     * Returns a capacity at least as large as the given minimum capacity.
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   247
     * Returns the current capacity increased by 50% if that suffices.
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   248
     * Will not return a capacity greater than MAX_ARRAY_SIZE unless
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   249
     * the given minimum capacity is greater than MAX_ARRAY_SIZE.
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   250
     *
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   251
     * @param minCapacity the desired minimum capacity
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   252
     * @throws OutOfMemoryError if minCapacity is less than zero
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   253
     */
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   254
    private int newCapacity(int minCapacity) {
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   255
        // overflow-conscious code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        int oldCapacity = elementData.length;
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   257
        int newCapacity = oldCapacity + (oldCapacity >> 1);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   258
        if (newCapacity - minCapacity <= 0) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   259
            if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   260
                return Math.max(DEFAULT_CAPACITY, minCapacity);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   261
            if (minCapacity < 0) // overflow
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   262
                throw new OutOfMemoryError();
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   263
            return minCapacity;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   264
        }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   265
        return (newCapacity - MAX_ARRAY_SIZE <= 0)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   266
            ? newCapacity
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   267
            : hugeCapacity(minCapacity);
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   268
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   269
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   270
    private static int hugeCapacity(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   271
        if (minCapacity < 0) // overflow
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   272
            throw new OutOfMemoryError();
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   273
        return (minCapacity > MAX_ARRAY_SIZE)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   274
            ? Integer.MAX_VALUE
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   275
            : MAX_ARRAY_SIZE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * Returns the number of elements in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @return the number of elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   288
     * Returns {@code true} if this list contains no elements.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   290
     * @return {@code true} if this list contains no elements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        return size == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   297
     * Returns {@code true} if this list contains the specified element.
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   298
     * More formally, returns {@code true} if and only if this list contains
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   299
     * at least one element {@code e} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   300
     * {@code Objects.equals(o, e)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @param o element whose presence in this list is to be tested
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   303
     * @return {@code true} if this list contains the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        return indexOf(o) >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * Returns the index of the first occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * in this list, or -1 if this list does not contain the element.
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   312
     * More formally, returns the lowest index {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   313
     * {@code Objects.equals(o, get(i))},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                if (elementData[i]==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                if (o.equals(elementData[i]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Returns the index of the last occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * in this list, or -1 if this list does not contain the element.
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   332
     * More formally, returns the highest index {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   333
     * {@code Objects.equals(o, get(i))},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    public int lastIndexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            for (int i = size-1; i >= 0; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                if (elementData[i]==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            for (int i = size-1; i >= 0; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                if (o.equals(elementData[i]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   350
     * Returns a shallow copy of this {@code ArrayList} instance.  (The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * elements themselves are not copied.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   353
     * @return a clone of this {@code ArrayList} instance
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        try {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   357
            ArrayList<?> v = (ArrayList<?>) super.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            v.elementData = Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            v.modCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            return v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            // this shouldn't happen, since we are Cloneable
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 9503
diff changeset
   363
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * Returns an array containing all of the elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * in proper sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * maintained by this list.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * @return an array containing all of the elements in this list in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *         proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        return Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * Returns an array containing all of the elements in this list in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * sequence (from first to last element); the runtime type of the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * array is that of the specified array.  If the list fits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * specified array, it is returned therein.  Otherwise, a new array is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * allocated with the runtime type of the specified array and the size of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * <p>If the list fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * (i.e., the array has more elements than the list), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * the array immediately following the end of the collection is set to
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   396
     * {@code null}.  (This is useful in determining the length of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * list <i>only</i> if the caller knows that the list does not contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * any null elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @param a the array into which the elements of the list are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @return an array containing the elements of the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *         this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            // Make a new array of a's runtime type, but my contents:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            return (T[]) Arrays.copyOf(elementData, size, a.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        System.arraycopy(elementData, 0, a, 0, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    // Positional Access Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    E elementData(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        return (E) elementData[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * Returns the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @param  index index of the element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @return the element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    public E get(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   435
        Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Replaces the element at the specified position in this list with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * @param index index of the element to replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * @param element element to be stored at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    public E set(int index, E element) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   449
        Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        E oldValue = elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        elementData[index] = element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    /**
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   456
     * This helper method split out from add(E) to keep method
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   457
     * bytecode size under 35 (the -XX:MaxInlineSize default value),
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   458
     * which helps when add(E) is called in a C1-compiled loop.
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   459
     */
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   460
    private void add(E e, Object[] elementData, int s) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   461
        if (s == elementData.length)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   462
            elementData = grow();
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   463
        elementData[s] = e;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   464
        size = s + 1;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   465
    }
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   466
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   467
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * Appends the specified element to the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @param e element to be appended to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   471
     * @return {@code true} (as specified by {@link Collection#add})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    public boolean add(E e) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   474
        modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   475
        add(e, elementData, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * Inserts the specified element at the specified position in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * list. Shifts the element currently at that position (if any) and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * any subsequent elements to the right (adds one to their indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * @param index index at which the specified element is to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * @param element element to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    public void add(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        rangeCheckForAdd(index);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   490
        modCount++;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   491
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   492
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   493
        if ((s = size) == (elementData = this.elementData).length)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   494
            elementData = grow();
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   495
        System.arraycopy(elementData, index,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   496
                         elementData, index + 1,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   497
                         s - index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        elementData[index] = element;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   499
        size = s + 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * Removes the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * Shifts any subsequent elements to the left (subtracts one from their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @param index the index of the element to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @return the element that was removed from the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    public E remove(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   512
        Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        E oldValue = elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        int numMoved = size - index - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        if (numMoved > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            System.arraycopy(elementData, index+1, elementData, index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                             numMoved);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   521
        elementData[--size] = null; // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * Removes the first occurrence of the specified element from this list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * if it is present.  If the list does not contain the element, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * unchanged.  More formally, removes the element with the lowest index
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   530
     * {@code i} such that
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31540
diff changeset
   531
     * {@code Objects.equals(o, get(i))}
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   532
     * (if such an element exists).  Returns {@code true} if this list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * contained the specified element (or equivalently, if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * @param o element to be removed from this list, if present
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   537
     * @return {@code true} if this list contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            for (int index = 0; index < size; index++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                if (elementData[index] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                    fastRemove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            for (int index = 0; index < size; index++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                if (o.equals(elementData[index])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                    fastRemove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * Private remove method that skips bounds checking and does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * return the value removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    private void fastRemove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        int numMoved = size - index - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        if (numMoved > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
            System.arraycopy(elementData, index+1, elementData, index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                             numMoved);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   566
        elementData[--size] = null; // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * Removes all of the elements from this list.  The list will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   576
        // clear to let GC do its work
16725
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   577
        for (int i = 0; i < size; i++)
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   578
            elementData[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * Appends all of the elements in the specified collection to the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * this list, in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * specified collection's Iterator.  The behavior of this operation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * undefined if the specified collection is modified while the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * is in progress.  (This implies that the behavior of this call is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * undefined if the specified collection is this list, and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * list is nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * @param c collection containing elements to be added to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   593
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        Object[] a = c.toArray();
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   598
        modCount++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        int numNew = a.length;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   600
        if (numNew == 0)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   601
            return false;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   602
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   603
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   604
        if (numNew > (elementData = this.elementData).length - (s = size))
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   605
            elementData = grow(s + numNew);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   606
        System.arraycopy(a, 0, elementData, s, numNew);
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   607
        size = s + numNew;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   608
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Inserts all of the elements in the specified collection into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * list, starting at the specified position.  Shifts the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * currently at that position (if any) and any subsequent elements to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * the right (increases their indices).  The new elements will appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * in the list in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * specified collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * @param index index at which to insert the first element from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     *              specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * @param c collection containing elements to be added to this list
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   622
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        Object[] a = c.toArray();
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   630
        modCount++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        int numNew = a.length;
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   632
        if (numNew == 0)
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   633
            return false;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   634
        Object[] elementData;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   635
        final int s;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   636
        if (numNew > (elementData = this.elementData).length - (s = size))
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   637
            elementData = grow(s + numNew);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   639
        int numMoved = s - index;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        if (numMoved > 0)
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   641
            System.arraycopy(elementData, index,
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   642
                             elementData, index + numNew,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                             numMoved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        System.arraycopy(a, 0, elementData, index, numNew);
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   645
        size = s + numNew;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   646
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * Removes from this list all of the elements whose index is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * Shifts any succeeding elements to the left (reduces their index).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * This call shortens the list by {@code (toIndex - fromIndex)} elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * (If {@code toIndex==fromIndex}, this operation has no effect.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * @throws IndexOutOfBoundsException if {@code fromIndex} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *         {@code toIndex} is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     *         ({@code fromIndex < 0 ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     *          toIndex > size() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     *          toIndex < fromIndex})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    protected void removeRange(int fromIndex, int toIndex) {
23580
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   663
        if (fromIndex > toIndex) {
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   664
            throw new IndexOutOfBoundsException(
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   665
                    outOfBoundsMsg(fromIndex, toIndex));
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   666
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        int numMoved = size - toIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        System.arraycopy(elementData, toIndex, elementData, fromIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                         numMoved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   672
        // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        int newSize = size - (toIndex-fromIndex);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   674
        for (int i = newSize; i < size; i++) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   675
            elementData[i] = null;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   676
        }
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   677
        size = newSize;
2
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
     * A version of rangeCheck used by add and addAll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        if (index > size || index < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * Constructs an IndexOutOfBoundsException detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * Of the many possible refactorings of the error handling code,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * this "outlining" performs best with both server and client VMs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        return "Index: "+index+", Size: "+size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    /**
23580
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   698
     * A version used in checking (fromIndex > toIndex) condition
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   699
     */
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   700
    private static String outOfBoundsMsg(int fromIndex, int toIndex) {
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   701
        return "From Index: " + fromIndex + " > To Index: " + toIndex;
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   702
    }
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   703
1055a611c69b 8014066: Remove redundant restriction from ArrayList#removeRange() spec
igerasim
parents: 22078
diff changeset
   704
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * Removes from this list all of its elements that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * @param c collection containing elements to be removed from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   711
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   712
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   714
     *         specified collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   715
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    public boolean removeAll(Collection<?> c) {
17441
5ae43433d158 4802647: Throw required NPEs from removeAll()/retainAll()
mduigou
parents: 17432
diff changeset
   720
        Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        return batchRemove(c, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * Retains only the elements in this list that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * specified collection.  In other words, removes from this list all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * of its elements that are not contained in the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * @param c collection containing elements to be retained in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   732
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   733
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   735
     *         specified collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   736
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    public boolean retainAll(Collection<?> c) {
17441
5ae43433d158 4802647: Throw required NPEs from removeAll()/retainAll()
mduigou
parents: 17432
diff changeset
   741
        Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        return batchRemove(c, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    private boolean batchRemove(Collection<?> c, boolean complement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        final Object[] elementData = this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        int r = 0, w = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            for (; r < size; r++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                if (c.contains(elementData[r]) == complement)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                    elementData[w++] = elementData[r];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            // Preserve behavioral compatibility with AbstractCollection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            // even if c.contains() throws.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            if (r != size) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                System.arraycopy(elementData, r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                                 elementData, w,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                                 size - r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                w += size - r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            if (w != size) {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   763
                // clear to let GC do its work
16725
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   764
                for (int i = w; i < size; i++)
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   765
                    elementData[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                modCount += size - w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                size = w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   775
     * Save the state of the {@code ArrayList} instance to a stream (that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * is, serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     *
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   778
     * @serialData The length of the array backing the {@code ArrayList}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     *             instance is emitted (int), followed by all of its elements
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   780
     *             (each an {@code Object}) in the proper order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        throws java.io.IOException{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        // Write out element count, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   788
        // Write out size as capacity for behavioural compatibility with clone()
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   789
        s.writeInt(size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        // Write out all elements in the proper order.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   792
        for (int i=0; i<size; i++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            s.writeObject(elementData[i]);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   794
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        if (modCount != expectedModCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    /**
24122
75b332affee0 8035584: ArrayList(c) should avoid inflation if c is empty
mduigou
parents: 23580
diff changeset
   802
     * Reconstitute the {@code ArrayList} instance from a stream (that is,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * deserialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        throws java.io.IOException, ClassNotFoundException {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   807
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        // Read in size, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   811
        // Read in capacity
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   812
        s.readInt(); // ignored
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   813
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   814
        if (size > 0) {
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   815
            // like clone(), allocate array based upon size not capacity
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   816
            Object[] elements = new Object[size];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   818
            // Read in all elements in the proper order.
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   819
            for (int i = 0; i < size; i++) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   820
                elements[i] = s.readObject();
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   821
            }
35312
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   822
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   823
            elementData = elements;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   824
        } else if (size == 0) {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   825
            elementData = EMPTY_ELEMENTDATA;
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   826
        } else {
4fbe776d28c5 8146568: NegativeArraySizeException in ArrayList.grow(int)
martin
parents: 32108
diff changeset
   827
            throw new java.io.InvalidObjectException("Invalid size: " + size);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   828
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     * sequence), starting at the specified position in the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     * The specified index indicates the first element that would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * returned by an initial call to {@link ListIterator#next next}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * An initial call to {@link ListIterator#previous previous} would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * return the element with the specified index minus one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    public ListIterator<E> listIterator(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
   844
        rangeCheckForAdd(index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
        return new ListItr(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * sequence).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * @see #listIterator(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    public ListIterator<E> listIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        return new ListItr(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * Returns an iterator over the elements in this list in proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * <p>The returned iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * @return an iterator over the elements in this list in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     * An optimized version of AbstractList.Itr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    private class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
        int cursor;       // index of next element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
        int lastRet = -1; // index of last element returned; -1 if no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            return cursor != size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
            if (i >= size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
            cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                ArrayList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   911
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   912
        @SuppressWarnings("unchecked")
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   913
        public void forEachRemaining(Consumer<? super E> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   914
            Objects.requireNonNull(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   915
            final int size = ArrayList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   916
            int i = cursor;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   917
            if (i >= size) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   918
                return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   919
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   920
            final Object[] elementData = ArrayList.this.elementData;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   921
            if (i >= elementData.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   922
                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   923
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   924
            while (i != size && modCount == expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   925
                consumer.accept((E) elementData[i++]);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   926
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   927
            // update once at end of iteration to reduce heap write traffic
17432
efdf6eb85a17 8013150: Iterator.remove and forEachRemaining relationship not specified
mduigou
parents: 17180
diff changeset
   928
            cursor = i;
efdf6eb85a17 8013150: Iterator.remove and forEachRemaining relationship not specified
mduigou
parents: 17180
diff changeset
   929
            lastRet = i - 1;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   930
            checkForComodification();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   931
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   932
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        final void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * An optimized version of AbstractList.ListItr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    private class ListItr extends Itr implements ListIterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        ListItr(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
            super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
            return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
            return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
            cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                ArrayList.this.set(lastRet, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
                int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
                ArrayList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
                cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
                throw new ConcurrentModificationException();
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * Returns a view of the portion of this list between the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.  (If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * {@code fromIndex} and {@code toIndex} are equal, the returned list is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     * empty.)  The returned list is backed by this list, so non-structural
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * changes in the returned list are reflected in this list, and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     * The returned list supports all of the optional list operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * <p>This method eliminates the need for explicit range operations (of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     * the sort that commonly exist for arrays).  Any operation that expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     * a list can be used as a range operation by passing a subList view
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * instead of a whole list.  For example, the following idiom
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     * removes a range of elements from a list:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     *      list.subList(from, to).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     * Similar idioms may be constructed for {@link #indexOf(Object)} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     * {@link #lastIndexOf(Object)}, and all of the algorithms in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * {@link Collections} class can be applied to a subList.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     * <p>The semantics of the list returned by this method become undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     * the backing list (i.e., this list) is <i>structurally modified</i> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     * any way other than via the returned list.  (Structural modifications are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     * those that change the size of this list, or otherwise perturb it in such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
     * a fashion that iterations in progress may yield incorrect results.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        subListRangeCheck(fromIndex, toIndex, size);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1031
        return new SubList<>(this, fromIndex, toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1034
    private static class SubList<E> extends AbstractList<E> implements RandomAccess {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1035
        private final ArrayList<E> root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1036
        private final SubList<E> parent;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        private final int offset;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1038
        private int size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1040
        /**
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1041
         * Constructs a sublist of an arbitrary ArrayList.
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1042
         */
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1043
        public SubList(ArrayList<E> root, int fromIndex, int toIndex) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1044
            this.root = root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1045
            this.parent = null;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1046
            this.offset = fromIndex;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
            this.size = toIndex - fromIndex;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1048
            this.modCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1051
        /**
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1052
         * Constructs a sublist of another SubList.
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1053
         */
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1054
        private SubList(SubList<E> parent, int fromIndex, int toIndex) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1055
            this.root = parent.root;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1056
            this.parent = parent;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1057
            this.offset = parent.offset + fromIndex;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1058
            this.size = toIndex - fromIndex;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1059
            this.modCount = root.modCount;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1060
        }
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1061
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1062
        public E set(int index, E element) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1063
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1065
            E oldValue = root.elementData(offset + index);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1066
            root.elementData[offset + index] = element;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
            return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
        public E get(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1071
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1073
            return root.elementData(offset + index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1078
            return size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1081
        public void add(int index, E element) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1084
            root.add(offset + index, element);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1085
            updateSizeAndModCount(1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        public E remove(int index) {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1089
            Objects.checkIndex(index, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1091
            E result = root.remove(offset + index);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1092
            updateSizeAndModCount(-1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        protected void removeRange(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1098
            root.removeRange(offset + fromIndex, offset + toIndex);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1099
            updateSizeAndModCount(fromIndex - toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
        public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
            return addAll(this.size, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
        public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
            int cSize = c.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
            if (cSize==0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            checkForComodification();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1112
            root.addAll(offset + index, c);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1113
            updateSizeAndModCount(cSize);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
            return listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1121
        public ListIterator<E> listIterator(int index) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
            return new ListIterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
                int cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
                int lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1128
                int expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
                public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
                    return cursor != SubList.this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
                public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
                    int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
                    if (i >= SubList.this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
                        throw new NoSuchElementException();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1140
                    Object[] elementData = root.elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
                    cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
                    return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
                public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
                    int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
                    if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
                        throw new NoSuchElementException();
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1157
                    Object[] elementData = root.elementData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
                    cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1164
                @SuppressWarnings("unchecked")
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1165
                public void forEachRemaining(Consumer<? super E> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1166
                    Objects.requireNonNull(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1167
                    final int size = SubList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1168
                    int i = cursor;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1169
                    if (i >= size) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1170
                        return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1171
                    }
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1172
                    final Object[] elementData = root.elementData;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1173
                    if (offset + i >= elementData.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1174
                        throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1175
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1176
                    while (i != size && modCount == expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1177
                        consumer.accept((E) elementData[offset + (i++)]);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1178
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1179
                    // update once at end of iteration to reduce heap write traffic
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1180
                    lastRet = cursor = i;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1181
                    checkForComodification();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1182
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1183
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
                    return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
                public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
                    return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
                        SubList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
                        cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
                        lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1201
                        expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
                public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
                    try {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1213
                        root.set(offset + lastRet, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
                public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
                        int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
                        SubList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
                        cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
                        lastRet = -1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1227
                        expectedModCount = root.modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
                final void checkForComodification() {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1234
                    if (root.modCount != expectedModCount)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            subListRangeCheck(fromIndex, toIndex, size);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1242
            return new SubList<>(this, fromIndex, toIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
            if (index < 0 || index > this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
                throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
            return "Index: "+index+", Size: "+this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        private void checkForComodification() {
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1255
            if (root.modCount != modCount)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1258
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1259
        private void updateSizeAndModCount(int sizeChange) {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1260
            SubList<E> slist = this;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1261
            do {
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1262
                slist.size += sizeChange;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1263
                slist.modCount = root.modCount;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1264
                slist = slist.parent;
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1265
            } while (slist != null);
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1266
        }
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1267
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1268
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1269
            checkForComodification();
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1270
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1271
            // ArrayListSpliterator is not used because late-binding logic
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1272
            // is different here
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1273
            return new Spliterator<>() {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1274
                private int index = offset; // current index, modified on advance/split
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1275
                private int fence = -1; // -1 until used; then one past last index
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1276
                private int expectedModCount; // initialized when fence set
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1277
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1278
                private int getFence() { // initialize fence to size on first use
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1279
                    int hi; // (a specialized variant appears in method forEach)
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1280
                    if ((hi = fence) < 0) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1281
                        expectedModCount = modCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1282
                        hi = fence = offset + size;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1283
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1284
                    return hi;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1285
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1286
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1287
                public ArrayListSpliterator<E> trySplit() {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1288
                    int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1289
                    // ArrayListSpliterator could be used here as the source is already bound
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1290
                    return (lo >= mid) ? null : // divide range in half unless too small
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1291
                        new ArrayListSpliterator<>(root, lo, index = mid,
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1292
                                                   expectedModCount);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1293
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1294
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1295
                public boolean tryAdvance(Consumer<? super E> action) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1296
                    Objects.requireNonNull(action);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1297
                    int hi = getFence(), i = index;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1298
                    if (i < hi) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1299
                        index = i + 1;
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1300
                        @SuppressWarnings("unchecked") E e = (E)root.elementData[i];
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1301
                        action.accept(e);
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1302
                        if (root.modCount != expectedModCount)
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1303
                            throw new ConcurrentModificationException();
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1304
                        return true;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1305
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1306
                    return false;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1307
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1308
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1309
                public void forEachRemaining(Consumer<? super E> action) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1310
                    Objects.requireNonNull(action);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1311
                    int i, hi, mc; // hoist accesses and checks from loop
36747
b984c3a69c74 8079136: Accessing a nested sublist leads to StackOverflowError
igerasim
parents: 36655
diff changeset
  1312
                    ArrayList<E> lst = root;
36655
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1313
                    Object[] a;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1314
                    if ((a = lst.elementData) != null) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1315
                        if ((hi = fence) < 0) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1316
                            mc = modCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1317
                            hi = offset + size;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1318
                        }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1319
                        else
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1320
                            mc = expectedModCount;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1321
                        if ((i = index) >= 0 && (index = hi) <= a.length) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1322
                            for (; i < hi; ++i) {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1323
                                @SuppressWarnings("unchecked") E e = (E) a[i];
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1324
                                action.accept(e);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1325
                            }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1326
                            if (lst.modCount == mc)
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1327
                                return;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1328
                        }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1329
                    }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1330
                    throw new ConcurrentModificationException();
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1331
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1332
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1333
                public long estimateSize() {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1334
                    return (long) (getFence() - index);
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1335
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1336
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1337
                public int characteristics() {
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1338
                    return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1339
                }
acc9c4072c89 8148748: ArrayList.subList().spliterator() is not late-binding
tvaleev
parents: 35312
diff changeset
  1340
            };
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1341
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
    }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1343
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1344
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1345
    public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1346
        Objects.requireNonNull(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1347
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1348
        @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1349
        final E[] elementData = (E[]) this.elementData;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1350
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1351
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1352
            action.accept(elementData[i]);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1353
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1354
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1355
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1356
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1357
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1358
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1359
    /**
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1360
     * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1361
     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1362
     * list.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1363
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1364
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1365
     * {@link Spliterator#SUBSIZED}, and {@link Spliterator#ORDERED}.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1366
     * Overriding implementations should document the reporting of additional
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1367
     * characteristic values.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1368
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1369
     * @return a {@code Spliterator} over the elements in this list
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1370
     * @since 1.8
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1371
     */
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1372
    @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1373
    public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1374
        return new ArrayListSpliterator<>(this, 0, -1, 0);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1375
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1376
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1377
    /** Index-based split-by-two, lazily initialized Spliterator */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1378
    static final class ArrayListSpliterator<E> implements Spliterator<E> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1379
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1380
        /*
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1381
         * If ArrayLists were immutable, or structurally immutable (no
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1382
         * adds, removes, etc), we could implement their spliterators
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1383
         * with Arrays.spliterator. Instead we detect as much
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1384
         * interference during traversal as practical without
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1385
         * sacrificing much performance. We rely primarily on
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1386
         * modCounts. These are not guaranteed to detect concurrency
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1387
         * violations, and are sometimes overly conservative about
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1388
         * within-thread interference, but detect enough problems to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1389
         * be worthwhile in practice. To carry this out, we (1) lazily
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1390
         * initialize fence and expectedModCount until the latest
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1391
         * point that we need to commit to the state we are checking
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1392
         * against; thus improving precision.  (This doesn't apply to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1393
         * SubLists, that create spliterators with current non-lazy
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1394
         * values).  (2) We perform only a single
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1395
         * ConcurrentModificationException check at the end of forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1396
         * (the most performance-sensitive method). When using forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1397
         * (as opposed to iterators), we can normally only detect
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1398
         * interference after actions, not before. Further
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1399
         * CME-triggering checks apply to all other possible
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1400
         * violations of assumptions for example null or too-small
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1401
         * elementData array given its size(), that could only have
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1402
         * occurred due to interference.  This allows the inner loop
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1403
         * of forEach to run without any further checks, and
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1404
         * simplifies lambda-resolution. While this does entail a
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1405
         * number of checks, note that in the common case of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1406
         * list.stream().forEach(a), no checks or other computation
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1407
         * occur anywhere other than inside forEach itself.  The other
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1408
         * less-often-used methods cannot take advantage of most of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1409
         * these streamlinings.
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1410
         */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1411
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1412
        private final ArrayList<E> list;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1413
        private int index; // current index, modified on advance/split
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1414
        private int fence; // -1 until used; then one past last index
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1415
        private int expectedModCount; // initialized when fence set
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1416
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1417
        /** Create new spliterator covering the given  range */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1418
        ArrayListSpliterator(ArrayList<E> list, int origin, int fence,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1419
                             int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1420
            this.list = list; // OK if null unless traversed
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1421
            this.index = origin;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1422
            this.fence = fence;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1423
            this.expectedModCount = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1424
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1425
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1426
        private int getFence() { // initialize fence to size on first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1427
            int hi; // (a specialized variant appears in method forEach)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1428
            ArrayList<E> lst;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1429
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1430
                if ((lst = list) == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1431
                    hi = fence = 0;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1432
                else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1433
                    expectedModCount = lst.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1434
                    hi = fence = lst.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1435
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1436
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1437
            return hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1438
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1439
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1440
        public ArrayListSpliterator<E> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1441
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1442
            return (lo >= mid) ? null : // divide range in half unless too small
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19435
diff changeset
  1443
                new ArrayListSpliterator<>(list, lo, index = mid,
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19435
diff changeset
  1444
                                           expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1445
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1446
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1447
        public boolean tryAdvance(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1448
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1449
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1450
            int hi = getFence(), i = index;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1451
            if (i < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1452
                index = i + 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1453
                @SuppressWarnings("unchecked") E e = (E)list.elementData[i];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1454
                action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1455
                if (list.modCount != expectedModCount)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1456
                    throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1457
                return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1458
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1459
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1460
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1461
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1462
        public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1463
            int i, hi, mc; // hoist accesses and checks from loop
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1464
            ArrayList<E> lst; Object[] a;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1465
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1466
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1467
            if ((lst = list) != null && (a = lst.elementData) != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1468
                if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1469
                    mc = lst.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1470
                    hi = lst.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1471
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1472
                else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1473
                    mc = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1474
                if ((i = index) >= 0 && (index = hi) <= a.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1475
                    for (; i < hi; ++i) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1476
                        @SuppressWarnings("unchecked") E e = (E) a[i];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1477
                        action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1478
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1479
                    if (lst.modCount == mc)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1480
                        return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1481
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1482
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1483
            throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1484
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1485
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1486
        public long estimateSize() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1487
            return (long) (getFence() - index);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1488
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1489
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1490
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1491
            return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1492
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1493
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1494
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1495
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1496
    public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1497
        Objects.requireNonNull(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1498
        // figure out which elements are to be removed
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1499
        // any exception thrown from the filter predicate at this stage
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1500
        // will leave the collection unmodified
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1501
        int removeCount = 0;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1502
        final BitSet removeSet = new BitSet(size);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1503
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1504
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1505
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1506
            @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1507
            final E element = (E) elementData[i];
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1508
            if (filter.test(element)) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1509
                removeSet.set(i);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1510
                removeCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1511
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1512
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1513
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1514
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1515
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1516
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1517
        // shift surviving elements left over the spaces left by removed elements
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1518
        final boolean anyToRemove = removeCount > 0;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1519
        if (anyToRemove) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1520
            final int newSize = size - removeCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1521
            for (int i=0, j=0; (i < size) && (j < newSize); i++, j++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1522
                i = removeSet.nextClearBit(i);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1523
                elementData[j] = elementData[i];
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1524
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1525
            for (int k=newSize; k < size; k++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1526
                elementData[k] = null;  // Let gc do its work
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1527
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1528
            this.size = newSize;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1529
            if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1530
                throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1531
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1532
            modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1533
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1534
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1535
        return anyToRemove;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1536
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1537
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1538
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1539
    @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1540
    public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1541
        Objects.requireNonNull(operator);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1542
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1543
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1544
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1545
            elementData[i] = operator.apply((E) elementData[i]);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1546
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1547
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1548
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1549
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1550
        modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1551
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1552
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1553
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1554
    @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1555
    public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1556
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1557
        Arrays.sort((E[]) elementData, 0, size, c);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1558
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1559
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1560
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1561
        modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1562
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
}