10 #ifndef PMEMOBJ_CONCURRENT_HASH_MAP_HPP
11 #define PMEMOBJ_CONCURRENT_HASH_MAP_HPP
33 #include <initializer_list>
38 #include <type_traits>
48 struct hash<
pmem::obj::p<T>> {
52 return hash<T>()(x.
get_ro());
62 namespace concurrent_hash_map_internal
64 template <
typename SharedMutexT>
65 class shared_mutex_scoped_lock {
66 using rw_mutex_type = SharedMutexT;
69 shared_mutex_scoped_lock(
const shared_mutex_scoped_lock &) =
delete;
70 shared_mutex_scoped_lock &
71 operator=(
const shared_mutex_scoped_lock &) =
delete;
74 shared_mutex_scoped_lock() : mutex(nullptr), is_writer(false)
79 shared_mutex_scoped_lock(rw_mutex_type &m,
bool write =
true)
86 ~shared_mutex_scoped_lock()
94 acquire(rw_mutex_type &m,
bool write =
true)
101 mutex->lock_shared();
111 rw_mutex_type *m = mutex;
125 try_acquire(rw_mutex_type &m,
bool write =
true)
130 result = write ? m.try_lock() : m.try_lock_shared();
141 rw_mutex_type *mutex;
149 template <
typename ScopedLockType>
150 using scoped_lock_upgrade_to_writer =
151 decltype(std::declval<ScopedLockType>().upgrade_to_writer());
153 template <
typename ScopedLockType>
154 using scoped_lock_has_upgrade_to_writer =
155 detail::supports<ScopedLockType, scoped_lock_upgrade_to_writer>;
157 template <
typename ScopedLockType>
158 using scoped_lock_downgrade_to_reader =
159 decltype(std::declval<ScopedLockType>().downgrade_to_reader());
161 template <
typename ScopedLockType>
162 using scoped_lock_has_downgrade_to_reader =
163 detail::supports<ScopedLockType, scoped_lock_downgrade_to_reader>;
165 template <
typename ScopedLockType,
166 bool = scoped_lock_has_upgrade_to_writer<ScopedLockType>::value
167 &&scoped_lock_has_downgrade_to_reader<ScopedLockType>::value>
168 class scoped_lock_traits {
170 using scope_lock_type = ScopedLockType;
173 initial_rw_state(
bool write)
180 upgrade_to_writer(scope_lock_type &lock)
182 return lock.upgrade_to_writer();
186 downgrade_to_reader(scope_lock_type &lock)
188 return lock.downgrade_to_reader();
192 template <
typename ScopedLockType>
193 class scoped_lock_traits<ScopedLockType, false> {
195 using scope_lock_type = ScopedLockType;
198 initial_rw_state(
bool write)
206 upgrade_to_writer(scope_lock_type &lock)
215 downgrade_to_reader(scope_lock_type &lock)
227 template <
typename Key,
typename T,
typename Hash = std::hash<Key>,
228 typename KeyEqual = std::equal_to<Key>,
229 typename MutexType = pmem::obj::shared_mutex,
230 typename ScopedLockType = concurrent_hash_map_
internal::
231 shared_mutex_scoped_lock<MutexType>>
232 class concurrent_hash_map;
235 namespace concurrent_hash_map_internal
241 if (pmemobj_tx_stage() != TX_STAGE_NONE)
243 "Function called inside transaction scope.");
246 template <
typename Hash>
247 using transparent_key_equal =
typename Hash::transparent_key_equal;
249 template <
typename Hash>
250 using has_transparent_key_equal = detail::supports<Hash, transparent_key_equal>;
252 template <
typename Hash,
typename Pred,
253 bool = has_transparent_key_equal<Hash>::value>
254 struct key_equal_type {
255 using type =
typename Hash::transparent_key_equal;
258 template <
typename Hash,
typename Pred>
259 struct key_equal_type<Hash, Pred, false> {
263 template <
typename Mutex,
typename ScopedLockType>
265 assert_not_locked(Mutex &mtx)
268 ScopedLockType scoped_lock;
269 assert(scoped_lock.try_acquire(mtx));
270 scoped_lock.release();
276 template <
typename Key,
typename T,
typename MutexType,
typename ScopedLockType>
277 struct hash_map_node {
279 using mutex_t = MutexType;
282 using scoped_t = ScopedLockType;
284 using value_type = detail::pair<const Key, T>;
287 using node_ptr_t = detail::persistent_pool_ptr<
288 hash_map_node<Key, T, mutex_t, scoped_t>>;
299 hash_map_node(
const node_ptr_t &_next,
const Key &key)
301 item(std::piecewise_construct, std::forward_as_tuple(key),
302 std::forward_as_tuple())
306 hash_map_node(
const node_ptr_t &_next,
const Key &key,
const T &t)
307 : next(_next), item(key, t)
311 hash_map_node(
const node_ptr_t &_next, value_type &&i)
312 : next(_next), item(std::move(i))
316 template <
typename... Args>
317 hash_map_node(
const node_ptr_t &_next, Args &&... args)
318 : next(_next), item(std::forward<Args>(args)...)
322 hash_map_node(
const node_ptr_t &_next,
const value_type &i)
323 : next(_next), item(i)
328 hash_map_node(
const hash_map_node &) =
delete;
331 hash_map_node &operator=(
const hash_map_node &) =
delete;
338 template <
typename Bucket>
339 class segment_traits {
342 using segment_index_t = size_t;
343 using size_type = size_t;
344 using bucket_type = Bucket;
348 constexpr
static size_type max_allocation_size = PMEMOBJ_MAX_ALLOC_SIZE;
351 constexpr
static segment_index_t first_big_block = 27;
356 constexpr
static size_type big_block_size = size_type(1)
360 static_assert((big_block_size *
sizeof(bucket_type)) <
362 "Block size exceeds max_allocation_size");
365 constexpr
static segment_index_t
366 first_block_in_segment(segment_index_t seg)
368 return seg < first_big_block
371 (segment_index_t(1) << (seg - first_big_block)) - 1);
375 constexpr
static size_type
376 blocks_in_segment(segment_index_t seg)
378 return seg < first_big_block
380 : segment_index_t(1) << (seg - first_big_block);
384 constexpr
static size_type
385 block_size(segment_index_t b)
387 return b < first_big_block ? segment_size(b ? b : 1)
393 constexpr
static segment_index_t embedded_segments = 1;
396 constexpr
static size_type embedded_buckets = 1 << embedded_segments;
399 constexpr
static segment_index_t number_of_segments = 32;
402 static const size_type first_block = 8;
405 constexpr
static segment_index_t
408 return first_block_in_segment(number_of_segments);
412 static segment_index_t
413 segment_index_of(size_type index)
415 return segment_index_t(detail::Log2(index | 1));
419 constexpr
static segment_index_t
420 segment_base(segment_index_t k)
422 return (segment_index_t(1) << k) & ~segment_index_t(1);
426 constexpr
static size_type
427 segment_size(segment_index_t k)
429 return size_type(1) << k;
432 embedded_segments < first_big_block,
433 "Number of embedded segments cannot exceed max_allocation_size");
452 template <
typename BlockTable,
typename SegmentTraits,
bool is_const>
453 class segment_facade_impl :
public SegmentTraits {
455 using traits_type = SegmentTraits;
456 using traits_type::block_size;
457 using traits_type::blocks_in_segment;
458 using traits_type::embedded_buckets;
459 using traits_type::embedded_segments;
460 using traits_type::first_block;
461 using traits_type::first_block_in_segment;
462 using traits_type::segment_base;
463 using traits_type::segment_size;
466 using table_reference =
467 typename std::conditional<is_const,
const BlockTable &,
470 using table_pointer =
471 typename std::conditional<is_const,
const BlockTable *,
474 using bucket_type =
typename traits_type::bucket_type;
475 using segment_index_t =
typename traits_type::segment_index_t;
476 using size_type =
typename traits_type::size_type;
479 segment_facade_impl(table_reference table, segment_index_t s)
480 : my_table(&table), my_seg(s)
482 assert(my_seg < traits_type::number_of_segments);
486 segment_facade_impl(
const segment_facade_impl &src)
487 : my_table(src.my_table), my_seg(src.my_seg)
491 segment_facade_impl(segment_facade_impl &&src) =
default;
494 segment_facade_impl &
495 operator=(
const segment_facade_impl &src)
497 my_table = src.my_table;
503 segment_facade_impl &
504 operator=(segment_facade_impl &&src)
506 my_table = src.my_table;
517 bucket_type &operator[](size_type i)
const
521 segment_index_t table_block = first_block_in_segment(my_seg);
522 size_type b_size = block_size(table_block);
524 table_block += i / b_size;
527 return (*my_table)[table_block][
static_cast<std::ptrdiff_t
>(i)];
533 segment_facade_impl &
546 segment_facade_impl tmp = *
this;
554 segment_facade_impl &
567 segment_facade_impl tmp = *
this;
575 segment_facade_impl &
576 operator+=(segment_index_t off)
585 segment_facade_impl &
586 operator-=(segment_index_t off)
596 operator+(segment_index_t off)
const
598 return segment_facade_impl(*(this->my_table),
606 operator-(segment_index_t off)
const
608 return segment_facade_impl(*(this->my_table),
616 enable(pool_base &pop)
618 assert(my_seg >= embedded_segments);
620 if (my_seg < first_block) {
621 enable_first_block(pop);
623 enable_big_segment(pop);
633 assert(my_seg >= embedded_segments);
635 if (my_seg < first_block) {
636 if (my_seg == embedded_segments) {
637 size_type sz = segment_size(first_block) -
639 delete_persistent<bucket_type[]>(
640 (*my_table)[my_seg], sz);
642 (*my_table)[my_seg] =
nullptr;
644 block_range blocks = segment_blocks(my_seg);
646 for (segment_index_t b = blocks.first;
647 b < blocks.second; ++b) {
648 if ((*my_table)[b] !=
nullptr) {
649 delete_persistent<bucket_type[]>(
650 (*my_table)[b], block_size(b));
651 (*my_table)[b] =
nullptr;
663 return segment_size(my_seg ? my_seg : 1);
674 block_range blocks = segment_blocks(my_seg);
676 for (segment_index_t b = blocks.first; b < blocks.second; ++b) {
677 if ((*my_table)[b] ==
nullptr)
685 using block_range = std::pair<segment_index_t, segment_index_t>;
691 segment_blocks(segment_index_t seg)
693 segment_index_t begin = first_block_in_segment(seg);
695 return block_range(begin, begin + blocks_in_segment(seg));
699 enable_first_block(pool_base &pop)
701 assert(my_seg == embedded_segments);
706 segment_size(first_block) - embedded_buckets;
707 (*my_table)[my_seg] =
708 make_persistent<bucket_type[]>(sz);
710 persistent_ptr<bucket_type> base =
711 (*my_table)[embedded_segments].raw();
713 for (segment_index_t s = my_seg + 1; s < first_block;
716 static_cast<std::ptrdiff_t
>(
718 segment_base(my_seg));
720 (*my_table)[s] = (base + off).raw();
728 enable_big_segment(pool_base &pop)
730 block_range blocks = segment_blocks(my_seg);
734 for (segment_index_t b = blocks.first;
735 b < blocks.second; ++b) {
736 assert((*my_table)[b] ==
nullptr);
737 (*my_table)[b] = make_persistent<bucket_type[]>(
746 table_pointer my_table;
749 segment_index_t my_seg;
758 template <
typename Key,
typename T,
typename MutexType,
typename ScopedLockType>
759 class hash_map_base {
761 using mutex_t = MutexType;
762 using scoped_t = ScopedLockType;
765 using size_type = size_t;
768 using hashcode_type = size_t;
771 using node = hash_map_node<Key, T, mutex_t, scoped_t>;
774 using node_ptr_t = detail::persistent_pool_ptr<node>;
778 using mutex_t = MutexType;
779 using scoped_t = ScopedLockType;
785 p<std::atomic<uint64_t>> rehashed;
788 node_ptr_t node_list;
791 bucket() : node_list(nullptr)
793 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
794 VALGRIND_HG_DISABLE_CHECKING(&rehashed,
797 rehashed.get_rw() =
false;
806 is_rehashed(std::memory_order order)
808 return rehashed.get_ro().load(order);
812 set_rehashed(std::memory_order order)
814 rehashed.get_rw().store(
true, order);
818 bucket(
const bucket &) =
delete;
821 bucket &operator=(
const bucket &) =
delete;
825 using segment_traits_t = segment_traits<bucket>;
828 using segment_index_t =
typename segment_traits_t::segment_index_t;
831 static const size_type embedded_buckets =
832 segment_traits_t::embedded_buckets;
835 static const size_type first_block = segment_traits_t::first_block;
838 constexpr
static size_type block_table_size =
839 segment_traits_t::number_of_blocks();
842 using segment_ptr_t = persistent_ptr<bucket[]>;
845 using bucket_ptr_t = persistent_ptr<bucket>;
848 using blocks_table_t = segment_ptr_t[block_table_size];
855 p<int64_t> size_diff = 0;
856 std::aligned_storage<56, 8> padding;
859 using tls_t = detail::enumerable_thread_specific<tls_data_t>;
861 enum feature_flags : uint32_t { FEATURE_CONSISTENT_SIZE = 1 };
866 p<uint32_t> incompat;
872 p<uint64_t> my_pool_uuid;
876 features layout_features;
880 std::aligned_storage<
sizeof(size_t),
sizeof(
size_t)>::type
885 std::atomic<hashcode_type> my_mask;
888 std::size_t value_size;
891 std::aligned_storage<24, 8>::type padding1;
897 blocks_table_t my_table;
902 std::atomic<size_type> my_size;
905 std::aligned_storage<24, 8>::type padding2;
908 persistent_ptr<tls_t> tls_ptr;
915 p<size_t> on_init_size;
918 std::aligned_storage<40, 8>::type reserved;
921 segment_enable_mutex_t my_segment_enable_mutex;
924 bucket my_embedded_segment[embedded_buckets];
929 static constexpr features
932 return {FEATURE_CONSISTENT_SIZE, 0};
935 const std::atomic<hashcode_type> &
936 mask() const noexcept
941 std::atomic<hashcode_type> &
950 return my_size.load(std::memory_order_relaxed);
956 assert(this->tls_ptr !=
nullptr);
957 return this->tls_ptr->local().size_diff;
964 assert(this->tls_ptr !=
nullptr);
966 pool_base pop = pool_base{pmemobj_pool_by_ptr(
this)};
968 int64_t last_run_size = 0;
969 for (
auto &data : *tls_ptr)
970 last_run_size += data.size_diff;
973 assert(last_run_size >= 0 ||
974 static_cast<int64_t
>(
static_cast<size_t>(last_run_size) +
978 on_init_size +=
static_cast<size_t>(last_run_size);
982 this->my_size = on_init_size;
986 using const_segment_facade_t =
987 segment_facade_impl<blocks_table_t, segment_traits_t, true>;
990 using segment_facade_t =
991 segment_facade_impl<blocks_table_t, segment_traits_t, false>;
997 sizeof(size_type) ==
sizeof(std::atomic<size_type>),
998 "std::atomic should have the same layout as underlying integral type");
1000 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
1001 VALGRIND_HG_DISABLE_CHECKING(&my_mask,
sizeof(my_mask));
1003 layout_features = {0, 0};
1005 PMEMoid oid = pmemobj_oid(
this);
1007 assert(!OID_IS_NULL(oid));
1009 my_pool_uuid = oid.pool_uuid_lo;
1011 pool_base pop = get_pool_base();
1013 for (size_type i = 0; i < segment_traits_t::embedded_segments;
1016 pmemobj_oid(my_embedded_segment +
1017 segment_traits_t::segment_base(i));
1018 segment_facade_t seg(my_table, i);
1019 mark_rehashed<false>(pop, seg);
1026 this->tls_ptr =
nullptr;
1037 auto pop = get_pool_base();
1039 if ((layout_features.compat & FEATURE_CONSISTENT_SIZE) &&
1042 delete_persistent<tls_t>(tls_ptr);
1054 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
1055 VALGRIND_HG_DISABLE_CHECKING(&my_size,
sizeof(my_size));
1056 VALGRIND_HG_DISABLE_CHECKING(&my_mask,
sizeof(my_mask));
1058 #if LIBPMEMOBJ_CPP_VG_PMEMCHECK_ENABLED
1059 VALGRIND_PMC_REMOVE_PMEM_MAPPING(&my_size,
sizeof(my_size));
1060 VALGRIND_PMC_REMOVE_PMEM_MAPPING(&my_mask,
sizeof(my_mask));
1063 hashcode_type m = embedded_buckets - 1;
1065 const_segment_facade_t segment(
1066 my_table, segment_traits_t::embedded_segments);
1068 while (segment.is_valid()) {
1069 m += segment.size();
1073 mask().store(m, std::memory_order_relaxed);
1079 template <
bool Flush = true>
1081 mark_rehashed(pool_base &pop, segment_facade_t &segment)
1083 for (size_type i = 0; i < segment.size(); ++i) {
1084 bucket *b = &(segment[i]);
1086 assert_not_locked<mutex_t, scoped_t>(b->mutex);
1088 b->set_rehashed(std::memory_order_relaxed);
1093 for (size_type i = 0; i < segment.size(); ++i) {
1094 bucket *b = &(segment[i]);
1095 pop.flush(b->rehashed);
1106 enable_segment(segment_index_t k,
bool is_initial =
false)
1110 pool_base pop = get_pool_base();
1113 if (k >= first_block) {
1114 segment_facade_t new_segment(my_table, k);
1116 sz = new_segment.size();
1117 if (!new_segment.is_valid())
1118 new_segment.enable(pop);
1121 mark_rehashed(pop, new_segment);
1128 assert(k == segment_traits_t::embedded_segments);
1130 for (segment_index_t i = k; i < first_block; ++i) {
1131 segment_facade_t new_segment(my_table, i);
1133 if (!new_segment.is_valid())
1134 new_segment.enable(pop);
1137 mark_rehashed(pop, new_segment);
1141 sz = segment_traits_t::segment_size(first_block);
1143 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
1144 ANNOTATE_HAPPENS_BEFORE(&my_mask);
1146 mask().store(sz - 1, std::memory_order_release);
1154 get_bucket(hashcode_type h)
const
1156 segment_index_t s = segment_traits_t::segment_index_of(h);
1158 h -= segment_traits_t::segment_base(s);
1160 const_segment_facade_t segment(my_table, s);
1162 assert(segment.is_valid());
1164 return &(segment[h]);
1171 check_mask_race(hashcode_type h, hashcode_type &m)
const
1173 hashcode_type m_now, m_old = m;
1175 m_now = mask().load(std::memory_order_acquire);
1176 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
1177 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
1181 return check_rehashing_collision(h, m_old, m = m_now);
1190 check_rehashing_collision(hashcode_type h, hashcode_type m_old,
1191 hashcode_type m)
const
1195 if ((h & m_old) != (h & m)) {
1200 for (++m_old; !(h & m_old); m_old <<= 1)
1203 m_old = (m_old << 1) - 1;
1205 assert((m_old & (m_old + 1)) == 0 && m_old <= m);
1208 bucket *b = get_bucket(h & m_old);
1209 return b->is_rehashed(std::memory_order_acquire);
1219 template <
typename Node,
typename... Args>
1221 insert_new_node_internal(bucket *b,
1222 detail::persistent_pool_ptr<Node> &new_node,
1225 assert(pmemobj_tx_stage() == TX_STAGE_WORK);
1227 new_node = pmem::obj::make_persistent<Node>(
1228 b->node_list, std::forward<Args>(args)...);
1229 b->node_list = new_node;
1236 template <
typename Node,
typename... Args>
1238 insert_new_node(bucket *b, detail::persistent_pool_ptr<Node> &new_node,
1241 pool_base pop = get_pool_base();
1248 if (pmemobj_tx_stage() == TX_STAGE_WORK) {
1249 insert_new_node_internal(b, new_node,
1250 std::forward<Args>(args)...);
1251 this->on_init_size++;
1253 auto &size_diff = thread_size_diff();
1256 insert_new_node_internal(
1258 std::forward<Args>(args)...);
1264 return ++(this->my_size);
1272 check_growth(hashcode_type m, size_type sz)
1275 segment_index_t new_seg =
1276 static_cast<segment_index_t
>(detail::Log2(
1280 assert(segment_facade_t(my_table, new_seg - 1)
1283 std::unique_lock<segment_enable_mutex_t> lock(
1284 my_segment_enable_mutex, std::try_to_lock);
1287 if (mask().load(std::memory_order_relaxed) ==
1291 enable_segment(new_seg);
1305 reserve(size_type buckets)
1312 bool is_initial = this->size() == 0;
1314 for (size_type m = mask(); buckets > m; m = mask())
1316 segment_traits_t::segment_index_of(m + 1),
1325 internal_swap(hash_map_base<Key, T, mutex_t, scoped_t> &table)
1327 pool_base p = get_pool_base();
1331 this->my_pool_uuid.swap(table.my_pool_uuid);
1342 this->mask() = table.mask().exchange(
1343 this->mask(), std::memory_order_relaxed);
1345 this->my_size = table.my_size.exchange(
1346 this->my_size, std::memory_order_relaxed);
1349 std::swap(this->tls_ptr, table.tls_ptr);
1351 for (size_type i = 0; i < embedded_buckets; ++i)
1352 this->my_embedded_segment[i].node_list.swap(
1353 table.my_embedded_segment[i].node_list);
1355 for (size_type i = segment_traits_t::embedded_segments;
1356 i < block_table_size; ++i)
1357 this->my_table[i].swap(table.my_table[i]);
1371 pmemobj_pool_by_oid(PMEMoid{my_pool_uuid, 0});
1373 return pool_base(pop);
1382 template <
typename Container,
bool is_const>
1383 class hash_map_iterator {
1385 using iterator_category = std::forward_iterator_tag;
1386 using difference_type = ptrdiff_t;
1387 using map_type = Container;
1388 using value_type =
typename map_type::value_type;
1389 using node =
typename map_type::node;
1390 using bucket =
typename map_type::bucket;
1391 using map_ptr =
typename std::conditional<is_const,
const map_type *,
1394 typename std::conditional<is_const,
1395 typename map_type::const_reference,
1396 typename map_type::reference>::type;
1398 typename std::conditional<is_const,
1399 typename map_type::const_pointer,
1400 typename map_type::pointer>::type;
1402 template <
typename C,
bool M,
bool U>
1403 friend bool operator==(
const hash_map_iterator<C, M> &i,
1404 const hash_map_iterator<C, U> &j);
1406 template <
typename C,
bool M,
bool U>
1407 friend bool operator!=(
const hash_map_iterator<C, M> &i,
1408 const hash_map_iterator<C, U> &j);
1410 friend class hash_map_iterator<map_type, true>;
1412 #if !defined(_MSC_VER) || defined(__INTEL_COMPILER)
1414 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
1415 typename MutexType,
typename ScopedLockType>
1416 friend class ::pmem::obj::concurrent_hash_map;
1420 hash_map_iterator(map_ptr map,
size_t index)
1421 : my_map(map), my_index(index), my_bucket(nullptr), my_node(nullptr)
1423 if (my_index <= my_map->mask()) {
1424 bucket_accessor acc(my_map, my_index);
1425 my_bucket = acc.get();
1426 my_node =
static_cast<node *
>(
1427 my_bucket->node_list.get(my_map->my_pool_uuid));
1430 advance_to_next_bucket();
1437 hash_map_iterator() =
default;
1440 hash_map_iterator(
const hash_map_iterator &other)
1441 : my_map(other.my_map),
1442 my_index(other.my_index),
1443 my_bucket(other.my_bucket),
1444 my_node(other.my_node)
1449 template <
typename U = void,
1450 typename =
typename std::enable_if<is_const, U>::type>
1451 hash_map_iterator(
const hash_map_iterator<map_type, false> &other)
1452 : my_map(other.my_map),
1453 my_index(other.my_index),
1454 my_bucket(other.my_bucket),
1455 my_node(other.my_node)
1459 hash_map_iterator &operator=(
const hash_map_iterator &it) =
default;
1462 reference operator*()
const
1465 return my_node->item;
1469 pointer operator->()
const
1471 return &operator*();
1478 my_node =
static_cast<node *
>(
1479 my_node->next.get((my_map->my_pool_uuid)));
1482 advance_to_next_bucket();
1491 hash_map_iterator old(*
this);
1498 map_ptr my_map =
nullptr;
1501 size_t my_index = 0;
1504 bucket *my_bucket =
nullptr;
1507 node *my_node =
nullptr;
1509 class bucket_accessor {
1511 bucket_accessor(map_ptr m,
size_t index)
1513 my_bucket = m->get_bucket(index);
1527 advance_to_next_bucket()
1529 size_t k = my_index + 1;
1533 while (k <= my_map->mask()) {
1534 bucket_accessor acc(my_map, k);
1535 my_bucket = acc.get();
1537 if (my_bucket->node_list) {
1538 my_node =
static_cast<node *
>(
1539 my_bucket->node_list.get(
1540 my_map->my_pool_uuid));
1556 template <
typename Container,
bool M,
bool U>
1558 operator==(
const hash_map_iterator<Container, M> &i,
1559 const hash_map_iterator<Container, U> &j)
1561 return i.my_node == j.my_node && i.my_map == j.my_map;
1564 template <
typename Container,
bool M,
bool U>
1566 operator!=(
const hash_map_iterator<Container, M> &i,
1567 const hash_map_iterator<Container, U> &j)
1569 return i.my_node != j.my_node || i.my_map != j.my_map;
1629 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
1630 typename MutexType,
typename ScopedLockType>
1632 :
protected concurrent_hash_map_internal::hash_map_base<Key, T, MutexType,
1634 template <
typename Container,
bool is_const>
1635 friend class concurrent_hash_map_internal::hash_map_iterator;
1638 using size_type =
typename concurrent_hash_map_internal::hash_map_base<
1639 Key, T, MutexType, ScopedLockType>::size_type;
1640 using hashcode_type =
1641 typename concurrent_hash_map_internal::hash_map_base<
1642 Key, T, MutexType, ScopedLockType>::hashcode_type;
1643 using key_type = Key;
1644 using mapped_type = T;
1645 using value_type =
typename concurrent_hash_map_internal::hash_map_base<
1646 Key, T, MutexType, ScopedLockType>::node::value_type;
1647 using difference_type = ptrdiff_t;
1648 using pointer = value_type *;
1649 using const_pointer =
const value_type *;
1650 using reference = value_type &;
1651 using const_reference =
const value_type &;
1652 using iterator = concurrent_hash_map_internal::hash_map_iterator<
1654 using const_iterator = concurrent_hash_map_internal::hash_map_iterator<
1656 using hasher = Hash;
1657 using key_equal =
typename concurrent_hash_map_internal::key_equal_type<
1658 Hash, KeyEqual>::type;
1661 using mutex_t = MutexType;
1662 using scoped_t = ScopedLockType;
1666 using hash_map_base =
1667 concurrent_hash_map_internal::hash_map_base<Key, T, mutex_t,
1669 using hash_map_base::calculate_mask;
1670 using hash_map_base::check_growth;
1671 using hash_map_base::check_mask_race;
1672 using hash_map_base::embedded_buckets;
1673 using hash_map_base::FEATURE_CONSISTENT_SIZE;
1674 using hash_map_base::get_bucket;
1675 using hash_map_base::get_pool_base;
1676 using hash_map_base::header_features;
1677 using hash_map_base::insert_new_node;
1678 using hash_map_base::internal_swap;
1679 using hash_map_base::layout_features;
1680 using hash_map_base::mask;
1681 using hash_map_base::reserve;
1682 using tls_t =
typename hash_map_base::tls_t;
1683 using node =
typename hash_map_base::node;
1684 using node_mutex_t =
typename node::mutex_t;
1685 using node_ptr_t =
typename hash_map_base::node_ptr_t;
1686 using bucket =
typename hash_map_base::bucket;
1687 using bucket_lock_type =
typename bucket::scoped_t;
1688 using segment_index_t =
typename hash_map_base::segment_index_t;
1689 using segment_traits_t =
typename hash_map_base::segment_traits_t;
1690 using segment_facade_t =
typename hash_map_base::segment_facade_t;
1691 using scoped_lock_traits_type =
1692 concurrent_hash_map_internal::scoped_lock_traits<scoped_t>;
1695 using persistent_node_ptr_t = detail::persistent_pool_ptr<node>;
1698 delete_node(
const node_ptr_t &n)
1700 delete_persistent<node>(
1701 detail::static_persistent_pool_pointer_cast<node>(n)
1702 .get_persistent_ptr(this->my_pool_uuid));
1705 template <
typename K>
1706 persistent_node_ptr_t
1707 search_bucket(
const K &key, bucket *b)
const
1709 assert(b->is_rehashed(std::memory_order_relaxed));
1711 persistent_node_ptr_t n =
1712 detail::static_persistent_pool_pointer_cast<node>(
1717 n.get(this->my_pool_uuid)->item.first)) {
1718 n = detail::static_persistent_pool_pointer_cast<node>(
1719 n.get(this->my_pool_uuid)->next);
1735 bucket_lock_type::mutex = b.bucket_lock_type::mutex;
1736 bucket_lock_type::is_writer =
1737 b.bucket_lock_type::is_writer;
1739 b.bucket_lock_type::mutex =
nullptr;
1740 b.bucket_lock_type::is_writer =
false;
1744 const hashcode_type h,
bool writer =
false)
1760 bool writer =
false)
1762 my_b = base->get_bucket(h);
1764 if (my_b->is_rehashed(std::memory_order_acquire) ==
1766 bucket_lock_type::try_acquire(this->my_b->mutex,
1768 if (my_b->is_rehashed(
1769 std::memory_order_relaxed) ==
1772 base->rehash_bucket<
false>(my_b, h);
1775 bucket_lock_type::acquire(my_b->mutex, writer);
1778 assert(my_b->is_rehashed(std::memory_order_relaxed));
1787 return bucket_lock_type::is_writer;
1818 const hashcode_type h,
1819 bool writer =
false)
1821 acquire(base, h, writer);
1829 bool writer =
false)
1831 my_b = base->get_bucket(h);
1833 if (my_b->is_rehashed(std::memory_order_relaxed) ==
1836 base->rehash_bucket<
true>(my_b, h);
1839 assert(my_b->is_rehashed(std::memory_order_relaxed));
1875 get_hash_code(node_ptr_t &n)
1878 detail::static_persistent_pool_pointer_cast<node>(n)(
1883 template <
bool serial>
1885 rehash_bucket(bucket *b_new,
const hashcode_type h)
1887 using accessor_type =
typename std::conditional<
1888 serial, serial_bucket_accessor, bucket_accessor>::type;
1890 using scoped_lock_traits_type =
1891 concurrent_hash_map_internal::scoped_lock_traits<
1897 pool_base pop = get_pool_base();
1898 node_ptr_t *p_new = &(b_new->node_list);
1902 if (*p_new !=
nullptr) {
1903 assert(!b_new->is_rehashed(std::memory_order_relaxed));
1905 b_new->set_rehashed(std::memory_order_relaxed);
1906 pop.persist(b_new->rehashed);
1912 hashcode_type mask = (1u << detail::Log2(h)) - 1;
1913 assert((h & mask) < h);
1914 accessor_type b_old(
1916 scoped_lock_traits_type::initial_rw_state(
true));
1920 mask = (mask << 1) | 1;
1921 assert((mask & (mask + 1)) == 0 && (h & mask) == h);
1924 for (node_ptr_t *p_old = &(b_old->node_list),
1927 hashcode_type c = get_hash_code(n);
1929 hashcode_type bmask = h & (mask >> 1);
1933 : (1u << (detail::Log2(bmask) + 1)) - 1;
1935 assert((c & bmask) == (h & bmask));
1938 if ((c & mask) == h) {
1939 if (!b_old.is_writer() &&
1940 !scoped_lock_traits_type::
1941 upgrade_to_writer(b_old)) {
1951 *p_old = n(this->my_pool_uuid)->next;
1953 p_new = &(n(this->my_pool_uuid)->next);
1956 p_old = &(n(this->my_pool_uuid)->next);
1964 b_new->set_rehashed(std::memory_order_release);
1965 pop.persist(b_new->rehashed);
1969 check_incompat_features()
1971 if (layout_features.incompat != header_features().incompat)
1973 "Incompat flags mismatch, for more details go to: https://pmem.io/libpmemobj-cpp\n");
1975 if ((layout_features.compat & FEATURE_CONSISTENT_SIZE) &&
1976 this->value_size !=
sizeof(value_type))
1978 "Size of value_type is different than the one stored in the pool\n");
1987 :
protected node::scoped_t {
1992 using node::scoped_t::try_acquire;
1999 const typename concurrent_hash_map::value_type;
2020 concurrent_hash_map_internal::check_outside_tx();
2023 node::scoped_t::release();
2035 return my_node->item;
2053 concurrent_hash_map_internal::check_outside_tx();
2068 hashcode_type my_hash;
2083 assert(this->my_node);
2085 return this->my_node->item;
2121 reserve(table.
size());
2139 template <
typename I>
2144 reserve(
static_cast<size_type
>(std::distance(first, last)));
2172 check_incompat_features();
2180 if (!(layout_features.compat & FEATURE_CONSISTENT_SIZE)) {
2182 std::distance(this->
begin(), this->
end());
2183 assert(actual_size >= 0);
2185 this->my_size =
static_cast<size_t>(actual_size);
2187 auto pop = get_pool_base();
2189 this->tls_ptr = make_persistent<tls_t>();
2190 this->on_init_size =
2191 static_cast<size_t>(actual_size);
2192 this->value_size =
sizeof(value_type);
2194 layout_features.compat |=
2195 FEATURE_CONSISTENT_SIZE;
2198 assert(this->tls_ptr !=
nullptr);
2199 this->tls_restore();
2202 assert(this->
size() ==
2203 size_type(std::distance(this->
begin(), this->
end())));
2207 "runtime_initialize(bool) is now deprecated, use runtime_initialize(void)")]]
void
2210 check_incompat_features();
2214 if (!graceful_shutdown) {
2216 std::distance(this->
begin(), this->
end());
2217 assert(actual_size >= 0);
2218 this->my_size =
static_cast<size_type
>(actual_size);
2220 assert(this->
size() ==
2221 size_type(std::distance(this->
begin(),
2237 concurrent_hash_map &
2240 if (
this != &table) {
2279 void rehash(size_type n = 0);
2312 auto pop = get_pool_base();
2350 return iterator(
this, 0);
2360 return iterator(
this, mask() + 1);
2370 return const_iterator(
this, 0);
2380 return const_iterator(
this, mask() + 1);
2389 return hash_map_base::size();
2398 return this->
size() == 0;
2407 return (~size_type(0)) /
sizeof(node);
2436 concurrent_hash_map_internal::check_outside_tx();
2439 key,
nullptr,
false);
2453 template <
typename K,
2454 typename =
typename std::enable_if<
2455 concurrent_hash_map_internal::
2456 has_transparent_key_equal<hasher>::value,
2461 concurrent_hash_map_internal::check_outside_tx();
2464 key,
nullptr,
false);
2476 concurrent_hash_map_internal::check_outside_tx();
2481 key, &result,
false);
2497 template <
typename K,
2498 typename =
typename std::enable_if<
2499 concurrent_hash_map_internal::
2500 has_transparent_key_equal<hasher>::value,
2505 concurrent_hash_map_internal::check_outside_tx();
2510 key, &result,
false);
2522 concurrent_hash_map_internal::check_outside_tx();
2526 return internal_find(key, &result,
true);
2542 template <
typename K,
2543 typename =
typename std::enable_if<
2544 concurrent_hash_map_internal::
2545 has_transparent_key_equal<hasher>::value,
2550 concurrent_hash_map_internal::check_outside_tx();
2554 return internal_find(key, &result,
true);
2566 concurrent_hash_map_internal::check_outside_tx();
2570 return internal_insert(key, &result,
false, key);
2583 concurrent_hash_map_internal::check_outside_tx();
2587 return internal_insert(key, &result,
true, key);
2600 concurrent_hash_map_internal::check_outside_tx();
2604 return internal_insert(value.first, &result,
false, value);
2617 concurrent_hash_map_internal::check_outside_tx();
2621 return internal_insert(value.first, &result,
true, value);
2633 concurrent_hash_map_internal::check_outside_tx();
2635 return internal_insert(value.first,
nullptr,
false, value);
2648 concurrent_hash_map_internal::check_outside_tx();
2652 return internal_insert(value.first, &result,
false,
2666 concurrent_hash_map_internal::check_outside_tx();
2670 return internal_insert(value.first, &result,
true,
2683 concurrent_hash_map_internal::check_outside_tx();
2685 return internal_insert(value.first,
nullptr,
false,
2694 template <
typename I>
2698 concurrent_hash_map_internal::check_outside_tx();
2700 for (; first != last; ++first)
2712 concurrent_hash_map_internal::check_outside_tx();
2714 insert(il.begin(), il.end());
2725 template <
typename M>
2729 concurrent_hash_map_internal::check_outside_tx();
2732 auto result = internal_insert(key, &acc,
true, key,
2733 std::forward<M>(obj));
2738 acc->second = std::forward<M>(obj);
2753 template <
typename M>
2757 concurrent_hash_map_internal::check_outside_tx();
2760 auto result = internal_insert(key, &acc,
true, std::move(key),
2761 std::forward<M>(obj));
2766 acc->second = std::forward<M>(obj);
2782 typename K,
typename M,
2783 typename =
typename std::enable_if<
2784 concurrent_hash_map_internal::has_transparent_key_equal<
2786 std::is_constructible<key_type, K>::value,
2791 concurrent_hash_map_internal::check_outside_tx();
2795 internal_insert(key, &acc,
true, std::forward<K>(key),
2796 std::forward<M>(obj));
2801 acc->second = std::forward<M>(obj);
2819 concurrent_hash_map_internal::check_outside_tx();
2821 return internal_erase(key);
2843 defragment(
double start_percent = 0,
double amount_percent = 100)
2845 double end_percent = start_percent + amount_percent;
2846 if (start_percent < 0 || start_percent >= 100 ||
2847 end_percent < 0 || end_percent > 100 ||
2848 start_percent >= end_percent) {
2849 throw std::range_error(
"incorrect range");
2852 size_t max_index = mask().load(std::memory_order_acquire);
2853 size_t start_index =
2854 static_cast<size_t>((start_percent * max_index) / 100);
2856 static_cast<size_t>((end_percent * max_index) / 100);
2860 end_index = (std::min)(end_index, max_index);
2862 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
2863 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
2876 for (
size_t i = end_index + 1; i >= start_index + 1; i--) {
2888 return my_defrag.
run();
2905 template <
typename K,
2906 typename =
typename std::enable_if<
2907 concurrent_hash_map_internal::
2908 has_transparent_key_equal<hasher>::value,
2913 concurrent_hash_map_internal::check_outside_tx();
2915 return internal_erase(key);
2925 bool try_acquire_item(const_accessor *result, node_mutex_t &
mutex,
2934 using mutex_t = MutexType;
2940 vec.emplace_back(base, h,
true );
2941 bucket *b = vec.back().get();
2943 auto node_ptr =
static_cast<node *
>(
2944 b->node_list.get(base->my_pool_uuid));
2948 if (!base->try_acquire_item(&ca,
2956 static_cast<node *
>(node_ptr->next.get(
2957 (base->my_pool_uuid)));
2964 std::vector<bucket_accessor> vec;
2967 template <
typename K>
2968 bool internal_find(
const K &key, const_accessor *result,
bool write);
2970 template <
typename K,
typename... Args>
2971 bool internal_insert(
const K &key, const_accessor *result,
bool write,
2975 template <
bool Bucket_rw_lock,
typename K>
2976 persistent_node_ptr_t
2977 get_node(
const K &key, bucket_accessor &b)
2980 auto n = search_bucket(key, b.get());
2983 if (Bucket_rw_lock && !b.is_writer() &&
2984 !scoped_lock_traits_type::upgrade_to_writer(b)) {
2988 n = search_bucket(key, b.get());
2991 scoped_lock_traits_type::
2992 downgrade_to_reader(b);
3001 template <
typename K>
3002 bool internal_erase(
const K &key);
3004 void clear_segment(segment_index_t s);
3011 template <
typename I>
3021 auto node_ptr =
static_cast<node *
>(
3022 b->node_list.get(this->my_pool_uuid));
3033 node_ptr =
static_cast<node *
>(
3034 node_ptr->next.get((this->my_pool_uuid)));
3039 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3040 typename MutexType,
typename ScopedLockType>
3042 concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3043 ScopedLockType>::try_acquire_item(const_accessor *result,
3044 node_mutex_t &mutex,
3048 if (!result->try_acquire(mutex, write)) {
3049 for (detail::atomic_backoff backoff(
true);;) {
3050 if (result->try_acquire(mutex, write))
3053 if (!backoff.bounded_pause())
3061 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3062 typename MutexType,
typename ScopedLockType>
3063 template <
typename K>
3065 concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3066 ScopedLockType>::internal_find(
const K &key,
3067 const_accessor *result,
3070 assert(!result || !result->my_node);
3072 hashcode_type m = mask().load(std::memory_order_acquire);
3073 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
3074 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
3077 assert((m & (m + 1)) == 0);
3079 hashcode_type
const h = hasher{}(key);
3081 persistent_node_ptr_t node;
3087 scoped_lock_traits_type::initial_rw_state(
false));
3088 node = get_node<false>(key, b);
3092 if (check_mask_race(h, m)) {
3103 result, node.get(this->my_pool_uuid)->mutex, write))
3110 std::this_thread::yield();
3112 m = mask().load(std::memory_order_acquire);
3113 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
3114 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
3119 result->my_node = node.get_persistent_ptr(this->my_pool_uuid);
3120 result->my_hash = h;
3126 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3127 typename MutexType,
typename ScopedLockType>
3128 template <
typename K,
typename... Args>
3130 concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3131 ScopedLockType>::internal_insert(
const K &key,
3132 const_accessor *result,
3136 assert(!result || !result->my_node);
3138 hashcode_type m = mask().load(std::memory_order_acquire);
3139 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
3140 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
3143 assert((m & (m + 1)) == 0);
3145 hashcode_type
const h = hasher{}(key);
3147 persistent_node_ptr_t node;
3148 size_t new_size = 0;
3149 bool inserted =
false;
3155 scoped_lock_traits_type::initial_rw_state(
true));
3156 node = get_node<true>(key, b);
3160 if (check_mask_race(h, m)) {
3166 new_size = insert_new_node(b.get(), node,
3167 std::forward<Args>(args)...);
3174 result, node.get(this->my_pool_uuid)->mutex, write))
3181 std::this_thread::yield();
3183 m = mask().load(std::memory_order_acquire);
3184 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
3185 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
3190 result->my_node = node.get_persistent_ptr(this->my_pool_uuid);
3191 result->my_hash = h;
3194 check_growth(m, new_size);
3199 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3200 typename MutexType,
typename ScopedLockType>
3201 template <
typename K>
3203 concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3204 ScopedLockType>::internal_erase(
const K &key)
3207 hashcode_type
const h = hasher{}(key);
3208 hashcode_type m = mask().load(std::memory_order_acquire);
3209 #if LIBPMEMOBJ_CPP_VG_HELGRIND_ENABLED
3210 ANNOTATE_HAPPENS_AFTER(&(this->my_mask));
3213 pool_base pop = get_pool_base();
3218 bucket_accessor b(
this, h & m,
3219 scoped_lock_traits_type::initial_rw_state(
true));
3222 node_ptr_t *p = &b->node_list;
3227 detail::static_persistent_pool_pointer_cast<node>(
3228 n)(this->my_pool_uuid)
3230 p = &n(this->my_pool_uuid)->next;
3236 if (check_mask_race(h, m))
3240 }
else if (!b.is_writer() &&
3241 !scoped_lock_traits_type::upgrade_to_writer(b)) {
3242 if (check_mask_race(h, m))
3248 persistent_ptr<node> del = n(this->my_pool_uuid);
3256 if (!try_acquire_item(&acc, del->mutex,
true)) {
3260 std::this_thread::yield();
3262 m = mask().load(std::memory_order_acquire);
3268 assert(pmemobj_tx_stage() == TX_STAGE_NONE);
3270 auto &size_diff = this->thread_size_diff();
3287 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3288 typename MutexType,
typename ScopedLockType>
3293 internal_swap(table);
3296 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3297 typename MutexType,
typename ScopedLockType>
3302 concurrent_hash_map_internal::check_outside_tx();
3305 hashcode_type m = mask();
3309 hashcode_type b = (m + 1) >> 1;
3312 assert((b & (b - 1)) == 0);
3314 for (; b <= m; ++b) {
3315 bucket *bp = get_bucket(b);
3317 concurrent_hash_map_internal::assert_not_locked<mutex_t,
3321 if (bp->is_rehashed(std::memory_order_relaxed) ==
false)
3322 rehash_bucket<true>(bp, b);
3326 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3327 typename MutexType,
typename ScopedLockType>
3331 hashcode_type m = mask();
3333 assert((m & (m + 1)) == 0);
3337 for (segment_index_t b = 0; b <= m; ++b) {
3338 bucket *bp = get_bucket(b);
3339 concurrent_hash_map_internal::assert_not_locked<mutex_t,
3350 assert(this->tls_ptr !=
nullptr);
3351 this->tls_ptr->clear();
3353 this->on_init_size = 0;
3355 segment_index_t s = segment_traits_t::segment_index_of(m);
3357 assert(s + 1 == this->block_table_size ||
3358 !segment_facade_t(this->my_table, s + 1).is_valid());
3373 mask().store(embedded_buckets - 1, std::memory_order_relaxed);
3380 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3381 typename MutexType,
typename ScopedLockType>
3384 ScopedLockType>::clear_segment(segment_index_t s)
3386 segment_facade_t segment(this->my_table, s);
3388 assert(segment.is_valid());
3390 size_type sz = segment.size();
3391 for (segment_index_t i = 0; i < sz; ++i) {
3392 for (node_ptr_t n = segment[i].node_list; n;
3393 n = segment[i].node_list) {
3394 segment[i].node_list = n(this->my_pool_uuid)->next;
3399 if (s >= segment_traits_t::embedded_segments)
3403 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3404 typename MutexType,
typename ScopedLockType>
3409 auto pop = get_pool_base();
3411 reserve(source.
size());
3412 internal_copy(source.
begin(), source.
end());
3415 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3416 typename MutexType,
typename ScopedLockType>
3417 template <
typename I>
3420 ScopedLockType>::internal_copy(I first, I last)
3422 hashcode_type m = mask();
3424 for (; first != last; ++first) {
3425 hashcode_type h = hasher{}(first->first);
3426 bucket *b = get_bucket(h & m);
3428 assert(b->is_rehashed(std::memory_order_relaxed));
3430 detail::persistent_pool_ptr<node> p;
3431 insert_new_node(b, p, *first);
3435 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3436 typename MutexType,
typename ScopedLockType>
3438 operator==(
const concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3440 const concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3443 if (a.size() != b.size())
3446 typename concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3447 ScopedLockType>::const_iterator
3451 typename concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3452 ScopedLockType>::const_iterator j,
3455 for (; i != i_end; ++i) {
3456 j = b.equal_range(i->first).first;
3458 if (j == j_end || !(i->second == j->second))
3465 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3466 typename MutexType,
typename ScopedLockType>
3468 operator!=(
const concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3470 const concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType,
3476 template <
typename Key,
typename T,
typename Hash,
typename KeyEqual,
3477 typename MutexType,
typename ScopedLockType>
3479 swap(concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType, ScopedLockType> &a,
3480 concurrent_hash_map<Key, T, Hash, KeyEqual, MutexType, ScopedLockType> &b)
Atomic backoff, for time delay.
static void commit()
Manually commit a transaction.
Definition: transaction.hpp:330
static void snapshot(const T *addr, size_t num=1)
Takes a “snapshot” of given elements of type T number (1 by default), located at the given address pt...
Definition: transaction.hpp:437
Custom layout error class.
Definition: pexceptions.hpp:189
Allows write access to elements and combines data access, locking, and garbage collection.
Definition: concurrent_hash_map.hpp:2075
pointer operator->() const
Return pointer to associated value in hash table.
Definition: concurrent_hash_map.hpp:2089
reference operator*() const
Return reference to associated value in hash table.
Definition: concurrent_hash_map.hpp:2081
Bucket accessor is to find, rehash, acquire a lock, and access a bucket.
Definition: concurrent_hash_map.hpp:1729
void acquire(concurrent_hash_map *base, const hashcode_type h, bool writer=false)
Find a bucket by masked hashcode, optionally rehash, and acquire the lock.
Definition: concurrent_hash_map.hpp:1759
bool is_writer() const
Check whether bucket is locked for write.
Definition: concurrent_hash_map.hpp:1785
bucket * operator->() const
Overloaded arrow operator.
Definition: concurrent_hash_map.hpp:1804
bucket * get() const
Get bucket pointer.
Definition: concurrent_hash_map.hpp:1795
Combines data access, locking, and garbage collection.
Definition: concurrent_hash_map.hpp:1987
bool empty() const
Definition: concurrent_hash_map.hpp:2006
const_accessor()
Create empty result.
Definition: concurrent_hash_map.hpp:2051
void release()
Release accessor.
Definition: concurrent_hash_map.hpp:2018
const typename concurrent_hash_map::value_type value_type
Type of value.
Definition: concurrent_hash_map.hpp:1999
~const_accessor()
Destroy result after releasing the underlying reference.
Definition: concurrent_hash_map.hpp:2059
const_reference operator*() const
Definition: concurrent_hash_map.hpp:2031
const_pointer operator->() const
Definition: concurrent_hash_map.hpp:2041
Vector of locks to be unlocked at the destruction time.
Definition: concurrent_hash_map.hpp:2932
bucket * push_and_try_lock(concurrent_hash_map *base, hashcode_type h)
Save pointer to the lock in the vector and lock it.
Definition: concurrent_hash_map.hpp:2938
Serial bucket accessor used to access bucket in a serial operations.
Definition: concurrent_hash_map.hpp:1813
bucket * operator->() const
Overloaded arrow operator.
Definition: concurrent_hash_map.hpp:1868
bool is_writer() const
This method is added for consistency with bucket_accessor class.
Definition: concurrent_hash_map.hpp:1849
bucket * get() const
Get bucket pointer.
Definition: concurrent_hash_map.hpp:1859
Persistent memory aware implementation of Intel TBB concurrent_hash_map
Definition: concurrent_hash_map.hpp:1633
bool empty() const
Definition: concurrent_hash_map.hpp:2396
const_iterator end() const
Definition: concurrent_hash_map.hpp:2378
iterator end()
Definition: concurrent_hash_map.hpp:2358
size_type bucket_count() const
Definition: concurrent_hash_map.hpp:2414
void insert(std::initializer_list< value_type > il)
Insert initializer list.
Definition: concurrent_hash_map.hpp:2710
bool find(accessor &result, const Key &key)
Find item and acquire a write lock on the item.
Definition: concurrent_hash_map.hpp:2520
bool insert(accessor &result, value_type &&value)
Insert item by copying if there is no such key present already and acquire a write lock on the item.
Definition: concurrent_hash_map.hpp:2664
concurrent_hash_map & operator=(const concurrent_hash_map &table)
Assignment Not thread safe.
Definition: concurrent_hash_map.hpp:2238
bool find(const_accessor &result, const Key &key) const
Find item and acquire a read lock on the item.
Definition: concurrent_hash_map.hpp:2474
size_type count(const Key &key) const
Definition: concurrent_hash_map.hpp:2434
const_iterator begin() const
Definition: concurrent_hash_map.hpp:2368
size_type size() const
Definition: concurrent_hash_map.hpp:2387
bool insert(const_accessor &result, value_type &&value)
Insert item by copying if there is no such key present already and acquire a read lock on the item.
Definition: concurrent_hash_map.hpp:2646
bool insert(const value_type &value)
Insert item by copying if there is no such key present already.
Definition: concurrent_hash_map.hpp:2631
~concurrent_hash_map()
free_data should be called before concurrent_hash_map destructor is called.
Definition: concurrent_hash_map.hpp:2328
void clear()
Clear hash map content Not thread safe.
Definition: concurrent_hash_map.hpp:3329
void free_data()
Destroys the concurrent_hash_map.
Definition: concurrent_hash_map.hpp:2307
void swap(concurrent_hash_map &table)
Swap two instances.
Definition: concurrent_hash_map.hpp:3290
iterator begin()
Definition: concurrent_hash_map.hpp:2348
void rehash(size_type n=0)
Rehashes and optionally resizes the whole table.
Definition: concurrent_hash_map.hpp:3299
bool insert_or_assign(K &&key, M &&obj)
Inserts item if there is no such key-comparable type present already, assigns provided value otherwis...
Definition: concurrent_hash_map.hpp:2789
void defrag_save_nodes(bucket *b, pmem::obj::defrag &defrag)
Internal method used by defragment().
Definition: concurrent_hash_map.hpp:3019
size_type count(const K &key) const
This overload only participates in overload resolution if the qualified-id Hash::transparent_key_equa...
Definition: concurrent_hash_map.hpp:2459
bool find(accessor &result, const K &key)
Find item and acquire a write lock on the item.
Definition: concurrent_hash_map.hpp:2548
bool insert(const_accessor &result, const value_type &value)
Insert item by copying if there is no such key present already and acquire a read lock on the item.
Definition: concurrent_hash_map.hpp:2598
bool insert(accessor &result, const value_type &value)
Insert item by copying if there is no such key present already and acquire a write lock on the item.
Definition: concurrent_hash_map.hpp:2615
bool erase(const Key &key)
Remove element with corresponding key.
Definition: concurrent_hash_map.hpp:2817
bool insert(value_type &&value)
Insert item by copying if there is no such key present already.
Definition: concurrent_hash_map.hpp:2681
concurrent_hash_map()
Construct empty table.
Definition: concurrent_hash_map.hpp:2098
size_type max_size() const
Upper bound on size.
Definition: concurrent_hash_map.hpp:2405
concurrent_hash_map(I first, I last)
Construction table with copying iteration range.
Definition: concurrent_hash_map.hpp:2140
bool insert(const_accessor &result, const Key &key)
Insert item (if not already present) and acquire a read lock on the item.
Definition: concurrent_hash_map.hpp:2564
bool find(const_accessor &result, const K &key) const
Find item and acquire a read lock on the item.
Definition: concurrent_hash_map.hpp:2503
void internal_copy(const concurrent_hash_map &source)
Copy "source" to *this, where *this must start out empty.
Definition: concurrent_hash_map.hpp:3407
concurrent_hash_map & operator=(std::initializer_list< value_type > il)
Assignment Not thread safe.
Definition: concurrent_hash_map.hpp:2260
concurrent_hash_map(std::initializer_list< value_type > il)
Construct table with initializer list.
Definition: concurrent_hash_map.hpp:2152
concurrent_hash_map(concurrent_hash_map &&table)
Move constructor.
Definition: concurrent_hash_map.hpp:2129
bool erase(const K &key)
Remove element with corresponding key.
Definition: concurrent_hash_map.hpp:2911
bool insert_or_assign(const key_type &key, M &&obj)
Inserts item if there is no such key present already, assigns provided value otherwise.
Definition: concurrent_hash_map.hpp:2727
void insert(I first, I last)
Insert range [first, last)
Definition: concurrent_hash_map.hpp:2696
bool insert(accessor &result, const Key &key)
Insert item (if not already present) and acquire a write lock on the item.
Definition: concurrent_hash_map.hpp:2581
bool insert_or_assign(key_type &&key, M &&obj)
Inserts item if there is no such key present already, assigns provided value otherwise.
Definition: concurrent_hash_map.hpp:2755
void runtime_initialize()
Initialize persistent concurrent hash map after process restart.
Definition: concurrent_hash_map.hpp:2170
concurrent_hash_map(const concurrent_hash_map &table)
Copy constructor.
Definition: concurrent_hash_map.hpp:2117
concurrent_hash_map(size_type n)
Construct empty table with n preallocated buckets.
Definition: concurrent_hash_map.hpp:2107
pobj_defrag_result defragment(double start_percent=0, double amount_percent=100)
Defragment the given (by 'start_percent' and 'amount_percent') part of buckets of the hash map.
Definition: concurrent_hash_map.hpp:2843
Defrag class.
Definition: defrag.hpp:83
pobj_defrag_result run()
Starts defragmentation with previously stored pointers.
Definition: defrag.hpp:188
std::enable_if< is_defragmentable< T >), void >::type add(T &t)
Stores address of the referenced object to the defragmentation queue.
Definition: defrag.hpp:112
typename detail::transaction_base< true >::manual manual
C++ manual scope transaction class.
Definition: transaction.hpp:745
static void run(obj::pool_base &pool, std::function< void()> tx, Locks &... locks)
Execute a closure-like transaction and lock locks.
Definition: transaction.hpp:810
Persistent memory resident mutex implementation.
Definition: mutex.hpp:33
Resides on pmem class.
Definition: p.hpp:36
const T & get_ro() const noexcept
Retrieves read-only const reference of the object.
Definition: p.hpp:129
The non-template pool base class.
Definition: pool.hpp:51
Custom transaction error class.
Definition: pexceptions.hpp:167
Commonly used functionality.
A persistent version of thread-local storage.
persistent_ptr transactional allocation functions for objects.
Persistent memory namespace.
Definition: allocation_flag.hpp:15
Resides on pmem property template.
Persistent pointer for pool handle.
Persistent smart pointer.
Pmem-resident shared mutex.
Commonly used SFINAE helpers.
C++ pmemobj transactions.