4#include "../Foundation/Assert.h"
5#include "../Foundation/Span.h"
11enum class SegmentAllocator
20struct alignas(uint64_t) SegmentHeader
22 static constexpr uint32_t MaxCapacity = (~static_cast<uint32_t>(0)) >> 1;
24 SegmentHeader(
uint32_t capacity = 0, SegmentAllocator allocator = SegmentAllocator::Global)
27 allocatorType =
static_cast<uint32_t>(allocator);
28 capacityBytes = capacity;
29 hasInlineData = capacity > 0;
37struct SegmentHeaderOffset
45struct SegmentSelfRelativePointer :
protected SegmentHeaderOffset
49 SC_COMPILER_FORCE_INLINE const T* data() const noexcept {
return offset == 0 ? nullptr : toPtr(toOffset(
this) + offset); }
53 struct InlineData :
public SegmentHeaderOffset
62 SC_COMPILER_FORCE_INLINE static auto toOffset(
const volatile void* src)
noexcept {
return reinterpret_cast<PtrOffset
>(src); }
64 SC_COMPILER_FORCE_INLINE void setData(T* mem)
noexcept { offset = mem ==
nullptr ? 0 : toOffset(mem) - toOffset(
this); }
65 SC_COMPILER_FORCE_INLINE T* getInlineData() noexcept {
return (T*)
reinterpret_cast<volatile InlineData*
>(
this)->data; }
66 SC_COMPILER_FORCE_INLINE auto getInlineCapacity() noexcept {
return reinterpret_cast<volatile InlineData*
>(
this)->capacity; }
75 inline static void destruct(Span<T> data)
noexcept;
77 template <
typename U>
inline static void copyConstructAs(Span<T> data, Span<const T> value)
noexcept;
78 template <
typename U>
inline static void copyConstruct(Span<T> data,
const T* src)
noexcept;
79 template <
typename U>
inline static void copyAssign(Span<T> data,
const T* src)
noexcept;
80 template <
typename U>
inline static void copyInsert(Span<T> data, Span<const T> values)
noexcept;
81 template <
typename U>
inline static void moveConstruct(Span<T> data, T* src)
noexcept;
82 template <
typename U>
inline static void moveAssign(Span<T> data, T* src)
noexcept;
84 inline static void remove(Span<T> data,
size_t numElements)
noexcept;
88template <
typename ParentSegment,
typename CommonParent,
int N = 0,
89 SegmentAllocator Allocator = SegmentAllocator::ThreadLocal>
90struct SegmentCustom :
public ParentSegment
92 SegmentCustom() : ParentSegment(N, Allocator) {}
93 SegmentCustom(
const CommonParent& other) : SegmentCustom() { CommonParent::operator=(other); }
94 SegmentCustom(CommonParent&& other) : SegmentCustom() { CommonParent::operator=(
move(other)); }
96 SegmentCustom(
const SegmentCustom& other) : SegmentCustom() { ParentSegment::operator=(other); }
97 SegmentCustom(SegmentCustom&& other) : SegmentCustom() { ParentSegment::operator=(
move(other)); }
99 SegmentCustom& operator=(
const SegmentCustom& other) { ParentSegment::operator=(other);
return *
this; }
100 SegmentCustom& operator=(SegmentCustom&& other) { ParentSegment::operator=(
move(other));
return *
this; }
111template <
typename VTable>
115 using T =
typename VTable::Type;
116 Segment(
uint32_t capacityInBytes, SegmentAllocator allocator = SegmentAllocator::Global)
noexcept;
135 [[nodiscard]]
bool resize(
size_t newSize,
const T& value = T()) noexcept;
138 [[nodiscard]]
bool reserve(
size_t capacity) noexcept;
141 template <typename U = T>
142 [[nodiscard]]
bool append(
Span<const U> span) noexcept;
145 template <typename VTable2>
146 [[nodiscard]]
bool appendMove(
Segment<VTable2>&& other) noexcept;
150 [[nodiscard]]
bool shrink_to_fit() noexcept;
153 void clear() noexcept;
157 template <typename U = T>
158 [[nodiscard]]
bool assign(
Span<const U> span) noexcept;
162 template <typename VTable2>
163 [[nodiscard]]
bool assignMove(
Segment<VTable2>&& other) noexcept;
166 [[nodiscard]]
bool push_back(const T& value) noexcept {
return resize(size() + 1, value); }
172 [[nodiscard]]
bool push_front(
const T& value)
noexcept {
return insert(0, value); }
177 [[nodiscard]]
bool pop_back(T* removedValue =
nullptr) noexcept;
182 [[nodiscard]]
bool pop_front(T* removedValue =
nullptr) noexcept;
185 [[nodiscard]] T* begin() noexcept SC_LANGUAGE_LIFETIME_BOUND {
return data(); }
186 [[nodiscard]]
const T* begin() const noexcept SC_LANGUAGE_LIFETIME_BOUND {
return data(); }
187 [[nodiscard]] T* end() noexcept SC_LANGUAGE_LIFETIME_BOUND {
return data() + size(); }
188 [[nodiscard]]
const T* end() const noexcept SC_LANGUAGE_LIFETIME_BOUND {
return data() + size(); }
190 [[nodiscard]] T& back() noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_RELEASE(not isEmpty());
return *(data() + size() - 1);}
191 [[nodiscard]] T& front() noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_RELEASE(not isEmpty());
return *data();}
192 [[nodiscard]]
const T& back() const noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_RELEASE(not isEmpty());
return *(data() + size() - 1);}
193 [[nodiscard]]
const T& front() const noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_RELEASE(not isEmpty());
return *data();}
195 [[nodiscard]] T& operator[](
size_t idx)
noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_DEBUG(idx < size());
return *(data() + idx);}
196 [[nodiscard]]
const T& operator[](
size_t idx)
const noexcept SC_LANGUAGE_LIFETIME_BOUND {
SC_ASSERT_DEBUG(idx < size());
return *(data() + idx);}
200 [[nodiscard]]
bool isEmpty() const noexcept {
return VTable::header.sizeBytes == 0; }
203 [[nodiscard]]
Span<T> toSpan() noexcept SC_LANGUAGE_LIFETIME_BOUND {
return {data(), size()}; }
209 [[nodiscard]]
size_t size() const noexcept {
return VTable::header.sizeBytes /
sizeof(T); }
212 [[nodiscard]]
size_t capacity() const noexcept {
return VTable::header.capacityBytes /
sizeof(T); }
218 [[nodiscard]]
bool removeRange(
size_t start,
size_t length)
noexcept;
223 [[nodiscard]]
bool removeAt(
size_t index)
noexcept {
return removeRange(index, 1); }
232 template <
typename VTable2>
#define SC_ASSERT_DEBUG(e)
Assert expression e to be true.
Definition: Assert.h:82
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
#define SC_ASSERT_RELEASE(e)
Assert expression e to be true.
Definition: Assert.h:66
#define SC_COMPILER_FORCE_INLINE
Macro for forcing inline functions.
Definition: Compiler.h:46
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
unsigned long long uint64_t
Platform independent (8) bytes unsigned int.
Definition: PrimitiveTypes.h:42
unsigned long size_t
Platform independent unsigned size type.
Definition: PrimitiveTypes.h:56
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
A slice of contiguous memory, prefixed by and header containing size and capacity.
Definition: Segment.h:113
size_t size() const noexcept
Returns current size.
Definition: Segment.h:209
bool resize(size_t newSize, const T &value=T()) noexcept
Re-allocates to the requested new size, preserving its contents and setting new items to value.
size_t capacity() const noexcept
Returns current capacity (always >= of size())
Definition: Segment.h:212
Span< T > toSpan() noexcept SC_LANGUAGE_LIFETIME_BOUND
Obtains a Span of internal contents.
Definition: Segment.h:203
bool isEmpty() const noexcept
Check if is empty (size() == 0)
Definition: Segment.h:200
bool removeRange(size_t start, size_t length) noexcept
Removes the range [start, start + length] from the segment.
bool push_front(const T &value) noexcept
Appends a single element to the start of the segment.
Definition: Segment.h:172
bool removeAt(size_t index) noexcept
Removes the element at index.
Definition: Segment.h:223
bool pop_back(T *removedValue=nullptr) noexcept
Removes the last element of the segment.
bool push_back(T &&value) noexcept
Moves a single element to the end of the segment.
bool insert(size_t index, Span< const T > data) noexcept
Insert a span at the given index.
bool resizeWithoutInitializing(size_t newSize) noexcept
Re-allocates to the requested new size, preserving its contents.
Span< const T > toSpanConst() const noexcept SC_LANGUAGE_LIFETIME_BOUND
Obtains a Span of internal contents.
Definition: Segment.h:206
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32