ClickHouse/libs/libcommon/include/ext/scope_guard.h

61 lines
1.5 KiB
C++
Raw Normal View History

2015-10-05 00:33:43 +00:00
#pragma once
#include <utility>
#include <functional>
2015-10-05 00:33:43 +00:00
namespace ext
{
template <class F>
class [[nodiscard]] basic_scope_guard
{
2015-10-05 00:33:43 +00:00
public:
constexpr basic_scope_guard() = default;
constexpr basic_scope_guard(basic_scope_guard && src) : function{std::exchange(src.function, F{})} {}
constexpr basic_scope_guard & operator=(basic_scope_guard && src)
{
if (this != &src)
{
invoke();
function = std::exchange(src.function, F{});
}
return *this;
}
template <typename G, typename = std::enable_if_t<std::is_convertible_v<G, F>, void>>
constexpr basic_scope_guard(const G & function_) : function{function_} {}
template <typename G, typename = std::enable_if_t<std::is_convertible_v<G, F>, void>>
constexpr basic_scope_guard(G && function_) : function{std::move(function_)} {}
~basic_scope_guard() { invoke(); }
private:
void invoke()
{
if constexpr (std::is_constructible_v<bool, F>)
{
if (!function)
return;
}
function();
}
F function = F{};
2015-10-05 00:33:43 +00:00
};
using scope_guard = basic_scope_guard<std::function<void(void)>>;
2015-10-05 00:33:43 +00:00
template <class F>
inline basic_scope_guard<F> make_scope_guard(F && function_) { return std::forward<F>(function_); }
2015-10-05 00:33:43 +00:00
}
#define SCOPE_EXIT_CONCAT(n, ...) \
const auto scope_exit##n = ext::make_scope_guard([&] { __VA_ARGS__; })
#define SCOPE_EXIT_FWD(n, ...) SCOPE_EXIT_CONCAT(n, __VA_ARGS__)
#define SCOPE_EXIT(...) SCOPE_EXIT_FWD(__LINE__, __VA_ARGS__)