package com.datastax.oss.protocol.internal.util.collection;
import java.io.Serializable;
import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
public class NullAllowingImmutableList<E> extends AbstractList<E> implements Serializable {
@SuppressWarnings("rawtypes")
private static final NullAllowingImmutableList EMPTY =
new NullAllowingImmutableList<>(new Object[] {});
@SafeVarargs
public static <E> NullAllowingImmutableList<E> of(E... elements) {
return new NullAllowingImmutableList<>(Arrays.copyOf(elements, elements.length));
}
@SuppressWarnings("unchecked")
public static <E> NullAllowingImmutableList<E> of() {
return (NullAllowingImmutableList<E>) EMPTY;
}
public static <E> NullAllowingImmutableList<E> of(E element) {
return new NullAllowingImmutableList<>(new Object[] {element});
}
public static <E> NullAllowingImmutableList<E> of(E element1, E element2) {
return new NullAllowingImmutableList<>(new Object[] {element1, element2});
}
public static <E> NullAllowingImmutableList<E> of(E element1, E element2, E element3) {
return new NullAllowingImmutableList<>(new Object[] {element1, element2, element3});
}
public static <E> NullAllowingImmutableList<E> copyOf(Iterable<E> iterable) {
return iterable instanceof NullAllowingImmutableList
? (NullAllowingImmutableList<E>) iterable
: new NullAllowingImmutableList<>(toArray(iterable));
}
public static <E> Builder<E> builder() {
return builder(16);
}
public static <E> Builder<E> builder(int expectedSize) {
return new Builder<>(expectedSize);
}
private final Object[] elements;
private NullAllowingImmutableList(Object[] elements) {
this.elements = elements;
}
@Override
@SuppressWarnings("unchecked")
public E get(int index) {
return (E) elements[index];
}
@Override
public int size() {
return elements.length;
}
@SuppressWarnings("unchecked")
private static Object[] toArray(Iterable<?> iterable) {
Collection<Object> collection;
if (iterable instanceof Collection) {
collection = (Collection<Object>) iterable;
} else {
collection = new ArrayList<>();
for (Object o : iterable) {
collection.add(o);
}
}
return collection.toArray();
}
public static class Builder<E> {
private Object[] elements;
private int size;
public Builder(int expectedSize) {
elements = new Object[expectedSize];
}
public Builder<E> add(E newElement) {
maybeResize(1);
elements[size++] = newElement;
return this;
}
@SuppressWarnings("unchecked")
public Builder<E> addAll(Iterable<? extends E> newElements) {
Collection<E> collection;
if (newElements instanceof Collection) {
collection = (Collection<E>) newElements;
} else {
collection = new ArrayList<>();
for (E newElement : newElements) {
collection.add(newElement);
}
}
maybeResize(collection.size());
for (Object newElement : collection) {
elements[size++] = newElement;
}
return this;
}
public NullAllowingImmutableList<E> build() {
return new NullAllowingImmutableList<>(
(size == elements.length) ? elements : Arrays.copyOfRange(elements, 0, size));
}
private void maybeResize(int toAdd) {
int neededSize = size + toAdd;
if (neededSize < 0) {
throw new OutOfMemoryError();
}
if (neededSize > elements.length) {
int newLength = elements.length * 2;
if (newLength < 0) {
newLength = neededSize;
}
elements = Arrays.copyOf(elements, newLength);
}
}
}
}