-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathAwaitable.h
162 lines (129 loc) · 2.78 KB
/
Awaitable.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#ifndef GRAPHQLAWAITABLE_H
#define GRAPHQLAWAITABLE_H
// clang-format off
#ifdef USE_STD_EXPERIMENTAL_COROUTINE
#include <experimental/coroutine>
namespace coro = std::experimental;
#else // !USE_STD_EXPERIMENTAL_COROUTINE
#include <coroutine>
namespace coro = std;
#endif
// clang-format on
#include <future>
#include <type_traits>
namespace graphql::internal {
template <typename T>
class [[nodiscard("unnecessary construction")]] Awaitable;
template <>
class [[nodiscard("unnecessary construction")]] Awaitable<void>
{
public:
Awaitable(std::future<void> value)
: _value { std::move(value) }
{
}
void get()
{
_value.get();
}
struct promise_type
{
[[nodiscard("unnecessary construction")]] Awaitable get_return_object() noexcept
{
return { _promise.get_future() };
}
coro::suspend_never initial_suspend() const noexcept
{
return {};
}
coro::suspend_never final_suspend() const noexcept
{
return {};
}
void return_void() noexcept
{
_promise.set_value();
}
void unhandled_exception() noexcept
{
_promise.set_exception(std::current_exception());
}
private:
std::promise<void> _promise;
};
[[nodiscard("unexpected call")]] constexpr bool await_ready() const noexcept
{
return true;
}
void await_suspend(coro::coroutine_handle<> h) const
{
h.resume();
}
void await_resume()
{
_value.get();
}
private:
std::future<void> _value;
};
template <typename T>
class [[nodiscard("unnecessary construction")]] Awaitable
{
public:
Awaitable(std::future<T> value)
: _value { std::move(value) }
{
}
[[nodiscard("unnecessary construction")]] T get()
{
return _value.get();
}
struct promise_type
{
[[nodiscard("unnecessary construction")]] Awaitable get_return_object() noexcept
{
return { _promise.get_future() };
}
coro::suspend_never initial_suspend() const noexcept
{
return {};
}
coro::suspend_never final_suspend() const noexcept
{
return {};
}
void return_value(const T& value) noexcept(std::is_nothrow_copy_constructible_v<T>)
{
_promise.set_value(value);
}
void return_value(T&& value) noexcept(std::is_nothrow_move_constructible_v<T>)
{
_promise.set_value(std::move(value));
}
void unhandled_exception() noexcept
{
_promise.set_exception(std::current_exception());
}
private:
std::promise<T> _promise;
};
[[nodiscard("unexpected call")]] constexpr bool await_ready() const noexcept
{
return true;
}
void await_suspend(coro::coroutine_handle<> h) const
{
h.resume();
}
[[nodiscard("unnecessary construction")]] T await_resume()
{
return _value.get();
}
private:
std::future<T> _value;
};
} // namespace graphql::internal
#endif // GRAPHQLAWAITABLE_H