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
|
#pragma once
#include <exception>
#include <utility>
namespace HX {
/*
* Modeled upon the C++ standards proposal P0052r10 / Library Fundamentals v3.
* Not yet present in GNU stdlibc++ or clang libc++.
*/
template<typename F> class scope_exit {
private:
F m_func;
bool m_eod = false;
public:
explicit scope_exit(F &&f) : m_func(std::move(f)), m_eod(true) {}
scope_exit(scope_exit &&o) : m_func(std::move(o.m_func)), m_eod(o.m_eod) {
o.m_eod = false;
}
~scope_exit() try {
if (m_eod)
m_func();
} catch (...) {
}
void operator=(scope_exit &&) = delete;
void release() noexcept { m_eod = false; }
};
template<typename F> scope_exit<F> make_scope_exit(F &&f)
{
return scope_exit<F>(std::move(f));
}
} /* namespace */
|