2016-08-09 23:44:39 +08:00
|
|
|
#include "utils/crtp.hpp"
|
|
|
|
#include "utils/option_ptr.hpp"
|
2016-08-10 03:29:03 +08:00
|
|
|
#include <cstring>
|
2016-08-09 23:44:39 +08:00
|
|
|
|
|
|
|
// HashMultiMap with RobinHood collision resolution policy.
|
|
|
|
// Single threaded.
|
|
|
|
// Entrys are saved as pointers alligned to 8B.
|
|
|
|
// Entrys must know thers key.
|
|
|
|
// D must have method K& get_key()
|
|
|
|
// K must be comparable with ==.
|
|
|
|
// HashMap behaves as if it isn't owner of entrys.
|
|
|
|
template <class K, class D, size_t init_size_pow2 = 2>
|
|
|
|
class RhHashMultiMap
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
class Combined
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
Combined() : data(0) {}
|
|
|
|
|
|
|
|
Combined(D *data, size_t off)
|
|
|
|
{
|
|
|
|
assert((data & 0x7) == 0 && off < 8);
|
|
|
|
this->data = ((size_t)data) | off;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool valid() { return data != 0; }
|
|
|
|
|
|
|
|
size_t off() { return data & 0x7; }
|
|
|
|
|
|
|
|
D *ptr() { return (D *)(data & (~(0x7))); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
size_t data;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class It>
|
|
|
|
class IteratorBase : public Crtp<It>
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
IteratorBase() : map(nullptr) { advanced = index = ~((size_t)0); }
|
|
|
|
IteratorBase(const RhHashMultiMap *map) : map(map)
|
|
|
|
{
|
|
|
|
index = 0;
|
|
|
|
while (index < map->capacity && !map->array[index].valid()) {
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
if (index == map->capacity) {
|
|
|
|
map = nullptr;
|
|
|
|
advanced = index = ~((size_t)0);
|
|
|
|
} else {
|
|
|
|
advanced = index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IteratorBase(const RhHashMultiMap *map, size_t start)
|
|
|
|
: map(map), index(start), advanced(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const RhHashMultiMap *map;
|
|
|
|
size_t advanced;
|
|
|
|
size_t index;
|
|
|
|
|
|
|
|
public:
|
|
|
|
IteratorBase(const IteratorBase &) = default;
|
|
|
|
IteratorBase(IteratorBase &&) = default;
|
|
|
|
|
|
|
|
D *operator*()
|
|
|
|
{
|
|
|
|
assert(index < map->capacity && map->array[index].valid());
|
|
|
|
return map->array[index].ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
D *operator->()
|
|
|
|
{
|
|
|
|
assert(index < map->capacity && map->array[index].valid());
|
|
|
|
return map->array[index].ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
It &operator++()
|
|
|
|
{
|
|
|
|
assert(index < map->capacity && map->array[index].valid());
|
|
|
|
auto mask = map->mask();
|
|
|
|
do {
|
|
|
|
advanced++;
|
|
|
|
if (advanced >= map->capacity) {
|
|
|
|
map = nullptr;
|
|
|
|
advanced = index = ~((size_t)0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index = advanced & mask;
|
|
|
|
} while (!map->array[index].valid());
|
|
|
|
|
|
|
|
return this->derived();
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// // True if value is present
|
|
|
|
// bool is_present() { return map != nullptr; }
|
|
|
|
|
|
|
|
It &operator++(int) { return operator++(); }
|
|
|
|
|
|
|
|
friend bool operator==(const It &a, const It &b)
|
|
|
|
{
|
|
|
|
return a.index == b.index && a.map == b.map;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator!=(const It &a, const It &b) { return !(a == b); }
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
class ConstIterator : public IteratorBase<ConstIterator>
|
|
|
|
{
|
|
|
|
friend class RhHashMultiMap;
|
|
|
|
ConstIterator(const RhHashMultiMap *map)
|
|
|
|
: IteratorBase<ConstIterator>(map)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
ConstIterator(const RhHashMultiMap *map, size_t index)
|
|
|
|
: IteratorBase<ConstIterator>(map, index)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
ConstIterator() = default;
|
|
|
|
ConstIterator(const ConstIterator &) = default;
|
|
|
|
|
|
|
|
const D *operator->()
|
|
|
|
{
|
|
|
|
return IteratorBase<ConstIterator>::operator->();
|
|
|
|
}
|
|
|
|
|
|
|
|
const D *operator*()
|
|
|
|
{
|
|
|
|
return IteratorBase<ConstIterator>::operator*();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class Iterator : public IteratorBase<Iterator>
|
|
|
|
{
|
|
|
|
friend class RhHashMultiMap;
|
|
|
|
Iterator(const RhHashMultiMap *map) : IteratorBase<Iterator>(map) {}
|
|
|
|
Iterator(const RhHashMultiMap *map, size_t index)
|
|
|
|
: IteratorBase<Iterator>(map, index)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
Iterator() = default;
|
|
|
|
Iterator(const Iterator &) = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
RhHashMultiMap() {}
|
|
|
|
|
|
|
|
RhHashMultiMap(const RhHashMultiMap &other)
|
|
|
|
{
|
|
|
|
capacity = other.capacity;
|
|
|
|
count = other.count;
|
|
|
|
if (capacity > 0) {
|
|
|
|
size_t bytes = sizeof(Combined) * capacity;
|
|
|
|
array = (Combined *)malloc(bytes);
|
|
|
|
memcpy(array, other.array, bytes);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
array = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-10 03:29:03 +08:00
|
|
|
// RhHashMultiMap(RhHashMultiMap &&other)
|
|
|
|
// {
|
|
|
|
// capacity = other.capacity;
|
|
|
|
// count = other.count;
|
|
|
|
// array = other.array;
|
|
|
|
//
|
|
|
|
// other.array = nullptr;
|
|
|
|
// other.capacity = 0;
|
|
|
|
// other.count = 0;
|
|
|
|
// }
|
2016-08-09 23:44:39 +08:00
|
|
|
|
2016-08-10 03:29:03 +08:00
|
|
|
~RhHashMultiMap() { this->clear(); }
|
2016-08-09 23:44:39 +08:00
|
|
|
|
|
|
|
Iterator begin() { return Iterator(this); }
|
|
|
|
|
|
|
|
ConstIterator begin() const { return ConstIterator(this); }
|
|
|
|
|
|
|
|
ConstIterator cbegin() const { return ConstIterator(this); }
|
|
|
|
|
|
|
|
Iterator end() { return Iterator(); }
|
|
|
|
|
|
|
|
ConstIterator end() const { return ConstIterator(); }
|
|
|
|
|
|
|
|
ConstIterator cend() const { return ConstIterator(); }
|
|
|
|
|
|
|
|
void init_array(size_t size)
|
|
|
|
{
|
|
|
|
size_t bytes = sizeof(Combined) * size;
|
|
|
|
array = (Combined *)malloc(bytes);
|
2016-08-10 03:29:03 +08:00
|
|
|
std::memset(array, 0, bytes);
|
2016-08-09 23:44:39 +08:00
|
|
|
capacity = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void increase_size()
|
|
|
|
{
|
|
|
|
if (capacity == 0) {
|
|
|
|
assert(array == nullptr && count == 0);
|
|
|
|
size_t new_size = 1 << init_size_pow2;
|
|
|
|
init_array(new_size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
size_t new_size = capacity * 2;
|
|
|
|
size_t old_size = capacity;
|
|
|
|
auto a = array;
|
|
|
|
init_array(new_size);
|
|
|
|
count = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < old_size; i++) {
|
|
|
|
if (a[i].valid()) {
|
|
|
|
add(a[i].ptr());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(a);
|
|
|
|
}
|
|
|
|
|
2016-08-10 03:29:03 +08:00
|
|
|
bool contains(const K &key) { return find(key) != end(); }
|
|
|
|
|
2016-08-09 23:44:39 +08:00
|
|
|
Iterator find(const K &key)
|
|
|
|
{
|
|
|
|
size_t mask = this->mask();
|
|
|
|
size_t now = index(key, mask);
|
|
|
|
size_t off = 0;
|
|
|
|
|
|
|
|
bool bef_init = false;
|
|
|
|
size_t before_off;
|
2016-08-10 03:29:03 +08:00
|
|
|
auto before_key = key;
|
2016-08-09 23:44:39 +08:00
|
|
|
|
|
|
|
size_t border = 8 <= capacity ? 8 : capacity;
|
|
|
|
while (off < border) {
|
|
|
|
Combined other = array[now];
|
|
|
|
if (other.valid()) {
|
|
|
|
auto other_off = other.off();
|
|
|
|
auto other_key = other.ptr()->get_key();
|
|
|
|
if (other_off == off && key == other_key) {
|
|
|
|
return Iterator(this, now);
|
|
|
|
|
|
|
|
} else if (other_off < off) { // Other is rich
|
|
|
|
break;
|
|
|
|
|
|
|
|
} else if (bef_init) { // Else other has equal or greater
|
|
|
|
// offset, so he is poor.
|
|
|
|
if (before_off == other_off && before_key == other_key) {
|
|
|
|
if (count == capacity) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Proceed
|
|
|
|
} else {
|
|
|
|
before_off = other_off;
|
|
|
|
before_key = other_key;
|
|
|
|
off++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bef_init = true;
|
|
|
|
before_off = other_off;
|
|
|
|
before_key = other_key;
|
|
|
|
off++;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
now = (now + 1) & mask;
|
|
|
|
}
|
|
|
|
return end();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inserts element with the given key.
|
2016-08-10 03:29:03 +08:00
|
|
|
void add(K &key, D *data)
|
2016-08-09 23:44:39 +08:00
|
|
|
{
|
|
|
|
assert(key == data->get_key());
|
|
|
|
|
|
|
|
size_t mask = this->mask();
|
|
|
|
size_t now = index(key, mask);
|
|
|
|
size_t off = 0;
|
|
|
|
|
|
|
|
bool bef_init = false;
|
|
|
|
size_t before_off;
|
2016-08-10 03:29:03 +08:00
|
|
|
auto before_key = key;
|
2016-08-09 23:44:39 +08:00
|
|
|
|
|
|
|
size_t border = 8 <= capacity ? 8 : capacity;
|
|
|
|
while (off < border) {
|
|
|
|
Combined other = array[now];
|
|
|
|
if (other.valid()) {
|
|
|
|
auto other_off = other.off();
|
|
|
|
auto other_key = other.ptr()->get_key();
|
|
|
|
if (other_off == off && key == other_key) {
|
|
|
|
// Proceed
|
|
|
|
|
|
|
|
} else if (other_off < off) { // Other is rich
|
|
|
|
array[now] = Combined(data, off);
|
|
|
|
|
|
|
|
// Hacked reusing of function
|
|
|
|
data = other.ptr();
|
|
|
|
key = other_key;
|
|
|
|
off = other_off;
|
|
|
|
|
|
|
|
off++;
|
|
|
|
} else if (bef_init) { // Else other has equal or greater
|
|
|
|
// offset, so he is poor.
|
|
|
|
if (before_off == other_off && before_key == other_key) {
|
|
|
|
if (count == capacity) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Proceed
|
|
|
|
} else {
|
|
|
|
before_off = other_off;
|
|
|
|
before_key = other_key;
|
|
|
|
off++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bef_init = true;
|
|
|
|
before_off = other_off;
|
|
|
|
before_key = other_key;
|
|
|
|
off++;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
array[now] = Combined(data, off);
|
|
|
|
count++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
now = (now + 1) & mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
increase_size();
|
|
|
|
add(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inserts element.
|
|
|
|
void add(D *data) { add(data->get_key(), data); }
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
{
|
|
|
|
free(array);
|
|
|
|
array = nullptr;
|
|
|
|
capacity = 0;
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t size() const { return count; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
size_t index(const K &key, size_t mask) const
|
|
|
|
{
|
|
|
|
return hash(std::hash<K>()(key)) & mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hash(size_t x) const
|
|
|
|
{
|
|
|
|
x = (x ^ (x >> 30)) * UINT64_C(0xbf58476d1ce4e5b9);
|
|
|
|
x = (x ^ (x >> 27)) * UINT64_C(0x94d049bb133111eb);
|
|
|
|
x = x ^ (x >> 31);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t mask() const { return capacity - 1; }
|
|
|
|
|
|
|
|
Combined *array = nullptr;
|
|
|
|
size_t capacity = 0;
|
|
|
|
size_t count = 0;
|
|
|
|
|
|
|
|
friend class IteratorBase<Iterator>;
|
|
|
|
friend class IteratorBase<ConstIterator>;
|
|
|
|
};
|