2014-11-02 19:34:14 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-02 19:34:14 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-21 01:16:47 +00:00
|
|
|
#include <utility>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "common/common_funcs.h"
|
2015-01-11 15:32:31 +00:00
|
|
|
|
2014-11-02 19:34:14 +00:00
|
|
|
namespace detail {
|
2016-09-18 00:38:01 +00:00
|
|
|
template <typename Func>
|
|
|
|
struct ScopeExitHelper {
|
2020-12-05 16:40:14 +00:00
|
|
|
explicit ScopeExitHelper(Func&& func_) : func(std::move(func_)) {}
|
2016-09-18 00:38:01 +00:00
|
|
|
~ScopeExitHelper() {
|
2020-03-31 19:16:07 +00:00
|
|
|
if (active) {
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cancel() {
|
|
|
|
active = false;
|
2016-09-18 00:38:01 +00:00
|
|
|
}
|
2014-11-02 19:34:14 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
Func func;
|
2020-03-31 19:16:07 +00:00
|
|
|
bool active{true};
|
2016-09-18 00:38:01 +00:00
|
|
|
};
|
2014-11-02 19:34:14 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
template <typename Func>
|
|
|
|
ScopeExitHelper<Func> ScopeExit(Func&& func) {
|
2019-04-12 00:01:31 +00:00
|
|
|
return ScopeExitHelper<Func>(std::forward<Func>(func));
|
2016-09-18 00:38:01 +00:00
|
|
|
}
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace detail
|
2014-11-02 19:34:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This macro allows you to conveniently specify a block of code that will run on scope exit. Handy
|
|
|
|
* for doing ad-hoc clean-up tasks in a function with multiple returns.
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
* \code
|
|
|
|
* const int saved_val = g_foo;
|
|
|
|
* g_foo = 55;
|
|
|
|
* SCOPE_EXIT({ g_foo = saved_val; });
|
|
|
|
*
|
|
|
|
* if (Bar()) {
|
|
|
|
* return 0;
|
|
|
|
* } else {
|
|
|
|
* return 20;
|
|
|
|
* }
|
|
|
|
* \endcode
|
|
|
|
*/
|
2015-01-11 15:32:31 +00:00
|
|
|
#define SCOPE_EXIT(body) auto CONCAT2(scope_exit_helper_, __LINE__) = detail::ScopeExit([&]() body)
|
2021-02-01 00:54:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This macro is similar to SCOPE_EXIT, except the object is caller managed. This is intended to be
|
|
|
|
* used when the caller might want to cancel the ScopeExit.
|
|
|
|
*/
|
|
|
|
#define SCOPE_GUARD(body) detail::ScopeExit([&]() body)
|