forked from RDmitriyS/function_task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.h
318 lines (254 loc) · 9.4 KB
/
storage.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
#pragma once
#include <exception>
#include <string>
#include <type_traits>
#include "function.h"
struct bad_function_call : std::exception {
[[nodiscard]] char const* what() const noexcept override {
return "bad function call";
}
};
constexpr static size_t INPLACE_BUFFER_SIZE = sizeof(void*);
constexpr static size_t INPLACE_BUFFER_ALIGNMENT = alignof(void*);
using inplace_buffer
= std::aligned_storage<
INPLACE_BUFFER_SIZE,
INPLACE_BUFFER_ALIGNMENT
>::type;
template <typename T>
constexpr static bool fits_small_storage =
sizeof(T) <= INPLACE_BUFFER_SIZE
&& INPLACE_BUFFER_ALIGNMENT % alignof(T) == 0
&& std::is_nothrow_move_constructible<T>::value;
template <typename R, typename... Args>
struct type_descriptor;
template <typename T, typename = void>
struct function_traits;
template <typename R, typename... Args>
struct storage {
storage() noexcept;
storage(storage const& other);
storage(storage&& other) noexcept;
storage& operator=(storage const& other);
storage& operator=(storage&& other) noexcept;
~storage();
template <typename T>
explicit storage(T&& val);
R invoke(Args&&... args);
R invoke(Args&&... args) const;
template <typename T>
T* get_static() noexcept;
template <typename T>
T const* get_static() const noexcept;
template <typename T>
void set_static(T&& obj) noexcept;
void set_dynamic(void const* value) noexcept;
template <typename T>
T const* get_dynamic() const noexcept;
template <typename T>
T* get_dynamic() noexcept;
template <typename T>
bool check_type() const noexcept;
template <typename T>
bool check_type() noexcept;
void swap(storage &rhs) noexcept;
inplace_buffer buf;
type_descriptor<R, Args...> const* desc;
};
template <typename R, typename... Args>
type_descriptor<R, Args...> const* empty_type_descriptor() {
using storage_t = storage<R, Args...>;
constexpr static type_descriptor<R, Args...> impl =
{
[](storage_t const* src, storage_t* dest) {
dest->desc = src->desc;
},
[](storage_t* src, storage_t* dest) {
dest->desc = src->desc;
},
[](storage_t* src, Args&&...) -> R {
throw bad_function_call();
},
[](storage_t*) {}
};
return &impl;
}
template <typename R, typename... Args>
storage<R, Args...>::storage() noexcept : buf(), desc(empty_type_descriptor<R, Args...>()) {}
template <typename R, typename... Args>
storage<R, Args...>::storage(storage const& other) : storage() {
other.desc->copy(&other, this);
}
template <typename R, typename... Args>
storage<R, Args...>::storage(storage&& other) noexcept : storage() {
other.desc->move(&other, this);
}
template <typename R, typename... Args>
storage<R, Args...>& storage<R, Args...>::operator=(storage const& other) {
if (this != &other) {
storage(other).swap(*this);
}
return *this;
}
template <typename R, typename... Args>
storage<R, Args...>& storage<R, Args...>::operator=(storage&& other) noexcept {
if (this != &other) {
desc->destroy(this);
other.desc->move(&other, this);
}
return *this;
}
template <typename R, typename... Args>
storage<R, Args...>::~storage() {
desc->destroy(this);
}
template <typename R, typename... Args>
template <typename T>
storage<R, Args...>::storage(T&& val) {
function_traits<T>::template initialize_storage<R, Args...>(*this, std::forward<T>(val));
desc = function_traits<T>::template get_type_descriptor<R, Args...>();
}
template <typename R, typename... Args>
R storage<R, Args...>::invoke(Args&& ...args) {
return ((*desc).invoke(this, std::forward<Args>(args)...));
}
template <typename R, typename... Args>
R storage<R, Args...>::invoke(Args&& ...args) const {
return ((*desc).invoke(this, std::forward<Args>(args)...));
}
template <typename R, typename... Args>
template <typename T>
T* storage<R, Args...>::get_static() noexcept {
return reinterpret_cast<T*>(&buf);
}
template <typename R, typename... Args>
template <typename T>
T const* storage<R, Args...>::get_static() const noexcept {
return reinterpret_cast<T const*>(&buf);
}
template <typename R, typename... Args>
template <typename T>
void storage<R, Args...>::set_static(T&& obj) noexcept {
new(&buf) T(std::forward<T>(obj));
}
template <typename R, typename... Args>
void storage<R, Args...>::set_dynamic(void const* value) noexcept {
reinterpret_cast<void*&>(buf) = const_cast<void*>(value);
}
template <typename R, typename... Args>
template <typename T>
T const* storage<R, Args...>::get_dynamic() const noexcept {
return *reinterpret_cast<T* const*>(&buf);
}
template <typename R, typename... Args>
template <typename T>
T* storage<R, Args...>::get_dynamic() noexcept {
return *reinterpret_cast<T**>(&buf);
}
template <typename R, typename... Args>
template <typename T>
bool storage<R, Args...>::check_type() const noexcept {
return function_traits<T>::template get_type_descriptor<R, Args...>() == desc;
}
template <typename R, typename... Args>
template <typename T>
bool storage<R, Args...>::check_type() noexcept {
return function_traits<T>::template get_type_descriptor<R, Args...>() == desc;
}
template <typename R, typename... Args>
void storage<R, Args...>::swap(storage& rhs) noexcept {
using std::swap;
swap(buf, rhs.buf);
swap(desc, rhs.desc);
}
template <typename R, typename... Args>
struct type_descriptor {
using storage_t = storage<R, Args...>;
void (* copy)(storage_t const* src, storage_t* dest);
void (* move)(storage_t* src, storage_t* dest);
R (* invoke)(storage_t* src, Args&&... args);
void (* destroy)(storage_t* src);
};
template <typename T>
struct function_traits<T, std::enable_if_t<fits_small_storage<T>>> {
template <typename R, typename... Args>
static void initialize_storage(storage<R, Args...>& src, T&& obj) {
src.set_static(std::move(obj));
}
template <typename R, typename... Args>
static T const* get_func_obj(storage<R, Args...> const* src) {
return src->template get_static<T>();
}
template <typename R, typename... Args>
static T* get_func_obj(storage<R, Args...>* src) {
return src->template get_static<T>();
}
template <typename R, typename... Args>
static type_descriptor<R, Args...> const* get_type_descriptor() noexcept {
using storage_t = storage<R, Args...>;
constexpr static type_descriptor<R, Args...> impl =
{
// Copy
[](storage_t const* src, storage_t* dest) {
new(&dest->buf) T(*(src->template get_static<T>()));
dest->desc = src->desc;
},
// move
[](storage_t* src, storage_t* dest) {
new(&dest->buf) T(std::move(*(src->template get_static<T>())));
dest->desc = src->desc;
},
// invoke
[](storage_t* src, Args&&... args) -> R {
return (*(src->template get_static<T>()))(std::forward<Args>(args)...);
},
// destroy
[](storage_t* src) {
src->template get_static<T>()->~T();
}
};
return &impl;
}
};
template <typename T>
struct function_traits<T, std::enable_if_t<!fits_small_storage<T>>> {
template <typename R, typename... Args>
static void initialize_storage(storage<R, Args...>& src, T&& obj) {
src.set_dynamic(new T(std::move(obj)));
}
template <typename R, typename... Args>
static T const* get_func_obj(storage<R, Args...> const* src) {
return src->template get_dynamic<T>();
}
template <typename R, typename... Args>
static T* get_func_obj(storage<R, Args...> *src) {
return src->template get_dynamic<T>();
}
template <typename R, typename... Args>
static type_descriptor<R, Args...> const* get_type_descriptor() noexcept {
using storage_t = storage<R, Args...>;
constexpr static type_descriptor<R, Args...> impl =
{
// Copy
[](storage_t const* src, storage_t* dest) {
dest->set_dynamic(new T(*(src->template get_dynamic<T>())));
dest->desc = src->desc;
},
// move
[](storage_t* src, storage_t* dest) {
new(&dest->buf) T*(*(src-> template get_static<T*>()));
src->set_dynamic(nullptr);
dest->desc = src->desc;
},
// invoke
[](storage_t* src, Args&&... args) -> R {
return (*(src->template get_dynamic<T>()))(std::forward<Args>(args)...);
},
// destroy
[](storage_t* src) {
delete (src->template get_dynamic<T>());
}
};
return &impl;
}
};