ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/BinaryAsyncAction.java
Revision: 1.17
Committed: Sat Sep 12 18:11:24 2015 UTC (8 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.16: +4 -5 lines
Log Message:
Use jdk8 methods

File Contents

# Content
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/publicdomain/zero/1.0/
5 */
6
7 import java.util.concurrent.*;
8 import java.util.concurrent.atomic.*;
9
10 /**
11 * AsyncActions that are always linked in binary parent-child
12 * relationships. Compared to Recursive tasks, BinaryAsyncActions may
13 * have smaller stack space footprints and faster completion mechanics
14 * but higher per-task footprints. Compared to LinkedAsyncActions,
15 * BinaryAsyncActions are simpler to use and have less overhead in
16 * typical usages but are restricted to binary computation trees.
17 *
18 * <p>Upon construction, a BinaryAsyncAction does not bear any
19 * linkages. For non-root tasks, links must be established using
20 * method {@link #linkSubtasks} before use.
21 *
22 * <p><b>Sample Usage.</b> A version of Fibonacci:
23 * <pre>
24 * class Fib extends BinaryAsyncAction {
25 * final int n;
26 * int result;
27 * Fib(int n) { this.n = n; }
28 * protected void compute() {
29 * if (n &gt; 1) {
30 * linkAndForkSubtasks(new Fib(n-1), new Fib(n-2));
31 * else {
32 * result = n; // fib(0)==0; fib(1)==1
33 * complete();
34 * }
35 * }
36 * protected void onComplete(BinaryAsyncAction x, BinaryAsyncAction y) {
37 * result = ((Fib)x).result + ((Fib)y).result;
38 * }
39 * }
40 * </pre>
41 * An alternative, and usually faster, strategy is to instead use a
42 * loop to fork subtasks:
43 * <pre>
44 * protected void compute() {
45 * Fib f = this;
46 * while (f.n &gt; 1) {
47 * Fib left = new Fib(f.n - 1);
48 * Fib right = new Fib(f.n - 2);
49 * f.linkSubtasks(left, right);
50 * right.fork(); // fork right
51 * f = left; // loop on left
52 * }
53 * f.result = f.n;
54 * f.complete();
55 * }
56 * }
57 * </pre>
58 */
59 public abstract class BinaryAsyncAction extends ForkJoinTask<Void> {
60
61 /**
62 * Parent to propagate completion; nulled after completion to
63 * avoid retaining entire tree as garbage
64 */
65 private BinaryAsyncAction parent;
66
67 /**
68 * Sibling to access on subtask joins, also nulled after completion.
69 */
70 private BinaryAsyncAction sibling;
71
72 /**
73 * Creates a new action. Unless this is a root task, you will need
74 * to link it using method {@link #linkSubtasks} before forking as
75 * a subtask.
76 */
77 protected BinaryAsyncAction() {
78 }
79
80 public final Void getRawResult() { return null; }
81 protected final void setRawResult(Void mustBeNull) { }
82
83 /**
84 * Establishes links for the given tasks to have the current task
85 * as parent, and each other as siblings.
86 * @param x one subtask
87 * @param y the other subtask
88 * @throws NullPointerException if either argument is null
89 */
90 public final void linkSubtasks(BinaryAsyncAction x, BinaryAsyncAction y) {
91 x.parent = y.parent = this;
92 x.sibling = y;
93 y.sibling = x;
94 }
95
96 /**
97 * Overridable callback action triggered upon {@code complete} of
98 * subtasks. Upon invocation, both subtasks have completed.
99 * After return, this task {@code isDone} and is joinable by
100 * other tasks. The default version of this method does nothing.
101 * But it may be overridden in subclasses to perform some action
102 * (for example a reduction) when this task is completes.
103 * @param x one subtask
104 * @param y the other subtask
105 */
106 protected void onComplete(BinaryAsyncAction x, BinaryAsyncAction y) {
107 }
108
109 /**
110 * Overridable callback action triggered by
111 * {@code completeExceptionally}. Upon invocation, this task has
112 * aborted due to an exception (accessible via
113 * {@code getException}). If this method returns {@code true},
114 * the exception propagates to the current task's
115 * parent. Otherwise, normal completion is propagated. The
116 * default version of this method does nothing and returns
117 * {@code true}.
118 * @return true if this task's exception should be propagated to
119 * this task's parent
120 */
121 protected boolean onException() {
122 return true;
123 }
124
125 /**
126 * Equivalent in effect to invoking {@link #linkSubtasks} and then
127 * forking both tasks.
128 * @param x one subtask
129 * @param y the other subtask
130 */
131 public void linkAndForkSubtasks(BinaryAsyncAction x, BinaryAsyncAction y) {
132 linkSubtasks(x, y);
133 y.fork();
134 x.fork();
135 }
136
137 /** Basic per-task complete */
138 private void completeThis() {
139 super.complete(null);
140 }
141
142 /** Basic per-task completeExceptionally */
143 private void completeThisExceptionally(Throwable ex) {
144 super.completeExceptionally(ex);
145 }
146
147 /*
148 * We use one bit join count on taskState. The first arriving
149 * thread CAS's from 0 to 1. The second ultimately sets status
150 * to signify completion.
151 */
152
153 /**
154 * Completes this task, and if this task has a sibling that is
155 * also complete, invokes {@code onComplete} of parent task, and so
156 * on. If an exception is encountered, tasks instead
157 * {@code completeExceptionally}.
158 */
159 public final void complete() {
160 // todo: Use tryUnfork without possibly blowing stack
161 BinaryAsyncAction a = this;
162 for (;;) {
163 BinaryAsyncAction s = a.sibling;
164 BinaryAsyncAction p = a.parent;
165 a.sibling = null;
166 a.parent = null;
167 a.completeThis();
168 if (p == null || p.markForkJoinTask())
169 break;
170 try {
171 p.onComplete(a, s);
172 } catch (Throwable rex) {
173 p.completeExceptionally(rex);
174 return;
175 }
176 a = p;
177 }
178 }
179
180 /**
181 * Completes this task abnormally. Unless this task already
182 * cancelled or aborted, upon invocation, this method invokes
183 * {@code onException}, and then, depending on its return value,
184 * completes parent (if one exists) exceptionally or normally. To
185 * avoid unbounded exception loops, this method aborts if an
186 * exception is encountered in any {@code onException}
187 * invocation.
188 * @param ex the exception to throw when joining this task
189 * @throws NullPointerException if ex is null
190 * @throws Throwable if any invocation of
191 * {@code onException} does so
192 */
193 public final void completeExceptionally(Throwable ex) {
194 BinaryAsyncAction a = this;
195 while (!a.isCompletedAbnormally()) {
196 a.completeThisExceptionally(ex);
197 BinaryAsyncAction s = a.sibling;
198 if (s != null)
199 s.cancel(false);
200 if (!a.onException() || (a = a.parent) == null)
201 break;
202 }
203 }
204
205 /**
206 * Returns this task's parent, or null if none or this task
207 * is already complete.
208 * @return this task's parent, or null if none
209 */
210 public final BinaryAsyncAction getParent() {
211 return parent;
212 }
213
214 /**
215 * Returns this task's sibling, or null if none or this task is
216 * already complete.
217 * @return this task's sibling, or null if none
218 */
219 public BinaryAsyncAction getSibling() {
220 return sibling;
221 }
222
223 /**
224 * Resets the internal bookkeeping state of this task, erasing
225 * parent and child linkages.
226 */
227 public void reinitialize() {
228 parent = sibling = null;
229 super.reinitialize();
230 }
231
232 <<<<<<< BinaryAsyncAction.java
233 =======
234 /**
235 * Gets the control state, which is initially zero, or negative if
236 * this task has completed or cancelled. Once negative, the value
237 * cannot be changed.
238 * @return control state
239 */
240 protected final int getControlState() {
241 return controlState;
242 }
243
244 /**
245 * Atomically sets the control state to the given updated value if
246 * the current value is and equal to the expected value.
247 * @param expect the expected value
248 * @param update the new value
249 * @return true if successful
250 */
251 protected final boolean compareAndSetControlState(int expect,
252 int update) {
253 return controlStateUpdater.compareAndSet(this, expect, update);
254 }
255
256 /**
257 * Attempts to set the control state to the given value, failing if
258 * this task is already completed or the control state value would be
259 * negative.
260 * @param value the new value
261 * @return true if successful
262 */
263 protected final void setControlState(int value) {
264 controlState = value;
265 }
266
267 /**
268 * Increments the control state.
269 * @param value the new value
270 */
271 protected final void incrementControlState() {
272 controlStateUpdater.incrementAndGet(this);
273 }
274
275 /**
276 * Decrements the control state.
277 * @return true if successful
278 */
279 protected final void decrementControlState() {
280 controlStateUpdater.decrementAndGet(this);
281 }
282 >>>>>>> 1.14
283
284 }