forked from UiPath/CoreWF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AsyncTaskCodeActivity.cs
153 lines (131 loc) · 4.53 KB
/
AsyncTaskCodeActivity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
using System.Threading;
using System.Threading.Tasks;
namespace System.Activities
{
public abstract class AsyncTaskCodeActivity : AsyncCodeActivity
{
protected sealed override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state)
{
var cts = new CancellationTokenSource();
context.UserState = cts;
var task = ExecuteAsync(context, cts.Token);
var tcs = new TaskCompletionSource<object>(state);
task.ContinueWith(t =>
{
if (t.IsFaulted)
{
tcs.TrySetException(t.Exception!.InnerExceptions); // If it's faulted, there was an exception.
}
else if (t.IsCanceled)
{
tcs.TrySetCanceled();
}
else
{
_ = tcs.TrySetResult(null);
}
callback?.Invoke(tcs.Task);
}, cts.Token);
return tcs.Task;
}
protected sealed override void EndExecute(AsyncCodeActivityContext context, IAsyncResult result)
{
var task = (Task) result;
try
{
task.Wait();
}
catch (TaskCanceledException)
{
if (context.IsCancellationRequested)
{
context.MarkCanceled();
}
throw;
}
catch (AggregateException aex)
{
foreach (var ex in aex.Flatten().InnerExceptions)
{
if (ex is not TaskCanceledException)
return;
if (context.IsCancellationRequested)
context.MarkCanceled();
}
throw;
}
}
protected sealed override void Cancel(AsyncCodeActivityContext context)
{
var cts = (CancellationTokenSource)context.UserState;
cts.Cancel();
}
public abstract Task ExecuteAsync(AsyncCodeActivityContext context, CancellationToken cancellationToken);
}
public abstract class AsyncTaskCodeActivity<TResult> : AsyncCodeActivity<TResult>
{
protected sealed override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state)
{
var cts = new CancellationTokenSource();
context.UserState = cts;
var task = ExecuteAsync(context, cts.Token);
var tcs = new TaskCompletionSource<TResult>(state);
task.ContinueWith(t =>
{
if (t.IsFaulted)
{
tcs.TrySetException(t.Exception!.InnerExceptions); // If it's faulted, there was an exception.
}
else if (t.IsCanceled)
{
tcs.TrySetCanceled();
}
else
{
tcs.TrySetResult(t.Result);
}
callback?.Invoke(tcs.Task);
}, cts.Token);
return tcs.Task;
}
protected sealed override TResult EndExecute(AsyncCodeActivityContext context, IAsyncResult result)
{
var task = (Task<TResult>) result;
try
{
if (!task.IsCompleted)
{
task.Wait();
}
return task.Result;
}
catch (OperationCanceledException)
{
if (context.IsCancellationRequested)
{
context.MarkCanceled();
}
throw;
}
catch (AggregateException aex)
{
foreach (var ex in aex.Flatten().InnerExceptions)
{
if (ex is not OperationCanceledException)
continue;
if (context.IsCancellationRequested)
{
context.MarkCanceled();
}
}
throw;
}
}
protected sealed override void Cancel(AsyncCodeActivityContext context)
{
var cts = (CancellationTokenSource) context.UserState;
cts.Cancel();
}
public abstract Task<TResult> ExecuteAsync(AsyncCodeActivityContext context, CancellationToken cancellationToken);
}
}