annotate Implab/PromiseExtensions.cs @ 160:5802131432e4 v2

fixed regression: race condition in Promise DFA refactoring
author cin
date Thu, 18 Feb 2016 19:38:54 +0300
parents ec91a6dfa5b3
children 822aab37b107
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
1 using System.Threading;
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
2 using System;
109
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
3 using Implab.Diagnostics;
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
4 using System.Collections.Generic;
109
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
5
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
6
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
7 #if NET_4_5
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
8 using System.Threading.Tasks;
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
9 #endif
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
10
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
11 namespace Implab {
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
12 public static class PromiseExtensions {
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
13 public static IPromise<T> DispatchToCurrentContext<T>(this IPromise<T> that) {
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
14 Safe.ArgumentNotNull(that, "that");
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
15 var context = SynchronizationContext.Current;
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
16 if (context == null)
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
17 return that;
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
18
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
19 var p = new SyncContextPromise<T>(context);
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
20 p.On(that.Cancel, PromiseEventType.Cancelled);
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
21
104
5f10d54b45df renamed Promise.Last -> Promise.On
cin
parents: 101
diff changeset
22 that.On(
76
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
23 p.Resolve,
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
24 p.Reject,
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
25 p.Cancel
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
26 );
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
27 return p;
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
28 }
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
29
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
30 public static IPromise<T> DispatchToContext<T>(this IPromise<T> that, SynchronizationContext context) {
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
31 Safe.ArgumentNotNull(that, "that");
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
32 Safe.ArgumentNotNull(context, "context");
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
33
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
34 var p = new SyncContextPromise<T>(context);
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
35 p.On(that.Cancel, PromiseEventType.Cancelled);
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
36
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
37
104
5f10d54b45df renamed Promise.Last -> Promise.On
cin
parents: 101
diff changeset
38 that.On(
76
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
39 p.Resolve,
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
40 p.Reject,
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 75
diff changeset
41 p.Cancel
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
42 );
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
43 return p;
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
44 }
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
45
101
279e226dffdd code cleanup
cin
parents: 76
diff changeset
46 /// <summary>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
47 /// Ensures the dispatched.
279e226dffdd code cleanup
cin
parents: 76
diff changeset
48 /// </summary>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
49 /// <returns>The dispatched.</returns>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
50 /// <param name="that">That.</param>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
51 /// <param name="head">Head.</param>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
52 /// <param name="cleanup">Cleanup.</param>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
53 /// <typeparam name="TPromise">The 1st type parameter.</typeparam>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
54 /// <typeparam name="T">The 2nd type parameter.</typeparam>
279e226dffdd code cleanup
cin
parents: 76
diff changeset
55 public static TPromise EnsureDispatched<TPromise,T>(this TPromise that, IPromise<T> head, Action<T> cleanup) where TPromise : IPromise{
279e226dffdd code cleanup
cin
parents: 76
diff changeset
56 Safe.ArgumentNotNull(that, "that");
279e226dffdd code cleanup
cin
parents: 76
diff changeset
57 Safe.ArgumentNotNull(head, "head");
279e226dffdd code cleanup
cin
parents: 76
diff changeset
58
138
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
59 that.On(() => head.On(cleanup), PromiseEventType.Cancelled);
101
279e226dffdd code cleanup
cin
parents: 76
diff changeset
60
279e226dffdd code cleanup
cin
parents: 76
diff changeset
61 return that;
279e226dffdd code cleanup
cin
parents: 76
diff changeset
62 }
279e226dffdd code cleanup
cin
parents: 76
diff changeset
63
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
64 public static AsyncCallback AsyncCallback<T>(this Promise<T> that, Func<IAsyncResult,T> callback) {
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
65 Safe.ArgumentNotNull(that, "that");
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
66 Safe.ArgumentNotNull(callback, "callback");
109
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
67 var op = TraceContext.Instance.CurrentOperation;
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
68 return ar => {
109
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
69 TraceContext.Instance.EnterLogicalOperation(op,false);
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
70 try {
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
71 that.Resolve(callback(ar));
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
72 } catch (Exception err) {
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
73 that.Reject(err);
109
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
74 } finally {
1b7ebcc52e5a minor fixes
cin
parents: 104
diff changeset
75 TraceContext.Instance.Leave();
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
76 }
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
77 };
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
78 }
110
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
79
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
80 static void CancelCallback(object cookie) {
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
81 ((ICancellable)cookie).Cancel();
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
82 }
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
83
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
84 /// <summary>
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
85 /// Cancells promise after the specified timeout is elapsed.
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
86 /// </summary>
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
87 /// <param name="that">The promise to cancel on timeout.</param>
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
88 /// <param name="milliseconds">The timeout in milliseconds.</param>
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
89 /// <typeparam name="TPromise">The 1st type parameter.</typeparam>
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
90 public static TPromise Timeout<TPromise>(this TPromise that, int milliseconds) where TPromise : IPromise {
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
91 Safe.ArgumentNotNull(that, "that");
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
92 var timer = new Timer(CancelCallback, that, milliseconds, -1);
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
93 that.On(timer.Dispose, PromiseEventType.All);
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
94 return that;
1a8426e6e895 added promise timeout helper
cin
parents: 109
diff changeset
95 }
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
96
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
97 public static IPromise Bundle(this ICollection<IPromise> that) {
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
98 Safe.ArgumentNotNull(that, "that");
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
99
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
100 int count = that.Count;
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
101 int errors = 0;
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
102 var medium = new Promise();
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
103
136
e9e7940c7d98 shared locks + tests
cin
parents: 124
diff changeset
104 if (count == 0) {
e9e7940c7d98 shared locks + tests
cin
parents: 124
diff changeset
105 medium.Resolve();
e9e7940c7d98 shared locks + tests
cin
parents: 124
diff changeset
106 return medium;
e9e7940c7d98 shared locks + tests
cin
parents: 124
diff changeset
107 }
e9e7940c7d98 shared locks + tests
cin
parents: 124
diff changeset
108
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
109 medium.On(() => {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
110 foreach(var p2 in that)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
111 p2.Cancel();
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
112 }, PromiseEventType.ErrorOrCancel);
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
113
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
114 foreach (var p in that)
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
115 p.On(
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
116 () => {
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
117 if (Interlocked.Decrement(ref count) == 0)
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
118 medium.Resolve();
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
119 },
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
120 error => {
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
121 if (Interlocked.Increment(ref errors) == 1)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
122 medium.Reject(
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
123 new Exception("The dependency promise is failed", error)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
124 );
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
125 },
138
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
126 reason => {
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
127 if (Interlocked.Increment(ref errors) == 1)
138
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
128 medium.Cancel(
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
129 new Exception("The dependency promise is cancelled")
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
130 );
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
131 }
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
132 );
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
133
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
134 return medium;
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 110
diff changeset
135 }
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
136
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
137 public static IPromise<T[]> Bundle<T>(this ICollection<IPromise<T>> that) {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
138 Safe.ArgumentNotNull(that, "that");
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
139
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
140 int count = that.Count;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
141 int errors = 0;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
142 var medium = new Promise<T[]>();
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
143 var results = new T[that.Count];
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
144
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
145 medium.On(() => {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
146 foreach(var p2 in that)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
147 p2.Cancel();
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
148 }, PromiseEventType.ErrorOrCancel);
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
149
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
150 int i = 0;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
151 foreach (var p in that) {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
152 var idx = i;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
153 p.On(
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
154 x => {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
155 results[idx] = x;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
156 if (Interlocked.Decrement(ref count) == 0)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
157 medium.Resolve(results);
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
158 },
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
159 error => {
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
160 if (Interlocked.Increment(ref errors) == 1)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
161 medium.Reject(
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
162 new Exception("The dependency promise is failed", error)
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
163 );
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
164 },
138
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
165 reason => {
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
166 if (Interlocked.Increment(ref errors) == 1)
138
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
167 medium.Cancel(
f75cfa58e3d4 added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents: 136
diff changeset
168 new Exception("The dependency promise is cancelled", reason)
124
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
169 );
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
170 }
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
171 );
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
172 i++;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
173 }
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
174
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
175 return medium;
a336cb13c6a9 major update, added Drain mathod to AsyncQueue class
cin
parents: 119
diff changeset
176 }
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
177
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
178 public static IPromise Then(this IPromise that, Action success, Action<Exception> error, Action<Exception> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
179 Safe.ArgumentNotNull(that, "that");
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
180
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
181 var d = new ActionTask(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
182 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
183 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
184 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
185 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
186 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
187
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
188 public static IPromise Then(this IPromise that, Action success, Action<Exception> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
189 return Then(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
190 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
191
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
192 public static IPromise Then(this IPromise that, Action success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
193 return Then(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
194 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
195
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
196 public static IPromise<T> Then<T>(this IPromise that, Func<T> success, Func<Exception, T> error, Func<Exception, T> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
197 Safe.ArgumentNotNull(that, "that");
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
198
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
199 var d = new FuncTask<T>(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
200 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
201 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
202 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
203 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
204 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
205
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
206 public static IPromise<T> Then<T>(this IPromise that, Func<T> success, Func<Exception, T> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
207 return Then(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
208 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
209
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
210 public static IPromise<T> Then<T>(this IPromise that, Func<T> success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
211 return Then(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
212 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
213
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
214 public static IPromise<T2> Then<T, T2>(this IPromise<T> that, Func<T, T2> success, Func<Exception, T2> error, Func<Exception, T2> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
215 Safe.ArgumentNotNull(that, "that");
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
216 var d = new FuncTask<T,T2>(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
217 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
218 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
219 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
220 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
221 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
222
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
223 public static IPromise<T2> Then<T, T2>(this IPromise<T> that, Func<T, T2> success, Func<Exception, T2> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
224 return Then(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
225 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
226
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
227 public static IPromise<T2> Then<T, T2>(this IPromise<T> that, Func<T, T2> success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
228 return Then(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
229 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
230
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
231 #region chain traits
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
232 public static IPromise Chain(this IPromise that, Func<IPromise> success, Func<Exception,IPromise> error, Func<Exception,IPromise> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
233 Safe.ArgumentNotNull(that, "that");
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
234
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
235 var d = new ActionChainTask(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
236 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
237 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
238 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
239 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
240 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
241
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
242 public static IPromise Chain(this IPromise that, Func<IPromise> success, Func<Exception,IPromise> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
243 return Chain(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
244 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
245
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
246 public static IPromise Chain(this IPromise that, Func<IPromise> success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
247 return Chain(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
248 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
249
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
250 public static IPromise<T> Chain<T>(this IPromise that, Func<IPromise<T>> success, Func<Exception, IPromise<T>> error, Func<Exception, IPromise<T>> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
251 Safe.ArgumentNotNull(that, "that");
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
252
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
253 var d = new FuncChainTask<T>(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
254 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
255 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
256 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
257 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
258 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
259
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
260 public static IPromise<T> Chain<T>(this IPromise that, Func<IPromise<T>> success, Func<Exception, IPromise<T>> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
261 return Chain(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
262 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
263
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
264 public static IPromise<T> Chain<T>(this IPromise that, Func<IPromise<T>> success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
265 return Chain(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
266 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
267
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
268 public static IPromise<T2> Chain<T, T2>(this IPromise<T> that, Func<T, IPromise<T2>> success, Func<Exception, IPromise<T2>> error, Func<Exception, IPromise<T2>> cancel) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
269 Safe.ArgumentNotNull(that, "that");
149
eb793fbbe4ea fixed promises cancellation
cin
parents: 145
diff changeset
270 var d = new FuncChainTask<T,T2>(success, error, cancel, false);
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
271 that.On(d.Resolve, d.Reject, d.CancelOperation);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
272 if (success != null)
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
273 d.CancellationRequested(that.Cancel);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
274 return d;
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
275 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
276
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
277 public static IPromise<T2> Chain<T, T2>(this IPromise<T> that, Func<T, IPromise<T2>> success, Func<Exception, IPromise<T2>> error) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
278 return Chain(that, success, error, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
279 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
280
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
281 public static IPromise<T2> Chain<T, T2>(this IPromise<T> that, Func<T, IPromise<T2>> success) {
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
282 return Chain(that, success, null, null);
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
283 }
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
284
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
285 #endregion
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 138
diff changeset
286
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
287
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
288 #if NET_4_5
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
289
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 149
diff changeset
290 public static PromiseAwaiter<T> GetAwaiter<T>(this IPromise<T> that) {
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
291 Safe.ArgumentNotNull(that, "that");
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
292
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 149
diff changeset
293 return new PromiseAwaiter<T>(that);
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
294 }
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
295
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
296 #endif
72
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
297 }
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
298 }
d67b95eddaf4 promises refactoring
cin
parents:
diff changeset
299