ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/Collections/RacingCollections.java
Revision: 1.8
Committed: Wed Jan 4 04:46:18 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.7: +7 -10 lines
Log Message:
convert to Diamond

File Contents

# Content
1 /*
2 * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @bug 6360946 6360948
27 * @summary Test various operations on concurrently mutating collections
28 * @author Martin Buchholz
29 */
30
31 import static java.util.Collections.*;
32 import java.util.*;
33 import java.util.concurrent.*;
34
35 public class RacingCollections {
36 /**
37 * How long to run each "race" (in milliseconds).
38 * Turn this up to some higher value like 1000 for stress testing:
39 * java -Dmillis=1000 RacingCollections
40 */
41 static final long defaultWorkTimeMillis = Long.getLong("millis", 10L);
42
43 /**
44 * Whether to print debug information.
45 */
46 static final boolean debug = Boolean.getBoolean("debug");
47
48 static final Integer one = 1;
49 static final Integer two = 2;
50
51 /**
52 * A thread that mutates an object forever, alternating between
53 * being empty and containing singleton "two"
54 */
55 static class Frobber extends CheckedThread {
56 volatile boolean done = false;
57 boolean keepGoing(int i) { return (i % 128 != 0) || ! done; }
58
59 final Object elLoco;
60 Frobber(Object elLoco) {
61 this.elLoco = elLoco;
62 this.start();
63 }
64
65 @SuppressWarnings("unchecked")
66 void clear(Object o) {
67 if (o instanceof Collection)
68 ((Collection<?>)o).clear();
69 else
70 ((Map<?,?>)o).clear();
71 }
72
73 @SuppressWarnings("unchecked")
74 void realRun() {
75 // Mutate elLoco wildly forever, checking occasionally for "done"
76 clear(elLoco);
77 if (elLoco instanceof List) {
78 List<Integer> l = (List<Integer>) elLoco;
79 for (int i = 0; keepGoing(i); i++) {
80 switch (i%2) {
81 case 0: l.add(two); break;
82 case 1: l.add(0, two); break;
83 }
84 switch (i%2) {
85 case 0: l.remove(two); break;
86 case 1: l.remove(0); break;
87 }}}
88 else if (elLoco instanceof Deque) {
89 Deque<Integer> q = (Deque<Integer>) elLoco;
90 for (int i = 0; keepGoing(i); i++) {
91 switch (i%6) {
92 case 0: q.add(two); break;
93 case 1: q.addFirst(two); break;
94 case 2: q.addLast(two); break;
95 case 3: q.offer(two); break;
96 case 4: q.offerFirst(two); break;
97 case 5: q.offerLast(two); break;
98 }
99 switch (i%6) {
100 case 0: q.remove(two); break;
101 case 1: q.removeFirst(); break;
102 case 2: q.removeLast(); break;
103 case 3: q.poll(); break;
104 case 4: q.pollFirst(); break;
105 case 5: q.pollLast(); break;
106 }}}
107 else if (elLoco instanceof Queue) {
108 Queue<Integer> q = (Queue<Integer>) elLoco;
109 for (int i = 0; keepGoing(i); i++) {
110 switch (i%2) {
111 case 0: q.add(two); break;
112 case 1: q.offer(two); break;
113 }
114 switch (i%2) {
115 case 0: q.remove(two); break;
116 case 1: q.poll(); break;
117 }}}
118 else if (elLoco instanceof Map) {
119 Map<Integer, Boolean> m = (Map<Integer, Boolean>) elLoco;
120 for (int i = 0; keepGoing(i); i++) {
121 m.put(two, true);
122 m.remove(two);
123 }}
124 else if (elLoco instanceof Collection) {
125 Collection<Integer> c = (Collection<Integer>) elLoco;
126 for (int i = 0; keepGoing(i); i++) {
127 c.add(two);
128 c.remove(two);
129 }}
130 else { throw new Error("Huh? " + elLoco); }
131 }
132
133 void enoughAlready() {
134 done = true;
135 try { join(); } catch (Throwable t) { unexpected(t); }
136 }
137 }
138
139 private static void checkEqualSanity(Object theRock, Object elLoco) {
140 //equal(theRock, theRock);
141 equal(elLoco, elLoco);
142
143 // It would be nice someday to have theRock and elLoco never "equal",
144 // although the meaning of "equal" for mutating collections
145 // is a bit fuzzy. Uncomment when/if we fix:
146 // 6374942: Improve thread safety of collection .equals() methods
147 //notEqual(theRock, elLoco);
148 //notEqual(elLoco, theRock);
149
150 notEqual(theRock.toString(), elLoco.toString());
151 }
152
153 static class Looper {
154 final long quittingTime;
155 int i = 0;
156 Looper() { this(defaultWorkTimeMillis); }
157 Looper(long workTimeMillis) {
158 quittingTime = System.nanoTime() + workTimeMillis * 1024 * 1024;
159 }
160 boolean keepGoing() {
161 return (i++ % 128 != 0) || (System.nanoTime() - quittingTime < 0);
162 }
163 }
164
165 private static void frob(Object theRock, Object elLoco) {
166 Frobber frobber = new Frobber(elLoco);
167 try {
168 if (theRock instanceof Collection) {
169 @SuppressWarnings("unchecked")
170 Collection<Integer> c = (Collection<Integer>) theRock;
171 if (! c.contains(one))
172 c.add(one);
173 } else {
174 @SuppressWarnings("unchecked")
175 Map<Integer, Boolean> m = (Map<Integer, Boolean>) theRock;
176 if (! m.containsKey(one))
177 m.put(one, true);
178 }
179 for (Looper looper = new Looper(); looper.keepGoing(); )
180 checkEqualSanity(theRock, elLoco);
181 }
182 catch (Throwable t) { unexpected(t); }
183 finally { frobber.enoughAlready(); }
184 }
185
186 private static List<Map<Integer, Boolean>> newConcurrentMaps() {
187 List<Map<Integer, Boolean>> list = new ArrayList<>();
188 list.add(new ConcurrentHashMap<Integer, Boolean>());
189 list.add(new ConcurrentSkipListMap<Integer, Boolean>());
190 return list;
191 }
192
193 private static List<Map<Integer, Boolean>> maps() {
194 List<Map<Integer, Boolean>> list = newConcurrentMaps();
195 list.add(new Hashtable<Integer, Boolean>());
196 list.add(new HashMap<Integer, Boolean>());
197 list.add(new TreeMap<Integer, Boolean>());
198 Comparator<Integer> cmp = new Comparator<>() {
199 public int compare(Integer x, Integer y) {
200 return x - y;
201 }};
202 list.add(new TreeMap<Integer, Boolean>(Collections.reverseOrder(cmp)));
203 return list;
204 }
205
206 private static List<Set<Integer>> newConcurrentSets() {
207 List<Set<Integer>> list = new ArrayList<>();
208 list.add(new ConcurrentSkipListSet<Integer>());
209 list.add(new CopyOnWriteArraySet<Integer>());
210 return list;
211 }
212
213 private static List<Set<Integer>> newSets() {
214 List<Set<Integer>> list = newConcurrentSets();
215 list.add(new HashSet<Integer>());
216 list.add(new TreeSet<Integer>());
217 list.add(new TreeSet<Integer>(Collections.reverseOrder()));
218 return list;
219 }
220
221 private static List<List<Integer>> newConcurrentLists() {
222 List<List<Integer>> list = new ArrayList<>();
223 list.add(new CopyOnWriteArrayList<Integer>());
224 return list;
225 }
226
227 private static List<List<Integer>> newLists() {
228 List<List<Integer>> list = newConcurrentLists();
229 list.add(new Vector<Integer>());
230 list.add(new ArrayList<Integer>());
231 return list;
232 }
233
234 private static List<Queue<Integer>> newConcurrentQueues() {
235 List<Queue<Integer>> list = new ArrayList<>(newConcurrentDeques());
236 list.add(new ArrayBlockingQueue<Integer>(10));
237 list.add(new LinkedBlockingQueue<Integer>(10));
238 list.add(new LinkedTransferQueue<Integer>());
239 list.add(new ConcurrentLinkedQueue<Integer>());
240 return list;
241 }
242
243 private static List<Queue<Integer>> newQueues() {
244 List<Queue<Integer>> list = new ArrayList<>(newDeques());
245 list.add(new LinkedBlockingQueue<Integer>(10));
246 return list;
247 }
248
249 private static List<Deque<Integer>> newConcurrentDeques() {
250 List<Deque<Integer>> list = new ArrayList<>();
251 list.add(new LinkedBlockingDeque<Integer>(10));
252 list.add(new ConcurrentLinkedDeque<Integer>());
253 return list;
254 }
255
256 private static List<Deque<Integer>> newDeques() {
257 List<Deque<Integer>> list = newConcurrentDeques();
258 list.add(new ArrayDeque<Integer>());
259 list.add(new LinkedList<Integer>());
260 return list;
261 }
262
263 private static void describe(Class<?> k, Object x, Object y) {
264 if (debug)
265 System.out.printf("%s: %s, %s%n", k.getSimpleName(),
266 x.getClass().getSimpleName(),
267 y.getClass().getSimpleName());
268 }
269
270 private static void realMain(String[] args) {
271 for (Map<Integer, Boolean> x : maps())
272 for (Map<Integer, Boolean> y : newConcurrentMaps()) {
273 describe(Map.class, x, y);
274 x.put(one, true);
275 frob(x, y);
276 frob(unmodifiableMap(x), y);
277 frob(synchronizedMap(x), y);
278 frob(x, synchronizedMap(y));
279 frob(checkedMap(x, Integer.class, Boolean.class), y);
280 frob(x, checkedMap(y, Integer.class, Boolean.class));
281 x.clear();
282 frob(newSetFromMap(x), newSetFromMap(y));
283 frob(x.keySet(), newSetFromMap(y));
284 }
285
286 for (Set<Integer> x : newSets())
287 for (Set<Integer> y : newConcurrentSets()) {
288 describe(Set.class, x, y);
289 frob(x, y);
290 frob(unmodifiableSet(x), y);
291 frob(synchronizedSet(x), y);
292 frob(x, synchronizedSet(y));
293 frob(checkedSet(x, Integer.class), y);
294 frob(x, checkedSet(y, Integer.class));
295 }
296
297 for (List<Integer> x : newLists())
298 for (List<Integer> y : newConcurrentLists()) {
299 describe(List.class, x, y);
300 frob(x, y);
301 frob(unmodifiableList(x), y);
302 frob(synchronizedList(x), y);
303 frob(x, synchronizedList(y));
304 frob(checkedList(x, Integer.class), y);
305 frob(x, checkedList(y, Integer.class));
306 }
307
308 for (Queue<Integer> x : newQueues())
309 for (Queue<Integer> y : newConcurrentQueues()) {
310 describe(Queue.class, x, y);
311 frob(x, y);
312 }
313
314 for (Deque<Integer> x : newDeques())
315 for (Deque<Integer> y : newConcurrentDeques()) {
316 describe(Deque.class, x, y);
317 frob(asLifoQueue(x), y);
318 frob(x, asLifoQueue(y));
319 }
320 }
321
322 //--------------------- Infrastructure ---------------------------
323 static volatile int passed = 0, failed = 0;
324 static void pass() {passed++;}
325 static void fail() {failed++; Thread.dumpStack();}
326 static void fail(String msg) {System.out.println(msg); fail();}
327 static void unexpected(Throwable t) {failed++; t.printStackTrace();}
328 static void check(boolean cond) {if (cond) pass(); else fail();}
329 static String toString(Object x) {
330 return ((x instanceof Collection) || (x instanceof Map)) ?
331 x.getClass().getName() : x.toString();}
332 static void equal(Object x, Object y) {
333 if (x == null ? y == null : x.equals(y)) pass();
334 else fail(toString(x) + " not equal to " + toString(y));}
335 static void notEqual(Object x, Object y) {
336 if (x == null ? y == null : x.equals(y))
337 fail(toString(x) + " equal to " + toString(y));
338 else pass();}
339 public static void main(String[] args) throws Throwable {
340 try {realMain(args);} catch (Throwable t) {unexpected(t);}
341 System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
342 if (failed > 0) throw new AssertionError("Some tests failed");}
343 private abstract static class CheckedThread extends Thread {
344 abstract void realRun() throws Throwable;
345 public void run() {
346 try { realRun(); } catch (Throwable t) { unexpected(t); }}}
347 }