forked from PeterSommerlad/scope14
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scope.hpp
465 lines (406 loc) · 14.1 KB
/
scope.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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
#ifndef SRC_SCOPE_HPP_
#define SRC_SCOPE_HPP_
// Copyright Eric Niebler and Peter Sommerlad 2016 - 2019.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
#include <utility>
#include <functional>
#include <limits> // for maxint
#include <type_traits>
#define SCOPE_NS std::experimental
namespace SCOPE_NS{
namespace detail {
namespace hidden{
// TODO: is_nothrow_assignable reimplementation
// should this helper be standardized? // write testcase where recognizable.
template<typename T>
constexpr std::conditional_t<
std::is_nothrow_move_assignable_v<T>,
T &&,
T const &>
_move_assign_if_noexcept(T &x) noexcept
{
return std::move(x);
}
template< class T >
constexpr typename std::conditional<
!std::is_nothrow_move_constructible_v<T> && std::is_copy_constructible_v<T>,
const T&,
T&&
>::type move_if_noexcept(T& x) noexcept;
}
template<typename T>
class _box
{
T value;
_box(T const &t) noexcept(noexcept(T(t)))
: value(t)
{}
_box(T &&t) noexcept(noexcept(T(std::move_if_noexcept(t))))
: value(std::move_if_noexcept(t))
{}
public:
template<typename TT, typename GG,
typename = std::enable_if_t<std::is_constructible_v<T, TT>>>
explicit _box(TT &&t, GG &&guard) noexcept(noexcept(_box((T &&) t)))
: _box(std::forward<TT>(t))
{
guard.release();
}
T &get() noexcept
{
return value;
}
T const &get() const noexcept
{
return value;
}
T &&move() noexcept
{
return std::move(value);
}
void reset(T const &t) noexcept(noexcept(value = t))
{
value = t;
}
void reset(T &&t) noexcept(noexcept(value = hidden::_move_assign_if_noexcept(t)))
{
value = hidden::_move_assign_if_noexcept(t);
}
};
template<typename T>
class _box<T &>
{
std::reference_wrapper<T> value;
public:
template<typename TT, typename GG,
typename = std::enable_if_t<std::is_convertible_v<TT, T &>>>
_box(TT &&t, GG &&guard) noexcept(noexcept(static_cast<T &>((TT &&) t)))
: value(static_cast<T &>(t))
{
guard.release();
}
T &get() const noexcept
{
return value.get();
}
T &move() const noexcept
{
return get();
}
void reset(T &t) noexcept
{
value = std::ref(t);
}
};
// new policy-based exception proof design by Eric Niebler
struct on_exit_policy
{
bool execute_{ true };
void release() noexcept
{
execute_ = false;
}
bool should_execute() const noexcept
{
return execute_;
}
};
struct on_fail_policy
{
int ec_ { std::uncaught_exceptions() };
void release() noexcept
{
ec_ = std::numeric_limits<int>::max();
}
bool should_execute() const noexcept
{
return ec_ < std::uncaught_exceptions();
}
};
struct on_success_policy
{
int ec_ { std::uncaught_exceptions() };
void release() noexcept
{
ec_ = -1;
}
bool should_execute() const noexcept
{
return ec_ >= std::uncaught_exceptions() ;
}
};
}
template<class EF, class Policy = detail::on_exit_policy>
class basic_scope_exit; // silence brain dead clang warning -Wmismatched-tags
//PS: It would be nice if just the following would work in C++17
//PS: however, we need a real class for template argument deduction
//PS: and a deduction guide, because the ctors are partially instantiated
//template<class EF>
//using scope_exit = basic_scope_exit<EF, detail::on_exit_policy>;
template<class EF>
struct [[nodiscard]] scope_exit : basic_scope_exit<EF, detail::on_exit_policy>{
using basic_scope_exit<EF, detail::on_exit_policy>::basic_scope_exit;
};
template <class EF>
//scope_exit(EF) -> scope_exit<EF>;
inline auto make_scope_exit(EF&&ef){
return scope_exit<std::decay_t<EF>>(std::forward<EF>(ef));
}
//template<class EF>
//using scope_fail = basic_scope_exit<EF, detail::on_fail_policy>;
template<class EF>
struct scope_fail : basic_scope_exit<EF, detail::on_fail_policy>{
using basic_scope_exit<EF, detail::on_fail_policy>::basic_scope_exit;
};
template <class EF>
//scope_fail(EF) -> scope_fail<EF>;
inline auto make_scope_fail(EF&&ef){
return scope_fail<std::decay_t<EF>>(std::forward<EF>(ef));
}
//template<class EF>
//using scope_success = basic_scope_exit<EF, detail::on_success_policy>;
template<class EF>
struct scope_success : basic_scope_exit<EF, detail::on_success_policy>{
using basic_scope_exit<EF,detail::on_success_policy>::basic_scope_exit;
};
template <class EF>
//scope_success(EF) -> scope_success<EF>;
inline auto make_scope_success(EF&&ef){
return scope_success<std::decay_t<EF>>(std::forward<EF>(ef));
}
namespace detail{
// DETAIL:
template<class Policy, class EF>
auto _make_guard(EF &&ef)
{
return basic_scope_exit<std::decay_t<EF>, Policy>(std::forward<EF>(ef));
}
struct _empty_scope_exit
{
void release() const noexcept
{}
};
}
// Requires: EF is Callable
// Requires: EF is nothrow MoveConstructible OR CopyConstructible
template<class EF, class Policy /*= on_exit_policy*/>
class [[nodiscard]] basic_scope_exit : Policy
{
static_assert(std::is_invocable_v<EF>,"scope guard must be callable");
detail::_box<EF> exit_function;
static auto _make_failsafe(std::true_type, const void *)
{
return detail::_empty_scope_exit{};
}
template<typename Fn>
static auto _make_failsafe(std::false_type, Fn *fn)
{
return basic_scope_exit<Fn &, Policy>(*fn);
}
template<typename EFP>
using _ctor_from = std::is_constructible<detail::_box<EF>, EFP, detail::_empty_scope_exit>;
template<typename EFP>
#ifndef _MSC_VER
using _noexcept_ctor_from = std::bool_constant<noexcept(detail::_box<EF>(std::declval<EFP>(), detail::_empty_scope_exit{}))>;
#else
// MSVC thinks that it is a function style cast
using _noexcept_ctor_from = std::bool_constant<noexcept(detail::_box<EF>::_box(std::declval<EFP>(), detail::_empty_scope_exit{}))>;
#endif
public:
template<typename EFP, typename = std::enable_if_t<_ctor_from<EFP>::value>>
explicit basic_scope_exit(EFP &&ef) noexcept(_noexcept_ctor_from<EFP>::value)
: exit_function(std::forward<EFP>( ef), _make_failsafe(_noexcept_ctor_from<EFP>{}, &ef))
{}
basic_scope_exit(basic_scope_exit &&that) noexcept(noexcept(detail::_box<EF>(that.exit_function.move(), that)))
: Policy(that), exit_function(that.exit_function.move(), that)
{}
~basic_scope_exit() noexcept(noexcept(exit_function.get()()))
{
if(this->should_execute())
exit_function.get()();
}
basic_scope_exit(const basic_scope_exit &) = delete;
basic_scope_exit &operator=(const basic_scope_exit &) = delete;
basic_scope_exit &operator=(basic_scope_exit &&) = delete;
using Policy::release;
};
template<class EF, class Policy>
void swap(basic_scope_exit<EF, Policy> &, basic_scope_exit<EF, Policy> &) = delete;
template<typename R, typename D>
class unique_resource
{
static_assert((std::is_move_constructible_v<R> && std::is_nothrow_move_constructible_v<R>) ||
std::is_copy_constructible_v<R>,
"resource must be nothrow_move_constructible or copy_constructible");
static_assert((std::is_move_constructible_v<R> && std::is_nothrow_move_constructible_v<D>) ||
std::is_copy_constructible_v<D>,
"deleter must be nothrow_move_constructible or copy_constructible");
static const unique_resource &this_; // never ODR used! Just for getting no_except() expr
detail::_box<R> resource;
detail::_box<D> deleter;
bool execute_on_destruction { true };
static constexpr auto is_nothrow_delete_v=std::bool_constant<noexcept(std::declval<D &>()(std::declval<R &>()))>::value;
public://should be private
template<typename RR, typename DD,
typename = std::enable_if_t<std::is_constructible_v<detail::_box<R>, RR, detail::_empty_scope_exit> &&
std::is_constructible_v<detail::_box<D>, DD, detail::_empty_scope_exit>>>
unique_resource(RR &&r, DD &&d, bool should_run)
noexcept(noexcept(detail::_box<R>(std::forward<RR>(r), detail::_empty_scope_exit {})) &&
noexcept(detail::_box<D>(std::forward<DD>(d), detail::_empty_scope_exit {})))
: resource{std::forward<RR>(r), scope_exit([&] {if (should_run) d(r);})}
, deleter{std::forward<DD>(d), scope_exit([&, this] {if (should_run) d(get());})}
, execute_on_destruction { should_run }
{}
// need help in making the factory a nice friend...
// the following two ICEs my g++ and gives compile errors about mismatche exception spec on clang7
// template<typename RM, typename DM, typename S>
// friend
// auto make_unique_resource_checked(RM &&r, const S &invalid, DM &&d)
//// noexcept(noexcept(make_unique_resource(std::forward<RM>(r), std::forward<DM>(d))))
// ;
// the following as well: complains that its exception specification doesn't match its own exception specification in clang
public:
// template<typename MR, typename MD, typename S>
//// [[nodiscard]]
// friend
// auto make_unique_resource_checked(MR &&r, const S &invalid, MD &&d)
// noexcept(std::is_nothrow_constructible_v<std::decay_t<MR>,MR> &&
// std::is_nothrow_constructible_v<std::decay_t<MD>,MD>)
// ->unique_resource<std::decay_t<MR>,std::decay_t<MD>>
// {
// bool const mustrelease(r == invalid);
// unique_resource resource{std::forward<MR>(r), std::forward<MD>(d),!mustrelease};
// return resource;
//
// }
//
//;
public:
template<typename RR, typename DD,
typename = std::enable_if_t<std::is_constructible<detail::_box<R>, RR, detail::_empty_scope_exit>::value &&
std::is_constructible<detail::_box<D>, DD, detail::_empty_scope_exit>::value >
>
unique_resource(RR &&r, DD &&d)
noexcept(noexcept(detail::_box<R>(std::forward<RR>(r), detail::_empty_scope_exit {})) &&
noexcept(detail::_box<D>(std::forward<DD>(d), detail::_empty_scope_exit {})))
: resource(std::forward<RR>(r), scope_exit([&] {d(r);}))
, deleter(std::forward<DD>(d), scope_exit([&, this] {d(get());}))
{}
unique_resource( unique_resource&& that)
noexcept(noexcept(detail::_box<R>(that.resource.move(), detail::_empty_scope_exit {})) &&
noexcept(detail::_box<D>(that.deleter.move(), detail::_empty_scope_exit {})))
: resource(that.resource.move(), detail::_empty_scope_exit { })
, deleter(that.deleter.move(), scope_exit([&, this] { if (that.execute_on_destruction) that.get_deleter()(get());that.release(); }))
, execute_on_destruction(std::exchange(that.execute_on_destruction, false))
{ }
unique_resource &operator=(unique_resource &&that) noexcept(is_nothrow_delete_v &&
std::is_nothrow_move_assignable_v<R> &&
std::is_nothrow_move_assignable_v<D>)
{
static_assert(std::is_nothrow_move_assignable<R>::value ||
std::is_copy_assignable<R>::value,
"The resource must be nothrow-move assignable, or copy assignable");
static_assert(std::is_nothrow_move_assignable<D>::value ||
std::is_copy_assignable<D>::value,
"The deleter must be nothrow-move assignable, or copy assignable");
if (&that != this) {
reset();
if constexpr (std::is_nothrow_move_assignable_v<detail::_box<R>>)
if constexpr (is_nothrow_move_assignable_v<detail::_box<D>>) {
resource = std::move(that.resource);
deleter = std::move(that.deleter);
} else {
deleter = _as_const(that.deleter);
resource = std::move(that.resource);
}
else if constexpr (is_nothrow_move_assignable_v<detail::_box<D>>) {
resource = _as_const(that.resource);
deleter = std::move(that.deleter);
} else {
resource = _as_const(that.resource);
deleter = _as_const(that.deleter);
}
execute_on_destruction = std::exchange(that.execute_on_destruction, false);
}
return *this;
}
~unique_resource() //noexcept(is_nowthrow_delete_v) // removed deleter must not throw
{
reset();
}
void reset() noexcept
{
if(execute_on_destruction)
{
execute_on_destruction = false;
get_deleter()(get());
}
}
template<typename RR>
auto reset(RR &&r)
noexcept(noexcept(resource.reset(std::forward<RR>(r))))
-> decltype(resource.reset(std::forward<RR>(r)), void())
{
auto &&guard = scope_fail([&, this]{ get_deleter()(r); }); // -Wunused-variable on clang
reset();
resource.reset(std::forward<RR>(r));
execute_on_destruction = true;
}
void release() noexcept
{
execute_on_destruction = false;
}
decltype(auto) get() const noexcept
{
return resource.get();
}
decltype(auto) get_deleter() const noexcept
{
return deleter.get();
}
template<typename RR=R>
auto operator->() const noexcept//(noexcept(detail::for_noexcept_on_copy_construction(this_.get())))
-> std::enable_if_t<std::is_pointer_v<RR>,decltype(get())>
{
return get();
}
template<typename RR=R>
auto operator*() const noexcept
-> std::enable_if_t<std::is_pointer_v<RR> && ! std::is_void_v<std::remove_pointer_t<RR>>,
std::add_lvalue_reference_t<std::remove_pointer_t<R>>>
{
return *get();
}
unique_resource& operator=(const unique_resource &) = delete;
unique_resource(const unique_resource &) = delete;
};
template<typename R, typename D>
//unique_resource(R, D)
//-> unique_resource<R, D>;
[[nodiscard]]
auto make_unique_resource(R&& r, D&&d){
// TODO
//return unique_resource<
}
/*
template<typename R, typename D>
unique_resource(R, D, bool)
-> unique_resource<R, D>;
*/
template<typename MR, typename MD, typename S>
[[nodiscard]]
auto make_unique_resource_checked(MR &&r, const S &invalid, MD &&d)
noexcept(std::is_nothrow_constructible_v<std::decay_t<MR>,MR> &&
std::is_nothrow_constructible_v<std::decay_t<MD>,MD>)
->unique_resource<std::decay_t<MR>,std::decay_t<MD>>
{
bool const mustrelease(r == invalid);
unique_resource<std::decay_t<MR>,std::decay_t<MD>>
resource{std::forward<MR>(r), std::forward<MD>(d),!mustrelease};
return resource;
}
// end of (c) Eric Niebler part
}
#endif /* SRC_SCOPE_HPP_ */