2014-11-02 20:34:14 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-02 20:34:14 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-21 02:16:47 +01:00
|
|
|
#include <utility>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include "common/common_funcs.h"
|
2015-01-11 16:32:31 +01:00
|
|
|
|
2014-11-02 20:34:14 +01:00
|
|
|
namespace detail {
|
2016-09-18 02:38:01 +02:00
|
|
|
template <typename Func>
|
|
|
|
struct ScopeExitHelper {
|
2016-09-19 03:01:46 +02:00
|
|
|
explicit ScopeExitHelper(Func&& func) : func(std::move(func)) {}
|
2016-09-18 02:38:01 +02:00
|
|
|
~ScopeExitHelper() {
|
|
|
|
func();
|
|
|
|
}
|
2014-11-02 20:34:14 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
Func func;
|
|
|
|
};
|
2014-11-02 20:34:14 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
template <typename Func>
|
|
|
|
ScopeExitHelper<Func> ScopeExit(Func&& func) {
|
2019-04-12 02:01:31 +02:00
|
|
|
return ScopeExitHelper<Func>(std::forward<Func>(func));
|
2016-09-18 02:38:01 +02:00
|
|
|
}
|
2018-01-20 08:48:02 +01:00
|
|
|
} // namespace detail
|
2014-11-02 20:34:14 +01: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 16:32:31 +01:00
|
|
|
#define SCOPE_EXIT(body) auto CONCAT2(scope_exit_helper_, __LINE__) = detail::ScopeExit([&]() body)
|