| Index: third_party/protobuf/java/src/main/java/com/google/protobuf/DoubleArrayList.java
|
| diff --git a/third_party/protobuf/java/src/main/java/com/google/protobuf/DoubleArrayList.java b/third_party/protobuf/java/src/main/java/com/google/protobuf/DoubleArrayList.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..90ebe109d6b2ceb50d69504cc6dbcdf5eed0f5e3
|
| --- /dev/null
|
| +++ b/third_party/protobuf/java/src/main/java/com/google/protobuf/DoubleArrayList.java
|
| @@ -0,0 +1,243 @@
|
| +// Protocol Buffers - Google's data interchange format
|
| +// Copyright 2008 Google Inc. All rights reserved.
|
| +// https://developers.google.com/protocol-buffers/
|
| +//
|
| +// Redistribution and use in source and binary forms, with or without
|
| +// modification, are permitted provided that the following conditions are
|
| +// met:
|
| +//
|
| +// * Redistributions of source code must retain the above copyright
|
| +// notice, this list of conditions and the following disclaimer.
|
| +// * Redistributions in binary form must reproduce the above
|
| +// copyright notice, this list of conditions and the following disclaimer
|
| +// in the documentation and/or other materials provided with the
|
| +// distribution.
|
| +// * Neither the name of Google Inc. nor the names of its
|
| +// contributors may be used to endorse or promote products derived from
|
| +// this software without specific prior written permission.
|
| +//
|
| +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| +
|
| +package com.google.protobuf;
|
| +
|
| +import com.google.protobuf.Internal.DoubleList;
|
| +
|
| +import java.util.Arrays;
|
| +import java.util.Collection;
|
| +import java.util.List;
|
| +import java.util.RandomAccess;
|
| +
|
| +/**
|
| + * An implementation of {@link DoubleList} on top of a primitive array.
|
| + *
|
| + * @author dweis@google.com (Daniel Weis)
|
| + */
|
| +final class DoubleArrayList
|
| + extends AbstractProtobufList<Double> implements DoubleList, RandomAccess {
|
| +
|
| + private static final int DEFAULT_CAPACITY = 10;
|
| +
|
| + private static final DoubleArrayList EMPTY_LIST = new DoubleArrayList();
|
| + static {
|
| + EMPTY_LIST.makeImmutable();
|
| + }
|
| +
|
| + public static DoubleArrayList emptyList() {
|
| + return EMPTY_LIST;
|
| + }
|
| +
|
| + /**
|
| + * The backing store for the list.
|
| + */
|
| + private double[] array;
|
| +
|
| + /**
|
| + * The size of the list distinct from the length of the array. That is, it is the number of
|
| + * elements set in the list.
|
| + */
|
| + private int size;
|
| +
|
| + /**
|
| + * Constructs a new mutable {@code DoubleArrayList}.
|
| + */
|
| + DoubleArrayList() {
|
| + array = new double[DEFAULT_CAPACITY];
|
| + size = 0;
|
| + }
|
| +
|
| + /**
|
| + * Constructs a new mutable {@code DoubleArrayList} containing the same elements as {@code other}.
|
| + */
|
| + DoubleArrayList(List<Double> other) {
|
| + if (other instanceof DoubleArrayList) {
|
| + DoubleArrayList list = (DoubleArrayList) other;
|
| + array = list.array.clone();
|
| + size = list.size;
|
| + } else {
|
| + size = other.size();
|
| + array = new double[size];
|
| + for (int i = 0; i < size; i++) {
|
| + array[i] = other.get(i);
|
| + }
|
| + }
|
| + }
|
| +
|
| + @Override
|
| + public Double get(int index) {
|
| + return getDouble(index);
|
| + }
|
| +
|
| + @Override
|
| + public double getDouble(int index) {
|
| + ensureIndexInRange(index);
|
| + return array[index];
|
| + }
|
| +
|
| + @Override
|
| + public int size() {
|
| + return size;
|
| + }
|
| +
|
| + @Override
|
| + public Double set(int index, Double element) {
|
| + return setDouble(index, element);
|
| + }
|
| +
|
| + @Override
|
| + public double setDouble(int index, double element) {
|
| + ensureIsMutable();
|
| + ensureIndexInRange(index);
|
| + double previousValue = array[index];
|
| + array[index] = element;
|
| + return previousValue;
|
| + }
|
| +
|
| + @Override
|
| + public void add(int index, Double element) {
|
| + addDouble(index, element);
|
| + }
|
| +
|
| + /**
|
| + * Like {@link #add(Double)} but more efficient in that it doesn't box the element.
|
| + */
|
| + @Override
|
| + public void addDouble(double element) {
|
| + addDouble(size, element);
|
| + }
|
| +
|
| + /**
|
| + * Like {@link #add(int, Double)} but more efficient in that it doesn't box the element.
|
| + */
|
| + private void addDouble(int index, double element) {
|
| + ensureIsMutable();
|
| + if (index < 0 || index > size) {
|
| + throw new IndexOutOfBoundsException(makeOutOfBoundsExceptionMessage(index));
|
| + }
|
| +
|
| + if (size < array.length) {
|
| + // Shift everything over to make room
|
| + System.arraycopy(array, index, array, index + 1, size - index);
|
| + } else {
|
| + // Resize to 1.5x the size
|
| + int length = ((size * 3) / 2) + 1;
|
| + double[] newArray = new double[length];
|
| +
|
| + // Copy the first part directly
|
| + System.arraycopy(array, 0, newArray, 0, index);
|
| +
|
| + // Copy the rest shifted over by one to make room
|
| + System.arraycopy(array, index, newArray, index + 1, size - index);
|
| + array = newArray;
|
| + }
|
| +
|
| + array[index] = element;
|
| + size++;
|
| + modCount++;
|
| + }
|
| +
|
| + @Override
|
| + public boolean addAll(Collection<? extends Double> collection) {
|
| + ensureIsMutable();
|
| +
|
| + if (collection == null) {
|
| + throw new NullPointerException();
|
| + }
|
| +
|
| + // We specialize when adding another DoubleArrayList to avoid boxing elements.
|
| + if (!(collection instanceof DoubleArrayList)) {
|
| + return super.addAll(collection);
|
| + }
|
| +
|
| + DoubleArrayList list = (DoubleArrayList) collection;
|
| + if (list.size == 0) {
|
| + return false;
|
| + }
|
| +
|
| + int overflow = Integer.MAX_VALUE - size;
|
| + if (overflow < list.size) {
|
| + // We can't actually represent a list this large.
|
| + throw new OutOfMemoryError();
|
| + }
|
| +
|
| + int newSize = size + list.size;
|
| + if (newSize > array.length) {
|
| + array = Arrays.copyOf(array, newSize);
|
| + }
|
| +
|
| + System.arraycopy(list.array, 0, array, size, list.size);
|
| + size = newSize;
|
| + modCount++;
|
| + return true;
|
| + }
|
| +
|
| + @Override
|
| + public boolean remove(Object o) {
|
| + ensureIsMutable();
|
| + for (int i = 0; i < size; i++) {
|
| + if (o.equals(array[i])) {
|
| + System.arraycopy(array, i + 1, array, i, size - i);
|
| + size--;
|
| + modCount++;
|
| + return true;
|
| + }
|
| + }
|
| + return false;
|
| + }
|
| +
|
| + @Override
|
| + public Double remove(int index) {
|
| + ensureIsMutable();
|
| + ensureIndexInRange(index);
|
| + double value = array[index];
|
| + System.arraycopy(array, index + 1, array, index, size - index);
|
| + size--;
|
| + modCount++;
|
| + return value;
|
| + }
|
| +
|
| + /**
|
| + * Ensures that the provided {@code index} is within the range of {@code [0, size]}. Throws an
|
| + * {@link IndexOutOfBoundsException} if it is not.
|
| + *
|
| + * @param index the index to verify is in range
|
| + */
|
| + private void ensureIndexInRange(int index) {
|
| + if (index < 0 || index >= size) {
|
| + throw new IndexOutOfBoundsException(makeOutOfBoundsExceptionMessage(index));
|
| + }
|
| + }
|
| +
|
| + private String makeOutOfBoundsExceptionMessage(int index) {
|
| + return "Index:" + index + ", Size:" + size;
|
| + }
|
| +}
|
|
|