cesium-native 0.46.0
Loading...
Searching...
No Matches
PropertyArrayView.h
1#pragma once
2
3#include <CesiumGltf/PropertyType.h>
4#include <CesiumGltf/getOffsetFromOffsetsBuffer.h>
5#include <CesiumUtility/SpanHelper.h>
6
7#include <cstddef>
8#include <cstring>
9#include <span>
10#include <vector>
11
12namespace CesiumGltf {
13
21template <typename ElementType> class PropertyArrayView {
22public:
26 PropertyArrayView() : _values{} {}
27
33 PropertyArrayView(const std::span<const std::byte>& buffer) noexcept
35
39 const ElementType& operator[](int64_t index) const noexcept {
40 return this->_values[static_cast<size_t>(index)];
41 }
42
46 int64_t size() const noexcept {
47 return static_cast<int64_t>(this->_values.size());
48 }
49
53 auto begin() { return this->_values.begin(); }
57 auto end() { return this->_values.end(); }
59 auto begin() const { return this->_values.begin(); }
61 auto end() const { return this->_values.end(); }
62
63private:
64 std::span<const ElementType> _values;
65};
66
77template <typename ElementType> class PropertyArrayCopy {
78public:
82 PropertyArrayCopy() : _storage{}, _view() {}
83
89 PropertyArrayCopy(const std::vector<ElementType>& values) noexcept
90 : _storage(), _view() {
91 size_t numberOfElements = values.size();
92 size_t sizeInBytes = numberOfElements * sizeof(ElementType);
93 this->_storage.resize(sizeInBytes);
94 std::memcpy(
95 this->_storage.data(),
96 reinterpret_cast<const std::byte*>(values.data()),
97 sizeInBytes);
98 // NOLINTNEXTLINE(cppcoreguidelines-prefer-member-initializer)
99 this->_view = PropertyArrayView<ElementType>(this->_storage);
100 }
101
106
109 PropertyArrayCopy(std::vector<std::byte>&& buffer) noexcept
110 : _storage(std::move(buffer)), _view(this->_storage) {}
111
114 : _storage(rhs._storage), _view(this->_storage) {}
115
118 this->_storage = rhs._storage;
119 this->_view = PropertyArrayView<ElementType>(this->_storage);
120 return *this;
121 }
122
129 const ElementType& operator[](int64_t index) const noexcept {
130 return this->_view[index];
131 }
132
134 int64_t size() const noexcept { return this->_view.size(); }
135
137 auto begin() { return this->_view.begin(); }
139 auto end() { return this->_view.end(); }
141 auto begin() const { return this->_view.begin(); }
143 auto end() const { return this->_view.end(); }
144
148 const PropertyArrayView<ElementType>& view() const { return this->_view; }
149
158 toViewAndExternalBuffer(std::vector<std::byte>& outBuffer) && {
159 outBuffer = std::move(this->_storage);
160 PropertyArrayView<ElementType> result = std::move(this->_view);
161 this->_view = PropertyArrayView<ElementType>();
162 return result;
163 }
164
165private:
166 std::vector<std::byte> _storage;
168};
169
177template <> class PropertyArrayView<bool> {
178public:
182 PropertyArrayView() : _values{}, _bitOffset{0}, _size{0} {}
183
193 const std::span<const std::byte>& buffer,
194 int64_t bitOffset,
195 int64_t size) noexcept
196 : _values{buffer}, _bitOffset{bitOffset}, _size{size} {}
197
201 bool operator[](int64_t index) const noexcept {
202 index += _bitOffset;
203 const int64_t byteIndex = index / 8;
204 const int64_t bitIndex = index % 8;
205 const int bitValue =
206 static_cast<int>(_values[static_cast<size_t>(byteIndex)] >> bitIndex) &
207 1;
208 return bitValue == 1;
209 }
210
214 int64_t size() const noexcept { return _size; }
215
216private:
217 std::span<const std::byte> _values;
218 int64_t _bitOffset;
219 int64_t _size;
220};
221
229template <> class PropertyArrayView<std::string_view> {
230public:
235 : _values{},
236 _stringOffsets{},
237 _stringOffsetType{PropertyComponentType::None},
238 _size{0} {}
239
249 const std::span<const std::byte>& values,
250 const std::span<const std::byte>& stringOffsets,
251 PropertyComponentType stringOffsetType,
252 int64_t size) noexcept
253 : _values{values},
254 _stringOffsets{stringOffsets},
255 _stringOffsetType{stringOffsetType},
256 _size{size} {}
257
261 std::string_view operator[](int64_t index) const noexcept {
262 const size_t currentOffset = getOffsetFromOffsetsBuffer(
263 static_cast<size_t>(index),
264 _stringOffsets,
265 _stringOffsetType);
266 const size_t nextOffset = getOffsetFromOffsetsBuffer(
267 static_cast<size_t>(index + 1),
268 _stringOffsets,
269 _stringOffsetType);
270 return std::string_view(
271 reinterpret_cast<const char*>(_values.data() + currentOffset),
272 (nextOffset - currentOffset));
273 }
274
278 int64_t size() const noexcept { return _size; }
279
280private:
281 std::span<const std::byte> _values;
282 std::span<const std::byte> _stringOffsets;
283 PropertyComponentType _stringOffsetType;
284 int64_t _size;
285};
286
290template <typename T>
292 const PropertyArrayView<T>& lhs,
293 const PropertyArrayView<T>& rhs) {
294 int64_t size = lhs.size();
295 if (size != rhs.size()) {
296 return false;
297 }
298
299 for (int64_t i = 0; i < size; ++i) {
300 if (lhs[i] != rhs[i]) {
301 return false;
302 }
303 }
304
305 return true;
306}
307
310template <typename T>
312 const PropertyArrayView<T>& lhs,
313 const PropertyArrayCopy<T>& rhs) {
314 return lhs == PropertyArrayView(rhs);
315}
316
319template <typename T>
321 const PropertyArrayCopy<T>& lhs,
322 const PropertyArrayView<T>& rhs) {
323 return lhs.view() == rhs;
324}
325
328template <typename T>
330 const PropertyArrayCopy<T>& lhs,
331 const PropertyArrayCopy<T>& rhs) {
332 return lhs.view() == rhs.view();
333}
334
338template <typename T>
340 const PropertyArrayView<T>& lhs,
341 const PropertyArrayView<T>& rhs) {
342 return !(lhs == rhs);
343}
344
348template <typename T>
350 const PropertyArrayView<T>& lhs,
351 const PropertyArrayCopy<T>& rhs) {
352 return !(lhs == rhs);
353}
354
358template <typename T>
360 const PropertyArrayCopy<T>& lhs,
361 const PropertyArrayView<T>& rhs) {
362 return !(lhs == rhs);
363}
364
368template <typename T>
370 const PropertyArrayCopy<T>& lhs,
371 const PropertyArrayCopy<T>& rhs) {
372 return !(lhs == rhs);
373}
374
375} // namespace CesiumGltf
A copy of an array element of a PropertyTableProperty or PropertyTextureProperty.
PropertyArrayCopy & operator=(const PropertyArrayCopy &rhs)
Copy assignment operator.
PropertyArrayCopy(const std::vector< ElementType > &values) noexcept
Constructs an array view from a buffer.
auto begin() const
The begin iterator.
auto end() const
The end iterator.
auto begin()
The begin iterator.
PropertyArrayCopy & operator=(PropertyArrayCopy &&)=default
Default move assignment operator.
PropertyArrayCopy(std::vector< std::byte > &&buffer) noexcept
Creates a new PropertyArrayCopy directly from a buffer of bytes, which will be moved into this copy.
PropertyArrayCopy(const PropertyArrayCopy &rhs)
Copy constructor.
auto end()
The end iterator.
int64_t size() const noexcept
The number of elements in this array.
const ElementType & operator[](int64_t index) const noexcept
Returns the ElementType at the given index from this copy.
const PropertyArrayView< ElementType > & view() const
Obtains a PropertyArrayView over the contents of this copy.
PropertyArrayCopy(PropertyArrayCopy &&)=default
Default move constructor.
PropertyArrayCopy()
Constructs an empty array view.
PropertyArrayView< ElementType > toViewAndExternalBuffer(std::vector< std::byte > &outBuffer) &&
Obtains a buffer and view from the copied data, leaving this PropertyArrayCopy empty.
PropertyArrayView()
Constructs an empty array view.
PropertyArrayView(const std::span< const std::byte > &buffer, int64_t bitOffset, int64_t size) noexcept
Constructs an array view from a buffer.
bool operator[](int64_t index) const noexcept
Obtains the element in the array at the given index.
int64_t size() const noexcept
The number of entries in the array.
std::string_view operator[](int64_t index) const noexcept
Obtains an std::string_view for the element at the given index.
PropertyArrayView(const std::span< const std::byte > &values, const std::span< const std::byte > &stringOffsets, PropertyComponentType stringOffsetType, int64_t size) noexcept
Constructs an array view from buffers and their information.
int64_t size() const noexcept
The number of elements in this array.
PropertyArrayView()
Constructs an empty array view.
A view on an array element of a PropertyTableProperty or PropertyTextureProperty.
auto end()
The end iterator.
const ElementType & operator[](int64_t index) const noexcept
Accesses the element of this array at the given index.
auto end() const
The end iterator.
PropertyArrayView(const std::span< const std::byte > &buffer) noexcept
Constructs an array view from a buffer.
PropertyArrayView()
Constructs an empty array view.
auto begin() const
The begin iterator.
auto begin()
The begin iterator.
int64_t size() const noexcept
The number of elements in this array.
Classes for working with glTF models.
PropertyComponentType
The possible types of a property component.
bool operator==(const PropertyArrayView< T > &lhs, const PropertyArrayView< T > &rhs)
Compares two PropertyArrayView instances by comparing their values. If the two arrays aren't the same...
bool operator!=(const PropertyArrayView< T > &lhs, const PropertyArrayView< T > &rhs)
Compares two PropertyArrayView instances and returns the inverse.
std::span< To > reintepretCastSpan(const std::span< From > &from) noexcept
This function converts between span types. This function has the same rules with C++ reintepret_cast ...
Definition SpanHelper.h:13
STL namespace.