diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/common/CDC.cc | |
parent | Initial commit. (diff) | |
download | ceph-upstream/18.2.2.tar.xz ceph-upstream/18.2.2.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/common/CDC.cc')
-rw-r--r-- | src/common/CDC.cc | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/common/CDC.cc b/src/common/CDC.cc new file mode 100644 index 000000000..8aabeaffc --- /dev/null +++ b/src/common/CDC.cc @@ -0,0 +1,45 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#include <random> + +#include "CDC.h" +#include "FastCDC.h" +#include "FixedCDC.h" + +std::unique_ptr<CDC> CDC::create( + const std::string& type, + int bits, + int windowbits) +{ + if (type == "fastcdc") { + return std::unique_ptr<CDC>(new FastCDC(bits, windowbits)); + } + if (type == "fixed") { + return std::unique_ptr<CDC>(new FixedCDC(bits, windowbits)); + } + return nullptr; +} + +void generate_buffer(int size, bufferlist *outbl, int seed) +{ + std::mt19937_64 engine, engine2; + engine.seed(seed); + engine2.seed(seed); + + // assemble from randomly-sized segments! + outbl->clear(); + auto left = size; + while (left) { + size_t l = std::min<size_t>((engine2() & 0xffff0) + 16, left); + left -= l; + bufferptr p(l); + p.set_length(l); + char *b = p.c_str(); + for (size_t i = 0; i < l / sizeof(uint64_t); ++i) { + ((ceph_le64 *)b)[i] = ceph_le64(engine()); + } + outbl->append(p); + } +} + |