-
Notifications
You must be signed in to change notification settings - Fork 17
/
Variant.hpp
255 lines (207 loc) · 8.55 KB
/
Variant.hpp
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
#pragma once
#include <algorithm>
#include <type_traits>
#include <functional>
// 今天来实现标准库中的 variant 和 visit
template <size_t I>
struct InPlaceIndex {
explicit InPlaceIndex() = default;
};
template <size_t I>
constexpr InPlaceIndex<I> inPlaceIndex;
struct BadVariantAccess : std::exception {
BadVariantAccess() = default;
virtual ~BadVariantAccess() = default;
const char *what() const noexcept override {
return "BadVariantAccess";
}
};
template <typename, typename> // typename -> size_t
struct VariantIndex;
template <typename, size_t> // size_t -> typename
struct VariantAlternative;
// VariantAlternative<Variant<int, double>, 1> = int;
// VariantAlternative<Variant<int, double>, 2> = double;
// VariantIndex<Variant<int, double>, int> = 1;
// VariantIndex<Variant<int, double>, double> = 2;
template <typename ...Ts>
struct Variant {
private:
size_t m_index;
alignas(std::max({alignof(Ts)...})) char m_union[std::max({sizeof(Ts)...})];
using DestructorFunction = void(*)(char *) noexcept;
static DestructorFunction *destructors_table() noexcept {
static DestructorFunction function_ptrs[sizeof...(Ts)] = {
[] (char *union_p) noexcept {
reinterpret_cast<Ts *>(union_p)->~Ts();
}...
};
return function_ptrs;
}
using CopyConstructorFunction = void(*)(char *, char const *) noexcept;
static CopyConstructorFunction *copy_constructors_table() noexcept {
static CopyConstructorFunction function_ptrs[sizeof...(Ts)] = {
[] (char *union_dst, char const *union_src) noexcept {
new (union_dst) Ts(*reinterpret_cast<Ts const *>(union_src));
}...
};
return function_ptrs;
}
using CopyAssignmentFunction = void(*)(char *, char const *) noexcept;
static CopyAssignmentFunction *copy_assigment_functions_table() noexcept {
static CopyAssignmentFunction function_ptrs[sizeof...(Ts)] = {
[] (char *union_dst, char const *union_src) noexcept {
*reinterpret_cast<Ts *>(union_dst) = *reinterpret_cast<Ts const *>(union_src);
}...
};
return function_ptrs;
}
using MoveConstructorFunction = void(*)(char *, char *) noexcept;
static MoveConstructorFunction *move_constructors_table() noexcept {
static MoveConstructorFunction function_ptrs[sizeof...(Ts)] = {
[] (char *union_dst, char *union_src) noexcept {
new (union_dst) Ts(std::move(*reinterpret_cast<Ts const *>(union_src)));
}...
};
return function_ptrs;
}
using MoveAssignmentFunction = void(*)(char *, char *) noexcept;
static MoveAssignmentFunction *move_assigment_functions_table() noexcept {
static MoveAssignmentFunction function_ptrs[sizeof...(Ts)] = {
[] (char *union_dst, char *union_src) noexcept {
*reinterpret_cast<Ts *>(union_dst) = std::move(*reinterpret_cast<Ts *>(union_src));
}...
};
return function_ptrs;
}
template <class Lambda>
using ConstVisitorFunction = std::common_type<typename std::invoke_result<Lambda, Ts const &>::type...>::type(*)(char const *, Lambda &&);
template <class Lambda>
static ConstVisitorFunction<Lambda> *const_visitors_table() noexcept {
static ConstVisitorFunction<Lambda> function_ptrs[sizeof...(Ts)] = {
[] (char const *union_p, Lambda &&lambda) -> typename std::invoke_result<Lambda, Ts const &>::type {
std::invoke(std::forward<Lambda>(lambda),
*reinterpret_cast<Ts const *>(union_p));
}...
};
return function_ptrs;
}
template <class Lambda>
using VisitorFunction = std::common_type<typename std::invoke_result<Lambda, Ts &>::type...>::type(*)(char *, Lambda &&);
template <class Lambda>
static VisitorFunction<Lambda> *visitors_table() noexcept {
static VisitorFunction<Lambda> function_ptrs[sizeof...(Ts)] = {
[] (char *union_p, Lambda &&lambda) -> std::common_type<typename std::invoke_result<Lambda, Ts &>::type...>::type {
return std::invoke(std::forward<Lambda>(lambda),
*reinterpret_cast<Ts *>(union_p));
}...
};
return function_ptrs;
}
public:
template <typename T, typename std::enable_if<
std::disjunction<std::is_same<T, Ts>...>::value,
int>::type = 0>
Variant(T value) : m_index(VariantIndex<Variant, T>::value) {
T *p = reinterpret_cast<T *>(m_union);
new (p) T(value);
}
Variant(Variant const &that) : m_index(that.m_index) {
copy_constructors_table()[index()](m_union, that.m_union);
}
Variant &operator=(Variant const &that) {
m_index = that.m_index;
copy_assigment_functions_table()[index()](m_union, that.m_union);
}
Variant(Variant &&that) : m_index(that.m_index) {
move_constructors_table()[index()](m_union, that.m_union);
}
Variant &operator=(Variant &&that) {
m_index = that.m_index;
move_assigment_functions_table()[index()](m_union, that.m_union);
}
template <size_t I, typename ...Args>
explicit Variant(InPlaceIndex<I>, Args &&...value_args) : m_index(I) {
new (m_union) typename VariantAlternative<Variant, I>::type
(std::forward<Args>(value_args)...);
}
~Variant() noexcept {
destructors_table()[index()](m_union);
}
template <class Lambda>
std::common_type<typename std::invoke_result<Lambda, Ts &>::type...>::type visit(Lambda &&lambda) {
// 由于时间原因,暂时没有实现支持多参数的std::visit,决定留作回家作业,供学有余力的同学自己尝试实现
return visitors_table<Lambda>()[index()](m_union, std::forward<Lambda>(lambda));
}
template <class Lambda>
std::common_type<typename std::invoke_result<Lambda, Ts const &>::type...>::type visit(Lambda &&lambda) const {
return const_visitors_table<Lambda>()[index()](m_union, std::forward<Lambda>(lambda));
}
constexpr size_t index() const noexcept {
return m_index;
}
template <typename T>
constexpr bool holds_alternative() const noexcept {
return VariantIndex<Variant, T>::value == index();
}
template <size_t I>
typename VariantAlternative<Variant, I>::type &get() {
static_assert(I < sizeof...(Ts), "I out of range!");
if (m_index != I)
throw BadVariantAccess();
return *reinterpret_cast<typename VariantAlternative<Variant, I>::type *>(m_union);
}
template <typename T>
T &get() {
return get<VariantIndex<Variant, T>::value>();
}
template <size_t I>
typename VariantAlternative<Variant, I>::type const &get() const {
static_assert(I < sizeof...(Ts), "I out of range!");
if (m_index != I)
throw BadVariantAccess();
return *reinterpret_cast<typename VariantAlternative<Variant, I>::type const *>(m_union);
}
template <typename T>
T const &get() const {
return get<VariantIndex<Variant, T>::value>();
}
template <size_t I>
typename VariantAlternative<Variant, I>::type *get_if() {
static_assert(I < sizeof...(Ts), "I out of range!");
if (m_index != I)
return nullptr;
return reinterpret_cast<typename VariantAlternative<Variant, I>::type *>(m_union);
}
template <typename T>
T *get_if() {
return get_if<VariantIndex<Variant, T>::value>();
}
template <size_t I>
typename VariantAlternative<Variant, I>::type const *get_if() const {
static_assert(I < sizeof...(Ts), "I out of range!");
if (m_index != I)
return nullptr;
return reinterpret_cast<typename VariantAlternative<Variant, I>::type const *>(m_union);
}
template <typename T>
T const *get_if() const {
return get_if<VariantIndex<Variant, T>::value>();
}
};
template <typename T, typename ...Ts>
struct VariantAlternative<Variant<T, Ts...>, 0> {
using type = T;
};
template <typename T, typename ...Ts, size_t I>
struct VariantAlternative<Variant<T, Ts...>, I> {
using type = typename VariantAlternative<Variant<Ts...>, I - 1>::type;
};
template <typename T, typename ...Ts>
struct VariantIndex<Variant<T, Ts...>, T> {
static constexpr size_t value = 0;
};
template <typename T0, typename T, typename ...Ts>
struct VariantIndex<Variant<T0, Ts...>, T> {
static constexpr size_t value = VariantIndex<Variant<Ts...>, T>::value + 1;
};