Sane C++ Libraries
C++ Platform Abstraction Libraries
Array.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Containers/Vector.h" // ObjectVTable<T>
5
6namespace SC
7{
8namespace detail
9{
10template <typename T, int N>
11struct ArrayVTable : public ObjectVTable<T>
12{
13 static constexpr bool IsArray = true;
14
15 T* data() { return items; }
16 const T* data() const { return items; }
17 void setData(T*) {}
18 T* getInlineData() { return items; }
19 uint32_t getInlineCapacity() { return header.capacityBytes; }
20
21 static constexpr bool isInline() { return true; }
22
23 ArrayVTable(uint32_t capacity = 0, SegmentAllocator allocator = SegmentAllocator::Global)
24 : header(capacity, allocator)
25 {}
26 ~ArrayVTable() {}
27
28 SegmentHeader header;
29 union
30 {
31 T items[N];
32 };
33};
34
35} // namespace detail
38
49template <typename T, int N>
50struct Array : public Segment<detail::ArrayVTable<T, N>>
51{
53 Array() : Parent(sizeof(T) * N){};
54 // clang-format off
55 Array(std::initializer_list<T> list) : Array() { SC_ASSERT_RELEASE(Parent::template assign<T>({list.begin(), list.size()})); }
56 Array(const Array& other) : Array() { SC_ASSERT_RELEASE(Parent::append(other.toSpanConst())); }
57 Array(Array&& other) : Array() { SC_ASSERT_RELEASE(Parent::appendMove(move(other))); }
58 Array& operator=(const Array& other) { SC_ASSERT_RELEASE(Parent::assign(other.toSpanConst())); return *this; }
59 Array& operator=(Array&& other) { SC_ASSERT_RELEASE(Parent::assignMove(move(other))); return *this; }
60 template <int M>
61 Array(const Array<T, M>& other) : Array() { SC_ASSERT_RELEASE(Parent::assign(other.toSpanConst()));}
62 template <int M>
64 template <int M>
65 Array& operator=(const Array<T, M>& other) { SC_ASSERT_RELEASE(Parent::assign(other.toSpanConst())); return *this; }
66 template <int M>
67 Array& operator=(Array<T, M>&& other) { SC_ASSERT_RELEASE(Parent::assignMove(move(other))); return *this; }
69 template <typename U>
71 // clang-format on
72
79 template <typename U>
80 [[nodiscard]] bool contains(const U& value, size_t* index = nullptr) const
81 {
82 return Parent::toSpanConst().contains(value, index);
83 }
84
90 template <typename Lambda>
91 [[nodiscard]] bool find(Lambda&& lambda, size_t* index = nullptr) const
92 {
93 return Parent::toSpanConst().find(move(lambda), index);
94 }
95
100 template <typename Lambda>
101 [[nodiscard]] bool removeAll(Lambda&& criteria)
102 {
103 T* itBeg = Parent::begin();
104 T* itEnd = Parent::end();
105 T* it = Algorithms::removeIf(itBeg, itEnd, forward<Lambda>(criteria));
106
107 const size_t numBytes = static_cast<size_t>(itEnd - it) * sizeof(T);
108 const size_t offBytes = static_cast<size_t>(it - itBeg) * sizeof(T);
109 detail::VectorVTable<T>::destruct(Parent::getData(), offBytes, numBytes);
110 Parent::header.sizeBytes -= static_cast<decltype(Parent::header.sizeBytes)>(numBytes);
111 return it != itEnd;
112 }
113
118 template <typename U>
119 [[nodiscard]] bool remove(const U& value)
120 {
121 return removeAll([&](auto& item) { return item == value; });
122 }
123};
124
126
127// Allows using this type across Plugin boundaries
128SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Array<char, 64>;
129SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Array<char, 128 * sizeof(native_char_t)>;
130SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Array<char, 255 * sizeof(native_char_t)>;
131SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Array<char, 512 * sizeof(native_char_t)>;
132SC_COMPILER_EXTERN template struct SC_COMPILER_EXPORT Array<char, 1024 * sizeof(native_char_t)>;
133} // namespace SC
ForwardIterator removeIf(ForwardIterator first, ForwardIterator last, UnaryPredicate &&predicate)
Removes all items in the given range, satisfying the given predicate.
Definition: AlgorithmRemove.h:22
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
#define SC_COMPILER_EXTERN
Define compiler-specific export macros for DLL visibility.
Definition: Compiler.h:74
#define SC_ASSERT_RELEASE(e)
Assert expression e to be true.
Definition: Assert.h:66
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
char native_char_t
The native char for the platform (wchar_t (4 bytes) on Windows, char (1 byte) everywhere else )
Definition: PrimitiveTypes.h:34
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
A contiguous sequence of elements kept inside its inline storage.
Definition: Array.h:51
bool removeAll(Lambda &&criteria)
Removes all items matching criteria given by Lambda.
Definition: Array.h:101
bool remove(const U &value)
Removes all values equal to value
Definition: Array.h:119
bool find(Lambda &&lambda, size_t *index=nullptr) const
Finds the first item in array matching criteria given by the lambda.
Definition: Array.h:91
bool contains(const U &value, size_t *index=nullptr) const
Check if the current array contains a given value.
Definition: Array.h:80
A slice of contiguous memory, prefixed by and header containing size and capacity.
Definition: Segment.h:113
bool appendMove(Segment< VTable2 > &&other) noexcept
bool append(Span< const U > span) noexcept
bool assignMove(Segment< VTable2 > &&other) noexcept
bool assign(Span< const U > span) noexcept
Span< const T > toSpanConst() const noexcept SC_LANGUAGE_LIFETIME_BOUND
Definition: Segment.h:206
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32