forked from mtmucha/coros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchain_tasks.h
453 lines (362 loc) · 13.1 KB
/
chain_tasks.h
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#ifndef COROS_INCLUDE_CHAIN_TASKS_H_
#define COROS_INCLUDE_CHAIN_TASKS_H_
#include <coroutine>
#include <exception>
#include <expected>
#include <functional>
#include <tuple>
#include <type_traits>
#include <utility>
#include "task.h"
namespace coros {
namespace detail {
template <typename T>
struct extract_return_type;
template <typename R, typename U>
struct extract_return_type<coros::Task<R>(*)(U)> {
using type = R;
};
template <typename T>
using extract_return_type_t = typename extract_return_type<T>::type;
template <typename T>
concept FunctionNoParams = requires {
requires std::is_function_v<T>;
requires std::is_same_v<T, void()> || std::is_same_v<T, void(*)()>;
};
template<typename T>
struct is_Task : std::false_type{};
template<typename T>
struct is_Task<coros::Task<T>> : std::true_type{};
template<typename T>
concept IsTask = is_Task<T>::value;
template<typename T>
concept IsNotTask = !is_Task<T>::value;
//
// Forward declarations.
//
template<typename T, typename U, typename F, typename... Funcs>
requires (!FunctionNoParams<F> && IsNotTask<U>)
coros::Task<T> process_tasks(U val, F f, Funcs... functions);
template<typename T, IsNotTask U, typename F>
requires (!FunctionNoParams<F> && IsNotTask<U>)
coros::Task<T> process_tasks(U val, F f);
template<typename... Funcs>
coros::Task<void> process_tasks(coros::Task<void>(*f)(), Funcs... functions);
inline coros::Task<void> process_tasks(coros::Task<void>(*f)());
template<typename... Funcs>
coros::Task<void> process_tasks(coros::Task<void>(*f)());
template<typename T, typename U, typename... Funcs>
coros::Task<T> process_tasks(coros::Task<U>& starting_task, Funcs... functions);
template<typename T, typename U>
coros::Task<T> process_tasks(coros::Task<U>& starting_task);
//
// Function definitions.
//
template<typename T, typename U, typename F, typename... Funcs>
requires (!FunctionNoParams<F> && IsNotTask<U>)
coros::Task<T> process_tasks(U val, F f, Funcs... functions) {
// Extract the return type from the pointer
using return_type = extract_return_type_t<F>;
// Construct the promise object and task object
coros::Task<return_type> t = f(std::move(val));
// Execute the function
co_await t;
// An error occured. Should return unexpected
// Rethrown exception will be caught, propagation
// of the exception.
if (!t.has_value()) {
std::rethrow_exception(t.error());
}
// TODO : Do not like this, should be more readable.
if constexpr (std::is_void_v<return_type>) {
auto next_task = coros::detail::process_tasks(functions...);
co_await next_task;
if (!next_task.has_value()) {
std::rethrow_exception(next_task.error());
}
co_return;
} else {
auto next_task = coros::detail::process_tasks<T>(*std::move(t), functions...);
co_await next_task;
if (!next_task.has_value()) {
std::rethrow_exception(next_task.error());
}
if constexpr (std::is_void_v<T>) {
co_return;
} else{
co_return *std::move(next_task);
}
}
}
// Base case
template<typename T, IsNotTask U, typename F>
requires (!FunctionNoParams<F> && IsNotTask<U>)
coros::Task<T> process_tasks(U val, F f) {
// Extract the return type from the pointer
using return_type = extract_return_type_t<F>;
// Construct the promise object and task object
coros::Task<return_type> t = f(std::move(val));
// Execute the function
co_await t;
// An error occurred. Should return unexpected
// Rethrown exception will be caught, propagation
// of the exception.
if (!t.has_value()) {
std::rethrow_exception(t.error());
}
if constexpr (std::is_void_v<T>) {
co_return;
} else{
co_return *std::move(t);
}
}
// TODO : Maybe fix the concept.
template<typename... Funcs>
coros::Task<void> process_tasks(coros::Task<void>(*f)(), Funcs... functions) {
coros::Task<void> t = f();
co_await t;
if (!t.has_value()) {
std::rethrow_exception(t.error());
}
auto next_task = coros::detail::process_tasks(functions...);
co_await next_task;
if (!next_task.has_value()) {
std::rethrow_exception(next_task.error());
}
co_return;
}
inline coros::Task<void> process_tasks(coros::Task<void>(*f)()) {
coros::Task<void> t = f();
co_await t;
if (!t.has_value()) {
std::rethrow_exception(t.error());
}
co_return;
}
template<typename T, typename U, typename... Funcs>
coros::Task<T> process_tasks(coros::Task<U>& starting_task, Funcs... functions) {
// Execute the first task.
co_await starting_task;
if (!starting_task.has_value()) {
std::rethrow_exception(starting_task.error());
}
if constexpr (std::is_void_v<U>) {
auto next_task = coros::detail::process_tasks(functions...);
co_await next_task;
if (!next_task.has_value()) {
std::rethrow_exception(next_task.error());
}
co_return;
} else {
auto next_task = coros::detail::process_tasks<T>(*std::move(starting_task), functions...);
co_await next_task;
if (!next_task.has_value()) {
std::rethrow_exception(next_task.error());
}
if constexpr (std::is_void_v<T>) {
co_return;
} else{
co_return *next_task;
}
}
}
// Base case
template<typename T, typename U>
coros::Task<T> process_tasks(coros::Task<U>& starting_task) {
// Execute the function
co_await starting_task;
// An error occurred. Should return unexpected
// Rethrown exception will be caught, propagation
// of the exception.
if (!starting_task.has_value()) {
std::rethrow_exception(starting_task.error());
}
if constexpr (std::is_void_v<T>) {
co_return;
} else{
co_return *starting_task;
}
}
} // namespace detail
// Template arguments:
//
// StartingType - Type that is passed to the constructor of the awaitable.
// EndingType - Type that is returned to the user, final expected returned to
// the user is std::expected<EndingType, std::exception_ptr>.
// TaskStart - Set to true if the awaitable is passed a task to execute
// rather than a value.
// Funcs - Individual accumulated functions that should be executed on the value
// when the awaitable is co_await-ed.
template<
typename StartingType,
typename EndingType = StartingType,
bool TaskStart = false,
typename... Funcs>
class ChainAwaitable {
public:
ChainAwaitable(std::expected<StartingType, std::exception_ptr>&& expected)
: expected_(std::move(expected)) {}
ChainAwaitable(std::expected<StartingType, std::exception_ptr>& expected)
: expected_(expected) {}
ChainAwaitable(coros::Task<StartingType>&& starting_task)
: starting_task_(std::move(starting_task)) {}
template<typename U>
ChainAwaitable(U&& val)
: expected_({std::forward<U>(val)}) {}
explicit ChainAwaitable(
std::expected<StartingType, std::exception_ptr>&& ex,
std::tuple<Funcs...>&& tuple)
: expected_(std::move(ex)),
functions_(std::move(tuple)) {}
explicit ChainAwaitable(
std::expected<StartingType, std::exception_ptr>&& ex,
std::tuple<Funcs...>&& tuple,
coros::Task<StartingType>&& starting_task)
: expected_(std::move(ex)),
functions_(std::move(tuple)),
starting_task_(std::move(starting_task)) {}
// TODO : implement later
// HACK : Getting some weird behavior with parsing the template,
// therefor I use AwaiterVoid.
auto operator co_await() {
if constexpr (std::is_void_v<EndingType>) {
return AwaiterVoid{this};
} else {
return Awaiter<EndingType>{this};
}
}
template<typename FinalResultType>
struct Awaiter {
constexpr bool await_ready() noexcept {return false;}
// Here I should suspend, and run a task that runs individaul functions.
std::coroutine_handle<>
await_suspend(std::coroutine_handle<> currently_suspended) noexcept {
loop_task_.get_handle().promise().set_continuation(currently_suspended);
return loop_task_.get_handle();
}
[[nodiscard]] std::expected<FinalResultType, std::exception_ptr>&& await_resume() noexcept {
return std::move(loop_task_).expected();
}
ChainAwaitable* awaitable_;
// Needed to use lambda to make it work. Not sure why.
coros::Task<FinalResultType> loop_task_ =
std::apply(
[](auto&&... args) {
return coros::detail::process_tasks<FinalResultType>(std::forward<decltype(args)>(args)...);
},
[this]() -> auto {
if constexpr (!TaskStart) {
return std::tuple_cat(
std::make_tuple(std::move(awaitable_->expected_).value()),
awaitable_->functions_);
} else {
return std::tuple_cat(
std::tie(awaitable_->starting_task_),
awaitable_->functions_);
}
}()
);
};
struct AwaiterVoid {
constexpr bool await_ready() noexcept {return false;}
// Here I should suspend, and run a task that runs individaul functions.
std::coroutine_handle<>
await_suspend(std::coroutine_handle<> currently_suspended) noexcept {
loop_task_.get_handle().promise().set_continuation(currently_suspended);
return loop_task_.get_handle();
}
[[nodiscard]] std::expected<void, std::exception_ptr>&& await_resume() noexcept {
return std::move(loop_task_).expected();
}
ChainAwaitable* awaitable_;
// Needed to use lambda to make it work. Not sure why.
coros::Task<void> loop_task_ =
std::apply(
[](auto&&... args) {
return coros::detail::process_tasks<void>(std::forward<decltype(args)>(args)...);
},
[this]() -> auto {
if constexpr (!TaskStart) {
return std::tuple_cat(
std::make_tuple(std::move(awaitable_->expected_).value()),
awaitable_->functions_);
} else {
return std::tuple_cat(
std::tie(awaitable_->starting_task_),
awaitable_->functions_);
}
}()
);
};
// Should create a new ChainAwaitable and add the chaining function into the list.
// We do not stop here but in chaining function. This function checks whether the
// types are valid. Meaning, the function takes the input type currently stored in ChainAwaitable.
// Could this be done in constant time. I think so !
template <typename R, typename U>
constexpr auto and_then(coros::Task<R>(*fun)(U)) {
// TODO: Should remove the std::function ?
static_assert(
std::is_invocable_v<std::function<coros::Task<R>(U)>, EndingType>,
"Task in and_then() needs to accept corret type");
// Add and_then into a tuple
// functions.tuple_cat(std::make_tuple(fun));
auto new_tuple = std::tuple_cat(functions_, std::make_tuple(fun));
// Need to create a new expected, with a new type.
if constexpr (TaskStart) {
return ChainAwaitable<StartingType, R, TaskStart, Funcs..., coros::Task<R>(*)(U)>{
std::move(expected_),
std::move(new_tuple),
std::move(starting_task_)};
} else {
return ChainAwaitable<StartingType, R, TaskStart, Funcs..., coros::Task<R>(*)(U)>{
std::move(expected_),
std::move(new_tuple)};
}
}
constexpr auto and_then(coros::Task<void>(*fun)()) {
// Add and_then into a tuple
// functions.tuple_cat(std::make_tuple(fun));
auto new_tuple = std::tuple_cat(functions_, std::make_tuple(fun));
// Need to create a new expected, with a new type.
if constexpr (TaskStart) {
return ChainAwaitable<StartingType, void, TaskStart, Funcs..., coros::Task<void>(*)()>{
std::move(expected_),
std::move(new_tuple),
std::move(starting_task_)};
} else {
return ChainAwaitable<StartingType, void, TaskStart, Funcs..., coros::Task<void>(*)()>{
std::move(expected_),
std::move(new_tuple)};
}
}
private:
std::expected<StartingType, std::exception_ptr> expected_;
std::tuple<Funcs...> functions_;
coros::Task<StartingType> starting_task_;
};
template<typename T>
ChainAwaitable<T, T, false> chain_tasks(std::expected<T, std::exception_ptr>& ex) {
return ChainAwaitable<T, T, false>{ex};
}
template<typename T>
ChainAwaitable<T, T, false> chain_tasks(std::expected<T, std::exception_ptr>&& ex) {
return ChainAwaitable<T, T, false>{std::move(ex)};
}
template<typename T>
ChainAwaitable<T, T, true> chain_tasks(coros::Task<T>&& task) {
return ChainAwaitable<T, T, true>{std::move(task)};
}
template<typename T>
requires(
!std::is_same_v<std::expected<std::remove_reference_t<T>, std::exception_ptr>,
std::remove_reference_t<T>>
&&std::is_constructible_v<std::expected<std::remove_reference_t<T>,
std::exception_ptr>, std::remove_reference_t<T>>)
ChainAwaitable<std::remove_reference_t<T>, std::remove_reference_t<T>, false> chain_tasks(T&& val) {
return ChainAwaitable<std::remove_reference_t<T>,
std::remove_reference_t<T>,
false>
{std::forward<T&>(val)};
}
} // namespace coros
#endif // COROS_INCLUDE_CHAIN_TASKS_H_