1 #ifndef BOOST_SMART_PTR_SHARED_PTR_HPP_INCLUDED
2 #define BOOST_SMART_PTR_SHARED_PTR_HPP_INCLUDED
17 #include <boost/config.hpp>
19 #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
20 #include <boost/smart_ptr/detail/shared_ptr_nmt.hpp>
27 #include <boost/config/no_tr1/memory.hpp>
29 #include <boost/assert.hpp>
30 #include <boost/checked_delete.hpp>
31 #include <boost/throw_exception.hpp>
32 #include <boost/smart_ptr/detail/shared_count.hpp>
33 #include <boost/detail/workaround.hpp>
34 #include <boost/smart_ptr/detail/sp_convertible.hpp>
36 #if !defined(BOOST_SP_NO_ATOMIC_ACCESS)
37 #include <boost/smart_ptr/detail/spinlock_pool.hpp>
38 #include <boost/memory_order.hpp>
46 #if !defined(BOOST_NO_IOSTREAM)
47 #if !defined(BOOST_NO_IOSFWD)
57 template<
class T>
class shared_ptr;
80 #if !defined(BOOST_NO_CV_VOID_SPECIALIZATIONS)
105 pe->_internal_accept_owner( ppx,
const_cast< Y*
>( py ) );
113 pe->_internal_accept_owner( ppx,
const_cast< Y*
>( py ) );
121 struct sp_any_pointer
123 template<
class T> sp_any_pointer( T* ) {}
138 #if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) && !defined( BOOST_NO_AUTO_PTR )
194 template<
class Y,
class D>
shared_ptr(Y * p, D d): px(p), pn(p, d)
201 template<
class Y,
class D,
class A>
shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a )
225 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
227 shared_ptr(
shared_ptr<Y> const & r,
typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
234 : px( r.px ), pn( r.pn )
259 pn = boost::detail::shared_count();
268 boost::throw_exception(std::bad_cast());
272 #ifndef BOOST_NO_AUTO_PTR
278 pn = boost::detail::shared_count(r);
282 #if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
287 typename Ap::element_type * tmp = r.get();
288 pn = boost::detail::shared_count( r );
305 #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1400)
316 #ifndef BOOST_NO_AUTO_PTR
325 #if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
341 #if defined( BOOST_HAS_RVALUE_REFS )
350 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
352 shared_ptr( shared_ptr<Y> && r,
typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
374 this_type(
static_cast< shared_ptr<Y> &&
>( r ) ).
swap( *
this );
387 BOOST_ASSERT(p == 0 || p != px);
391 template<
class Y,
class D>
void reset( Y * p, D d )
396 template<
class Y,
class D,
class A>
void reset( Y * p, D d, A a )
408 BOOST_ASSERT(px != 0);
414 BOOST_ASSERT(px != 0);
424 #include <boost/smart_ptr/detail/operator_bool.hpp>
433 return pn.use_count();
449 return pn.get_deleter( ti );
454 return px == r.px && pn == r.pn;
460 #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
471 boost::detail::shared_count pn;
477 return a.
get() == b.
get();
482 return a.
get() != b.
get();
485 #if __GNUC__ == 2 && __GNUC_MINOR__ <= 96
489 template<
class T>
inline bool operator!=(shared_ptr<T>
const & a, shared_ptr<T>
const & b)
491 return a.get() != b.get();
540 BOOST_ASSERT(
dynamic_cast<T *
>(r.
get()) == r.
get());
541 return shared_static_cast<T>(r);
553 #if !defined(BOOST_NO_IOSTREAM)
555 #if defined(BOOST_NO_TEMPLATED_IOSTREAMS) || ( defined(__GNUC__) && (__GNUC__ < 3) )
557 template<
class Y> std::ostream &
operator<< (std::ostream & os, shared_ptr<Y>
const & p)
566 #ifndef _STLP_NO_IOSTREAMS
568 # if defined(BOOST_MSVC) && BOOST_WORKAROUND(BOOST_MSVC, < 1300 && __SGI_STL_PORT)
570 using std::basic_ostream;
571 template<
class E,
class T,
class Y> basic_ostream<E, T> &
operator<< (basic_ostream<E, T> & os, shared_ptr<Y>
const & p)
573 template<
class E,
class T,
class Y> std::basic_ostream<E, T> &
operator<< (std::basic_ostream<E, T> & os, shared_ptr<Y>
const & p)
588 #if ( defined(__GNUC__) && BOOST_WORKAROUND(__GNUC__, < 3) ) || \
589 ( defined(__EDG_VERSION__) && BOOST_WORKAROUND(__EDG_VERSION__, <= 238) ) || \
590 ( defined(__HP_aCC) && BOOST_WORKAROUND(__HP_aCC, <= 33500) )
595 template<
class D,
class T> D *
get_deleter(shared_ptr<T>
const & p)
597 void const * q = p._internal_get_deleter(BOOST_SP_TYPEID(D));
598 return const_cast<D *
>(
static_cast<D
const *
>(q));
612 #if !defined(BOOST_SP_NO_ATOMIC_ACCESS)
621 boost::detail::spinlock_pool<2>::scoped_lock lock( p );
632 boost::detail::spinlock_pool<2>::scoped_lock lock( p );
643 boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p );
659 boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p );
691 template<
class T >
struct hash;
shared_ptr(shared_ptr< Y > const &r, boost::detail::dynamic_cast_tag)
void reset(Y *p, D d, A a)
shared_ptr & operator=(std::auto_ptr< Y > &r)
shared_ptr(shared_ptr< Y > const &r, boost::detail::polymorphic_cast_tag)
boost::detail::sp_enable_if_auto_ptr< Ap, shared_ptr & >::type operator=(Ap r)
shared_ptr(Ap r, typename boost::detail::sp_enable_if_auto_ptr< Ap, int >::type=0)
void swap(shared_ptr< T > &other)
reference operator*() const
bool _internal_less(shared_ptr< Y > const &rhs) const
shared_ptr(weak_ptr< Y > const &r)
bool _internal_equiv(shared_ptr const &r) const
boost::detail::shared_ptr_traits< T >::reference reference
shared_ptr(shared_ptr< Y > const &r, typename boost::detail::sp_enable_if_convertible< Y, T >::type=boost::detail::sp_empty())
shared_ptr(Y *p, D d, A a)
shared_ptr & operator=(shared_ptr< Y > const &r)
shared_ptr(shared_ptr< Y > const &r, T *p)
shared_ptr(shared_ptr< Y > const &r, boost::detail::const_cast_tag)
shared_ptr(std::auto_ptr< Y > &r)
shared_ptr(shared_ptr< Y > const &r, boost::detail::static_cast_tag)
void reset(shared_ptr< Y > const &r, T *p)
shared_ptr & operator=(shared_ptr const &r)
shared_ptr(weak_ptr< Y > const &r, boost::detail::sp_nothrow_tag)
void * _internal_get_deleter(boost::detail::sp_typeinfo const &ti) const
void sp_enable_shared_from_this(boost::shared_ptr< X > const *ppx, Y const *py, boost::enable_shared_from_this< T > const *pe)
shared_ptr< T > shared_static_cast(shared_ptr< U > const &r)
shared_ptr< T > shared_dynamic_cast(shared_ptr< U > const &r)
void atomic_store_explicit(shared_ptr< T > *p, shared_ptr< T > r, memory_order)
bool atomic_compare_exchange_explicit(shared_ptr< T > *p, shared_ptr< T > *v, shared_ptr< T > w, memory_order, memory_order)
shared_ptr< T > shared_polymorphic_cast(shared_ptr< U > const &r)
T * get_pointer(shared_ptr< T > const &p)
bool operator==(const array< T, N > &x, const array< T, N > &y)
void swap(shared_ptr< T > &a, shared_ptr< T > &b)
std::size_t hash_value(boost::shared_ptr< T > const &p)
void swap(array< T, N > &x, array< T, N > &y)
shared_ptr< T > atomic_exchange(shared_ptr< T > *p, shared_ptr< T > r)
bool atomic_is_lock_free(shared_ptr< T > const *)
shared_ptr< T > atomic_exchange_explicit(shared_ptr< T > *p, shared_ptr< T > r, memory_order)
bool atomic_compare_exchange(shared_ptr< T > *p, shared_ptr< T > *v, shared_ptr< T > w)
void atomic_store(shared_ptr< T > *p, shared_ptr< T > r)
bool operator!=(const array< T, N > &x, const array< T, N > &y)
bool operator<(const array< T, N > &x, const array< T, N > &y)
shared_ptr< T > const_pointer_cast(shared_ptr< U > const &r)
D * get_deleter(shared_ptr< T > const &p)
shared_ptr< T > atomic_load(shared_ptr< T > const *p)
shared_ptr< T > atomic_load_explicit(shared_ptr< T > const *p, memory_order)
shared_ptr< T > static_pointer_cast(shared_ptr< U > const &r)
shared_ptr< T > shared_polymorphic_downcast(shared_ptr< U > const &r)
std::basic_ostream< E, T > & operator<<(std::basic_ostream< E, T > &os, shared_ptr< Y > const &p)
shared_ptr< T > dynamic_pointer_cast(shared_ptr< U > const &r)