-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpl.cppm
More file actions
564 lines (482 loc) · 19.9 KB
/
impl.cppm
File metadata and controls
564 lines (482 loc) · 19.9 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
module;
#include <atomic>
#include <concepts>
#include <exception>
#include <expected>
#include <stdexcept>
#include <string>
#include <type_traits>
export module mcpplibs.primitives.policy.impl;
import mcpplibs.primitives.operations.traits;
import mcpplibs.primitives.operations.impl;
import mcpplibs.primitives.policy.traits;
import mcpplibs.primitives.policy.handler;
import mcpplibs.primitives.underlying.traits;
export namespace mcpplibs::primitives::policy {
namespace value {
struct checked {};
struct unchecked {};
struct saturating {};
} // namespace value
namespace type {
struct strict {};
struct compatible {};
struct transparent {};
} // namespace type
namespace error {
struct throwing {};
struct expected {};
struct terminate {};
} // namespace error
namespace concurrency {
struct none {};
struct fenced {};
struct fenced_relaxed {};
struct fenced_acq_rel {};
struct fenced_seq_cst {};
} // namespace concurrency
template <> struct traits<value::checked> {
using policy_type = value::checked;
static constexpr bool enabled = true;
static constexpr auto kind = category::value;
};
template <> struct traits<value::unchecked> {
using policy_type = value::unchecked;
static constexpr bool enabled = true;
static constexpr auto kind = category::value;
};
template <> struct traits<value::saturating> {
using policy_type = value::saturating;
static constexpr bool enabled = true;
static constexpr auto kind = category::value;
};
template <> struct traits<type::strict> {
using policy_type = type::strict;
static constexpr bool enabled = true;
static constexpr auto kind = category::type;
};
template <> struct traits<type::compatible> {
using policy_type = type::compatible;
static constexpr bool enabled = true;
static constexpr auto kind = category::type;
};
template <> struct traits<type::transparent> {
using policy_type = type::transparent;
static constexpr bool enabled = true;
static constexpr auto kind = category::type;
};
template <> struct traits<error::throwing> {
using policy_type = error::throwing;
static constexpr bool enabled = true;
static constexpr auto kind = category::error;
};
template <> struct traits<error::expected> {
using policy_type = error::expected;
static constexpr bool enabled = true;
static constexpr auto kind = category::error;
};
template <> struct traits<error::terminate> {
using policy_type = error::terminate;
static constexpr bool enabled = true;
static constexpr auto kind = category::error;
};
template <> struct traits<concurrency::none> {
using policy_type = concurrency::none;
static constexpr bool enabled = true;
static constexpr auto kind = category::concurrency;
};
template <> struct traits<concurrency::fenced> {
using policy_type = concurrency::fenced;
static constexpr bool enabled = true;
static constexpr auto kind = category::concurrency;
};
template <> struct traits<concurrency::fenced_relaxed> {
using policy_type = concurrency::fenced_relaxed;
static constexpr bool enabled = true;
static constexpr auto kind = category::concurrency;
};
template <> struct traits<concurrency::fenced_acq_rel> {
using policy_type = concurrency::fenced_acq_rel;
static constexpr bool enabled = true;
static constexpr auto kind = category::concurrency;
};
template <> struct traits<concurrency::fenced_seq_cst> {
using policy_type = concurrency::fenced_seq_cst;
static constexpr bool enabled = true;
static constexpr auto kind = category::concurrency;
};
namespace defaults {
using value = value::checked;
using type = type::strict;
using error = error::throwing;
using concurrency = concurrency::none;
} // namespace defaults
namespace details {
template <typename T, bool = std::is_trivially_copyable_v<T>>
struct atomic_ref_alignment_compatible : std::false_type {};
template <typename T>
struct atomic_ref_alignment_compatible<T, true>
: std::bool_constant<(alignof(T) >=
std::atomic_ref<T>::required_alignment)> {};
template <typename T>
inline constexpr bool atomic_ref_compatible_v =
atomic_ref_alignment_compatible<T>::value;
template <typename T> constexpr void assert_atomic_ref_compatible() {
static_assert(std::is_trivially_copyable_v<T>,
"concurrency::handler atomic access requires trivially "
"copyable CommonRep");
static_assert(
atomic_ref_alignment_compatible<T>::value,
"concurrency::handler atomic access requires alignof(CommonRep) to "
"satisfy std::atomic_ref<CommonRep>::required_alignment");
}
template <typename T>
concept has_underlying_rep_not_equal =
underlying_type<T> &&
requires(T const &lhs, T const &rhs) {
{
underlying::traits<std::remove_cv_t<T>>::to_rep(lhs) !=
underlying::traits<std::remove_cv_t<T>>::to_rep(rhs)
} -> std::convertible_to<bool>;
};
template <typename T>
inline constexpr bool none_compare_exchange_available_v =
has_underlying_rep_not_equal<T>;
template <typename OpTag>
inline constexpr bool is_arithmetic_operation_v =
operations::op_has_capability_v<OpTag, operations::capability::arithmetic>;
template <typename T>
inline constexpr bool is_boolean_or_character_v = std_bool<T> || std_char<T>;
template <typename OpTag, typename LhsRep, typename RhsRep>
inline constexpr bool rejects_arithmetic_for_boolean_or_character_v =
is_arithmetic_operation_v<OpTag> &&
(is_boolean_or_character_v<LhsRep> || is_boolean_or_character_v<RhsRep>);
template <typename T>
auto atomic_ref_load(T const &value, std::memory_order order) noexcept -> T {
assert_atomic_ref_compatible<T>();
// libc++ rejects std::atomic_ref<const T>; load through a non-mutating view.
auto &mutable_value = const_cast<T &>(value);
std::atomic_ref<T> ref(mutable_value);
return ref.load(order);
}
} // namespace details
// Default protocol specializations.
template <operations::operation OpTag, typename LhsRep, typename RhsRep>
struct type::handler<type::strict, OpTag, LhsRep, RhsRep> {
static constexpr bool enabled = true;
static constexpr bool allowed =
std::same_as<LhsRep, RhsRep> &&
!details::rejects_arithmetic_for_boolean_or_character_v<OpTag, LhsRep,
RhsRep>;
static constexpr unsigned diagnostic_id =
details::rejects_arithmetic_for_boolean_or_character_v<OpTag, LhsRep,
RhsRep>
? 3u
: (allowed ? 0u : 1u);
using common_rep = std::conditional_t<allowed, LhsRep, void>;
};
template <operations::operation OpTag, typename LhsRep, typename RhsRep>
struct type::handler<type::compatible, OpTag, LhsRep, RhsRep> {
static constexpr bool enabled = true;
static constexpr bool allowed =
std::is_arithmetic_v<LhsRep> && std::is_arithmetic_v<RhsRep> &&
has_common_rep<LhsRep, RhsRep> &&
!details::rejects_arithmetic_for_boolean_or_character_v<OpTag, LhsRep,
RhsRep>;
static constexpr unsigned diagnostic_id =
details::rejects_arithmetic_for_boolean_or_character_v<OpTag, LhsRep,
RhsRep>
? 3u
: (allowed ? 0u : 2u);
using common_rep =
std::conditional_t<allowed, common_rep_t<LhsRep, RhsRep>, void>;
};
template <operations::operation OpTag, typename LhsRep, typename RhsRep>
struct type::handler<type::transparent, OpTag, LhsRep, RhsRep> {
static constexpr bool enabled = true;
static constexpr bool allowed =
has_common_rep<LhsRep, RhsRep> &&
!details::rejects_arithmetic_for_boolean_or_character_v<OpTag, LhsRep,
RhsRep>;
static constexpr unsigned diagnostic_id = allowed ? 0u : 3u;
using common_rep =
std::conditional_t<allowed, common_rep_t<LhsRep, RhsRep>, void>;
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct concurrency::handler<concurrency::none, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool requires_external_sync = false;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto inject() noexcept -> injection_type {
return injection_type{};
}
};
template <typename CommonRep, typename ErrorPayload>
struct concurrency::handler<concurrency::none, void, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto load(CommonRep const &value) noexcept -> CommonRep {
return value;
}
static constexpr auto store(CommonRep &value, CommonRep desired) noexcept
-> void {
value = desired;
}
static constexpr auto compare_exchange(CommonRep &value, CommonRep &expected,
CommonRep desired) noexcept -> bool
requires(details::none_compare_exchange_available_v<CommonRep>) {
using traits_type = underlying::traits<std::remove_cv_t<CommonRep>>;
if (traits_type::to_rep(value) != traits_type::to_rep(expected)) {
expected = value;
return false;
}
value = desired;
return true;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct concurrency::handler<concurrency::fenced, OpTag, CommonRep,
ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool requires_external_sync = true;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto inject() noexcept -> injection_type {
injection_type out{};
out.fence_before = true;
out.fence_after = true;
out.order_before = std::memory_order_seq_cst;
out.order_after = std::memory_order_seq_cst;
return out;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_relaxed, OpTag, CommonRep,
ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool requires_external_sync = true;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto inject() noexcept -> injection_type {
injection_type out{};
out.fence_before = true;
out.fence_after = true;
out.order_before = std::memory_order_relaxed;
out.order_after = std::memory_order_relaxed;
return out;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_acq_rel, OpTag, CommonRep,
ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool requires_external_sync = true;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto inject() noexcept -> injection_type {
injection_type out{};
out.fence_before = true;
out.fence_after = true;
out.order_before = std::memory_order_acquire;
out.order_after = std::memory_order_release;
return out;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_seq_cst, OpTag, CommonRep,
ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool requires_external_sync = true;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto inject() noexcept -> injection_type {
injection_type out{};
out.fence_before = true;
out.fence_after = true;
out.order_before = std::memory_order_seq_cst;
out.order_after = std::memory_order_seq_cst;
return out;
}
};
template <typename CommonRep, typename ErrorPayload>
struct concurrency::handler<concurrency::fenced, void, CommonRep,
ErrorPayload> {
static constexpr bool enabled = details::atomic_ref_compatible_v<CommonRep>;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static auto load(CommonRep const &value) noexcept -> CommonRep {
return details::atomic_ref_load(value, std::memory_order_seq_cst);
}
static auto store(CommonRep &value, CommonRep desired) noexcept -> void {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
ref.store(desired, std::memory_order_seq_cst);
}
static auto compare_exchange(CommonRep &value, CommonRep &expected,
CommonRep desired) noexcept -> bool {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
return ref.compare_exchange_strong(expected, desired,
std::memory_order_seq_cst,
std::memory_order_seq_cst);
}
};
template <typename CommonRep, typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_relaxed, void, CommonRep,
ErrorPayload> {
static constexpr bool enabled = details::atomic_ref_compatible_v<CommonRep>;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static auto load(CommonRep const &value) noexcept -> CommonRep {
return details::atomic_ref_load(value, std::memory_order_relaxed);
}
static auto store(CommonRep &value, CommonRep desired) noexcept -> void {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
ref.store(desired, std::memory_order_relaxed);
}
static auto compare_exchange(CommonRep &value, CommonRep &expected,
CommonRep desired) noexcept -> bool {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
return ref.compare_exchange_strong(expected, desired,
std::memory_order_relaxed,
std::memory_order_relaxed);
}
};
template <typename CommonRep, typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_acq_rel, void, CommonRep,
ErrorPayload> {
static constexpr bool enabled = details::atomic_ref_compatible_v<CommonRep>;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static auto load(CommonRep const &value) noexcept -> CommonRep {
return details::atomic_ref_load(value, std::memory_order_acquire);
}
static auto store(CommonRep &value, CommonRep desired) noexcept -> void {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
ref.store(desired, std::memory_order_release);
}
static auto compare_exchange(CommonRep &value, CommonRep &expected,
CommonRep desired) noexcept -> bool {
details::assert_atomic_ref_compatible<CommonRep>();
std::atomic_ref<CommonRep> ref(value);
return ref.compare_exchange_strong(expected, desired,
std::memory_order_acq_rel,
std::memory_order_acquire);
}
};
template <typename CommonRep, typename ErrorPayload>
struct concurrency::handler<concurrency::fenced_seq_cst, void, CommonRep,
ErrorPayload> {
static constexpr bool enabled = details::atomic_ref_compatible_v<CommonRep>;
using injection_type = concurrency::injection;
using result_type = std::expected<CommonRep, ErrorPayload>;
static auto load(CommonRep const &value) noexcept -> CommonRep {
return concurrency::handler<concurrency::fenced, void, CommonRep,
ErrorPayload>::load(value);
}
static auto store(CommonRep &value, CommonRep desired) noexcept -> void {
concurrency::handler<concurrency::fenced, void, CommonRep,
ErrorPayload>::store(value, desired);
}
static auto compare_exchange(CommonRep &value, CommonRep &expected,
CommonRep desired) noexcept -> bool {
return concurrency::handler<concurrency::fenced, void, CommonRep,
ErrorPayload>::compare_exchange(value, expected,
desired);
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct value::handler<value::checked, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool may_adjust_value = false;
using decision_type = value::decision<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto finalize(decision_type decision,
concurrency::injection const &) noexcept
-> decision_type {
return decision;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct value::handler<value::unchecked, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool may_adjust_value = false;
using decision_type = value::decision<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto finalize(decision_type decision,
concurrency::injection const &) noexcept
-> decision_type {
return decision;
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct value::handler<value::saturating, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool may_adjust_value = true;
using decision_type = value::decision<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto finalize(decision_type decision,
concurrency::injection const &) noexcept
-> decision_type {
return decision;
}
};
namespace details {
template <typename ErrorPayload>
constexpr auto to_error_payload(error::kind kind) -> ErrorPayload {
if constexpr (std::same_as<ErrorPayload, error::kind>) {
return kind;
} else {
static_cast<void>(kind);
return ErrorPayload{};
}
}
} // namespace details
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct error::handler<error::throwing, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool converts_to_expected = true;
using request_type = error::request<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
static auto resolve(request_type const &request) -> result_type {
throw std::runtime_error(std::string{request.reason});
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct error::handler<error::expected, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool converts_to_expected = true;
using request_type = error::request<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
static constexpr auto resolve(request_type const &request) -> result_type {
return std::unexpected(
details::to_error_payload<ErrorPayload>(request.code));
}
};
template <operations::operation OpTag, typename CommonRep,
typename ErrorPayload>
struct error::handler<error::terminate, OpTag, CommonRep, ErrorPayload> {
static constexpr bool enabled = true;
static constexpr bool converts_to_expected = false;
using request_type = error::request<CommonRep>;
using result_type = std::expected<CommonRep, ErrorPayload>;
[[noreturn]] static auto resolve(request_type const &) -> result_type {
std::terminate();
}
};
} // namespace mcpplibs::primitives::policy