| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 | #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 <boost/config.hpp>#include <boost/assert.hpp>#include <boost/config/workaround.hpp>#include <boost/smart_ptr/detail/sp_convertible.hpp>#include <boost/smart_ptr/detail/sp_nullptr_t.hpp>#include <boost/smart_ptr/detail/sp_noexcept.hpp>#include <boost/config/no_tr1/functional.hpp>           // for std::less#if !defined(BOOST_NO_IOSTREAM)#if !defined(BOOST_NO_IOSFWD)#include <iosfwd>               // for std::basic_ostream#else#include <ostream>#endif#endifnamespace 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 T> class intrusive_ptr{private:    typedef intrusive_ptr this_type;public:    typedef T element_type;    BOOST_CONSTEXPR intrusive_ptr() BOOST_SP_NOEXCEPT : px( 0 )    {    }    intrusive_ptr( T * p, bool add_ref = true ): px( p )    {        if( px != 0 && add_ref ) intrusive_ptr_add_ref( px );    }#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)    template<class U>#if !defined( BOOST_SP_NO_SP_CONVERTIBLE )    intrusive_ptr( intrusive_ptr<U> const & rhs, typename boost::detail::sp_enable_if_convertible<U,T>::type = boost::detail::sp_empty() )#else    intrusive_ptr( intrusive_ptr<U> const & rhs )#endif    : px( rhs.get() )    {        if( px != 0 ) intrusive_ptr_add_ref( px );    }#endif    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 );    }#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)    template<class U> intrusive_ptr & operator=(intrusive_ptr<U> const & rhs)    {        this_type(rhs).swap(*this);        return *this;    }#endif// Move support#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )    intrusive_ptr(intrusive_ptr && rhs) BOOST_SP_NOEXCEPT : px( rhs.px )    {        rhs.px = 0;    }    intrusive_ptr & operator=(intrusive_ptr && rhs) BOOST_SP_NOEXCEPT    {        this_type( static_cast< intrusive_ptr && >( rhs ) ).swap(*this);        return *this;    }    template<class U> friend class intrusive_ptr;    template<class U>#if !defined( BOOST_SP_NO_SP_CONVERTIBLE )    intrusive_ptr(intrusive_ptr<U> && rhs, typename boost::detail::sp_enable_if_convertible<U,T>::type = boost::detail::sp_empty())#else    intrusive_ptr(intrusive_ptr<U> && rhs)#endif            : px( rhs.px )    {        rhs.px = 0;    }    template<class U>    intrusive_ptr & operator=(intrusive_ptr<U> && rhs) BOOST_SP_NOEXCEPT    {        this_type( static_cast< intrusive_ptr<U> && >( rhs ) ).swap(*this);        return *this;    }#endif    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 BOOST_SP_NOEXCEPT    {        return px;    }    T * detach() BOOST_SP_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;    }// implicit conversion to "bool"#include <boost/smart_ptr/detail/operator_bool.hpp>    void swap(intrusive_ptr & rhs) BOOST_SP_NOEXCEPT    {        T * tmp = px;        px = rhs.px;        rhs.px = tmp;    }private:    T * px;};template<class T, class U> inline bool operator==(intrusive_ptr<T> const & a, intrusive_ptr<U> const & b) BOOST_SP_NOEXCEPT{    return a.get() == b.get();}template<class T, class U> inline bool operator!=(intrusive_ptr<T> const & a, intrusive_ptr<U> const & b) BOOST_SP_NOEXCEPT{    return a.get() != b.get();}template<class T, class U> inline bool operator==(intrusive_ptr<T> const & a, U * b) BOOST_SP_NOEXCEPT{    return a.get() == b;}template<class T, class U> inline bool operator!=(intrusive_ptr<T> const & a, U * b) BOOST_SP_NOEXCEPT{    return a.get() != b;}template<class T, class U> inline bool operator==(T * a, intrusive_ptr<U> const & b) BOOST_SP_NOEXCEPT{    return a == b.get();}template<class T, class U> inline bool operator!=(T * a, intrusive_ptr<U> const & b) BOOST_SP_NOEXCEPT{    return a != b.get();}#if __GNUC__ == 2 && __GNUC_MINOR__ <= 96// Resolve the ambiguity between our op!= and the one in rel_opstemplate<class T> inline bool operator!=(intrusive_ptr<T> const & a, intrusive_ptr<T> const & b) BOOST_SP_NOEXCEPT{    return a.get() != b.get();}#endif#if !defined( BOOST_NO_CXX11_NULLPTR )template<class T> inline bool operator==( intrusive_ptr<T> const & p, boost::detail::sp_nullptr_t ) BOOST_SP_NOEXCEPT{    return p.get() == 0;}template<class T> inline bool operator==( boost::detail::sp_nullptr_t, intrusive_ptr<T> const & p ) BOOST_SP_NOEXCEPT{    return p.get() == 0;}template<class T> inline bool operator!=( intrusive_ptr<T> const & p, boost::detail::sp_nullptr_t ) BOOST_SP_NOEXCEPT{    return p.get() != 0;}template<class T> inline bool operator!=( boost::detail::sp_nullptr_t, intrusive_ptr<T> const & p ) BOOST_SP_NOEXCEPT{    return p.get() != 0;}#endiftemplate<class T> inline bool operator<(intrusive_ptr<T> const & a, intrusive_ptr<T> const & b) BOOST_SP_NOEXCEPT{    return std::less<T *>()(a.get(), b.get());}template<class T> void swap(intrusive_ptr<T> & lhs, intrusive_ptr<T> & rhs) BOOST_SP_NOEXCEPT{    lhs.swap(rhs);}// mem_fn supporttemplate<class T> T * get_pointer(intrusive_ptr<T> const & p) BOOST_SP_NOEXCEPT{    return p.get();}// pointer caststemplate<class T, class U> intrusive_ptr<T> static_pointer_cast(intrusive_ptr<U> const & p){    return static_cast<T *>(p.get());}template<class T, class U> intrusive_ptr<T> const_pointer_cast(intrusive_ptr<U> const & p){    return const_cast<T *>(p.get());}template<class T, class U> intrusive_ptr<T> dynamic_pointer_cast(intrusive_ptr<U> const & p){    return dynamic_cast<T *>(p.get());}#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )template<class T, class U> intrusive_ptr<T> static_pointer_cast( intrusive_ptr<U> && p ) BOOST_SP_NOEXCEPT{    return intrusive_ptr<T>( static_cast<T*>( p.detach() ), false );}template<class T, class U> intrusive_ptr<T> const_pointer_cast( intrusive_ptr<U> && p ) BOOST_SP_NOEXCEPT{    return intrusive_ptr<T>( const_cast<T*>( p.detach() ), false );}template<class T, class U> intrusive_ptr<T> dynamic_pointer_cast( intrusive_ptr<U> && p ) BOOST_SP_NOEXCEPT{    T * p2 = dynamic_cast<T*>( p.get() );    intrusive_ptr<T> r( p2, false );    if( p2 ) p.detach();    return r;}#endif // defined( BOOST_NO_CXX11_RVALUE_REFERENCES )// operator<<#if !defined(BOOST_NO_IOSTREAM)#if defined(BOOST_NO_TEMPLATED_IOSTREAMS) || ( defined(__GNUC__) &&  (__GNUC__ < 3) )template<class Y> std::ostream & operator<< (std::ostream & os, intrusive_ptr<Y> const & p){    os << p.get();    return os;}#else// in STLport's no-iostreams mode no iostream symbols can be used#ifndef _STLP_NO_IOSTREAMS# if defined(BOOST_MSVC) && BOOST_WORKAROUND(BOOST_MSVC, < 1300 && __SGI_STL_PORT)// MSVC6 has problems finding std::basic_ostream through the using declaration in namespace _STLusing std::basic_ostream;template<class E, class T, class Y> basic_ostream<E, T> & operator<< (basic_ostream<E, T> & os, intrusive_ptr<Y> const & p)# elsetemplate<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, intrusive_ptr<Y> const & p)# endif {    os << p.get();    return os;}#endif // _STLP_NO_IOSTREAMS#endif // __GNUC__ < 3#endif // !defined(BOOST_NO_IOSTREAM)// hash_valuetemplate< class T > struct hash;template< class T > std::size_t hash_value( boost::intrusive_ptr<T> const & p ) BOOST_SP_NOEXCEPT{    return boost::hash< T* >()( p.get() );}} // namespace boost#endif  // #ifndef BOOST_SMART_PTR_INTRUSIVE_PTR_HPP_INCLUDED
 |