ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/Vector.java
(Generate patch)

Comparing jsr166/src/main/java/util/Vector.java (file contents):
Revision 1.36 by jsr166, Mon Nov 14 22:46:22 2016 UTC vs.
Revision 1.49 by jsr166, Sat Apr 28 16:25:34 2018 UTC

# Line 1 | Line 1
1   /*
2 < * Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
2 > * Copyright (c) 1994, 2018, Oracle and/or its affiliates. All rights reserved.
3   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4   *
5   * This code is free software; you can redistribute it and/or modify it
# Line 25 | Line 25
25  
26   package java.util;
27  
28 + import java.io.IOException;
29 + import java.io.ObjectInputStream;
30 + import java.io.StreamCorruptedException;
31   import java.util.function.Consumer;
32   import java.util.function.Predicate;
33   import java.util.function.UnaryOperator;
# Line 70 | Line 73 | import java.util.function.UnaryOperator;
73   *
74   * <p>As of the Java 2 platform v1.2, this class was retrofitted to
75   * implement the {@link List} interface, making it a member of the
76 < * <a href="{@docRoot}/../technotes/guides/collections/index.html">
76 > * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
77   * Java Collections Framework</a>.  Unlike the new collection
78   * implementations, {@code Vector} is synchronized.  If a thread-safe
79   * implementation is not needed, it is recommended to use {@link
# Line 306 | Line 309 | public class Vector<E>
309          modCount++;
310          if (newSize > elementData.length)
311              grow(newSize);
312 <        for (int i = newSize; i < elementCount; i++)
313 <            elementData[i] = null;
312 >        final Object[] es = elementData;
313 >        for (int to = elementCount, i = newSize; i < to; i++)
314 >            es[i] = null;
315          elementCount = newSize;
316      }
317  
# Line 676 | Line 680 | public class Vector<E>
680       * method (which is part of the {@link List} interface).
681       */
682      public synchronized void removeAllElements() {
683 <        Arrays.fill(elementData, 0, elementCount, null);
683 >        final Object[] es = elementData;
684 >        for (int to = elementCount, i = elementCount = 0; i < to; i++)
685 >            es[i] = null;
686          modCount++;
681        elementCount = 0;
687      }
688  
689      /**
# Line 984 | Line 989 | public class Vector<E>
989          return bulkRemove(e -> !c.contains(e));
990      }
991  
992 +    /**
993 +     * @throws NullPointerException {@inheritDoc}
994 +     */
995      @Override
996      public boolean removeIf(Predicate<? super E> filter) {
997          Objects.requireNonNull(filter);
# Line 1022 | Line 1030 | public class Vector<E>
1030                      setBit(deathRow, i - beg);
1031              if (modCount != expectedModCount)
1032                  throw new ConcurrentModificationException();
1025            expectedModCount++;
1033              modCount++;
1034              int w = beg;
1035              for (i = beg; i < end; i++)
1036                  if (isClear(deathRow, i - beg))
1037                      es[w++] = es[i];
1038 <            Arrays.fill(es, elementCount = w, end, null);
1038 >            for (i = elementCount = w; i < end; i++)
1039 >                es[i] = null;
1040              // checkInvariants();
1041              return true;
1042          } else {
# Line 1159 | Line 1167 | public class Vector<E>
1167       * (If {@code toIndex==fromIndex}, this operation has no effect.)
1168       */
1169      protected synchronized void removeRange(int fromIndex, int toIndex) {
1162        final Object[] es = elementData;
1163        final int oldSize = elementCount;
1164        System.arraycopy(es, toIndex, es, fromIndex, oldSize - toIndex);
1165
1170          modCount++;
1171 <        Arrays.fill(es, elementCount -= (toIndex - fromIndex), oldSize, null);
1171 >        shiftTailOverGap(elementData, fromIndex, toIndex);
1172          // checkInvariants();
1173      }
1174  
1175 +    /** Erases the gap from lo to hi, by sliding down following elements. */
1176 +    private void shiftTailOverGap(Object[] es, int lo, int hi) {
1177 +        System.arraycopy(es, hi, es, lo, elementCount - hi);
1178 +        for (int to = elementCount, i = (elementCount -= hi - lo); i < to; i++)
1179 +            es[i] = null;
1180 +    }
1181 +
1182      /**
1183 <     * Save the state of the {@code Vector} instance to a stream (that
1184 <     * is, serialize it).
1183 >     * Loads a {@code Vector} instance from a stream
1184 >     * (that is, deserializes it).
1185 >     * This method performs checks to ensure the consistency
1186 >     * of the fields.
1187 >     *
1188 >     * @param in the stream
1189 >     * @throws java.io.IOException if an I/O error occurs
1190 >     * @throws ClassNotFoundException if the stream contains data
1191 >     *         of a non-existing class
1192 >     */
1193 >    private void readObject(ObjectInputStream in)
1194 >            throws IOException, ClassNotFoundException {
1195 >        ObjectInputStream.GetField gfields = in.readFields();
1196 >        int count = gfields.get("elementCount", 0);
1197 >        Object[] data = (Object[])gfields.get("elementData", null);
1198 >        if (count < 0 || data == null || count > data.length) {
1199 >            throw new StreamCorruptedException("Inconsistent vector internals");
1200 >        }
1201 >        elementCount = count;
1202 >        elementData = data.clone();
1203 >    }
1204 >
1205 >    /**
1206 >     * Saves the state of the {@code Vector} instance to a stream
1207 >     * (that is, serializes it).
1208       * This method performs synchronization to ensure the consistency
1209       * of the serialized data.
1210 +     *
1211 +     * @param s the stream
1212 +     * @throws java.io.IOException if an I/O error occurs
1213       */
1214      private void writeObject(java.io.ObjectOutputStream s)
1215              throws java.io.IOException {
# Line 1345 | Line 1382 | public class Vector<E>
1382          }
1383      }
1384  
1385 +    /**
1386 +     * @throws NullPointerException {@inheritDoc}
1387 +     */
1388      @Override
1389      public synchronized void forEach(Consumer<? super E> action) {
1390          Objects.requireNonNull(action);
# Line 1358 | Line 1398 | public class Vector<E>
1398          // checkInvariants();
1399      }
1400  
1401 +    /**
1402 +     * @throws NullPointerException {@inheritDoc}
1403 +     */
1404      @Override
1405      public synchronized void replaceAll(UnaryOperator<E> operator) {
1406          Objects.requireNonNull(operator);
# Line 1398 | Line 1441 | public class Vector<E>
1441       */
1442      @Override
1443      public Spliterator<E> spliterator() {
1444 <        return new VectorSpliterator<>(this, null, 0, -1, 0);
1444 >        return new VectorSpliterator(null, 0, -1, 0);
1445      }
1446  
1447      /** Similar to ArrayList Spliterator */
1448 <    static final class VectorSpliterator<E> implements Spliterator<E> {
1406 <        private final Vector<E> list;
1448 >    final class VectorSpliterator implements Spliterator<E> {
1449          private Object[] array;
1450          private int index; // current index, modified on advance/split
1451          private int fence; // -1 until used; then one past last index
1452          private int expectedModCount; // initialized when fence set
1453  
1454 <        /** Create new spliterator covering the given range */
1455 <        VectorSpliterator(Vector<E> list, Object[] array, int origin, int fence,
1454 >        /** Creates new spliterator covering the given range. */
1455 >        VectorSpliterator(Object[] array, int origin, int fence,
1456                            int expectedModCount) {
1415            this.list = list;
1457              this.array = array;
1458              this.index = origin;
1459              this.fence = fence;
# Line 1422 | Line 1463 | public class Vector<E>
1463          private int getFence() { // initialize on first use
1464              int hi;
1465              if ((hi = fence) < 0) {
1466 <                synchronized (list) {
1467 <                    array = list.elementData;
1468 <                    expectedModCount = list.modCount;
1469 <                    hi = fence = list.elementCount;
1466 >                synchronized (Vector.this) {
1467 >                    array = elementData;
1468 >                    expectedModCount = modCount;
1469 >                    hi = fence = elementCount;
1470                  }
1471              }
1472              return hi;
# Line 1434 | Line 1475 | public class Vector<E>
1475          public Spliterator<E> trySplit() {
1476              int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
1477              return (lo >= mid) ? null :
1478 <                new VectorSpliterator<>(list, array, lo, index = mid,
1438 <                                        expectedModCount);
1478 >                new VectorSpliterator(array, lo, index = mid, expectedModCount);
1479          }
1480  
1481          @SuppressWarnings("unchecked")
1482          public boolean tryAdvance(Consumer<? super E> action) {
1483 +            Objects.requireNonNull(action);
1484              int i;
1444            if (action == null)
1445                throw new NullPointerException();
1485              if (getFence() > (i = index)) {
1486                  index = i + 1;
1487                  action.accept((E)array[i]);
1488 <                if (list.modCount != expectedModCount)
1488 >                if (modCount != expectedModCount)
1489                      throw new ConcurrentModificationException();
1490                  return true;
1491              }
# Line 1455 | Line 1494 | public class Vector<E>
1494  
1495          @SuppressWarnings("unchecked")
1496          public void forEachRemaining(Consumer<? super E> action) {
1497 <            int i, hi; // hoist accesses and checks from loop
1498 <            Vector<E> lst; Object[] a;
1499 <            if (action == null)
1500 <                throw new NullPointerException();
1501 <            if ((lst = list) != null) {
1502 <                if ((hi = fence) < 0) {
1503 <                    synchronized (lst) {
1504 <                        expectedModCount = lst.modCount;
1466 <                        a = array = lst.elementData;
1467 <                        hi = fence = lst.elementCount;
1468 <                    }
1469 <                }
1470 <                else
1471 <                    a = array;
1472 <                if (a != null && (i = index) >= 0 && (index = hi) <= a.length) {
1473 <                    while (i < hi)
1474 <                        action.accept((E) a[i++]);
1475 <                    if (lst.modCount == expectedModCount)
1476 <                        return;
1477 <                }
1478 <            }
1479 <            throw new ConcurrentModificationException();
1497 >            Objects.requireNonNull(action);
1498 >            final int hi = getFence();
1499 >            final Object[] a = array;
1500 >            int i;
1501 >            for (i = index, index = hi; i < hi; i++)
1502 >                action.accept((E) a[i]);
1503 >            if (modCount != expectedModCount)
1504 >                throw new ConcurrentModificationException();
1505          }
1506  
1507          public long estimateSize() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines