Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Span.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_CORE_UTIL_SPAN_H
4#define IMT_BASE_CORE_UTIL_SPAN_H
5
6// AXIVION FILE Style AutosarC++19_03-A2.11.1: allow volatile ElementType then e.g. DMA-buffers can be volatile
7
8#include <algorithm>
9#include <array>
10#include <cstddef>
11#include <type_traits>
12
13namespace imt {
14namespace base {
15namespace core {
16namespace util {
17
24template<typename ElementType>
25class Span final {
26
27public:
28
32 using SpanElementType = ElementType;
33
37 constexpr Span() noexcept :
38 Span {nullptr, 0U} {
39 }
40
46 constexpr Span(ElementType* const pFirstElement, size_t const elementCount) noexcept :
47 m_pFirstElement {pFirstElement},
48 m_elementCount {elementCount} {
49 }
50
56 constexpr Span(ElementType& firstElement, size_t const elementCount) noexcept :
57 Span {&firstElement, elementCount} {
58 }
59
67 template<typename ArrayElementType, size_t ArraySize, typename = std::enable_if_t<std::is_convertible<ArrayElementType (*)[], ElementType (*)[]>::value>> // AXIVION Line AutosarC++19_03-A18.1.1: is not using C-style array but a conversion check
68 constexpr Span(std::array<ArrayElementType, ArraySize>& array) noexcept :
69 Span {array.data(), array.size()} {
70 }
71
79 template<typename ArrayElementType, size_t ArraySize, typename = std::enable_if_t<std::is_convertible<ArrayElementType const (*)[], ElementType (*)[]>::value>> // AXIVION Line AutosarC++19_03-A18.1.1: is not using C-style array but a conversion check
80 constexpr Span(std::array<ArrayElementType, ArraySize> const& array) noexcept :
81 Span {array.data(), array.size()} {
82 }
83
92 template<typename ArrayElementType, size_t ArraySize, typename = std::enable_if_t<std::is_convertible<ArrayElementType (*)[], ElementType (*)[]>::value>> // AXIVION Line AutosarC++19_03-A18.1.1: is not using C-style array but a conversion check
93 constexpr Span(std::array<ArrayElementType, ArraySize>& array, size_t const elementCount) noexcept :
94 Span {array.data(), std::min(elementCount, array.size())} {
95 }
96
105 template<typename ArrayElementType, size_t ArraySize, typename = std::enable_if_t<std::is_convertible<ArrayElementType const (*)[], ElementType (*)[]>::value>> // AXIVION Line AutosarC++19_03-A18.1.1: is not using C-style array but a conversion check
106 constexpr Span(std::array<ArrayElementType, ArraySize> const& array, size_t const elementCount) noexcept :
107 Span {array.data(), std::min(elementCount, array.size())} {
108 }
109
114 template<typename OtherElementType, typename = std::enable_if_t<std::is_convertible<OtherElementType (*)[], ElementType (*)[]>::value>> // AXIVION Line AutosarC++19_03-A18.1.1: is not using C-style array but a conversion check
115 constexpr Span(Span<OtherElementType> const& other) noexcept :
116 Span {other.data(), other.size()} {
117 }
118
122 constexpr ElementType* data() const noexcept {
123 return m_pFirstElement; // AXIVION Line AutosarC++19_03-M9.3.1: (Returning non-const pointer to class data) see std::span and also UnitTest testSpan_validationAxivionSuppressionForMemberFuncData
124 }
125
129 ElementType* begin() noexcept {
130 return m_pFirstElement;
131 }
132
136 ElementType* end() noexcept {
137 return m_pFirstElement + m_elementCount; // AXIVION Line AutosarC++19_03-M5.0.15: Pointer arithmetic required
138 }
139
143 ElementType const* cbegin() const noexcept {
144 return m_pFirstElement;
145 }
146
150 ElementType const* cend() const noexcept {
151 return m_pFirstElement + m_elementCount; // AXIVION Line AutosarC++19_03-M5.0.15: Pointer arithmetic required
152 }
153
157 constexpr size_t size() const noexcept {
158 return m_elementCount;
159 }
160
166 constexpr ElementType& operator[](size_t const idx) const noexcept {
167 return *(m_pFirstElement + idx); // AXIVION Line AutosarC++19_03-M5.0.15: Pointer arithmetic required
168 }
169
174 constexpr bool empty() const noexcept {
175 return m_elementCount == 0U;
176 }
177
178private:
179
180 ElementType* m_pFirstElement; // AXIVION Line AutosarC++19_03-M0.1.4: false positive, is not only reference once
181 size_t m_elementCount; // AXIVION Line AutosarC++19_03-M0.1.4: false positive, is not only reference once
182};
183
184// AXIVION Next Line AutosarC++19_03-A16.0.1: required to support projects who want to use the C++17 feature template argument deduction
185#if __cplusplus >= 201703L
186// provide class template argument deduction guide
187template<typename ElementType, size_t ArraySize>
188Span(std::array<ElementType, ArraySize>&) -> Span<ElementType>;
189
190template<typename ElementType, size_t ArraySize>
191Span(std::array<ElementType, ArraySize> const&) -> Span<ElementType const>;
192
193template<typename ArrayElementType, size_t ArraySize>
194Span(std::array<ArrayElementType, ArraySize>& array, size_t const elementCount) -> Span<ArrayElementType>;
195
196template<typename ArrayElementType, size_t ArraySize>
197Span(std::array<ArrayElementType, ArraySize> const& array, size_t const elementCount) -> Span<ArrayElementType const>;
198#endif
199
200} // namespace util
201} // namespace core
202} // namespace base
203} // namespace imt
204
205#endif // IMT_BASE_CORE_UTIL_SPAN_H
This template class provides a small wrapper around a data buffer.
Definition Span.h:25
constexpr ElementType * data() const noexcept
Definition Span.h:122
ElementType SpanElementType
The element type used by the span template instance.
Definition Span.h:32
constexpr Span(ElementType &firstElement, size_t const elementCount) noexcept
Constructs a span from a reference to the first element and the number of elements.
Definition Span.h:56
constexpr Span(ElementType *const pFirstElement, size_t const elementCount) noexcept
Constructs a span from a pointer to the first element and the number of elements.
Definition Span.h:46
constexpr bool empty() const noexcept
Checks if the span is empty.
Definition Span.h:174
constexpr Span(std::array< ArrayElementType, ArraySize > &array) noexcept
Constructs a span from an array reference.
Definition Span.h:68
constexpr Span(std::array< ArrayElementType, ArraySize > const &array) noexcept
Constructs a span from a const array reference.
Definition Span.h:80
ElementType const * cend() const noexcept
Definition Span.h:150
ElementType * begin() noexcept
Definition Span.h:129
constexpr Span(Span< OtherElementType > const &other) noexcept
Copy constructor from different cv-qualified ElementType.
Definition Span.h:115
ElementType * end() noexcept
Definition Span.h:136
constexpr Span(std::array< ArrayElementType, ArraySize > &array, size_t const elementCount) noexcept
Constructs a span from an array reference with an additional element count.
Definition Span.h:93
constexpr Span() noexcept
Constructs an empty span.
Definition Span.h:37
constexpr size_t size() const noexcept
Definition Span.h:157
constexpr ElementType & operator[](size_t const idx) const noexcept
Indexing operator.
Definition Span.h:166
constexpr Span(std::array< ArrayElementType, ArraySize > const &array, size_t const elementCount) noexcept
Constructs a span from an const array reference with an additional element count.
Definition Span.h:106
ElementType const * cbegin() const noexcept
Definition Span.h:143
This is a application specific file which is used to configure Imt.Base.Core.Math.