veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
rocksdb_impl.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ROCKSDB_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ROCKSDB_IMPL_HPP
8
9#include <veriblock/pop/assert.hpp>
10#include <veriblock/pop/exceptions/storage_io.hpp>
11#include <veriblock/pop/strutil.hpp>
12
13#include "rocksdb/db.h"
14#include "storage_interface.hpp"
15
16namespace altintegration {
17
18namespace adaptors {
19
21 ~RocksDBStorageIterator() override {
22 if (it_ != nullptr) {
23 delete it_;
24 }
25 }
26
27 RocksDBStorageIterator(rocksdb::Iterator* it) : it_(it) {}
28
29 bool value(std::vector<uint8_t>& out) const override;
30
31 bool key(std::vector<uint8_t>& out) const override;
32
33 void next() override { it_->Next(); }
34
35 bool valid() const override { return it_->Valid(); }
36
37 void seek_start() override { it_->SeekToFirst(); }
38
39 void seek(const std::vector<uint8_t>& val) override;
40
41 private:
42 rocksdb::Iterator* it_;
43};
44
46 ~RocksDBWriteBatch() override = default;
47
48 RocksDBWriteBatch(rocksdb::DB& db, rocksdb::WriteOptions& write_options)
49 : db_(db), write_options_(write_options) {}
50
51 void write(const std::vector<uint8_t>& key,
52 const std::vector<uint8_t>& value) override;
53
54 void writeBatch() override;
55
56 private:
57 rocksdb::DB& db_;
58 rocksdb::WriteOptions& write_options_;
59 rocksdb::WriteBatch batch_{};
60};
61
62struct RocksDBStorage : public Storage {
63 ~RocksDBStorage() override;
64
65 RocksDBStorage(const std::string& path);
66
67 void write(const std::vector<uint8_t>& key,
68 const std::vector<uint8_t>& value) override;
69
70 bool read(const std::vector<uint8_t>& key,
71 std::vector<uint8_t>& value) override;
72
73 std::shared_ptr<WriteBatch> generateWriteBatch() override {
74 return std::make_shared<RocksDBWriteBatch>(*db_, write_options_);
75 }
76
77 std::shared_ptr<StorageIterator> generateIterator() override {
78 return std::make_shared<RocksDBStorageIterator>(
79 db_->NewIterator(read_options_));
80 }
81
82 private:
83 rocksdb::DB* db_{nullptr};
84 rocksdb::WriteOptions write_options_{};
85 rocksdb::ReadOptions read_options_{};
86};
87
88} // namespace adaptors
89
90} // namespace altintegration
91
92#endif
Defines logging helpers.
Definition: block.hpp:14