]> git.lyx.org Git - lyx.git/blob - boost/boost/scoped_array.hpp
update boost to pre-1.30.0
[lyx.git] / boost / boost / scoped_array.hpp
1 #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED
2 #define BOOST_SCOPED_ARRAY_HPP_INCLUDED
3
4 //  (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
5 //  Copyright (c) 2001, 2002 Peter Dimov
6 //
7 //  Permission to copy, use, modify, sell and distribute this software
8 //  is granted provided this copyright notice appears in all copies.
9 //  This software is provided "as is" without express or implied
10 //  warranty, and with no claim as to its suitability for any purpose.
11 //
12 //  http://www.boost.org/libs/smart_ptr/scoped_array.htm
13 //
14
15 #include <boost/assert.hpp>
16 #include <boost/checked_delete.hpp>
17 #include <boost/config.hpp>   // in case ptrdiff_t not in std
18 #include <cstddef>            // for std::ptrdiff_t
19
20 namespace boost
21 {
22
23 // Debug hooks
24
25 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
26
27 void sp_array_constructor_hook(void * p);
28 void sp_array_destructor_hook(void * p);
29
30 #endif
31
32 //  scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
33 //  is guaranteed, either on destruction of the scoped_array or via an explicit
34 //  reset(). Use shared_array or std::vector if your needs are more complex.
35
36 template<class T> class scoped_array // noncopyable
37 {
38 private:
39
40     T * ptr;
41
42     scoped_array(scoped_array const &);
43     scoped_array & operator=(scoped_array const &);
44
45     typedef scoped_array<T> this_type;
46
47 public:
48
49     typedef T element_type;
50
51     explicit scoped_array(T * p = 0) : ptr(p) // never throws
52     {
53 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
54         boost::sp_array_constructor_hook(ptr);
55 #endif
56     }
57
58     ~scoped_array() // never throws
59     {
60 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
61         boost::sp_array_destructor_hook(ptr);
62 #endif
63         boost::checked_array_delete(ptr);
64     }
65
66     void reset(T * p = 0) // never throws
67     {
68         BOOST_ASSERT(p == 0 || p != ptr); // catch self-reset errors
69         this_type(p).swap(*this);
70     }
71
72     T & operator[](std::ptrdiff_t i) const // never throws
73     {
74         BOOST_ASSERT(ptr != 0);
75         BOOST_ASSERT(i >= 0);
76         return ptr[i];
77     }
78
79     T * get() const // never throws
80     {
81         return ptr;
82     }
83
84     // implicit conversion to "bool"
85
86     typedef T * (this_type::*unspecified_bool_type)() const;
87
88     operator unspecified_bool_type() const // never throws
89     {
90         return ptr == 0? 0: &this_type::get;
91     }
92
93     bool operator! () const // never throws
94     {
95         return ptr == 0;
96     }
97
98     void swap(scoped_array & b) // never throws
99     {
100         T * tmp = b.ptr;
101         b.ptr = ptr;
102         ptr = tmp;
103     }
104
105 };
106
107 template<class T> inline void swap(scoped_array<T> & a, scoped_array<T> & b) // never throws
108 {
109     a.swap(b);
110 }
111
112 } // namespace boost
113
114 #endif  // #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED