2011-12-05 20:03:10 +02:00
|
|
|
#ifndef __CXXMPH_MPH_MAP_H__
|
|
|
|
#define __CXXMPH_MPH_MAP_H__
|
2011-11-05 19:15:11 +02:00
|
|
|
// Implementation of the unordered associative mapping interface using a
|
|
|
|
// minimal perfect hash function.
|
|
|
|
//
|
2012-04-12 22:36:23 +03:00
|
|
|
// This class not necessarily faster than unordered_map (or ext/hash_map).
|
|
|
|
// Benchmark your code before using it. If you do not call rehash() before
|
|
|
|
// starting your reads, it will be definitively slower than unordered_map.
|
2012-03-12 06:43:06 +02:00
|
|
|
//
|
2012-04-12 22:36:23 +03:00
|
|
|
// For large sets of urls, which are a somewhat expensive to compare, I found
|
|
|
|
// this class to be about 10% faster than unordered_map.
|
|
|
|
//
|
|
|
|
// The space overhead of this map is 1.93 bits per bucket and it achieves 100%
|
|
|
|
// occupation with a rehash call.
|
2011-11-05 19:15:11 +02:00
|
|
|
|
2010-11-08 22:19:44 +02:00
|
|
|
#include <algorithm>
|
2012-03-14 09:51:55 +02:00
|
|
|
#include <iostream>
|
|
|
|
#include <limits>
|
2011-11-10 20:44:37 +02:00
|
|
|
#include <unordered_map>
|
2012-03-14 16:58:37 +02:00
|
|
|
#include <unordered_set>
|
2010-06-28 22:01:18 +03:00
|
|
|
#include <vector>
|
|
|
|
#include <utility> // for std::pair
|
|
|
|
|
2012-03-14 23:26:26 +02:00
|
|
|
#include "mph_bits.h"
|
2011-05-23 21:01:08 +03:00
|
|
|
#include "mph_index.h"
|
2012-04-15 07:23:44 +03:00
|
|
|
#include "hollow_iterator.h"
|
2010-10-29 09:26:37 +03:00
|
|
|
|
|
|
|
namespace cxxmph {
|
|
|
|
|
2011-12-10 03:57:37 +02:00
|
|
|
using std::pair;
|
|
|
|
using std::make_pair;
|
2011-11-10 20:44:37 +02:00
|
|
|
using std::unordered_map;
|
2011-12-10 03:57:37 +02:00
|
|
|
using std::vector;
|
2011-05-24 03:18:24 +03:00
|
|
|
|
2010-06-28 22:01:18 +03:00
|
|
|
// Save on repetitive typing.
|
2011-05-16 02:47:42 +03:00
|
|
|
#define MPH_MAP_TMPL_SPEC template <class Key, class Data, class HashFcn, class EqualKey, class Alloc>
|
|
|
|
#define MPH_MAP_CLASS_SPEC mph_map<Key, Data, HashFcn, EqualKey, Alloc>
|
|
|
|
#define MPH_MAP_METHOD_DECL(r, m) MPH_MAP_TMPL_SPEC typename MPH_MAP_CLASS_SPEC::r MPH_MAP_CLASS_SPEC::m
|
2012-04-15 06:03:00 +03:00
|
|
|
#define MPH_MAP_INLINE_METHOD_DECL(r, m) MPH_MAP_TMPL_SPEC inline typename MPH_MAP_CLASS_SPEC::r MPH_MAP_CLASS_SPEC::m
|
2010-06-28 22:01:18 +03:00
|
|
|
|
2011-11-10 20:44:37 +02:00
|
|
|
template <class Key, class Data, class HashFcn = std::hash<Key>, class EqualKey = std::equal_to<Key>, class Alloc = std::allocator<Data> >
|
2011-05-16 02:47:42 +03:00
|
|
|
class mph_map {
|
2010-06-28 22:01:18 +03:00
|
|
|
public:
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef Data data_type;
|
2011-12-10 03:57:37 +02:00
|
|
|
typedef pair<Key, Data> value_type;
|
2010-06-28 22:01:18 +03:00
|
|
|
typedef HashFcn hasher;
|
|
|
|
typedef EqualKey key_equal;
|
|
|
|
|
2012-04-15 07:23:44 +03:00
|
|
|
typedef typename vector<value_type>::pointer pointer;
|
|
|
|
typedef typename vector<value_type>::reference reference;
|
|
|
|
typedef typename vector<value_type>::const_reference const_reference;
|
|
|
|
typedef typename vector<value_type>::size_type size_type;
|
|
|
|
typedef typename vector<value_type>::difference_type difference_type;
|
2012-03-07 10:10:29 +02:00
|
|
|
|
2012-04-15 07:23:44 +03:00
|
|
|
typedef is_empty<const vector<value_type>> is_empty_type;
|
|
|
|
typedef hollow_iterator_base<typename vector<value_type>::iterator, is_empty_type> iterator;
|
|
|
|
typedef hollow_iterator_base<typename vector<value_type>::const_iterator, is_empty_type> const_iterator;
|
2010-06-28 22:01:18 +03:00
|
|
|
|
|
|
|
// For making macros simpler.
|
|
|
|
typedef void void_type;
|
|
|
|
typedef bool bool_type;
|
2011-12-10 03:57:37 +02:00
|
|
|
typedef pair<iterator, bool> insert_return_type;
|
2010-06-28 22:01:18 +03:00
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
mph_map();
|
|
|
|
~mph_map();
|
2010-06-28 22:01:18 +03:00
|
|
|
|
|
|
|
iterator begin();
|
|
|
|
iterator end();
|
|
|
|
const_iterator begin() const;
|
|
|
|
const_iterator end() const;
|
|
|
|
size_type size() const;
|
|
|
|
bool empty() const;
|
|
|
|
void clear();
|
|
|
|
void erase(iterator pos);
|
|
|
|
void erase(const key_type& k);
|
2011-12-10 03:57:37 +02:00
|
|
|
pair<iterator, bool> insert(const value_type& x);
|
2012-04-15 06:03:00 +03:00
|
|
|
inline iterator find(const key_type& k);
|
|
|
|
inline const_iterator find(const key_type& k) const;
|
2011-12-10 03:57:37 +02:00
|
|
|
typedef int32_t my_int32_t; // help macros
|
2012-04-15 06:03:00 +03:00
|
|
|
inline int32_t index(const key_type& k) const;
|
2012-04-21 22:48:32 +03:00
|
|
|
inline int32_t index2(const key_type& k) const;
|
2010-06-28 22:01:18 +03:00
|
|
|
data_type& operator[](const key_type &k);
|
2011-06-14 08:24:40 +03:00
|
|
|
const data_type& operator[](const key_type &k) const;
|
2010-06-28 22:01:18 +03:00
|
|
|
|
2012-04-15 07:23:44 +03:00
|
|
|
size_type bucket_count() const { return index_.perfect_hash_size() + slack_.bucket_count(); }
|
2012-03-12 05:17:08 +02:00
|
|
|
void rehash(size_type nbuckets /*ignored*/);
|
2010-06-28 22:01:18 +03:00
|
|
|
|
2011-06-14 08:24:40 +03:00
|
|
|
protected: // mimicking STL implementation
|
|
|
|
EqualKey equal_;
|
|
|
|
|
2010-06-28 22:01:18 +03:00
|
|
|
private:
|
2010-11-05 08:40:15 +02:00
|
|
|
template <typename iterator>
|
|
|
|
struct iterator_first : public iterator {
|
|
|
|
iterator_first(iterator it) : iterator(it) { }
|
2012-03-12 04:21:18 +02:00
|
|
|
const typename iterator::value_type::first_type& operator*() {
|
2010-11-05 08:40:15 +02:00
|
|
|
return this->iterator::operator*().first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename iterator>
|
|
|
|
iterator_first<iterator> make_iterator_first(iterator it) {
|
|
|
|
return iterator_first<iterator>(it);
|
|
|
|
}
|
|
|
|
|
2011-05-24 03:18:24 +03:00
|
|
|
void pack();
|
2012-04-15 07:23:44 +03:00
|
|
|
vector<value_type> values_;
|
|
|
|
vector<bool> present_;
|
2011-05-23 21:01:08 +03:00
|
|
|
SimpleMPHIndex<Key, typename seeded_hash<HashFcn>::hash_function> index_;
|
2012-03-21 15:20:30 +02:00
|
|
|
// TODO(davi) optimize slack to use hash from index rather than calculate its own
|
|
|
|
typedef unordered_map<h128, uint32_t, h128::hash32> slack_type;
|
2010-11-05 08:40:15 +02:00
|
|
|
slack_type slack_;
|
2012-03-12 04:21:18 +02:00
|
|
|
size_type size_;
|
2012-03-21 15:20:30 +02:00
|
|
|
typename seeded_hash<HashFcn>::hash_function hasher128_;
|
2010-06-28 22:01:18 +03:00
|
|
|
};
|
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_TMPL_SPEC
|
|
|
|
bool operator==(const MPH_MAP_CLASS_SPEC& lhs, const MPH_MAP_CLASS_SPEC& rhs) {
|
2012-03-12 04:21:18 +02:00
|
|
|
return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2012-03-12 04:21:18 +02:00
|
|
|
MPH_MAP_TMPL_SPEC MPH_MAP_CLASS_SPEC::mph_map() : size_(0) {
|
2012-03-14 09:51:55 +02:00
|
|
|
clear();
|
2011-05-24 03:18:24 +03:00
|
|
|
pack();
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_TMPL_SPEC MPH_MAP_CLASS_SPEC::~mph_map() {
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_METHOD_DECL(insert_return_type, insert)(const value_type& x) {
|
2012-03-12 04:21:18 +02:00
|
|
|
auto it = find(x.first);
|
|
|
|
auto it_end = end();
|
|
|
|
if (it != it_end) return make_pair(it, false);
|
|
|
|
bool should_pack = false;
|
2012-03-07 10:10:29 +02:00
|
|
|
if (values_.capacity() == values_.size() && values_.size() > 256) {
|
|
|
|
should_pack = true;
|
|
|
|
}
|
2010-06-28 22:01:18 +03:00
|
|
|
values_.push_back(x);
|
2012-03-12 04:21:18 +02:00
|
|
|
present_.push_back(true);
|
2012-03-12 05:17:08 +02:00
|
|
|
++size_;
|
2012-03-21 15:20:30 +02:00
|
|
|
h128 h = hasher128_.hash128(x.first, 0);
|
|
|
|
if (slack_.find(h) != slack_.end()) should_pack = true; // unavoidable pack
|
|
|
|
else slack_.insert(std::make_pair(h, values_.size() - 1));
|
2012-03-07 10:10:29 +02:00
|
|
|
if (should_pack) pack();
|
2010-06-28 22:01:18 +03:00
|
|
|
it = find(x.first);
|
2011-12-10 03:57:37 +02:00
|
|
|
return make_pair(it, true);
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2011-05-24 03:18:24 +03:00
|
|
|
MPH_MAP_METHOD_DECL(void_type, pack)() {
|
2012-03-15 02:22:40 +02:00
|
|
|
// fprintf(stderr, "Paki %d values\n", values_.size());
|
2010-06-28 22:01:18 +03:00
|
|
|
if (values_.empty()) return;
|
2012-03-14 16:58:37 +02:00
|
|
|
assert(std::unordered_set<key_type>(make_iterator_first(begin()), make_iterator_first(end())).size() == size());
|
2011-05-23 21:01:08 +03:00
|
|
|
bool success = index_.Reset(
|
2012-03-12 04:21:18 +02:00
|
|
|
make_iterator_first(begin()),
|
|
|
|
make_iterator_first(end()), size_);
|
2012-04-15 06:03:00 +03:00
|
|
|
if (!success) { exit(-1); }
|
2012-04-15 07:23:44 +03:00
|
|
|
vector<value_type> new_values(index_.perfect_hash_size());
|
2012-03-12 05:17:08 +02:00
|
|
|
new_values.reserve(new_values.size() * 2);
|
2012-04-15 07:23:44 +03:00
|
|
|
vector<bool> new_present(index_.perfect_hash_size(), false);
|
2012-03-12 05:17:08 +02:00
|
|
|
new_present.reserve(new_present.size() * 2);
|
|
|
|
for (iterator it = begin(), it_end = end(); it != it_end; ++it) {
|
2012-04-15 07:23:44 +03:00
|
|
|
size_type id = index_.perfect_hash(it->first);
|
|
|
|
assert(id < index_.perfect_hash_size());
|
2011-05-16 05:04:30 +03:00
|
|
|
assert(id < new_values.size());
|
2010-11-06 13:14:07 +02:00
|
|
|
new_values[id] = *it;
|
2012-03-12 04:21:18 +02:00
|
|
|
new_present[id] = true;
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
2012-03-14 23:26:26 +02:00
|
|
|
// fprintf(stderr, "Collision ratio: %f\n", collisions*1.0/size());
|
2010-06-28 22:01:18 +03:00
|
|
|
values_.swap(new_values);
|
2012-03-12 04:21:18 +02:00
|
|
|
present_.swap(new_present);
|
|
|
|
slack_type().swap(slack_);
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2012-04-15 07:23:44 +03:00
|
|
|
MPH_MAP_METHOD_DECL(iterator, begin)() { return make_hollow(&values_, &present_, values_.begin()); }
|
|
|
|
MPH_MAP_METHOD_DECL(iterator, end)() { return make_solid(&values_, &present_, values_.end()); }
|
|
|
|
MPH_MAP_METHOD_DECL(const_iterator, begin)() const { return make_hollow(&values_, &present_, values_.begin()); }
|
|
|
|
MPH_MAP_METHOD_DECL(const_iterator, end)() const { return make_solid(&values_, &present_, values_.end()); }
|
2012-03-12 04:21:18 +02:00
|
|
|
MPH_MAP_METHOD_DECL(bool_type, empty)() const { return size_ == 0; }
|
|
|
|
MPH_MAP_METHOD_DECL(size_type, size)() const { return size_; }
|
2010-06-28 22:01:18 +03:00
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_METHOD_DECL(void_type, clear)() {
|
2010-06-28 22:01:18 +03:00
|
|
|
values_.clear();
|
2012-03-12 04:21:18 +02:00
|
|
|
present_.clear();
|
2010-06-28 22:01:18 +03:00
|
|
|
slack_.clear();
|
2011-05-23 21:01:08 +03:00
|
|
|
index_.clear();
|
2012-03-12 05:17:08 +02:00
|
|
|
size_ = 0;
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_METHOD_DECL(void_type, erase)(iterator pos) {
|
2012-04-15 07:23:44 +03:00
|
|
|
present_[pos.it_ - begin().it_] = false;
|
2012-03-12 04:21:18 +02:00
|
|
|
*pos = value_type();
|
2012-03-12 05:17:08 +02:00
|
|
|
--size_;
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_METHOD_DECL(void_type, erase)(const key_type& k) {
|
2010-06-28 22:01:18 +03:00
|
|
|
iterator it = find(k);
|
|
|
|
if (it == end()) return;
|
|
|
|
erase(it);
|
|
|
|
}
|
|
|
|
|
2012-04-15 06:03:00 +03:00
|
|
|
MPH_MAP_INLINE_METHOD_DECL(const_iterator, find)(const key_type& k) const {
|
2012-04-21 22:48:32 +03:00
|
|
|
auto idx = index2(k);
|
2012-04-15 07:23:44 +03:00
|
|
|
typename vector<value_type>::const_iterator vit = values_.begin() + idx;
|
|
|
|
if (idx == -1 || vit->first != k) return end();
|
|
|
|
return make_solid(&values_, &present_, vit);;
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
2011-06-14 08:24:40 +03:00
|
|
|
|
2012-04-15 06:03:00 +03:00
|
|
|
MPH_MAP_INLINE_METHOD_DECL(iterator, find)(const key_type& k) {
|
2012-04-14 23:59:15 +03:00
|
|
|
auto idx = index(k);
|
2012-04-15 07:23:44 +03:00
|
|
|
typename vector<value_type>::iterator vit = values_.begin() + idx;
|
|
|
|
if (idx == -1 || vit->first != k) return end();
|
|
|
|
return make_solid(&values_, &present_, vit);;
|
2012-04-14 23:59:15 +03:00
|
|
|
}
|
|
|
|
|
2012-04-21 22:48:32 +03:00
|
|
|
MPH_MAP_INLINE_METHOD_DECL(my_int32_t, index2)(const key_type& k) const {
|
|
|
|
if (__builtin_expect(index_.perfect_hash_size(), 1)) {
|
|
|
|
auto perfect_hash = index_.perfect_hash(k);
|
|
|
|
return perfect_hash;
|
2012-04-14 23:59:15 +03:00
|
|
|
}
|
2012-04-21 22:48:32 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MPH_MAP_INLINE_METHOD_DECL(my_int32_t, index)(const key_type& k) const {
|
2012-04-15 07:23:44 +03:00
|
|
|
if (__builtin_expect(index_.perfect_hash_size(), 1)) {
|
|
|
|
auto perfect_hash = index_.perfect_hash(k);
|
|
|
|
if (__builtin_expect(present_[perfect_hash], true)) {
|
|
|
|
return perfect_hash;
|
2012-03-14 09:51:55 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-21 22:48:32 +03:00
|
|
|
if (__builtin_expect(!slack_.empty(), 0)) {
|
|
|
|
auto sit = slack_.find(hasher128_.hash128(k, 0));
|
|
|
|
if (sit != slack_.end()) return sit->second;
|
|
|
|
}
|
2012-04-14 23:59:15 +03:00
|
|
|
return -1;
|
2011-06-14 08:24:40 +03:00
|
|
|
}
|
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
MPH_MAP_METHOD_DECL(data_type&, operator[])(const key_type& k) {
|
2011-12-10 03:57:37 +02:00
|
|
|
return insert(make_pair(k, data_type())).first->second;
|
2010-06-28 22:01:18 +03:00
|
|
|
}
|
2012-03-12 05:17:08 +02:00
|
|
|
MPH_MAP_METHOD_DECL(void_type, rehash)(size_type nbuckets) {
|
|
|
|
pack();
|
|
|
|
vector<value_type>(values_.begin(), values_.end()).swap(values_);
|
|
|
|
vector<bool>(present_.begin(), present_.end()).swap(present_);
|
|
|
|
slack_type().swap(slack_);
|
|
|
|
}
|
|
|
|
|
2010-10-29 09:26:37 +03:00
|
|
|
|
|
|
|
} // namespace cxxmph
|
2011-12-05 20:03:10 +02:00
|
|
|
|
|
|
|
#endif // __CXXMPH_MPH_MAP_H__
|