mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
204 lines
5.6 KiB
C++
204 lines
5.6 KiB
C++
#pragma once
|
|
|
|
#include "common.h"
|
|
#include "memory.h"
|
|
#include "str.h"
|
|
|
|
namespace pkpy{
|
|
|
|
inline const uint16_t kHashSeeds[] = {9629, 43049, 13267, 59509, 39251, 1249, 27689, 9719, 19913};
|
|
|
|
inline uint16_t _hash(StrName key, uint16_t mask, uint16_t hash_seed){
|
|
return ( (key).index * (hash_seed) >> 8 ) & (mask);
|
|
}
|
|
|
|
uint16_t _find_perfect_hash_seed(uint16_t capacity, const std::vector<StrName>& keys);
|
|
|
|
template<typename T>
|
|
struct NameDictImpl {
|
|
using Item = std::pair<StrName, T>;
|
|
static constexpr uint16_t __Capacity = 8;
|
|
// ensure the initial capacity is ok for memory pool
|
|
static_assert(std::is_pod_v<T>);
|
|
static_assert(sizeof(Item) * __Capacity <= 128);
|
|
|
|
float _load_factor;
|
|
uint16_t _capacity;
|
|
uint16_t _size;
|
|
uint16_t _hash_seed;
|
|
uint16_t _mask;
|
|
Item* _items;
|
|
|
|
#define HASH_PROBE(key, ok, i) \
|
|
ok = false; \
|
|
i = _hash(key, _mask, _hash_seed); \
|
|
while(!_items[i].first.empty()) { \
|
|
if(_items[i].first == (key)) { ok = true; break; } \
|
|
i = (i + 1) & _mask; \
|
|
}
|
|
|
|
#define NAMEDICT_ALLOC() \
|
|
_items = (Item*)pool128.alloc(_capacity * sizeof(Item)); \
|
|
memset(_items, 0, _capacity * sizeof(Item)); \
|
|
|
|
NameDictImpl(float load_factor=0.67f):
|
|
_load_factor(load_factor), _capacity(__Capacity), _size(0),
|
|
_hash_seed(kHashSeeds[0]), _mask(__Capacity-1) {
|
|
NAMEDICT_ALLOC()
|
|
}
|
|
|
|
NameDictImpl(const NameDictImpl& other) {
|
|
memcpy(this, &other, sizeof(NameDictImpl));
|
|
NAMEDICT_ALLOC()
|
|
for(int i=0; i<_capacity; i++) _items[i] = other._items[i];
|
|
}
|
|
|
|
NameDictImpl& operator=(const NameDictImpl& other) {
|
|
pool128.dealloc(_items);
|
|
memcpy(this, &other, sizeof(NameDictImpl));
|
|
NAMEDICT_ALLOC()
|
|
for(int i=0; i<_capacity; i++) _items[i] = other._items[i];
|
|
return *this;
|
|
}
|
|
|
|
~NameDictImpl(){ pool128.dealloc(_items); }
|
|
|
|
NameDictImpl(NameDictImpl&&) = delete;
|
|
NameDictImpl& operator=(NameDictImpl&&) = delete;
|
|
uint16_t size() const { return _size; }
|
|
|
|
T operator[](StrName key) const {
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok) throw std::out_of_range(fmt("NameDict key not found: ", key));
|
|
return _items[i].second;
|
|
}
|
|
|
|
void set(StrName key, T val){
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok) {
|
|
_size++;
|
|
if(_size > _capacity*_load_factor){
|
|
_rehash(true);
|
|
HASH_PROBE(key, ok, i);
|
|
}
|
|
_items[i].first = key;
|
|
}
|
|
_items[i].second = val;
|
|
}
|
|
|
|
void _rehash(bool resize){
|
|
Item* old_items = _items;
|
|
uint16_t old_capacity = _capacity;
|
|
if(resize){
|
|
_capacity *= 2;
|
|
_mask = _capacity - 1;
|
|
}
|
|
NAMEDICT_ALLOC()
|
|
for(uint16_t i=0; i<old_capacity; i++){
|
|
if(old_items[i].first.empty()) continue;
|
|
bool ok; uint16_t j;
|
|
HASH_PROBE(old_items[i].first, ok, j);
|
|
if(ok) FATAL_ERROR();
|
|
_items[j] = old_items[i];
|
|
}
|
|
pool128.dealloc(old_items);
|
|
}
|
|
|
|
void _try_perfect_rehash(){
|
|
_hash_seed = _find_perfect_hash_seed(_capacity, keys());
|
|
_rehash(false); // do not resize
|
|
}
|
|
|
|
T try_get(StrName key) const{
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok){
|
|
if constexpr(std::is_pointer_v<T>) return nullptr;
|
|
else if constexpr(std::is_same_v<int, T>) return -1;
|
|
else return Discarded();
|
|
}
|
|
return _items[i].second;
|
|
}
|
|
|
|
T* try_get_2(StrName key) {
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok) return nullptr;
|
|
return &_items[i].second;
|
|
}
|
|
|
|
bool try_set(StrName key, T val){
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok) return false;
|
|
_items[i].second = val;
|
|
return true;
|
|
}
|
|
|
|
bool contains(StrName key) const {
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
return ok;
|
|
}
|
|
|
|
void update(const NameDictImpl& other){
|
|
for(uint16_t i=0; i<other._capacity; i++){
|
|
auto& item = other._items[i];
|
|
if(!item.first.empty()) set(item.first, item.second);
|
|
}
|
|
}
|
|
|
|
void erase(StrName key){
|
|
bool ok; uint16_t i;
|
|
HASH_PROBE(key, ok, i);
|
|
if(!ok) throw std::out_of_range(fmt("NameDict key not found: ", key));
|
|
_items[i].first = StrName();
|
|
_items[i].second = nullptr;
|
|
_size--;
|
|
}
|
|
|
|
std::vector<Item> items() const {
|
|
std::vector<Item> v;
|
|
for(uint16_t i=0; i<_capacity; i++){
|
|
if(_items[i].first.empty()) continue;
|
|
v.push_back(_items[i]);
|
|
}
|
|
return v;
|
|
}
|
|
|
|
template<typename __Func>
|
|
void apply(__Func func) const {
|
|
for(uint16_t i=0; i<_capacity; i++){
|
|
if(_items[i].first.empty()) continue;
|
|
func(_items[i].first, _items[i].second);
|
|
}
|
|
}
|
|
|
|
std::vector<StrName> keys() const {
|
|
std::vector<StrName> v;
|
|
for(uint16_t i=0; i<_capacity; i++){
|
|
if(_items[i].first.empty()) continue;
|
|
v.push_back(_items[i].first);
|
|
}
|
|
return v;
|
|
}
|
|
|
|
void clear(){
|
|
for(uint16_t i=0; i<_capacity; i++){
|
|
_items[i].first = StrName();
|
|
_items[i].second = nullptr;
|
|
}
|
|
_size = 0;
|
|
}
|
|
#undef HASH_PROBE
|
|
#undef NAMEDICT_ALLOC
|
|
#undef _hash
|
|
};
|
|
|
|
using NameDict = NameDictImpl<PyObject*>;
|
|
using NameDict_ = shared_ptr<NameDict>;
|
|
using NameDictInt = NameDictImpl<int>;
|
|
|
|
} // namespace pkpy
|