2022-08-20 15:19:58 +02:00
|
|
|
//
|
2022-12-31 22:28:08 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
|
2022-08-20 15:19:58 +02:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/FlatHashSet.h"
|
|
|
|
#include "td/utils/HashTableUtils.h"
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2022-11-23 17:37:32 +01:00
|
|
|
template <class KeyT, class HashT = Hash<KeyT>, class EqT = std::equal_to<KeyT>>
|
2022-08-20 15:19:58 +02:00
|
|
|
class WaitFreeHashSet {
|
2022-11-18 11:08:04 +01:00
|
|
|
static constexpr size_t MAX_STORAGE_COUNT = 1 << 8;
|
2022-08-20 15:19:58 +02:00
|
|
|
static_assert((MAX_STORAGE_COUNT & (MAX_STORAGE_COUNT - 1)) == 0, "");
|
2022-11-21 16:12:26 +01:00
|
|
|
static constexpr uint32 DEFAULT_STORAGE_SIZE = 1 << 12;
|
2022-08-20 15:19:58 +02:00
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
FlatHashSet<KeyT, HashT, EqT> default_set_;
|
2022-08-20 15:19:58 +02:00
|
|
|
struct WaitFreeStorage {
|
2022-11-18 11:08:04 +01:00
|
|
|
WaitFreeHashSet sets_[MAX_STORAGE_COUNT];
|
2022-08-20 15:19:58 +02:00
|
|
|
};
|
|
|
|
unique_ptr<WaitFreeStorage> wait_free_storage_;
|
2022-11-18 11:08:04 +01:00
|
|
|
uint32 hash_mult_ = 1;
|
|
|
|
uint32 max_storage_size_ = DEFAULT_STORAGE_SIZE;
|
2022-08-20 15:19:58 +02:00
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
uint32 get_wait_free_index(const KeyT &key) const {
|
2022-11-24 00:09:04 +01:00
|
|
|
return randomize_hash(HashT()(key) * hash_mult_) & (MAX_STORAGE_COUNT - 1);
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
WaitFreeHashSet &get_wait_free_storage(const KeyT &key) {
|
|
|
|
return wait_free_storage_->sets_[get_wait_free_index(key)];
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
const WaitFreeHashSet &get_wait_free_storage(const KeyT &key) const {
|
|
|
|
return wait_free_storage_->sets_[get_wait_free_index(key)];
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void split_storage() {
|
|
|
|
CHECK(wait_free_storage_ == nullptr);
|
|
|
|
wait_free_storage_ = make_unique<WaitFreeStorage>();
|
2022-11-18 13:19:01 +01:00
|
|
|
uint32 next_hash_mult = hash_mult_ * 1000000007;
|
2022-11-18 11:08:04 +01:00
|
|
|
for (uint32 i = 0; i < MAX_STORAGE_COUNT; i++) {
|
|
|
|
auto &set = wait_free_storage_->sets_[i];
|
|
|
|
set.hash_mult_ = next_hash_mult;
|
|
|
|
set.max_storage_size_ = DEFAULT_STORAGE_SIZE + i * next_hash_mult % DEFAULT_STORAGE_SIZE;
|
|
|
|
}
|
2022-08-20 15:19:58 +02:00
|
|
|
for (auto &it : default_set_) {
|
|
|
|
get_wait_free_storage(it).insert(it);
|
|
|
|
}
|
|
|
|
default_set_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
void insert(const KeyT &key) {
|
2022-11-18 11:08:04 +01:00
|
|
|
if (wait_free_storage_ != nullptr) {
|
|
|
|
return get_wait_free_storage(key).insert(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
default_set_.insert(key);
|
|
|
|
if (default_set_.size() == max_storage_size_) {
|
2022-08-20 15:19:58 +02:00
|
|
|
split_storage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t count(const KeyT &key) const {
|
2022-11-18 11:08:04 +01:00
|
|
|
if (wait_free_storage_ != nullptr) {
|
|
|
|
return get_wait_free_storage(key).count(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
return default_set_.count(key);
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t erase(const KeyT &key) {
|
2022-11-18 11:08:04 +01:00
|
|
|
if (wait_free_storage_ != nullptr) {
|
|
|
|
return get_wait_free_storage(key).erase(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
return default_set_.erase(key);
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
void foreach(const std::function<void(const KeyT &key)> &callback) const {
|
2022-08-20 15:19:58 +02:00
|
|
|
if (wait_free_storage_ == nullptr) {
|
|
|
|
for (auto &it : default_set_) {
|
|
|
|
callback(it);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-11-18 11:08:04 +01:00
|
|
|
for (auto &it : wait_free_storage_->sets_) {
|
|
|
|
it.foreach(callback);
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-22 10:58:07 +01:00
|
|
|
KeyT get_random() const {
|
|
|
|
if (wait_free_storage_ != nullptr) {
|
|
|
|
for (size_t i = 0; i < MAX_STORAGE_COUNT; i++) {
|
|
|
|
if (!wait_free_storage_->sets_[i].empty()) {
|
|
|
|
return wait_free_storage_->sets_[i].get_random();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// no need to explicitly return KeyT()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (default_set_.empty()) {
|
|
|
|
return KeyT();
|
|
|
|
}
|
|
|
|
return *default_set_.begin();
|
|
|
|
}
|
|
|
|
|
2022-11-18 11:16:24 +01:00
|
|
|
size_t calc_size() const {
|
2022-08-20 15:19:58 +02:00
|
|
|
if (wait_free_storage_ == nullptr) {
|
|
|
|
return default_set_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t result = 0;
|
|
|
|
for (size_t i = 0; i < MAX_STORAGE_COUNT; i++) {
|
2022-11-18 11:16:24 +01:00
|
|
|
result += wait_free_storage_->sets_[i].calc_size();
|
2022-08-20 15:19:58 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool empty() const {
|
|
|
|
if (wait_free_storage_ == nullptr) {
|
|
|
|
return default_set_.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < MAX_STORAGE_COUNT; i++) {
|
|
|
|
if (!wait_free_storage_->sets_[i].empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|