vecmem 1.14.0
Loading...
Searching...
No Matches
static_vector.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2024 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
10#include "vecmem/containers/details/reverse_iterator.hpp"
11#include "vecmem/containers/details/static_vector_traits.hpp"
12#include "vecmem/utils/type_traits.hpp"
13#include "vecmem/utils/types.hpp"
14
15// System include(s).
16#include <cstddef>
17#include <type_traits>
18
19namespace vecmem {
20
29template <typename TYPE, std::size_t MAX_SIZE>
31
32public:
35
39 typedef std::size_t size_type;
41 typedef std::ptrdiff_t difference_type;
42
44 static constexpr size_type array_max_size = MAX_SIZE;
46 static constexpr size_type value_size = sizeof(value_type);
48 typedef typename details::static_vector_type<
50
58 typedef const value_type* const_pointer;
59
69
71
74
76 VECMEM_HOST_AND_DEVICE
79 VECMEM_HOST_AND_DEVICE
81 const_reference value = value_type());
83 template <
84 typename InputIt,
85 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
86 bool> = true>
88 : m_size(0), m_elements() {
89
91 }
93 VECMEM_HOST_AND_DEVICE
94 static_vector(const static_vector& parent);
95
97 VECMEM_HOST_AND_DEVICE
99
101
104
106 VECMEM_HOST_AND_DEVICE
109 VECMEM_HOST_AND_DEVICE
111
113 VECMEM_HOST_AND_DEVICE
116 VECMEM_HOST_AND_DEVICE
118
120 VECMEM_HOST_AND_DEVICE
123 VECMEM_HOST_AND_DEVICE
124 const_reference front() const;
125
127 VECMEM_HOST_AND_DEVICE
128 reference back();
130 VECMEM_HOST_AND_DEVICE
131 const_reference back() const;
132
134 VECMEM_HOST_AND_DEVICE
135 pointer data();
137 VECMEM_HOST_AND_DEVICE
138 const_pointer data() const;
139
141
144
146 VECMEM_HOST_AND_DEVICE
147 void assign(size_type count, const_reference value);
149 template <
150 typename InputIt,
151 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
152 bool> = true>
153 VECMEM_HOST_AND_DEVICE void assign(InputIt other_begin, InputIt other_end) {
154
155 // Remove all previous elements.
156 clear();
157
158 // Create copies of all of the elements one-by-one. It's very
159 // inefficient, but we can't make any assumptions about the type of the
161 for (InputIt itr = other_begin; itr != other_end; ++itr) {
162 construct(m_size++, *itr);
163 }
164 }
165
167 VECMEM_HOST_AND_DEVICE
170 VECMEM_HOST_AND_DEVICE
173 template <
174 typename InputIt,
175 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
176 bool> = true>
179
180 // Find the index of this iterator inside of the vector.
181 auto id = element_id(pos);
182
183 // Insert the elements one by one. It's very inefficient, but we can't
184 // make any assumptions about the type of the input iterator received
185 // by this function.
188 ++other_itr, ++self_itr) {
190 }
191
192 // Return an iterator to the first inserted element.
193 return id.m_ptr;
194 }
195
197 template <typename... Args>
198 VECMEM_HOST_AND_DEVICE iterator emplace(const_iterator pos, Args&&... args);
200 template <typename... Args>
201 VECMEM_HOST_AND_DEVICE reference emplace_back(Args&&... args);
202
204 VECMEM_HOST_AND_DEVICE
205 void push_back(const_reference value);
206
208 VECMEM_HOST_AND_DEVICE
211 VECMEM_HOST_AND_DEVICE
214 VECMEM_HOST_AND_DEVICE
215 void pop_back();
216
218 VECMEM_HOST_AND_DEVICE
219 void clear();
221 VECMEM_HOST_AND_DEVICE
222 void resize(std::size_t new_size);
224 VECMEM_HOST_AND_DEVICE
225 void resize(std::size_t new_size, const_reference value);
226
228
231
233 VECMEM_HOST_AND_DEVICE
234 iterator begin();
237 VECMEM_HOST_AND_DEVICE
238 const_iterator begin() const;
241 VECMEM_HOST_AND_DEVICE
242 const_iterator cbegin() const;
243
245 VECMEM_HOST_AND_DEVICE
246 iterator end();
248 VECMEM_HOST_AND_DEVICE
249 const_iterator end() const;
251 VECMEM_HOST_AND_DEVICE
252 const_iterator cend() const;
253
255 VECMEM_HOST_AND_DEVICE
258 VECMEM_HOST_AND_DEVICE
261 VECMEM_HOST_AND_DEVICE
263
265 VECMEM_HOST_AND_DEVICE
269 VECMEM_HOST_AND_DEVICE
273 VECMEM_HOST_AND_DEVICE
275
277
280
282 VECMEM_HOST_AND_DEVICE
283 bool empty() const;
285 VECMEM_HOST_AND_DEVICE
286 size_type size() const;
288 VECMEM_HOST_AND_DEVICE
289 size_type max_size() const;
291 VECMEM_HOST_AND_DEVICE
292 size_type capacity() const;
294 VECMEM_HOST_AND_DEVICE
296
298
299private:
301 VECMEM_HOST_AND_DEVICE
302 void construct(size_type pos, const_reference value);
304 VECMEM_HOST_AND_DEVICE
305 void destruct(size_type pos);
306
308 struct ElementId {
309 size_type m_index;
310 pointer m_ptr;
311 }; // struct ElementId
313 VECMEM_HOST_AND_DEVICE
314 ElementId element_id(const_iterator pos);
315
317 size_type m_size;
319 array_type m_elements;
320
321}; // class static_vector
322
323} // namespace vecmem
324
325// Include the implementation.
326#include "vecmem/containers/impl/static_vector.ipp"
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
Class mimicking std::vector on top of a fixed sized array.
Definition static_vector.hpp:30
VECMEM_HOST_AND_DEVICE size_type capacity() const
Return the current (fixed) capacity of the vector.
Definition static_vector.ipp:447
VECMEM_HOST_AND_DEVICE void assign(size_type count, const_reference value)
Assign new values to the vector.
Definition static_vector.ipp:140
std::ptrdiff_t difference_type
Pointer difference type.
Definition static_vector.hpp:41
VECMEM_HOST_AND_DEVICE const_iterator cend() const
Return a constant forward iterator pointing at the end of the vector.
Definition static_vector.ipp:378
value_type * pointer
Value pointer type.
Definition static_vector.hpp:56
value_type & reference
Value reference type.
Definition static_vector.hpp:52
VECMEM_HOST_AND_DEVICE ~static_vector()
Destructor.
Definition static_vector.ipp:40
VECMEM_HOST_AND_DEVICE reference at(size_type pos)
Return a specific element of the vector in a "safe way" (non-const)
Definition static_vector.ipp:47
VECMEM_HOST_AND_DEVICE void assign(InputIt other_begin, InputIt other_end)
Assign new values to the vector.
Definition static_vector.hpp:153
VECMEM_HOST_AND_DEVICE void resize(std::size_t new_size)
Resize the vector.
Definition static_vector.ipp:315
VECMEM_HOST_AND_DEVICE bool empty() const
Check whether the vector is empty.
Definition static_vector.ipp:427
VECMEM_HOST_AND_DEVICE size_type size() const
Return the number of elements in the vector.
Definition static_vector.ipp:433
std::size_t size_type
Size type for the array.
Definition static_vector.hpp:39
VECMEM_HOST_AND_DEVICE iterator erase(const_iterator pos)
Remove one element from the vector.
Definition static_vector.ipp:252
VECMEM_HOST_AND_DEVICE static_vector()
Default constructor.
Definition static_vector.ipp:17
VECMEM_HOST_AND_DEVICE iterator begin()
Return a forward iterator pointing at the beginning of the vector.
Definition static_vector.ipp:345
VECMEM_HOST_AND_DEVICE reference operator[](size_type pos)
Return a specific element of the vector (non-const)
Definition static_vector.ipp:68
const value_type * const_pointer
Constant value pointer type.
Definition static_vector.hpp:58
VECMEM_HOST_AND_DEVICE void clear()
Clear the vector.
Definition static_vector.ipp:306
static constexpr size_type array_max_size
The maximal size of the vector.
Definition static_vector.hpp:44
VECMEM_HOST_AND_DEVICE const_reverse_iterator crend() const
Return a constant reverse iterator pointing at the beginning of the vector.
Definition static_vector.ipp:420
VECMEM_HOST_AND_DEVICE pointer data()
Access the underlying memory array (non-const)
Definition static_vector.ipp:127
VECMEM_HOST_AND_DEVICE reference emplace_back(Args &&... args)
Add a new element at the end of the vector.
VECMEM_HOST_AND_DEVICE static_vector(InputIt other_begin, InputIt other_end)
Construct a vector with values coming from a pair of iterators.
Definition static_vector.hpp:87
VECMEM_HOST_AND_DEVICE void push_back(const_reference value)
Add a new element at the end of the vector.
Definition static_vector.ipp:245
VECMEM_HOST_AND_DEVICE iterator emplace(const_iterator pos, Args &&... args)
Insert a new element into the vector.
vecmem::details::reverse_iterator< const_iterator > const_reverse_iterator
Constant reverse iterator type.
Definition static_vector.hpp:68
vecmem::details::reverse_iterator< iterator > reverse_iterator
Reverse iterator type.
Definition static_vector.hpp:65
VECMEM_HOST_AND_DEVICE iterator end()
Return a forward iterator pointing at the end of the vector.
Definition static_vector.ipp:365
iterator insert(const_iterator pos, InputIt other_begin, InputIt other_end)
Insert a list of elements into the vector.
Definition static_vector.hpp:177
details::static_vector_type< char, array_max_size *value_size >::type array_type
Type of the array holding the payload of the vector elements.
Definition static_vector.hpp:49
VECMEM_HOST_AND_DEVICE const_reverse_iterator crbegin() const
Return a constant reverse iterator pointing at the end of the vector.
Definition static_vector.ipp:399
VECMEM_HOST_AND_DEVICE reference back()
Return the last element of the vector (non-const)
Definition static_vector.ipp:106
const value_type & const_reference
Constant value reference type.
Definition static_vector.hpp:54
VECMEM_HOST_AND_DEVICE reverse_iterator rend()
Return a reverse iterator pointing at the beginning of the vector.
Definition static_vector.ipp:406
VECMEM_HOST_AND_DEVICE void reserve(size_type new_cap)
Reserve additional storage for the vector.
Definition static_vector.ipp:454
VECMEM_HOST_AND_DEVICE const_iterator cbegin() const
Return a constant forward iterator pointing at the beginning of the vector.
Definition static_vector.ipp:358
pointer iterator
Forward iterator type.
Definition static_vector.hpp:61
VECMEM_HOST_AND_DEVICE iterator insert(const_iterator pos, const_reference value)
Insert a new element into the vector.
Definition static_vector.ipp:159
static constexpr size_type value_size
The size of the vector elements.
Definition static_vector.hpp:46
VECMEM_HOST_AND_DEVICE reverse_iterator rbegin()
Return a reverse iterator pointing at the end of the vector.
Definition static_vector.ipp:385
VECMEM_HOST_AND_DEVICE size_type max_size() const
Return the maximum (fixed) number of elements in the vector.
Definition static_vector.ipp:440
TYPE value_type
Type of the array elements.
Definition static_vector.hpp:37
const_pointer const_iterator
Constant forward iterator type.
Definition static_vector.hpp:63
VECMEM_HOST_AND_DEVICE reference front()
Return the first element of the vector (non-const)
Definition static_vector.ipp:84
VECMEM_HOST_AND_DEVICE void pop_back()
Remove the last element of the vector.
Definition static_vector.ipp:300
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
Helper type for an array in a static_vector with a given type and size.
Definition static_vector_traits.hpp:27