mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-31 03:56:42 +00:00
171 lines
6.1 KiB
C++
171 lines
6.1 KiB
C++
/*
|
|
* Copyright (C) 2021 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <seastar/core/app-template.hh>
|
|
#include <seastar/core/thread.hh>
|
|
#include <map>
|
|
#include <vector>
|
|
#include <random>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <fmt/core.h>
|
|
#include <fmt/ostream.h>
|
|
|
|
#include "utils/compact-radix-tree.hh"
|
|
#include "radix_tree_printer.hh"
|
|
#include "collection_stress.hh"
|
|
|
|
using namespace compact_radix_tree;
|
|
using namespace seastar;
|
|
|
|
class test_data {
|
|
unsigned long *_data;
|
|
unsigned long _val;
|
|
public:
|
|
test_data(unsigned long val) : _data(new unsigned long(val)), _val(val) {}
|
|
test_data(const test_data&) = delete;
|
|
test_data(test_data&& o) noexcept : _data(std::exchange(o._data, nullptr)), _val(o._val) {}
|
|
~test_data() {
|
|
if (_data != nullptr) {
|
|
delete _data;
|
|
}
|
|
}
|
|
|
|
unsigned long value() const {
|
|
return _data == nullptr ? _val + 0x80000000 : *_data;
|
|
}
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& out, const test_data& d) {
|
|
out << d.value();
|
|
return out;
|
|
}
|
|
|
|
using test_tree = tree<test_data>;
|
|
|
|
int main(int argc, char **argv) {
|
|
namespace bpo = boost::program_options;
|
|
app_template app;
|
|
app.add_options()
|
|
("count", bpo::value<int>()->default_value(35642), "number of indices to fill the tree with")
|
|
("iters", bpo::value<int>()->default_value(5), "number of iterations")
|
|
("keys", bpo::value<std::string>()->default_value("rand"), "how to generate keys (rand, asc, desc)")
|
|
("verb", bpo::value<bool>()->default_value(false), "be verbose");
|
|
|
|
return app.run(argc, argv, [&app] {
|
|
auto count = app.configuration()["count"].as<int>();
|
|
auto iters = app.configuration()["iters"].as<int>();
|
|
auto ks = app.configuration()["keys"].as<std::string>();
|
|
auto verb = app.configuration()["verb"].as<bool>();
|
|
|
|
return seastar::async([count, iters, ks, verb] {
|
|
auto t = std::make_unique<test_tree>();
|
|
std::map<unsigned, test_data> oracle;
|
|
|
|
unsigned col_size = 0;
|
|
enum class validate {
|
|
oracle, iterator, walk, lower_bound,
|
|
};
|
|
validate vld = validate::oracle;
|
|
|
|
stress_config cfg;
|
|
cfg.count = count;
|
|
cfg.iters = 1;
|
|
cfg.keys = ks;
|
|
cfg.verb = verb;
|
|
|
|
for (int i = 0; i < iters; i++) {
|
|
stress_collection(cfg,
|
|
/* insert */ [&] (int key) {
|
|
t->emplace(key, key);
|
|
oracle.emplace(std::make_pair(key, key));
|
|
col_size++;
|
|
},
|
|
/* erase */ [&] (int key) {
|
|
t->erase(key);
|
|
oracle.erase(key);
|
|
col_size--;
|
|
},
|
|
/* validate */ [&] {
|
|
if (verb) {
|
|
compact_radix_tree::printer<test_data, unsigned>::show(*t);
|
|
}
|
|
if (vld == validate::oracle) {
|
|
for (auto&& d : oracle) {
|
|
test_data* td = t->get(d.first);
|
|
assert(td != nullptr);
|
|
assert(td->value() == d.second.value());
|
|
}
|
|
vld = validate::iterator;
|
|
} else if (vld == validate::iterator) {
|
|
int nr = 0;
|
|
auto ti = t->begin();
|
|
while (ti != t->end()) {
|
|
assert(ti->value() == ti.key());
|
|
nr++;
|
|
ti++;
|
|
assert(nr <= col_size);
|
|
}
|
|
assert(nr == col_size);
|
|
vld = validate::walk;
|
|
} else if (vld == validate::walk) {
|
|
int nr = 0;
|
|
t->walk([&nr, col_size] (unsigned idx, test_data& td) {
|
|
assert(idx == td.value());
|
|
nr++;
|
|
assert(nr <= col_size);
|
|
return true;
|
|
});
|
|
assert(nr == col_size);
|
|
vld = validate::lower_bound;
|
|
} else if (vld == validate::lower_bound) {
|
|
int nr = 0;
|
|
unsigned idx = 0;
|
|
while (true) {
|
|
test_data* td = t->lower_bound(idx);
|
|
if (td == nullptr) {
|
|
break;
|
|
}
|
|
assert(td->value() >= idx);
|
|
nr++;
|
|
idx = td->value() + 1;
|
|
assert(nr <= col_size);
|
|
}
|
|
assert(nr == col_size);
|
|
vld = validate::oracle;
|
|
}
|
|
},
|
|
/* step */ [] (stress_step step) { }
|
|
);
|
|
|
|
if (cfg.count < 4) {
|
|
cfg.count = count / 2;
|
|
} else {
|
|
cfg.count /= 3;
|
|
}
|
|
}
|
|
|
|
t->clear();
|
|
oracle.clear();
|
|
});
|
|
});
|
|
}
|