diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/test/objectstore/FileStoreTracker.h | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/objectstore/FileStoreTracker.h')
-rw-r--r-- | src/test/objectstore/FileStoreTracker.h | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/src/test/objectstore/FileStoreTracker.h b/src/test/objectstore/FileStoreTracker.h new file mode 100644 index 00000000..d422d1cf --- /dev/null +++ b/src/test/objectstore/FileStoreTracker.h @@ -0,0 +1,138 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- + +#ifndef FILESTORE_TRACKER_H +#define FILESTORE_TRACKER_H +#include "test/common/ObjectContents.h" +#include "os/filestore/FileStore.h" +#include "kv/KeyValueDB.h" +#include <boost/scoped_ptr.hpp> +#include <list> +#include <map> +#include "common/Mutex.h" + +class FileStoreTracker { + const static uint64_t SIZE = 4 * 1024; + ObjectStore *store; + KeyValueDB *db; + Mutex lock; + uint64_t restart_seq; + + struct OutTransaction { + list<pair<pair<coll_t, string>, uint64_t> > *in_flight; + ObjectStore::Transaction *t; + }; +public: + FileStoreTracker(ObjectStore *store, KeyValueDB *db) + : store(store), db(db), + lock("Tracker Lock"), restart_seq(0) {} + + class Transaction { + class Op { + public: + virtual void operator()(FileStoreTracker *harness, + OutTransaction *out) = 0; + virtual ~Op() {}; + }; + list<Op*> ops; + class Write : public Op { + public: + coll_t coll; + string oid; + Write(const coll_t &coll, + const string &oid) + : coll(coll), oid(oid) {} + void operator()(FileStoreTracker *harness, + OutTransaction *out) override { + harness->write(make_pair(coll, oid), out); + } + }; + class CloneRange : public Op { + public: + coll_t coll; + string from; + string to; + CloneRange(const coll_t &coll, + const string &from, + const string &to) + : coll(coll), from(from), to(to) {} + void operator()(FileStoreTracker *harness, + OutTransaction *out) override { + harness->clone_range(make_pair(coll, from), make_pair(coll, to), + out); + } + }; + class Clone : public Op { + public: + coll_t coll; + string from; + string to; + Clone(const coll_t &coll, + const string &from, + const string &to) + : coll(coll), from(from), to(to) {} + void operator()(FileStoreTracker *harness, + OutTransaction *out) override { + harness->clone(make_pair(coll, from), make_pair(coll, to), + out); + } + }; + class Remove: public Op { + public: + coll_t coll; + string obj; + Remove(const coll_t &coll, + const string &obj) + : coll(coll), obj(obj) {} + void operator()(FileStoreTracker *harness, + OutTransaction *out) override { + harness->remove(make_pair(coll, obj), + out); + } + }; + public: + void write(const coll_t &coll, const string &oid) { + ops.push_back(new Write(coll, oid)); + } + void clone_range(const coll_t &coll, const string &from, + const string &to) { + ops.push_back(new CloneRange(coll, from, to)); + } + void clone(const coll_t &coll, const string &from, + const string &to) { + ops.push_back(new Clone(coll, from, to)); + } + void remove(const coll_t &coll, const string &oid) { + ops.push_back(new Remove(coll, oid)); + } + friend class FileStoreTracker; + }; + + int init(); + void submit_transaction(Transaction &t); + void verify(const coll_t &coll, + const string &from, + bool on_start = false); + +private: + ObjectContents get_current_content(const pair<coll_t, string> &obj); + pair<uint64_t, uint64_t> get_valid_reads(const pair<coll_t, string> &obj); + ObjectContents get_content(const pair<coll_t, string> &obj, uint64_t version); + + void committed(const pair<coll_t, string> &obj, uint64_t seq); + void applied(const pair<coll_t, string> &obj, uint64_t seq); + uint64_t set_content(const pair<coll_t, string> &obj, ObjectContents &content); + + // ObjectContents Operations + void write(const pair<coll_t, string> &obj, OutTransaction *out); + void remove(const pair<coll_t, string> &obj, OutTransaction *out); + void clone_range(const pair<coll_t, string> &from, + const pair<coll_t, string> &to, + OutTransaction *out); + void clone(const pair<coll_t, string> &from, + const pair<coll_t, string> &to, + OutTransaction *out); + friend class OnApplied; + friend class OnCommitted; +}; + +#endif |