shared_ptr.hpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077
  1. #ifndef BOOST_SMART_PTR_SHARED_PTR_HPP_INCLUDED
  2. #define BOOST_SMART_PTR_SHARED_PTR_HPP_INCLUDED
  3. //
  4. // shared_ptr.hpp
  5. //
  6. // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
  7. // Copyright (c) 2001-2008 Peter Dimov
  8. //
  9. // Distributed under the Boost Software License, Version 1.0. (See
  10. // accompanying file LICENSE_1_0.txt or copy at
  11. // http://www.boost.org/LICENSE_1_0.txt)
  12. //
  13. // See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation.
  14. //
  15. #include <boost/config.hpp> // for broken compiler workarounds
  16. // In order to avoid circular dependencies with Boost.TR1
  17. // we make sure that our include of <memory> doesn't try to
  18. // pull in the TR1 headers: that's why we use this header
  19. // rather than including <memory> directly:
  20. #include <boost/config/no_tr1/memory.hpp> // std::auto_ptr
  21. #include <boost/assert.hpp>
  22. #include <boost/checked_delete.hpp>
  23. #include <boost/throw_exception.hpp>
  24. #include <boost/smart_ptr/detail/shared_count.hpp>
  25. #include <boost/detail/workaround.hpp>
  26. #include <boost/smart_ptr/detail/sp_convertible.hpp>
  27. #include <boost/smart_ptr/detail/sp_nullptr_t.hpp>
  28. #include <boost/smart_ptr/detail/sp_disable_deprecated.hpp>
  29. #if !defined(BOOST_SP_NO_ATOMIC_ACCESS)
  30. #include <boost/smart_ptr/detail/spinlock_pool.hpp>
  31. #endif
  32. #include <algorithm> // for std::swap
  33. #include <functional> // for std::less
  34. #include <typeinfo> // for std::bad_cast
  35. #include <cstddef> // for std::size_t
  36. #if !defined(BOOST_NO_IOSTREAM)
  37. #if !defined(BOOST_NO_IOSFWD)
  38. #include <iosfwd> // for std::basic_ostream
  39. #else
  40. #include <ostream>
  41. #endif
  42. #endif
  43. #if defined( BOOST_SP_DISABLE_DEPRECATED )
  44. #pragma GCC diagnostic push
  45. #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
  46. #endif
  47. namespace boost
  48. {
  49. template<class T> class shared_ptr;
  50. template<class T> class weak_ptr;
  51. template<class T> class enable_shared_from_this;
  52. class enable_shared_from_raw;
  53. namespace movelib
  54. {
  55. template< class T, class D > class unique_ptr;
  56. } // namespace movelib
  57. namespace detail
  58. {
  59. // sp_element, element_type
  60. template< class T > struct sp_element
  61. {
  62. typedef T type;
  63. };
  64. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  65. template< class T > struct sp_element< T[] >
  66. {
  67. typedef T type;
  68. };
  69. #if !defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 )
  70. template< class T, std::size_t N > struct sp_element< T[N] >
  71. {
  72. typedef T type;
  73. };
  74. #endif
  75. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  76. // sp_dereference, return type of operator*
  77. template< class T > struct sp_dereference
  78. {
  79. typedef T & type;
  80. };
  81. template<> struct sp_dereference< void >
  82. {
  83. typedef void type;
  84. };
  85. #if !defined(BOOST_NO_CV_VOID_SPECIALIZATIONS)
  86. template<> struct sp_dereference< void const >
  87. {
  88. typedef void type;
  89. };
  90. template<> struct sp_dereference< void volatile >
  91. {
  92. typedef void type;
  93. };
  94. template<> struct sp_dereference< void const volatile >
  95. {
  96. typedef void type;
  97. };
  98. #endif // !defined(BOOST_NO_CV_VOID_SPECIALIZATIONS)
  99. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  100. template< class T > struct sp_dereference< T[] >
  101. {
  102. typedef void type;
  103. };
  104. #if !defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 )
  105. template< class T, std::size_t N > struct sp_dereference< T[N] >
  106. {
  107. typedef void type;
  108. };
  109. #endif
  110. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  111. // sp_member_access, return type of operator->
  112. template< class T > struct sp_member_access
  113. {
  114. typedef T * type;
  115. };
  116. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  117. template< class T > struct sp_member_access< T[] >
  118. {
  119. typedef void type;
  120. };
  121. #if !defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 )
  122. template< class T, std::size_t N > struct sp_member_access< T[N] >
  123. {
  124. typedef void type;
  125. };
  126. #endif
  127. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  128. // sp_array_access, return type of operator[]
  129. template< class T > struct sp_array_access
  130. {
  131. typedef void type;
  132. };
  133. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  134. template< class T > struct sp_array_access< T[] >
  135. {
  136. typedef T & type;
  137. };
  138. #if !defined( __BORLANDC__ ) || !BOOST_WORKAROUND( __BORLANDC__, < 0x600 )
  139. template< class T, std::size_t N > struct sp_array_access< T[N] >
  140. {
  141. typedef T & type;
  142. };
  143. #endif
  144. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  145. // sp_extent, for operator[] index check
  146. template< class T > struct sp_extent
  147. {
  148. enum _vt { value = 0 };
  149. };
  150. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  151. template< class T, std::size_t N > struct sp_extent< T[N] >
  152. {
  153. enum _vt { value = N };
  154. };
  155. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  156. // enable_shared_from_this support
  157. template< class X, class Y, class T > inline void sp_enable_shared_from_this( boost::shared_ptr<X> const * ppx, Y const * py, boost::enable_shared_from_this< T > const * pe )
  158. {
  159. if( pe != 0 )
  160. {
  161. pe->_internal_accept_owner( ppx, const_cast< Y* >( py ) );
  162. }
  163. }
  164. template< class X, class Y > inline void sp_enable_shared_from_this( boost::shared_ptr<X> * ppx, Y const * py, boost::enable_shared_from_raw const * pe );
  165. #ifdef _MANAGED
  166. // Avoid C4793, ... causes native code generation
  167. struct sp_any_pointer
  168. {
  169. template<class T> sp_any_pointer( T* ) {}
  170. };
  171. inline void sp_enable_shared_from_this( sp_any_pointer, sp_any_pointer, sp_any_pointer )
  172. {
  173. }
  174. #else // _MANAGED
  175. inline void sp_enable_shared_from_this( ... )
  176. {
  177. }
  178. #endif // _MANAGED
  179. #if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) && !defined( BOOST_NO_AUTO_PTR )
  180. // rvalue auto_ptr support based on a technique by Dave Abrahams
  181. template< class T, class R > struct sp_enable_if_auto_ptr
  182. {
  183. };
  184. template< class T, class R > struct sp_enable_if_auto_ptr< std::auto_ptr< T >, R >
  185. {
  186. typedef R type;
  187. };
  188. #endif
  189. // sp_assert_convertible
  190. template< class Y, class T > inline void sp_assert_convertible()
  191. {
  192. #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
  193. // static_assert( sp_convertible< Y, T >::value );
  194. typedef char tmp[ sp_convertible< Y, T >::value? 1: -1 ];
  195. (void)sizeof( tmp );
  196. #else
  197. T* p = static_cast< Y* >( 0 );
  198. (void)p;
  199. #endif
  200. }
  201. // pointer constructor helper
  202. template< class T, class Y > inline void sp_pointer_construct( boost::shared_ptr< T > * ppx, Y * p, boost::detail::shared_count & pn )
  203. {
  204. boost::detail::shared_count( p ).swap( pn );
  205. boost::detail::sp_enable_shared_from_this( ppx, p, p );
  206. }
  207. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  208. template< class T, class Y > inline void sp_pointer_construct( boost::shared_ptr< T[] > * /*ppx*/, Y * p, boost::detail::shared_count & pn )
  209. {
  210. sp_assert_convertible< Y[], T[] >();
  211. boost::detail::shared_count( p, boost::checked_array_deleter< T >() ).swap( pn );
  212. }
  213. template< class T, std::size_t N, class Y > inline void sp_pointer_construct( boost::shared_ptr< T[N] > * /*ppx*/, Y * p, boost::detail::shared_count & pn )
  214. {
  215. sp_assert_convertible< Y[N], T[N] >();
  216. boost::detail::shared_count( p, boost::checked_array_deleter< T >() ).swap( pn );
  217. }
  218. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  219. // deleter constructor helper
  220. template< class T, class Y > inline void sp_deleter_construct( boost::shared_ptr< T > * ppx, Y * p )
  221. {
  222. boost::detail::sp_enable_shared_from_this( ppx, p, p );
  223. }
  224. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  225. template< class T, class Y > inline void sp_deleter_construct( boost::shared_ptr< T[] > * /*ppx*/, Y * /*p*/ )
  226. {
  227. sp_assert_convertible< Y[], T[] >();
  228. }
  229. template< class T, std::size_t N, class Y > inline void sp_deleter_construct( boost::shared_ptr< T[N] > * /*ppx*/, Y * /*p*/ )
  230. {
  231. sp_assert_convertible< Y[N], T[N] >();
  232. }
  233. #endif // !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  234. } // namespace detail
  235. //
  236. // shared_ptr
  237. //
  238. // An enhanced relative of scoped_ptr with reference counted copy semantics.
  239. // The object pointed to is deleted when the last shared_ptr pointing to it
  240. // is destroyed or reset.
  241. //
  242. template<class T> class shared_ptr
  243. {
  244. private:
  245. // Borland 5.5.1 specific workaround
  246. typedef shared_ptr<T> this_type;
  247. public:
  248. typedef typename boost::detail::sp_element< T >::type element_type;
  249. shared_ptr() BOOST_NOEXCEPT : px( 0 ), pn() // never throws in 1.30+
  250. {
  251. }
  252. #if !defined( BOOST_NO_CXX11_NULLPTR )
  253. shared_ptr( boost::detail::sp_nullptr_t ) BOOST_NOEXCEPT : px( 0 ), pn() // never throws
  254. {
  255. }
  256. #endif
  257. template<class Y>
  258. explicit shared_ptr( Y * p ): px( p ), pn() // Y must be complete
  259. {
  260. boost::detail::sp_pointer_construct( this, p, pn );
  261. }
  262. //
  263. // Requirements: D's copy constructor must not throw
  264. //
  265. // shared_ptr will release p by calling d(p)
  266. //
  267. template<class Y, class D> shared_ptr( Y * p, D d ): px( p ), pn( p, d )
  268. {
  269. boost::detail::sp_deleter_construct( this, p );
  270. }
  271. #if !defined( BOOST_NO_CXX11_NULLPTR )
  272. template<class D> shared_ptr( boost::detail::sp_nullptr_t p, D d ): px( p ), pn( p, d )
  273. {
  274. }
  275. #endif
  276. // As above, but with allocator. A's copy constructor shall not throw.
  277. template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a )
  278. {
  279. boost::detail::sp_deleter_construct( this, p );
  280. }
  281. #if !defined( BOOST_NO_CXX11_NULLPTR )
  282. template<class D, class A> shared_ptr( boost::detail::sp_nullptr_t p, D d, A a ): px( p ), pn( p, d, a )
  283. {
  284. }
  285. #endif
  286. // generated copy constructor, destructor are fine...
  287. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  288. // ... except in C++0x, move disables the implicit copy
  289. shared_ptr( shared_ptr const & r ) BOOST_NOEXCEPT : px( r.px ), pn( r.pn )
  290. {
  291. }
  292. #endif
  293. template<class Y>
  294. explicit shared_ptr( weak_ptr<Y> const & r ): pn( r.pn ) // may throw
  295. {
  296. boost::detail::sp_assert_convertible< Y, T >();
  297. // it is now safe to copy r.px, as pn(r.pn) did not throw
  298. px = r.px;
  299. }
  300. template<class Y>
  301. shared_ptr( weak_ptr<Y> const & r, boost::detail::sp_nothrow_tag )
  302. BOOST_NOEXCEPT : px( 0 ), pn( r.pn, boost::detail::sp_nothrow_tag() )
  303. {
  304. if( !pn.empty() )
  305. {
  306. px = r.px;
  307. }
  308. }
  309. template<class Y>
  310. #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
  311. shared_ptr( shared_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
  312. #else
  313. shared_ptr( shared_ptr<Y> const & r )
  314. #endif
  315. BOOST_NOEXCEPT : px( r.px ), pn( r.pn )
  316. {
  317. boost::detail::sp_assert_convertible< Y, T >();
  318. }
  319. // aliasing
  320. template< class Y >
  321. shared_ptr( shared_ptr<Y> const & r, element_type * p ) BOOST_NOEXCEPT : px( p ), pn( r.pn )
  322. {
  323. }
  324. #ifndef BOOST_NO_AUTO_PTR
  325. template<class Y>
  326. explicit shared_ptr( std::auto_ptr<Y> & r ): px(r.get()), pn()
  327. {
  328. boost::detail::sp_assert_convertible< Y, T >();
  329. Y * tmp = r.get();
  330. pn = boost::detail::shared_count( r );
  331. boost::detail::sp_deleter_construct( this, tmp );
  332. }
  333. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  334. template<class Y>
  335. shared_ptr( std::auto_ptr<Y> && r ): px(r.get()), pn()
  336. {
  337. boost::detail::sp_assert_convertible< Y, T >();
  338. Y * tmp = r.get();
  339. pn = boost::detail::shared_count( r );
  340. boost::detail::sp_deleter_construct( this, tmp );
  341. }
  342. #elif !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  343. template<class Ap>
  344. explicit shared_ptr( Ap r, typename boost::detail::sp_enable_if_auto_ptr<Ap, int>::type = 0 ): px( r.get() ), pn()
  345. {
  346. typedef typename Ap::element_type Y;
  347. boost::detail::sp_assert_convertible< Y, T >();
  348. Y * tmp = r.get();
  349. pn = boost::detail::shared_count( r );
  350. boost::detail::sp_deleter_construct( this, tmp );
  351. }
  352. #endif // BOOST_NO_SFINAE, BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  353. #endif // BOOST_NO_AUTO_PTR
  354. #if !defined( BOOST_NO_CXX11_SMART_PTR ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  355. template< class Y, class D >
  356. shared_ptr( std::unique_ptr< Y, D > && r ): px( r.get() ), pn()
  357. {
  358. boost::detail::sp_assert_convertible< Y, T >();
  359. typename std::unique_ptr< Y, D >::pointer tmp = r.get();
  360. pn = boost::detail::shared_count( r );
  361. boost::detail::sp_deleter_construct( this, tmp );
  362. }
  363. #endif
  364. template< class Y, class D >
  365. shared_ptr( boost::movelib::unique_ptr< Y, D > r ): px( r.get() ), pn()
  366. {
  367. boost::detail::sp_assert_convertible< Y, T >();
  368. typename boost::movelib::unique_ptr< Y, D >::pointer tmp = r.get();
  369. pn = boost::detail::shared_count( r );
  370. boost::detail::sp_deleter_construct( this, tmp );
  371. }
  372. // assignment
  373. shared_ptr & operator=( shared_ptr const & r ) BOOST_NOEXCEPT
  374. {
  375. this_type(r).swap(*this);
  376. return *this;
  377. }
  378. #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1400)
  379. template<class Y>
  380. shared_ptr & operator=(shared_ptr<Y> const & r) BOOST_NOEXCEPT
  381. {
  382. this_type(r).swap(*this);
  383. return *this;
  384. }
  385. #endif
  386. #ifndef BOOST_NO_AUTO_PTR
  387. template<class Y>
  388. shared_ptr & operator=( std::auto_ptr<Y> & r )
  389. {
  390. this_type( r ).swap( *this );
  391. return *this;
  392. }
  393. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  394. template<class Y>
  395. shared_ptr & operator=( std::auto_ptr<Y> && r )
  396. {
  397. this_type( static_cast< std::auto_ptr<Y> && >( r ) ).swap( *this );
  398. return *this;
  399. }
  400. #elif !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  401. template<class Ap>
  402. typename boost::detail::sp_enable_if_auto_ptr< Ap, shared_ptr & >::type operator=( Ap r )
  403. {
  404. this_type( r ).swap( *this );
  405. return *this;
  406. }
  407. #endif // BOOST_NO_SFINAE, BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  408. #endif // BOOST_NO_AUTO_PTR
  409. #if !defined( BOOST_NO_CXX11_SMART_PTR ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  410. template<class Y, class D>
  411. shared_ptr & operator=( std::unique_ptr<Y, D> && r )
  412. {
  413. this_type( static_cast< std::unique_ptr<Y, D> && >( r ) ).swap(*this);
  414. return *this;
  415. }
  416. #endif
  417. template<class Y, class D>
  418. shared_ptr & operator=( boost::movelib::unique_ptr<Y, D> r )
  419. {
  420. // this_type( static_cast< unique_ptr<Y, D> && >( r ) ).swap( *this );
  421. boost::detail::sp_assert_convertible< Y, T >();
  422. typename boost::movelib::unique_ptr< Y, D >::pointer p = r.get();
  423. shared_ptr tmp;
  424. tmp.px = p;
  425. tmp.pn = boost::detail::shared_count( r );
  426. boost::detail::sp_deleter_construct( &tmp, p );
  427. tmp.swap( *this );
  428. return *this;
  429. }
  430. // Move support
  431. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  432. shared_ptr( shared_ptr && r ) BOOST_NOEXCEPT : px( r.px ), pn()
  433. {
  434. pn.swap( r.pn );
  435. r.px = 0;
  436. }
  437. template<class Y>
  438. #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
  439. shared_ptr( shared_ptr<Y> && r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::detail::sp_empty() )
  440. #else
  441. shared_ptr( shared_ptr<Y> && r )
  442. #endif
  443. BOOST_NOEXCEPT : px( r.px ), pn()
  444. {
  445. boost::detail::sp_assert_convertible< Y, T >();
  446. pn.swap( r.pn );
  447. r.px = 0;
  448. }
  449. shared_ptr & operator=( shared_ptr && r ) BOOST_NOEXCEPT
  450. {
  451. this_type( static_cast< shared_ptr && >( r ) ).swap( *this );
  452. return *this;
  453. }
  454. template<class Y>
  455. shared_ptr & operator=( shared_ptr<Y> && r ) BOOST_NOEXCEPT
  456. {
  457. this_type( static_cast< shared_ptr<Y> && >( r ) ).swap( *this );
  458. return *this;
  459. }
  460. #endif
  461. #if !defined( BOOST_NO_CXX11_NULLPTR )
  462. shared_ptr & operator=( boost::detail::sp_nullptr_t ) BOOST_NOEXCEPT // never throws
  463. {
  464. this_type().swap(*this);
  465. return *this;
  466. }
  467. #endif
  468. void reset() BOOST_NOEXCEPT // never throws in 1.30+
  469. {
  470. this_type().swap(*this);
  471. }
  472. template<class Y> void reset( Y * p ) // Y must be complete
  473. {
  474. BOOST_ASSERT( p == 0 || p != px ); // catch self-reset errors
  475. this_type( p ).swap( *this );
  476. }
  477. template<class Y, class D> void reset( Y * p, D d )
  478. {
  479. this_type( p, d ).swap( *this );
  480. }
  481. template<class Y, class D, class A> void reset( Y * p, D d, A a )
  482. {
  483. this_type( p, d, a ).swap( *this );
  484. }
  485. template<class Y> void reset( shared_ptr<Y> const & r, element_type * p )
  486. {
  487. this_type( r, p ).swap( *this );
  488. }
  489. // never throws (but has a BOOST_ASSERT in it, so not marked with BOOST_NOEXCEPT)
  490. typename boost::detail::sp_dereference< T >::type operator* () const
  491. {
  492. BOOST_ASSERT( px != 0 );
  493. return *px;
  494. }
  495. // never throws (but has a BOOST_ASSERT in it, so not marked with BOOST_NOEXCEPT)
  496. typename boost::detail::sp_member_access< T >::type operator-> () const
  497. {
  498. BOOST_ASSERT( px != 0 );
  499. return px;
  500. }
  501. // never throws (but has a BOOST_ASSERT in it, so not marked with BOOST_NOEXCEPT)
  502. typename boost::detail::sp_array_access< T >::type operator[] ( std::ptrdiff_t i ) const
  503. {
  504. BOOST_ASSERT( px != 0 );
  505. BOOST_ASSERT( i >= 0 && ( i < boost::detail::sp_extent< T >::value || boost::detail::sp_extent< T >::value == 0 ) );
  506. return static_cast< typename boost::detail::sp_array_access< T >::type >( px[ i ] );
  507. }
  508. element_type * get() const BOOST_NOEXCEPT
  509. {
  510. return px;
  511. }
  512. // implicit conversion to "bool"
  513. #include <boost/smart_ptr/detail/operator_bool.hpp>
  514. bool unique() const BOOST_NOEXCEPT
  515. {
  516. return pn.unique();
  517. }
  518. long use_count() const BOOST_NOEXCEPT
  519. {
  520. return pn.use_count();
  521. }
  522. void swap( shared_ptr & other ) BOOST_NOEXCEPT
  523. {
  524. std::swap(px, other.px);
  525. pn.swap(other.pn);
  526. }
  527. template<class Y> bool owner_before( shared_ptr<Y> const & rhs ) const BOOST_NOEXCEPT
  528. {
  529. return pn < rhs.pn;
  530. }
  531. template<class Y> bool owner_before( weak_ptr<Y> const & rhs ) const BOOST_NOEXCEPT
  532. {
  533. return pn < rhs.pn;
  534. }
  535. void * _internal_get_deleter( boost::detail::sp_typeinfo const & ti ) const BOOST_NOEXCEPT
  536. {
  537. return pn.get_deleter( ti );
  538. }
  539. void * _internal_get_untyped_deleter() const BOOST_NOEXCEPT
  540. {
  541. return pn.get_untyped_deleter();
  542. }
  543. bool _internal_equiv( shared_ptr const & r ) const BOOST_NOEXCEPT
  544. {
  545. return px == r.px && pn == r.pn;
  546. }
  547. // Tasteless as this may seem, making all members public allows member templates
  548. // to work in the absence of member template friends. (Matthew Langston)
  549. #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  550. private:
  551. template<class Y> friend class shared_ptr;
  552. template<class Y> friend class weak_ptr;
  553. #endif
  554. element_type * px; // contained pointer
  555. boost::detail::shared_count pn; // reference counter
  556. }; // shared_ptr
  557. template<class T, class U> inline bool operator==(shared_ptr<T> const & a, shared_ptr<U> const & b) BOOST_NOEXCEPT
  558. {
  559. return a.get() == b.get();
  560. }
  561. template<class T, class U> inline bool operator!=(shared_ptr<T> const & a, shared_ptr<U> const & b) BOOST_NOEXCEPT
  562. {
  563. return a.get() != b.get();
  564. }
  565. #if __GNUC__ == 2 && __GNUC_MINOR__ <= 96
  566. // Resolve the ambiguity between our op!= and the one in rel_ops
  567. template<class T> inline bool operator!=(shared_ptr<T> const & a, shared_ptr<T> const & b) BOOST_NOEXCEPT
  568. {
  569. return a.get() != b.get();
  570. }
  571. #endif
  572. #if !defined( BOOST_NO_CXX11_NULLPTR )
  573. template<class T> inline bool operator==( shared_ptr<T> const & p, boost::detail::sp_nullptr_t ) BOOST_NOEXCEPT
  574. {
  575. return p.get() == 0;
  576. }
  577. template<class T> inline bool operator==( boost::detail::sp_nullptr_t, shared_ptr<T> const & p ) BOOST_NOEXCEPT
  578. {
  579. return p.get() == 0;
  580. }
  581. template<class T> inline bool operator!=( shared_ptr<T> const & p, boost::detail::sp_nullptr_t ) BOOST_NOEXCEPT
  582. {
  583. return p.get() != 0;
  584. }
  585. template<class T> inline bool operator!=( boost::detail::sp_nullptr_t, shared_ptr<T> const & p ) BOOST_NOEXCEPT
  586. {
  587. return p.get() != 0;
  588. }
  589. #endif
  590. template<class T, class U> inline bool operator<(shared_ptr<T> const & a, shared_ptr<U> const & b) BOOST_NOEXCEPT
  591. {
  592. return a.owner_before( b );
  593. }
  594. template<class T> inline void swap(shared_ptr<T> & a, shared_ptr<T> & b) BOOST_NOEXCEPT
  595. {
  596. a.swap(b);
  597. }
  598. template<class T, class U> shared_ptr<T> static_pointer_cast( shared_ptr<U> const & r ) BOOST_NOEXCEPT
  599. {
  600. (void) static_cast< T* >( static_cast< U* >( 0 ) );
  601. typedef typename shared_ptr<T>::element_type E;
  602. E * p = static_cast< E* >( r.get() );
  603. return shared_ptr<T>( r, p );
  604. }
  605. template<class T, class U> shared_ptr<T> const_pointer_cast( shared_ptr<U> const & r ) BOOST_NOEXCEPT
  606. {
  607. (void) const_cast< T* >( static_cast< U* >( 0 ) );
  608. typedef typename shared_ptr<T>::element_type E;
  609. E * p = const_cast< E* >( r.get() );
  610. return shared_ptr<T>( r, p );
  611. }
  612. template<class T, class U> shared_ptr<T> dynamic_pointer_cast( shared_ptr<U> const & r ) BOOST_NOEXCEPT
  613. {
  614. (void) dynamic_cast< T* >( static_cast< U* >( 0 ) );
  615. typedef typename shared_ptr<T>::element_type E;
  616. E * p = dynamic_cast< E* >( r.get() );
  617. return p? shared_ptr<T>( r, p ): shared_ptr<T>();
  618. }
  619. template<class T, class U> shared_ptr<T> reinterpret_pointer_cast( shared_ptr<U> const & r ) BOOST_NOEXCEPT
  620. {
  621. (void) reinterpret_cast< T* >( static_cast< U* >( 0 ) );
  622. typedef typename shared_ptr<T>::element_type E;
  623. E * p = reinterpret_cast< E* >( r.get() );
  624. return shared_ptr<T>( r, p );
  625. }
  626. // get_pointer() enables boost::mem_fn to recognize shared_ptr
  627. template<class T> inline typename shared_ptr<T>::element_type * get_pointer(shared_ptr<T> const & p) BOOST_NOEXCEPT
  628. {
  629. return p.get();
  630. }
  631. // operator<<
  632. #if !defined(BOOST_NO_IOSTREAM)
  633. #if defined(BOOST_NO_TEMPLATED_IOSTREAMS) || ( defined(__GNUC__) && (__GNUC__ < 3) )
  634. template<class Y> std::ostream & operator<< (std::ostream & os, shared_ptr<Y> const & p)
  635. {
  636. os << p.get();
  637. return os;
  638. }
  639. #else
  640. // in STLport's no-iostreams mode no iostream symbols can be used
  641. #ifndef _STLP_NO_IOSTREAMS
  642. # if defined(BOOST_MSVC) && BOOST_WORKAROUND(BOOST_MSVC, < 1300 && __SGI_STL_PORT)
  643. // MSVC6 has problems finding std::basic_ostream through the using declaration in namespace _STL
  644. using std::basic_ostream;
  645. template<class E, class T, class Y> basic_ostream<E, T> & operator<< (basic_ostream<E, T> & os, shared_ptr<Y> const & p)
  646. # else
  647. template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, shared_ptr<Y> const & p)
  648. # endif
  649. {
  650. os << p.get();
  651. return os;
  652. }
  653. #endif // _STLP_NO_IOSTREAMS
  654. #endif // __GNUC__ < 3
  655. #endif // !defined(BOOST_NO_IOSTREAM)
  656. // get_deleter
  657. namespace detail
  658. {
  659. #if ( defined(__GNUC__) && BOOST_WORKAROUND(__GNUC__, < 3) ) || \
  660. ( defined(__EDG_VERSION__) && BOOST_WORKAROUND(__EDG_VERSION__, <= 238) ) || \
  661. ( defined(__HP_aCC) && BOOST_WORKAROUND(__HP_aCC, <= 33500) )
  662. // g++ 2.9x doesn't allow static_cast<X const *>(void *)
  663. // apparently EDG 2.38 and HP aCC A.03.35 also don't accept it
  664. template<class D, class T> D * basic_get_deleter(shared_ptr<T> const & p)
  665. {
  666. void const * q = p._internal_get_deleter(BOOST_SP_TYPEID(D));
  667. return const_cast<D *>(static_cast<D const *>(q));
  668. }
  669. #else
  670. template<class D, class T> D * basic_get_deleter( shared_ptr<T> const & p ) BOOST_NOEXCEPT
  671. {
  672. return static_cast<D *>( p._internal_get_deleter(BOOST_SP_TYPEID(D)) );
  673. }
  674. #endif
  675. class esft2_deleter_wrapper
  676. {
  677. private:
  678. shared_ptr<void const volatile> deleter_;
  679. public:
  680. esft2_deleter_wrapper()
  681. {
  682. }
  683. template< class T > void set_deleter( shared_ptr<T> const & deleter )
  684. {
  685. deleter_ = deleter;
  686. }
  687. template<typename D> D* get_deleter() const BOOST_NOEXCEPT
  688. {
  689. return boost::detail::basic_get_deleter<D>( deleter_ );
  690. }
  691. template< class T> void operator()( T* )
  692. {
  693. BOOST_ASSERT( deleter_.use_count() <= 1 );
  694. deleter_.reset();
  695. }
  696. };
  697. } // namespace detail
  698. template<class D, class T> D * get_deleter( shared_ptr<T> const & p ) BOOST_NOEXCEPT
  699. {
  700. D *del = boost::detail::basic_get_deleter<D>(p);
  701. if(del == 0)
  702. {
  703. boost::detail::esft2_deleter_wrapper *del_wrapper = boost::detail::basic_get_deleter<boost::detail::esft2_deleter_wrapper>(p);
  704. // The following get_deleter method call is fully qualified because
  705. // older versions of gcc (2.95, 3.2.3) fail to compile it when written del_wrapper->get_deleter<D>()
  706. if(del_wrapper) del = del_wrapper->::boost::detail::esft2_deleter_wrapper::get_deleter<D>();
  707. }
  708. return del;
  709. }
  710. // atomic access
  711. #if !defined(BOOST_SP_NO_ATOMIC_ACCESS)
  712. template<class T> inline bool atomic_is_lock_free( shared_ptr<T> const * /*p*/ ) BOOST_NOEXCEPT
  713. {
  714. return false;
  715. }
  716. template<class T> shared_ptr<T> atomic_load( shared_ptr<T> const * p )
  717. {
  718. boost::detail::spinlock_pool<2>::scoped_lock lock( p );
  719. return *p;
  720. }
  721. template<class T> inline shared_ptr<T> atomic_load_explicit( shared_ptr<T> const * p, /*memory_order mo*/ int )
  722. {
  723. return atomic_load( p );
  724. }
  725. template<class T> void atomic_store( shared_ptr<T> * p, shared_ptr<T> r )
  726. {
  727. boost::detail::spinlock_pool<2>::scoped_lock lock( p );
  728. p->swap( r );
  729. }
  730. template<class T> inline void atomic_store_explicit( shared_ptr<T> * p, shared_ptr<T> r, /*memory_order mo*/ int )
  731. {
  732. atomic_store( p, r ); // std::move( r )
  733. }
  734. template<class T> shared_ptr<T> atomic_exchange( shared_ptr<T> * p, shared_ptr<T> r )
  735. {
  736. boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p );
  737. sp.lock();
  738. p->swap( r );
  739. sp.unlock();
  740. return r; // return std::move( r )
  741. }
  742. template<class T> shared_ptr<T> atomic_exchange_explicit( shared_ptr<T> * p, shared_ptr<T> r, /*memory_order mo*/ int )
  743. {
  744. return atomic_exchange( p, r ); // std::move( r )
  745. }
  746. template<class T> bool atomic_compare_exchange( shared_ptr<T> * p, shared_ptr<T> * v, shared_ptr<T> w )
  747. {
  748. boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p );
  749. sp.lock();
  750. if( p->_internal_equiv( *v ) )
  751. {
  752. p->swap( w );
  753. sp.unlock();
  754. return true;
  755. }
  756. else
  757. {
  758. shared_ptr<T> tmp( *p );
  759. sp.unlock();
  760. tmp.swap( *v );
  761. return false;
  762. }
  763. }
  764. template<class T> inline bool atomic_compare_exchange_explicit( shared_ptr<T> * p, shared_ptr<T> * v, shared_ptr<T> w, /*memory_order success*/ int, /*memory_order failure*/ int )
  765. {
  766. return atomic_compare_exchange( p, v, w ); // std::move( w )
  767. }
  768. #endif // !defined(BOOST_SP_NO_ATOMIC_ACCESS)
  769. // hash_value
  770. template< class T > struct hash;
  771. template< class T > std::size_t hash_value( boost::shared_ptr<T> const & p ) BOOST_NOEXCEPT
  772. {
  773. return boost::hash< typename boost::shared_ptr<T>::element_type* >()( p.get() );
  774. }
  775. } // namespace boost
  776. #if defined( BOOST_SP_DISABLE_DEPRECATED )
  777. #pragma GCC diagnostic pop
  778. #endif
  779. #endif // #ifndef BOOST_SMART_PTR_SHARED_PTR_HPP_INCLUDED