| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_WEAK_PTR_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  weak_ptr.hpp
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2003-01-04 14:24:14 +00:00
										 |  |  | //  Copyright (c) 2001, 2002, 2003 Peter Dimov
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2004-07-26 00:32:12 +00:00
										 |  |  | // 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)
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2002-02-04 11:15:40 +00:00
										 |  |  | //  See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation.
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/shared_ptr.hpp>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef BOOST_MSVC  // moved here to work around VC++ compiler crash
 | 
					
						
							|  |  |  | # pragma warning(push)
 | 
					
						
							|  |  |  | # pragma warning(disable:4284) // odd return type for operator->
 | 
					
						
							| 
									
										
										
										
											2002-04-22 09:37:08 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 13:55:18 +00:00
										 |  |  | template<class T> class weak_ptr | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Borland 5.5.1 specific workarounds
 | 
					
						
							|  |  |  |     typedef weak_ptr<T> this_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     typedef T element_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 14:24:14 +00:00
										 |  |  |     weak_ptr(): px(0), pn() // never throws in 1.30+
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //  generated copy constructor, assignment, destructor are fine
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-22 14:41:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2002-11-23 12:47:38 +00:00
										 |  |  | //  The "obvious" converting constructor implementation:
 | 
					
						
							| 
									
										
										
										
											2002-11-22 14:41:22 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | //  template<class Y>
 | 
					
						
							|  |  |  | //  weak_ptr(weak_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
 | 
					
						
							|  |  |  | //  {
 | 
					
						
							|  |  |  | //  }
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  has a serious problem.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  r.px may already have been invalidated. The px(r.px)
 | 
					
						
							|  |  |  | //  conversion may require access to *r.px (virtual inheritance).
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  It is not possible to avoid spurious access violations since
 | 
					
						
							|  |  |  | //  in multithreaded programs r.px may be invalidated at any point.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2002-11-25 12:09:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     template<class Y> | 
					
						
							|  |  |  |     weak_ptr(weak_ptr<Y> const & r): pn(r.pn) // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  |         px = r.lock().get(); | 
					
						
							| 
									
										
										
										
											2002-11-25 12:09:13 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-02-02 16:19:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 13:55:18 +00:00
										 |  |  |     template<class Y> | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     weak_ptr(shared_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-10 14:12:12 +00:00
										 |  |  | #if !defined(BOOST_MSVC) || (BOOST_MSVC > 1200)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-25 12:09:13 +00:00
										 |  |  |     template<class Y> | 
					
						
							|  |  |  |     weak_ptr & operator=(weak_ptr<Y> const & r) // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  |         px = r.lock().get(); | 
					
						
							| 
									
										
										
										
											2002-11-25 12:09:13 +00:00
										 |  |  |         pn = r.pn; | 
					
						
							|  |  |  |         return *this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 13:55:18 +00:00
										 |  |  |     template<class Y> | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |     weak_ptr & operator=(shared_ptr<Y> const & r) // never throws
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |         px = r.px; | 
					
						
							|  |  |  |         pn = r.pn; | 
					
						
							|  |  |  |         return *this; | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-10 14:12:12 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  |     shared_ptr<T> lock() const // never throws
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  | #if defined(BOOST_HAS_THREADS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // optimization: avoid throw overhead
 | 
					
						
							|  |  |  |         if(expired()) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return shared_ptr<element_type>(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return shared_ptr<element_type>(*this); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         catch(bad_weak_ptr const &) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // Q: how can we get here?
 | 
					
						
							|  |  |  |             // A: another thread may have invalidated r after the use_count test above.
 | 
					
						
							|  |  |  |             return shared_ptr<element_type>(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // optimization: avoid try/catch overhead when single threaded
 | 
					
						
							|  |  |  |         return expired()? shared_ptr<element_type>(): shared_ptr<element_type>(*this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |     long use_count() const // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return pn.use_count(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-08 16:56:16 +00:00
										 |  |  |     bool expired() const // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return pn.use_count() == 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  |     void reset() // never throws in 1.30+
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         this_type().swap(*this); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-12 16:55:25 +00:00
										 |  |  |     void swap(this_type & other) // never throws
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         std::swap(px, other.px); | 
					
						
							|  |  |  |         pn.swap(other.pn); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-23 12:47:38 +00:00
										 |  |  |     void _internal_assign(T * px2, detail::shared_count const & pn2) | 
					
						
							| 
									
										
										
										
											2002-11-20 12:38:51 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         px = px2; | 
					
						
							|  |  |  |         pn = pn2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-23 12:47:38 +00:00
										 |  |  |     template<class Y> bool _internal_less(weak_ptr<Y> const & rhs) const | 
					
						
							| 
									
										
										
										
											2002-02-09 12:34:05 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return pn < rhs.pn; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | // Tasteless as this may seem, making all members public allows member templates
 | 
					
						
							|  |  |  | // to work in the absence of member template friends. (Matthew Langston)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-23 13:55:18 +00:00
										 |  |  |     template<class Y> friend class weak_ptr; | 
					
						
							|  |  |  |     template<class Y> friend class shared_ptr; | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     T * px;                     // contained pointer
 | 
					
						
							|  |  |  |     detail::weak_count pn;      // reference counter
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | };  // weak_ptr
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-23 12:47:38 +00:00
										 |  |  | template<class T, class U> inline bool operator<(weak_ptr<T> const & a, weak_ptr<U> const & b) | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-11-20 12:38:51 +00:00
										 |  |  |     return a._internal_less(b); | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  | template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     a.swap(b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-05 12:56:48 +00:00
										 |  |  | // deprecated, provided for backward compatibility
 | 
					
						
							|  |  |  | template<class T> shared_ptr<T> make_shared(weak_ptr<T> const & r) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-02-10 15:56:36 +00:00
										 |  |  |     return r.lock(); | 
					
						
							| 
									
										
										
										
											2003-02-05 12:56:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef BOOST_MSVC
 | 
					
						
							|  |  |  | # pragma warning(pop)
 | 
					
						
							|  |  |  | #endif    
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
 |