forked from solidoss/solidframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathany.hpp
330 lines (262 loc) · 7.65 KB
/
any.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
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
// solid/utility/any.hpp
//
// Copyright (c) 2016 Valentin Palade (vipalade @ gmail . com)
//
// This file is part of SolidFrame framework.
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.
//
#ifndef UTILITY_ANY_HPP
#define UTILITY_ANY_HPP
#include <cstddef>
#include <typeinfo>
#include <typeindex>
#include <utility>
#include <type_traits>
#include "solid/system/exception.hpp"
namespace solid{
namespace impl{
//-----------------------------------------------------------------------------
// AnyValueBase
//-----------------------------------------------------------------------------
struct AnyValueBase{
virtual ~AnyValueBase();
virtual const void* get()const = 0;
virtual void* get() = 0;
virtual AnyValueBase* copyTo(void *_pd, const size_t _sz) const = 0;
virtual AnyValueBase* moveTo(void *_pd, const size_t _sz, const bool _uses_data) = 0;
AnyValueBase& operator=(const AnyValueBase&) = delete;
};
//-----------------------------------------------------------------------------
// AnyValue<T>
//-----------------------------------------------------------------------------
template <class T, bool CopyConstructible = std::is_copy_constructible<T>::value>
struct AnyValue;
template <class T>
struct AnyValue<T, true>: AnyValueBase{
explicit AnyValue(const T &_rt):value_(_rt){}
explicit AnyValue(T &&_rt):value_(std::move(_rt)){}
const void* get()const override{
return &value_;
}
void* get()override{
return &value_;
}
AnyValueBase* copyTo(void *_pd, const size_t _sz) const override{
if(sizeof(AnyValue<T>) <= _sz){
return new(_pd) AnyValue<T>{value_};
}else{
return new AnyValue<T>{value_};
}
}
AnyValueBase* moveTo(void *_pd, const size_t _sz, const bool _uses_data)override{
if(sizeof(AnyValue<T>) <= _sz){
return new(_pd) AnyValue<T>{std::move(value_)};
}else if(not _uses_data){//the pointer was allocated
return this;
}else{
return new AnyValue<T>{std::move(value_)};
}
}
T value_;
};
template <class T>
struct AnyValue<T, false>: AnyValueBase{
//explicit AnyValue(const T &_rt){}
explicit AnyValue(T &&_rt):value_(std::move(_rt)){}
const void* get()const override{
return &value_;
}
void* get()override{
return &value_;
}
AnyValueBase* copyTo(void *_pd, const size_t _sz) const override{
SOLID_THROW("Copy on Non Copyable");
return nullptr;
}
AnyValueBase* moveTo(void *_pd, const size_t _sz, const bool _uses_data)override{
if(sizeof(AnyValue<T>) <= _sz){
return new(_pd) AnyValue<T>{std::move(value_)};
}else if(not _uses_data){//the pointer was allocated
return this;
}else{
return new AnyValue<T>{std::move(value_)};
}
}
T value_;
};
}//namespace impl
//-----------------------------------------------------------------------------
// AnyBase
//-----------------------------------------------------------------------------
class AnyBase{
public:
static constexpr size_t min_data_size = sizeof(impl::AnyValue<void*>);
protected:
AnyBase():pvalue_(nullptr){}
void doMoveFrom(AnyBase &_ranybase, void *_pv, const size_t _sz, const bool _uses_data){
if(_ranybase.pvalue_){
pvalue_ = _ranybase.pvalue_->moveTo(_pv, _sz, _uses_data);
if(pvalue_ == _ranybase.pvalue_){
_ranybase.pvalue_ = nullptr;
}
}
}
void doCopyFrom(const AnyBase &_ranybase, void *_pv, const size_t _sz){
if(_ranybase.pvalue_){
pvalue_ = _ranybase.pvalue_->copyTo(_pv, _sz);
}
}
impl::AnyValueBase *pvalue_;
};
//-----------------------------------------------------------------------------
// Any<Size>
//-----------------------------------------------------------------------------
template <size_t DataSize = 0>
class Any;
template <size_t DataSize>
class Any: protected AnyBase{
template <size_t DS>
friend class Any;
public:
using ThisT = Any<DataSize>;
Any(){}
template <size_t DS>
explicit Any(const Any<DS> &_rany){
doCopyFrom(_rany, data_, DataSize);
}
template <size_t DS>
explicit Any(Any<DS> &&_rany){
doMoveFrom(_rany, data_, DataSize, _rany.usesData());
_rany.clear();
}
Any(const ThisT &_rany){
doCopyFrom(_rany, data_, DataSize);
}
Any(ThisT &&_rany){
doMoveFrom(_rany, data_, DataSize, _rany.usesData());
_rany.clear();
}
template <typename T>
explicit Any(const T &_rt, bool _dummy){
reset(_rt);
}
template <typename T>
explicit Any(T &&_rt, bool _dummy){
reset(std::move(_rt));
}
~Any(){
clear();
}
template <typename T>
T* cast(){
if(pvalue_){
const std::type_info &req_type = typeid(impl::AnyValue<T>);
const std::type_info &val_type = typeid(*pvalue_);
if(std::type_index(req_type) == std::type_index(val_type)){
return reinterpret_cast<T*>(pvalue_->get());
}
}
return nullptr;
}
template <typename T>
const T* cast()const{
if(pvalue_){
const std::type_info &req_type = typeid(impl::AnyValue<T>);
const std::type_info &val_type = typeid(*pvalue_);
if(std::type_index(req_type) == std::type_index(val_type)){
return reinterpret_cast<const T*>(pvalue_->get());
}
}
return nullptr;
}
bool empty()const{
return pvalue_ == nullptr;
}
void clear(){
if(usesData()){
pvalue_->~AnyValueBase();
}else{
delete pvalue_;
}
pvalue_ = nullptr;
}
ThisT& operator=(const ThisT &_rany){
if(static_cast<const void*>(this) != static_cast<const void*>(&_rany)){
clear();
doCopyFrom(_rany, data_, DataSize);
}
return *this;
}
ThisT& operator=(ThisT &&_rany){
if(static_cast<const void*>(this) != static_cast<const void*>(&_rany)){
clear();
doMoveFrom(_rany, data_, DataSize, _rany.usesData());
_rany.clear();
}
return *this;
}
template <size_t DS>
ThisT& operator=(const Any<DS> &_rany){
if(static_cast<const void*>(this) != static_cast<const void*>(&_rany)){
clear();
doCopyFrom(_rany, data_, DataSize);
}
return *this;
}
template <size_t DS>
ThisT& operator=(Any<DS> &&_rany){
if(static_cast<const void*>(this) != static_cast<const void*>(&_rany)){
clear();
doMoveFrom(_rany, data_, DataSize, _rany.usesData());
_rany.clear();
}
return *this;
}
template <typename T>
void reset(const T &_rt){
clear();
pvalue_ = do_allocate(_rt, BoolToType<sizeof(impl::AnyValue<T>) <= DataSize>());
}
template <typename T>
void reset(T &&_rt){
clear();
pvalue_ = do_allocate(std::move(_rt), BoolToType<sizeof(impl::AnyValue<T>) <= DataSize>());
}
bool usesData()const{
return reinterpret_cast<const void*>(pvalue_) == reinterpret_cast<const void*>(data_);
}
private:
template <class T>
impl::AnyValueBase* do_allocate(T &&_rt, BoolToType<true> /*_emplace_new*/){
return new(data_) impl::AnyValue<T>(std::move(_rt));
}
template <class T>
impl::AnyValueBase* do_allocate(T &&_rt, BoolToType<false> /*_plain_new*/){
return new impl::AnyValue<T>(std::move(_rt));
}
template <class T>
impl::AnyValueBase* do_allocate(const T &_rt, BoolToType<true> /*_emplace_new*/){
return new(data_) impl::AnyValue<T>{_rt};
}
template <class T>
impl::AnyValueBase* do_allocate(const T &_rt, BoolToType<false> /*_plain_new*/){
return new impl::AnyValue<T>{_rt};
}
private:
char data_[DataSize];
};
//-----------------------------------------------------------------------------
template <size_t DS, typename T>
Any<DS> any_create(const T &_rt){
return Any<DS>(_rt, true);
}
//-----------------------------------------------------------------------------
template <size_t DS, typename T>
Any<DS> any_create(T &&_rt){
return Any<DS>(_rt, true);
}
//-----------------------------------------------------------------------------
}//namespace solid
#endif