2017-07-06 23:47:28 +08:00
|
|
|
#include "common.hpp"
|
2016-07-31 04:20:21 +08:00
|
|
|
|
2017-02-18 18:54:37 +08:00
|
|
|
constexpr size_t THREADS_NO = std::min(max_no_threads, 8);
|
2016-07-31 04:20:21 +08:00
|
|
|
constexpr size_t elems_per_thread = 100000;
|
2016-12-22 22:51:16 +08:00
|
|
|
|
|
|
|
// TODO: document the test
|
2016-07-31 04:20:21 +08:00
|
|
|
|
|
|
|
// This test checks insert_unique method under pressure.
|
|
|
|
// Threads will try to insert keys in the same order.
|
|
|
|
// This will force threads to compete intensly with each other.
|
|
|
|
// Test checks for missing data and changed/overwriten data.
|
2017-06-21 17:29:13 +08:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
google::InitGoogleLogging(argv[0]);
|
2017-09-22 20:24:53 +08:00
|
|
|
map_t skiplist;
|
2017-02-18 18:54:37 +08:00
|
|
|
|
2017-09-22 20:24:53 +08:00
|
|
|
auto futures =
|
|
|
|
run<std::vector<size_t>>(THREADS_NO, skiplist, [](auto acc, auto index) {
|
|
|
|
long long downcount = elems_per_thread;
|
|
|
|
std::vector<size_t> owned;
|
|
|
|
auto inserter =
|
|
|
|
insert_try<size_t, size_t, map_t>(acc, downcount, owned);
|
2017-02-18 18:54:37 +08:00
|
|
|
|
2017-03-21 20:48:35 +08:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wfor-loop-analysis"
|
2017-09-22 20:24:53 +08:00
|
|
|
for (int i = 0; downcount > 0; i++) {
|
|
|
|
inserter(i, index);
|
|
|
|
}
|
2017-03-21 20:48:35 +08:00
|
|
|
#pragma GCC diagnostic pop
|
2017-09-22 20:24:53 +08:00
|
|
|
check_present_same<map_t>(acc, index, owned);
|
|
|
|
return owned;
|
|
|
|
});
|
2017-02-18 18:54:37 +08:00
|
|
|
|
2017-09-22 20:24:53 +08:00
|
|
|
auto accessor = skiplist.access();
|
|
|
|
for (auto &owned : collect(futures)) {
|
|
|
|
check_present_same<map_t>(accessor, owned);
|
|
|
|
}
|
2017-02-18 18:54:37 +08:00
|
|
|
|
2017-09-22 20:24:53 +08:00
|
|
|
check_size<map_t>(accessor, THREADS_NO * elems_per_thread);
|
|
|
|
check_order<map_t>(accessor);
|
2016-07-31 04:20:21 +08:00
|
|
|
}
|