| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| package java.util; |
| |
| import java.util.function.Consumer; |
| import java.util.function.Predicate; |
| import java.util.function.UnaryOperator; |
| import jdk.internal.access.SharedSecrets; |
| import jdk.internal.util.ArraysSupport; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public class ArrayList<E> extends AbstractList<E> |
| implements List<E>, RandomAccess, Cloneable, java.io.Serializable |
| { |
| @java.io.Serial |
| private static final long serialVersionUID = 8683452581122892189L; |
| |
| |
| |
| |
| private static final int DEFAULT_CAPACITY = 10; |
| |
| |
| |
| |
| private static final Object[] EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| |
| transient Object[] elementData; |
| |
| |
| |
| |
| |
| |
| private int size; |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(int initialCapacity) { |
| if (initialCapacity > 0) { |
| this.elementData = new Object[initialCapacity]; |
| } else if (initialCapacity == 0) { |
| this.elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new IllegalArgumentException("Illegal Capacity: "+ |
| initialCapacity); |
| } |
| } |
| |
| |
| |
| |
| public ArrayList() { |
| this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| if ((size = a.length) != 0) { |
| if (c.getClass() == ArrayList.class) { |
| elementData = a; |
| } else { |
| elementData = Arrays.copyOf(a, size, Object[].class); |
| } |
| } else { |
| |
| elementData = EMPTY_ELEMENTDATA; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| public void trimToSize() { |
| modCount++; |
| if (size < elementData.length) { |
| elementData = (size == 0) |
| ? EMPTY_ELEMENTDATA |
| : Arrays.copyOf(elementData, size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public void ensureCapacity(int minCapacity) { |
| if (minCapacity > elementData.length |
| && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA |
| && minCapacity <= DEFAULT_CAPACITY)) { |
| modCount++; |
| grow(minCapacity); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| private Object[] grow(int minCapacity) { |
| int oldCapacity = elementData.length; |
| if (oldCapacity > 0 || elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { |
| int newCapacity = ArraysSupport.newLength(oldCapacity, |
| minCapacity - oldCapacity, |
| oldCapacity >> 1 ); |
| return elementData = Arrays.copyOf(elementData, newCapacity); |
| } else { |
| return elementData = new Object[Math.max(DEFAULT_CAPACITY, minCapacity)]; |
| } |
| } |
| |
| private Object[] grow() { |
| return grow(size + 1); |
| } |
| |
| |
| |
| |
| |
| |
| public int size() { |
| return size; |
| } |
| |
| |
| |
| |
| |
| |
| public boolean isEmpty() { |
| return size == 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int indexOf(Object o) { |
| return indexOfRange(o, 0, size); |
| } |
| |
| int indexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = start; i < end; i++) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = start; i < end; i++) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int lastIndexOf(Object o) { |
| return lastIndexOfRange(o, 0, size); |
| } |
| |
| int lastIndexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = end - 1; i >= start; i--) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = end - 1; i >= start; i--) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public Object clone() { |
| try { |
| ArrayList<?> v = (ArrayList<?>) super.clone(); |
| v.elementData = Arrays.copyOf(elementData, size); |
| v.modCount = 0; |
| return v; |
| } catch (CloneNotSupportedException e) { |
| |
| throw new InternalError(e); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public Object[] toArray() { |
| return Arrays.copyOf(elementData, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| if (a.length < size) |
| |
| return (T[]) Arrays.copyOf(elementData, size, a.getClass()); |
| System.arraycopy(elementData, 0, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| E elementData(int index) { |
| return (E) elementData[index]; |
| } |
| |
| @SuppressWarnings("unchecked") |
| static <E> E elementAt(Object[] es, int index) { |
| return (E) es[index]; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| return elementData(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(0); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(last); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| E oldValue = elementData(index); |
| elementData[index] = element; |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| private void add(E e, Object[] elementData, int s) { |
| if (s == elementData.length) |
| elementData = grow(); |
| elementData[s] = e; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public boolean add(E e) { |
| modCount++; |
| add(e, elementData, size); |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| modCount++; |
| final int s; |
| Object[] elementData; |
| if ((s = size) == (elementData = this.elementData).length) |
| elementData = grow(); |
| System.arraycopy(elementData, index, |
| elementData, index + 1, |
| s - index); |
| elementData[index] = element; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| public void addFirst(E element) { |
| add(0, element); |
| } |
| |
| |
| |
| |
| |
| |
| public void addLast(E element) { |
| add(element); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| final Object[] es = elementData; |
| |
| @SuppressWarnings("unchecked") E oldValue = (E) es[index]; |
| fastRemove(es, index); |
| |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[0]; |
| fastRemove(es, 0); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[last]; |
| fastRemove(es, last); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| final int expectedModCount = modCount; |
| |
| |
| boolean equal = (o.getClass() == ArrayList.class) |
| ? equalsArrayList((ArrayList<?>) o) |
| : equalsRange((List<?>) o, 0, size); |
| |
| checkForComodification(expectedModCount); |
| return equal; |
| } |
| |
| boolean equalsRange(List<?> other, int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| var oit = other.iterator(); |
| for (; from < to; from++) { |
| if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) { |
| return false; |
| } |
| } |
| return !oit.hasNext(); |
| } |
| |
| private boolean equalsArrayList(ArrayList<?> other) { |
| final int otherModCount = other.modCount; |
| final int s = size; |
| boolean equal; |
| if (equal = (s == other.size)) { |
| final Object[] otherEs = other.elementData; |
| final Object[] es = elementData; |
| if (s > es.length || s > otherEs.length) { |
| throw new ConcurrentModificationException(); |
| } |
| for (int i = 0; i < s; i++) { |
| if (!Objects.equals(es[i], otherEs[i])) { |
| equal = false; |
| break; |
| } |
| } |
| } |
| other.checkForComodification(otherModCount); |
| return equal; |
| } |
| |
| private void checkForComodification(final int expectedModCount) { |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| public int hashCode() { |
| int expectedModCount = modCount; |
| int hash = hashCodeRange(0, size); |
| checkForComodification(expectedModCount); |
| return hash; |
| } |
| |
| int hashCodeRange(int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| int hashCode = 1; |
| for (int i = from; i < to; i++) { |
| Object e = es[i]; |
| hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode()); |
| } |
| return hashCode; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean remove(Object o) { |
| final Object[] es = elementData; |
| final int size = this.size; |
| int i = 0; |
| found: { |
| if (o == null) { |
| for (; i < size; i++) |
| if (es[i] == null) |
| break found; |
| } else { |
| for (; i < size; i++) |
| if (o.equals(es[i])) |
| break found; |
| } |
| return false; |
| } |
| fastRemove(es, i); |
| return true; |
| } |
| |
| |
| |
| |
| |
| private void fastRemove(Object[] es, int i) { |
| modCount++; |
| final int newSize; |
| if ((newSize = size - 1) > i) |
| System.arraycopy(es, i + 1, es, i, newSize - i); |
| es[size = newSize] = null; |
| } |
| |
| |
| |
| |
| |
| public void clear() { |
| modCount++; |
| final Object[] es = elementData; |
| for (int to = size, i = size = 0; i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| System.arraycopy(a, 0, elementData, s, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| |
| int numMoved = s - index; |
| if (numMoved > 0) |
| System.arraycopy(elementData, index, |
| elementData, index + numNew, |
| numMoved); |
| System.arraycopy(a, 0, elementData, index, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| if (fromIndex > toIndex) { |
| throw new IndexOutOfBoundsException( |
| outOfBoundsMsg(fromIndex, toIndex)); |
| } |
| modCount++; |
| shiftTailOverGap(elementData, fromIndex, toIndex); |
| } |
| |
| |
| private void shiftTailOverGap(Object[] es, int lo, int hi) { |
| System.arraycopy(es, hi, es, lo, size - hi); |
| for (int to = size, i = (size -= hi - lo); i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| private void rangeCheckForAdd(int index) { |
| if (index > size || index < 0) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| |
| |
| |
| |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+size; |
| } |
| |
| |
| |
| |
| private static String outOfBoundsMsg(int fromIndex, int toIndex) { |
| return "From Index: " + fromIndex + " > To Index: " + toIndex; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false, 0, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true, 0, size); |
| } |
| |
| boolean batchRemove(Collection<?> c, boolean complement, |
| final int from, final int end) { |
| Objects.requireNonNull(c); |
| final Object[] es = elementData; |
| int r; |
| |
| for (r = from;; r++) { |
| if (r == end) |
| return false; |
| if (c.contains(es[r]) != complement) |
| break; |
| } |
| int w = r++; |
| try { |
| for (Object e; r < end; r++) |
| if (c.contains(e = es[r]) == complement) |
| es[w++] = e; |
| } catch (Throwable ex) { |
| |
| |
| System.arraycopy(es, r, es, w, end - r); |
| w += end - r; |
| throw ex; |
| } finally { |
| modCount += end - w; |
| shiftTailOverGap(es, w, end); |
| } |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void writeObject(java.io.ObjectOutputStream s) |
| throws java.io.IOException { |
| |
| int expectedModCount = modCount; |
| s.defaultWriteObject(); |
| |
| |
| s.writeInt(size); |
| |
| |
| for (int i=0; i<size; i++) { |
| s.writeObject(elementData[i]); |
| } |
| |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void readObject(java.io.ObjectInputStream s) |
| throws java.io.IOException, ClassNotFoundException { |
| |
| |
| s.defaultReadObject(); |
| |
| |
| s.readInt(); |
| |
| if (size > 0) { |
| |
| SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size); |
| Object[] elements = new Object[size]; |
| |
| |
| for (int i = 0; i < size; i++) { |
| elements[i] = s.readObject(); |
| } |
| |
| elementData = elements; |
| } else if (size == 0) { |
| elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new java.io.InvalidObjectException("Invalid size: " + size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator(int index) { |
| rangeCheckForAdd(index); |
| return new ListItr(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator() { |
| return new ListItr(0); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public Iterator<E> iterator() { |
| return new Itr(); |
| } |
| |
| |
| |
| |
| private class Itr implements Iterator<E> { |
| int cursor; |
| int lastRet = -1; |
| int expectedModCount = modCount; |
| |
| |
| Itr() {} |
| |
| public boolean hasNext() { |
| return cursor != size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= size) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| @Override |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = ArrayList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = elementData; |
| if (i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && modCount == expectedModCount; i++) |
| action.accept(elementAt(es, i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| private class ListItr extends Itr implements ListIterator<E> { |
| ListItr(int index) { |
| super(); |
| cursor = index; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.set(lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| ArrayList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private static class SubList<E> extends AbstractList<E> implements RandomAccess { |
| private final ArrayList<E> root; |
| private final SubList<E> parent; |
| private final int offset; |
| private int size; |
| |
| |
| |
| |
| public SubList(ArrayList<E> root, int fromIndex, int toIndex) { |
| this.root = root; |
| this.parent = null; |
| this.offset = fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = root.modCount; |
| } |
| |
| |
| |
| |
| private SubList(SubList<E> parent, int fromIndex, int toIndex) { |
| this.root = parent.root; |
| this.parent = parent; |
| this.offset = parent.offset + fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = parent.modCount; |
| } |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E oldValue = root.elementData(offset + index); |
| root.elementData[offset + index] = element; |
| return oldValue; |
| } |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| return root.elementData(offset + index); |
| } |
| |
| public int size() { |
| checkForComodification(); |
| return size; |
| } |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| checkForComodification(); |
| root.add(offset + index, element); |
| updateSizeAndModCount(1); |
| } |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E result = root.remove(offset + index); |
| updateSizeAndModCount(-1); |
| return result; |
| } |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| checkForComodification(); |
| root.removeRange(offset + fromIndex, offset + toIndex); |
| updateSizeAndModCount(fromIndex - toIndex); |
| } |
| |
| public boolean addAll(Collection<? extends E> c) { |
| return addAll(this.size, c); |
| } |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| int cSize = c.size(); |
| if (cSize==0) |
| return false; |
| checkForComodification(); |
| root.addAll(offset + index, c); |
| updateSizeAndModCount(cSize); |
| return true; |
| } |
| |
| public void replaceAll(UnaryOperator<E> operator) { |
| root.replaceAllRange(operator, offset, offset + size); |
| } |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false); |
| } |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true); |
| } |
| |
| private boolean batchRemove(Collection<?> c, boolean complement) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = |
| root.batchRemove(c, complement, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public boolean removeIf(Predicate<? super E> filter) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = root.removeIf(filter, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public Object[] toArray() { |
| checkForComodification(); |
| return Arrays.copyOfRange(root.elementData, offset, offset + size); |
| } |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| checkForComodification(); |
| if (a.length < size) |
| return (T[]) Arrays.copyOfRange( |
| root.elementData, offset, offset + size, a.getClass()); |
| System.arraycopy(root.elementData, offset, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| boolean equal = root.equalsRange((List<?>)o, offset, offset + size); |
| checkForComodification(); |
| return equal; |
| } |
| |
| public int hashCode() { |
| int hash = root.hashCodeRange(offset, offset + size); |
| checkForComodification(); |
| return hash; |
| } |
| |
| public int indexOf(Object o) { |
| int index = root.indexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public int lastIndexOf(Object o) { |
| int index = root.lastIndexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| public Iterator<E> iterator() { |
| return listIterator(); |
| } |
| |
| public ListIterator<E> listIterator(int index) { |
| checkForComodification(); |
| rangeCheckForAdd(index); |
| |
| return new ListIterator<E>() { |
| int cursor = index; |
| int lastRet = -1; |
| int expectedModCount = SubList.this.modCount; |
| |
| public boolean hasNext() { |
| return cursor != SubList.this.size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= SubList.this.size) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = SubList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = root.elementData; |
| if (offset + i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && root.modCount == expectedModCount; i++) |
| action.accept(elementAt(es, offset + i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| SubList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| root.set(offset + lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| SubList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| }; |
| } |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private void rangeCheckForAdd(int index) { |
| if (index < 0 || index > this.size) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+this.size; |
| } |
| |
| private void checkForComodification() { |
| if (root.modCount != modCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| private void updateSizeAndModCount(int sizeChange) { |
| SubList<E> slist = this; |
| do { |
| slist.size += sizeChange; |
| slist.modCount = root.modCount; |
| slist = slist.parent; |
| } while (slist != null); |
| } |
| |
| public Spliterator<E> spliterator() { |
| checkForComodification(); |
| |
| |
| |
| |
| |
| return new Spliterator<E>() { |
| private int index = offset; |
| private int fence = -1; |
| private int expectedModCount; |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = offset + size; |
| } |
| return hi; |
| } |
| |
| public ArrayList<E>.ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| |
| return (lo >= mid) ? null : |
| root.new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)root.elementData[i]; |
| action.accept(e); |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int i, hi, mc; |
| ArrayList<E> lst = root; |
| Object[] a; |
| if ((a = lst.elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = offset + size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (lst.modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| }; |
| } |
| } |
| |
| |
| |
| |
| @Override |
| public void forEach(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| final int size = this.size; |
| for (int i = 0; modCount == expectedModCount && i < size; i++) |
| action.accept(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @Override |
| public Spliterator<E> spliterator() { |
| return new ArrayListSpliterator(0, -1, 0); |
| } |
| |
| |
| final class ArrayListSpliterator implements Spliterator<E> { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| private int index; |
| private int fence; |
| private int expectedModCount; |
| |
| |
| ArrayListSpliterator(int origin, int fence, int expectedModCount) { |
| this.index = origin; |
| this.fence = fence; |
| this.expectedModCount = expectedModCount; |
| } |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = size; |
| } |
| return hi; |
| } |
| |
| public ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| return (lo >= mid) ? null : |
| new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| if (action == null) |
| throw new NullPointerException(); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)elementData[i]; |
| action.accept(e); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| int i, hi, mc; |
| Object[] a; |
| if (action == null) |
| throw new NullPointerException(); |
| if ((a = elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| } |
| |
| |
| |
| private static long[] nBits(int n) { |
| return new long[((n - 1) >> 6) + 1]; |
| } |
| private static void setBit(long[] bits, int i) { |
| bits[i >> 6] |= 1L << i; |
| } |
| private static boolean isClear(long[] bits, int i) { |
| return (bits[i >> 6] & (1L << i)) == 0; |
| } |
| |
| |
| |
| |
| @Override |
| public boolean removeIf(Predicate<? super E> filter) { |
| return removeIf(filter, 0, size); |
| } |
| |
| |
| |
| |
| |
| boolean removeIf(Predicate<? super E> filter, int i, final int end) { |
| Objects.requireNonNull(filter); |
| int expectedModCount = modCount; |
| final Object[] es = elementData; |
| |
| for (; i < end && !filter.test(elementAt(es, i)); i++) |
| ; |
| |
| |
| |
| if (i < end) { |
| final int beg = i; |
| final long[] deathRow = nBits(end - beg); |
| deathRow[0] = 1L; |
| for (i = beg + 1; i < end; i++) |
| if (filter.test(elementAt(es, i))) |
| setBit(deathRow, i - beg); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| int w = beg; |
| for (i = beg; i < end; i++) |
| if (isClear(deathRow, i - beg)) |
| es[w++] = es[i]; |
| shiftTailOverGap(es, w, end); |
| return true; |
| } else { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return false; |
| } |
| } |
| |
| @Override |
| public void replaceAll(UnaryOperator<E> operator) { |
| replaceAllRange(operator, 0, size); |
| |
| modCount++; |
| } |
| |
| private void replaceAllRange(UnaryOperator<E> operator, int i, int end) { |
| Objects.requireNonNull(operator); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| for (; modCount == expectedModCount && i < end; i++) |
| es[i] = operator.apply(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| @Override |
| @SuppressWarnings("unchecked") |
| public void sort(Comparator<? super E> c) { |
| final int expectedModCount = modCount; |
| Arrays.sort((E[]) elementData, 0, size, c); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| } |
| |
| void checkInvariants() { |
| |
| |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| package java.util; |
| |
| import java.util.function.Consumer; |
| import java.util.function.Predicate; |
| import java.util.function.UnaryOperator; |
| import jdk.internal.access.SharedSecrets; |
| import jdk.internal.util.ArraysSupport; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public class ArrayList<E> extends AbstractList<E> |
| implements List<E>, RandomAccess, Cloneable, java.io.Serializable |
| { |
| @java.io.Serial |
| private static final long serialVersionUID = 8683452581122892189L; |
| |
| |
| |
| |
| private static final int DEFAULT_CAPACITY = 10; |
| |
| |
| |
| |
| private static final Object[] EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| |
| transient Object[] elementData; |
| |
| |
| |
| |
| |
| |
| private int size; |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(int initialCapacity) { |
| if (initialCapacity > 0) { |
| this.elementData = new Object[initialCapacity]; |
| } else if (initialCapacity == 0) { |
| this.elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new IllegalArgumentException("Illegal Capacity: "+ |
| initialCapacity); |
| } |
| } |
| |
| |
| |
| |
| public ArrayList() { |
| this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| if ((size = a.length) != 0) { |
| if (c.getClass() == ArrayList.class) { |
| elementData = a; |
| } else { |
| elementData = Arrays.copyOf(a, size, Object[].class); |
| } |
| } else { |
| |
| elementData = EMPTY_ELEMENTDATA; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| public void trimToSize() { |
| modCount++; |
| if (size < elementData.length) { |
| elementData = (size == 0) |
| ? EMPTY_ELEMENTDATA |
| : Arrays.copyOf(elementData, size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public void ensureCapacity(int minCapacity) { |
| if (minCapacity > elementData.length |
| && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA |
| && minCapacity <= DEFAULT_CAPACITY)) { |
| modCount++; |
| grow(minCapacity); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| private Object[] grow(int minCapacity) { |
| int oldCapacity = elementData.length; |
| if (oldCapacity > 0 || elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { |
| int newCapacity = ArraysSupport.newLength(oldCapacity, |
| minCapacity - oldCapacity, |
| oldCapacity >> 1 ); |
| return elementData = Arrays.copyOf(elementData, newCapacity); |
| } else { |
| return elementData = new Object[Math.max(DEFAULT_CAPACITY, minCapacity)]; |
| } |
| } |
| |
| private Object[] grow() { |
| return grow(size + 1); |
| } |
| |
| |
| |
| |
| |
| |
| public int size() { |
| return size; |
| } |
| |
| |
| |
| |
| |
| |
| public boolean isEmpty() { |
| return size == 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int indexOf(Object o) { |
| return indexOfRange(o, 0, size); |
| } |
| |
| int indexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = start; i < end; i++) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = start; i < end; i++) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int lastIndexOf(Object o) { |
| return lastIndexOfRange(o, 0, size); |
| } |
| |
| int lastIndexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = end - 1; i >= start; i--) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = end - 1; i >= start; i--) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public Object clone() { |
| try { |
| ArrayList<?> v = (ArrayList<?>) super.clone(); |
| v.elementData = Arrays.copyOf(elementData, size); |
| v.modCount = 0; |
| return v; |
| } catch (CloneNotSupportedException e) { |
| |
| throw new InternalError(e); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public Object[] toArray() { |
| return Arrays.copyOf(elementData, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| if (a.length < size) |
| |
| return (T[]) Arrays.copyOf(elementData, size, a.getClass()); |
| System.arraycopy(elementData, 0, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| E elementData(int index) { |
| return (E) elementData[index]; |
| } |
| |
| @SuppressWarnings("unchecked") |
| static <E> E elementAt(Object[] es, int index) { |
| return (E) es[index]; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| return elementData(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(0); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(last); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| E oldValue = elementData(index); |
| elementData[index] = element; |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| private void add(E e, Object[] elementData, int s) { |
| if (s == elementData.length) |
| elementData = grow(); |
| elementData[s] = e; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public boolean add(E e) { |
| modCount++; |
| add(e, elementData, size); |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| modCount++; |
| final int s; |
| Object[] elementData; |
| if ((s = size) == (elementData = this.elementData).length) |
| elementData = grow(); |
| System.arraycopy(elementData, index, |
| elementData, index + 1, |
| s - index); |
| elementData[index] = element; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| public void addFirst(E element) { |
| add(0, element); |
| } |
| |
| |
| |
| |
| |
| |
| public void addLast(E element) { |
| add(element); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| final Object[] es = elementData; |
| |
| @SuppressWarnings("unchecked") E oldValue = (E) es[index]; |
| fastRemove(es, index); |
| |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[0]; |
| fastRemove(es, 0); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[last]; |
| fastRemove(es, last); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| final int expectedModCount = modCount; |
| |
| |
| boolean equal = (o.getClass() == ArrayList.class) |
| ? equalsArrayList((ArrayList<?>) o) |
| : equalsRange((List<?>) o, 0, size); |
| |
| checkForComodification(expectedModCount); |
| return equal; |
| } |
| |
| boolean equalsRange(List<?> other, int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| var oit = other.iterator(); |
| for (; from < to; from++) { |
| if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) { |
| return false; |
| } |
| } |
| return !oit.hasNext(); |
| } |
| |
| private boolean equalsArrayList(ArrayList<?> other) { |
| final int otherModCount = other.modCount; |
| final int s = size; |
| boolean equal; |
| if (equal = (s == other.size)) { |
| final Object[] otherEs = other.elementData; |
| final Object[] es = elementData; |
| if (s > es.length || s > otherEs.length) { |
| throw new ConcurrentModificationException(); |
| } |
| for (int i = 0; i < s; i++) { |
| if (!Objects.equals(es[i], otherEs[i])) { |
| equal = false; |
| break; |
| } |
| } |
| } |
| other.checkForComodification(otherModCount); |
| return equal; |
| } |
| |
| private void checkForComodification(final int expectedModCount) { |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| public int hashCode() { |
| int expectedModCount = modCount; |
| int hash = hashCodeRange(0, size); |
| checkForComodification(expectedModCount); |
| return hash; |
| } |
| |
| int hashCodeRange(int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| int hashCode = 1; |
| for (int i = from; i < to; i++) { |
| Object e = es[i]; |
| hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode()); |
| } |
| return hashCode; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean remove(Object o) { |
| final Object[] es = elementData; |
| final int size = this.size; |
| int i = 0; |
| found: { |
| if (o == null) { |
| for (; i < size; i++) |
| if (es[i] == null) |
| break found; |
| } else { |
| for (; i < size; i++) |
| if (o.equals(es[i])) |
| break found; |
| } |
| return false; |
| } |
| fastRemove(es, i); |
| return true; |
| } |
| |
| |
| |
| |
| |
| private void fastRemove(Object[] es, int i) { |
| modCount++; |
| final int newSize; |
| if ((newSize = size - 1) > i) |
| System.arraycopy(es, i + 1, es, i, newSize - i); |
| es[size = newSize] = null; |
| } |
| |
| |
| |
| |
| |
| public void clear() { |
| modCount++; |
| final Object[] es = elementData; |
| for (int to = size, i = size = 0; i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| System.arraycopy(a, 0, elementData, s, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| |
| int numMoved = s - index; |
| if (numMoved > 0) |
| System.arraycopy(elementData, index, |
| elementData, index + numNew, |
| numMoved); |
| System.arraycopy(a, 0, elementData, index, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| if (fromIndex > toIndex) { |
| throw new IndexOutOfBoundsException( |
| outOfBoundsMsg(fromIndex, toIndex)); |
| } |
| modCount++; |
| shiftTailOverGap(elementData, fromIndex, toIndex); |
| } |
| |
| |
| private void shiftTailOverGap(Object[] es, int lo, int hi) { |
| System.arraycopy(es, hi, es, lo, size - hi); |
| for (int to = size, i = (size -= hi - lo); i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| private void rangeCheckForAdd(int index) { |
| if (index > size || index < 0) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| |
| |
| |
| |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+size; |
| } |
| |
| |
| |
| |
| private static String outOfBoundsMsg(int fromIndex, int toIndex) { |
| return "From Index: " + fromIndex + " > To Index: " + toIndex; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false, 0, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true, 0, size); |
| } |
| |
| boolean batchRemove(Collection<?> c, boolean complement, |
| final int from, final int end) { |
| Objects.requireNonNull(c); |
| final Object[] es = elementData; |
| int r; |
| |
| for (r = from;; r++) { |
| if (r == end) |
| return false; |
| if (c.contains(es[r]) != complement) |
| break; |
| } |
| int w = r++; |
| try { |
| for (Object e; r < end; r++) |
| if (c.contains(e = es[r]) == complement) |
| es[w++] = e; |
| } catch (Throwable ex) { |
| |
| |
| System.arraycopy(es, r, es, w, end - r); |
| w += end - r; |
| throw ex; |
| } finally { |
| modCount += end - w; |
| shiftTailOverGap(es, w, end); |
| } |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void writeObject(java.io.ObjectOutputStream s) |
| throws java.io.IOException { |
| |
| int expectedModCount = modCount; |
| s.defaultWriteObject(); |
| |
| |
| s.writeInt(size); |
| |
| |
| for (int i=0; i<size; i++) { |
| s.writeObject(elementData[i]); |
| } |
| |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void readObject(java.io.ObjectInputStream s) |
| throws java.io.IOException, ClassNotFoundException { |
| |
| |
| s.defaultReadObject(); |
| |
| |
| s.readInt(); |
| |
| if (size > 0) { |
| |
| SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size); |
| Object[] elements = new Object[size]; |
| |
| |
| for (int i = 0; i < size; i++) { |
| elements[i] = s.readObject(); |
| } |
| |
| elementData = elements; |
| } else if (size == 0) { |
| elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new java.io.InvalidObjectException("Invalid size: " + size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator(int index) { |
| rangeCheckForAdd(index); |
| return new ListItr(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator() { |
| return new ListItr(0); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public Iterator<E> iterator() { |
| return new Itr(); |
| } |
| |
| |
| |
| |
| private class Itr implements Iterator<E> { |
| int cursor; |
| int lastRet = -1; |
| int expectedModCount = modCount; |
| |
| |
| Itr() {} |
| |
| public boolean hasNext() { |
| return cursor != size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= size) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| @Override |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = ArrayList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = elementData; |
| if (i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && modCount == expectedModCount; i++) |
| action.accept(elementAt(es, i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| private class ListItr extends Itr implements ListIterator<E> { |
| ListItr(int index) { |
| super(); |
| cursor = index; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.set(lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| ArrayList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private static class SubList<E> extends AbstractList<E> implements RandomAccess { |
| private final ArrayList<E> root; |
| private final SubList<E> parent; |
| private final int offset; |
| private int size; |
| |
| |
| |
| |
| public SubList(ArrayList<E> root, int fromIndex, int toIndex) { |
| this.root = root; |
| this.parent = null; |
| this.offset = fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = root.modCount; |
| } |
| |
| |
| |
| |
| private SubList(SubList<E> parent, int fromIndex, int toIndex) { |
| this.root = parent.root; |
| this.parent = parent; |
| this.offset = parent.offset + fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = parent.modCount; |
| } |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E oldValue = root.elementData(offset + index); |
| root.elementData[offset + index] = element; |
| return oldValue; |
| } |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| return root.elementData(offset + index); |
| } |
| |
| public int size() { |
| checkForComodification(); |
| return size; |
| } |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| checkForComodification(); |
| root.add(offset + index, element); |
| updateSizeAndModCount(1); |
| } |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E result = root.remove(offset + index); |
| updateSizeAndModCount(-1); |
| return result; |
| } |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| checkForComodification(); |
| root.removeRange(offset + fromIndex, offset + toIndex); |
| updateSizeAndModCount(fromIndex - toIndex); |
| } |
| |
| public boolean addAll(Collection<? extends E> c) { |
| return addAll(this.size, c); |
| } |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| int cSize = c.size(); |
| if (cSize==0) |
| return false; |
| checkForComodification(); |
| root.addAll(offset + index, c); |
| updateSizeAndModCount(cSize); |
| return true; |
| } |
| |
| public void replaceAll(UnaryOperator<E> operator) { |
| root.replaceAllRange(operator, offset, offset + size); |
| } |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false); |
| } |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true); |
| } |
| |
| private boolean batchRemove(Collection<?> c, boolean complement) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = |
| root.batchRemove(c, complement, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public boolean removeIf(Predicate<? super E> filter) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = root.removeIf(filter, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public Object[] toArray() { |
| checkForComodification(); |
| return Arrays.copyOfRange(root.elementData, offset, offset + size); |
| } |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| checkForComodification(); |
| if (a.length < size) |
| return (T[]) Arrays.copyOfRange( |
| root.elementData, offset, offset + size, a.getClass()); |
| System.arraycopy(root.elementData, offset, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| boolean equal = root.equalsRange((List<?>)o, offset, offset + size); |
| checkForComodification(); |
| return equal; |
| } |
| |
| public int hashCode() { |
| int hash = root.hashCodeRange(offset, offset + size); |
| checkForComodification(); |
| return hash; |
| } |
| |
| public int indexOf(Object o) { |
| int index = root.indexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public int lastIndexOf(Object o) { |
| int index = root.lastIndexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| public Iterator<E> iterator() { |
| return listIterator(); |
| } |
| |
| public ListIterator<E> listIterator(int index) { |
| checkForComodification(); |
| rangeCheckForAdd(index); |
| |
| return new ListIterator<E>() { |
| int cursor = index; |
| int lastRet = -1; |
| int expectedModCount = SubList.this.modCount; |
| |
| public boolean hasNext() { |
| return cursor != SubList.this.size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= SubList.this.size) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = SubList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = root.elementData; |
| if (offset + i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && root.modCount == expectedModCount; i++) |
| action.accept(elementAt(es, offset + i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| SubList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| root.set(offset + lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| SubList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| }; |
| } |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private void rangeCheckForAdd(int index) { |
| if (index < 0 || index > this.size) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+this.size; |
| } |
| |
| private void checkForComodification() { |
| if (root.modCount != modCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| private void updateSizeAndModCount(int sizeChange) { |
| SubList<E> slist = this; |
| do { |
| slist.size += sizeChange; |
| slist.modCount = root.modCount; |
| slist = slist.parent; |
| } while (slist != null); |
| } |
| |
| public Spliterator<E> spliterator() { |
| checkForComodification(); |
| |
| |
| |
| |
| |
| return new Spliterator<E>() { |
| private int index = offset; |
| private int fence = -1; |
| private int expectedModCount; |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = offset + size; |
| } |
| return hi; |
| } |
| |
| public ArrayList<E>.ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| |
| return (lo >= mid) ? null : |
| root.new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)root.elementData[i]; |
| action.accept(e); |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int i, hi, mc; |
| ArrayList<E> lst = root; |
| Object[] a; |
| if ((a = lst.elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = offset + size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (lst.modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| }; |
| } |
| } |
| |
| |
| |
| |
| @Override |
| public void forEach(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| final int size = this.size; |
| for (int i = 0; modCount == expectedModCount && i < size; i++) |
| action.accept(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @Override |
| public Spliterator<E> spliterator() { |
| return new ArrayListSpliterator(0, -1, 0); |
| } |
| |
| |
| final class ArrayListSpliterator implements Spliterator<E> { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| private int index; |
| private int fence; |
| private int expectedModCount; |
| |
| |
| ArrayListSpliterator(int origin, int fence, int expectedModCount) { |
| this.index = origin; |
| this.fence = fence; |
| this.expectedModCount = expectedModCount; |
| } |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = size; |
| } |
| return hi; |
| } |
| |
| public ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| return (lo >= mid) ? null : |
| new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| if (action == null) |
| throw new NullPointerException(); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)elementData[i]; |
| action.accept(e); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| int i, hi, mc; |
| Object[] a; |
| if (action == null) |
| throw new NullPointerException(); |
| if ((a = elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| } |
| |
| |
| |
| private static long[] nBits(int n) { |
| return new long[((n - 1) >> 6) + 1]; |
| } |
| private static void setBit(long[] bits, int i) { |
| bits[i >> 6] |= 1L << i; |
| } |
| private static boolean isClear(long[] bits, int i) { |
| return (bits[i >> 6] & (1L << i)) == 0; |
| } |
| |
| |
| |
| |
| @Override |
| public boolean removeIf(Predicate<? super E> filter) { |
| return removeIf(filter, 0, size); |
| } |
| |
| |
| |
| |
| |
| boolean removeIf(Predicate<? super E> filter, int i, final int end) { |
| Objects.requireNonNull(filter); |
| int expectedModCount = modCount; |
| final Object[] es = elementData; |
| |
| for (; i < end && !filter.test(elementAt(es, i)); i++) |
| ; |
| |
| |
| |
| if (i < end) { |
| final int beg = i; |
| final long[] deathRow = nBits(end - beg); |
| deathRow[0] = 1L; |
| for (i = beg + 1; i < end; i++) |
| if (filter.test(elementAt(es, i))) |
| setBit(deathRow, i - beg); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| int w = beg; |
| for (i = beg; i < end; i++) |
| if (isClear(deathRow, i - beg)) |
| es[w++] = es[i]; |
| shiftTailOverGap(es, w, end); |
| return true; |
| } else { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return false; |
| } |
| } |
| |
| @Override |
| public void replaceAll(UnaryOperator<E> operator) { |
| replaceAllRange(operator, 0, size); |
| |
| modCount++; |
| } |
| |
| private void replaceAllRange(UnaryOperator<E> operator, int i, int end) { |
| Objects.requireNonNull(operator); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| for (; modCount == expectedModCount && i < end; i++) |
| es[i] = operator.apply(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| @Override |
| @SuppressWarnings("unchecked") |
| public void sort(Comparator<? super E> c) { |
| final int expectedModCount = modCount; |
| Arrays.sort((E[]) elementData, 0, size, c); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| } |
| |
| void checkInvariants() { |
| |
| |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| package java.util; |
| |
| import java.util.function.Consumer; |
| import java.util.function.Predicate; |
| import java.util.function.UnaryOperator; |
| import jdk.internal.access.SharedSecrets; |
| import jdk.internal.util.ArraysSupport; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public class ArrayList<E> extends AbstractList<E> |
| implements List<E>, RandomAccess, Cloneable, java.io.Serializable |
| { |
| @java.io.Serial |
| private static final long serialVersionUID = 8683452581122892189L; |
| |
| |
| |
| |
| private static final int DEFAULT_CAPACITY = 10; |
| |
| |
| |
| |
| private static final Object[] EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| |
| transient Object[] elementData; |
| |
| |
| |
| |
| |
| |
| private int size; |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(int initialCapacity) { |
| if (initialCapacity > 0) { |
| this.elementData = new Object[initialCapacity]; |
| } else if (initialCapacity == 0) { |
| this.elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new IllegalArgumentException("Illegal Capacity: "+ |
| initialCapacity); |
| } |
| } |
| |
| |
| |
| |
| public ArrayList() { |
| this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| if ((size = a.length) != 0) { |
| if (c.getClass() == ArrayList.class) { |
| elementData = a; |
| } else { |
| elementData = Arrays.copyOf(a, size, Object[].class); |
| } |
| } else { |
| |
| elementData = EMPTY_ELEMENTDATA; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| public void trimToSize() { |
| modCount++; |
| if (size < elementData.length) { |
| elementData = (size == 0) |
| ? EMPTY_ELEMENTDATA |
| : Arrays.copyOf(elementData, size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public void ensureCapacity(int minCapacity) { |
| if (minCapacity > elementData.length |
| && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA |
| && minCapacity <= DEFAULT_CAPACITY)) { |
| modCount++; |
| grow(minCapacity); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| private Object[] grow(int minCapacity) { |
| int oldCapacity = elementData.length; |
| if (oldCapacity > 0 || elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { |
| int newCapacity = ArraysSupport.newLength(oldCapacity, |
| minCapacity - oldCapacity, |
| oldCapacity >> 1 ); |
| return elementData = Arrays.copyOf(elementData, newCapacity); |
| } else { |
| return elementData = new Object[Math.max(DEFAULT_CAPACITY, minCapacity)]; |
| } |
| } |
| |
| private Object[] grow() { |
| return grow(size + 1); |
| } |
| |
| |
| |
| |
| |
| |
| public int size() { |
| return size; |
| } |
| |
| |
| |
| |
| |
| |
| public boolean isEmpty() { |
| return size == 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int indexOf(Object o) { |
| return indexOfRange(o, 0, size); |
| } |
| |
| int indexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = start; i < end; i++) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = start; i < end; i++) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int lastIndexOf(Object o) { |
| return lastIndexOfRange(o, 0, size); |
| } |
| |
| int lastIndexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = end - 1; i >= start; i--) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = end - 1; i >= start; i--) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public Object clone() { |
| try { |
| ArrayList<?> v = (ArrayList<?>) super.clone(); |
| v.elementData = Arrays.copyOf(elementData, size); |
| v.modCount = 0; |
| return v; |
| } catch (CloneNotSupportedException e) { |
| |
| throw new InternalError(e); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public Object[] toArray() { |
| return Arrays.copyOf(elementData, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| if (a.length < size) |
| |
| return (T[]) Arrays.copyOf(elementData, size, a.getClass()); |
| System.arraycopy(elementData, 0, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| E elementData(int index) { |
| return (E) elementData[index]; |
| } |
| |
| @SuppressWarnings("unchecked") |
| static <E> E elementAt(Object[] es, int index) { |
| return (E) es[index]; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| return elementData(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(0); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(last); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| E oldValue = elementData(index); |
| elementData[index] = element; |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| private void add(E e, Object[] elementData, int s) { |
| if (s == elementData.length) |
| elementData = grow(); |
| elementData[s] = e; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public boolean add(E e) { |
| modCount++; |
| add(e, elementData, size); |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| modCount++; |
| final int s; |
| Object[] elementData; |
| if ((s = size) == (elementData = this.elementData).length) |
| elementData = grow(); |
| System.arraycopy(elementData, index, |
| elementData, index + 1, |
| s - index); |
| elementData[index] = element; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| public void addFirst(E element) { |
| add(0, element); |
| } |
| |
| |
| |
| |
| |
| |
| public void addLast(E element) { |
| add(element); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| final Object[] es = elementData; |
| |
| @SuppressWarnings("unchecked") E oldValue = (E) es[index]; |
| fastRemove(es, index); |
| |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[0]; |
| fastRemove(es, 0); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[last]; |
| fastRemove(es, last); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| final int expectedModCount = modCount; |
| |
| |
| boolean equal = (o.getClass() == ArrayList.class) |
| ? equalsArrayList((ArrayList<?>) o) |
| : equalsRange((List<?>) o, 0, size); |
| |
| checkForComodification(expectedModCount); |
| return equal; |
| } |
| |
| boolean equalsRange(List<?> other, int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| var oit = other.iterator(); |
| for (; from < to; from++) { |
| if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) { |
| return false; |
| } |
| } |
| return !oit.hasNext(); |
| } |
| |
| private boolean equalsArrayList(ArrayList<?> other) { |
| final int otherModCount = other.modCount; |
| final int s = size; |
| boolean equal; |
| if (equal = (s == other.size)) { |
| final Object[] otherEs = other.elementData; |
| final Object[] es = elementData; |
| if (s > es.length || s > otherEs.length) { |
| throw new ConcurrentModificationException(); |
| } |
| for (int i = 0; i < s; i++) { |
| if (!Objects.equals(es[i], otherEs[i])) { |
| equal = false; |
| break; |
| } |
| } |
| } |
| other.checkForComodification(otherModCount); |
| return equal; |
| } |
| |
| private void checkForComodification(final int expectedModCount) { |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| public int hashCode() { |
| int expectedModCount = modCount; |
| int hash = hashCodeRange(0, size); |
| checkForComodification(expectedModCount); |
| return hash; |
| } |
| |
| int hashCodeRange(int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| int hashCode = 1; |
| for (int i = from; i < to; i++) { |
| Object e = es[i]; |
| hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode()); |
| } |
| return hashCode; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean remove(Object o) { |
| final Object[] es = elementData; |
| final int size = this.size; |
| int i = 0; |
| found: { |
| if (o == null) { |
| for (; i < size; i++) |
| if (es[i] == null) |
| break found; |
| } else { |
| for (; i < size; i++) |
| if (o.equals(es[i])) |
| break found; |
| } |
| return false; |
| } |
| fastRemove(es, i); |
| return true; |
| } |
| |
| |
| |
| |
| |
| private void fastRemove(Object[] es, int i) { |
| modCount++; |
| final int newSize; |
| if ((newSize = size - 1) > i) |
| System.arraycopy(es, i + 1, es, i, newSize - i); |
| es[size = newSize] = null; |
| } |
| |
| |
| |
| |
| |
| public void clear() { |
| modCount++; |
| final Object[] es = elementData; |
| for (int to = size, i = size = 0; i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| System.arraycopy(a, 0, elementData, s, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| |
| int numMoved = s - index; |
| if (numMoved > 0) |
| System.arraycopy(elementData, index, |
| elementData, index + numNew, |
| numMoved); |
| System.arraycopy(a, 0, elementData, index, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| if (fromIndex > toIndex) { |
| throw new IndexOutOfBoundsException( |
| outOfBoundsMsg(fromIndex, toIndex)); |
| } |
| modCount++; |
| shiftTailOverGap(elementData, fromIndex, toIndex); |
| } |
| |
| |
| private void shiftTailOverGap(Object[] es, int lo, int hi) { |
| System.arraycopy(es, hi, es, lo, size - hi); |
| for (int to = size, i = (size -= hi - lo); i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| private void rangeCheckForAdd(int index) { |
| if (index > size || index < 0) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| |
| |
| |
| |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+size; |
| } |
| |
| |
| |
| |
| private static String outOfBoundsMsg(int fromIndex, int toIndex) { |
| return "From Index: " + fromIndex + " > To Index: " + toIndex; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false, 0, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true, 0, size); |
| } |
| |
| boolean batchRemove(Collection<?> c, boolean complement, |
| final int from, final int end) { |
| Objects.requireNonNull(c); |
| final Object[] es = elementData; |
| int r; |
| |
| for (r = from;; r++) { |
| if (r == end) |
| return false; |
| if (c.contains(es[r]) != complement) |
| break; |
| } |
| int w = r++; |
| try { |
| for (Object e; r < end; r++) |
| if (c.contains(e = es[r]) == complement) |
| es[w++] = e; |
| } catch (Throwable ex) { |
| |
| |
| System.arraycopy(es, r, es, w, end - r); |
| w += end - r; |
| throw ex; |
| } finally { |
| modCount += end - w; |
| shiftTailOverGap(es, w, end); |
| } |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void writeObject(java.io.ObjectOutputStream s) |
| throws java.io.IOException { |
| |
| int expectedModCount = modCount; |
| s.defaultWriteObject(); |
| |
| |
| s.writeInt(size); |
| |
| |
| for (int i=0; i<size; i++) { |
| s.writeObject(elementData[i]); |
| } |
| |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void readObject(java.io.ObjectInputStream s) |
| throws java.io.IOException, ClassNotFoundException { |
| |
| |
| s.defaultReadObject(); |
| |
| |
| s.readInt(); |
| |
| if (size > 0) { |
| |
| SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size); |
| Object[] elements = new Object[size]; |
| |
| |
| for (int i = 0; i < size; i++) { |
| elements[i] = s.readObject(); |
| } |
| |
| elementData = elements; |
| } else if (size == 0) { |
| elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new java.io.InvalidObjectException("Invalid size: " + size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator(int index) { |
| rangeCheckForAdd(index); |
| return new ListItr(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator() { |
| return new ListItr(0); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public Iterator<E> iterator() { |
| return new Itr(); |
| } |
| |
| |
| |
| |
| private class Itr implements Iterator<E> { |
| int cursor; |
| int lastRet = -1; |
| int expectedModCount = modCount; |
| |
| |
| Itr() {} |
| |
| public boolean hasNext() { |
| return cursor != size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= size) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| @Override |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = ArrayList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = elementData; |
| if (i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && modCount == expectedModCount; i++) |
| action.accept(elementAt(es, i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| private class ListItr extends Itr implements ListIterator<E> { |
| ListItr(int index) { |
| super(); |
| cursor = index; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.set(lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| ArrayList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private static class SubList<E> extends AbstractList<E> implements RandomAccess { |
| private final ArrayList<E> root; |
| private final SubList<E> parent; |
| private final int offset; |
| private int size; |
| |
| |
| |
| |
| public SubList(ArrayList<E> root, int fromIndex, int toIndex) { |
| this.root = root; |
| this.parent = null; |
| this.offset = fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = root.modCount; |
| } |
| |
| |
| |
| |
| private SubList(SubList<E> parent, int fromIndex, int toIndex) { |
| this.root = parent.root; |
| this.parent = parent; |
| this.offset = parent.offset + fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = parent.modCount; |
| } |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E oldValue = root.elementData(offset + index); |
| root.elementData[offset + index] = element; |
| return oldValue; |
| } |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| return root.elementData(offset + index); |
| } |
| |
| public int size() { |
| checkForComodification(); |
| return size; |
| } |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| checkForComodification(); |
| root.add(offset + index, element); |
| updateSizeAndModCount(1); |
| } |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E result = root.remove(offset + index); |
| updateSizeAndModCount(-1); |
| return result; |
| } |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| checkForComodification(); |
| root.removeRange(offset + fromIndex, offset + toIndex); |
| updateSizeAndModCount(fromIndex - toIndex); |
| } |
| |
| public boolean addAll(Collection<? extends E> c) { |
| return addAll(this.size, c); |
| } |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| int cSize = c.size(); |
| if (cSize==0) |
| return false; |
| checkForComodification(); |
| root.addAll(offset + index, c); |
| updateSizeAndModCount(cSize); |
| return true; |
| } |
| |
| public void replaceAll(UnaryOperator<E> operator) { |
| root.replaceAllRange(operator, offset, offset + size); |
| } |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false); |
| } |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true); |
| } |
| |
| private boolean batchRemove(Collection<?> c, boolean complement) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = |
| root.batchRemove(c, complement, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public boolean removeIf(Predicate<? super E> filter) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = root.removeIf(filter, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public Object[] toArray() { |
| checkForComodification(); |
| return Arrays.copyOfRange(root.elementData, offset, offset + size); |
| } |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| checkForComodification(); |
| if (a.length < size) |
| return (T[]) Arrays.copyOfRange( |
| root.elementData, offset, offset + size, a.getClass()); |
| System.arraycopy(root.elementData, offset, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| boolean equal = root.equalsRange((List<?>)o, offset, offset + size); |
| checkForComodification(); |
| return equal; |
| } |
| |
| public int hashCode() { |
| int hash = root.hashCodeRange(offset, offset + size); |
| checkForComodification(); |
| return hash; |
| } |
| |
| public int indexOf(Object o) { |
| int index = root.indexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public int lastIndexOf(Object o) { |
| int index = root.lastIndexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| public Iterator<E> iterator() { |
| return listIterator(); |
| } |
| |
| public ListIterator<E> listIterator(int index) { |
| checkForComodification(); |
| rangeCheckForAdd(index); |
| |
| return new ListIterator<E>() { |
| int cursor = index; |
| int lastRet = -1; |
| int expectedModCount = SubList.this.modCount; |
| |
| public boolean hasNext() { |
| return cursor != SubList.this.size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= SubList.this.size) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = SubList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = root.elementData; |
| if (offset + i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && root.modCount == expectedModCount; i++) |
| action.accept(elementAt(es, offset + i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| SubList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| root.set(offset + lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| SubList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| }; |
| } |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private void rangeCheckForAdd(int index) { |
| if (index < 0 || index > this.size) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+this.size; |
| } |
| |
| private void checkForComodification() { |
| if (root.modCount != modCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| private void updateSizeAndModCount(int sizeChange) { |
| SubList<E> slist = this; |
| do { |
| slist.size += sizeChange; |
| slist.modCount = root.modCount; |
| slist = slist.parent; |
| } while (slist != null); |
| } |
| |
| public Spliterator<E> spliterator() { |
| checkForComodification(); |
| |
| |
| |
| |
| |
| return new Spliterator<E>() { |
| private int index = offset; |
| private int fence = -1; |
| private int expectedModCount; |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = offset + size; |
| } |
| return hi; |
| } |
| |
| public ArrayList<E>.ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| |
| return (lo >= mid) ? null : |
| root.new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)root.elementData[i]; |
| action.accept(e); |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int i, hi, mc; |
| ArrayList<E> lst = root; |
| Object[] a; |
| if ((a = lst.elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = offset + size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (lst.modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| }; |
| } |
| } |
| |
| |
| |
| |
| @Override |
| public void forEach(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| final int size = this.size; |
| for (int i = 0; modCount == expectedModCount && i < size; i++) |
| action.accept(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @Override |
| public Spliterator<E> spliterator() { |
| return new ArrayListSpliterator(0, -1, 0); |
| } |
| |
| |
| final class ArrayListSpliterator implements Spliterator<E> { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| private int index; |
| private int fence; |
| private int expectedModCount; |
| |
| |
| ArrayListSpliterator(int origin, int fence, int expectedModCount) { |
| this.index = origin; |
| this.fence = fence; |
| this.expectedModCount = expectedModCount; |
| } |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = size; |
| } |
| return hi; |
| } |
| |
| public ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| return (lo >= mid) ? null : |
| new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| if (action == null) |
| throw new NullPointerException(); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)elementData[i]; |
| action.accept(e); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| int i, hi, mc; |
| Object[] a; |
| if (action == null) |
| throw new NullPointerException(); |
| if ((a = elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| } |
| |
| |
| |
| private static long[] nBits(int n) { |
| return new long[((n - 1) >> 6) + 1]; |
| } |
| private static void setBit(long[] bits, int i) { |
| bits[i >> 6] |= 1L << i; |
| } |
| private static boolean isClear(long[] bits, int i) { |
| return (bits[i >> 6] & (1L << i)) == 0; |
| } |
| |
| |
| |
| |
| @Override |
| public boolean removeIf(Predicate<? super E> filter) { |
| return removeIf(filter, 0, size); |
| } |
| |
| |
| |
| |
| |
| boolean removeIf(Predicate<? super E> filter, int i, final int end) { |
| Objects.requireNonNull(filter); |
| int expectedModCount = modCount; |
| final Object[] es = elementData; |
| |
| for (; i < end && !filter.test(elementAt(es, i)); i++) |
| ; |
| |
| |
| |
| if (i < end) { |
| final int beg = i; |
| final long[] deathRow = nBits(end - beg); |
| deathRow[0] = 1L; |
| for (i = beg + 1; i < end; i++) |
| if (filter.test(elementAt(es, i))) |
| setBit(deathRow, i - beg); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| int w = beg; |
| for (i = beg; i < end; i++) |
| if (isClear(deathRow, i - beg)) |
| es[w++] = es[i]; |
| shiftTailOverGap(es, w, end); |
| return true; |
| } else { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return false; |
| } |
| } |
| |
| @Override |
| public void replaceAll(UnaryOperator<E> operator) { |
| replaceAllRange(operator, 0, size); |
| |
| modCount++; |
| } |
| |
| private void replaceAllRange(UnaryOperator<E> operator, int i, int end) { |
| Objects.requireNonNull(operator); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| for (; modCount == expectedModCount && i < end; i++) |
| es[i] = operator.apply(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| @Override |
| @SuppressWarnings("unchecked") |
| public void sort(Comparator<? super E> c) { |
| final int expectedModCount = modCount; |
| Arrays.sort((E[]) elementData, 0, size, c); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| } |
| |
| void checkInvariants() { |
| |
| |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| package java.util; |
| |
| import java.util.function.Consumer; |
| import java.util.function.Predicate; |
| import java.util.function.UnaryOperator; |
| import jdk.internal.access.SharedSecrets; |
| import jdk.internal.util.ArraysSupport; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public class ArrayList<E> extends AbstractList<E> |
| implements List<E>, RandomAccess, Cloneable, java.io.Serializable |
| { |
| @java.io.Serial |
| private static final long serialVersionUID = 8683452581122892189L; |
| |
| |
| |
| |
| private static final int DEFAULT_CAPACITY = 10; |
| |
| |
| |
| |
| private static final Object[] EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; |
| |
| |
| |
| |
| |
| |
| |
| transient Object[] elementData; |
| |
| |
| |
| |
| |
| |
| private int size; |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(int initialCapacity) { |
| if (initialCapacity > 0) { |
| this.elementData = new Object[initialCapacity]; |
| } else if (initialCapacity == 0) { |
| this.elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new IllegalArgumentException("Illegal Capacity: "+ |
| initialCapacity); |
| } |
| } |
| |
| |
| |
| |
| public ArrayList() { |
| this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ArrayList(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| if ((size = a.length) != 0) { |
| if (c.getClass() == ArrayList.class) { |
| elementData = a; |
| } else { |
| elementData = Arrays.copyOf(a, size, Object[].class); |
| } |
| } else { |
| |
| elementData = EMPTY_ELEMENTDATA; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| public void trimToSize() { |
| modCount++; |
| if (size < elementData.length) { |
| elementData = (size == 0) |
| ? EMPTY_ELEMENTDATA |
| : Arrays.copyOf(elementData, size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public void ensureCapacity(int minCapacity) { |
| if (minCapacity > elementData.length |
| && !(elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA |
| && minCapacity <= DEFAULT_CAPACITY)) { |
| modCount++; |
| grow(minCapacity); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| private Object[] grow(int minCapacity) { |
| int oldCapacity = elementData.length; |
| if (oldCapacity > 0 || elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { |
| int newCapacity = ArraysSupport.newLength(oldCapacity, |
| minCapacity - oldCapacity, |
| oldCapacity >> 1 ); |
| return elementData = Arrays.copyOf(elementData, newCapacity); |
| } else { |
| return elementData = new Object[Math.max(DEFAULT_CAPACITY, minCapacity)]; |
| } |
| } |
| |
| private Object[] grow() { |
| return grow(size + 1); |
| } |
| |
| |
| |
| |
| |
| |
| public int size() { |
| return size; |
| } |
| |
| |
| |
| |
| |
| |
| public boolean isEmpty() { |
| return size == 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int indexOf(Object o) { |
| return indexOfRange(o, 0, size); |
| } |
| |
| int indexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = start; i < end; i++) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = start; i < end; i++) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public int lastIndexOf(Object o) { |
| return lastIndexOfRange(o, 0, size); |
| } |
| |
| int lastIndexOfRange(Object o, int start, int end) { |
| Object[] es = elementData; |
| if (o == null) { |
| for (int i = end - 1; i >= start; i--) { |
| if (es[i] == null) { |
| return i; |
| } |
| } |
| } else { |
| for (int i = end - 1; i >= start; i--) { |
| if (o.equals(es[i])) { |
| return i; |
| } |
| } |
| } |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public Object clone() { |
| try { |
| ArrayList<?> v = (ArrayList<?>) super.clone(); |
| v.elementData = Arrays.copyOf(elementData, size); |
| v.modCount = 0; |
| return v; |
| } catch (CloneNotSupportedException e) { |
| |
| throw new InternalError(e); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public Object[] toArray() { |
| return Arrays.copyOf(elementData, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| if (a.length < size) |
| |
| return (T[]) Arrays.copyOf(elementData, size, a.getClass()); |
| System.arraycopy(elementData, 0, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| |
| |
| @SuppressWarnings("unchecked") |
| E elementData(int index) { |
| return (E) elementData[index]; |
| } |
| |
| @SuppressWarnings("unchecked") |
| static <E> E elementAt(Object[] es, int index) { |
| return (E) es[index]; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| return elementData(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(0); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E getLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| return elementData(last); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| E oldValue = elementData(index); |
| elementData[index] = element; |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| private void add(E e, Object[] elementData, int s) { |
| if (s == elementData.length) |
| elementData = grow(); |
| elementData[s] = e; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public boolean add(E e) { |
| modCount++; |
| add(e, elementData, size); |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| modCount++; |
| final int s; |
| Object[] elementData; |
| if ((s = size) == (elementData = this.elementData).length) |
| elementData = grow(); |
| System.arraycopy(elementData, index, |
| elementData, index + 1, |
| s - index); |
| elementData[index] = element; |
| size = s + 1; |
| } |
| |
| |
| |
| |
| |
| |
| public void addFirst(E element) { |
| add(0, element); |
| } |
| |
| |
| |
| |
| |
| |
| public void addLast(E element) { |
| add(element); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| final Object[] es = elementData; |
| |
| @SuppressWarnings("unchecked") E oldValue = (E) es[index]; |
| fastRemove(es, index); |
| |
| return oldValue; |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeFirst() { |
| if (size == 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[0]; |
| fastRemove(es, 0); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| public E removeLast() { |
| int last = size - 1; |
| if (last < 0) { |
| throw new NoSuchElementException(); |
| } else { |
| Object[] es = elementData; |
| @SuppressWarnings("unchecked") E oldValue = (E) es[last]; |
| fastRemove(es, last); |
| return oldValue; |
| } |
| } |
| |
| |
| |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| final int expectedModCount = modCount; |
| |
| |
| boolean equal = (o.getClass() == ArrayList.class) |
| ? equalsArrayList((ArrayList<?>) o) |
| : equalsRange((List<?>) o, 0, size); |
| |
| checkForComodification(expectedModCount); |
| return equal; |
| } |
| |
| boolean equalsRange(List<?> other, int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| var oit = other.iterator(); |
| for (; from < to; from++) { |
| if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) { |
| return false; |
| } |
| } |
| return !oit.hasNext(); |
| } |
| |
| private boolean equalsArrayList(ArrayList<?> other) { |
| final int otherModCount = other.modCount; |
| final int s = size; |
| boolean equal; |
| if (equal = (s == other.size)) { |
| final Object[] otherEs = other.elementData; |
| final Object[] es = elementData; |
| if (s > es.length || s > otherEs.length) { |
| throw new ConcurrentModificationException(); |
| } |
| for (int i = 0; i < s; i++) { |
| if (!Objects.equals(es[i], otherEs[i])) { |
| equal = false; |
| break; |
| } |
| } |
| } |
| other.checkForComodification(otherModCount); |
| return equal; |
| } |
| |
| private void checkForComodification(final int expectedModCount) { |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| public int hashCode() { |
| int expectedModCount = modCount; |
| int hash = hashCodeRange(0, size); |
| checkForComodification(expectedModCount); |
| return hash; |
| } |
| |
| int hashCodeRange(int from, int to) { |
| final Object[] es = elementData; |
| if (to > es.length) { |
| throw new ConcurrentModificationException(); |
| } |
| int hashCode = 1; |
| for (int i = from; i < to; i++) { |
| Object e = es[i]; |
| hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode()); |
| } |
| return hashCode; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean remove(Object o) { |
| final Object[] es = elementData; |
| final int size = this.size; |
| int i = 0; |
| found: { |
| if (o == null) { |
| for (; i < size; i++) |
| if (es[i] == null) |
| break found; |
| } else { |
| for (; i < size; i++) |
| if (o.equals(es[i])) |
| break found; |
| } |
| return false; |
| } |
| fastRemove(es, i); |
| return true; |
| } |
| |
| |
| |
| |
| |
| private void fastRemove(Object[] es, int i) { |
| modCount++; |
| final int newSize; |
| if ((newSize = size - 1) > i) |
| System.arraycopy(es, i + 1, es, i, newSize - i); |
| es[size = newSize] = null; |
| } |
| |
| |
| |
| |
| |
| public void clear() { |
| modCount++; |
| final Object[] es = elementData; |
| for (int to = size, i = size = 0; i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(Collection<? extends E> c) { |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| System.arraycopy(a, 0, elementData, s, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| |
| Object[] a = c.toArray(); |
| modCount++; |
| int numNew = a.length; |
| if (numNew == 0) |
| return false; |
| Object[] elementData; |
| final int s; |
| if (numNew > (elementData = this.elementData).length - (s = size)) |
| elementData = grow(s + numNew); |
| |
| int numMoved = s - index; |
| if (numMoved > 0) |
| System.arraycopy(elementData, index, |
| elementData, index + numNew, |
| numMoved); |
| System.arraycopy(a, 0, elementData, index, numNew); |
| size = s + numNew; |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| if (fromIndex > toIndex) { |
| throw new IndexOutOfBoundsException( |
| outOfBoundsMsg(fromIndex, toIndex)); |
| } |
| modCount++; |
| shiftTailOverGap(elementData, fromIndex, toIndex); |
| } |
| |
| |
| private void shiftTailOverGap(Object[] es, int lo, int hi) { |
| System.arraycopy(es, hi, es, lo, size - hi); |
| for (int to = size, i = (size -= hi - lo); i < to; i++) |
| es[i] = null; |
| } |
| |
| |
| |
| |
| private void rangeCheckForAdd(int index) { |
| if (index > size || index < 0) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| |
| |
| |
| |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+size; |
| } |
| |
| |
| |
| |
| private static String outOfBoundsMsg(int fromIndex, int toIndex) { |
| return "From Index: " + fromIndex + " > To Index: " + toIndex; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false, 0, size); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true, 0, size); |
| } |
| |
| boolean batchRemove(Collection<?> c, boolean complement, |
| final int from, final int end) { |
| Objects.requireNonNull(c); |
| final Object[] es = elementData; |
| int r; |
| |
| for (r = from;; r++) { |
| if (r == end) |
| return false; |
| if (c.contains(es[r]) != complement) |
| break; |
| } |
| int w = r++; |
| try { |
| for (Object e; r < end; r++) |
| if (c.contains(e = es[r]) == complement) |
| es[w++] = e; |
| } catch (Throwable ex) { |
| |
| |
| System.arraycopy(es, r, es, w, end - r); |
| w += end - r; |
| throw ex; |
| } finally { |
| modCount += end - w; |
| shiftTailOverGap(es, w, end); |
| } |
| return true; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void writeObject(java.io.ObjectOutputStream s) |
| throws java.io.IOException { |
| |
| int expectedModCount = modCount; |
| s.defaultWriteObject(); |
| |
| |
| s.writeInt(size); |
| |
| |
| for (int i=0; i<size; i++) { |
| s.writeObject(elementData[i]); |
| } |
| |
| if (modCount != expectedModCount) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @java.io.Serial |
| private void readObject(java.io.ObjectInputStream s) |
| throws java.io.IOException, ClassNotFoundException { |
| |
| |
| s.defaultReadObject(); |
| |
| |
| s.readInt(); |
| |
| if (size > 0) { |
| |
| SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size); |
| Object[] elements = new Object[size]; |
| |
| |
| for (int i = 0; i < size; i++) { |
| elements[i] = s.readObject(); |
| } |
| |
| elementData = elements; |
| } else if (size == 0) { |
| elementData = EMPTY_ELEMENTDATA; |
| } else { |
| throw new java.io.InvalidObjectException("Invalid size: " + size); |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator(int index) { |
| rangeCheckForAdd(index); |
| return new ListItr(index); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public ListIterator<E> listIterator() { |
| return new ListItr(0); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| public Iterator<E> iterator() { |
| return new Itr(); |
| } |
| |
| |
| |
| |
| private class Itr implements Iterator<E> { |
| int cursor; |
| int lastRet = -1; |
| int expectedModCount = modCount; |
| |
| |
| Itr() {} |
| |
| public boolean hasNext() { |
| return cursor != size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= size) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| @Override |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = ArrayList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = elementData; |
| if (i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && modCount == expectedModCount; i++) |
| action.accept(elementAt(es, i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| |
| |
| |
| private class ListItr extends Itr implements ListIterator<E> { |
| ListItr(int index) { |
| super(); |
| cursor = index; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = ArrayList.this.elementData; |
| if (i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[lastRet = i]; |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| ArrayList.this.set(lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| ArrayList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private static class SubList<E> extends AbstractList<E> implements RandomAccess { |
| private final ArrayList<E> root; |
| private final SubList<E> parent; |
| private final int offset; |
| private int size; |
| |
| |
| |
| |
| public SubList(ArrayList<E> root, int fromIndex, int toIndex) { |
| this.root = root; |
| this.parent = null; |
| this.offset = fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = root.modCount; |
| } |
| |
| |
| |
| |
| private SubList(SubList<E> parent, int fromIndex, int toIndex) { |
| this.root = parent.root; |
| this.parent = parent; |
| this.offset = parent.offset + fromIndex; |
| this.size = toIndex - fromIndex; |
| this.modCount = parent.modCount; |
| } |
| |
| public E set(int index, E element) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E oldValue = root.elementData(offset + index); |
| root.elementData[offset + index] = element; |
| return oldValue; |
| } |
| |
| public E get(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| return root.elementData(offset + index); |
| } |
| |
| public int size() { |
| checkForComodification(); |
| return size; |
| } |
| |
| public void add(int index, E element) { |
| rangeCheckForAdd(index); |
| checkForComodification(); |
| root.add(offset + index, element); |
| updateSizeAndModCount(1); |
| } |
| |
| public E remove(int index) { |
| Objects.checkIndex(index, size); |
| checkForComodification(); |
| E result = root.remove(offset + index); |
| updateSizeAndModCount(-1); |
| return result; |
| } |
| |
| protected void removeRange(int fromIndex, int toIndex) { |
| checkForComodification(); |
| root.removeRange(offset + fromIndex, offset + toIndex); |
| updateSizeAndModCount(fromIndex - toIndex); |
| } |
| |
| public boolean addAll(Collection<? extends E> c) { |
| return addAll(this.size, c); |
| } |
| |
| public boolean addAll(int index, Collection<? extends E> c) { |
| rangeCheckForAdd(index); |
| int cSize = c.size(); |
| if (cSize==0) |
| return false; |
| checkForComodification(); |
| root.addAll(offset + index, c); |
| updateSizeAndModCount(cSize); |
| return true; |
| } |
| |
| public void replaceAll(UnaryOperator<E> operator) { |
| root.replaceAllRange(operator, offset, offset + size); |
| } |
| |
| public boolean removeAll(Collection<?> c) { |
| return batchRemove(c, false); |
| } |
| |
| public boolean retainAll(Collection<?> c) { |
| return batchRemove(c, true); |
| } |
| |
| private boolean batchRemove(Collection<?> c, boolean complement) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = |
| root.batchRemove(c, complement, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public boolean removeIf(Predicate<? super E> filter) { |
| checkForComodification(); |
| int oldSize = root.size; |
| boolean modified = root.removeIf(filter, offset, offset + size); |
| if (modified) |
| updateSizeAndModCount(root.size - oldSize); |
| return modified; |
| } |
| |
| public Object[] toArray() { |
| checkForComodification(); |
| return Arrays.copyOfRange(root.elementData, offset, offset + size); |
| } |
| |
| @SuppressWarnings("unchecked") |
| public <T> T[] toArray(T[] a) { |
| checkForComodification(); |
| if (a.length < size) |
| return (T[]) Arrays.copyOfRange( |
| root.elementData, offset, offset + size, a.getClass()); |
| System.arraycopy(root.elementData, offset, a, 0, size); |
| if (a.length > size) |
| a[size] = null; |
| return a; |
| } |
| |
| public boolean equals(Object o) { |
| if (o == this) { |
| return true; |
| } |
| |
| if (!(o instanceof List)) { |
| return false; |
| } |
| |
| boolean equal = root.equalsRange((List<?>)o, offset, offset + size); |
| checkForComodification(); |
| return equal; |
| } |
| |
| public int hashCode() { |
| int hash = root.hashCodeRange(offset, offset + size); |
| checkForComodification(); |
| return hash; |
| } |
| |
| public int indexOf(Object o) { |
| int index = root.indexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public int lastIndexOf(Object o) { |
| int index = root.lastIndexOfRange(o, offset, offset + size); |
| checkForComodification(); |
| return index >= 0 ? index - offset : -1; |
| } |
| |
| public boolean contains(Object o) { |
| return indexOf(o) >= 0; |
| } |
| |
| public Iterator<E> iterator() { |
| return listIterator(); |
| } |
| |
| public ListIterator<E> listIterator(int index) { |
| checkForComodification(); |
| rangeCheckForAdd(index); |
| |
| return new ListIterator<E>() { |
| int cursor = index; |
| int lastRet = -1; |
| int expectedModCount = SubList.this.modCount; |
| |
| public boolean hasNext() { |
| return cursor != SubList.this.size; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E next() { |
| checkForComodification(); |
| int i = cursor; |
| if (i >= SubList.this.size) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i + 1; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public boolean hasPrevious() { |
| return cursor != 0; |
| } |
| |
| @SuppressWarnings("unchecked") |
| public E previous() { |
| checkForComodification(); |
| int i = cursor - 1; |
| if (i < 0) |
| throw new NoSuchElementException(); |
| Object[] elementData = root.elementData; |
| if (offset + i >= elementData.length) |
| throw new ConcurrentModificationException(); |
| cursor = i; |
| return (E) elementData[offset + (lastRet = i)]; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int size = SubList.this.size; |
| int i = cursor; |
| if (i < size) { |
| final Object[] es = root.elementData; |
| if (offset + i >= es.length) |
| throw new ConcurrentModificationException(); |
| for (; i < size && root.modCount == expectedModCount; i++) |
| action.accept(elementAt(es, offset + i)); |
| |
| cursor = i; |
| lastRet = i - 1; |
| checkForComodification(); |
| } |
| } |
| |
| public int nextIndex() { |
| return cursor; |
| } |
| |
| public int previousIndex() { |
| return cursor - 1; |
| } |
| |
| public void remove() { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| SubList.this.remove(lastRet); |
| cursor = lastRet; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void set(E e) { |
| if (lastRet < 0) |
| throw new IllegalStateException(); |
| checkForComodification(); |
| |
| try { |
| root.set(offset + lastRet, e); |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| public void add(E e) { |
| checkForComodification(); |
| |
| try { |
| int i = cursor; |
| SubList.this.add(i, e); |
| cursor = i + 1; |
| lastRet = -1; |
| expectedModCount = SubList.this.modCount; |
| } catch (IndexOutOfBoundsException ex) { |
| throw new ConcurrentModificationException(); |
| } |
| } |
| |
| final void checkForComodification() { |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| }; |
| } |
| |
| public List<E> subList(int fromIndex, int toIndex) { |
| subListRangeCheck(fromIndex, toIndex, size); |
| return new SubList<>(this, fromIndex, toIndex); |
| } |
| |
| private void rangeCheckForAdd(int index) { |
| if (index < 0 || index > this.size) |
| throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); |
| } |
| |
| private String outOfBoundsMsg(int index) { |
| return "Index: "+index+", Size: "+this.size; |
| } |
| |
| private void checkForComodification() { |
| if (root.modCount != modCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| private void updateSizeAndModCount(int sizeChange) { |
| SubList<E> slist = this; |
| do { |
| slist.size += sizeChange; |
| slist.modCount = root.modCount; |
| slist = slist.parent; |
| } while (slist != null); |
| } |
| |
| public Spliterator<E> spliterator() { |
| checkForComodification(); |
| |
| |
| |
| |
| |
| return new Spliterator<E>() { |
| private int index = offset; |
| private int fence = -1; |
| private int expectedModCount; |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = offset + size; |
| } |
| return hi; |
| } |
| |
| public ArrayList<E>.ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| |
| return (lo >= mid) ? null : |
| root.new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)root.elementData[i]; |
| action.accept(e); |
| if (root.modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| int i, hi, mc; |
| ArrayList<E> lst = root; |
| Object[] a; |
| if ((a = lst.elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = offset + size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (lst.modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| }; |
| } |
| } |
| |
| |
| |
| |
| @Override |
| public void forEach(Consumer<? super E> action) { |
| Objects.requireNonNull(action); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| final int size = this.size; |
| for (int i = 0; modCount == expectedModCount && i < size; i++) |
| action.accept(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| @Override |
| public Spliterator<E> spliterator() { |
| return new ArrayListSpliterator(0, -1, 0); |
| } |
| |
| |
| final class ArrayListSpliterator implements Spliterator<E> { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| private int index; |
| private int fence; |
| private int expectedModCount; |
| |
| |
| ArrayListSpliterator(int origin, int fence, int expectedModCount) { |
| this.index = origin; |
| this.fence = fence; |
| this.expectedModCount = expectedModCount; |
| } |
| |
| private int getFence() { |
| int hi; |
| if ((hi = fence) < 0) { |
| expectedModCount = modCount; |
| hi = fence = size; |
| } |
| return hi; |
| } |
| |
| public ArrayListSpliterator trySplit() { |
| int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
| return (lo >= mid) ? null : |
| new ArrayListSpliterator(lo, index = mid, expectedModCount); |
| } |
| |
| public boolean tryAdvance(Consumer<? super E> action) { |
| if (action == null) |
| throw new NullPointerException(); |
| int hi = getFence(), i = index; |
| if (i < hi) { |
| index = i + 1; |
| @SuppressWarnings("unchecked") E e = (E)elementData[i]; |
| action.accept(e); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return true; |
| } |
| return false; |
| } |
| |
| public void forEachRemaining(Consumer<? super E> action) { |
| int i, hi, mc; |
| Object[] a; |
| if (action == null) |
| throw new NullPointerException(); |
| if ((a = elementData) != null) { |
| if ((hi = fence) < 0) { |
| mc = modCount; |
| hi = size; |
| } |
| else |
| mc = expectedModCount; |
| if ((i = index) >= 0 && (index = hi) <= a.length) { |
| for (; i < hi; ++i) { |
| @SuppressWarnings("unchecked") E e = (E) a[i]; |
| action.accept(e); |
| } |
| if (modCount == mc) |
| return; |
| } |
| } |
| throw new ConcurrentModificationException(); |
| } |
| |
| public long estimateSize() { |
| return getFence() - index; |
| } |
| |
| public int characteristics() { |
| return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; |
| } |
| } |
| |
| |
| |
| private static long[] nBits(int n) { |
| return new long[((n - 1) >> 6) + 1]; |
| } |
| private static void setBit(long[] bits, int i) { |
| bits[i >> 6] |= 1L << i; |
| } |
| private static boolean isClear(long[] bits, int i) { |
| return (bits[i >> 6] & (1L << i)) == 0; |
| } |
| |
| |
| |
| |
| @Override |
| public boolean removeIf(Predicate<? super E> filter) { |
| return removeIf(filter, 0, size); |
| } |
| |
| |
| |
| |
| |
| boolean removeIf(Predicate<? super E> filter, int i, final int end) { |
| Objects.requireNonNull(filter); |
| int expectedModCount = modCount; |
| final Object[] es = elementData; |
| |
| for (; i < end && !filter.test(elementAt(es, i)); i++) |
| ; |
| |
| |
| |
| if (i < end) { |
| final int beg = i; |
| final long[] deathRow = nBits(end - beg); |
| deathRow[0] = 1L; |
| for (i = beg + 1; i < end; i++) |
| if (filter.test(elementAt(es, i))) |
| setBit(deathRow, i - beg); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| int w = beg; |
| for (i = beg; i < end; i++) |
| if (isClear(deathRow, i - beg)) |
| es[w++] = es[i]; |
| shiftTailOverGap(es, w, end); |
| return true; |
| } else { |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| return false; |
| } |
| } |
| |
| @Override |
| public void replaceAll(UnaryOperator<E> operator) { |
| replaceAllRange(operator, 0, size); |
| |
| modCount++; |
| } |
| |
| private void replaceAllRange(UnaryOperator<E> operator, int i, int end) { |
| Objects.requireNonNull(operator); |
| final int expectedModCount = modCount; |
| final Object[] es = elementData; |
| for (; modCount == expectedModCount && i < end; i++) |
| es[i] = operator.apply(elementAt(es, i)); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| } |
| |
| @Override |
| @SuppressWarnings("unchecked") |
| public void sort(Comparator<? super E> c) { |
| final int expectedModCount = modCount; |
| Arrays.sort((E[]) elementData, 0, size, c); |
| if (modCount != expectedModCount) |
| throw new ConcurrentModificationException(); |
| modCount++; |
| } |
| |
| void checkInvariants() { |
| |
| |
| } |
| } |