| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | #ifndef BOOST_DETAIL_SP_COUNTED_IMPL_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_DETAIL_SP_COUNTED_IMPL_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // MS compatible compilers support #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(_MSC_VER) && (_MSC_VER >= 1020)
 | 
					
						
							|  |  |  | # pragma once
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  detail/sp_counted_impl.hpp
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd.
 | 
					
						
							|  |  |  | //  Copyright 2004-2005 Peter Dimov
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 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)
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/config.hpp>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_USE_STD_ALLOCATOR) && defined(BOOST_SP_USE_QUICK_ALLOCATOR)
 | 
					
						
							|  |  |  | # error BOOST_SP_USE_STD_ALLOCATOR and BOOST_SP_USE_QUICK_ALLOCATOR are incompatible.
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/checked_delete.hpp>
 | 
					
						
							|  |  |  | #include <boost/detail/sp_counted_base.hpp>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_USE_QUICK_ALLOCATOR)
 | 
					
						
							|  |  |  | #include <boost/detail/quick_allocator.hpp>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-11 21:06:08 +00:00
										 |  |  | #if defined(BOOST_SP_USE_STD_ALLOCATOR)
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | #include <memory>           // std::allocator
 | 
					
						
							| 
									
										
										
										
											2005-11-11 21:06:08 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | #include <typeinfo>         // std::type_info in get_deleter
 | 
					
						
							|  |  |  | #include <cstddef>          // std::size_t
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  | void sp_scalar_constructor_hook( void * px, std::size_t size, void * pn ); | 
					
						
							|  |  |  | void sp_scalar_destructor_hook( void * px, std::size_t size, void * pn ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace detail | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  | template<class X> class sp_counted_impl_p: public sp_counted_base | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X * px_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sp_counted_impl_p( sp_counted_impl_p const & ); | 
					
						
							|  |  |  |     sp_counted_impl_p & operator= ( sp_counted_impl_p const & ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     typedef sp_counted_impl_p<X> this_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     explicit sp_counted_impl_p( X * px ): px_( px ) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |         boost::sp_scalar_constructor_hook( px, sizeof(X), this ); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     virtual void dispose() // nothrow
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
 | 
					
						
							|  |  |  |         boost::sp_scalar_destructor_hook( px_, sizeof(X), this ); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         boost::checked_delete( px_ ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     virtual void * get_deleter( std::type_info const & ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  | #if defined(BOOST_SP_USE_STD_ALLOCATOR)
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void * operator new( std::size_t ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return std::allocator<this_type>().allocate( 1, static_cast<this_type *>(0) ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void operator delete( void * p ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_USE_QUICK_ALLOCATOR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void * operator new( std::size_t ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return quick_allocator<this_type>::alloc(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void operator delete( void * p ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         quick_allocator<this_type>::dealloc( p ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Borland's Codeguard trips up over the -Vx- option here:
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | #ifdef __CODEGUARD__
 | 
					
						
							|  |  |  | # pragma option push -Vx-
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class P, class D> class sp_counted_impl_pd: public sp_counted_base | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     P ptr; // copy constructor must not throw
 | 
					
						
							|  |  |  |     D del; // copy constructor must not throw
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     sp_counted_impl_pd( sp_counted_impl_pd const & ); | 
					
						
							|  |  |  |     sp_counted_impl_pd & operator= ( sp_counted_impl_pd const & ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     typedef sp_counted_impl_pd<P, D> this_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // pre: d(p) must not throw
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     sp_counted_impl_pd( P p, D d ): ptr(p), del(d) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void dispose() // nothrow
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |         del( ptr ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     virtual void * get_deleter( std::type_info const & ti ) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return ti == typeid(D)? &del: 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_USE_STD_ALLOCATOR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void * operator new( std::size_t ) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |         return std::allocator<this_type>().allocate( 1, static_cast<this_type *>(0) ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void operator delete( void * p ) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |         std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(BOOST_SP_USE_QUICK_ALLOCATOR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void * operator new( std::size_t ) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return quick_allocator<this_type>::alloc(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |     void operator delete( void * p ) | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2005-03-17 23:30:47 +00:00
										 |  |  |         quick_allocator<this_type>::dealloc( p ); | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-09 20:05:42 +00:00
										 |  |  | template<class P, class D, class A> class sp_counted_impl_pda: public sp_counted_base | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     P p_; // copy constructor must not throw
 | 
					
						
							|  |  |  |     D d_; // copy constructor must not throw
 | 
					
						
							|  |  |  |     A a_; // copy constructor must not throw
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sp_counted_impl_pda( sp_counted_impl_pda const & ); | 
					
						
							|  |  |  |     sp_counted_impl_pda & operator= ( sp_counted_impl_pda const & ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     typedef sp_counted_impl_pda<P, D, A> this_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // pre: d( p ) must not throw
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sp_counted_impl_pda( P p, D d, A a ): p_( p ), d_( d ), a_( a ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void dispose() // nothrow
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         d_( p_ ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void destroy() // nothrow
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         typedef typename A::template rebind< this_type >::other A2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         A2 a2( a_ ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         this->~this_type(); | 
					
						
							|  |  |  |         a2.deallocate( this, 1 ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void * get_deleter( std::type_info const & ti ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return ti == typeid( D )? &d_: 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-17 23:05:26 +00:00
										 |  |  | #ifdef __CODEGUARD__
 | 
					
						
							|  |  |  | # pragma option pop
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace detail
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // #ifndef BOOST_DETAIL_SP_COUNTED_IMPL_HPP_INCLUDED
 |