blob: f18c84bd82793264b1012b9bf53a06515cd90f54 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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 com.intellij.util.containers;
import org.jetbrains.annotations.NotNull;
import java.util.Arrays;
public class IntArrayList implements Cloneable {
private int[] myData;
private int mySize;
public IntArrayList(int initialCapacity) {
myData = new int[initialCapacity];
}
public IntArrayList() {
this(10);
}
public void trimToSize() {
int oldCapacity = myData.length;
if (mySize < oldCapacity){
int[] oldData = myData;
myData = new int[mySize];
System.arraycopy(oldData, 0, myData, 0, mySize);
}
}
public void ensureCapacity(int minCapacity) {
int oldCapacity = myData.length;
if (minCapacity > oldCapacity){
int[] oldData = myData;
int newCapacity = oldCapacity * 3 / 2 + 1;
if (newCapacity < minCapacity){
newCapacity = minCapacity;
}
myData = new int[newCapacity];
System.arraycopy(oldData, 0, myData, 0, mySize);
}
}
public void fill(int fromIndex, int toIndex, int value) {
if (toIndex > mySize) {
ensureCapacity(toIndex);
mySize = toIndex;
}
Arrays.fill(myData, fromIndex, toIndex, value);
}
public void add(@NotNull int[] values) {
int length = values.length;
ensureCapacity(mySize + length);
System.arraycopy(values, 0, myData, mySize, length);
mySize += length;
}
public int size() {
return mySize;
}
public boolean isEmpty() {
return mySize == 0;
}
public boolean contains(int elem) {
return indexOf(elem) >= 0;
}
public int indexOf(int elem) {
for(int i = 0; i < mySize; i++){
if (elem == myData[i]) return i;
}
return -1;
}
public int indexOf(int elem, int startIndex, int endIndex) {
if (startIndex < 0 || endIndex < startIndex || endIndex >= mySize) {
throw new IndexOutOfBoundsException("startIndex: "+startIndex+"; endIndex: "+endIndex+"; mySize: "+mySize);
}
for(int i = startIndex; i < endIndex; i++){
if (elem == myData[i]) return i;
}
return -1;
}
public int lastIndexOf(int elem) {
for(int i = mySize - 1; i >= 0; i--){
if (elem == myData[i]) return i;
}
return -1;
}
@Override
public Object clone() {
try{
IntArrayList v = (IntArrayList)super.clone();
v.myData = new int[mySize];
System.arraycopy(myData, 0, v.myData, 0, mySize);
return v;
}
catch(CloneNotSupportedException e){
// this shouldn't happen, since we are Cloneable
throw new InternalError();
}
}
@NotNull
public int[] toArray() {
int[] result = new int[mySize];
System.arraycopy(myData, 0, result, 0, mySize);
return result;
}
@NotNull
public int[] toArray(@NotNull int[] a) {
if (a.length < mySize){
a = new int[mySize];
}
System.arraycopy(myData, 0, a, 0, mySize);
return a;
}
@NotNull
public int[] toArray(int startIndex, int length) {
int[] result = new int[length];
System.arraycopy(myData, startIndex, result, 0, length);
return result;
}
public int get(int index) {
checkRange(index);
return myData[index];
}
public int getQuick(int index) {
return myData[index];
}
public int set(int index, int element) {
checkRange(index);
int oldValue = myData[index];
myData[index] = element;
return oldValue;
}
public void setQuick(int index, int element) {
myData[index] = element;
}
public void add(int o) {
ensureCapacity(mySize + 1);
myData[mySize++] = o;
}
public void add(int index, int element) {
if (index > mySize || index < 0){
throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + mySize);
}
ensureCapacity(mySize + 1);
System.arraycopy(myData, index, myData, index + 1, mySize - index);
myData[index] = element;
mySize++;
}
public int remove(int index) {
checkRange(index);
int oldValue = myData[index];
int numMoved = mySize - index - 1;
if (numMoved > 0){
System.arraycopy(myData, index + 1, myData, index,numMoved);
}
mySize--;
return oldValue;
}
public void clear() {
mySize = 0;
}
public void removeRange(int fromIndex, int toIndex) {
int numMoved = mySize - toIndex;
System.arraycopy(myData, toIndex, myData, fromIndex, numMoved);
mySize -= toIndex - fromIndex;
}
public void copyRange(int fromIndex, int length, int toIndex) {
if (length < 0 || fromIndex < 0 || fromIndex + length > mySize || toIndex < 0 || toIndex + length > mySize) {
throw new IndexOutOfBoundsException("fromIndex: "+fromIndex+"; length: "+length+"; toIndex: "+toIndex+"; mySize: "+mySize);
}
System.arraycopy(myData, fromIndex, myData, toIndex, length);
}
private void checkRange(int index) {
if (index >= mySize || index < 0){
//noinspection HardCodedStringLiteral
throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + mySize);
}
}
@Override
public String toString() {
return Arrays.toString(toArray());
}
}