shared_array.hpp
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 #ifndef BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED
3 #define BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED
4 
5 //
6 // shared_array.hpp
7 //
8 // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
9 // Copyright (c) 2001, 2002, 2012 Peter Dimov
10 //
11 // Distributed under the Boost Software License, Version 1.0. (See
12 // accompanying file LICENSE_1_0.txt or copy at
13 // http://www.boost.org/LICENSE_1_0.txt)
14 //
15 // See http://www.boost.org/libs/smart_ptr/ for documentation.
16 //
17 
18 #include <memory> // TR1 cyclic inclusion fix
19 
20 #include <cstddef> // for std::ptrdiff_t
21 #include <algorithm> // for std::swap
22 #include <functional> // for std::less
23 
26 
27 typedef decltype(nullptr) sp_nullptr_t;
28 
29 template< class Y, class T > inline void sp_assert_convertible() noexcept
30 {
31  T* p = static_cast< Y* >( 0 );
32  (void)p;
33 }
34 
35 namespace boost
36 {
37 
38 //
39 // shared_array
40 //
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.
44 //
45 
46 template<class T> class shared_array
47 {
48 private:
49 
50  // Borland 5.5.1 specific workarounds
51  typedef checked_array_deleter<T> deleter;
52  typedef shared_array<T> this_type;
53 
54 public:
55 
56  typedef T element_type;
57 
58  shared_array() noexcept : px( 0 ), pn()
59  {
60  }
61 
62 #if !defined( BOOST_NO_CXX11_NULLPTR )
63 
64  shared_array( sp_nullptr_t ) noexcept : px( 0 ), pn()
65  {
66  }
67 
68 #endif
69 
70  template<class Y>
71  explicit shared_array( Y * p ): px( p ), pn( p, checked_array_deleter<Y>() )
72  {
73  sp_assert_convertible< Y[], T[] >();
74  }
75 
76  //
77  // Requirements: D's copy constructor must not throw
78  //
79  // shared_array will release p by calling d(p)
80  //
81 
82  template<class Y, class D> shared_array( Y * p, D d ): px( p ), pn( p, d )
83  {
84  sp_assert_convertible< Y[], T[] >();
85  }
86 
87  // As above, but with allocator. A's copy constructor shall not throw.
88 
89  template<class Y, class D, class A> shared_array( Y * p, D d, A a ): px( p ), pn( p, d, a )
90  {
91  sp_assert_convertible< Y[], T[] >();
92  }
93 
94 // generated copy constructor, destructor are fine...
95 
96 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
97 
98 // ... except in C++0x, move disables the implicit copy
99 
100  shared_array( shared_array const & r ) noexcept : px( r.px ), pn( r.pn )
101  {
102  }
103 
104  shared_array( shared_array && r ) noexcept : px( r.px ), pn()
105  {
106  pn.swap( r.pn );
107  r.px = 0;
108  }
109 
110 #endif
111 
112  // conversion
113 
114  template<class Y>
115  shared_array( shared_array<Y> const & r )
116 
117  noexcept : px( r.px ), pn( r.pn )
118  {
119  sp_assert_convertible< Y[], T[] >();
120  }
121 
122  // aliasing
123 
124  template< class Y >
125  shared_array( shared_array<Y> const & r, element_type * p ) noexcept : px( p ), pn( r.pn )
126  {
127  }
128 
129  // assignment
130 
131  shared_array & operator=( shared_array const & r ) noexcept
132  {
133  this_type( r ).swap( *this );
134  return *this;
135  }
136 
137 #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1400)
138 
139  template<class Y>
140  shared_array & operator=( shared_array<Y> const & r ) noexcept
141  {
142  this_type( r ).swap( *this );
143  return *this;
144  }
145 
146 #endif
147 
148 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
149 
150  shared_array & operator=( shared_array && r ) noexcept
151  {
152  this_type( static_cast< shared_array && >( r ) ).swap( *this );
153  return *this;
154  }
155 
156  template<class Y>
157  shared_array & operator=( shared_array<Y> && r ) noexcept
158  {
159  this_type( static_cast< shared_array<Y> && >( r ) ).swap( *this );
160  return *this;
161  }
162 
163 #endif
164 
165  void reset() noexcept
166  {
167  this_type().swap( *this );
168  }
169 
170  template<class Y> void reset( Y * p ) // Y must be complete
171  {
172  assert( p == 0 || p != px ); // catch self-reset errors
173  this_type( p ).swap( *this );
174  }
175 
176  template<class Y, class D> void reset( Y * p, D d )
177  {
178  this_type( p, d ).swap( *this );
179  }
180 
181  template<class Y, class D, class A> void reset( Y * p, D d, A a )
182  {
183  this_type( p, d, a ).swap( *this );
184  }
185 
186  template<class Y> void reset( shared_array<Y> const & r, element_type * p ) noexcept
187  {
188  this_type( r, p ).swap( *this );
189  }
190 
191  T & operator[] (std::ptrdiff_t i) const noexcept
192  {
193  assert(px != 0);
194  assert(i >= 0);
195  return px[i];
196  }
197 
198  T * get() const noexcept
199  {
200  return px;
201  }
202 
203 // implicit conversion to "bool"
204  explicit operator bool () const noexcept
205  {
206  return px != 0;
207  }
208  bool operator! () const noexcept
209  {
210  return px == 0;
211  }
212 
213  bool unique() const noexcept
214  {
215  return pn.unique();
216  }
217 
218  long use_count() const noexcept
219  {
220  return pn.use_count();
221  }
222 
223  void swap(shared_array<T> & other) noexcept
224  {
225  std::swap(px, other.px);
226  pn.swap(other.pn);
227  }
228 
229  void * _internal_get_deleter( std::type_info const & ti ) const noexcept
230  {
231  return pn.get_deleter( ti );
232  }
233 
234 private:
235 
236  template<class Y> friend class shared_array;
237 
238  T * px; // contained pointer
239  detail::shared_count pn; // reference counter
240 
241 }; // shared_array
242 
243 template<class T> inline bool operator==(shared_array<T> const & a, shared_array<T> const & b) noexcept
244 {
245  return a.get() == b.get();
246 }
247 
248 template<class T> inline bool operator!=(shared_array<T> const & a, shared_array<T> const & b) noexcept
249 {
250  return a.get() != b.get();
251 }
252 
253 #if !defined( BOOST_NO_CXX11_NULLPTR )
254 
255 template<class T> inline bool operator==( shared_array<T> const & p, sp_nullptr_t ) noexcept
256 {
257  return p.get() == 0;
258 }
259 
260 template<class T> inline bool operator==( sp_nullptr_t, shared_array<T> const & p ) noexcept
261 {
262  return p.get() == 0;
263 }
264 
265 template<class T> inline bool operator!=( shared_array<T> const & p, sp_nullptr_t ) noexcept
266 {
267  return p.get() != 0;
268 }
269 
270 template<class T> inline bool operator!=( sp_nullptr_t, shared_array<T> const & p ) noexcept
271 {
272  return p.get() != 0;
273 }
274 
275 #endif
276 
277 template<class T> inline bool operator<(shared_array<T> const & a, shared_array<T> const & b) noexcept
278 {
279  return std::less<T*>()(a.get(), b.get());
280 }
281 
282 template<class T> void swap(shared_array<T> & a, shared_array<T> & b) noexcept
283 {
284  a.swap(b);
285 }
286 
287 template< class D, class T > D * get_deleter( shared_array<T> const & p ) noexcept
288 {
289  return static_cast< D * >( p._internal_get_deleter( typeid(D) ) );
290 }
291 
292 } // namespace boost
293 
294 #endif // #ifndef BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED
shared_count.hpp
const
#define const
Definition: getopt.c:38
boost::detail::shared_count::use_count
long use_count() const
Definition: shared_count.hpp:460
boost
boost::operator<
bool operator<(shared_array< T > const &a, shared_array< T > const &b) noexcept
Definition: shared_array.hpp:277
sp_assert_convertible
void sp_assert_convertible() noexcept
Definition: shared_array.hpp:29
boost::detail::shared_count::unique
bool unique() const
Definition: shared_count.hpp:465
boost::operator==
bool operator==(shared_array< T > const &a, shared_array< T > const &b) noexcept
Definition: shared_array.hpp:243
A
sp_nullptr_t
decltype(nullptr) typedef sp_nullptr_t
Definition: shared_array.hpp:27
boost::shared_array
Definition: shared_array.hpp:46
d
d
boost::get_deleter
D * get_deleter(shared_array< T > const &p) noexcept
Definition: shared_array.hpp:287
boost::swap
void swap(shared_array< T > &a, shared_array< T > &b) noexcept
Definition: shared_array.hpp:282
sick_scan_base.h
boost::detail::shared_count::get_deleter
void * get_deleter(sp_typeinfo const &ti) const
Definition: shared_count.hpp:485
boost::operator!=
bool operator!=(shared_array< T > const &a, shared_array< T > const &b) noexcept
Definition: shared_array.hpp:248
boost::detail::shared_count::swap
void swap(shared_count &r)
Definition: shared_count.hpp:453
checked_delete.hpp


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10