--- jsr166/src/main/java/util/ArrayList.java 2005/11/26 04:33:04 1.5 +++ jsr166/src/main/java/util/ArrayList.java 2005/12/05 02:56:59 1.14 @@ -1,7 +1,7 @@ /* * %W% %E% * - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ @@ -189,11 +189,15 @@ public class ArrayList extends Abstra * @param minCapacity the desired minimum capacity */ private void growArray(int minCapacity) { + if (minCapacity < 0) // overflow + throw new OutOfMemoryError(); int oldCapacity = elementData.length; // Double size if small; else grow by 50% int newCapacity = ((oldCapacity < 64)? - (oldCapacity * 2): - ((oldCapacity * 3)/2 + 1)); + ((oldCapacity + 1) * 2): + ((oldCapacity / 2) * 3)); + if (newCapacity < 0) // overflow + newCapacity = Integer.MAX_VALUE; if (newCapacity < minCapacity) newCapacity = minCapacity; elementData = Arrays.copyOf(elementData, newCapacity); @@ -343,10 +347,10 @@ public class ArrayList extends Abstra // Positional Access Operations /** - * Create and return an appropriate exception for indexing errors + * Returns error message string for IndexOutOfBoundsExceptions */ - private static IndexOutOfBoundsException rangeException(int i, int s) { - return new IndexOutOfBoundsException("Index: " + i + ", Size: " + s); + private String ioobe(int index) { + return "Index: " + index + ", Size: " + size; } /** @@ -358,7 +362,7 @@ public class ArrayList extends Abstra */ public E get(int index) { if (index >= size) - throw rangeException(index, size); + throw new IndexOutOfBoundsException(ioobe(index)); return (E)elementData[index]; } @@ -373,7 +377,7 @@ public class ArrayList extends Abstra */ public E set(int index, E element) { if (index >= size) - throw rangeException(index, size); + throw new IndexOutOfBoundsException(ioobe(index)); E oldValue = (E) elementData[index]; elementData[index] = element; @@ -387,11 +391,12 @@ public class ArrayList extends Abstra * @return true (as specified by {@link Collection#add}) */ public boolean add(E e) { - ++modCount; - int s = size++; + modCount++; + int s = size; if (s >= elementData.length) growArray(s + 1); elementData[s] = e; + size = s + 1; return true; } @@ -407,14 +412,14 @@ public class ArrayList extends Abstra public void add(int index, E element) { int s = size; if (index > s || index < 0) - throw rangeException(index, s); - ++modCount; - size = s + 1; + throw new IndexOutOfBoundsException(ioobe(index)); + modCount++; if (s >= elementData.length) growArray(s + 1); - System.arraycopy(elementData, index, elementData, index + 1, - s - index); + System.arraycopy(elementData, index, + elementData, index + 1, s - index); elementData[index] = element; + size = s + 1; } /** @@ -429,16 +434,16 @@ public class ArrayList extends Abstra public E remove(int index) { int s = size - 1; if (index > s) - throw rangeException(index, size); - size = s; + throw new IndexOutOfBoundsException(ioobe(index)); modCount++; - Object oldValue = elementData[index]; + E oldValue = (E)elementData[index]; int numMoved = s - index; if (numMoved > 0) - System.arraycopy(elementData, index+1, elementData, index, - numMoved); - elementData[s] = null; // forget removed element - return (E)oldValue; + System.arraycopy(elementData, index + 1, + elementData, index, numMoved); + elementData[s] = null; + size = s; + return oldValue; } /** @@ -537,8 +542,7 @@ public class ArrayList extends Abstra */ public boolean addAll(int index, Collection c) { if (index > size || index < 0) - throw new IndexOutOfBoundsException( - "Index: " + index + ", Size: " + size); + throw new IndexOutOfBoundsException(ioobe(index)); Object[] a = c.toArray(); int numNew = a.length; @@ -600,7 +604,7 @@ public class ArrayList extends Abstra for (int i=0; i extends Abstra */ public ListIterator listIterator(int index) { if (index < 0 || index > size) - throw new IndexOutOfBoundsException("Index: "+index); + throw new IndexOutOfBoundsException(ioobe(index)); return new ArrayListIterator(index); } /** + * {@inheritDoc} + */ + public ListIterator listIterator() { + return new ArrayListIterator(0); + } + + /** * Returns an iterator over the elements in this list in proper sequence. * * @return an iterator over the elements in this list in proper sequence @@ -662,7 +673,7 @@ public class ArrayList extends Abstra } /** - * A streamlined version of AbstractList.Itr + * A streamlined version of AbstractList.ListItr */ final class ArrayListIterator implements ListIterator { int cursor; // index of next element to return; @@ -676,11 +687,11 @@ public class ArrayList extends Abstra } public boolean hasNext() { - return cursor < size; + return cursor != size; } public boolean hasPrevious() { - return cursor > 0; + return cursor != 0; } public int nextIndex() { @@ -692,46 +703,39 @@ public class ArrayList extends Abstra } public E next() { - if (expectedModCount == modCount) { + try { int i = cursor; - if (i < size) { - try { - E e = (E)elementData[i]; - lastRet = i; - cursor = i + 1; - return e; - } catch (IndexOutOfBoundsException fallthrough) { - } - } - } - // Prefer reporting CME if applicable on failures - if (expectedModCount == modCount) + E next = get(i); + lastRet = i; + cursor = i + 1; + return next; + } catch (IndexOutOfBoundsException ex) { throw new NoSuchElementException(); - throw new ConcurrentModificationException(); + } finally { + if (expectedModCount != modCount) + throw new ConcurrentModificationException(); + } } public E previous() { - if (expectedModCount == modCount) { + try { int i = cursor - 1; - if (i < size) { - try { - E e = (E)elementData[i]; - lastRet = i; - cursor = i; - return e; - } catch (IndexOutOfBoundsException fallthrough) { - } - } - } - if (expectedModCount == modCount) + E prev = get(i); + lastRet = i; + cursor = i; + return prev; + } catch (IndexOutOfBoundsException ex) { throw new NoSuchElementException(); - throw new ConcurrentModificationException(); + } finally { + if (expectedModCount != modCount) + throw new ConcurrentModificationException(); + } } public void remove() { if (lastRet < 0) throw new IllegalStateException(); - if (modCount != expectedModCount) + if (expectedModCount != modCount) throw new ConcurrentModificationException(); ArrayList.this.remove(lastRet); if (lastRet < cursor) @@ -743,19 +747,22 @@ public class ArrayList extends Abstra public void set(E e) { if (lastRet < 0) throw new IllegalStateException(); - if (modCount != expectedModCount) + if (expectedModCount != modCount) throw new ConcurrentModificationException(); ArrayList.this.set(lastRet, e); expectedModCount = modCount; } public void add(E e) { - if (modCount != expectedModCount) + if (expectedModCount != modCount) throw new ConcurrentModificationException(); - ArrayList.this.add(cursor++, e); - lastRet = -1; - expectedModCount = modCount; + try { + ArrayList.this.add(cursor++, e); + lastRet = -1; + expectedModCount = modCount; + } catch (IndexOutOfBoundsException ex) { + throw new ConcurrentModificationException(); + } } } - }