/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ /* Copyright � 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the suitability of this software for any purpose. It is provided "as is" without expressed or implied warranty. */ package org.apache.mahout.math.list; import org.apache.mahout.math.function.ObjectProcedure; import java.util.Collection; /** Resizable list holding <code>${valueType}</code> elements; implemented with arrays. */ public class ObjectArrayList<T> extends AbstractObjectList<T> { /** * The array buffer into which the elements of the list are stored. The capacity of the list is the length of this * array buffer. */ private Object[] elements; private int size; /** Constructs an empty list. */ public ObjectArrayList() { this(10); } /** * Constructs a list containing the specified elements. The initial size and capacity of the list is the length of the * array. * * <b>WARNING:</b> For efficiency reasons and to keep memory usage low, <b>the array is not copied</b>. So if * subsequently you modify the specified array directly via the [] operator, be sure you know what you're doing. * * @param elements the array to be backed by the the constructed list */ public ObjectArrayList(T[] elements) { elements(elements); } /** * Constructs an empty list with the specified initial capacity. * * @param initialCapacity the number of elements the receiver can hold without auto-expanding itself by allocating new * internal memory. */ @SuppressWarnings("unchecked") public ObjectArrayList(int initialCapacity) { elements = new Object[initialCapacity]; size = 0; } /** * Appends the specified element to the end of this list. * * @param element element to be appended to this list. */ public void add(T element) { // overridden for performance only. if (size == elements.length) { ensureCapacity(size + 1); } elements[size++] = element; } /** * Inserts the specified element before the specified position into the receiver. Shifts the element currently at that * position (if any) and any subsequent elements to the right. * * @param index index before which the specified element is to be inserted (must be in [0,size]). * @param element element to be inserted. * @throws IndexOutOfBoundsException index is out of range (<tt>index < 0 || index > size()</tt>). */ public void beforeInsert(int index, T element) { // overridden for performance only. if (size == index) { add(element); return; } if (index > size || index < 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size); } ensureCapacity(size + 1); System.arraycopy(elements, index, elements, index + 1, size - index); elements[index] = element; size++; } /** * Returns a deep copy of the receiver. * * @return a deep copy of the receiver. */ @SuppressWarnings("unchecked") @Override public Object clone() { // overridden for performance only. return new ObjectArrayList<T>((T[]) elements.clone()); } /** * Returns a deep copy of the receiver; uses <code>clone()</code> and casts the result. * * @return a deep copy of the receiver. */ @SuppressWarnings("unchecked") public ObjectArrayList<T> copy() { return (ObjectArrayList<T>) clone(); } /** * Returns the elements currently stored, including invalid elements between size and capacity, if any. * * <b>WARNING:</b> For efficiency reasons and to keep memory usage low, <b>the array is not copied</b>. So if * subsequently you modify the returned array directly via the [] operator, be sure you know what you're doing. * * @return the elements currently stored. */ @SuppressWarnings("unchecked") public <Q> Q[] elements() { return (Q[])elements; } /** * Sets the receiver's elements to be the specified array (not a copy of it). * * The size and capacity of the list is the length of the array. <b>WARNING:</b> For efficiency reasons and to keep * memory usage low, <b>the array is not copied</b>. So if subsequently you modify the specified array directly via * the [] operator, be sure you know what you're doing. * * @param elements the new elements to be stored. */ public void elements(T[] elements) { this.elements = elements; this.size = elements.length; } /** * Ensures that the receiver can hold at least the specified number of elements without needing to allocate new * internal memory. If necessary, allocates new internal memory and increases the capacity of the receiver. * * @param minCapacity the desired minimum capacity. */ public void ensureCapacity(int minCapacity) { elements = org.apache.mahout.math.Arrays.ensureCapacity(elements, minCapacity); } /** * Compares the specified Object with the receiver. Returns true if and only if the specified Object is also an * ArrayList of the same type, both Lists have the same size, and all corresponding pairs of elements in the two Lists * are identical. In other words, two Lists are defined to be equal if they contain the same elements in the same * order. * * @param otherObj the Object to be compared for equality with the receiver. * @return true if the specified Object is equal to the receiver. */ @Override @SuppressWarnings("unchecked") public boolean equals(Object otherObj) { //delta // overridden for performance only. if (!(otherObj instanceof ObjectArrayList)) { return super.equals(otherObj); } if (this == otherObj) { return true; } if (otherObj == null) { return false; } ObjectArrayList<?> other = (ObjectArrayList<?>) otherObj; if (size() != other.size()) { return false; } Object[] theElements = elements(); Object[] otherElements = other.elements(); for (int i = size(); --i >= 0;) { if (theElements[i] != otherElements[i]) { return false; } } return true; } /** * Applies a procedure to each element of the receiver, if any. Starts at index 0, moving rightwards. * * @param procedure the procedure to be applied. Stops iteration if the procedure returns <tt>false</tt>, otherwise * continues. * @return <tt>false</tt> if the procedure stopped before all elements where iterated over, <tt>true</tt> otherwise. */ @SuppressWarnings("unchecked") public boolean forEach(ObjectProcedure<T> procedure) { T[] theElements = (T[]) elements; int theSize = size; for (int i = 0; i < theSize;) { if (!procedure.apply(theElements[i++])) { return false; } } return true; } /** * Returns the element at the specified position in the receiver. * * @param index index of element to return. * @throws IndexOutOfBoundsException index is out of range (index < 0 || index >= size()). */ @SuppressWarnings("unchecked") public T get(int index) { // overridden for performance only. if (index >= size || index < 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size); } return (T) elements[index]; } /** * Returns the element at the specified position in the receiver; <b>WARNING:</b> Does not check preconditions. * Provided with invalid parameters this method may return invalid elements without throwing any exception! <b>You * should only use this method when you are absolutely sure that the index is within bounds.</b> Precondition * (unchecked): <tt>index >= 0 && index < size()</tt>. * * @param index index of element to return. */ @SuppressWarnings("unchecked") public T getQuick(int index) { return (T) elements[index]; } /** * Returns the index of the first occurrence of the specified element. Returns <code>-1</code> if the receiver does * not contain this element. Searches between <code>from</code>, inclusive and <code>to</code>, inclusive. Tests for * identity. * * @param element element to search for. * @param from the leftmost search position, inclusive. * @param to the rightmost search position, inclusive. * @return the index of the first occurrence of the element in the receiver; returns <code>-1</code> if the element is * not found. * @throws IndexOutOfBoundsException index is out of range (<tt>size()>0 && (from<0 || from>to || * to>=size())</tt>). */ public int indexOfFromTo(T element, int from, int to) { // overridden for performance only. if (size == 0) { return -1; } checkRangeFromTo(from, to, size); Object[] theElements = elements; for (int i = from; i <= to; i++) { if (element == theElements[i]) { return i; } //found } return -1; //not found } /** * Returns the index of the last occurrence of the specified element. Returns <code>-1</code> if the receiver does not * contain this element. Searches beginning at <code>to</code>, inclusive until <code>from</code>, inclusive. Tests * for identity. * * @param element element to search for. * @param from the leftmost search position, inclusive. * @param to the rightmost search position, inclusive. * @return the index of the last occurrence of the element in the receiver; returns <code>-1</code> if the element is * not found. * @throws IndexOutOfBoundsException index is out of range (<tt>size()>0 && (from<0 || from>to || * to>=size())</tt>). */ public int lastIndexOfFromTo(T element, int from, int to) { // overridden for performance only. if (size == 0) { return -1; } checkRangeFromTo(from, to, size); Object[] theElements = elements; for (int i = to; i >= from; i--) { if (element == theElements[i]) { return i; } //found } return -1; //not found } /** * Returns a new list of the part of the receiver between <code>from</code>, inclusive, and <code>to</code>, * inclusive. * * @param from the index of the first element (inclusive). * @param to the index of the last element (inclusive). * @return a new list * @throws IndexOutOfBoundsException index is out of range (<tt>size()>0 && (from<0 || from>to || * to>=size())</tt>). */ @SuppressWarnings("unchecked") public AbstractObjectList<T> partFromTo(int from, int to) { if (size == 0) { return new ObjectArrayList<T>(0); } checkRangeFromTo(from, to, size); Object[] part = new Object[to - from + 1]; System.arraycopy(elements, from, part, 0, to - from + 1); return new ObjectArrayList<T>((T[]) part); } /** Reverses the elements of the receiver. Last becomes first, second last becomes second first, and so on. */ @Override public void reverse() { // overridden for performance only. int limit = size / 2; int j = size - 1; Object[] theElements = elements; for (int i = 0; i < limit;) { //swap Object tmp = theElements[i]; theElements[i++] = theElements[j]; theElements[j--] = tmp; } } /** * Replaces the element at the specified position in the receiver with the specified element. * * @param index index of element to replace. * @param element element to be stored at the specified position. * @throws IndexOutOfBoundsException index is out of range (index < 0 || index >= size()). */ public void set(int index, T element) { // overridden for performance only. if (index >= size || index < 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size); } elements[index] = element; } /** * Replaces the element at the specified position in the receiver with the specified element; <b>WARNING:</b> Does not * check preconditions. Provided with invalid parameters this method may access invalid indexes without throwing any * exception! <b>You should only use this method when you are absolutely sure that the index is within bounds.</b> * Precondition (unchecked): <tt>index >= 0 && index < size()</tt>. * * @param index index of element to replace. * @param element element to be stored at the specified position. */ public void setQuick(int index, T element) { elements[index] = element; } /** * Trims the capacity of the receiver to be the receiver's current size. Releases any superfluous internal memory. An * application can use this operation to minimize the storage of the receiver. */ @Override public void trimToSize() { elements = org.apache.mahout.math.Arrays.trimToCapacity(elements, size()); } @Override public void removeFromTo(int fromIndex, int toIndex) { throw new UnsupportedOperationException(); } @Override public void replaceFromWith(int from, Collection<T> other) { throw new UnsupportedOperationException(); } @Override protected void beforeInsertDummies(int index, int length) { throw new UnsupportedOperationException(); } @Override public void mergeSortFromTo(int from, int to) { throw new UnsupportedOperationException(); } @Override public void quickSortFromTo(int from, int to) { throw new UnsupportedOperationException(); } @Override public int size() { return size; } }