mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-06 02:31:53 +01:00
110 lines
2.6 KiB
C++
110 lines
2.6 KiB
C++
|
|
// Copyright (C) 2023 Christian Mazakas
|
||
|
|
// 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)
|
||
|
|
|
||
|
|
#include "helpers.hpp"
|
||
|
|
|
||
|
|
#include <boost/unordered/concurrent_flat_map.hpp>
|
||
|
|
|
||
|
|
test::seed_t initialize_seed{674140082};
|
||
|
|
|
||
|
|
using test::default_generator;
|
||
|
|
using test::limited_range;
|
||
|
|
using test::sequential;
|
||
|
|
|
||
|
|
using hasher = stateful_hash;
|
||
|
|
using key_equal = stateful_key_equal;
|
||
|
|
using allocator_type = stateful_allocator<std::pair<raii const, raii> >;
|
||
|
|
|
||
|
|
using map_type = boost::unordered::concurrent_flat_map<raii, raii, hasher,
|
||
|
|
key_equal, allocator_type>;
|
||
|
|
|
||
|
|
using map_value_type = typename map_type::value_type;
|
||
|
|
|
||
|
|
namespace {
|
||
|
|
template <class G> void clear_tests(G gen, test::random_generator rg)
|
||
|
|
{
|
||
|
|
auto values = make_random_values(1024 * 16, [&] { return gen(rg); });
|
||
|
|
|
||
|
|
raii::reset_counts();
|
||
|
|
|
||
|
|
map_type x(values.begin(), values.end(), values.size(), hasher(1),
|
||
|
|
key_equal(2), allocator_type(3));
|
||
|
|
|
||
|
|
BOOST_TEST_EQ(raii::copy_constructor, 2 * x.size());
|
||
|
|
BOOST_TEST_EQ(raii::destructor, 0u);
|
||
|
|
|
||
|
|
thread_runner(values, [&x](boost::span<map_value_type> s) {
|
||
|
|
(void)s;
|
||
|
|
x.clear();
|
||
|
|
});
|
||
|
|
|
||
|
|
BOOST_TEST(x.empty());
|
||
|
|
|
||
|
|
check_raii_counts();
|
||
|
|
}
|
||
|
|
|
||
|
|
template <class G> void insert_and_clear(G gen, test::random_generator rg)
|
||
|
|
{
|
||
|
|
auto values = make_random_values(1024 * 16, [&] { return gen(rg); });
|
||
|
|
auto reference_map =
|
||
|
|
boost::unordered_flat_map<raii, raii>(values.begin(), values.end());
|
||
|
|
|
||
|
|
raii::reset_counts();
|
||
|
|
|
||
|
|
std::thread t1, t2;
|
||
|
|
|
||
|
|
{
|
||
|
|
map_type x(0, hasher(1), key_equal(2), allocator_type(3));
|
||
|
|
|
||
|
|
std::mutex m;
|
||
|
|
std::condition_variable cv;
|
||
|
|
|
||
|
|
std::atomic<bool> done{false};
|
||
|
|
|
||
|
|
t1 = std::thread([&x, &values, &cv, &done] {
|
||
|
|
for (auto i = 0u; i < values.size(); ++i) {
|
||
|
|
x.insert(values[i]);
|
||
|
|
if (i % 100 == 0) {
|
||
|
|
cv.notify_all();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
done = true;
|
||
|
|
});
|
||
|
|
|
||
|
|
t2 = std::thread([&x, &m, &cv, &done] {
|
||
|
|
while (!done) {
|
||
|
|
{
|
||
|
|
std::unique_lock<std::mutex> lk(m);
|
||
|
|
cv.wait(lk, [] { return true; });
|
||
|
|
}
|
||
|
|
x.clear();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
t1.join();
|
||
|
|
t2.join();
|
||
|
|
|
||
|
|
if (!x.empty()) {
|
||
|
|
test_fuzzy_matches_reference(x, reference_map, rg);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
check_raii_counts();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace
|
||
|
|
|
||
|
|
// clang-format off
|
||
|
|
UNORDERED_TEST(
|
||
|
|
clear_tests,
|
||
|
|
((value_type_generator))
|
||
|
|
((default_generator)(sequential)(limited_range)))
|
||
|
|
|
||
|
|
UNORDERED_TEST(insert_and_clear,
|
||
|
|
((value_type_generator))
|
||
|
|
((default_generator)(sequential)(limited_range)))
|
||
|
|
// clang-format on
|
||
|
|
|
||
|
|
RUN_TESTS()
|