|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*
- * Scope Guard
- * Copyright (C) 2017-2018 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 <http://www.gnu.org/licenses/>.
- */
-
- #pragma once
-
- #include "scope_exit.h"
- #include "detail/wrapper.h"
- #include <utility>
- #include <type_traits>
-
- namespace sr
- {
- namespace detail
- {
- template<class T, class TT>
- using is_ntmocp_constructible = std::conditional_t<std::is_reference_v<TT>
- || !std::is_nothrow_move_constructible_v<TT>,
- typename std::is_constructible<T, const TT&>::type,
- typename std::is_constructible<T, TT>::type>;
-
- template<class T, class TT>
- constexpr auto is_nothrow_move_or_copy_constructible_from_v = is_ntmocp_constructible<T, TT>::value;
-
-
-
- template<class T, class U = std::conditional_t<std::is_nothrow_move_constructible_v<T>, T&&, const T&>>
- constexpr U forward_if_nothrow_move_constructible(T&& value) noexcept
- {
- return std::forward<T>(value);
- }
-
-
- }
-
-
- template<class R, class D>
- class unique_resource
- {
- public:
-
- template<class RR, class DD,
- std::enable_if_t<(std::is_copy_constructible_v<R> || std::is_nothrow_move_constructible_v<R>)
- && (std::is_copy_constructible_v<D> || std::is_nothrow_move_constructible_v<D>), int> = 0,
- std::enable_if_t<detail::is_nothrow_move_or_copy_constructible_from_v<R, RR>, int> = 0,
- std::enable_if_t<detail::is_nothrow_move_or_copy_constructible_from_v<D, DD>, int> = 0
- >
- explicit unique_resource(RR&& r, DD&& d) noexcept(std::is_nothrow_constructible_v<R, RR>
- && std::is_nothrow_constructible_v<D, DD>)
- : m_resource(std::forward<RR>(r), scope_exit{[&r, &d] { d(r); }}),
- m_deleter(std::forward<DD>(d), scope_exit{[this, &d] { d(get()); }}),
- m_execute_on_destruction(true)
- {
- }
-
- unique_resource(unique_resource&& other) noexcept(std::is_nothrow_move_constructible_v<R>
- && std::is_nothrow_move_constructible_v<D>)
- : m_resource(detail::forward_if_nothrow_move_constructible(other.m_resource.get()), scope_exit{[] { }}),
- m_deleter(detail::forward_if_nothrow_move_constructible(other.m_deleter.get()),
- scope_exit{[&other] {
- other.get_deleter()(other.m_resource.get());
- other.release(); }}),
- m_execute_on_destruction(std::exchange(other.m_execute_on_destruction, false))
- {
- }
-
- unique_resource(const unique_resource&) = delete;
-
- ~unique_resource()
- {
- reset();
- }
-
-
- void reset() noexcept
- {
- if( m_execute_on_destruction == true )
- {
- m_execute_on_destruction = false;
- get_deleter()(m_resource.get());
- }
- }
-
- template<class RR>
- void reset(RR&& r)
- {
- reset();
-
- using R1 = typename detail::Wrapper<R>::type;
- auto se = scope_exit{[this, &r] { get_deleter()(r); }};
-
- if constexpr( std::is_nothrow_assignable_v<R1&, RR> == true )
- {
- m_resource.reset(std::forward<RR>(r));
- }
- else
- {
- m_resource.reset(std::as_const(r));
- }
-
- m_execute_on_destruction = true;
- se.release();
- }
-
- void release() noexcept
- {
- m_execute_on_destruction = false;
- }
-
- const R& get() const noexcept
- {
- return m_resource.get();
- }
-
- template<class RR = R, std::enable_if_t<std::is_pointer_v<RR>, int> = 0>
- RR operator->() const noexcept
- {
- return m_resource.get();
- }
-
- template<class RR = R,
- std::enable_if_t<( std::is_pointer_v<RR>
- && !std::is_void_v<std::remove_pointer_t<RR>>), int> = 0>
- std::add_lvalue_reference_t<std::remove_pointer_t<RR>> operator*() const noexcept
- {
- return *get();
- }
-
- const D& get_deleter() const noexcept
- {
- return m_deleter.get();
- }
-
-
- template<class RR = R, class DD = D,
- std::enable_if_t<(std::is_nothrow_move_assignable_v<RR>
- || std::is_nothrow_copy_assignable_v<RR>)
- && (std::is_nothrow_move_assignable_v<DD>
- || std::is_nothrow_copy_assignable_v<DD>), int> = 0
- >
- unique_resource& operator=(unique_resource&& other) noexcept(std::is_nothrow_assignable_v<R&, R>
- && std::is_nothrow_assignable_v<D&, D>)
- {
- if( this != &other )
- {
- reset();
-
- if constexpr( std::is_nothrow_move_assignable_v<RR> == true )
- {
- if constexpr( std::is_nothrow_move_assignable_v<DD> == true )
- {
- m_resource.reset(std::forward<RR>(other.m_resource.get()));
- m_deleter.reset(std::forward<DD>(other.m_deleter.get()));
- }
- else
- {
- m_deleter.reset(other.m_deleter.get());
- m_resource.reset(std::forward<RR>(other.m_resource.get()));
- }
- }
- else
- {
- if constexpr( std::is_nothrow_move_assignable_v<DD> == true )
- {
- m_resource.reset(other.m_resource.get());
- m_deleter.reset(std::forward<DD>(other.m_deleter.get()));
- }
- else
- {
- m_resource.reset(other.m_resource.get());
- m_deleter.reset(other.m_deleter.get());
- }
- }
-
- m_execute_on_destruction = std::exchange(other.m_execute_on_destruction, false);
- }
- return *this;
- }
-
- unique_resource& operator=(const unique_resource&) = delete;
-
-
- private:
-
- detail::Wrapper<R> m_resource;
- detail::Wrapper<D> m_deleter;
- bool m_execute_on_destruction;
- };
-
-
- template<class R, class D>
- unique_resource(R, D) -> unique_resource<R, D>;
-
-
- template<class R, class D, class S = R>
- unique_resource<std::decay_t<R>, std::decay_t<D>> make_unique_resource_checked(R&& r, const S& invalid, D&& d)
- noexcept(std::is_nothrow_constructible_v<std::decay_t<R>, R>
- && std::is_nothrow_constructible_v<std::decay_t<D>, D>)
- {
- const bool must_release{r == invalid};
- unique_resource<std::decay_t<R>, std::decay_t<D>> ur{std::forward<R>(r), std::forward<D>(d)};
-
- if( must_release == true )
- {
- ur.release();
- }
-
- return ur;
- }
-
- }
-
-
|