Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.d2ab.collection.chars.ArrayCharList Maven / Gradle / Ivy
/*
* Copyright 2016 Daniel Skogquist Åborg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.d2ab.collection.chars;
import org.d2ab.collection.Arrayz;
import org.d2ab.function.CharConsumer;
import org.d2ab.function.CharPredicate;
import org.d2ab.function.CharUnaryOperator;
import org.d2ab.iterator.chars.CharIterator;
import java.util.Arrays;
import java.util.ConcurrentModificationException;
import java.util.NoSuchElementException;
import java.util.RandomAccess;
/**
* An {@link CharList} backed by an char-array, supporting all {@link CharList}-methods by modifying and/or replacing
* the underlying array.
*/
public class ArrayCharList extends CharList.Base implements RandomAccess {
private char[] contents;
private int size;
private int modCount;
/**
* Create a new empty mutable {@code ArrayCharList}. When possible, it's preferred to use
* {@link CharList#create()} instead.
*
* @return a new empty mutable {@code ArrayCharList}.
*
* @see CharList#create()
* @see #withCapacity(int)
* @since 2.1
*/
public static ArrayCharList create() {
return new ArrayCharList();
}
/**
* Create a new mutable {@code ArrayCharList} initialized with a copy of the given contents. When possible, it's
* preferred to use {@link CharList#create(char...)} instead.
*
* @return a new mutable {@code ArrayCharList} initialized with a copy of the given contents.
*
* @see CharList#create(char...)
* @see #ArrayCharList(CharCollection)
* @since 2.1
*/
public static ArrayCharList create(char... xs) {
return new ArrayCharList(xs);
}
/**
* @return a new mutable {@code ArrayCharList} with the given initial capacity.
*
* @since 2.1
*/
public static ArrayCharList withCapacity(int capacity) {
return new ArrayCharList(capacity);
}
/**
* Create a new mutable {@code ArrayCharList}.
*
* @since 2.0
*/
public ArrayCharList() {
this(10);
}
/**
* Create a new mutable {@code ArrayCharList} with the given initial capacity.
*
* @since 2.0
*/
private ArrayCharList(int capacity) {
this.contents = new char[capacity];
}
public ArrayCharList(CharCollection xs) {
this();
addAllChars(xs);
}
public ArrayCharList(char[] xs) {
this.contents = Arrays.copyOf(xs, xs.length);
this.size = xs.length;
}
@Override
public int size() {
return size;
}
@Override
public boolean isEmpty() {
return size == 0;
}
@Override
public void clear() {
size = 0;
}
@Override
public char[] toCharArray() {
return Arrays.copyOfRange(contents, 0, size);
}
@Override
public CharIterator iterator() {
return listIterator();
}
@Override
public CharListIterator listIterator(int index) {
rangeCheckForAdd(index);
return new ListIter(index);
}
@Override
public CharList subList(int from, int to) {
return new SubList(from, to);
}
@Override
public void sortChars() {
Arrays.sort(contents, 0, size);
}
@Override
public int binarySearch(char x) {
return Arrays.binarySearch(contents, 0, size, x);
}
@Override
public void replaceAllChars(CharUnaryOperator operator) {
for (int i = 0; i < size; i++)
contents[i] = operator.applyAsChar(contents[i]);
modCount++;
}
@Override
public char getChar(int index) {
rangeCheck(index);
return contents[index];
}
@Override
public char setChar(int index, char x) {
rangeCheck(index);
char previous = contents[index];
contents[index] = x;
modCount++;
return previous;
}
@Override
public void addCharAt(int index, char x) {
rangeCheckForAdd(index);
uncheckedAdd(index, x);
modCount++;
}
@Override
public char removeCharAt(int index) {
rangeCheck(index);
char previous = contents[index];
uncheckedRemove(index);
modCount++;
return previous;
}
@Override
public int lastIndexOfChar(char x) {
for (int i = size - 1; i >= 0; i--)
if (contents[i] == x)
return i;
return -1;
}
@Override
public int indexOfChar(char x) {
for (int i = 0; i < size; i++)
if (contents[i] == x)
return i;
return -1;
}
@Override
public boolean addChar(char x) {
growIfNecessaryBy(1);
contents[size++] = x;
modCount++;
return true;
}
@Override
public boolean addAllChars(char... xs) {
if (xs.length == 0)
return false;
growIfNecessaryBy(xs.length);
System.arraycopy(xs, 0, contents, size, xs.length);
size += xs.length;
modCount++;
return true;
}
@Override
public boolean addAllChars(CharCollection xs) {
int xsSize = xs.size();
if (xsSize == 0)
return false;
growIfNecessaryBy(xsSize);
uncheckedAdd(size, xs, xsSize);
modCount++;
return true;
}
@Override
public boolean addAllCharsAt(int index, char... xs) {
if (xs.length == 0)
return false;
rangeCheckForAdd(index);
growIfNecessaryBy(xs.length);
System.arraycopy(contents, index, contents, index + xs.length, size - index);
System.arraycopy(xs, 0, contents, index, xs.length);
size += xs.length;
modCount++;
return true;
}
@Override
public boolean addAllCharsAt(int index, CharCollection xs) {
int xsSize = xs.size();
if (xsSize == 0)
return false;
rangeCheckForAdd(index);
growIfNecessaryBy(xsSize);
System.arraycopy(contents, index, contents, index + xsSize, size - index);
uncheckedAdd(index, xs, xsSize);
modCount++;
return true;
}
@Override
public boolean containsAllChars(char... xs) {
for (char x : xs)
if (!containsChar(x))
return false;
return true;
}
@Override
public boolean removeChar(char x) {
for (int i = 0; i < size; i++)
if (contents[i] == x) {
uncheckedRemove(i);
modCount++;
return true;
}
return false;
}
@Override
public boolean containsChar(char x) {
for (int i = 0; i < size; i++)
if (contents[i] == x)
return true;
return false;
}
@Override
public boolean removeAllChars(char... xs) {
boolean modified = false;
for (int i = 0; i < size; i++)
if (Arrayz.contains(xs, contents[i])) {
uncheckedRemove(i--);
modified = true;
}
if (modified)
modCount++;
return modified;
}
@Override
public boolean retainAllChars(char... xs) {
boolean modified = false;
for (int i = 0; i < size; i++)
if (!Arrayz.contains(xs, contents[i])) {
uncheckedRemove(i--);
modified = true;
}
if (modified)
modCount++;
return modified;
}
@Override
public boolean removeCharsIf(CharPredicate filter) {
boolean modified = false;
for (int i = 0; i < size; i++)
if (filter.test(contents[i])) {
uncheckedRemove(i--);
modified = true;
}
if (modified)
modCount++;
return modified;
}
@Override
public void forEachChar(CharConsumer consumer) {
for (int i = 0; i < size; i++)
consumer.accept(contents[i]);
}
private void growIfNecessaryBy(int grow) {
int newSize = size + grow;
if (newSize > contents.length) {
int newCapacity = newSize + (newSize >> 1);
char[] copy = new char[newCapacity];
System.arraycopy(contents, 0, copy, 0, size);
contents = copy;
}
}
private void uncheckedAdd(int index, char x) {
growIfNecessaryBy(1);
System.arraycopy(contents, index, contents, index + 1, size++ - index);
contents[index] = x;
}
protected void uncheckedAdd(int index, CharIterable xs, int xsSize) {
if (xs instanceof ArrayCharList) {
System.arraycopy(((ArrayCharList) xs).contents, 0, contents, index, xsSize);
} else {
CharIterator iterator = xs.iterator();
for (int i = 0; i < xsSize; i++)
contents[i + index] = iterator.nextChar();
}
size += xsSize;
}
private void uncheckedRemove(int index) {
System.arraycopy(contents, index + 1, contents, index, size-- - index - 1);
}
private void rangeCheck(int index) {
if (index < 0 || index >= size)
throw new IndexOutOfBoundsException("index: " + index + " size: " + size);
}
private void rangeCheckForAdd(int index) {
if (index < 0 || index > size)
throw new IndexOutOfBoundsException("index: " + index + " size: " + size);
}
private class ListIter implements CharListIterator {
private int nextIndex;
private int currentIndex;
private final int from;
private int to;
private boolean addOrRemove;
private boolean nextOrPrevious;
private int expectedModCount = modCount;
private ListIter(int index) {
this(index, 0, size);
}
private ListIter(int index, int from, int to) {
this.nextIndex = index;
this.currentIndex = index - 1;
this.from = from;
this.to = to;
}
@Override
public boolean hasNext() {
return nextIndex < to - from;
}
@Override
public char nextChar() {
checkForCoModification();
if (!hasNext())
throw new NoSuchElementException();
addOrRemove = false;
nextOrPrevious = true;
return contents[(currentIndex = nextIndex++) + from];
}
@Override
public boolean hasPrevious() {
return nextIndex > 0;
}
@Override
public char previousChar() {
checkForCoModification();
if (!hasPrevious())
throw new NoSuchElementException();
addOrRemove = false;
nextOrPrevious = true;
return contents[(currentIndex = --nextIndex) + from];
}
@Override
public int nextIndex() {
return nextIndex;
}
@Override
public int previousIndex() {
return nextIndex - 1;
}
@Override
public void remove() {
checkForCoModification();
if (addOrRemove)
throw new IllegalStateException("add() or remove() called");
if (!nextOrPrevious)
throw new IllegalStateException("nextChar() or previousChar() not called");
uncheckedRemove((nextIndex = currentIndex--) + from);
addOrRemove = true;
to--;
modCount++;
expectedModCount++;
}
@Override
public void set(char x) {
checkForCoModification();
if (addOrRemove)
throw new IllegalStateException("add() or remove() called");
if (!nextOrPrevious)
throw new IllegalStateException("nextChar() or previousChar() not called");
contents[currentIndex + from] = x;
modCount++;
expectedModCount++;
}
@Override
public void add(char x) {
checkForCoModification();
uncheckedAdd((currentIndex = nextIndex++) + from, x);
addOrRemove = true;
to++;
modCount++;
expectedModCount++;
}
private void checkForCoModification() {
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
}
}
private class SubList implements CharList {
private int from;
private int to;
private SubList(int from, int to) {
if (from < 0)
throw new ArrayIndexOutOfBoundsException(from);
if (to > size)
throw new ArrayIndexOutOfBoundsException(to);
this.from = from;
this.to = to;
}
@Override
public CharIterator iterator() {
return listIterator();
}
@Override
public CharListIterator listIterator(int index) {
return new ListIter(index, from, to) {
@Override
public void add(char x) {
super.add(x);
ArrayCharList.SubList.this.to++;
}
@Override
public void remove() {
super.remove();
ArrayCharList.SubList.this.to--;
}
};
}
public int size() {
return to - from;
}
}
}