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