2002-01-22 13:38:52 +00:00
|
|
|
#ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
|
|
|
|
#define BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1020
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// detail/shared_count.hpp
|
|
|
|
//
|
|
|
|
// Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
|
|
|
|
//
|
|
|
|
// 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-01 18:40:35 +00:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
|
|
#ifndef BOOST_NO_AUTO_PTR
|
|
|
|
# include <memory>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/checked_delete.hpp>
|
2002-08-14 12:27:22 +00:00
|
|
|
#include <boost/throw_exception.hpp>
|
2002-02-12 16:55:25 +00:00
|
|
|
#include <boost/detail/lightweight_mutex.hpp>
|
2002-01-22 13:38:52 +00:00
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
#include <functional> // for std::less
|
|
|
|
#include <exception> // for std::exception
|
2002-08-14 12:27:22 +00:00
|
|
|
#include <new> // for std::bad_alloc
|
2002-02-09 12:34:05 +00:00
|
|
|
|
2002-07-09 12:06:46 +00:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
# pragma warn -8026 // Functions with excep. spec. are not expanded inline
|
|
|
|
# pragma warn -8027 // Functions containing try are not expanded inline
|
|
|
|
#endif
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
namespace boost
|
|
|
|
{
|
|
|
|
|
2002-08-16 15:55:19 +00:00
|
|
|
// The standard library that comes with Borland C++ 5.5.1
|
|
|
|
// defines std::exception and its members as having C calling
|
2002-11-18 14:37:02 +00:00
|
|
|
// convention (-pc). When the definition of bad_weak_ptr
|
2002-08-16 15:55:19 +00:00
|
|
|
// is compiled with -ps, the compiler issues an error.
|
|
|
|
// Hence, the temporary #pragma option -pc below. The version
|
|
|
|
// check is deliberately conservative.
|
|
|
|
|
|
|
|
#if defined(__BORLANDC__) && __BORLANDC__ == 0x551
|
|
|
|
# pragma option push -pc
|
|
|
|
#endif
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
class bad_weak_ptr: public std::exception
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
virtual char const * what() const throw()
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
return "boost::bad_weak_ptr";
|
2002-02-12 16:55:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2002-08-16 15:55:19 +00:00
|
|
|
#if defined(__BORLANDC__) && __BORLANDC__ == 0x551
|
|
|
|
# pragma option pop
|
|
|
|
#endif
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
class counted_base
|
|
|
|
{
|
2002-04-22 09:37:08 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
typedef detail::lightweight_mutex mutex_type;
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
public:
|
2002-01-22 13:38:52 +00:00
|
|
|
|
2002-04-22 18:01:19 +00:00
|
|
|
counted_base():
|
2002-06-20 14:56:10 +00:00
|
|
|
use_count_(0), weak_count_(0)
|
2002-04-22 18:01:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
// pre: initial_use_count <= initial_weak_count
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
explicit counted_base(long initial_use_count, long initial_weak_count):
|
2002-06-20 14:56:10 +00:00
|
|
|
use_count_(initial_use_count), weak_count_(initial_weak_count)
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
virtual ~counted_base() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
// dispose() is called when use_count_ drops to zero, to release
|
|
|
|
// the resources managed by *this.
|
|
|
|
//
|
|
|
|
// counted_base doesn't manage any resources except itself, and
|
|
|
|
// the default implementation is a no-op.
|
|
|
|
//
|
|
|
|
// dispose() is not pure virtual since weak_ptr instantiates a
|
|
|
|
// counted_base in its default constructor.
|
|
|
|
|
|
|
|
virtual void dispose() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-06-20 14:56:10 +00:00
|
|
|
// destruct() is called when weak_count_ drops to zero.
|
|
|
|
|
|
|
|
virtual void destruct() // nothrow
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
void add_ref()
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutex_type::scoped_lock lock(mtx_);
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-11-18 14:37:02 +00:00
|
|
|
if(use_count_ == 0 && weak_count_ != 0) boost::throw_exception(boost::bad_weak_ptr());
|
2002-01-22 13:38:52 +00:00
|
|
|
++use_count_;
|
|
|
|
++weak_count_;
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
void release() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-02-12 16:55:25 +00:00
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutex_type::scoped_lock lock(mtx_);
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-11-18 14:37:02 +00:00
|
|
|
long new_use_count = --use_count_;
|
2002-11-12 13:14:50 +00:00
|
|
|
|
|
|
|
if(new_use_count != 0)
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
--weak_count_;
|
|
|
|
return;
|
2002-11-12 13:14:50 +00:00
|
|
|
}
|
2002-02-12 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
dispose();
|
|
|
|
weak_release();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
void weak_add_ref() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutex_type::scoped_lock lock(mtx_);
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-01-22 13:38:52 +00:00
|
|
|
++weak_count_;
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
void weak_release() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-02-12 16:55:25 +00:00
|
|
|
long new_weak_count;
|
|
|
|
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutex_type::scoped_lock lock(mtx_);
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-02-12 16:55:25 +00:00
|
|
|
new_weak_count = --weak_count_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(new_weak_count == 0)
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-06-20 14:56:10 +00:00
|
|
|
destruct();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
long use_count() const // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutex_type::scoped_lock lock(mtx_);
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-01-22 13:38:52 +00:00
|
|
|
return use_count_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
counted_base(counted_base const &);
|
|
|
|
counted_base & operator= (counted_base const &);
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
// inv: use_count_ <= weak_count_
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
long use_count_;
|
|
|
|
long weak_count_;
|
2002-06-20 14:56:10 +00:00
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
#if defined(BOOST_HAS_THREADS)
|
2002-04-22 09:37:08 +00:00
|
|
|
mutable mutex_type mtx_;
|
2002-02-15 18:07:42 +00:00
|
|
|
#endif
|
2002-01-22 13:38:52 +00:00
|
|
|
};
|
|
|
|
|
2002-08-20 11:08:11 +00:00
|
|
|
//
|
|
|
|
// Borland's Codeguard trips up over the -Vx- option here:
|
|
|
|
//
|
|
|
|
#ifdef __CODEGUARD__
|
2002-11-18 14:37:02 +00:00
|
|
|
# pragma option push -Vx-
|
2002-08-20 11:08:11 +00:00
|
|
|
#endif
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
template<class P, class D> class counted_base_impl: public counted_base
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
P ptr; // copy constructor must not throw
|
|
|
|
D del; // copy constructor must not throw
|
|
|
|
|
|
|
|
counted_base_impl(counted_base_impl const &);
|
|
|
|
counted_base_impl & operator= (counted_base_impl const &);
|
|
|
|
|
2002-10-08 16:37:33 +00:00
|
|
|
typedef counted_base_impl<P, D> this_type;
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
public:
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
// pre: initial_use_count <= initial_weak_count, d(p) must not throw
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
counted_base_impl(P p, D d, long initial_use_count, long initial_weak_count):
|
|
|
|
counted_base(initial_use_count, initial_weak_count), ptr(p), del(d)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-01-25 16:10:26 +00:00
|
|
|
virtual void dispose() // nothrow
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
del(ptr);
|
|
|
|
}
|
2002-10-08 16:37:33 +00:00
|
|
|
|
|
|
|
#if defined(BOOST_SP_USE_STD_ALLOCATOR)
|
|
|
|
|
|
|
|
void * operator new(std::size_t)
|
|
|
|
{
|
|
|
|
return std::allocator<this_type>().allocate(1, static_cast<this_type *>(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator delete(void * p)
|
|
|
|
{
|
|
|
|
std::allocator<this_type>().deallocate(static_cast<this_type *>(p), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2002-01-22 13:38:52 +00:00
|
|
|
};
|
|
|
|
|
2002-02-14 23:08:30 +00:00
|
|
|
class weak_count;
|
2002-01-22 13:38:52 +00:00
|
|
|
|
|
|
|
class shared_count
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
counted_base * pi_;
|
|
|
|
|
|
|
|
friend class weak_count;
|
|
|
|
|
2002-05-01 11:22:22 +00:00
|
|
|
template<class P, class D> shared_count(P, D, counted_base const *);
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
public:
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
shared_count(): pi_(0) // (new counted_base(1, 1))
|
2002-02-15 13:31:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
template<class P, class D> shared_count(P p, D d): pi_(0)
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
2002-08-14 12:27:22 +00:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
pi_ = new counted_base_impl<P, D>(p, d, 1, 1);
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
d(p); // delete p
|
|
|
|
throw;
|
|
|
|
}
|
2002-08-14 12:27:22 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
pi_ = new counted_base_impl<P, D>(p, d, 1, 1);
|
|
|
|
|
|
|
|
if(pi_ == 0)
|
|
|
|
{
|
|
|
|
d(p); // delete p
|
|
|
|
boost::throw_exception(std::bad_alloc());
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
2002-02-01 18:40:35 +00:00
|
|
|
#ifndef BOOST_NO_AUTO_PTR
|
|
|
|
|
|
|
|
// auto_ptr<Y> is special cased to provide the strong guarantee
|
|
|
|
|
2002-10-23 13:55:18 +00:00
|
|
|
template<class Y>
|
2002-02-01 18:40:35 +00:00
|
|
|
explicit shared_count(std::auto_ptr<Y> & r): pi_(new counted_base_impl< Y *, checked_deleter<Y> >(r.get(), checked_deleter<Y>(), 1, 1))
|
|
|
|
{
|
|
|
|
r.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
~shared_count() // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->release();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shared_count(shared_count const & r): pi_(r.pi_) // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->add_ref();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
explicit shared_count(weak_count const & r); // throws bad_weak_ptr when r.use_count() == 0
|
2002-02-12 16:55:25 +00:00
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
shared_count & operator= (shared_count const & r) // nothrow
|
|
|
|
{
|
|
|
|
counted_base * tmp = r.pi_;
|
2002-11-18 14:37:02 +00:00
|
|
|
if(tmp != 0) tmp->add_ref();
|
|
|
|
if(pi_ != 0) pi_->release();
|
2002-01-22 13:38:52 +00:00
|
|
|
pi_ = tmp;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void swap(shared_count & r) // nothrow
|
|
|
|
{
|
|
|
|
counted_base * tmp = r.pi_;
|
|
|
|
r.pi_ = pi_;
|
|
|
|
pi_ = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
long use_count() const // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
return pi_ != 0? pi_->use_count(): 42; // '42' is an example of 'unspecified'
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool unique() const // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
return use_count() == 1;
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
2002-02-09 12:34:05 +00:00
|
|
|
|
|
|
|
friend inline bool operator==(shared_count const & a, shared_count const & b)
|
|
|
|
{
|
|
|
|
return a.pi_ == b.pi_;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend inline bool operator<(shared_count const & a, shared_count const & b)
|
|
|
|
{
|
|
|
|
return std::less<counted_base *>()(a.pi_, b.pi_);
|
|
|
|
}
|
2002-01-22 13:38:52 +00:00
|
|
|
};
|
|
|
|
|
2002-08-20 11:08:11 +00:00
|
|
|
#ifdef __CODEGUARD__
|
2002-11-18 14:37:02 +00:00
|
|
|
# pragma option pop
|
2002-08-20 11:08:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
class weak_count
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
counted_base * pi_;
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
friend class shared_count;
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
public:
|
|
|
|
|
2002-11-18 14:37:02 +00:00
|
|
|
weak_count(): pi_(0) // nothrow // (new counted_base(0, 1)) // can throw
|
2002-01-22 13:38:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
weak_count(shared_count const & r): pi_(r.pi_) // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->weak_add_ref();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
weak_count(weak_count const & r): pi_(r.pi_) // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->weak_add_ref();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~weak_count() // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->weak_release();
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
weak_count & operator= (shared_count const & r) // nothrow
|
|
|
|
{
|
|
|
|
counted_base * tmp = r.pi_;
|
2002-11-18 14:37:02 +00:00
|
|
|
if(tmp != 0) tmp->weak_add_ref();
|
|
|
|
if(pi_ != 0) pi_->weak_release();
|
2002-01-22 13:38:52 +00:00
|
|
|
pi_ = tmp;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
weak_count & operator= (weak_count const & r) // nothrow
|
|
|
|
{
|
|
|
|
counted_base * tmp = r.pi_;
|
2002-11-18 14:37:02 +00:00
|
|
|
if(tmp != 0) tmp->weak_add_ref();
|
|
|
|
if(pi_ != 0) pi_->weak_release();
|
2002-01-22 13:38:52 +00:00
|
|
|
pi_ = tmp;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void swap(weak_count & r) // nothrow
|
|
|
|
{
|
|
|
|
counted_base * tmp = r.pi_;
|
|
|
|
r.pi_ = pi_;
|
|
|
|
pi_ = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
long use_count() const // nothrow
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
return pi_ != 0? pi_->use_count(): 804; // '804' is an example of 'unspecified'
|
2002-01-22 13:38:52 +00:00
|
|
|
}
|
2002-02-09 12:34:05 +00:00
|
|
|
|
|
|
|
friend inline bool operator==(weak_count const & a, weak_count const & b)
|
|
|
|
{
|
|
|
|
return a.pi_ == b.pi_;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend inline bool operator<(weak_count const & a, weak_count const & b)
|
|
|
|
{
|
|
|
|
return std::less<counted_base *>()(a.pi_, b.pi_);
|
|
|
|
}
|
2002-01-22 13:38:52 +00:00
|
|
|
};
|
|
|
|
|
2002-02-12 16:55:25 +00:00
|
|
|
inline shared_count::shared_count(weak_count const & r): pi_(r.pi_)
|
|
|
|
{
|
2002-11-18 14:37:02 +00:00
|
|
|
if(pi_ != 0) pi_->add_ref();
|
2002-02-12 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
} // namespace boost
|
|
|
|
|
2002-07-09 12:06:46 +00:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
# pragma warn .8027 // Functions containing try are not expanded inline
|
|
|
|
# pragma warn .8026 // Functions with excep. spec. are not expanded inline
|
|
|
|
#endif
|
|
|
|
|
2002-01-22 13:38:52 +00:00
|
|
|
#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
|