123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- #ifndef BOOST_SMART_PTR_WEAK_PTR_HPP_INCLUDED
- #define BOOST_SMART_PTR_WEAK_PTR_HPP_INCLUDED
- #include <boost/smart_ptr/detail/requires_cxx11.hpp>
- #include <boost/smart_ptr/detail/shared_count.hpp>
- #include <boost/smart_ptr/shared_ptr.hpp>
- #include <boost/smart_ptr/detail/sp_noexcept.hpp>
- #include <memory>
- #include <cstddef>
- namespace boost
- {
- template<class T> class weak_ptr
- {
- private:
-
- typedef weak_ptr<T> this_type;
- public:
- typedef typename boost::detail::sp_element< T >::type element_type;
- BOOST_CONSTEXPR weak_ptr() BOOST_SP_NOEXCEPT : px(0), pn()
- {
- }
- #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
- weak_ptr( weak_ptr const & r ) BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn )
- {
- }
- weak_ptr & operator=( weak_ptr const & r ) BOOST_SP_NOEXCEPT
- {
- px = r.px;
- pn = r.pn;
- return *this;
- }
- #endif
- template<class Y>
- #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
- weak_ptr( weak_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
- #else
- weak_ptr( weak_ptr<Y> const & r )
- #endif
- BOOST_SP_NOEXCEPT : px(r.lock().get()), pn(r.pn)
- {
- boost::detail::sp_assert_convertible< Y, T >();
- }
- #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
- template<class Y>
- #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
- weak_ptr( weak_ptr<Y> && r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
- #else
- weak_ptr( weak_ptr<Y> && r )
- #endif
- BOOST_SP_NOEXCEPT : px( r.lock().get() ), pn( static_cast< boost::detail::weak_count && >( r.pn ) )
- {
- boost::detail::sp_assert_convertible< Y, T >();
- r.px = 0;
- }
-
- weak_ptr( weak_ptr && r )
- BOOST_SP_NOEXCEPT : px( r.px ), pn( static_cast< boost::detail::weak_count && >( r.pn ) )
- {
- r.px = 0;
- }
-
- weak_ptr & operator=( weak_ptr && r ) BOOST_SP_NOEXCEPT
- {
- this_type( static_cast< weak_ptr && >( r ) ).swap( *this );
- return *this;
- }
- #endif
- template<class Y>
- #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
- weak_ptr( shared_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
- #else
- weak_ptr( shared_ptr<Y> const & r )
- #endif
- BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn )
- {
- boost::detail::sp_assert_convertible< Y, T >();
- }
-
- template<class Y> weak_ptr(shared_ptr<Y> const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( r.pn )
- {
- }
- template<class Y> weak_ptr(weak_ptr<Y> const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( r.pn )
- {
- }
- #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
- template<class Y> weak_ptr(weak_ptr<Y> && r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( std::move( r.pn ) )
- {
- }
- #endif
- #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1300)
- template<class Y>
- weak_ptr & operator=( weak_ptr<Y> const & r ) BOOST_SP_NOEXCEPT
- {
- boost::detail::sp_assert_convertible< Y, T >();
- px = r.lock().get();
- pn = r.pn;
- return *this;
- }
- #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
- template<class Y>
- weak_ptr & operator=( weak_ptr<Y> && r ) BOOST_SP_NOEXCEPT
- {
- this_type( static_cast< weak_ptr<Y> && >( r ) ).swap( *this );
- return *this;
- }
- #endif
- template<class Y>
- weak_ptr & operator=( shared_ptr<Y> const & r ) BOOST_SP_NOEXCEPT
- {
- boost::detail::sp_assert_convertible< Y, T >();
- px = r.px;
- pn = r.pn;
- return *this;
- }
- #endif
- shared_ptr<T> lock() const BOOST_SP_NOEXCEPT
- {
- return shared_ptr<T>( *this, boost::detail::sp_nothrow_tag() );
- }
- long use_count() const BOOST_SP_NOEXCEPT
- {
- return pn.use_count();
- }
- bool expired() const BOOST_SP_NOEXCEPT
- {
- return pn.use_count() == 0;
- }
- bool _empty() const BOOST_SP_NOEXCEPT
- {
- return pn.empty();
- }
- bool empty() const BOOST_SP_NOEXCEPT
- {
- return pn.empty();
- }
- void reset() BOOST_SP_NOEXCEPT
- {
- this_type().swap(*this);
- }
- void swap(this_type & other) BOOST_SP_NOEXCEPT
- {
- std::swap(px, other.px);
- pn.swap(other.pn);
- }
- template<class Y> bool owner_before( weak_ptr<Y> const & rhs ) const BOOST_SP_NOEXCEPT
- {
- return pn < rhs.pn;
- }
- template<class Y> bool owner_before( shared_ptr<Y> const & rhs ) const BOOST_SP_NOEXCEPT
- {
- return pn < rhs.pn;
- }
- template<class Y> bool owner_equals( weak_ptr<Y> const & rhs ) const BOOST_SP_NOEXCEPT
- {
- return pn == rhs.pn;
- }
- template<class Y> bool owner_equals( shared_ptr<Y> const & rhs ) const BOOST_SP_NOEXCEPT
- {
- return pn == rhs.pn;
- }
- std::size_t owner_hash_value() const BOOST_SP_NOEXCEPT
- {
- return pn.hash_value();
- }
- #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
- private:
- template<class Y> friend class weak_ptr;
- template<class Y> friend class shared_ptr;
- #endif
- element_type * px;
- boost::detail::weak_count pn;
- };
- template<class T, class U> inline bool operator<(weak_ptr<T> const & a, weak_ptr<U> const & b) BOOST_SP_NOEXCEPT
- {
- return a.owner_before( b );
- }
- template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b) BOOST_SP_NOEXCEPT
- {
- a.swap(b);
- }
- #if defined(__cpp_deduction_guides)
- template<class T> weak_ptr( shared_ptr<T> ) -> weak_ptr<T>;
- #endif
- template< class T > std::size_t hash_value( boost::weak_ptr<T> const & p ) BOOST_SP_NOEXCEPT
- {
- return p.owner_hash_value();
- }
- }
- namespace std
- {
- #if !defined(BOOST_NO_CXX11_HDR_FUNCTIONAL)
- template<class T> struct hash< ::boost::weak_ptr<T> >
- {
- std::size_t operator()( ::boost::weak_ptr<T> const & p ) const BOOST_SP_NOEXCEPT
- {
- return p.owner_hash_value();
- }
- };
- #endif
- template<class T> struct equal_to< ::boost::weak_ptr<T> >
- {
- bool operator()( ::boost::weak_ptr<T> const & a, ::boost::weak_ptr<T> const & b ) const BOOST_SP_NOEXCEPT
- {
- return a.owner_equals( b );
- }
- };
- }
- #endif
|