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/rocksdb/tools/rdb/db_wrapper.h | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/rocksdb/tools/rdb/db_wrapper.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/rocksdb/tools/rdb/db_wrapper.h b/src/rocksdb/tools/rdb/db_wrapper.h new file mode 100644 index 00000000..9d1c8f88 --- /dev/null +++ b/src/rocksdb/tools/rdb/db_wrapper.h @@ -0,0 +1,58 @@ +#ifndef DBWRAPPER_H +#define DBWRAPPER_H + +#include <map> +#include <node.h> + +#include "rocksdb/db.h" +#include "rocksdb/slice.h" +#include "rocksdb/options.h" + +using namespace v8; + +// Used to encapsulate a particular instance of an opened database. +// +// This object should not be used directly in C++; it exists solely to provide +// a mapping from a JavaScript object to a C++ code that can use the RocksDB +// API. +class DBWrapper : public node::ObjectWrap { + public: + static void Init(Handle<Object> exports); + + private: + explicit DBWrapper(); + ~DBWrapper(); + + // Helper methods + static bool HasFamilyNamed(std::string& name, DBWrapper* db); + static bool AddToBatch(rocksdb::WriteBatch& batch, bool del, + Handle<Array> array); + static bool AddToBatch(rocksdb::WriteBatch& batch, bool del, + Handle<Array> array, DBWrapper* db_wrapper, std::string cf); + static Handle<Value> CompactRangeDefault(const v8::Arguments& args); + static Handle<Value> CompactColumnFamily(const Arguments& args); + static Handle<Value> CompactOptions(const Arguments& args); + static Handle<Value> CompactAll(const Arguments& args); + + // C++ mappings of API methods + static Persistent<v8::Function> constructor; + static Handle<Value> Open(const Arguments& args); + static Handle<Value> New(const Arguments& args); + static Handle<Value> Get(const Arguments& args); + static Handle<Value> Put(const Arguments& args); + static Handle<Value> Delete(const Arguments& args); + static Handle<Value> Dump(const Arguments& args); + static Handle<Value> WriteBatch(const Arguments& args); + static Handle<Value> CreateColumnFamily(const Arguments& args); + static Handle<Value> CompactRange(const Arguments& args); + static Handle<Value> Close(const Arguments& args); + + // Internal fields + rocksdb::Options options_; + rocksdb::Status status_; + rocksdb::DB* db_; + std::unordered_map<std::string, rocksdb::ColumnFamilyHandle*> + columnFamilies_; +}; + +#endif |