Cyclone ISO C++ API Reference Guide
array.hpp
Go to the documentation of this file.
1 /* Copyright 2010, Object Management Group, Inc.
2 * Copyright 2010, PrismTech, Corp.
3 * Copyright 2010, Real-Time Innovations, Inc.
4 * All rights reserved.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 #ifndef ORG_OMG_DDS_CORE_ARRAY_HPP_
19 #define ORG_OMG_DDS_CORE_ARRAY_HPP_
20 
21 #include <string>
22 
23 // NOTICE:
24 // This array implementation is derived from the GNU C++ std library
25 // and is licensed under LGPL.
26 // This code is intended to show a possible implementation of the
27 // array class as well as to provide the mandatory API that compliant
28 // implementations of the DDS-PSM-C++ API have to conform with.
29 
30 namespace dds
31 {
32 namespace core
33 {
34 template <typename T> typename T::iterator begin(T& t)
35 {
36  return t.begin();
37 }
38 
39 template <typename T> typename T::iterator end(T& t)
40 {
41  return t.end();
42 }
43 
44 template <typename T> typename T::const_iterator begin(const T& t)
45 {
46  return t.begin();
47 }
48 
49 template <typename T> typename T::const_iterator end(const T& t)
50 {
51  return t.end();
52 }
53 
54 
69 template<typename _Tp, std::size_t _Nm>
70 struct array
71 {
72  typedef _Tp value_type;
73  typedef _Tp* pointer;
74  typedef const _Tp* const_pointer;
76  typedef const value_type& const_reference;
77  typedef value_type* iterator;
78  typedef const value_type* const_iterator;
79  typedef std::size_t size_type;
80  typedef std::ptrdiff_t difference_type;
81  typedef std::reverse_iterator<iterator> reverse_iterator;
82  typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
83 
84  // Support for zero-sized arrays mandatory.
85  value_type _M_instance[_Nm ? _Nm : 1];
86 
87  // No explicit construct/copy/destroy for aggregate type.
88 
89  // DR 776.
90  void
91  fill(const value_type& __u)
92  {
93  std::fill_n(begin(), size(), __u);
94  }
95 
96  void
97  swap(array& __other)
98  {
99  std::swap_ranges(begin(), end(), __other.begin());
100  }
101 
102  // Iterators.
103  iterator
105  {
106  return iterator(&_M_instance[0]);
107  }
108 
110  begin() const
111  {
112  return const_iterator(&(_M_instance[0]));
113  }
114 
115  iterator
116  end()
117  {
118  return iterator(&(_M_instance[_Nm]));
119  }
120 
122  end() const
123  {
124  return const_iterator(&(_M_instance[_Nm]));
125  }
126 
129  {
130  return reverse_iterator(end());
131  }
132 
134  rbegin() const
135  {
136  return const_reverse_iterator(end());
137  }
138 
141  {
142  return reverse_iterator(begin());
143  }
144 
146  rend() const
147  {
148  return const_reverse_iterator(begin());
149  }
150 
152  cbegin() const
153  {
154  return const_iterator(&(_M_instance[0]));
155  }
156 
158  cend() const
159  {
160  return const_iterator(&(_M_instance[_Nm]));
161  }
162 
164  crbegin() const
165  {
166  return const_reverse_iterator(end());
167  }
168 
170  crend() const
171  {
172  return const_reverse_iterator(begin());
173  }
174 
175  // Capacity.
176  size_type
177  size() const
178  {
179  return _Nm;
180  }
181 
182  size_type
183  max_size() const
184  {
185  return _Nm;
186  }
187 
188  bool
189  empty() const
190  {
191  return size() == 0;
192  }
193 
194  // Element access.
195  reference
197  {
198  return _M_instance[__n];
199  }
200 
203  {
204  return _M_instance[__n];
205  }
206 
207  reference
209  {
210  if(__n >= _Nm)
211  {
212  std::__throw_out_of_range(__N("array::at"));
213  }
214  return _M_instance[__n];
215  }
216 
218  at(size_type __n) const
219  {
220  if(__n >= _Nm)
221  {
222  std::__throw_out_of_range(__N("array::at"));
223  }
224  return _M_instance[__n];
225  }
226 
227  reference
229  {
230  return *begin();
231  }
232 
234  front() const
235  {
236  return *begin();
237  }
238 
239  reference
241  {
242  return _Nm ? *(end() - 1) : *end();
243  }
244 
246  back() const
247  {
248  return _Nm ? *(end() - 1) : *end();
249  }
250 
251  _Tp*
253  {
254  return &(_M_instance[0]);
255  }
256 
257  const _Tp*
258  data() const
259  {
260  return &(_M_instance[0]);
261  }
262 };
263 
264 // Array comparisons.
265 template<typename _Tp, std::size_t _Nm>
266 inline bool
267 operator==(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
268 {
269  return std::equal(__one.begin(), __one.end(), __two.begin());
270 }
271 
272 template<typename _Tp, std::size_t _Nm>
273 inline bool
274 operator!=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
275 {
276  return !(__one == __two);
277 }
278 
279 template<typename _Tp, std::size_t _Nm>
280 inline bool
282 {
283  return std::lexicographical_compare(__a.begin(), __a.end(),
284  __b.begin(), __b.end());
285 }
286 
287 template<typename _Tp, std::size_t _Nm>
288 inline bool
289 operator>(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
290 {
291  return __two < __one;
292 }
293 
294 template<typename _Tp, std::size_t _Nm>
295 inline bool
296 operator<=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
297 {
298  return !(__one > __two);
299 }
300 
301 template<typename _Tp, std::size_t _Nm>
302 inline bool
303 operator>=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
304 {
305  return !(__one < __two);
306 }
307 
309 template<std::size_t _Int, typename _Tp>
311 
312 template <typename _Tp> class tuple_size;
313 
314 template<typename _Tp, std::size_t _Nm>
315 struct tuple_size<array<_Tp, _Nm> >
316 {
317  static const std::size_t value = _Nm;
318 };
319 
320 template<typename _Tp, std::size_t _Nm>
321 const std::size_t
323 
324 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
325 struct tuple_element<_Int, array<_Tp, _Nm> >
326 {
327  typedef _Tp type;
328 };
329 
330 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
331 inline _Tp&
333 {
334  return __arr[_Int];
335 }
336 
337 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
338 inline const _Tp&
339 get(const array<_Tp, _Nm>& __arr)
340 {
341  return __arr[_Int];
342 }
343 }
344 }
345 
346 
347 #endif /* ORG_OMG_DDS_CORE_ARRAY_HPP_ */
dds::core::array::back
reference back()
Definition: array.hpp:240
dds::core::array::operator[]
const_reference operator[](size_type __n) const
Definition: array.hpp:202
dds::core::tuple_element< _Int, array< _Tp, _Nm > >::type
_Tp type
Definition: array.hpp:327
dds::core::array::rend
const_reverse_iterator rend() const
Definition: array.hpp:146
dds::core::array::size
size_type size() const
Definition: array.hpp:177
dds::core::array::end
iterator end()
Definition: array.hpp:116
dds::core::array::rbegin
const_reverse_iterator rbegin() const
Definition: array.hpp:134
dds::core::array::cend
const_iterator cend() const
Definition: array.hpp:158
dds::core::array::iterator
value_type * iterator
Definition: array.hpp:77
dds::core::array::begin
iterator begin()
Definition: array.hpp:104
dds::core::operator<=
bool operator<=(const array< _Tp, _Nm > &__one, const array< _Tp, _Nm > &__two)
Definition: array.hpp:296
dds::core::array::end
const_iterator end() const
Definition: array.hpp:122
dds::core::array::rend
reverse_iterator rend()
Definition: array.hpp:140
dds::core::tuple_size
Definition: array.hpp:312
dds::core::array::const_reverse_iterator
std::reverse_iterator< const_iterator > const_reverse_iterator
Definition: array.hpp:82
dds::core::array::data
_Tp * data()
Definition: array.hpp:252
dds::core::operator!=
bool operator!=(const array< _Tp, _Nm > &__one, const array< _Tp, _Nm > &__two)
Definition: array.hpp:274
dds::core::array::const_reference
const typedef value_type & const_reference
Definition: array.hpp:76
dds::core::array::_M_instance
value_type _M_instance[_Nm ? _Nm :1]
Definition: array.hpp:85
dds::core::array::at
reference at(size_type __n)
Definition: array.hpp:208
dds::core::array::front
reference front()
Definition: array.hpp:228
dds::core::array::reference
value_type & reference
Definition: array.hpp:75
dds::core::operator==
bool operator==(const array< _Tp, _Nm > &__one, const array< _Tp, _Nm > &__two)
Definition: array.hpp:267
dds::core::array::const_pointer
const typedef _Tp * const_pointer
Definition: array.hpp:74
dds::core::array::rbegin
reverse_iterator rbegin()
Definition: array.hpp:128
dds
Definition: array.hpp:30
dds::core::array::operator[]
reference operator[](size_type __n)
Definition: array.hpp:196
dds::core::array::empty
bool empty() const
Definition: array.hpp:189
dds::core::begin
T::iterator begin(T &t)
Definition: array.hpp:34
dds::core::operator>=
bool operator>=(const array< _Tp, _Nm > &__one, const array< _Tp, _Nm > &__two)
Definition: array.hpp:303
dds::core::array::swap
void swap(array &__other)
Definition: array.hpp:97
dds::core::end
T::iterator end(T &t)
Definition: array.hpp:39
dds::core::array::value_type
_Tp value_type
Definition: array.hpp:72
dds::core::array::fill
void fill(const value_type &__u)
Definition: array.hpp:91
dds::core::operator<
bool operator<(const array< _Tp, _Nm > &__a, const array< _Tp, _Nm > &__b)
Definition: array.hpp:281
dds::core::array::difference_type
std::ptrdiff_t difference_type
Definition: array.hpp:80
dds::core::array::begin
const_iterator begin() const
Definition: array.hpp:110
dds::core::array::reverse_iterator
std::reverse_iterator< iterator > reverse_iterator
Definition: array.hpp:81
dds::core::array::cbegin
const_iterator cbegin() const
Definition: array.hpp:152
dds::core::array::front
const_reference front() const
Definition: array.hpp:234
dds::core::tuple_element
tuple_element
Definition: array.hpp:310
dds::core::array::at
const_reference at(size_type __n) const
Definition: array.hpp:218
dds::core::array::crend
const_reverse_iterator crend() const
Definition: array.hpp:170
dds::core::array::const_iterator
const typedef value_type * const_iterator
Definition: array.hpp:78
dds::core::get
_Tp & get(array< _Tp, _Nm > &__arr)
Definition: array.hpp:332
dds::core::array::size_type
std::size_t size_type
Definition: array.hpp:79
dds::core::operator>
bool operator>(const array< _Tp, _Nm > &__one, const array< _Tp, _Nm > &__two)
Definition: array.hpp:289
dds::core::array::crbegin
const_reverse_iterator crbegin() const
Definition: array.hpp:164
dds::core::array
A standard container for storing a fixed size sequence of elements.
Definition: array.hpp:70
dds::core::array::back
const_reference back() const
Definition: array.hpp:246
dds::core::array::data
const _Tp * data() const
Definition: array.hpp:258
dds::core::array::max_size
size_type max_size() const
Definition: array.hpp:183
dds::core::array::pointer
_Tp * pointer
Definition: array.hpp:73