ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java
Revision: 1.74
Committed: Wed Apr 20 19:08:20 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.73: +4 -4 lines
Log Message:
Use relative URLs in last change

File Contents

# User Rev Content
1 dl 1.2 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.17 * Expert Group. Adapted and released, under explicit permission,
4 dl 1.15 * from JDK ArrayList.java which carries the following copyright:
5 dl 1.3 *
6     * Copyright 1997 by Sun Microsystems, Inc.,
7     * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
8     * All rights reserved.
9     *
10     * This software is the confidential and proprietary information
11     * of Sun Microsystems, Inc. ("Confidential Information"). You
12     * shall not disclose such Confidential Information and shall use
13     * it only in accordance with the terms of the license agreement
14     * you entered into with Sun.
15 dl 1.2 */
16    
17 tim 1.1 package java.util.concurrent;
18     import java.util.*;
19 dl 1.42 import java.util.concurrent.locks.*;
20 jsr166 1.45 import sun.misc.Unsafe;
21 tim 1.1
22     /**
23 dl 1.28 * A thread-safe variant of {@link java.util.ArrayList} in which all mutative
24 jsr166 1.35 * operations (<tt>add</tt>, <tt>set</tt>, and so on) are implemented by
25     * making a fresh copy of the underlying array.
26 tim 1.1 *
27 dl 1.26 * <p> This is ordinarily too costly, but may be <em>more</em> efficient
28 dl 1.12 * than alternatives when traversal operations vastly outnumber
29     * mutations, and is useful when you cannot or don't want to
30     * synchronize traversals, yet need to preclude interference among
31 dl 1.15 * concurrent threads. The "snapshot" style iterator method uses a
32     * reference to the state of the array at the point that the iterator
33     * was created. This array never changes during the lifetime of the
34     * iterator, so interference is impossible and the iterator is
35     * guaranteed not to throw <tt>ConcurrentModificationException</tt>.
36     * The iterator will not reflect additions, removals, or changes to
37     * the list since the iterator was created. Element-changing
38 jsr166 1.35 * operations on iterators themselves (<tt>remove</tt>, <tt>set</tt>, and
39     * <tt>add</tt>) are not supported. These methods throw
40 dl 1.15 * <tt>UnsupportedOperationException</tt>.
41 dl 1.24 *
42 jsr166 1.35 * <p>All elements are permitted, including <tt>null</tt>.
43     *
44 jsr166 1.56 * <p>Memory consistency effects: As with other concurrent
45     * collections, actions in a thread prior to placing an object into a
46     * {@code CopyOnWriteArrayList}
47     * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
48     * actions subsequent to the access or removal of that element from
49     * the {@code CopyOnWriteArrayList} in another thread.
50     *
51 dl 1.24 * <p>This class is a member of the
52 jsr166 1.64 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
53 dl 1.24 * Java Collections Framework</a>.
54     *
55 dl 1.6 * @since 1.5
56     * @author Doug Lea
57 dl 1.19 * @param <E> the type of elements held in this collection
58 dl 1.6 */
59 tim 1.1 public class CopyOnWriteArrayList<E>
60 dl 1.40 implements List<E>, RandomAccess, Cloneable, java.io.Serializable {
61 dl 1.11 private static final long serialVersionUID = 8673264195747942595L;
62 tim 1.1
63 dl 1.42 /** The lock protecting all mutators */
64     transient final ReentrantLock lock = new ReentrantLock();
65    
66 dl 1.40 /** The array, accessed only via getArray/setArray. */
67 dl 1.41 private volatile transient Object[] array;
68 tim 1.1
69 dl 1.57 /**
70 jsr166 1.60 * Gets the array. Non-private so as to also be accessible
71     * from CopyOnWriteArraySet class.
72 dl 1.57 */
73 jsr166 1.63 final Object[] getArray() {
74 jsr166 1.59 return array;
75 dl 1.57 }
76    
77     /**
78 jsr166 1.60 * Sets the array.
79 dl 1.57 */
80 jsr166 1.59 final void setArray(Object[] a) {
81     array = a;
82 dl 1.57 }
83 tim 1.1
84     /**
85 dl 1.15 * Creates an empty list.
86 tim 1.1 */
87     public CopyOnWriteArrayList() {
88 dl 1.41 setArray(new Object[0]);
89 tim 1.1 }
90    
91     /**
92 dl 1.15 * Creates a list containing the elements of the specified
93 jsr166 1.32 * collection, in the order they are returned by the collection's
94 tim 1.1 * iterator.
95 jsr166 1.32 *
96 dl 1.6 * @param c the collection of initially held elements
97 jsr166 1.35 * @throws NullPointerException if the specified collection is null
98 tim 1.1 */
99 tim 1.22 public CopyOnWriteArrayList(Collection<? extends E> c) {
100 jsr166 1.67 Object[] elements = c.toArray();
101     // c.toArray might (incorrectly) not return Object[] (see 6260652)
102     if (elements.getClass() != Object[].class)
103     elements = Arrays.copyOf(elements, elements.length, Object[].class);
104     setArray(elements);
105 tim 1.1 }
106    
107     /**
108 jsr166 1.35 * Creates a list holding a copy of the given array.
109 tim 1.9 *
110     * @param toCopyIn the array (a copy of this array is used as the
111     * internal array)
112 jsr166 1.38 * @throws NullPointerException if the specified array is null
113 jsr166 1.30 */
114 tim 1.1 public CopyOnWriteArrayList(E[] toCopyIn) {
115 jsr166 1.67 setArray(Arrays.copyOf(toCopyIn, toCopyIn.length, Object[].class));
116 tim 1.1 }
117    
118     /**
119 dl 1.15 * Returns the number of elements in this list.
120 tim 1.1 *
121 jsr166 1.35 * @return the number of elements in this list
122 tim 1.1 */
123     public int size() {
124 dl 1.40 return getArray().length;
125 tim 1.1 }
126    
127     /**
128 jsr166 1.35 * Returns <tt>true</tt> if this list contains no elements.
129 tim 1.1 *
130 jsr166 1.35 * @return <tt>true</tt> if this list contains no elements
131 tim 1.1 */
132     public boolean isEmpty() {
133     return size() == 0;
134     }
135    
136 dl 1.43 /**
137     * Test for equality, coping with nulls.
138     */
139     private static boolean eq(Object o1, Object o2) {
140     return (o1 == null ? o2 == null : o1.equals(o2));
141     }
142    
143 dl 1.41 /**
144 dl 1.40 * static version of indexOf, to allow repeated calls without
145 dl 1.41 * needing to re-acquire array each time.
146 dl 1.40 * @param o element to search for
147     * @param elements the array
148     * @param index first index to search
149     * @param fence one past last index to search
150     * @return index of element, or -1 if absent
151     */
152 dl 1.41 private static int indexOf(Object o, Object[] elements,
153 dl 1.40 int index, int fence) {
154     if (o == null) {
155     for (int i = index; i < fence; i++)
156     if (elements[i] == null)
157     return i;
158     } else {
159     for (int i = index; i < fence; i++)
160     if (o.equals(elements[i]))
161     return i;
162     }
163     return -1;
164     }
165 dl 1.41
166     /**
167 dl 1.40 * static version of lastIndexOf.
168     * @param o element to search for
169     * @param elements the array
170     * @param index first index to search
171     * @return index of element, or -1 if absent
172     */
173     private static int lastIndexOf(Object o, Object[] elements, int index) {
174     if (o == null) {
175     for (int i = index; i >= 0; i--)
176     if (elements[i] == null)
177     return i;
178     } else {
179     for (int i = index; i >= 0; i--)
180     if (o.equals(elements[i]))
181     return i;
182     }
183     return -1;
184     }
185    
186 tim 1.1 /**
187 dl 1.15 * Returns <tt>true</tt> if this list contains the specified element.
188 jsr166 1.35 * More formally, returns <tt>true</tt> if and only if this list contains
189     * at least one element <tt>e</tt> such that
190     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
191 tim 1.1 *
192 jsr166 1.35 * @param o element whose presence in this list is to be tested
193     * @return <tt>true</tt> if this list contains the specified element
194 tim 1.1 */
195 jsr166 1.35 public boolean contains(Object o) {
196 dl 1.41 Object[] elements = getArray();
197 dl 1.40 return indexOf(o, elements, 0, elements.length) >= 0;
198 tim 1.1 }
199    
200     /**
201 jsr166 1.35 * {@inheritDoc}
202 tim 1.1 */
203 jsr166 1.35 public int indexOf(Object o) {
204 dl 1.41 Object[] elements = getArray();
205 dl 1.40 return indexOf(o, elements, 0, elements.length);
206 tim 1.1 }
207    
208     /**
209 jsr166 1.35 * Returns the index of the first occurrence of the specified element in
210     * this list, searching forwards from <tt>index</tt>, or returns -1 if
211     * the element is not found.
212     * More formally, returns the lowest index <tt>i</tt> such that
213     * <tt>(i&nbsp;&gt;=&nbsp;index&nbsp;&amp;&amp;&nbsp;(e==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;e.equals(get(i))))</tt>,
214     * or -1 if there is no such index.
215     *
216     * @param e element to search for
217     * @param index index to start searching from
218     * @return the index of the first occurrence of the element in
219     * this list at position <tt>index</tt> or later in the list;
220     * <tt>-1</tt> if the element is not found.
221     * @throws IndexOutOfBoundsException if the specified index is negative
222 tim 1.1 */
223 jsr166 1.35 public int indexOf(E e, int index) {
224 dl 1.41 Object[] elements = getArray();
225 jsr166 1.67 return indexOf(e, elements, index, elements.length);
226 tim 1.1 }
227    
228     /**
229 jsr166 1.35 * {@inheritDoc}
230 tim 1.1 */
231 jsr166 1.35 public int lastIndexOf(Object o) {
232 dl 1.41 Object[] elements = getArray();
233 dl 1.40 return lastIndexOf(o, elements, elements.length - 1);
234 tim 1.1 }
235    
236     /**
237 jsr166 1.35 * Returns the index of the last occurrence of the specified element in
238     * this list, searching backwards from <tt>index</tt>, or returns -1 if
239     * the element is not found.
240     * More formally, returns the highest index <tt>i</tt> such that
241     * <tt>(i&nbsp;&lt;=&nbsp;index&nbsp;&amp;&amp;&nbsp;(e==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;e.equals(get(i))))</tt>,
242     * or -1 if there is no such index.
243     *
244     * @param e element to search for
245     * @param index index to start searching backwards from
246     * @return the index of the last occurrence of the element at position
247     * less than or equal to <tt>index</tt> in this list;
248     * -1 if the element is not found.
249     * @throws IndexOutOfBoundsException if the specified index is greater
250     * than or equal to the current size of this list
251 tim 1.1 */
252 jsr166 1.35 public int lastIndexOf(E e, int index) {
253 dl 1.41 Object[] elements = getArray();
254 jsr166 1.67 return lastIndexOf(e, elements, index);
255 tim 1.1 }
256    
257     /**
258     * Returns a shallow copy of this list. (The elements themselves
259     * are not copied.)
260     *
261 jsr166 1.35 * @return a clone of this list
262 tim 1.1 */
263     public Object clone() {
264     try {
265 dl 1.52 CopyOnWriteArrayList c = (CopyOnWriteArrayList)(super.clone());
266     c.resetLock();
267     return c;
268 tim 1.1 } catch (CloneNotSupportedException e) {
269     // this shouldn't happen, since we are Cloneable
270     throw new InternalError();
271     }
272     }
273    
274     /**
275     * Returns an array containing all of the elements in this list
276 jsr166 1.35 * in proper sequence (from first to last element).
277     *
278     * <p>The returned array will be "safe" in that no references to it are
279     * maintained by this list. (In other words, this method must allocate
280     * a new array). The caller is thus free to modify the returned array.
281 jsr166 1.36 *
282 jsr166 1.35 * <p>This method acts as bridge between array-based and collection-based
283     * APIs.
284     *
285     * @return an array containing all the elements in this list
286 tim 1.1 */
287     public Object[] toArray() {
288 dl 1.40 Object[] elements = getArray();
289 jsr166 1.67 return Arrays.copyOf(elements, elements.length);
290 tim 1.1 }
291    
292     /**
293 jsr166 1.35 * Returns an array containing all of the elements in this list in
294     * proper sequence (from first to last element); the runtime type of
295     * the returned array is that of the specified array. If the list fits
296     * in the specified array, it is returned therein. Otherwise, a new
297     * array is allocated with the runtime type of the specified array and
298     * the size of this list.
299 jsr166 1.32 *
300     * <p>If this list fits in the specified array with room to spare
301 jsr166 1.35 * (i.e., the array has more elements than this list), the element in
302     * the array immediately following the end of the list is set to
303     * <tt>null</tt>. (This is useful in determining the length of this
304     * list <i>only</i> if the caller knows that this list does not contain
305     * any null elements.)
306     *
307     * <p>Like the {@link #toArray()} method, this method acts as bridge between
308     * array-based and collection-based APIs. Further, this method allows
309     * precise control over the runtime type of the output array, and may,
310     * under certain circumstances, be used to save allocation costs.
311     *
312     * <p>Suppose <tt>x</tt> is a list known to contain only strings.
313     * The following code can be used to dump the list into a newly
314     * allocated array of <tt>String</tt>:
315     *
316     * <pre>
317     * String[] y = x.toArray(new String[0]);</pre>
318     *
319     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
320     * <tt>toArray()</tt>.
321 tim 1.1 *
322     * @param a the array into which the elements of the list are to
323 jsr166 1.35 * be stored, if it is big enough; otherwise, a new array of the
324     * same runtime type is allocated for this purpose.
325     * @return an array containing all the elements in this list
326     * @throws ArrayStoreException if the runtime type of the specified array
327     * is not a supertype of the runtime type of every element in
328     * this list
329     * @throws NullPointerException if the specified array is null
330 tim 1.1 */
331 jsr166 1.66 @SuppressWarnings("unchecked")
332 tim 1.1 public <T> T[] toArray(T a[]) {
333 dl 1.41 Object[] elements = getArray();
334 dl 1.40 int len = elements.length;
335     if (a.length < len)
336 jsr166 1.67 return (T[]) Arrays.copyOf(elements, len, a.getClass());
337     else {
338     System.arraycopy(elements, 0, a, 0, len);
339     if (a.length > len)
340     a[len] = null;
341     return a;
342     }
343 tim 1.1 }
344    
345     // Positional Access Operations
346    
347 jsr166 1.66 @SuppressWarnings("unchecked")
348     private E get(Object[] a, int index) {
349 jsr166 1.67 return (E) a[index];
350 jsr166 1.66 }
351    
352 tim 1.1 /**
353 jsr166 1.35 * {@inheritDoc}
354 tim 1.1 *
355 jsr166 1.35 * @throws IndexOutOfBoundsException {@inheritDoc}
356 tim 1.1 */
357     public E get(int index) {
358 jsr166 1.66 return get(getArray(), index);
359 tim 1.1 }
360    
361     /**
362 jsr166 1.35 * Replaces the element at the specified position in this list with the
363     * specified element.
364 tim 1.1 *
365 jsr166 1.35 * @throws IndexOutOfBoundsException {@inheritDoc}
366 tim 1.1 */
367 dl 1.42 public E set(int index, E element) {
368 jsr166 1.67 final ReentrantLock lock = this.lock;
369     lock.lock();
370     try {
371     Object[] elements = getArray();
372     E oldValue = get(elements, index);
373    
374     if (oldValue != element) {
375     int len = elements.length;
376     Object[] newElements = Arrays.copyOf(elements, len);
377     newElements[index] = element;
378     setArray(newElements);
379     } else {
380     // Not quite a no-op; ensures volatile write semantics
381     setArray(elements);
382     }
383     return oldValue;
384     } finally {
385     lock.unlock();
386     }
387 tim 1.1 }
388    
389     /**
390     * Appends the specified element to the end of this list.
391     *
392 dl 1.40 * @param e element to be appended to this list
393 jsr166 1.49 * @return <tt>true</tt> (as specified by {@link Collection#add})
394 tim 1.1 */
395 dl 1.42 public boolean add(E e) {
396 jsr166 1.67 final ReentrantLock lock = this.lock;
397     lock.lock();
398     try {
399     Object[] elements = getArray();
400     int len = elements.length;
401     Object[] newElements = Arrays.copyOf(elements, len + 1);
402     newElements[len] = e;
403     setArray(newElements);
404     return true;
405     } finally {
406     lock.unlock();
407     }
408 tim 1.1 }
409    
410     /**
411     * Inserts the specified element at the specified position in this
412     * list. Shifts the element currently at that position (if any) and
413     * any subsequent elements to the right (adds one to their indices).
414     *
415 jsr166 1.35 * @throws IndexOutOfBoundsException {@inheritDoc}
416 tim 1.1 */
417 dl 1.42 public void add(int index, E element) {
418 jsr166 1.67 final ReentrantLock lock = this.lock;
419     lock.lock();
420     try {
421     Object[] elements = getArray();
422     int len = elements.length;
423     if (index > len || index < 0)
424     throw new IndexOutOfBoundsException("Index: "+index+
425     ", Size: "+len);
426     Object[] newElements;
427     int numMoved = len - index;
428     if (numMoved == 0)
429     newElements = Arrays.copyOf(elements, len + 1);
430     else {
431     newElements = new Object[len + 1];
432     System.arraycopy(elements, 0, newElements, 0, index);
433     System.arraycopy(elements, index, newElements, index + 1,
434     numMoved);
435     }
436     newElements[index] = element;
437     setArray(newElements);
438     } finally {
439     lock.unlock();
440     }
441 tim 1.1 }
442    
443     /**
444     * Removes the element at the specified position in this list.
445     * Shifts any subsequent elements to the left (subtracts one from their
446 jsr166 1.35 * indices). Returns the element that was removed from the list.
447 tim 1.1 *
448 jsr166 1.35 * @throws IndexOutOfBoundsException {@inheritDoc}
449 tim 1.1 */
450 dl 1.42 public E remove(int index) {
451 jsr166 1.67 final ReentrantLock lock = this.lock;
452     lock.lock();
453     try {
454     Object[] elements = getArray();
455     int len = elements.length;
456     E oldValue = get(elements, index);
457     int numMoved = len - index - 1;
458     if (numMoved == 0)
459     setArray(Arrays.copyOf(elements, len - 1));
460     else {
461     Object[] newElements = new Object[len - 1];
462     System.arraycopy(elements, 0, newElements, 0, index);
463     System.arraycopy(elements, index + 1, newElements, index,
464     numMoved);
465     setArray(newElements);
466     }
467     return oldValue;
468     } finally {
469     lock.unlock();
470     }
471 tim 1.1 }
472    
473     /**
474 jsr166 1.35 * Removes the first occurrence of the specified element from this list,
475     * if it is present. If this list does not contain the element, it is
476     * unchanged. More formally, removes the element with the lowest index
477     * <tt>i</tt> such that
478     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
479     * (if such an element exists). Returns <tt>true</tt> if this list
480     * contained the specified element (or equivalently, if this list
481     * changed as a result of the call).
482 tim 1.1 *
483 jsr166 1.35 * @param o element to be removed from this list, if present
484     * @return <tt>true</tt> if this list contained the specified element
485 tim 1.1 */
486 dl 1.42 public boolean remove(Object o) {
487 jsr166 1.67 final ReentrantLock lock = this.lock;
488     lock.lock();
489     try {
490     Object[] elements = getArray();
491     int len = elements.length;
492     if (len != 0) {
493     // Copy while searching for element to remove
494     // This wins in the normal case of element being present
495     int newlen = len - 1;
496     Object[] newElements = new Object[newlen];
497    
498     for (int i = 0; i < newlen; ++i) {
499     if (eq(o, elements[i])) {
500     // found one; copy remaining and exit
501     for (int k = i + 1; k < len; ++k)
502     newElements[k-1] = elements[k];
503     setArray(newElements);
504     return true;
505     } else
506     newElements[i] = elements[i];
507     }
508    
509     // special handling for last cell
510     if (eq(o, elements[newlen])) {
511     setArray(newElements);
512     return true;
513     }
514     }
515     return false;
516     } finally {
517     lock.unlock();
518     }
519 tim 1.1 }
520    
521     /**
522 jsr166 1.35 * Removes from this list all of the elements whose index is between
523     * <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.
524     * Shifts any succeeding elements to the left (reduces their index).
525 dl 1.15 * This call shortens the list by <tt>(toIndex - fromIndex)</tt> elements.
526     * (If <tt>toIndex==fromIndex</tt>, this operation has no effect.)
527 tim 1.1 *
528 jsr166 1.35 * @param fromIndex index of first element to be removed
529     * @param toIndex index after last element to be removed
530 jsr166 1.66 * @throws IndexOutOfBoundsException if fromIndex or toIndex out of range
531 jsr166 1.69 * ({@code{fromIndex < 0 || toIndex > size() || toIndex < fromIndex})
532 tim 1.1 */
533 dl 1.42 private void removeRange(int fromIndex, int toIndex) {
534 jsr166 1.67 final ReentrantLock lock = this.lock;
535     lock.lock();
536     try {
537     Object[] elements = getArray();
538     int len = elements.length;
539    
540     if (fromIndex < 0 || toIndex > len || toIndex < fromIndex)
541     throw new IndexOutOfBoundsException();
542     int newlen = len - (toIndex - fromIndex);
543     int numMoved = len - toIndex;
544     if (numMoved == 0)
545     setArray(Arrays.copyOf(elements, newlen));
546     else {
547     Object[] newElements = new Object[newlen];
548     System.arraycopy(elements, 0, newElements, 0, fromIndex);
549     System.arraycopy(elements, toIndex, newElements,
550     fromIndex, numMoved);
551     setArray(newElements);
552     }
553     } finally {
554     lock.unlock();
555     }
556 tim 1.1 }
557    
558     /**
559     * Append the element if not present.
560 jsr166 1.38 *
561 dl 1.40 * @param e element to be added to this list, if absent
562 jsr166 1.38 * @return <tt>true</tt> if the element was added
563 jsr166 1.30 */
564 dl 1.42 public boolean addIfAbsent(E e) {
565 jsr166 1.67 final ReentrantLock lock = this.lock;
566     lock.lock();
567     try {
568     // Copy while checking if already present.
569     // This wins in the most common case where it is not present
570     Object[] elements = getArray();
571     int len = elements.length;
572     Object[] newElements = new Object[len + 1];
573     for (int i = 0; i < len; ++i) {
574     if (eq(e, elements[i]))
575     return false; // exit, throwing away copy
576     else
577     newElements[i] = elements[i];
578     }
579     newElements[len] = e;
580     setArray(newElements);
581     return true;
582     } finally {
583     lock.unlock();
584     }
585 tim 1.1 }
586    
587     /**
588 jsr166 1.35 * Returns <tt>true</tt> if this list contains all of the elements of the
589 jsr166 1.32 * specified collection.
590 jsr166 1.34 *
591 jsr166 1.36 * @param c collection to be checked for containment in this list
592 jsr166 1.35 * @return <tt>true</tt> if this list contains all of the elements of the
593     * specified collection
594     * @throws NullPointerException if the specified collection is null
595 jsr166 1.38 * @see #contains(Object)
596 tim 1.1 */
597 tim 1.7 public boolean containsAll(Collection<?> c) {
598 dl 1.41 Object[] elements = getArray();
599 dl 1.40 int len = elements.length;
600 jsr166 1.67 for (Object e : c) {
601 dl 1.41 if (indexOf(e, elements, 0, len) < 0)
602 tim 1.1 return false;
603 jsr166 1.67 }
604 tim 1.1 return true;
605     }
606    
607     /**
608 jsr166 1.32 * Removes from this list all of its elements that are contained in
609     * the specified collection. This is a particularly expensive operation
610 tim 1.1 * in this class because of the need for an internal temporary array.
611     *
612 jsr166 1.35 * @param c collection containing elements to be removed from this list
613     * @return <tt>true</tt> if this list changed as a result of the call
614 jsr166 1.38 * @throws ClassCastException if the class of an element of this list
615 dl 1.73 * is incompatible with the specified collection
616 dl 1.74 * (<a href="../Collection.html#optional-restrictions">optional</a>)
617 jsr166 1.38 * @throws NullPointerException if this list contains a null element and the
618 dl 1.73 * specified collection does not permit null elements
619 dl 1.74 * (<a href="../Collection.html#optional-restrictions">optional</a>)
620 jsr166 1.38 * or if the specified collection is null
621     * @see #remove(Object)
622 tim 1.1 */
623 dl 1.42 public boolean removeAll(Collection<?> c) {
624 jsr166 1.67 final ReentrantLock lock = this.lock;
625     lock.lock();
626     try {
627     Object[] elements = getArray();
628     int len = elements.length;
629     if (len != 0) {
630     // temp array holds those elements we know we want to keep
631     int newlen = 0;
632     Object[] temp = new Object[len];
633     for (int i = 0; i < len; ++i) {
634     Object element = elements[i];
635     if (!c.contains(element))
636     temp[newlen++] = element;
637     }
638     if (newlen != len) {
639     setArray(Arrays.copyOf(temp, newlen));
640     return true;
641     }
642     }
643     return false;
644     } finally {
645     lock.unlock();
646     }
647 tim 1.1 }
648    
649     /**
650 jsr166 1.32 * Retains only the elements in this list that are contained in the
651 jsr166 1.35 * specified collection. In other words, removes from this list all of
652     * its elements that are not contained in the specified collection.
653 jsr166 1.32 *
654 jsr166 1.35 * @param c collection containing elements to be retained in this list
655     * @return <tt>true</tt> if this list changed as a result of the call
656 jsr166 1.38 * @throws ClassCastException if the class of an element of this list
657 dl 1.73 * is incompatible with the specified collection
658 dl 1.74 * (<a href="../Collection.html#optional-restrictions">optional</a>)
659 jsr166 1.38 * @throws NullPointerException if this list contains a null element and the
660 dl 1.73 * specified collection does not permit null elements
661 dl 1.74 * (<a href="../Collection.html#optional-restrictions">optional</a>)
662 jsr166 1.38 * or if the specified collection is null
663     * @see #remove(Object)
664 tim 1.1 */
665 dl 1.42 public boolean retainAll(Collection<?> c) {
666 jsr166 1.67 final ReentrantLock lock = this.lock;
667     lock.lock();
668     try {
669     Object[] elements = getArray();
670     int len = elements.length;
671     if (len != 0) {
672     // temp array holds those elements we know we want to keep
673     int newlen = 0;
674     Object[] temp = new Object[len];
675     for (int i = 0; i < len; ++i) {
676     Object element = elements[i];
677     if (c.contains(element))
678     temp[newlen++] = element;
679     }
680     if (newlen != len) {
681     setArray(Arrays.copyOf(temp, newlen));
682     return true;
683     }
684     }
685     return false;
686     } finally {
687     lock.unlock();
688     }
689 tim 1.1 }
690    
691     /**
692 jsr166 1.32 * Appends all of the elements in the specified collection that
693 tim 1.1 * are not already contained in this list, to the end of
694     * this list, in the order that they are returned by the
695 jsr166 1.32 * specified collection's iterator.
696 tim 1.1 *
697 jsr166 1.36 * @param c collection containing elements to be added to this list
698 tim 1.1 * @return the number of elements added
699 jsr166 1.35 * @throws NullPointerException if the specified collection is null
700 jsr166 1.38 * @see #addIfAbsent(Object)
701 tim 1.1 */
702 dl 1.42 public int addAllAbsent(Collection<? extends E> c) {
703 jsr166 1.67 Object[] cs = c.toArray();
704     if (cs.length == 0)
705     return 0;
706     Object[] uniq = new Object[cs.length];
707     final ReentrantLock lock = this.lock;
708     lock.lock();
709     try {
710     Object[] elements = getArray();
711     int len = elements.length;
712     int added = 0;
713     for (int i = 0; i < cs.length; ++i) { // scan for duplicates
714     Object e = cs[i];
715     if (indexOf(e, elements, 0, len) < 0 &&
716     indexOf(e, uniq, 0, added) < 0)
717     uniq[added++] = e;
718     }
719     if (added > 0) {
720     Object[] newElements = Arrays.copyOf(elements, len + added);
721     System.arraycopy(uniq, 0, newElements, len, added);
722     setArray(newElements);
723     }
724     return added;
725     } finally {
726     lock.unlock();
727     }
728 tim 1.1 }
729    
730     /**
731     * Removes all of the elements from this list.
732 jsr166 1.38 * The list will be empty after this call returns.
733 tim 1.1 */
734 dl 1.42 public void clear() {
735 jsr166 1.67 final ReentrantLock lock = this.lock;
736     lock.lock();
737     try {
738     setArray(new Object[0]);
739     } finally {
740     lock.unlock();
741     }
742 tim 1.1 }
743    
744     /**
745 jsr166 1.32 * Appends all of the elements in the specified collection to the end
746     * of this list, in the order that they are returned by the specified
747     * collection's iterator.
748 tim 1.1 *
749 jsr166 1.36 * @param c collection containing elements to be added to this list
750 jsr166 1.38 * @return <tt>true</tt> if this list changed as a result of the call
751 jsr166 1.35 * @throws NullPointerException if the specified collection is null
752 jsr166 1.38 * @see #add(Object)
753 tim 1.1 */
754 dl 1.42 public boolean addAll(Collection<? extends E> c) {
755 jsr166 1.67 Object[] cs = c.toArray();
756     if (cs.length == 0)
757     return false;
758     final ReentrantLock lock = this.lock;
759     lock.lock();
760     try {
761     Object[] elements = getArray();
762     int len = elements.length;
763     Object[] newElements = Arrays.copyOf(elements, len + cs.length);
764     System.arraycopy(cs, 0, newElements, len, cs.length);
765     setArray(newElements);
766     return true;
767     } finally {
768     lock.unlock();
769     }
770 tim 1.1 }
771    
772     /**
773 jsr166 1.35 * Inserts all of the elements in the specified collection into this
774 tim 1.1 * list, starting at the specified position. Shifts the element
775     * currently at that position (if any) and any subsequent elements to
776     * the right (increases their indices). The new elements will appear
777 jsr166 1.38 * in this list in the order that they are returned by the
778     * specified collection's iterator.
779 tim 1.1 *
780 jsr166 1.35 * @param index index at which to insert the first element
781     * from the specified collection
782 jsr166 1.36 * @param c collection containing elements to be added to this list
783 jsr166 1.35 * @return <tt>true</tt> if this list changed as a result of the call
784     * @throws IndexOutOfBoundsException {@inheritDoc}
785     * @throws NullPointerException if the specified collection is null
786 jsr166 1.38 * @see #add(int,Object)
787 tim 1.1 */
788 dl 1.42 public boolean addAll(int index, Collection<? extends E> c) {
789 jsr166 1.67 Object[] cs = c.toArray();
790     final ReentrantLock lock = this.lock;
791     lock.lock();
792     try {
793     Object[] elements = getArray();
794     int len = elements.length;
795     if (index > len || index < 0)
796     throw new IndexOutOfBoundsException("Index: "+index+
797     ", Size: "+len);
798     if (cs.length == 0)
799     return false;
800     int numMoved = len - index;
801     Object[] newElements;
802     if (numMoved == 0)
803     newElements = Arrays.copyOf(elements, len + cs.length);
804     else {
805     newElements = new Object[len + cs.length];
806     System.arraycopy(elements, 0, newElements, 0, index);
807     System.arraycopy(elements, index,
808     newElements, index + cs.length,
809     numMoved);
810     }
811     System.arraycopy(cs, 0, newElements, index, cs.length);
812     setArray(newElements);
813     return true;
814     } finally {
815     lock.unlock();
816     }
817 tim 1.1 }
818    
819     /**
820 jsr166 1.70 * Saves the state of the list to a stream (that is, serializes it).
821 tim 1.1 *
822     * @serialData The length of the array backing the list is emitted
823     * (int), followed by all of its elements (each an Object)
824     * in the proper order.
825 dl 1.6 * @param s the stream
826 tim 1.1 */
827     private void writeObject(java.io.ObjectOutputStream s)
828     throws java.io.IOException{
829    
830     s.defaultWriteObject();
831    
832 dl 1.41 Object[] elements = getArray();
833 tim 1.1 // Write out array length
834 jsr166 1.71 s.writeInt(elements.length);
835 tim 1.1
836     // Write out all elements in the proper order.
837 jsr166 1.71 for (Object element : elements)
838     s.writeObject(element);
839 tim 1.1 }
840    
841     /**
842 jsr166 1.70 * Reconstitutes the list from a stream (that is, deserializes it).
843     *
844 dl 1.6 * @param s the stream
845 tim 1.1 */
846 dl 1.12 private void readObject(java.io.ObjectInputStream s)
847 tim 1.1 throws java.io.IOException, ClassNotFoundException {
848    
849     s.defaultReadObject();
850    
851 dl 1.42 // bind to new lock
852     resetLock();
853    
854 tim 1.1 // Read in array length and allocate array
855 dl 1.40 int len = s.readInt();
856 dl 1.41 Object[] elements = new Object[len];
857 tim 1.1
858     // Read in all elements in the proper order.
859 dl 1.40 for (int i = 0; i < len; i++)
860 dl 1.41 elements[i] = s.readObject();
861 dl 1.40 setArray(elements);
862 tim 1.1 }
863    
864     /**
865 jsr166 1.55 * Returns a string representation of this list. The string
866     * representation consists of the string representations of the list's
867     * elements in the order they are returned by its iterator, enclosed in
868     * square brackets (<tt>"[]"</tt>). Adjacent elements are separated by
869     * the characters <tt>", "</tt> (comma and space). Elements are
870     * converted to strings as by {@link String#valueOf(Object)}.
871     *
872     * @return a string representation of this list
873 tim 1.1 */
874     public String toString() {
875 jsr166 1.67 return Arrays.toString(getArray());
876 tim 1.1 }
877    
878     /**
879 jsr166 1.35 * Compares the specified object with this list for equality.
880 jsr166 1.60 * Returns {@code true} if the specified object is the same object
881     * as this object, or if it is also a {@link List} and the sequence
882     * of elements returned by an {@linkplain List#iterator() iterator}
883     * over the specified list is the same as the sequence returned by
884     * an iterator over this list. The two sequences are considered to
885     * be the same if they have the same length and corresponding
886     * elements at the same position in the sequence are <em>equal</em>.
887     * Two elements {@code e1} and {@code e2} are considered
888     * <em>equal</em> if {@code (e1==null ? e2==null : e1.equals(e2))}.
889 tim 1.1 *
890 jsr166 1.35 * @param o the object to be compared for equality with this list
891 jsr166 1.60 * @return {@code true} if the specified object is equal to this list
892 tim 1.1 */
893     public boolean equals(Object o) {
894     if (o == this)
895     return true;
896     if (!(o instanceof List))
897     return false;
898    
899 dl 1.57 List<?> list = (List<?>)(o);
900 jsr166 1.67 Iterator<?> it = list.iterator();
901     Object[] elements = getArray();
902     int len = elements.length;
903 jsr166 1.60 for (int i = 0; i < len; ++i)
904     if (!it.hasNext() || !eq(elements[i], it.next()))
905 dl 1.57 return false;
906 jsr166 1.60 if (it.hasNext())
907 tim 1.1 return false;
908     return true;
909     }
910    
911     /**
912 jsr166 1.35 * Returns the hash code value for this list.
913 dl 1.26 *
914 jsr166 1.47 * <p>This implementation uses the definition in {@link List#hashCode}.
915     *
916     * @return the hash code value for this list
917 tim 1.1 */
918     public int hashCode() {
919     int hashCode = 1;
920 jsr166 1.67 Object[] elements = getArray();
921     int len = elements.length;
922     for (int i = 0; i < len; ++i) {
923     Object obj = elements[i];
924 jsr166 1.45 hashCode = 31*hashCode + (obj==null ? 0 : obj.hashCode());
925 tim 1.1 }
926     return hashCode;
927     }
928    
929     /**
930 jsr166 1.35 * Returns an iterator over the elements in this list in proper sequence.
931     *
932     * <p>The returned iterator provides a snapshot of the state of the list
933     * when the iterator was constructed. No synchronization is needed while
934     * traversing the iterator. The iterator does <em>NOT</em> support the
935     * <tt>remove</tt> method.
936     *
937     * @return an iterator over the elements in this list in proper sequence
938 tim 1.1 */
939     public Iterator<E> iterator() {
940 dl 1.40 return new COWIterator<E>(getArray(), 0);
941 tim 1.1 }
942    
943     /**
944 jsr166 1.35 * {@inheritDoc}
945 tim 1.1 *
946 jsr166 1.35 * <p>The returned iterator provides a snapshot of the state of the list
947     * when the iterator was constructed. No synchronization is needed while
948     * traversing the iterator. The iterator does <em>NOT</em> support the
949     * <tt>remove</tt>, <tt>set</tt> or <tt>add</tt> methods.
950 tim 1.1 */
951     public ListIterator<E> listIterator() {
952 dl 1.40 return new COWIterator<E>(getArray(), 0);
953 tim 1.1 }
954    
955     /**
956 jsr166 1.35 * {@inheritDoc}
957     *
958 jsr166 1.50 * <p>The returned iterator provides a snapshot of the state of the list
959     * when the iterator was constructed. No synchronization is needed while
960     * traversing the iterator. The iterator does <em>NOT</em> support the
961     * <tt>remove</tt>, <tt>set</tt> or <tt>add</tt> methods.
962 jsr166 1.35 *
963     * @throws IndexOutOfBoundsException {@inheritDoc}
964 tim 1.1 */
965     public ListIterator<E> listIterator(final int index) {
966 dl 1.41 Object[] elements = getArray();
967 dl 1.40 int len = elements.length;
968 jsr166 1.45 if (index<0 || index>len)
969     throw new IndexOutOfBoundsException("Index: "+index);
970 tim 1.1
971 dl 1.48 return new COWIterator<E>(elements, index);
972 tim 1.1 }
973    
974     private static class COWIterator<E> implements ListIterator<E> {
975 jsr166 1.68 /** Snapshot of the array */
976 dl 1.41 private final Object[] snapshot;
977 dl 1.40 /** Index of element to be returned by subsequent call to next. */
978 tim 1.1 private int cursor;
979    
980 dl 1.41 private COWIterator(Object[] elements, int initialCursor) {
981 tim 1.1 cursor = initialCursor;
982 dl 1.40 snapshot = elements;
983 tim 1.1 }
984    
985     public boolean hasNext() {
986 dl 1.40 return cursor < snapshot.length;
987 tim 1.1 }
988    
989     public boolean hasPrevious() {
990     return cursor > 0;
991     }
992    
993 jsr166 1.67 @SuppressWarnings("unchecked")
994 tim 1.1 public E next() {
995 jsr166 1.67 if (! hasNext())
996 tim 1.1 throw new NoSuchElementException();
997 jsr166 1.67 return (E) snapshot[cursor++];
998 tim 1.1 }
999    
1000 jsr166 1.67 @SuppressWarnings("unchecked")
1001 tim 1.1 public E previous() {
1002 jsr166 1.67 if (! hasPrevious())
1003 tim 1.1 throw new NoSuchElementException();
1004 jsr166 1.67 return (E) snapshot[--cursor];
1005 tim 1.1 }
1006    
1007     public int nextIndex() {
1008     return cursor;
1009     }
1010    
1011     public int previousIndex() {
1012 jsr166 1.45 return cursor-1;
1013 tim 1.1 }
1014    
1015     /**
1016     * Not supported. Always throws UnsupportedOperationException.
1017 jsr166 1.32 * @throws UnsupportedOperationException always; <tt>remove</tt>
1018     * is not supported by this iterator.
1019 tim 1.1 */
1020     public void remove() {
1021     throw new UnsupportedOperationException();
1022     }
1023    
1024     /**
1025     * Not supported. Always throws UnsupportedOperationException.
1026 jsr166 1.32 * @throws UnsupportedOperationException always; <tt>set</tt>
1027     * is not supported by this iterator.
1028 tim 1.1 */
1029 jsr166 1.33 public void set(E e) {
1030 tim 1.1 throw new UnsupportedOperationException();
1031     }
1032    
1033     /**
1034     * Not supported. Always throws UnsupportedOperationException.
1035 jsr166 1.32 * @throws UnsupportedOperationException always; <tt>add</tt>
1036     * is not supported by this iterator.
1037 tim 1.1 */
1038 jsr166 1.33 public void add(E e) {
1039 tim 1.1 throw new UnsupportedOperationException();
1040     }
1041     }
1042    
1043     /**
1044 dl 1.40 * Returns a view of the portion of this list between
1045     * <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.
1046     * The returned list is backed by this list, so changes in the
1047 jsr166 1.66 * returned list are reflected in this list.
1048 dl 1.40 *
1049     * <p>The semantics of the list returned by this method become
1050 jsr166 1.66 * undefined if the backing list (i.e., this list) is modified in
1051     * any way other than via the returned list.
1052 tim 1.1 *
1053 jsr166 1.35 * @param fromIndex low endpoint (inclusive) of the subList
1054     * @param toIndex high endpoint (exclusive) of the subList
1055     * @return a view of the specified range within this list
1056     * @throws IndexOutOfBoundsException {@inheritDoc}
1057 tim 1.1 */
1058 dl 1.42 public List<E> subList(int fromIndex, int toIndex) {
1059 jsr166 1.67 final ReentrantLock lock = this.lock;
1060     lock.lock();
1061     try {
1062     Object[] elements = getArray();
1063     int len = elements.length;
1064     if (fromIndex < 0 || toIndex > len || fromIndex > toIndex)
1065     throw new IndexOutOfBoundsException();
1066     return new COWSubList<E>(this, fromIndex, toIndex);
1067     } finally {
1068     lock.unlock();
1069     }
1070 tim 1.1 }
1071    
1072 dl 1.42 /**
1073     * Sublist for CopyOnWriteArrayList.
1074     * This class extends AbstractList merely for convenience, to
1075     * avoid having to define addAll, etc. This doesn't hurt, but
1076     * is wasteful. This class does not need or use modCount
1077     * mechanics in AbstractList, but does need to check for
1078     * concurrent modification using similar mechanics. On each
1079     * operation, the array that we expect the backing list to use
1080     * is checked and updated. Since we do this for all of the
1081     * base operations invoked by those defined in AbstractList,
1082     * all is well. While inefficient, this is not worth
1083     * improving. The kinds of list operations inherited from
1084     * AbstractList are already so slow on COW sublists that
1085     * adding a bit more space/time doesn't seem even noticeable.
1086     */
1087 jsr166 1.66 private static class COWSubList<E>
1088 jsr166 1.67 extends AbstractList<E>
1089     implements RandomAccess
1090 jsr166 1.66 {
1091 tim 1.1 private final CopyOnWriteArrayList<E> l;
1092     private final int offset;
1093     private int size;
1094 dl 1.41 private Object[] expectedArray;
1095 tim 1.1
1096 jsr166 1.45 // only call this holding l's lock
1097 jsr166 1.66 COWSubList(CopyOnWriteArrayList<E> list,
1098 jsr166 1.67 int fromIndex, int toIndex) {
1099 tim 1.1 l = list;
1100 dl 1.40 expectedArray = l.getArray();
1101 tim 1.1 offset = fromIndex;
1102     size = toIndex - fromIndex;
1103     }
1104    
1105     // only call this holding l's lock
1106     private void checkForComodification() {
1107 dl 1.40 if (l.getArray() != expectedArray)
1108 tim 1.1 throw new ConcurrentModificationException();
1109     }
1110    
1111     // only call this holding l's lock
1112     private void rangeCheck(int index) {
1113 jsr166 1.45 if (index<0 || index>=size)
1114     throw new IndexOutOfBoundsException("Index: "+index+
1115 jsr166 1.67 ",Size: "+size);
1116 tim 1.1 }
1117    
1118     public E set(int index, E element) {
1119 jsr166 1.67 final ReentrantLock lock = l.lock;
1120     lock.lock();
1121     try {
1122 tim 1.1 rangeCheck(index);
1123     checkForComodification();
1124 jsr166 1.45 E x = l.set(index+offset, element);
1125 dl 1.40 expectedArray = l.getArray();
1126 tim 1.1 return x;
1127 jsr166 1.67 } finally {
1128     lock.unlock();
1129     }
1130 tim 1.1 }
1131    
1132     public E get(int index) {
1133 jsr166 1.67 final ReentrantLock lock = l.lock;
1134     lock.lock();
1135     try {
1136 tim 1.1 rangeCheck(index);
1137     checkForComodification();
1138 jsr166 1.45 return l.get(index+offset);
1139 jsr166 1.67 } finally {
1140     lock.unlock();
1141     }
1142 tim 1.1 }
1143    
1144     public int size() {
1145 jsr166 1.67 final ReentrantLock lock = l.lock;
1146     lock.lock();
1147     try {
1148 tim 1.1 checkForComodification();
1149     return size;
1150 jsr166 1.67 } finally {
1151     lock.unlock();
1152     }
1153 tim 1.1 }
1154    
1155     public void add(int index, E element) {
1156 jsr166 1.67 final ReentrantLock lock = l.lock;
1157     lock.lock();
1158     try {
1159 tim 1.1 checkForComodification();
1160     if (index<0 || index>size)
1161     throw new IndexOutOfBoundsException();
1162 jsr166 1.45 l.add(index+offset, element);
1163 dl 1.40 expectedArray = l.getArray();
1164 tim 1.1 size++;
1165 jsr166 1.67 } finally {
1166     lock.unlock();
1167     }
1168 tim 1.1 }
1169    
1170 dl 1.13 public void clear() {
1171 jsr166 1.67 final ReentrantLock lock = l.lock;
1172     lock.lock();
1173     try {
1174 dl 1.13 checkForComodification();
1175     l.removeRange(offset, offset+size);
1176 dl 1.40 expectedArray = l.getArray();
1177 dl 1.13 size = 0;
1178 jsr166 1.67 } finally {
1179     lock.unlock();
1180     }
1181 dl 1.13 }
1182    
1183 tim 1.1 public E remove(int index) {
1184 jsr166 1.67 final ReentrantLock lock = l.lock;
1185     lock.lock();
1186     try {
1187 tim 1.1 rangeCheck(index);
1188     checkForComodification();
1189 jsr166 1.45 E result = l.remove(index+offset);
1190 dl 1.40 expectedArray = l.getArray();
1191 tim 1.1 size--;
1192     return result;
1193 jsr166 1.67 } finally {
1194     lock.unlock();
1195     }
1196 tim 1.1 }
1197    
1198 jsr166 1.66 public boolean remove(Object o) {
1199 jsr166 1.67 int index = indexOf(o);
1200     if (index == -1)
1201     return false;
1202     remove(index);
1203     return true;
1204 jsr166 1.66 }
1205    
1206 tim 1.1 public Iterator<E> iterator() {
1207 jsr166 1.67 final ReentrantLock lock = l.lock;
1208     lock.lock();
1209     try {
1210 tim 1.1 checkForComodification();
1211 tim 1.8 return new COWSubListIterator<E>(l, 0, offset, size);
1212 jsr166 1.67 } finally {
1213     lock.unlock();
1214     }
1215 tim 1.1 }
1216    
1217     public ListIterator<E> listIterator(final int index) {
1218 jsr166 1.67 final ReentrantLock lock = l.lock;
1219     lock.lock();
1220     try {
1221 tim 1.1 checkForComodification();
1222     if (index<0 || index>size)
1223 dl 1.40 throw new IndexOutOfBoundsException("Index: "+index+
1224 jsr166 1.67 ", Size: "+size);
1225 tim 1.8 return new COWSubListIterator<E>(l, index, offset, size);
1226 jsr166 1.67 } finally {
1227     lock.unlock();
1228     }
1229 tim 1.1 }
1230    
1231 tim 1.7 public List<E> subList(int fromIndex, int toIndex) {
1232 jsr166 1.67 final ReentrantLock lock = l.lock;
1233     lock.lock();
1234     try {
1235 tim 1.7 checkForComodification();
1236     if (fromIndex<0 || toIndex>size)
1237     throw new IndexOutOfBoundsException();
1238 dl 1.41 return new COWSubList<E>(l, fromIndex + offset,
1239 jsr166 1.67 toIndex + offset);
1240     } finally {
1241     lock.unlock();
1242     }
1243 tim 1.7 }
1244 tim 1.1
1245 tim 1.7 }
1246 tim 1.1
1247    
1248 tim 1.7 private static class COWSubListIterator<E> implements ListIterator<E> {
1249     private final ListIterator<E> i;
1250     private final int index;
1251     private final int offset;
1252     private final int size;
1253 jsr166 1.66
1254 jsr166 1.67 COWSubListIterator(List<E> l, int index, int offset,
1255     int size) {
1256 tim 1.7 this.index = index;
1257     this.offset = offset;
1258     this.size = size;
1259 jsr166 1.45 i = l.listIterator(index+offset);
1260 tim 1.7 }
1261 tim 1.1
1262 tim 1.7 public boolean hasNext() {
1263     return nextIndex() < size;
1264     }
1265 tim 1.1
1266 tim 1.7 public E next() {
1267     if (hasNext())
1268     return i.next();
1269     else
1270     throw new NoSuchElementException();
1271     }
1272 tim 1.1
1273 tim 1.7 public boolean hasPrevious() {
1274     return previousIndex() >= 0;
1275     }
1276 tim 1.1
1277 tim 1.7 public E previous() {
1278     if (hasPrevious())
1279     return i.previous();
1280     else
1281     throw new NoSuchElementException();
1282     }
1283 tim 1.1
1284 tim 1.7 public int nextIndex() {
1285     return i.nextIndex() - offset;
1286     }
1287 tim 1.1
1288 tim 1.7 public int previousIndex() {
1289     return i.previousIndex() - offset;
1290 tim 1.1 }
1291    
1292 tim 1.7 public void remove() {
1293     throw new UnsupportedOperationException();
1294     }
1295 tim 1.1
1296 jsr166 1.33 public void set(E e) {
1297 tim 1.7 throw new UnsupportedOperationException();
1298 tim 1.1 }
1299    
1300 jsr166 1.33 public void add(E e) {
1301 tim 1.7 throw new UnsupportedOperationException();
1302     }
1303 tim 1.1 }
1304    
1305 dl 1.42 // Support for resetting lock while deserializing
1306 dl 1.72 private void resetLock() {
1307     UNSAFE.putObjectVolatile(this, lockOffset, new ReentrantLock());
1308     }
1309     private static final sun.misc.Unsafe UNSAFE;
1310 dl 1.42 private static final long lockOffset;
1311     static {
1312     try {
1313 dl 1.72 UNSAFE = sun.misc.Unsafe.getUnsafe();
1314     Class k = CopyOnWriteArrayList.class;
1315     lockOffset = UNSAFE.objectFieldOffset
1316     (k.getDeclaredField("lock"));
1317     } catch (Exception e) {
1318     throw new Error(e);
1319     }
1320 dl 1.42 }
1321 tim 1.1 }