gencpp/project/dependencies/containers.hpp

620 lines
19 KiB
C++
Raw Normal View History

#ifdef GEN_INTELLISENSE_DIRECTIVES
# pragma once
# include "printing.hpp"
#endif
#pragma region Containers
template<class TType> struct RemoveConst { typedef TType Type; };
template<class TType> struct RemoveConst<const TType> { typedef TType Type; };
template<class TType> struct RemoveConst<const TType[]> { typedef TType Type[]; };
template<class TType, usize Size> struct RemoveConst<const TType[Size]> { typedef TType Type[Size]; };
template<class TType>
using TRemoveConst = typename RemoveConst<TType>::Type;
2024-11-30 10:14:47 -08:00
#pragma region Array
struct ArrayHeader;
template<class Type> struct Array;
template<class Type> Array<Type> array_init(AllocatorInfo allocator);
template<class Type> Array<Type> array_init_reserve(AllocatorInfo allocator, ssize capacity);
template<class Type> usize array_grow_formula(ssize value);
template<class Type> bool append(Array<Type>& array, Array<Type> other);
template<class Type> bool append(Array<Type>& array, Type value);
template<class Type> bool append(Array<Type>& array, Type* items, usize item_num);
template<class Type> bool append_at(Array<Type>& array, Type item, usize idx);
template<class Type> bool append_at(Array<Type>& array, Type* items, usize item_num, usize idx);
template<class Type> Type& back(Array<Type>& array);
template<class Type> void clear(Array<Type>& array);
template<class Type> bool fill(Array<Type>& array, usize begin, usize end, Type value);
template<class Type> void free(Array<Type>& array);
template<class Type> bool grow(Array<Type>& array, usize min_capacity);
template<class Type> usize num(Array<Type>& array);
template<class Type> void pop(Array<Type>& array);
template<class Type> void remove_at(Array<Type>& array, usize idx);
template<class Type> bool reserve(Array<Type>& array, usize new_capacity);
template<class Type> bool resize(Array<Type>& array, usize num);
template<class Type> bool set_capacity(Array<Type>& array, usize new_capacity);
template<class Type> ArrayHeader* get_header(Array<Type>& array);
2024-11-30 10:31:59 -08:00
struct ArrayHeader {
2024-11-30 10:14:47 -08:00
AllocatorInfo Allocator;
usize Capacity;
usize Num;
};
2023-07-24 15:19:37 -07:00
template<class Type>
struct Array
{
2024-11-30 10:31:59 -08:00
Type* Data;
2024-11-30 10:14:47 -08:00
#if 1
#pragma region Member Mapping
2024-11-30 10:31:59 -08:00
forceinline static Array init(AllocatorInfo allocator) { return GEN_NS array_init<Type>(allocator); }
forceinline static Array init_reserve(AllocatorInfo allocator, ssize capacity) { return GEN_NS array_init_reserve<Type>(allocator, capacity); }
forceinline static usize grow_formula(ssize value) { return GEN_NS array_grow_formula<Type>(value); }
forceinline bool append(Array other) { return GEN_NS append<Type>(*this, other); }
forceinline bool append(Type value) { return GEN_NS append<Type>(*this, value); }
forceinline bool append(Type* items, usize item_num) { return GEN_NS append<Type>(*this, items, item_num); }
forceinline bool append_at(Type item, usize idx) { return GEN_NS append_at<Type>(*this, item, idx); }
forceinline bool append_at(Type* items, usize item_num, usize idx) { return GEN_NS append_at<Type>(*this, items, item_num, idx); }
forceinline Type& back() { return GEN_NS back<Type>(*this); }
forceinline void clear() { GEN_NS clear<Type>(*this); }
forceinline bool fill(usize begin, usize end, Type value) { return GEN_NS fill<Type>(*this, begin, end, value); }
forceinline void free() { GEN_NS free<Type>(*this); }
forceinline ArrayHeader* get_header() { return GEN_NS get_header<Type>(*this); }
forceinline bool grow(usize min_capacity) { return GEN_NS grow<Type>(*this, min_capacity); }
forceinline usize num() { return GEN_NS num<Type>(*this); }
forceinline void pop() { GEN_NS pop<Type>(*this); }
forceinline void remove_at(usize idx) { GEN_NS remove_at<Type>(*this, idx); }
forceinline bool reserve(usize new_capacity) { return GEN_NS reserve<Type>(*this, new_capacity); }
forceinline bool resize(usize num) { return GEN_NS resize<Type>(*this, num); }
forceinline bool set_capacity(usize new_capacity) { return GEN_NS set_capacity<Type>(*this, new_capacity); }
forceinline operator Type*() { return Data; }
forceinline operator Type const*() const { return Data; }
forceinline Type* begin() { return Data; }
forceinline Type* end() { return Data + get_header()->Num; }
2024-11-30 10:14:47 -08:00
#pragma endregion Member Mapping
#endif
};
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
Array<Type> array_init(AllocatorInfo allocator) {
return array_init_reserve<Type>(allocator, array_grow_formula<Type>(0));
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
Array<Type> array_init_reserve(AllocatorInfo allocator, ssize capacity)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = rcast(ArrayHeader*, alloc(allocator, sizeof(ArrayHeader) + sizeof(Type) * capacity));
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header == nullptr)
return {nullptr};
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
header->Allocator = allocator;
header->Capacity = capacity;
header->Num = 0;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return {rcast(Type*, header + 1)};
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
usize array_grow_formula(ssize value) {
return 2 * value + 8;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
bool append(Array<Type>& array, Array<Type> other) {
return append(array, other, num(other));
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool append(Array<Type>& array, Type value)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header->Num == header->Capacity)
{
if (!grow(array, header->Capacity))
return false;
header = get_header(array);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
array.Data[header->Num] = value;
header->Num++;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool append(Array<Type>& array, Type* items, usize item_num)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header->Num + item_num > header->Capacity)
{
if (!grow(array, header->Capacity + item_num))
return false;
header = get_header(array);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
mem_copy(array.Data + header->Num, items, item_num * sizeof(Type));
header->Num += item_num;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool append_at(Array<Type>& array, Type item, usize idx)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (idx >= header->Num)
idx = header->Num - 1;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (idx < 0)
idx = 0;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header->Capacity < header->Num + 1)
{
if (!grow(array, header->Capacity + 1))
return false;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
header = get_header(array);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
Type* target = array.Data + idx;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
mem_move(target + 1, target, (header->Num - idx) * sizeof(Type));
header->Num++;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool append_at(Array<Type>& array, Type* items, usize item_num, usize idx)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (idx >= header->Num)
{
return append(array, items, item_num);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (item_num > header->Capacity)
{
if (!grow(array, header->Capacity + item_num))
return false;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
header = get_header(array);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
Type* target = array.Data + idx + item_num;
Type* src = array.Data + idx;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
mem_move(target, src, (header->Num - idx) * sizeof(Type));
mem_copy(src, items, item_num * sizeof(Type));
header->Num += item_num;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
Type& back(Array<Type>& array) {
ArrayHeader* header = get_header(array);
return array.Data[header->Num - 1];
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
void clear(Array<Type>& array) {
ArrayHeader* header = get_header(array);
header->Num = 0;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool fill(Array<Type>& array, usize begin, usize end, Type value)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (begin < 0 || end > header->Num)
return false;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
for (ssize idx = ssize(begin); idx < ssize(end); idx++)
{
array.Data[idx] = value;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
void free(Array<Type>& array) {
ArrayHeader* header = get_header(array);
gen::free(header->Allocator, header);
array.Data = nullptr;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
ArrayHeader* get_header(Array<Type>& array) {
using NonConstType = TRemoveConst<Type>;
return rcast(ArrayHeader*, const_cast<NonConstType*>(array.Data)) - 1;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool grow(Array<Type>& array, usize min_capacity)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
usize new_capacity = array_grow_formula<Type>(header->Capacity);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (new_capacity < min_capacity)
new_capacity = min_capacity;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return set_capacity(array, new_capacity);
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
usize num(Array<Type>& array) {
return get_header(array)->Num;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
2024-11-30 10:31:59 -08:00
void pop(Array<Type>& array) {
ArrayHeader* header = get_header(array);
GEN_ASSERT(header->Num > 0);
header->Num--;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
void remove_at(Array<Type>& array, usize idx)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
GEN_ASSERT(idx < header->Num);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
mem_move(array.Data + idx, array.Data + idx + 1, sizeof(Type) * (header->Num - idx - 1));
header->Num--;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool reserve(Array<Type>& array, usize new_capacity)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header->Capacity < new_capacity)
return set_capacity(array, new_capacity);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool resize(Array<Type>& array, usize num)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (header->Capacity < num) {
if (!grow(array, num))
return false;
header = get_header(array);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
header->Num = num;
return true;
2024-11-30 10:14:47 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:14:47 -08:00
template<class Type> inline
bool set_capacity(Array<Type>& array, usize new_capacity)
{
2024-11-30 10:31:59 -08:00
ArrayHeader* header = get_header(array);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (new_capacity == header->Capacity)
return true;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (new_capacity < header->Num)
{
header->Num = new_capacity;
return true;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
ssize size = sizeof(ArrayHeader) + sizeof(Type) * new_capacity;
ArrayHeader* new_header = rcast(ArrayHeader*, alloc(header->Allocator, size));
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (new_header == nullptr)
return false;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
mem_move(new_header, header, sizeof(ArrayHeader) + sizeof(Type) * header->Num);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
new_header->Capacity = new_capacity;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
GEN_NS free(header->Allocator, header);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
array.Data = rcast(Type*, new_header + 1);
return true;
2024-11-30 10:14:47 -08:00
}
#pragma endregion Array
2023-07-24 15:19:37 -07:00
2024-04-17 13:55:22 -07:00
// TODO(Ed) : This thing needs ALOT of work.
2024-11-30 10:31:59 -08:00
#pragma region HashTable
template<class Type> struct HashTable;
struct HashTableFindResult {
ssize HashIndex;
ssize PrevIndex;
ssize EntryIndex;
};
template<class Type>
struct HashTableEntry {
u64 Key;
ssize Next;
Type Value;
};
// Forward declarations for all lifted functions
template<class Type> HashTable<Type> hashtable_init(AllocatorInfo allocator);
template<class Type> HashTable<Type> hashtable_init_reserve(AllocatorInfo allocator, usize num);
template<class Type> void clear(HashTable<Type>& table);
template<class Type> void destroy(HashTable<Type>& table);
template<class Type> Type* get(HashTable<Type>& table, u64 key);
template<class Type> void grow(HashTable<Type>& table);
template<class Type> void rehash(HashTable<Type>& table, ssize new_num);
template<class Type> void rehash_fast(HashTable<Type>& table);
template<class Type> void remove(HashTable<Type>& table, u64 key);
template<class Type> void remove_entry(HashTable<Type>& table, ssize idx);
template<class Type> void set(HashTable<Type>& table, u64 key, Type value);
template<class Type> ssize slot(HashTable<Type>& table, u64 key);
template<class Type> ssize add_entry(HashTable<Type>& table, u64 key);
template<class Type> HashTableFindResult find(HashTable<Type>& table, u64 key);
template<class Type> bool full(HashTable<Type>& table);
template<class Type> void map(HashTable<Type>& table, void (*map_proc)(u64 key, Type value));
template<class Type> void map_mut(HashTable<Type>& table, void (*map_proc)(u64 key, Type* value));
2023-07-24 15:19:37 -07:00
template<typename Type>
struct HashTable
{
static constexpr f32 CriticalLoadScale = 0.7f;
2024-11-30 10:31:59 -08:00
Array<ssize> Hashes;
Array<HashTableEntry<Type>> Entries;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
#if 1
#pragma region Member Mapping
forceinline static HashTable init(AllocatorInfo allocator) { return GEN_NS hashtable_init<Type>(allocator); }
forceinline static HashTable init_reserve(AllocatorInfo allocator, usize num) { return GEN_NS hashtable_init_reserve<Type>(allocator, num); }
forceinline void clear() { GEN_NS clear<Type>(*this); }
forceinline void destroy() { GEN_NS destroy<Type>(*this); }
forceinline Type* get(u64 key) { return GEN_NS get<Type>(*this, key); }
forceinline void grow() { GEN_NS grow<Type>(*this); }
forceinline void rehash(ssize new_num) { GEN_NS rehash<Type>(*this, new_num); }
forceinline void rehash_fast() { GEN_NS rehash_fast<Type>(*this); }
forceinline void remove(u64 key) { GEN_NS remove<Type>(*this, key); }
forceinline void remove_entry(ssize idx) { GEN_NS remove_entry<Type>(*this, idx); }
forceinline void set(u64 key, Type value) { GEN_NS set<Type>(*this, key, value); }
forceinline ssize slot(u64 key) { return GEN_NS slot<Type>(*this, key); }
forceinline void map(void (*proc)(u64, Type)) { GEN_NS map<Type>(*this, proc); }
forceinline void map_mut(void (*proc)(u64, Type*)) { GEN_NS map_mut<Type>(*this, proc); }
#pragma endregion Member Mapping
#endif
};
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
HashTable<Type> hashtable_init(AllocatorInfo allocator) {
HashTable<Type> result = hashtable_init_reserve<Type>(allocator, 8);
return result;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
HashTable<Type> hashtable_init_reserve(AllocatorInfo allocator, usize num)
{
HashTable<Type> result = { { nullptr }, { nullptr } };
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
result.Hashes = Array<ssize>::init_reserve(allocator, num);
result.Hashes.get_header()->Num = num;
result.Hashes.resize(num);
result.Hashes.fill(0, num, -1);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
result.Entries = Array<HashTableEntry<Type>>::init_reserve(allocator, num);
return result;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void clear(HashTable<Type>& table) {
table.Entries.clear();
table.Hashes.fill(0, table.Hashes.num(), -1);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void destroy(HashTable<Type>& table) {
if (table.Hashes && table.Hashes.get_header()->Capacity) {
table.Hashes.free();
table.Entries.free();
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
Type* get(HashTable<Type>& table, u64 key) {
ssize idx = find(table, key).EntryIndex;
if (idx >= 0)
return &table.Entries[idx].Value;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return nullptr;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void map(HashTable<Type>& table, void (*map_proc)(u64 key, Type value)) {
GEN_ASSERT_NOT_NULL(map_proc);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
for (ssize idx = 0; idx < ssize(table.Entries.num()); ++idx) {
map_proc(table.Entries[idx].Key, table.Entries[idx].Value);
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void map_mut(HashTable<Type>& table, void (*map_proc)(u64 key, Type* value)) {
GEN_ASSERT_NOT_NULL(map_proc);
for (ssize idx = 0; idx < ssize(table.Entries.num()); ++idx) {
map_proc(table.Entries[idx].Key, &table.Entries[idx].Value);
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void grow(HashTable<Type>& table) {
ssize new_num = Array<HashTableEntry<Type>>::grow_formula(table.Entries.num());
rehash(table, new_num);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void rehash(HashTable<Type>& table, ssize new_num)
{
ssize last_added_index;
HashTable<Type> new_ht = hashtable_init_reserve<Type>(table.Hashes.get_header()->Allocator, new_num);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
for (ssize idx = 0; idx < ssize(table.Entries.num()); ++idx)
{
HashTableFindResult find_result;
HashTableEntry<Type>& entry = table.Entries[idx];
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
find_result = find(new_ht, entry.Key);
last_added_index = add_entry(new_ht, entry.Key);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (find_result.PrevIndex < 0)
new_ht.Hashes[find_result.HashIndex] = last_added_index;
else
new_ht.Entries[find_result.PrevIndex].Next = last_added_index;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
new_ht.Entries[last_added_index].Next = find_result.EntryIndex;
new_ht.Entries[last_added_index].Value = entry.Value;
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
destroy(table);
table = new_ht;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void rehash_fast(HashTable<Type>& table)
{
ssize idx;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
for (idx = 0; idx < ssize(table.Entries.num()); idx++)
table.Entries[idx].Next = -1;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
for (idx = 0; idx < ssize(table.Hashes.num()); idx++)
table.Hashes[idx] = -1;
2024-11-30 10:31:59 -08:00
for (idx = 0; idx < ssize(table.Entries.num()); idx++)
{
HashTableEntry<Type>* entry;
HashTableFindResult find_result;
2024-11-30 10:31:59 -08:00
entry = &table.Entries[idx];
find_result = find(table, entry->Key);
if (find_result.PrevIndex < 0)
table.Hashes[find_result.HashIndex] = idx;
else
table.Entries[find_result.PrevIndex].Next = idx;
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void remove(HashTable<Type>& table, u64 key) {
HashTableFindResult find_result = find(table, key);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (find_result.EntryIndex >= 0) {
table.Entries.remove_at(find_result.EntryIndex);
rehash_fast(table);
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void remove_entry(HashTable<Type>& table, ssize idx) {
table.Entries.remove_at(idx);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
void set(HashTable<Type>& table, u64 key, Type value)
{
ssize idx;
HashTableFindResult find_result;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (full(table))
grow(table);
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
find_result = find(table, key);
if (find_result.EntryIndex >= 0) {
idx = find_result.EntryIndex;
}
else
{
idx = add_entry(table, key);
if (find_result.PrevIndex >= 0) {
table.Entries[find_result.PrevIndex].Next = idx;
2023-07-24 15:19:37 -07:00
}
2024-11-30 10:31:59 -08:00
else {
table.Hashes[find_result.HashIndex] = idx;
2023-07-24 15:19:37 -07:00
}
}
2024-11-30 10:31:59 -08:00
table.Entries[idx].Value = value;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (full(table))
grow(table);
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
ssize slot(HashTable<Type>& table, u64 key) {
for (ssize idx = 0; idx < ssize(table.Hashes.num()); ++idx)
if (table.Hashes[idx] == key)
return idx;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
return -1;
}
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
template<typename Type> inline
ssize add_entry(HashTable<Type>& table, u64 key) {
ssize idx;
HashTableEntry<Type> entry = { key, -1 };
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
idx = table.Entries.num();
table.Entries.append(entry);
return idx;
}
template<typename Type> inline
HashTableFindResult find(HashTable<Type>& table, u64 key)
{
HashTableFindResult result = { -1, -1, -1 };
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
if (table.Hashes.num() > 0)
2023-07-24 15:19:37 -07:00
{
2024-11-30 10:31:59 -08:00
result.HashIndex = key % table.Hashes.num();
result.EntryIndex = table.Hashes[result.HashIndex];
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
while (result.EntryIndex >= 0)
2023-07-24 15:19:37 -07:00
{
2024-11-30 10:31:59 -08:00
if (table.Entries[result.EntryIndex].Key == key)
break;
2023-07-24 15:19:37 -07:00
2024-11-30 10:31:59 -08:00
result.PrevIndex = result.EntryIndex;
result.EntryIndex = table.Entries[result.EntryIndex].Next;
2023-07-24 15:19:37 -07:00
}
}
2024-11-30 10:31:59 -08:00
return result;
}
template<typename Type> inline
bool full(HashTable<Type>& table) {
usize critical_load = usize(HashTable<Type>::CriticalLoadScale * f32(table.Hashes.num()));
b32 result = table.Entries.num() > critical_load;
return result;
}
#pragma endregion HashTable
2023-07-24 15:19:37 -07:00
#pragma endregion Containers