Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED
2 #define BOOST_SHARED_ARRAY_HPP_INCLUDED
7 // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
8 // Copyright (c) 2001, 2002 Peter Dimov
10 // Distributed under the Boost Software License, Version 1.0. (See
11 // accompanying file LICENSE_1_0.txt or copy at
12 // http://www.boost.org/LICENSE_1_0.txt)
14 // See http://www.boost.org/libs/smart_ptr/shared_array.htm for documentation.
17 #include <boost/config.hpp> // for broken compiler workarounds
19 #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
20 #include <boost/detail/shared_array_nmt.hpp>
23 #include <memory> // TR1 cyclic inclusion fix
25 #include <boost/assert.hpp>
26 #include <boost/checked_delete.hpp>
28 #include <boost/detail/shared_count.hpp>
29 #include <boost/detail/workaround.hpp>
31 #include <cstddef> // for std::ptrdiff_t
32 #include <algorithm> // for std::swap
33 #include <functional> // for std::less
41 // shared_array extends shared_ptr to arrays.
42 // The array pointed to is deleted when the last shared_array pointing to it
43 // is destroyed or reset.
46 template<class T> class shared_array
50 // Borland 5.5.1 specific workarounds
51 typedef checked_array_deleter<T> deleter;
52 typedef shared_array<T> this_type;
56 typedef T element_type;
58 explicit shared_array(T * p = 0): px(p), pn(p, deleter())
63 // Requirements: D's copy constructor must not throw
65 // shared_array will release p by calling d(p)
68 template<class D> shared_array(T * p, D d): px(p), pn(p, d)
72 // generated copy constructor, assignment, destructor are fine
76 BOOST_ASSERT(p == 0 || p != px);
77 this_type(p).swap(*this);
80 template <class D> void reset(T * p, D d)
82 this_type(p, d).swap(*this);
85 T & operator[] (std::ptrdiff_t i) const // never throws
87 BOOST_ASSERT(px != 0);
92 T * get() const // never throws
97 // implicit conversion to "bool"
99 #if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530)
101 operator bool () const
106 #elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
107 typedef T * (this_type::*unspecified_bool_type)() const;
109 operator unspecified_bool_type() const // never throws
111 return px == 0? 0: &this_type::get;
116 typedef T * this_type::*unspecified_bool_type;
118 operator unspecified_bool_type() const // never throws
120 return px == 0? 0: &this_type::px;
125 bool operator! () const // never throws
130 bool unique() const // never throws
135 long use_count() const // never throws
137 return pn.use_count();
140 void swap(shared_array<T> & other) // never throws
142 std::swap(px, other.px);
148 T * px; // contained pointer
149 detail::shared_count pn; // reference counter
153 template<class T> inline bool operator==(shared_array<T> const & a, shared_array<T> const & b) // never throws
155 return a.get() == b.get();
158 template<class T> inline bool operator!=(shared_array<T> const & a, shared_array<T> const & b) // never throws
160 return a.get() != b.get();
163 template<class T> inline bool operator<(shared_array<T> const & a, shared_array<T> const & b) // never throws
165 return std::less<T*>()(a.get(), b.get());
168 template<class T> void swap(shared_array<T> & a, shared_array<T> & b) // never throws
175 #endif // #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
177 #endif // #ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED