-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeferred.h
149 lines (125 loc) · 2.99 KB
/
deferred.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
#ifndef DEFERRED_H
#define DEFERRED_H
// Base interface for deferred storage management using CRTP
template <typename Impl>
struct storage_base {
~storage_base() noexcept
{
Impl::destructImpl(impl());
}
decltype(auto) get() noexcept
{
return impl()->getImpl();
}
decltype(auto) get() const noexcept
{
return impl()->getImpl();
}
void set(auto&& val)
{
impl()->setImpl(std::forward<decltype(val)>(val));
}
private:
constexpr Impl* impl() noexcept
{
return static_cast<Impl*>(this);
}
constexpr const Impl* impl() const noexcept
{
return static_cast<const Impl*>(this);
}
};
// Storage CRTP implementation
template <typename T>
class union_storage : public storage_base<union_storage<T>> {
union { T value; };
public:
friend class storage_base<union_storage<T>>;
union_storage() noexcept {}
~union_storage() noexcept {}
// I'm not a move constructor
union_storage(T&& t) noexcept
: value{ std::move(t) }
{}
private:
T& getImpl() noexcept
{
return value;
}
T const& getImpl() const noexcept
{
return value;
}
void setImpl(T&& t)
{
value = std::move(t);
}
static void destructImpl(union_storage* self) noexcept
{
reinterpret_cast<T*>(&self->value)->~T();
}
};
// Alternative storage CRTP implementation
//
//template <typename T>
//class buffer_storage : public storage_base<buffer_storage<T>> {
// alignas(T) std::byte storage[sizeof(T)];
//
//public:
// friend class storage_base<buffer_storage<T>>;
// buffer_storage() noexcept {}
// ~buffer_storage() noexcept {}
//
// // I'm not a move constructor
// buffer_storage(T&& t) noexcept
// {
// setImpl(std::move(t));
// }
//
//private:
// T& getImpl() noexcept
// {
// return *reinterpret_cast<T*>(&storage);
// }
//
// const T& getImpl() const noexcept
// {
// return *reinterpret_cast<const T*>(&storage);
// }
//
// void setImpl(T&& t)
// {
// new (&storage) T(std::move(t));
// }
//
// static void destructImpl(buffer_storage* self) noexcept
// {
// reinterpret_cast<T*>(self->storage)->~T();
// }
//};
template <typename T, template <typename> class Storage = union_storage>
class deferred {
Storage<T> storage;
public:
deferred() noexcept {}
~deferred() noexcept = default;
// I'm not a move constructor
deferred(T&& t) noexcept
: storage{ std::move(t) }
{}
deferred& operator=(T&& t) noexcept
{
storage.set(std::move(t));
return *this;
}
public:
T& get() & { return storage.get(); }
T& get() && = delete;
T const& get() const & { return storage.get(); }
T const& get() const && = delete;
operator T&() { return get(); }
operator T const&() const { return get(); }
T& operator*() { return get(); }
T* operator->() { return &get(); }
};
#endif // DEFERRED_H