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

27 lines
662 B
C++
Raw Normal View History

2015-10-05 00:33:43 +00:00
#pragma once
#include <utility>
namespace ext
{
template <class F> class scope_guard {
const F function;
2015-10-05 00:33:43 +00:00
public:
2019-08-03 11:02:40 +00:00
constexpr scope_guard(const F & function_) : function{function_} {}
constexpr scope_guard(F && function_) : function{std::move(function_)} {}
~scope_guard() { function(); }
2015-10-05 00:33:43 +00:00
};
template <class F>
2019-08-03 11:02:40 +00:00
inline 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__)