#ifndef BOOST_SMART_PTR_INTRUSIVE_PTR_HPP_INCLUDED #define BOOST_SMART_PTR_INTRUSIVE_PTR_HPP_INCLUDED // // intrusive_ptr.hpp // // Copyright (c) 2001, 2002 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/smart_ptr/ for documentation. // #include #include #include #include // for std::less #include // for std::basic_ostream #include namespace boost { // // intrusive_ptr // // A smart pointer that uses intrusive reference counting. // // Relies on unqualified calls to // // void intrusive_ptr_add_ref(T * p); // void intrusive_ptr_release(T * p); // // (p != 0) // // The object is responsible for destroying itself. // template class intrusive_ptr { private: typedef intrusive_ptr this_type; public: typedef T element_type; constexpr intrusive_ptr() noexcept : px( 0 ) { } intrusive_ptr( T * p, bool add_ref = true ): px( p ) { if( px != 0 && add_ref ) intrusive_ptr_add_ref( px ); } template intrusive_ptr( intrusive_ptr const & rhs, typename boost::detail::sp_enable_if_convertible::type = boost::detail::sp_empty() ) : px( rhs.get() ) { if( px != 0 ) intrusive_ptr_add_ref( px ); } intrusive_ptr(intrusive_ptr const & rhs): px( rhs.px ) { if( px != 0 ) intrusive_ptr_add_ref( px ); } ~intrusive_ptr() { if( px != 0 ) intrusive_ptr_release( px ); } template intrusive_ptr & operator=(intrusive_ptr const & rhs) { this_type(rhs).swap(*this); return *this; } // Move support intrusive_ptr(intrusive_ptr && rhs) noexcept : px( rhs.px ) { rhs.px = 0; } intrusive_ptr & operator=(intrusive_ptr && rhs) noexcept { this_type( static_cast< intrusive_ptr && >( rhs ) ).swap(*this); return *this; } template friend class intrusive_ptr; template intrusive_ptr(intrusive_ptr && rhs, typename boost::detail::sp_enable_if_convertible::type = boost::detail::sp_empty()) : px( rhs.px ) { rhs.px = 0; } template intrusive_ptr & operator=(intrusive_ptr && rhs) noexcept { this_type( static_cast< intrusive_ptr && >( rhs ) ).swap(*this); return *this; } intrusive_ptr & operator=(intrusive_ptr const & rhs) { this_type(rhs).swap(*this); return *this; } intrusive_ptr & operator=(T * rhs) { this_type(rhs).swap(*this); return *this; } void reset() { this_type().swap( *this ); } void reset( T * rhs ) { this_type( rhs ).swap( *this ); } void reset( T * rhs, bool add_ref ) { this_type( rhs, add_ref ).swap( *this ); } T * get() const noexcept { return px; } T * detach() noexcept { T * ret = px; px = 0; return ret; } T & operator*() const BOOST_SP_NOEXCEPT_WITH_ASSERT { BOOST_ASSERT( px != 0 ); return *px; } T * operator->() const BOOST_SP_NOEXCEPT_WITH_ASSERT { BOOST_ASSERT( px != 0 ); return px; } explicit operator bool () const noexcept { return px != 0; } void swap(intrusive_ptr & rhs) noexcept { T * tmp = px; px = rhs.px; rhs.px = tmp; } private: T * px; }; template inline bool operator==(intrusive_ptr const & a, intrusive_ptr const & b) noexcept { return a.get() == b.get(); } template inline bool operator!=(intrusive_ptr const & a, intrusive_ptr const & b) noexcept { return a.get() != b.get(); } template inline bool operator==(intrusive_ptr const & a, U * b) noexcept { return a.get() == b; } template inline bool operator!=(intrusive_ptr const & a, U * b) noexcept { return a.get() != b; } template inline bool operator==(T * a, intrusive_ptr const & b) noexcept { return a == b.get(); } template inline bool operator!=(T * a, intrusive_ptr const & b) noexcept { return a != b.get(); } template inline bool operator==( intrusive_ptr const & p, std::nullptr_t ) noexcept { return p.get() == 0; } template inline bool operator==( std::nullptr_t, intrusive_ptr const & p ) noexcept { return p.get() == 0; } template inline bool operator!=( intrusive_ptr const & p, std::nullptr_t ) noexcept { return p.get() != 0; } template inline bool operator!=( std::nullptr_t, intrusive_ptr const & p ) noexcept { return p.get() != 0; } template inline bool operator<(intrusive_ptr const & a, intrusive_ptr const & b) noexcept { return std::less()(a.get(), b.get()); } template void swap(intrusive_ptr & lhs, intrusive_ptr & rhs) noexcept { lhs.swap(rhs); } // mem_fn support template T * get_pointer(intrusive_ptr const & p) noexcept { return p.get(); } // pointer casts template intrusive_ptr static_pointer_cast(intrusive_ptr const & p) { return static_cast(p.get()); } template intrusive_ptr const_pointer_cast(intrusive_ptr const & p) { return const_cast(p.get()); } template intrusive_ptr dynamic_pointer_cast(intrusive_ptr const & p) { return dynamic_cast(p.get()); } template intrusive_ptr static_pointer_cast( intrusive_ptr && p ) noexcept { return intrusive_ptr( static_cast( p.detach() ), false ); } template intrusive_ptr const_pointer_cast( intrusive_ptr && p ) noexcept { return intrusive_ptr( const_cast( p.detach() ), false ); } template intrusive_ptr dynamic_pointer_cast( intrusive_ptr && p ) noexcept { T * p2 = dynamic_cast( p.get() ); intrusive_ptr r( p2, false ); if( p2 ) p.detach(); return r; } // operator<< template std::ostream & operator<< (std::ostream & os, intrusive_ptr const & p) { os << p.get(); return os; } // hash_value template< class T > struct hash; template< class T > std::size_t hash_value( boost::intrusive_ptr const & p ) noexcept { return boost::hash< T* >()( p.get() ); } } // namespace boost // std::hash namespace std { template struct hash< ::boost::intrusive_ptr > { std::size_t operator()( ::boost::intrusive_ptr const & p ) const noexcept { return std::hash< T* >()( p.get() ); } }; } // namespace std #endif // #ifndef BOOST_SMART_PTR_INTRUSIVE_PTR_HPP_INCLUDED