ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArraySet.java
Revision: 1.61
Committed: Wed Dec 31 07:54:13 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.60: +4 -3 lines
Log Message:
standardize import statement order

File Contents

# User Rev Content
1 dl 1.2 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 jsr166 1.35 * Expert Group and released to the public domain, as explained at
4 jsr166 1.38 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.2 */
6    
7 tim 1.1 package java.util.concurrent;
8 jsr166 1.61
9     import java.util.AbstractSet;
10 dl 1.45 import java.util.Collection;
11 dl 1.48 import java.util.Collections;
12 jsr166 1.61 import java.util.Iterator;
13 dl 1.45 import java.util.Set;
14     import java.util.Spliterator;
15 dl 1.50 import java.util.Spliterators;
16 jsr166 1.61 import java.util.function.Consumer;
17 dl 1.54 import java.util.function.Predicate;
18 tim 1.1
19     /**
20 jsr166 1.26 * A {@link java.util.Set} that uses an internal {@link CopyOnWriteArrayList}
21     * for all of its operations. Thus, it shares the same basic properties:
22 tim 1.1 * <ul>
23 dholmes 1.7 * <li>It is best suited for applications in which set sizes generally
24 tim 1.1 * stay small, read-only operations
25     * vastly outnumber mutative operations, and you need
26     * to prevent interference among threads during traversal.
27 dl 1.16 * <li>It is thread-safe.
28 jsr166 1.44 * <li>Mutative operations ({@code add}, {@code set}, {@code remove}, etc.)
29 jsr166 1.26 * are expensive since they usually entail copying the entire underlying
30     * array.
31 jsr166 1.44 * <li>Iterators do not support the mutative {@code remove} operation.
32 dl 1.18 * <li>Traversal via iterators is fast and cannot encounter
33 tim 1.1 * interference from other threads. Iterators rely on
34     * unchanging snapshots of the array at the time the iterators were
35 jsr166 1.26 * constructed.
36 tim 1.1 * </ul>
37 dl 1.18 *
38 jsr166 1.42 * <p><b>Sample Usage.</b> The following code sketch uses a
39 jsr166 1.21 * copy-on-write set to maintain a set of Handler objects that
40     * perform some action upon state updates.
41 dl 1.18 *
42 jsr166 1.37 * <pre> {@code
43 tim 1.6 * class Handler { void handle(); ... }
44 tim 1.1 *
45     * class X {
46 jsr166 1.37 * private final CopyOnWriteArraySet<Handler> handlers
47 jsr166 1.57 * = new CopyOnWriteArraySet<>();
48 jsr166 1.37 * public void addHandler(Handler h) { handlers.add(h); }
49 tim 1.1 *
50 jsr166 1.37 * private long internalState;
51     * private synchronized void changeState() { internalState = ...; }
52 tim 1.1 *
53 jsr166 1.37 * public void update() {
54     * changeState();
55     * for (Handler handler : handlers)
56 jsr166 1.43 * handler.handle();
57 jsr166 1.37 * }
58     * }}</pre>
59 dl 1.14 *
60     * <p>This class is a member of the
61 jsr166 1.34 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
62 dl 1.14 * Java Collections Framework</a>.
63     *
64 dl 1.16 * @see CopyOnWriteArrayList
65 dl 1.4 * @since 1.5
66     * @author Doug Lea
67 jsr166 1.60 * @param <E> the type of elements held in this set
68 dl 1.4 */
69 tim 1.1 public class CopyOnWriteArraySet<E> extends AbstractSet<E>
70 dl 1.18 implements java.io.Serializable {
71 dl 1.8 private static final long serialVersionUID = 5457747651344034263L;
72 tim 1.1
73     private final CopyOnWriteArrayList<E> al;
74    
75     /**
76 dl 1.15 * Creates an empty set.
77 tim 1.1 */
78     public CopyOnWriteArraySet() {
79     al = new CopyOnWriteArrayList<E>();
80     }
81    
82     /**
83 dl 1.15 * Creates a set containing all of the elements of the specified
84 jsr166 1.23 * collection.
85 jsr166 1.25 *
86 jsr166 1.23 * @param c the collection of elements to initially contain
87     * @throws NullPointerException if the specified collection is null
88 tim 1.1 */
89 tim 1.12 public CopyOnWriteArraySet(Collection<? extends E> c) {
90 dl 1.54 if (c.getClass() == CopyOnWriteArraySet.class) {
91     @SuppressWarnings("unchecked") CopyOnWriteArraySet<E> cc =
92     (CopyOnWriteArraySet<E>)c;
93     al = new CopyOnWriteArrayList<E>(cc.al);
94     }
95     else {
96     al = new CopyOnWriteArrayList<E>();
97     al.addAllAbsent(c);
98     }
99 tim 1.1 }
100    
101 jsr166 1.26 /**
102     * Returns the number of elements in this set.
103     *
104     * @return the number of elements in this set
105     */
106     public int size() {
107 jsr166 1.36 return al.size();
108 jsr166 1.26 }
109    
110     /**
111 jsr166 1.44 * Returns {@code true} if this set contains no elements.
112 jsr166 1.26 *
113 jsr166 1.44 * @return {@code true} if this set contains no elements
114 jsr166 1.26 */
115     public boolean isEmpty() {
116 jsr166 1.36 return al.isEmpty();
117 jsr166 1.26 }
118    
119     /**
120 jsr166 1.44 * Returns {@code true} if this set contains the specified element.
121     * More formally, returns {@code true} if and only if this set
122 jsr166 1.58 * contains an element {@code e} such that {@code Objects.equals(o, e)}.
123 jsr166 1.26 *
124     * @param o element whose presence in this set is to be tested
125 jsr166 1.44 * @return {@code true} if this set contains the specified element
126 jsr166 1.26 */
127     public boolean contains(Object o) {
128 jsr166 1.36 return al.contains(o);
129 jsr166 1.26 }
130    
131     /**
132     * Returns an array containing all of the elements in this set.
133     * If this set makes any guarantees as to what order its elements
134     * are returned by its iterator, this method must return the
135     * elements in the same order.
136     *
137     * <p>The returned array will be "safe" in that no references to it
138     * are maintained by this set. (In other words, this method must
139     * allocate a new array even if this set is backed by an array).
140     * The caller is thus free to modify the returned array.
141     *
142     * <p>This method acts as bridge between array-based and collection-based
143     * APIs.
144     *
145     * @return an array containing all the elements in this set
146     */
147     public Object[] toArray() {
148 jsr166 1.36 return al.toArray();
149 jsr166 1.26 }
150    
151     /**
152     * Returns an array containing all of the elements in this set; the
153     * runtime type of the returned array is that of the specified array.
154     * If the set fits in the specified array, it is returned therein.
155     * Otherwise, a new array is allocated with the runtime type of the
156     * specified array and the size of this set.
157     *
158     * <p>If this set fits in the specified array with room to spare
159     * (i.e., the array has more elements than this set), the element in
160     * the array immediately following the end of the set is set to
161 jsr166 1.44 * {@code null}. (This is useful in determining the length of this
162 jsr166 1.26 * set <i>only</i> if the caller knows that this set does not contain
163     * any null elements.)
164     *
165     * <p>If this set makes any guarantees as to what order its elements
166     * are returned by its iterator, this method must return the elements
167     * in the same order.
168     *
169     * <p>Like the {@link #toArray()} method, this method acts as bridge between
170     * array-based and collection-based APIs. Further, this method allows
171     * precise control over the runtime type of the output array, and may,
172     * under certain circumstances, be used to save allocation costs.
173     *
174 jsr166 1.44 * <p>Suppose {@code x} is a set known to contain only strings.
175 jsr166 1.26 * The following code can be used to dump the set into a newly allocated
176 jsr166 1.44 * array of {@code String}:
177 jsr166 1.26 *
178 jsr166 1.40 * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
179 jsr166 1.26 *
180 jsr166 1.44 * Note that {@code toArray(new Object[0])} is identical in function to
181     * {@code toArray()}.
182 jsr166 1.26 *
183     * @param a the array into which the elements of this set are to be
184     * stored, if it is big enough; otherwise, a new array of the same
185     * runtime type is allocated for this purpose.
186     * @return an array containing all the elements in this set
187     * @throws ArrayStoreException if the runtime type of the specified array
188     * is not a supertype of the runtime type of every element in this
189     * set
190     * @throws NullPointerException if the specified array is null
191     */
192     public <T> T[] toArray(T[] a) {
193 jsr166 1.36 return al.toArray(a);
194 jsr166 1.26 }
195    
196     /**
197     * Removes all of the elements from this set.
198 jsr166 1.27 * The set will be empty after this call returns.
199 jsr166 1.26 */
200     public void clear() {
201     al.clear();
202     }
203    
204     /**
205     * Removes the specified element from this set if it is present.
206 jsr166 1.44 * More formally, removes an element {@code e} such that
207 jsr166 1.58 * {@code Objects.equals(o, e)}, if this set contains such an element.
208     * Returns {@code true} if this set contained the element (or
209     * equivalently, if this set changed as a result of the call).
210     * (This set will not contain the element once the call returns.)
211 jsr166 1.26 *
212     * @param o object to be removed from this set, if present
213 jsr166 1.44 * @return {@code true} if this set contained the specified element
214 jsr166 1.26 */
215     public boolean remove(Object o) {
216 jsr166 1.36 return al.remove(o);
217 jsr166 1.26 }
218    
219     /**
220     * Adds the specified element to this set if it is not already present.
221 jsr166 1.44 * More formally, adds the specified element {@code e} to this set if
222     * the set contains no element {@code e2} such that
223 jsr166 1.58 * {@code Objects.equals(e, e2)}.
224 jsr166 1.28 * If this set already contains the element, the call leaves the set
225 jsr166 1.44 * unchanged and returns {@code false}.
226 jsr166 1.26 *
227     * @param e element to be added to this set
228 jsr166 1.44 * @return {@code true} if this set did not already contain the specified
229 jsr166 1.26 * element
230     */
231     public boolean add(E e) {
232 jsr166 1.36 return al.addIfAbsent(e);
233 jsr166 1.26 }
234 tim 1.1
235 jsr166 1.26 /**
236 jsr166 1.44 * Returns {@code true} if this set contains all of the elements of the
237 jsr166 1.26 * specified collection. If the specified collection is also a set, this
238 jsr166 1.44 * method returns {@code true} if it is a <i>subset</i> of this set.
239 jsr166 1.26 *
240     * @param c collection to be checked for containment in this set
241 jsr166 1.44 * @return {@code true} if this set contains all of the elements of the
242 jsr166 1.36 * specified collection
243 jsr166 1.26 * @throws NullPointerException if the specified collection is null
244     * @see #contains(Object)
245     */
246     public boolean containsAll(Collection<?> c) {
247 jsr166 1.36 return al.containsAll(c);
248 jsr166 1.26 }
249    
250     /**
251     * Adds all of the elements in the specified collection to this set if
252     * they're not already present. If the specified collection is also a
253 jsr166 1.44 * set, the {@code addAll} operation effectively modifies this set so
254 jsr166 1.26 * that its value is the <i>union</i> of the two sets. The behavior of
255 jsr166 1.28 * this operation is undefined if the specified collection is modified
256 jsr166 1.26 * while the operation is in progress.
257     *
258     * @param c collection containing elements to be added to this set
259 jsr166 1.44 * @return {@code true} if this set changed as a result of the call
260 jsr166 1.26 * @throws NullPointerException if the specified collection is null
261     * @see #add(Object)
262     */
263     public boolean addAll(Collection<? extends E> c) {
264 dl 1.52 return al.addAllAbsent(c) > 0;
265 jsr166 1.26 }
266    
267     /**
268     * Removes from this set all of its elements that are contained in the
269     * specified collection. If the specified collection is also a set,
270     * this operation effectively modifies this set so that its value is the
271     * <i>asymmetric set difference</i> of the two sets.
272     *
273     * @param c collection containing elements to be removed from this set
274 jsr166 1.44 * @return {@code true} if this set changed as a result of the call
275 jsr166 1.26 * @throws ClassCastException if the class of an element of this set
276     * is incompatible with the specified collection (optional)
277     * @throws NullPointerException if this set contains a null element and the
278     * specified collection does not permit null elements (optional),
279     * or if the specified collection is null
280     * @see #remove(Object)
281     */
282     public boolean removeAll(Collection<?> c) {
283 jsr166 1.36 return al.removeAll(c);
284 jsr166 1.26 }
285    
286     /**
287     * Retains only the elements in this set that are contained in the
288     * specified collection. In other words, removes from this set all of
289     * its elements that are not contained in the specified collection. If
290     * the specified collection is also a set, this operation effectively
291     * modifies this set so that its value is the <i>intersection</i> of the
292     * two sets.
293     *
294     * @param c collection containing elements to be retained in this set
295 jsr166 1.44 * @return {@code true} if this set changed as a result of the call
296 jsr166 1.26 * @throws ClassCastException if the class of an element of this set
297     * is incompatible with the specified collection (optional)
298     * @throws NullPointerException if this set contains a null element and the
299     * specified collection does not permit null elements (optional),
300     * or if the specified collection is null
301     * @see #remove(Object)
302     */
303     public boolean retainAll(Collection<?> c) {
304 jsr166 1.36 return al.retainAll(c);
305 jsr166 1.26 }
306 tim 1.1
307 dl 1.20 /**
308 jsr166 1.24 * Returns an iterator over the elements contained in this set
309 dl 1.20 * in the order in which these elements were added.
310 jsr166 1.26 *
311     * <p>The returned iterator provides a snapshot of the state of the set
312     * when the iterator was constructed. No synchronization is needed while
313     * traversing the iterator. The iterator does <em>NOT</em> support the
314 jsr166 1.44 * {@code remove} method.
315 jsr166 1.26 *
316     * @return an iterator over the elements in this set
317 dl 1.20 */
318 jsr166 1.26 public Iterator<E> iterator() {
319 jsr166 1.36 return al.iterator();
320 jsr166 1.26 }
321 dl 1.20
322 dl 1.30 /**
323     * Compares the specified object with this set for equality.
324 jsr166 1.33 * Returns {@code true} if the specified object is the same object
325     * as this object, or if it is also a {@link Set} and the elements
326 jsr166 1.47 * returned by an {@linkplain Set#iterator() iterator} over the
327 jsr166 1.33 * specified set are the same as the elements returned by an
328     * iterator over this set. More formally, the two iterators are
329     * considered to return the same elements if they return the same
330     * number of elements and for every element {@code e1} returned by
331     * the iterator over the specified set, there is an element
332     * {@code e2} returned by the iterator over this set such that
333 jsr166 1.59 * {@code Objects.equals(e1, e2)}.
334 dl 1.30 *
335     * @param o object to be compared for equality with this set
336 jsr166 1.33 * @return {@code true} if the specified object is equal to this set
337 dl 1.30 */
338     public boolean equals(Object o) {
339     if (o == this)
340     return true;
341     if (!(o instanceof Set))
342     return false;
343     Set<?> set = (Set<?>)(o);
344 jsr166 1.36 Iterator<?> it = set.iterator();
345 dl 1.30
346     // Uses O(n^2) algorithm that is only appropriate
347     // for small sets, which CopyOnWriteArraySets should be.
348    
349     // Use a single snapshot of underlying array
350 jsr166 1.36 Object[] elements = al.getArray();
351     int len = elements.length;
352 dl 1.30 // Mark matched elements to avoid re-checking
353     boolean[] matched = new boolean[len];
354     int k = 0;
355 jsr166 1.33 outer: while (it.hasNext()) {
356 dl 1.30 if (++k > len)
357     return false;
358 jsr166 1.33 Object x = it.next();
359 dl 1.30 for (int i = 0; i < len; ++i) {
360     if (!matched[i] && eq(x, elements[i])) {
361     matched[i] = true;
362 jsr166 1.36 continue outer;
363 dl 1.30 }
364     }
365 jsr166 1.36 return false;
366 dl 1.30 }
367     return k == len;
368     }
369 jsr166 1.32
370 dl 1.54 public boolean removeIf(Predicate<? super E> filter) {
371     return al.removeIf(filter);
372     }
373    
374     public void forEach(Consumer<? super E> action) {
375     al.forEach(action);
376     }
377    
378 jsr166 1.56 /**
379     * Returns a {@link Spliterator} over the elements in this set in the order
380     * in which these elements were added.
381     *
382     * <p>The {@code Spliterator} reports {@link Spliterator#IMMUTABLE},
383     * {@link Spliterator#DISTINCT}, {@link Spliterator#SIZED}, and
384     * {@link Spliterator#SUBSIZED}.
385     *
386     * <p>The spliterator provides a snapshot of the state of the set
387     * when the spliterator was constructed. No synchronization is needed while
388     * operating on the spliterator. The spliterator does <em>NOT</em> support
389     * the {@code remove}, {@code set} or {@code add} methods.
390     *
391     * @return a {@code Spliterator} over the elements in this set
392     * @since 1.8
393     */
394 dl 1.51 public Spliterator<E> spliterator() {
395 dl 1.50 return Spliterators.spliterator
396 dl 1.55 (al.getArray(), Spliterator.IMMUTABLE | Spliterator.DISTINCT);
397 dl 1.48 }
398    
399 dl 1.30 /**
400 jsr166 1.41 * Tests for equality, coping with nulls.
401 dl 1.30 */
402     private static boolean eq(Object o1, Object o2) {
403 jsr166 1.39 return (o1 == null) ? o2 == null : o1.equals(o2);
404 dl 1.30 }
405 tim 1.1 }