ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/RecursiveActionTest.java
(Generate patch)

Comparing jsr166/src/test/tck/RecursiveActionTest.java (file contents):
Revision 1.20 by jsr166, Sun Nov 21 08:35:40 2010 UTC vs.
Revision 1.40 by jsr166, Wed Dec 31 19:05:43 2014 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7 < import junit.framework.*;
7 > import static java.util.concurrent.TimeUnit.SECONDS;
8 >
9 > import java.util.Arrays;
10 > import java.util.HashSet;
11   import java.util.concurrent.CancellationException;
12   import java.util.concurrent.ExecutionException;
13   import java.util.concurrent.ForkJoinPool;
14 + import java.util.concurrent.ForkJoinTask;
15   import java.util.concurrent.ForkJoinWorkerThread;
16   import java.util.concurrent.RecursiveAction;
17 < import java.util.concurrent.TimeUnit;
17 > import java.util.concurrent.SynchronousQueue;
18 > import java.util.concurrent.ThreadLocalRandom;
19   import java.util.concurrent.TimeoutException;
20 < import static java.util.concurrent.TimeUnit.SECONDS;
21 < import java.util.HashSet;
20 > import java.util.concurrent.TimeUnit;
21 >
22 > import junit.framework.Test;
23 > import junit.framework.TestSuite;
24  
25   public class RecursiveActionTest extends JSR166TestCase {
26  
# Line 59 | Line 66 | public class RecursiveActionTest extends
66          assertNull(a.getException());
67          assertNull(a.getRawResult());
68  
69 <        if (! (Thread.currentThread() instanceof ForkJoinWorkerThread)) {
69 >        if (! ForkJoinTask.inForkJoinPool()) {
70              Thread.currentThread().interrupt();
71              try {
72                  a.get();
# Line 90 | Line 97 | public class RecursiveActionTest extends
97          assertNull(a.getException());
98          assertNull(a.getRawResult());
99          assertNull(a.join());
100 +        assertFalse(a.cancel(false));
101 +        assertFalse(a.cancel(true));
102          try {
103              assertNull(a.get());
104          } catch (Throwable fail) { threadUnexpectedException(fail); }
# Line 125 | Line 134 | public class RecursiveActionTest extends
134          } catch (Throwable fail) { threadUnexpectedException(fail); }
135      }
136  
137 <    void checkTaskThrew(RecursiveAction a, Throwable t) {
137 >    void checkCompletedAbnormally(RecursiveAction a, Throwable t) {
138          assertTrue(a.isDone());
139          assertFalse(a.isCancelled());
140          assertFalse(a.isCompletedNormally());
141          assertTrue(a.isCompletedAbnormally());
142 <        assertSame(t, a.getException());
142 >        assertSame(t.getClass(), a.getException().getClass());
143          assertNull(a.getRawResult());
144 +        assertFalse(a.cancel(false));
145 +        assertFalse(a.cancel(true));
146  
147          try {
148              a.join();
149              shouldThrow();
150          } catch (Throwable expected) {
151 <            assertSame(t, expected);
151 >            assertSame(expected.getClass(), t.getClass());
152          }
153  
154          try {
155              a.get();
156              shouldThrow();
157          } catch (ExecutionException success) {
158 <            assertSame(t, success.getCause());
158 >            assertSame(t.getClass(), success.getCause().getClass());
159          } catch (Throwable fail) { threadUnexpectedException(fail); }
160  
161          try {
162              a.get(5L, SECONDS);
163              shouldThrow();
164          } catch (ExecutionException success) {
165 <            assertSame(t, success.getCause());
165 >            assertSame(t.getClass(), success.getCause().getClass());
166          } catch (Throwable fail) { threadUnexpectedException(fail); }
167      }
168  
169 <    static final class FJException extends RuntimeException {
170 <        FJException() { super(); }
169 >    public static final class FJException extends RuntimeException {
170 >        public FJException() { super(); }
171 >        public FJException(Throwable cause) { super(cause); }
172      }
173  
174      // A simple recursive action for testing
# Line 164 | Line 176 | public class RecursiveActionTest extends
176          final int number;
177          int result;
178          FibAction(int n) { number = n; }
179 <        public void realCompute() {
179 >        protected void realCompute() {
180              int n = number;
181              if (n <= 1)
182                  result = n;
# Line 202 | Line 214 | public class RecursiveActionTest extends
214       */
215      public void testInvoke() {
216          RecursiveAction a = new CheckedRecursiveAction() {
217 <            public void realCompute() {
217 >            protected void realCompute() {
218                  FibAction f = new FibAction(8);
219                  assertNull(f.invoke());
220                  assertEquals(21, f.result);
# Line 218 | Line 230 | public class RecursiveActionTest extends
230       */
231      public void testQuietlyInvoke() {
232          RecursiveAction a = new CheckedRecursiveAction() {
233 <            public void realCompute() {
233 >            protected void realCompute() {
234                  FibAction f = new FibAction(8);
235                  f.quietlyInvoke();
236                  assertEquals(21, f.result);
# Line 232 | Line 244 | public class RecursiveActionTest extends
244       */
245      public void testForkJoin() {
246          RecursiveAction a = new CheckedRecursiveAction() {
247 <            public void realCompute() {
247 >            protected void realCompute() {
248                  FibAction f = new FibAction(8);
249                  assertSame(f, f.fork());
250                  assertNull(f.join());
# Line 243 | Line 255 | public class RecursiveActionTest extends
255      }
256  
257      /**
258 +     * join/quietlyJoin of a forked task succeeds in the presence of interrupts
259 +     */
260 +    public void testJoinIgnoresInterrupts() {
261 +        RecursiveAction a = new CheckedRecursiveAction() {
262 +            protected void realCompute() {
263 +                FibAction f = new FibAction(8);
264 +                final Thread myself = Thread.currentThread();
265 +
266 +                // test join()
267 +                assertSame(f, f.fork());
268 +                myself.interrupt();
269 +                assertTrue(myself.isInterrupted());
270 +                assertNull(f.join());
271 +                Thread.interrupted();
272 +                assertEquals(21, f.result);
273 +                checkCompletedNormally(f);
274 +
275 +                f = new FibAction(8);
276 +                f.cancel(true);
277 +                assertSame(f, f.fork());
278 +                myself.interrupt();
279 +                assertTrue(myself.isInterrupted());
280 +                try {
281 +                    f.join();
282 +                    shouldThrow();
283 +                } catch (CancellationException success) {
284 +                    Thread.interrupted();
285 +                    checkCancelled(f);
286 +                }
287 +
288 +                f = new FibAction(8);
289 +                f.completeExceptionally(new FJException());
290 +                assertSame(f, f.fork());
291 +                myself.interrupt();
292 +                assertTrue(myself.isInterrupted());
293 +                try {
294 +                    f.join();
295 +                    shouldThrow();
296 +                } catch (FJException success) {
297 +                    Thread.interrupted();
298 +                    checkCompletedAbnormally(f, success);
299 +                }
300 +
301 +                // test quietlyJoin()
302 +                f = new FibAction(8);
303 +                assertSame(f, f.fork());
304 +                myself.interrupt();
305 +                assertTrue(myself.isInterrupted());
306 +                f.quietlyJoin();
307 +                Thread.interrupted();
308 +                assertEquals(21, f.result);
309 +                checkCompletedNormally(f);
310 +
311 +                f = new FibAction(8);
312 +                f.cancel(true);
313 +                assertSame(f, f.fork());
314 +                myself.interrupt();
315 +                assertTrue(myself.isInterrupted());
316 +                f.quietlyJoin();
317 +                Thread.interrupted();
318 +                checkCancelled(f);
319 +
320 +                f = new FibAction(8);
321 +                f.completeExceptionally(new FJException());
322 +                assertSame(f, f.fork());
323 +                myself.interrupt();
324 +                assertTrue(myself.isInterrupted());
325 +                f.quietlyJoin();
326 +                Thread.interrupted();
327 +                checkCompletedAbnormally(f, f.getException());
328 +            }};
329 +        testInvokeOnPool(mainPool(), a);
330 +        a.reinitialize();
331 +        testInvokeOnPool(singletonPool(), a);
332 +    }
333 +
334 +    /**
335 +     * join/quietlyJoin of a forked task when not in ForkJoinPool
336 +     * succeeds in the presence of interrupts
337 +     */
338 +    public void testJoinIgnoresInterruptsOutsideForkJoinPool() {
339 +        final SynchronousQueue<FibAction[]> sq =
340 +            new SynchronousQueue<FibAction[]>();
341 +        RecursiveAction a = new CheckedRecursiveAction() {
342 +            protected void realCompute() throws InterruptedException {
343 +                FibAction[] fibActions = new FibAction[6];
344 +                for (int i = 0; i < fibActions.length; i++)
345 +                    fibActions[i] = new FibAction(8);
346 +
347 +                fibActions[1].cancel(false);
348 +                fibActions[2].completeExceptionally(new FJException());
349 +                fibActions[4].cancel(true);
350 +                fibActions[5].completeExceptionally(new FJException());
351 +
352 +                for (int i = 0; i < fibActions.length; i++)
353 +                    fibActions[i].fork();
354 +
355 +                sq.put(fibActions);
356 +
357 +                helpQuiesce();
358 +            }};
359 +
360 +        Runnable r = new CheckedRunnable() {
361 +            public void realRun() throws InterruptedException {
362 +                FibAction[] fibActions = sq.take();
363 +                FibAction f;
364 +                final Thread myself = Thread.currentThread();
365 +
366 +                // test join() ------------
367 +
368 +                f = fibActions[0];
369 +                assertFalse(ForkJoinTask.inForkJoinPool());
370 +                myself.interrupt();
371 +                assertTrue(myself.isInterrupted());
372 +                assertNull(f.join());
373 +                assertTrue(Thread.interrupted());
374 +                assertEquals(21, f.result);
375 +                checkCompletedNormally(f);
376 +
377 +                f = fibActions[1];
378 +                myself.interrupt();
379 +                assertTrue(myself.isInterrupted());
380 +                try {
381 +                    f.join();
382 +                    shouldThrow();
383 +                } catch (CancellationException success) {
384 +                    assertTrue(Thread.interrupted());
385 +                    checkCancelled(f);
386 +                }
387 +
388 +                f = fibActions[2];
389 +                myself.interrupt();
390 +                assertTrue(myself.isInterrupted());
391 +                try {
392 +                    f.join();
393 +                    shouldThrow();
394 +                } catch (FJException success) {
395 +                    assertTrue(Thread.interrupted());
396 +                    checkCompletedAbnormally(f, success);
397 +                }
398 +
399 +                // test quietlyJoin() ---------
400 +
401 +                f = fibActions[3];
402 +                myself.interrupt();
403 +                assertTrue(myself.isInterrupted());
404 +                f.quietlyJoin();
405 +                assertTrue(Thread.interrupted());
406 +                assertEquals(21, f.result);
407 +                checkCompletedNormally(f);
408 +
409 +                f = fibActions[4];
410 +                myself.interrupt();
411 +                assertTrue(myself.isInterrupted());
412 +                f.quietlyJoin();
413 +                assertTrue(Thread.interrupted());
414 +                checkCancelled(f);
415 +
416 +                f = fibActions[5];
417 +                myself.interrupt();
418 +                assertTrue(myself.isInterrupted());
419 +                f.quietlyJoin();
420 +                assertTrue(Thread.interrupted());
421 +                assertTrue(f.getException() instanceof FJException);
422 +                checkCompletedAbnormally(f, f.getException());
423 +            }};
424 +
425 +        Thread t;
426 +
427 +        t = newStartedThread(r);
428 +        testInvokeOnPool(mainPool(), a);
429 +        awaitTermination(t, LONG_DELAY_MS);
430 +
431 +        a.reinitialize();
432 +        t = newStartedThread(r);
433 +        testInvokeOnPool(singletonPool(), a);
434 +        awaitTermination(t, LONG_DELAY_MS);
435 +    }
436 +
437 +    /**
438       * get of a forked task returns when task completes
439       */
440      public void testForkGet() {
441          RecursiveAction a = new CheckedRecursiveAction() {
442 <            public void realCompute() throws Exception {
442 >            protected void realCompute() throws Exception {
443                  FibAction f = new FibAction(8);
444                  assertSame(f, f.fork());
445                  assertNull(f.get());
# Line 262 | Line 454 | public class RecursiveActionTest extends
454       */
455      public void testForkTimedGet() {
456          RecursiveAction a = new CheckedRecursiveAction() {
457 <            public void realCompute() throws Exception {
457 >            protected void realCompute() throws Exception {
458                  FibAction f = new FibAction(8);
459                  assertSame(f, f.fork());
460                  assertNull(f.get(5L, SECONDS));
# Line 277 | Line 469 | public class RecursiveActionTest extends
469       */
470      public void testForkTimedGetNPE() {
471          RecursiveAction a = new CheckedRecursiveAction() {
472 <            public void realCompute() throws Exception {
472 >            protected void realCompute() throws Exception {
473                  FibAction f = new FibAction(8);
474                  assertSame(f, f.fork());
475                  try {
# Line 293 | Line 485 | public class RecursiveActionTest extends
485       */
486      public void testForkQuietlyJoin() {
487          RecursiveAction a = new CheckedRecursiveAction() {
488 <            public void realCompute() {
488 >            protected void realCompute() {
489                  FibAction f = new FibAction(8);
490                  assertSame(f, f.fork());
491                  f.quietlyJoin();
# Line 303 | Line 495 | public class RecursiveActionTest extends
495          testInvokeOnPool(mainPool(), a);
496      }
497  
306
498      /**
499       * helpQuiesce returns when tasks are complete.
500       * getQueuedTaskCount returns 0 when quiescent
501       */
502      public void testForkHelpQuiesce() {
503          RecursiveAction a = new CheckedRecursiveAction() {
504 <            public void realCompute() {
504 >            protected void realCompute() {
505                  FibAction f = new FibAction(8);
506                  assertSame(f, f.fork());
507 <                f.helpQuiesce();
507 >                helpQuiesce();
508                  assertEquals(21, f.result);
509                  assertEquals(0, getQueuedTaskCount());
510                  checkCompletedNormally(f);
# Line 321 | Line 512 | public class RecursiveActionTest extends
512          testInvokeOnPool(mainPool(), a);
513      }
514  
324
515      /**
516       * invoke task throws exception when task completes abnormally
517       */
518      public void testAbnormalInvoke() {
519          RecursiveAction a = new CheckedRecursiveAction() {
520 <            public void realCompute() {
520 >            protected void realCompute() {
521                  FailingFibAction f = new FailingFibAction(8);
522                  try {
523                      f.invoke();
524                      shouldThrow();
525                  } catch (FJException success) {
526 <                    checkTaskThrew(f, success);
526 >                    checkCompletedAbnormally(f, success);
527                  }
528              }};
529          testInvokeOnPool(mainPool(), a);
# Line 344 | Line 534 | public class RecursiveActionTest extends
534       */
535      public void testAbnormalQuietlyInvoke() {
536          RecursiveAction a = new CheckedRecursiveAction() {
537 <            public void realCompute() {
537 >            protected void realCompute() {
538                  FailingFibAction f = new FailingFibAction(8);
539                  f.quietlyInvoke();
540                  assertTrue(f.getException() instanceof FJException);
541 <                checkTaskThrew(f, f.getException());
541 >                checkCompletedAbnormally(f, f.getException());
542              }};
543          testInvokeOnPool(mainPool(), a);
544      }
# Line 358 | Line 548 | public class RecursiveActionTest extends
548       */
549      public void testAbnormalForkJoin() {
550          RecursiveAction a = new CheckedRecursiveAction() {
551 <            public void realCompute() {
551 >            protected void realCompute() {
552                  FailingFibAction f = new FailingFibAction(8);
553                  assertSame(f, f.fork());
554                  try {
555                      f.join();
556                      shouldThrow();
557                  } catch (FJException success) {
558 <                    checkTaskThrew(f, success);
558 >                    checkCompletedAbnormally(f, success);
559                  }
560              }};
561          testInvokeOnPool(mainPool(), a);
# Line 376 | Line 566 | public class RecursiveActionTest extends
566       */
567      public void testAbnormalForkGet() {
568          RecursiveAction a = new CheckedRecursiveAction() {
569 <            public void realCompute() throws Exception {
569 >            protected void realCompute() throws Exception {
570                  FailingFibAction f = new FailingFibAction(8);
571                  assertSame(f, f.fork());
572                  try {
573                      f.get();
574                      shouldThrow();
575                  } catch (ExecutionException success) {
576 <                    checkTaskThrew(f, success.getCause());
576 >                    Throwable cause = success.getCause();
577 >                    assertTrue(cause instanceof FJException);
578 >                    checkCompletedAbnormally(f, cause);
579                  }
580              }};
581          testInvokeOnPool(mainPool(), a);
# Line 394 | Line 586 | public class RecursiveActionTest extends
586       */
587      public void testAbnormalForkTimedGet() {
588          RecursiveAction a = new CheckedRecursiveAction() {
589 <            public void realCompute() throws Exception {
589 >            protected void realCompute() throws Exception {
590                  FailingFibAction f = new FailingFibAction(8);
591                  assertSame(f, f.fork());
592                  try {
593                      f.get(5L, TimeUnit.SECONDS);
594                      shouldThrow();
595                  } catch (ExecutionException success) {
596 <                    checkTaskThrew(f, success.getCause());
596 >                    Throwable cause = success.getCause();
597 >                    assertTrue(cause instanceof FJException);
598 >                    checkCompletedAbnormally(f, cause);
599                  }
600              }};
601          testInvokeOnPool(mainPool(), a);
# Line 412 | Line 606 | public class RecursiveActionTest extends
606       */
607      public void testAbnormalForkQuietlyJoin() {
608          RecursiveAction a = new CheckedRecursiveAction() {
609 <            public void realCompute() {
609 >            protected void realCompute() {
610                  FailingFibAction f = new FailingFibAction(8);
611                  assertSame(f, f.fork());
612                  f.quietlyJoin();
613                  assertTrue(f.getException() instanceof FJException);
614 <                checkTaskThrew(f, f.getException());
614 >                checkCompletedAbnormally(f, f.getException());
615              }};
616          testInvokeOnPool(mainPool(), a);
617      }
# Line 427 | Line 621 | public class RecursiveActionTest extends
621       */
622      public void testCancelledInvoke() {
623          RecursiveAction a = new CheckedRecursiveAction() {
624 <            public void realCompute() {
624 >            protected void realCompute() {
625                  FibAction f = new FibAction(8);
626                  assertTrue(f.cancel(true));
627                  try {
# Line 445 | Line 639 | public class RecursiveActionTest extends
639       */
640      public void testCancelledForkJoin() {
641          RecursiveAction a = new CheckedRecursiveAction() {
642 <            public void realCompute() {
642 >            protected void realCompute() {
643                  FibAction f = new FibAction(8);
644                  assertTrue(f.cancel(true));
645                  assertSame(f, f.fork());
# Line 464 | Line 658 | public class RecursiveActionTest extends
658       */
659      public void testCancelledForkGet() {
660          RecursiveAction a = new CheckedRecursiveAction() {
661 <            public void realCompute() throws Exception {
661 >            protected void realCompute() throws Exception {
662                  FibAction f = new FibAction(8);
663                  assertTrue(f.cancel(true));
664                  assertSame(f, f.fork());
# Line 483 | Line 677 | public class RecursiveActionTest extends
677       */
678      public void testCancelledForkTimedGet() {
679          RecursiveAction a = new CheckedRecursiveAction() {
680 <            public void realCompute() throws Exception {
680 >            protected void realCompute() throws Exception {
681                  FibAction f = new FibAction(8);
682                  assertTrue(f.cancel(true));
683                  assertSame(f, f.fork());
# Line 502 | Line 696 | public class RecursiveActionTest extends
696       */
697      public void testCancelledForkQuietlyJoin() {
698          RecursiveAction a = new CheckedRecursiveAction() {
699 <            public void realCompute() {
699 >            protected void realCompute() {
700                  FibAction f = new FibAction(8);
701                  assertTrue(f.cancel(true));
702                  assertSame(f, f.fork());
# Line 518 | Line 712 | public class RecursiveActionTest extends
712      public void testGetPool() {
713          final ForkJoinPool mainPool = mainPool();
714          RecursiveAction a = new CheckedRecursiveAction() {
715 <            public void realCompute() {
715 >            protected void realCompute() {
716                  assertSame(mainPool, getPool());
717              }};
718          testInvokeOnPool(mainPool, a);
# Line 529 | Line 723 | public class RecursiveActionTest extends
723       */
724      public void testGetPool2() {
725          RecursiveAction a = new CheckedRecursiveAction() {
726 <            public void realCompute() {
726 >            protected void realCompute() {
727                  assertNull(getPool());
728              }};
729          assertNull(a.invoke());
# Line 540 | Line 734 | public class RecursiveActionTest extends
734       */
735      public void testInForkJoinPool() {
736          RecursiveAction a = new CheckedRecursiveAction() {
737 <            public void realCompute() {
737 >            protected void realCompute() {
738                  assertTrue(inForkJoinPool());
739              }};
740          testInvokeOnPool(mainPool(), a);
# Line 551 | Line 745 | public class RecursiveActionTest extends
745       */
746      public void testInForkJoinPool2() {
747          RecursiveAction a = new CheckedRecursiveAction() {
748 <            public void realCompute() {
748 >            protected void realCompute() {
749                  assertFalse(inForkJoinPool());
750              }};
751          assertNull(a.invoke());
# Line 563 | Line 757 | public class RecursiveActionTest extends
757      public void testWorkerGetPool() {
758          final ForkJoinPool mainPool = mainPool();
759          RecursiveAction a = new CheckedRecursiveAction() {
760 <            public void realCompute() {
760 >            protected void realCompute() {
761                  ForkJoinWorkerThread w =
762                      (ForkJoinWorkerThread) Thread.currentThread();
763                  assertSame(mainPool, w.getPool());
# Line 577 | Line 771 | public class RecursiveActionTest extends
771      public void testWorkerGetPoolIndex() {
772          final ForkJoinPool mainPool = mainPool();
773          RecursiveAction a = new CheckedRecursiveAction() {
774 <            public void realCompute() {
774 >            protected void realCompute() {
775                  ForkJoinWorkerThread w =
776 <                    (ForkJoinWorkerThread)(Thread.currentThread());
776 >                    (ForkJoinWorkerThread) Thread.currentThread();
777                  assertTrue(w.getPoolIndex() >= 0);
778 <                assertTrue(w.getPoolIndex() < mainPool.getPoolSize());
778 >                // pool size can shrink after assigning index, so cannot check
779 >                // assertTrue(w.getPoolIndex() < mainPool.getPoolSize());
780              }};
781          testInvokeOnPool(mainPool, a);
782      }
783  
589
784      /**
785       * setRawResult(null) succeeds
786       */
787      public void testSetRawResult() {
788          RecursiveAction a = new CheckedRecursiveAction() {
789 <            public void realCompute() {
789 >            protected void realCompute() {
790                  setRawResult(null);
791 +                assertNull(getRawResult());
792              }};
793          assertNull(a.invoke());
794      }
795  
796      /**
797 <     * A reinitialized task may be re-invoked
797 >     * A reinitialized normally completed task may be re-invoked
798       */
799      public void testReinitialize() {
800          RecursiveAction a = new CheckedRecursiveAction() {
801 <            public void realCompute() {
801 >            protected void realCompute() {
802                  FibAction f = new FibAction(8);
803                  checkNotDone(f);
804  
# Line 619 | Line 814 | public class RecursiveActionTest extends
814      }
815  
816      /**
817 +     * A reinitialized abnormally completed task may be re-invoked
818 +     */
819 +    public void testReinitializeAbnormal() {
820 +        RecursiveAction a = new CheckedRecursiveAction() {
821 +            protected void realCompute() {
822 +                FailingFibAction f = new FailingFibAction(8);
823 +                checkNotDone(f);
824 +
825 +                for (int i = 0; i < 3; i++) {
826 +                    try {
827 +                        f.invoke();
828 +                        shouldThrow();
829 +                    } catch (FJException success) {
830 +                        checkCompletedAbnormally(f, success);
831 +                    }
832 +                    f.reinitialize();
833 +                    checkNotDone(f);
834 +                }
835 +            }};
836 +        testInvokeOnPool(mainPool(), a);
837 +    }
838 +
839 +    /**
840       * invoke task throws exception after invoking completeExceptionally
841       */
842      public void testCompleteExceptionally() {
843          RecursiveAction a = new CheckedRecursiveAction() {
844 <            public void realCompute() {
844 >            protected void realCompute() {
845                  FibAction f = new FibAction(8);
846                  f.completeExceptionally(new FJException());
847                  try {
848                      f.invoke();
849                      shouldThrow();
850                  } catch (FJException success) {
851 <                    checkTaskThrew(f, success);
851 >                    checkCompletedAbnormally(f, success);
852                  }
853              }};
854          testInvokeOnPool(mainPool(), a);
# Line 641 | Line 859 | public class RecursiveActionTest extends
859       */
860      public void testComplete() {
861          RecursiveAction a = new CheckedRecursiveAction() {
862 <            public void realCompute() {
862 >            protected void realCompute() {
863                  FibAction f = new FibAction(8);
864                  f.complete(null);
865                  assertNull(f.invoke());
# Line 656 | Line 874 | public class RecursiveActionTest extends
874       */
875      public void testInvokeAll2() {
876          RecursiveAction a = new CheckedRecursiveAction() {
877 <            public void realCompute() {
877 >            protected void realCompute() {
878                  FibAction f = new FibAction(8);
879                  FibAction g = new FibAction(9);
880                  invokeAll(f, g);
# Line 673 | Line 891 | public class RecursiveActionTest extends
891       */
892      public void testInvokeAll1() {
893          RecursiveAction a = new CheckedRecursiveAction() {
894 <            public void realCompute() {
894 >            protected void realCompute() {
895                  FibAction f = new FibAction(8);
896                  invokeAll(f);
897                  checkCompletedNormally(f);
# Line 687 | Line 905 | public class RecursiveActionTest extends
905       */
906      public void testInvokeAll3() {
907          RecursiveAction a = new CheckedRecursiveAction() {
908 <            public void realCompute() {
908 >            protected void realCompute() {
909                  FibAction f = new FibAction(8);
910                  FibAction g = new FibAction(9);
911                  FibAction h = new FibAction(7);
# Line 710 | Line 928 | public class RecursiveActionTest extends
928       */
929      public void testInvokeAllCollection() {
930          RecursiveAction a = new CheckedRecursiveAction() {
931 <            public void realCompute() {
931 >            protected void realCompute() {
932                  FibAction f = new FibAction(8);
933                  FibAction g = new FibAction(9);
934                  FibAction h = new FibAction(7);
# Line 732 | Line 950 | public class RecursiveActionTest extends
950          testInvokeOnPool(mainPool(), a);
951      }
952  
735
953      /**
954       * invokeAll(tasks) with any null task throws NPE
955       */
956      public void testInvokeAllNPE() {
957          RecursiveAction a = new CheckedRecursiveAction() {
958 <            public void realCompute() {
958 >            protected void realCompute() {
959                  FibAction f = new FibAction(8);
960                  FibAction g = new FibAction(9);
961                  FibAction h = null;
# Line 755 | Line 972 | public class RecursiveActionTest extends
972       */
973      public void testAbnormalInvokeAll2() {
974          RecursiveAction a = new CheckedRecursiveAction() {
975 <            public void realCompute() {
975 >            protected void realCompute() {
976                  FibAction f = new FibAction(8);
977                  FailingFibAction g = new FailingFibAction(9);
978                  try {
979                      invokeAll(f, g);
980                      shouldThrow();
981                  } catch (FJException success) {
982 <                    checkTaskThrew(g, success);
982 >                    checkCompletedAbnormally(g, success);
983                  }
984              }};
985          testInvokeOnPool(mainPool(), a);
# Line 773 | Line 990 | public class RecursiveActionTest extends
990       */
991      public void testAbnormalInvokeAll1() {
992          RecursiveAction a = new CheckedRecursiveAction() {
993 <            public void realCompute() {
993 >            protected void realCompute() {
994                  FailingFibAction g = new FailingFibAction(9);
995                  try {
996                      invokeAll(g);
997                      shouldThrow();
998                  } catch (FJException success) {
999 <                    checkTaskThrew(g, success);
999 >                    checkCompletedAbnormally(g, success);
1000                  }
1001              }};
1002          testInvokeOnPool(mainPool(), a);
# Line 790 | Line 1007 | public class RecursiveActionTest extends
1007       */
1008      public void testAbnormalInvokeAll3() {
1009          RecursiveAction a = new CheckedRecursiveAction() {
1010 <            public void realCompute() {
1010 >            protected void realCompute() {
1011                  FibAction f = new FibAction(8);
1012                  FailingFibAction g = new FailingFibAction(9);
1013                  FibAction h = new FibAction(7);
# Line 798 | Line 1015 | public class RecursiveActionTest extends
1015                      invokeAll(f, g, h);
1016                      shouldThrow();
1017                  } catch (FJException success) {
1018 <                    checkTaskThrew(g, success);
1018 >                    checkCompletedAbnormally(g, success);
1019                  }
1020              }};
1021          testInvokeOnPool(mainPool(), a);
# Line 809 | Line 1026 | public class RecursiveActionTest extends
1026       */
1027      public void testAbnormalInvokeAllCollection() {
1028          RecursiveAction a = new CheckedRecursiveAction() {
1029 <            public void realCompute() {
1029 >            protected void realCompute() {
1030                  FailingFibAction f = new FailingFibAction(8);
1031                  FibAction g = new FibAction(9);
1032                  FibAction h = new FibAction(7);
# Line 821 | Line 1038 | public class RecursiveActionTest extends
1038                      invokeAll(set);
1039                      shouldThrow();
1040                  } catch (FJException success) {
1041 <                    checkTaskThrew(f, success);
1041 >                    checkCompletedAbnormally(f, success);
1042                  }
1043              }};
1044          testInvokeOnPool(mainPool(), a);
# Line 833 | Line 1050 | public class RecursiveActionTest extends
1050       */
1051      public void testTryUnfork() {
1052          RecursiveAction a = new CheckedRecursiveAction() {
1053 <            public void realCompute() {
1053 >            protected void realCompute() {
1054                  FibAction g = new FibAction(9);
1055                  assertSame(g, g.fork());
1056                  FibAction f = new FibAction(8);
# Line 852 | Line 1069 | public class RecursiveActionTest extends
1069       */
1070      public void testGetSurplusQueuedTaskCount() {
1071          RecursiveAction a = new CheckedRecursiveAction() {
1072 <            public void realCompute() {
1072 >            protected void realCompute() {
1073                  FibAction h = new FibAction(7);
1074                  assertSame(h, h.fork());
1075                  FibAction g = new FibAction(9);
# Line 861 | Line 1078 | public class RecursiveActionTest extends
1078                  assertSame(f, f.fork());
1079                  assertTrue(getSurplusQueuedTaskCount() > 0);
1080                  helpQuiesce();
1081 +                assertEquals(0, getSurplusQueuedTaskCount());
1082                  checkCompletedNormally(f);
1083                  checkCompletedNormally(g);
1084                  checkCompletedNormally(h);
# Line 873 | Line 1091 | public class RecursiveActionTest extends
1091       */
1092      public void testPeekNextLocalTask() {
1093          RecursiveAction a = new CheckedRecursiveAction() {
1094 <            public void realCompute() {
1094 >            protected void realCompute() {
1095                  FibAction g = new FibAction(9);
1096                  assertSame(g, g.fork());
1097                  FibAction f = new FibAction(8);
# Line 894 | Line 1112 | public class RecursiveActionTest extends
1112       */
1113      public void testPollNextLocalTask() {
1114          RecursiveAction a = new CheckedRecursiveAction() {
1115 <            public void realCompute() {
1115 >            protected void realCompute() {
1116                  FibAction g = new FibAction(9);
1117                  assertSame(g, g.fork());
1118                  FibAction f = new FibAction(8);
# Line 912 | Line 1130 | public class RecursiveActionTest extends
1130       */
1131      public void testPollTask() {
1132          RecursiveAction a = new CheckedRecursiveAction() {
1133 <            public void realCompute() {
1133 >            protected void realCompute() {
1134                  FibAction g = new FibAction(9);
1135                  assertSame(g, g.fork());
1136                  FibAction f = new FibAction(8);
# Line 930 | Line 1148 | public class RecursiveActionTest extends
1148       */
1149      public void testPeekNextLocalTaskAsync() {
1150          RecursiveAction a = new CheckedRecursiveAction() {
1151 <            public void realCompute() {
1151 >            protected void realCompute() {
1152                  FibAction g = new FibAction(9);
1153                  assertSame(g, g.fork());
1154                  FibAction f = new FibAction(8);
# Line 950 | Line 1168 | public class RecursiveActionTest extends
1168       */
1169      public void testPollNextLocalTaskAsync() {
1170          RecursiveAction a = new CheckedRecursiveAction() {
1171 <            public void realCompute() {
1171 >            protected void realCompute() {
1172                  FibAction g = new FibAction(9);
1173                  assertSame(g, g.fork());
1174                  FibAction f = new FibAction(8);
# Line 969 | Line 1187 | public class RecursiveActionTest extends
1187       */
1188      public void testPollTaskAsync() {
1189          RecursiveAction a = new CheckedRecursiveAction() {
1190 <            public void realCompute() {
1190 >            protected void realCompute() {
1191                  FibAction g = new FibAction(9);
1192                  assertSame(g, g.fork());
1193                  FibAction f = new FibAction(8);
# Line 982 | Line 1200 | public class RecursiveActionTest extends
1200          testInvokeOnPool(asyncSingletonPool(), a);
1201      }
1202  
1203 +    /** Demo from RecursiveAction javadoc */
1204 +    static class SortTask extends RecursiveAction {
1205 +        final long[] array; final int lo, hi;
1206 +        SortTask(long[] array, int lo, int hi) {
1207 +            this.array = array; this.lo = lo; this.hi = hi;
1208 +        }
1209 +        SortTask(long[] array) { this(array, 0, array.length); }
1210 +        protected void compute() {
1211 +            if (hi - lo < THRESHOLD)
1212 +                sortSequentially(lo, hi);
1213 +            else {
1214 +                int mid = (lo + hi) >>> 1;
1215 +                invokeAll(new SortTask(array, lo, mid),
1216 +                          new SortTask(array, mid, hi));
1217 +                merge(lo, mid, hi);
1218 +            }
1219 +        }
1220 +        // implementation details follow:
1221 +        static final int THRESHOLD = 100;
1222 +        void sortSequentially(int lo, int hi) {
1223 +            Arrays.sort(array, lo, hi);
1224 +        }
1225 +        void merge(int lo, int mid, int hi) {
1226 +            long[] buf = Arrays.copyOfRange(array, lo, mid);
1227 +            for (int i = 0, j = lo, k = mid; i < buf.length; j++)
1228 +                array[j] = (k == hi || buf[i] < array[k]) ?
1229 +                    buf[i++] : array[k++];
1230 +        }
1231 +    }
1232 +
1233 +    /**
1234 +     * SortTask demo works as advertised
1235 +     */
1236 +    public void testSortTaskDemo() {
1237 +        ThreadLocalRandom rnd = ThreadLocalRandom.current();
1238 +        long[] array = new long[1007];
1239 +        for (int i = 0; i < array.length; i++)
1240 +            array[i] = rnd.nextLong();
1241 +        long[] arrayClone = array.clone();
1242 +        testInvokeOnPool(mainPool(), new SortTask(array));
1243 +        Arrays.sort(arrayClone);
1244 +        assertTrue(Arrays.equals(array, arrayClone));
1245 +    }
1246   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines