From cb9ea47e7825b5073d4d645afb94f6326cb7cf4d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 6 Sep 2009 12:52:53 +0200 Subject: Start the libcutl repository --- cutl/shared-ptr/base.hxx | 90 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 cutl/shared-ptr/base.hxx (limited to 'cutl/shared-ptr/base.hxx') diff --git a/cutl/shared-ptr/base.hxx b/cutl/shared-ptr/base.hxx new file mode 100644 index 0000000..bb297cb --- /dev/null +++ b/cutl/shared-ptr/base.hxx @@ -0,0 +1,90 @@ +// file : cutl/shared-ptr/base.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#ifndef CUTL_SHARED_PTR_BASE_HXX +#define CUTL_SHARED_PTR_BASE_HXX + +#include +#include // std::size_t +#include // std::exception + +namespace cutl +{ + struct share + { + explicit + share (char id); + + bool + operator== (share) const; + + private: + char id_; + }; +} + +extern cutl::share shared; +extern cutl::share exclusive; + +void* +operator new (std::size_t, cutl::share) throw (std::bad_alloc); + +void +operator delete (void*, cutl::share) throw (); + +namespace cutl +{ + struct not_shared: std::exception + { + virtual char const* + what () const throw (); + }; + + struct shared_base + { + shared_base (); + shared_base (shared_base const&); + shared_base& + operator= (shared_base const&); + + void + _inc_ref (); + + bool + _dec_ref (); + + std::size_t + _ref_count () const; + + void* + operator new (std::size_t, share) throw (std::bad_alloc); + + void + operator delete (void*, share) throw (); + + void + operator delete (void*) throw (); + + protected: + std::size_t counter_; + }; + + template + inline X* + inc_ref (X*); + + template + inline void + dec_ref (X*); + + template + inline std::size_t + ref_count (X const*); +} + +#include +#include + +#endif // CUTL_SHARED_PTR_BASE_HXX -- cgit v1.1