vecmem 1.14.0
Loading...
Searching...
No Matches
vector_buffer.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2025 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/data/buffer_type.hpp"
11#include "vecmem/containers/data/vector_view.hpp"
12#include "vecmem/memory/memory_resource.hpp"
13#include "vecmem/memory/unique_ptr.hpp"
14
15// System include(s).
16#include <cstddef>
17#include <memory>
18#include <type_traits>
19
20namespace vecmem {
21namespace data {
22
28template <typename TYPE>
29class vector_buffer : public vector_view<TYPE> {
30
31public:
39 using pointer = typename base_type::pointer;
40
43
45 static_assert(std::is_trivially_destructible<TYPE>::value,
46 "vecmem::data::vector_buffer can not handle types with "
47 "custom destructors");
48
50
54 vector_buffer(size_type capacity, memory_resource& resource,
58
61
64 vecmem::unique_alloc_ptr<char[]> m_memory;
65
66}; // class vector_buffer
67
68} // namespace data
69
72data::vector_view<TYPE>& get_data(data::vector_buffer<TYPE>& data);
73
77
78} // namespace vecmem
79
80// Include the implementation.
81#include "vecmem/containers/impl/vector_buffer.ipp"
Object owning the data held by it.
Definition vector_buffer.hpp:29
vector_buffer()
Make sure that the template type does not have a custom destructor.
Definition vector_buffer.ipp:24
typename base_type::pointer pointer
Pointer type definition coming from the base class.
Definition vector_buffer.hpp:39
typename base_type::size_type size_type
Size type definition coming from the base class.
Definition vector_buffer.hpp:35
vector_buffer(vector_buffer &&) noexcept=default
Move constructor.
typename base_type::size_pointer size_pointer
Size pointer type definition coming from the base class.
Definition vector_buffer.hpp:37
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
std::add_pointer_t< TYPE > pointer
Pointer type to the array.
Definition vector_view.hpp:54
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
std::conditional_t< std::is_const< TYPE >::value, std::add_pointer_t< std::add_const_t< size_type > >, std::add_pointer_t< size_type > > size_pointer
Pointer type to the size of the array.
Definition vector_view.hpp:52
VECMEM_HOST_AND_DEVICE size_type capacity() const
Get the maximum capacity of the vector.
Definition vector_view.ipp:78
buffer_type
"Overall type" for a buffer object
Definition buffer_type.hpp:13
@ fixed_size
The buffer has a fixed number of elements.
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
std::unique_ptr< T, details::unique_alloc_deleter< T > > unique_alloc_ptr
A unique pointer type for trivial types.
Definition unique_ptr.hpp:69
VECMEM_HOST data::vector_view< T > get_data(array< T, N > &a)
Helper function creating a vecmem::data::vector_view object.
Definition array.ipp:217