20#include <test/nodestore/TestBase.h>
21#include <test/unit_test/SuiteJournal.h>
22#include <xrpld/nodestore/DummyScheduler.h>
23#include <xrpld/nodestore/Manager.h>
24#include <xrpl/basics/BasicConfig.h>
25#include <xrpl/basics/ByteUtilities.h>
26#include <xrpl/basics/safe_cast.h>
27#include <xrpl/beast/unit_test.h>
28#include <xrpl/beast/unit_test/thread.h>
29#include <xrpl/beast/utility/temp_dir.h>
30#include <xrpl/beast/xor_shift_engine.h>
32#include <boost/algorithm/string.hpp>
44#ifndef NODESTORE_TIMING_DO_VERIFY
45#define NODESTORE_TIMING_DO_VERIFY 0
58 config,
megabytes(4), scheduler, journal);
62template <
class Generator>
66 using result_type =
typename Generator::result_type;
67 while (bytes >=
sizeof(result_type))
70 memcpy(buffer, &v,
sizeof(v));
71 buffer =
reinterpret_cast<std::uint8_t*
>(buffer) +
sizeof(v);
78 memcpy(buffer, &v, bytes);
170 for (
auto iter = config.
begin(); iter != config.
end(); ++iter)
171 s += (iter != config.
begin() ?
"," :
"") + iter->first +
"=" +
189 boost::split(v, s, boost::algorithm::is_any_of(
","));
198 template <
class Body>
211 template <
class... Args>
232 template <
class Body,
class... Args>
242 for (
std::size_t id = 0;
id < number_of_threads; ++id)
248 template <
class Body,
class... Args>
258 for (
std::size_t id = 0;
id < number_of_threads; ++id)
274 auto backend =
make_Backend(config, scheduler, journal);
275 BEAST_EXPECT(backend !=
nullptr);
286 explicit Body(suite& s,
Backend& backend)
287 : suite_(s), backend_(backend), seq_(1)
300 suite_.fail(e.
what());
315#if NODESTORE_TIMING_DO_VERIFY
331 auto backend =
make_Backend(config, scheduler, journal);
332 BEAST_EXPECT(backend !=
nullptr);
354 , dist_(0, params.
items - 1)
365 obj = seq1_.
obj(dist_(gen_));
366 backend_.
fetch(obj->getHash().data(), &result);
367 suite_.expect(result &&
isSame(result, obj));
371 suite_.fail(e.
what());
377 parallel_for_id<Body>(
386#if NODESTORE_TIMING_DO_VERIFY
402 auto backend =
make_Backend(config, scheduler, journal);
403 BEAST_EXPECT(backend !=
nullptr);
427 , dist_(0, params.
items - 1)
436 auto const key = seq2_.
key(i);
438 backend_.
fetch(key.data(), &result);
439 suite_.expect(!result);
443 suite_.fail(e.
what());
450 parallel_for_id<Body>(
459#if NODESTORE_TIMING_DO_VERIFY
475 auto backend =
make_Backend(config, scheduler, journal);
476 BEAST_EXPECT(backend !=
nullptr);
504 , dist_(0, params.
items - 1)
513 if (rand_(gen_) < missingNodePercent)
515 auto const key = seq2_.
key(dist_(gen_));
517 backend_.
fetch(key.data(), &result);
518 suite_.expect(!result);
524 obj = seq1_.
obj(dist_(gen_));
525 backend_.
fetch(obj->getHash().data(), &result);
526 suite_.expect(result &&
isSame(result, obj));
531 suite_.fail(e.
what());
538 parallel_for_id<Body>(
547#if NODESTORE_TIMING_DO_VERIFY
564 auto backend =
make_Backend(config, scheduler, journal);
565 BEAST_EXPECT(backend !=
nullptr);
566 backend->setDeletePath();
594 , older_(0, params.
items - 1)
603 if (rand_(gen_) < 200)
608 auto const j = older_(gen_);
611 backend_.
fetch(obj->getHash().data(), &result);
612 suite_.expect(result !=
nullptr);
613 suite_.expect(
isSame(result, obj));
617 p[0] = rand_(gen_) < 50 ? 0 : 1;
619 for (
int q = 0; q < 2; ++q)
627 auto const j = recent_(gen_);
629 backend_.
fetch(obj->getHash().data(), &result);
630 suite_.expect(!result ||
isSame(result, obj));
636 auto const j = i + params_.
items;
645 suite_.fail(e.
what());
652 parallel_for_id<Body>(
661#if NODESTORE_TIMING_DO_VERIFY
683 (this->*f)(config, params, journal);
684 return std::chrono::duration_cast<duration_type>(
696 for (
auto const& test : tests)
697 if (w < test.first.size())
698 w = test.first.size();
699 log << threads <<
" Thread" << (threads > 1 ?
"s" :
"") <<
", "
704 for (
auto const& test : tests)
705 ss <<
" " << setw(w) << test.first;
712 for (
auto const& config_string : config_strings)
721 config.
set(
"path", tempDir.
path());
725 for (
auto const& test : tests)
728 do_test(test.second, config, params, journal));
748#if RIPPLE_ROCKSDB_AVAILABLE
749 ";type=rocksdb,open_files=2000,filter_bits=12,cache_mb=256,"
750 "file_size_mb=8,file_size_mult=2"
753 ";type=memory|path=NodeStore"
766 boost::split(config_strings, args, boost::algorithm::is_any_of(
";"));
767 for (
auto iter = config_strings.
begin(); iter != config_strings.
end();)
769 iter = config_strings.
erase(iter);
780BEAST_DEFINE_TESTSUITE_MANUAL_PRIO(Timing, NodeStore,
ripple, 1);
A generic endpoint for log messages.
void seed(result_type seed)
RAII temporary directory.
std::string path() const
Get the native path for the temporary directory.
log_os< char > log
Logging output stream.
testcase_t testcase
Memberspace for declaring test cases.
std::string const & arg() const
Return the argument associated with the runner.
static std::shared_ptr< NodeObject > createObject(NodeObjectType type, Blob &&data, uint256 const &hash)
Create an object from fields.
A backend used for the NodeStore.
virtual Status fetch(void const *key, std::shared_ptr< NodeObject > *pObject)=0
Fetch a single object.
virtual void store(std::shared_ptr< NodeObject > const &object)=0
Store a single object.
Simple NodeStore Scheduler that just peforms the tasks synchronously.
virtual std::unique_ptr< Backend > make_Backend(Section const ¶meters, std::size_t burstSize, Scheduler &scheduler, beast::Journal journal)=0
Create a backend.
static Manager & instance()
Returns the instance of the manager singleton.
Scheduling for asynchronous backend activity.
std::discrete_distribution< std::uint32_t > d_type_
Sequence(std::uint8_t prefix)
std::shared_ptr< NodeObject > obj(std::size_t n)
void batch(std::size_t n, Batch &b, std::size_t size)
uint256 key(std::size_t n)
beast::xor_shift_engine gen_
std::uniform_int_distribution< std::uint32_t > d_size_
parallel_for_lambda(std::size_t n, std::atomic< std::size_t > &c)
void operator()(Args &&... args)
std::atomic< std::size_t > & c_
void run() override
Runs the suite.
void do_fetch(Section const &config, Params const ¶ms, beast::Journal journal)
static std::string to_string(duration_type const &d)
void(Timing_test::*)(Section const &, Params const &, beast::Journal) test_func
void do_work(Section const &config, Params const ¶ms, beast::Journal journal)
static std::string to_string(Section const &config)
static Section parse(std::string s)
void do_tests(std::size_t threads, test_list const &tests, std::vector< std::string > const &config_strings)
duration_type do_test(test_func f, Section const &config, Params const ¶ms, beast::Journal journal)
void parallel_for(std::size_t const n, std::size_t number_of_threads, Args const &... args)
void do_mixed(Section const &config, Params const ¶ms, beast::Journal journal)
std::size_t const default_repeat
std::size_t const default_items
void do_missing(Section const &config, Params const ¶ms, beast::Journal journal)
void do_insert(Section const &config, Params const ¶ms, beast::Journal journal)
void parallel_for_id(std::size_t const n, std::size_t number_of_threads, Args const &... args)
Holds a collection of configuration values.
void set(std::string const &key, std::string const &value)
Set a key/value pair.
const_iterator begin() const
void append(std::vector< std::string > const &lines)
Append a set of lines to this section.
const_iterator end() const
static constexpr std::size_t size()
T emplace_back(T... args)
A namespace for easy access to logging severity values.
std::unique_ptr< Backend > make_Backend(Section const &config, Scheduler &scheduler, beast::Journal journal)
static void rngcpy(void *buffer, std::size_t bytes, Generator &g)
bool isSame(std::shared_ptr< NodeObject > const &lhs, std::shared_ptr< NodeObject > const &rhs)
Returns true if objects are identical.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
constexpr auto megabytes(T value) noexcept
T get(Section const §ion, std::string const &name, T const &defaultValue=T{})
Retrieve a key/value pair from a section.
void Rethrow()
Rethrow the exception currently being handled.
T setprecision(T... args)