/* * Scope Guard * Copyright (C) 2017 offa * * This file is part of Scope Guard. * * Scope Guard is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Scope Guard is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Scope Guard. If not, see . */ #pragma once #include #include #include namespace sr { template class scope_fail { public: template::value, int> = 0, std::enable_if_t<(!std::is_lvalue_reference::value) && std::is_nothrow_constructible::value, int> = 0 > explicit scope_fail(D&& deleter) : m_deleter(std::move(deleter)), m_execute_on_destruction(true), m_uncaught_on_creation(uncaught_exceptions()) { } template::value, int> = 0, std::enable_if_t::value, int> = 0 > explicit scope_fail(D&& deleter) try : m_deleter(deleter), m_execute_on_destruction(true), m_uncaught_on_creation(uncaught_exceptions()) { } catch( ... ) { deleter(); throw; } scope_fail(const scope_fail&) = delete; template::value, int> = 0 > scope_fail(scope_fail&& other) : m_deleter(std::move(other.m_deleter)), m_execute_on_destruction(other.m_execute_on_destruction), m_uncaught_on_creation(uncaught_exceptions()) { other.release(); } template::value, int> = 0 > scope_fail(scope_fail&& other) : m_deleter(other.m_deleter), m_execute_on_destruction(other.m_execute_on_destruction), m_uncaught_on_creation(other.m_uncaught_on_creation) { other.release(); } ~scope_fail() noexcept(noexcept(std::declval())) { if( (m_execute_on_destruction == true) && ( uncaught_exceptions() > m_uncaught_on_creation ) ) { m_deleter(); } } void release() noexcept { m_execute_on_destruction = false; } scope_fail& operator=(const scope_fail&) = delete; scope_fail& operator=(scope_fail&&) = delete; private: int uncaught_exceptions() const noexcept { return ( std::uncaught_exception() == true ? 1 : 0 ); } Deleter m_deleter; bool m_execute_on_destruction; int m_uncaught_on_creation; }; template scope_fail> make_scope_fail(Deleter&& deleter) { return scope_fail>{std::forward(deleter)}; } }