| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_WEAK_PTR_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  weak_ptr.hpp
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  Copyright (c) 2001, 2002 Peter Dimov
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  Permission to copy, use, modify, sell and distribute this software
 | 
					
						
							|  |  |  | //  is granted provided this copyright notice appears in all copies.
 | 
					
						
							|  |  |  | //  This software is provided "as is" without express or implied
 | 
					
						
							|  |  |  | //  warranty, and with no claim as to its suitability for any purpose.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											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->
 | 
					
						
							|  |  |  | #endif    
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<typename T> class weak_ptr | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Borland 5.5.1 specific workarounds
 | 
					
						
							|  |  |  |     typedef weak_ptr<T> this_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     typedef T element_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     weak_ptr(): px(0), pn() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //  generated copy constructor, assignment, destructor are fine
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-02 16:19:45 +00:00
										 |  |  |     template<typename Y> | 
					
						
							|  |  |  |     weak_ptr(weak_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     template<typename Y> | 
					
						
							|  |  |  |     weak_ptr(shared_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<typename Y> | 
					
						
							|  |  |  |     weak_ptr(weak_ptr<Y> const & r, detail::static_cast_tag): px(static_cast<element_type *>(r.px)), pn(r.pn) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<typename Y> | 
					
						
							|  |  |  |     weak_ptr(weak_ptr<Y> const & r, detail::dynamic_cast_tag): px(dynamic_cast<element_type *>(r.px)), pn(r.pn) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |         if (px == 0) // need to allocate new counter -- the cast failed
 | 
					
						
							| 
									
										
										
										
											2002-02-04 11:15:40 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |             pn = detail::weak_count(); | 
					
						
							| 
									
										
										
										
											2002-02-04 11:15:40 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 19:42:04 +00:00
										 |  |  |     template<typename Y> | 
					
						
							|  |  |  |     weak_ptr(weak_ptr<Y> const & r, detail::polymorphic_cast_tag): px(dynamic_cast<element_type *>(r.px)), pn(r.pn) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (px == 0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             throw std::bad_cast(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     template<typename Y> | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |     weak_ptr & operator=(weak_ptr<Y> const & r) // never throws
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         px = r.px; | 
					
						
							|  |  |  |         pn = r.pn; | 
					
						
							|  |  |  |         return *this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |     template<typename Y> | 
					
						
							|  |  |  |     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-02-02 18:36:12 +00:00
										 |  |  |     void reset() | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2002-02-02 18:36:12 +00:00
										 |  |  |         this_type().swap(*this); | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-13 13:16:15 +00:00
										 |  |  |     T * get() const // never throws; unsafe in multithreaded programs! | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2002-02-13 13:16:15 +00:00
										 |  |  |         return use_count() == 0? 0: px; | 
					
						
							| 
									
										
										
										
											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-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-02-09 12:34:05 +00:00
										 |  |  |     bool less(this_type const & rhs) const // implementation detail, never throws
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         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: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<typename Y> friend class weak_ptr; | 
					
						
							| 
									
										
										
										
											2002-02-12 16:55:25 +00:00
										 |  |  |     template<typename 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, class U> inline bool operator==(weak_ptr<T> const & a, weak_ptr<U> const & b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a.get() == b.get(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, class U> inline bool operator!=(weak_ptr<T> const & a, weak_ptr<U> const & b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a.get() != b.get(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-09 15:45:29 +00:00
										 |  |  | #if __GNUC__ == 2 && __GNUC_MINOR__ <= 96
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Resolve the ambiguity between our op!= and the one in rel_ops
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<typename T> inline bool operator!=(weak_ptr<T> const & a, weak_ptr<T> const & b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return a.get() != b.get(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | template<class T> inline bool operator<(weak_ptr<T> const & a, weak_ptr<T> const & b) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-02-09 12:34:05 +00:00
										 |  |  |     return a.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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-13 13:16:15 +00:00
										 |  |  | template<class T> shared_ptr<T> make_shared(weak_ptr<T> const & r) // never throws
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // optimization: avoid throw overhead
 | 
					
						
							|  |  |  |     if(r.use_count() == 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return shared_ptr<T>(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     try | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return shared_ptr<T>(r); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     catch(use_count_is_zero const &) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return shared_ptr<T>(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | template<class T, class U> weak_ptr<T> shared_static_cast(weak_ptr<U> const & r) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return weak_ptr<T>(r, detail::static_cast_tag()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, class U> weak_ptr<T> shared_dynamic_cast(weak_ptr<U> const & r) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return weak_ptr<T>(r, detail::dynamic_cast_tag()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 19:42:04 +00:00
										 |  |  | template<typename T, typename U> weak_ptr<T> shared_polymorphic_cast(weak_ptr<U> const & r) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return weak_ptr<T>(r, detail::polymorphic_cast_tag()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<typename T, typename U> weak_ptr<T> shared_polymorphic_downcast(weak_ptr<U> const & r) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BOOST_ASSERT(dynamic_cast<T *>(r.get()) == r.get()); | 
					
						
							|  |  |  |     return shared_static_cast<T>(r); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-22 13:38:52 +00:00
										 |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef BOOST_MSVC
 | 
					
						
							|  |  |  | # pragma warning(pop)
 | 
					
						
							|  |  |  | #endif    
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
 |