#ifndef SkTArray_DEFINED
#define SkTArray_DEFINED
#include "include/private/base/SkASAN.h"
#include "include/private/base/SkAlignedStorage.h"
#include "include/private/base/SkAssert.h"
#include "include/private/base/SkAttributes.h"
#include "include/private/base/SkContainers.h"
#include "include/private/base/SkDebug.h"
#include "include/private/base/SkMalloc.h"
#include "include/private/base/SkMath.h"
#include "include/private/base/SkSpan_impl.h"
#include "include/private/base/SkTo.h"
#include "include/private/base/SkTypeTraits.h"
#include <algorithm>
#include <climits>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <initializer_list>
#include <new>
#include <utility>
namespace skia_private {
template <typename T, bool MEM_MOVE = sk_is_trivially_relocatable_v<T>> class TArray {
public:
using value_type = T;
TArray() : … { … }
explicit TArray(int reserveCount) : … { … }
TArray(const TArray& that) : … { … }
TArray(TArray&& that) { … }
TArray(const T* array, int count) { … }
TArray(SkSpan<const T> data) : … { … }
TArray(std::initializer_list<T> data) : … { … }
TArray& operator=(const TArray& that) { … }
TArray& operator=(TArray&& that) { … }
~TArray() { … }
void reset(int n) { … }
void reset(const T* array, int count) { … }
void reserve(int n) { … }
void reserve_exact(int n) { … }
void removeShuffle(int n) { … }
bool empty() const { … }
T& push_back() { … }
T& push_back(const T& t) { … }
T& push_back(T&& t) { … }
template <typename... Args> T& emplace_back(Args&&... args) { … }
T* push_back_n(int n) { … }
T* push_back_n(int n, const T& t) { … }
T* push_back_n(int n, const T t[]) { … }
T* move_back_n(int n, T* t) { … }
void pop_back() { … }
void pop_back_n(int n) { … }
void resize_back(int newCount) { … }
void swap(TArray& that) { … }
void move_back(TArray& that) { … }
T* begin() { … }
const T* begin() const { … }
T* end() { … }
const T* end() const { … }
T* data() { … }
const T* data() const { … }
int size() const { … }
size_t size_bytes() const { … }
void resize(size_t count) { … }
void clear() { … }
void shrink_to_fit() { … }
T& operator[] (int i) { … }
const T& operator[] (int i) const { … }
T& at(int i) { … }
const T& at(int i) const { … }
T& front() { … }
const T& front() const { … }
T& back() { … }
const T& back() const { … }
T& fromBack(int i) { … }
const T& fromBack(int i) const { … }
bool operator==(const TArray<T, MEM_MOVE>& right) const { … }
bool operator!=(const TArray<T, MEM_MOVE>& right) const { … }
int capacity() const { … }
protected:
template <int InitialCapacity>
TArray(SkAlignedSTStorage<InitialCapacity, T>* storage, int size = 0) { … }
template <int InitialCapacity>
TArray(const T* array, int size, SkAlignedSTStorage<InitialCapacity, T>* storage)
: TArray{ … }
template <int InitialCapacity>
TArray(SkSpan<const T> data, SkAlignedSTStorage<InitialCapacity, T>* storage)
: TArray{ … }
private:
static constexpr double kExactFit = 1.0;
static constexpr double kGrowing = 1.5;
static constexpr int kMinHeapAllocCount = 8;
static_assert(SkIsPow2(kMinHeapAllocCount), "min alloc count not power of two.");
static constexpr int kMaxCapacity = SkToInt(std::min(SIZE_MAX / sizeof(T), (size_t)INT_MAX));
void setDataFromBytes(SkSpan<std::byte> allocation) { … }
void setData(SkSpan<T> array) { … }
void unpoison() { … }
void poison() { … }
void changeSize(int n) { … }
SK_CLANG_NO_SANITIZE("cfi")
static T* TCast(void* buffer) { … }
static size_t Bytes(int n) { … }
static SkSpan<std::byte> Allocate(int capacity, double growthFactor = 1.0) { … }
void initData(int count) { … }
void destroyAll() { … }
void copy(const T* src) { … }
void move(int dst, int src) { … }
void move(void* dst) { … }
void* push_back_raw(int n) { … }
template <typename... Args>
SK_ALWAYS_INLINE T* growAndConstructAtEnd(Args&&... args) { … }
void checkRealloc(int delta, double growthFactor) { … }
SkSpan<std::byte> preallocateNewData(int delta, double growthFactor) { … }
void installDataAndUpdateCapacity(SkSpan<std::byte> allocation) { … }
T* fData{nullptr};
int fSize{0};
uint32_t fOwnMemory : 1;
uint32_t fCapacity : 31;
#ifdef SK_SANITIZE_ADDRESS
bool fPoisoned = false;
#endif
};
template <typename T, bool M> static inline void swap(TArray<T, M>& a, TArray<T, M>& b) { … }
template <int Nreq, typename T, bool MEM_MOVE = sk_is_trivially_relocatable_v<T>>
class STArray : private SkAlignedSTStorage<SkContainerAllocator::RoundUp<T>(Nreq), T>,
public TArray<T, MEM_MOVE> {
static constexpr int N = SkContainerAllocator::RoundUp<T>(Nreq);
static_assert(Nreq > 0);
static_assert(N >= Nreq);
using Storage = SkAlignedSTStorage<N,T>;
public:
STArray()
: … { … }
STArray(const T* array, int count)
: … { … }
STArray(SkSpan<const T> data)
: … { … }
STArray(std::initializer_list<T> data)
: … { … }
explicit STArray(int reserveCount)
: … { … }
STArray(const STArray& that)
: … { … }
explicit STArray(const TArray<T, MEM_MOVE>& that)
: … { … }
STArray(STArray&& that)
: … { … }
explicit STArray(TArray<T, MEM_MOVE>&& that)
: … { … }
STArray& operator=(const STArray& that) { … }
STArray& operator=(const TArray<T, MEM_MOVE>& that) { … }
STArray& operator=(STArray&& that) { … }
STArray& operator=(TArray<T, MEM_MOVE>&& that) { … }
using TArray<T, MEM_MOVE>::data;
using TArray<T, MEM_MOVE>::size;
};
}
#endif