This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/BLI_vector_adaptor.hh
Campbell Barton c434782e3a File headers: SPDX License migration
Use a shorter/simpler license convention, stops the header taking so
much space.

Follow the SPDX license specification: https://spdx.org/licenses

- C/C++/objc/objc++
- Python
- Shell Scripts
- CMake, GNUmakefile

While most of the source tree has been included

- `./extern/` was left out.
- `./intern/cycles` & `./intern/atomic` are also excluded because they
  use different header conventions.

doc/license/SPDX-license-identifiers.txt has been added to list SPDX all
used identifiers.

See P2788 for the script that automated these edits.

Reviewed By: brecht, mont29, sergey

Ref D14069
2022-02-11 09:14:36 +11:00

89 lines
1.8 KiB
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
/** \file
* \ingroup bli
*
* A `blender::VectorAdaptor` is a container with a fixed maximum size and does not own the
* underlying memory. When an adaptor is constructed, you have to provide it with an uninitialized
* array that will be filled when elements are added to the vector. The vector adaptor is not able
* to grow. Therefore, it is undefined behavior to add more elements than fit into the provided
* buffer.
*/
#include "BLI_span.hh"
namespace blender {
template<typename T> class VectorAdaptor {
private:
T *begin_;
T *end_;
T *capacity_end_;
public:
VectorAdaptor() : begin_(nullptr), end_(nullptr), capacity_end_(nullptr)
{
}
VectorAdaptor(T *data, int64_t capacity, int64_t size = 0)
: begin_(data), end_(data + size), capacity_end_(data + capacity)
{
}
VectorAdaptor(MutableSpan<T> span) : VectorAdaptor(span.data(), span.size(), 0)
{
}
void append(const T &value)
{
BLI_assert(end_ < capacity_end_);
new (end_) T(value);
end_++;
}
void append(T &&value)
{
BLI_assert(end_ < capacity_end_);
new (end_) T(std::move(value));
end_++;
}
void append_n_times(const T &value, int64_t n)
{
BLI_assert(end_ + n <= capacity_end_);
uninitialized_fill_n(end_, n, value);
end_ += n;
}
void extend(Span<T> values)
{
BLI_assert(end_ + values.size() <= capacity_end_);
uninitialized_copy_n(values.data(), values.size(), end_);
end_ += values.size();
}
int64_t capacity() const
{
return capacity_end_ - begin_;
}
int64_t size() const
{
return end_ - begin_;
}
bool is_empty() const
{
return begin_ == end_;
}
bool is_full() const
{
return end_ == capacity_end_;
}
};
} // namespace blender