-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathcompletion_token.hpp
More file actions
595 lines (523 loc) · 21.8 KB
/
completion_token.hpp
File metadata and controls
595 lines (523 loc) · 21.8 KB
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
/*
* SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* Copyright (c) 2025 Robert Leahy. All rights reserved.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* Licensed under the Apache License, Version 2.0 with LLVM Exceptions (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://llvm.org/LICENSE.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <asioexec/as_default_on.hpp>
#include <asioexec/asio_config.hpp>
#include <concepts>
#include <exception>
#include <functional>
#include <mutex>
#include <optional>
#include <stdexec/execution.hpp>
#include <tuple>
#include <type_traits>
#include <utility>
#include <version>
namespace asioexec {
namespace detail::completion_token {
// The machinery from here down through completion_token::set_value is to
// work around the fact that Asio allows operations to declare signatures which
// aren't reflective of the actual cv- & ref-qualifications with which the
// values will actually be sent. This means that one or more conversions may be
// required to actually send the values correctly which may throw and which
// therefore must occur before the call to ::STDEXEC::set_value.
// The technique used to achieve this is to utilize an unevaluated call against
// overload_set to determine the matching Asio signature. Then
// completion_token::convert is used to transform the values actually sent by
// the Asio operation so that they match the selected completion signature
// (this may throw). The converted values may then be sent to the receiver with
// no possibility of throwing.
template <typename>
struct has_function_call_operator {
struct type { };
std::tuple<> operator()(type) const;
};
template <typename... Args>
struct has_function_call_operator<::STDEXEC::set_value_t(Args...)> {
std::tuple<Args...> operator()(Args...) const;
};
template <typename>
struct overload_set;
template <typename... Signatures>
struct overload_set<::STDEXEC::completion_signatures<Signatures...>>
: has_function_call_operator<Signatures>... {
using has_function_call_operator<Signatures>::operator()...;
};
template <typename T, typename U>
inline constexpr bool at_least_as_const_qualified_v = std::is_const_v<T> || !std::is_const_v<U>;
template <typename T, typename U>
inline constexpr bool at_least_as_volatile_qualified_v = std::is_volatile_v<T>
|| !std::is_volatile_v<U>;
template <typename T, typename U>
inline constexpr bool at_least_as_qualified_v = at_least_as_const_qualified_v<T, U>
&& at_least_as_volatile_qualified_v<T, U>;
template <typename T, typename U>
requires
#ifdef __cpp_lib_reference_from_temporary
(std::is_convertible_v<U &&, T &&> && !std::reference_converts_from_temporary_v<T &&, U &&>)
#else
(
// Just using is_base_of_v is insufficient because it always reports false for built-in types
(std::is_base_of_v<std::remove_cvref_t<T>, std::remove_cvref_t<U>>
|| std::is_same_v<std::remove_cvref_t<T>, std::remove_cvref_t<U>>)
&&
// The returned type must be at least as cv-qualified as the input type (it can be more cv-qualified)
at_least_as_qualified_v<std::remove_reference_t<T>, std::remove_reference_t<U>>
&& (
// Reference type must agree except...
(std::is_lvalue_reference_v<T> == std::is_lvalue_reference_v<U>) ||
// ...special rules for const& which allows rvalues to bind thereto
(std::is_lvalue_reference_v<T> && std::is_const_v<std::remove_reference_t<T>>) ))
#endif
constexpr T&& convert(U&& u) noexcept {
return static_cast<U&&>(u);
}
template <typename T, typename U>
constexpr std::remove_cvref_t<T> convert(U&& u) {
return static_cast<U&&>(u);
}
template <typename Tuple, typename Receiver, std::size_t... Ns, typename... Args>
constexpr void set_value_impl(Receiver&& r, std::index_sequence<Ns...>, Args&&... args) {
::STDEXEC::set_value(
static_cast<Receiver&&>(r),
completion_token::convert<std::tuple_element_t<Ns, Tuple>>(static_cast<Args&&>(args))...);
}
template <typename Signatures, typename Receiver, typename... Args>
constexpr void set_value(Receiver&& r, Args&&... args) {
using tuple = decltype(std::declval<overload_set<Signatures>>()(std::declval<Args>()...));
completion_token::set_value_impl<tuple>(
static_cast<Receiver&&>(r),
std::make_index_sequence<std::tuple_size_v<tuple>>{},
static_cast<Args&&>(args)...);
}
template <typename Signature>
struct signature;
template <typename... Args>
struct signature<void(Args...)> {
using type = ::STDEXEC::set_value_t(Args...);
};
template <typename... Signatures>
using completion_signatures = ::STDEXEC::completion_signatures<
typename signature<Signatures>::type...,
::STDEXEC::set_error_t(std::exception_ptr),
::STDEXEC::set_stopped_t()
>;
template <typename Mutex, typename Signatures, typename Receiver>
struct operation_state_base {
class frame_;
template <typename T>
requires std::constructible_from<Receiver, T>
explicit operation_state_base(T&& t) noexcept(
std::is_nothrow_constructible_v<Receiver, T>
&& std::is_nothrow_default_constructible_v<asio_impl::cancellation_signal>)
: r_(static_cast<T&&>(t)) {
}
Receiver r_;
asio_impl::cancellation_signal signal_;
[[no_unique_address]]
Mutex m_;
frame_* frames_{nullptr};
std::exception_ptr ex_;
bool abandoned_{false};
class frame_ {
operation_state_base* self_;
frame_* prev_;
public:
explicit frame_(operation_state_base& self) noexcept
: self_([&]() noexcept {
self.m_.lock();
return &self;
}())
, prev_(self.frames_) {
self.frames_ = this;
}
constexpr frame_(frame_&& other) noexcept
: self_(std::exchange(other.self_, nullptr))
, prev_(std::exchange(other.prev_, nullptr)) {
}
frame_(const frame_&) = delete;
~frame_() noexcept {
if (self_) {
std::unique_lock l(self_->m_, std::adopt_lock);
STDEXEC_ASSERT(self_->frames_ == this);
self_->frames_ = prev_;
if (!self_->frames_ && self_->abandoned_) {
// We are the last frame and the handler is gone so it's up to us to
// finalize the operation
l.unlock();
self_->callback_.reset();
if (self_->ex_) {
::STDEXEC::set_error(static_cast<Receiver&&>(self_->r_), std::move(self_->ex_));
} else {
::STDEXEC::set_stopped(static_cast<Receiver&&>(self_->r_));
}
}
}
}
explicit operator bool() const noexcept {
return bool(self_);
}
void release() noexcept {
auto&& self = *self_;
STDEXEC_ASSERT(this == self.frames_);
for (;;) {
STDEXEC_ASSERT(self.frames_);
STDEXEC_ASSERT(self.frames_->self_ == &self);
self.frames_->self_ = nullptr;
const auto prev = self.frames_->prev_;
self.frames_->prev_ = nullptr;
self.frames_ = prev;
self.m_.unlock();
if (!prev) {
break;
}
}
STDEXEC_ASSERT(!self_);
}
};
template <typename F>
void run_(F&& f) noexcept {
const frame_ frame(*this);
STDEXEC_TRY {
static_cast<F&&>(f)();
}
STDEXEC_CATCH_ALL {
STDEXEC_ASSERT(frame);
// Do not overwrite the first exception encountered
if (!ex_) {
ex_ = std::current_exception();
}
}
}
protected:
struct on_stop_request_ {
void operator()() && noexcept {
const std::lock_guard l(self_.m_);
self_.signal_.emit(asio_impl::cancellation_type::all);
}
operation_state_base& self_;
};
public:
std::optional<::STDEXEC::stop_callback_for_t<
::STDEXEC::stop_token_of_t<::STDEXEC::env_of_t<Receiver>>,
on_stop_request_
>>
callback_;
};
template <typename Mutex, typename Signatures, typename Receiver>
class completion_handler {
using operation_state_type_ = operation_state_base<Mutex, Signatures, Receiver>;
operation_state_type_* self_;
public:
explicit completion_handler(operation_state_type_& self) noexcept
: self_(&self) {
}
completion_handler(completion_handler&& other) noexcept
: self_(std::exchange(other.self_, nullptr)) {
}
completion_handler& operator=(const completion_handler&) = delete;
~completion_handler() noexcept {
if (self_) {
// When this goes out of scope it might send set stopped or set error, or
// it might defer that to the executor frames above us on the call stack
// (if any)
const typename operation_state_type_::frame_ frame(*self_);
self_->abandoned_ = true;
}
}
template <typename... Args>
void operator()(Args&&... args) noexcept {
STDEXEC_ASSERT(self_);
{
const std::lock_guard l(self_->m_);
if (self_->frames_) {
self_->frames_->release();
}
STDEXEC_ASSERT(!self_->frames_);
}
self_->callback_.reset();
if (self_->ex_) {
::STDEXEC::set_error(static_cast<Receiver&&>(self_->r_), std::move(self_->ex_));
} else {
STDEXEC_TRY {
completion_token::set_value<Signatures>(
static_cast<Receiver&&>(self_->r_), static_cast<Args&&>(args)...);
}
STDEXEC_CATCH_ALL {
::STDEXEC::set_error(static_cast<Receiver&&>(self_->r_), std::current_exception());
}
}
// Makes destructor a no op, the operation is complete so there's nothing
// more to do
self_ = nullptr;
}
using cancellation_slot_type = asio_impl::cancellation_slot;
auto get_cancellation_slot() const noexcept {
STDEXEC_ASSERT(self_);
return self_->signal_.slot();
}
operation_state_type_& state() const noexcept {
STDEXEC_ASSERT(self_);
return *self_;
}
};
template <
typename Mutex,
typename Signatures,
typename Receiver,
typename Initiation,
typename Args>
class operation_state : operation_state_base<Mutex, Signatures, Receiver> {
using base_ = operation_state_base<Mutex, Signatures, Receiver>;
Initiation init_;
Args args_;
public:
template <typename T, typename U, typename V>
requires std::constructible_from<base_, T> && std::constructible_from<Initiation, U>
&& std::constructible_from<Args, V>
explicit operation_state(T&& t, U&& u, V&& v) noexcept(
std::is_nothrow_constructible_v<base_, T> && std::is_nothrow_constructible_v<Initiation, U>
&& std::is_nothrow_constructible_v<Args, V>)
: base_(static_cast<T&&>(t))
, init_(static_cast<U&&>(u))
, args_(static_cast<V&&>(v)) {
}
void start() & noexcept {
const typename base_::frame_ frame(*this);
STDEXEC_TRY {
std::apply(
[&](auto&&... args) {
std::invoke(
static_cast<Initiation&&>(init_),
completion_handler<Mutex, Signatures, Receiver>(*this),
static_cast<decltype(args)&&>(args)...);
},
std::move(args_));
}
STDEXEC_CATCH_ALL {
if (!base_::ex_) {
base_::ex_ = std::current_exception();
}
// It's important that we fallthrough here, just because the
// initiating function threw doesn't mean that there's no outstanding
// operations
}
// In the case of an immediate completion *this may already be outside its
// lifetime so we can't proceed into the branch
if (frame) {
base_::callback_.emplace(
::STDEXEC::get_stop_token(::STDEXEC::get_env(base_::r_)),
typename base_::on_stop_request_{*this});
}
}
};
template <typename Mutex, typename Signatures, typename Initiation, typename... Args>
class sender {
using args_type_ = std::tuple<std::decay_t<Args>...>;
template <typename Receiver>
using operation_state_type_ =
operation_state<Mutex, Signatures, std::remove_cvref_t<Receiver>, Initiation, args_type_>;
public:
using sender_concept = ::STDEXEC::sender_t;
template <typename T, typename... Us>
requires std::constructible_from<Initiation, T>
&& std::constructible_from<args_type_, Us...>
constexpr explicit sender(T&& t, Us&&... us) noexcept(
std::is_nothrow_constructible_v<Initiation, T>
&& std::is_nothrow_constructible_v<args_type_, Us...>)
: init_(static_cast<T&&>(t))
, args_(static_cast<Us&&>(us)...) {
}
template <typename Self, typename... Env>
requires std::is_constructible_v<Initiation, ::STDEXEC::__copy_cvref_t<Self, Initiation>>
&& std::is_constructible_v<args_type_, ::STDEXEC::__copy_cvref_t<Self, args_type_>>
static consteval Signatures get_completion_signatures() noexcept {
return {};
}
template <typename Receiver>
requires ::STDEXEC::receiver_of<
std::remove_cvref_t<Receiver>,
::STDEXEC::completion_signatures_of_t<const sender&, ::STDEXEC::env_of_t<Receiver>>>
constexpr auto connect(Receiver&& receiver) const & noexcept(std::is_nothrow_constructible_v<
operation_state_type_<Receiver>,
Receiver,
const Initiation&,
const args_type_&>) {
return operation_state_type_<Receiver>(static_cast<Receiver&&>(receiver), init_, args_);
}
template <typename Receiver>
requires ::STDEXEC::receiver_of<
std::remove_cvref_t<Receiver>,
::STDEXEC::completion_signatures_of_t<sender, ::STDEXEC::env_of_t<Receiver>>>
constexpr auto connect(Receiver&& receiver) && noexcept(std::is_nothrow_constructible_v<
operation_state_type_<Receiver>,
Receiver,
Initiation,
args_type_>) {
return operation_state_type_<Receiver>(
static_cast<Receiver&&>(receiver),
static_cast<Initiation&&>(init_),
static_cast<args_type_&&>(args_));
}
private:
Initiation init_;
args_type_ args_;
};
template <typename Mutex, typename Signatures, typename Receiver, typename Executor>
class executor {
using operation_state_type_ = operation_state_base<Mutex, Signatures, Receiver>;
operation_state_type_& self_;
Executor ex_;
template <typename F>
constexpr auto wrap_(F f) const noexcept(std::is_nothrow_move_constructible_v<F>) {
return [&self = self_, f = std::move(f)]() mutable noexcept {
self.run_(std::move(f));
};
}
public:
constexpr explicit executor(operation_state_type_& self, const Executor& ex) noexcept
: self_(self)
, ex_(ex) {
}
template <typename Query>
requires requires {
asio_impl::query(std::declval<const Executor&>(), std::declval<const Query&>());
}
constexpr decltype(auto) query(const Query& q) const noexcept {
return asio_impl::query(ex_, q);
}
template <typename... Args>
requires requires {
asio_impl::prefer(std::declval<const Executor&>(), std::declval<Args>()...);
}
constexpr decltype(auto) prefer(Args&&... args) const noexcept {
const auto ex = asio_impl::prefer(ex_, static_cast<Args&&>(args)...);
return executor<Mutex, Signatures, Receiver, std::remove_cvref_t<decltype(ex)>>(self_, ex);
}
template <typename... Args>
requires requires {
asio_impl::require(std::declval<const Executor&>(), std::declval<Args>()...);
}
constexpr decltype(auto) require(Args&&... args) const noexcept {
const auto ex = asio_impl::require(ex_, static_cast<Args&&>(args)...);
return executor<Mutex, Signatures, Receiver, std::remove_cvref_t<decltype(ex)>>(self_, ex);
}
template <typename T>
void execute(T&& t) const noexcept {
self_.run_([&]() { ex_.execute(wrap_(static_cast<T&&>(t))); });
}
constexpr void on_work_started() const noexcept
requires requires { std::declval<const Executor&>().on_work_started(); }
{
ex_.on_work_started();
}
constexpr void on_work_finished() const noexcept
requires requires { std::declval<const Executor&>().on_work_finished(); }
{
ex_.on_work_finished();
}
template <typename F, typename A>
requires requires {
std::declval<const Executor&>().dispatch(std::declval<F>(), std::declval<const A&>());
}
constexpr void dispatch(F&& f, const A& a) const noexcept {
self_.run_([&]() { ex_.dispatch(wrap_(static_cast<F&&>(f)), a); });
}
template <typename F, typename A>
requires requires {
std::declval<const Executor&>().post(std::declval<F>(), std::declval<const A&>());
}
constexpr void post(F&& f, const A& a) const noexcept {
self_.run_([&]() { ex_.post(wrap_(static_cast<F&&>(f)), a); });
}
template <typename F, typename A>
requires requires {
std::declval<const Executor&>().defer(std::declval<F>(), std::declval<const A&>());
}
constexpr void defer(F&& f, const A& a) const noexcept {
self_.run_([&]() { ex_.defer(wrap_(static_cast<F&&>(f)), a); });
}
constexpr bool operator==(const executor& rhs) const noexcept {
return (&self_ == &rhs.self_) && (ex_ == rhs.ex_);
}
bool operator!=(const executor& rhs) const = default;
};
template <typename Mutex>
struct t {
static constexpr auto as_default_on = ::asioexec::as_default_on<t>;
template <typename IoObject>
using as_default_on_t = ::asioexec::as_default_on_t<t, IoObject>;
};
struct null_basic_lockable {
constexpr void lock() noexcept {
}
constexpr void unlock() noexcept {
}
};
} // namespace detail::completion_token
using completion_token_t = detail::completion_token::t<std::recursive_mutex>;
inline const completion_token_t completion_token{};
using thread_unsafe_completion_token_t =
detail::completion_token::t<detail::completion_token::null_basic_lockable>;
inline const thread_unsafe_completion_token_t thread_unsafe_completion_token{};
} // namespace asioexec
namespace ASIOEXEC_ASIO_NAMESPACE {
template <typename Mutex, typename... Signatures>
struct async_result<::asioexec::detail::completion_token::t<Mutex>, Signatures...> {
template <typename Initiation, typename... Args>
requires(std::is_constructible_v<std::decay_t<Args>, Args> && ...)
static constexpr auto initiate(
Initiation&& i,
const ::asioexec::detail::completion_token::t<Mutex>&,
Args&&... args) {
return ::asioexec::detail::completion_token::sender<
Mutex,
::asioexec::detail::completion_token::completion_signatures<Signatures...>,
std::remove_cvref_t<Initiation>,
Args...>(static_cast<Initiation&&>(i), static_cast<Args&&>(args)...);
}
};
template <typename Mutex, typename Signatures, typename Receiver, typename Executor>
struct associated_executor<
::asioexec::detail::completion_token::completion_handler<Mutex, Signatures, Receiver>,
Executor> {
using type =
::asioexec::detail::completion_token::executor<Mutex, Signatures, Receiver, Executor>;
static type get(
const ::asioexec::detail::completion_token::completion_handler<Mutex, Signatures, Receiver>&
h,
const Executor& ex) noexcept {
return type(h.state(), ex);
}
};
template <typename Mutex, typename Signatures, typename Receiver, typename Allocator>
requires requires(const Receiver& r) { ::STDEXEC::get_allocator(::STDEXEC::get_env(r)); }
struct associated_allocator<
::asioexec::detail::completion_token::completion_handler<Mutex, Signatures, Receiver>,
Allocator
> {
using type = std::remove_cvref_t<decltype(::STDEXEC::get_allocator(
::STDEXEC::get_env(std::declval<const Receiver&>())))>;
static type get(
const ::asioexec::detail::completion_token::completion_handler<Mutex, Signatures, Receiver>&
h,
const Allocator&) noexcept {
return ::STDEXEC::get_allocator(::STDEXEC::get_env(h.state().r_));
}
};
} // namespace ASIOEXEC_ASIO_NAMESPACE