#ifndef BOOST_DETAIL_SHARED_PTR_NMT_132_HPP_INCLUDED
#define BOOST_DETAIL_SHARED_PTR_NMT_132_HPP_INCLUDED
#include <boost/assert.hpp>
#include <boost/checked_delete.hpp>
#include <boost/serialization/throw_exception.hpp>
#include <boost/detail/atomic_count.hpp>
#ifndef BOOST_NO_AUTO_PTR
# include <memory>
#endif
#include <algorithm>
#include <functional>
#include <new>
namespace boost
{
template<class T> class shared_ptr
{
private:
typedef detail::atomic_count count_type;
public:
typedef T element_type;
typedef T value_type;
explicit shared_ptr(T * p = 0): px(p)
{
#ifndef BOOST_NO_EXCEPTIONS
try {
pn = new count_type(1);
}
catch(...)
{
boost::checked_delete(p);
throw;
}
#else
pn = new count_type(1);
if(pn == 0)
{
boost::checked_delete(p);
boost::serialization::throw_exception(std::bad_alloc());
}
#endif
}
~shared_ptr()
{
if(--*pn == 0)
{
boost::checked_delete(px);
delete pn;
}
}
shared_ptr(shared_ptr const & r): px(r.px) {
pn = r.pn;
++*pn;
}
shared_ptr & operator=(shared_ptr const & r)
{
shared_ptr(r).swap(*this);
return *this;
}
#ifndef BOOST_NO_AUTO_PTR
explicit shared_ptr(std::auto_ptr< T > & r)
{
pn = new count_type(1); px = r.release(); }
shared_ptr & operator=(std::auto_ptr< T > & r)
{
shared_ptr(r).swap(*this);
return *this;
}
#endif
void reset(T * p = 0)
{
BOOST_ASSERT(p == 0 || p != px);
shared_ptr(p).swap(*this);
}
T & operator*() const {
BOOST_ASSERT(px != 0);
return *px;
}
T * operator->() const {
BOOST_ASSERT(px != 0);
return px;
}
T * get() const {
return px;
}
long use_count() const {
return *pn;
}
bool unique() const {
return *pn == 1;
}
void swap(shared_ptr< T > & other) {
std::swap(px, other.px);
std::swap(pn, other.pn);
}
private:
T * px; count_type * pn; };
template<class T, class U> inline bool operator==(shared_ptr< T > const & a, shared_ptr<U> const & b)
{
return a.get() == b.get();
}
template<class T, class U> inline bool operator!=(shared_ptr< T > const & a, shared_ptr<U> const & b)
{
return a.get() != b.get();
}
template<class T> inline bool operator<(shared_ptr< T > const & a, shared_ptr< T > const & b)
{
return std::less<T*>()(a.get(), b.get());
}
template<class T> void swap(shared_ptr< T > & a, shared_ptr< T > & b)
{
a.swap(b);
}
template<class T> inline T * get_pointer(shared_ptr< T > const & p)
{
return p.get();
}
}
#endif