author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
#ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED |
sl@0 | 2 |
#define BOOST_SCOPED_ARRAY_HPP_INCLUDED |
sl@0 | 3 |
|
sl@0 | 4 |
// (C) Copyright Greg Colvin and Beman Dawes 1998, 1999. |
sl@0 | 5 |
// Copyright (c) 2001, 2002 Peter Dimov |
sl@0 | 6 |
// |
sl@0 | 7 |
// Distributed under the Boost Software License, Version 1.0. (See |
sl@0 | 8 |
// accompanying file LICENSE_1_0.txt or copy at |
sl@0 | 9 |
// http://www.boost.org/LICENSE_1_0.txt) |
sl@0 | 10 |
// |
sl@0 | 11 |
// http://www.boost.org/libs/smart_ptr/scoped_array.htm |
sl@0 | 12 |
// |
sl@0 | 13 |
|
sl@0 | 14 |
#include <boost/assert.hpp> |
sl@0 | 15 |
#include <boost/checked_delete.hpp> |
sl@0 | 16 |
#include <boost/config.hpp> // in case ptrdiff_t not in std |
sl@0 | 17 |
|
sl@0 | 18 |
#include <boost/detail/workaround.hpp> |
sl@0 | 19 |
|
sl@0 | 20 |
#include <cstddef> // for std::ptrdiff_t |
sl@0 | 21 |
|
sl@0 | 22 |
namespace boost |
sl@0 | 23 |
{ |
sl@0 | 24 |
|
sl@0 | 25 |
// Debug hooks |
sl@0 | 26 |
|
sl@0 | 27 |
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS) |
sl@0 | 28 |
|
sl@0 | 29 |
void sp_array_constructor_hook(void * p); |
sl@0 | 30 |
void sp_array_destructor_hook(void * p); |
sl@0 | 31 |
|
sl@0 | 32 |
#endif |
sl@0 | 33 |
|
sl@0 | 34 |
// scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to |
sl@0 | 35 |
// is guaranteed, either on destruction of the scoped_array or via an explicit |
sl@0 | 36 |
// reset(). Use shared_array or std::vector if your needs are more complex. |
sl@0 | 37 |
|
sl@0 | 38 |
template<class T> class scoped_array // noncopyable |
sl@0 | 39 |
{ |
sl@0 | 40 |
private: |
sl@0 | 41 |
|
sl@0 | 42 |
T * ptr; |
sl@0 | 43 |
|
sl@0 | 44 |
scoped_array(scoped_array const &); |
sl@0 | 45 |
scoped_array & operator=(scoped_array const &); |
sl@0 | 46 |
|
sl@0 | 47 |
typedef scoped_array<T> this_type; |
sl@0 | 48 |
|
sl@0 | 49 |
public: |
sl@0 | 50 |
|
sl@0 | 51 |
typedef T element_type; |
sl@0 | 52 |
|
sl@0 | 53 |
explicit scoped_array(T * p = 0) : ptr(p) // never throws |
sl@0 | 54 |
{ |
sl@0 | 55 |
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS) |
sl@0 | 56 |
boost::sp_array_constructor_hook(ptr); |
sl@0 | 57 |
#endif |
sl@0 | 58 |
} |
sl@0 | 59 |
|
sl@0 | 60 |
~scoped_array() // never throws |
sl@0 | 61 |
{ |
sl@0 | 62 |
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS) |
sl@0 | 63 |
boost::sp_array_destructor_hook(ptr); |
sl@0 | 64 |
#endif |
sl@0 | 65 |
boost::checked_array_delete(ptr); |
sl@0 | 66 |
} |
sl@0 | 67 |
|
sl@0 | 68 |
void reset(T * p = 0) // never throws |
sl@0 | 69 |
{ |
sl@0 | 70 |
BOOST_ASSERT(p == 0 || p != ptr); // catch self-reset errors |
sl@0 | 71 |
this_type(p).swap(*this); |
sl@0 | 72 |
} |
sl@0 | 73 |
|
sl@0 | 74 |
T & operator[](std::ptrdiff_t i) const // never throws |
sl@0 | 75 |
{ |
sl@0 | 76 |
BOOST_ASSERT(ptr != 0); |
sl@0 | 77 |
BOOST_ASSERT(i >= 0); |
sl@0 | 78 |
return ptr[i]; |
sl@0 | 79 |
} |
sl@0 | 80 |
|
sl@0 | 81 |
T * get() const // never throws |
sl@0 | 82 |
{ |
sl@0 | 83 |
return ptr; |
sl@0 | 84 |
} |
sl@0 | 85 |
|
sl@0 | 86 |
// implicit conversion to "bool" |
sl@0 | 87 |
|
sl@0 | 88 |
#if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530) |
sl@0 | 89 |
|
sl@0 | 90 |
operator bool () const |
sl@0 | 91 |
{ |
sl@0 | 92 |
return ptr != 0; |
sl@0 | 93 |
} |
sl@0 | 94 |
|
sl@0 | 95 |
#elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003)) |
sl@0 | 96 |
typedef T * (this_type::*unspecified_bool_type)() const; |
sl@0 | 97 |
|
sl@0 | 98 |
operator unspecified_bool_type() const // never throws |
sl@0 | 99 |
{ |
sl@0 | 100 |
return ptr == 0? 0: &this_type::get; |
sl@0 | 101 |
} |
sl@0 | 102 |
|
sl@0 | 103 |
#else |
sl@0 | 104 |
|
sl@0 | 105 |
typedef T * this_type::*unspecified_bool_type; |
sl@0 | 106 |
|
sl@0 | 107 |
operator unspecified_bool_type() const // never throws |
sl@0 | 108 |
{ |
sl@0 | 109 |
return ptr == 0? 0: &this_type::ptr; |
sl@0 | 110 |
} |
sl@0 | 111 |
|
sl@0 | 112 |
#endif |
sl@0 | 113 |
|
sl@0 | 114 |
bool operator! () const // never throws |
sl@0 | 115 |
{ |
sl@0 | 116 |
return ptr == 0; |
sl@0 | 117 |
} |
sl@0 | 118 |
|
sl@0 | 119 |
void swap(scoped_array & b) // never throws |
sl@0 | 120 |
{ |
sl@0 | 121 |
T * tmp = b.ptr; |
sl@0 | 122 |
b.ptr = ptr; |
sl@0 | 123 |
ptr = tmp; |
sl@0 | 124 |
} |
sl@0 | 125 |
|
sl@0 | 126 |
}; |
sl@0 | 127 |
|
sl@0 | 128 |
template<class T> inline void swap(scoped_array<T> & a, scoped_array<T> & b) // never throws |
sl@0 | 129 |
{ |
sl@0 | 130 |
a.swap(b); |
sl@0 | 131 |
} |
sl@0 | 132 |
|
sl@0 | 133 |
} // namespace boost |
sl@0 | 134 |
|
sl@0 | 135 |
#endif // #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED |