3#include <CesiumGltf/PropertyType.h>
4#include <CesiumGltf/getOffsetFromOffsetsBuffer.h>
5#include <CesiumUtility/SpanHelper.h>
39 const ElementType&
operator[](int64_t index)
const noexcept {
40 return this->_values[
static_cast<size_t>(index)];
46 int64_t
size() const noexcept {
47 return static_cast<int64_t
>(this->_values.size());
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(); }
64 std::span<const ElementType> _values;
90 : _storage(), _view() {
91 size_t numberOfElements = values.size();
92 size_t sizeInBytes = numberOfElements *
sizeof(ElementType);
93 this->_storage.resize(sizeInBytes);
95 this->_storage.data(),
96 reinterpret_cast<const std::byte*
>(values.data()),
110 : _storage(std::move(buffer)), _view(this->_storage) {}
114 : _storage(rhs._storage), _view(this->_storage) {}
118 this->_storage = rhs._storage;
129 const ElementType&
operator[](int64_t index)
const noexcept {
130 return this->_view[index];
134 int64_t
size() const noexcept {
return this->_view.size(); }
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(); }
159 outBuffer = std::move(this->_storage);
166 std::vector<std::byte> _storage;
193 const std::span<const std::byte>& buffer,
195 int64_t
size) noexcept
196 : _values{buffer}, _bitOffset{bitOffset}, _size{
size} {}
203 const int64_t byteIndex = index / 8;
204 const int64_t bitIndex = index % 8;
206 static_cast<int>(_values[
static_cast<size_t>(byteIndex)] >> bitIndex) &
208 return bitValue == 1;
214 int64_t
size() const noexcept {
return _size; }
217 std::span<const std::byte> _values;
249 const std::span<const std::byte>& values,
250 const std::span<const std::byte>& stringOffsets,
252 int64_t
size) noexcept
254 _stringOffsets{stringOffsets},
255 _stringOffsetType{stringOffsetType},
262 const size_t currentOffset = getOffsetFromOffsetsBuffer(
263 static_cast<size_t>(index),
266 const size_t nextOffset = getOffsetFromOffsetsBuffer(
267 static_cast<size_t>(index + 1),
270 return std::string_view(
271 reinterpret_cast<const char*
>(_values.data() + currentOffset),
272 (nextOffset - currentOffset));
278 int64_t
size() const noexcept {
return _size; }
281 std::span<const std::byte> _values;
282 std::span<const std::byte> _stringOffsets;
294 int64_t size = lhs.
size();
295 if (size != rhs.
size()) {
299 for (int64_t i = 0; i < size; ++i) {
300 if (lhs[i] != rhs[i]) {
323 return lhs.
view() == rhs;
342 return !(lhs == rhs);
352 return !(lhs == rhs);
362 return !(lhs == rhs);
372 return !(lhs == rhs);
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 ...