veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
leveldb_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_LEVELDB_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_LEVELDB_IMPL_HPP
8
9#include "leveldb/db.h"
10#include "leveldb/iterator.h"
11#include "leveldb/write_batch.h"
12#include "storage_interface.hpp"
13#include "veriblock/pop/assert.hpp"
14#include "veriblock/pop/exceptions/storage_io.hpp"
15#include "veriblock/pop/strutil.hpp"
16
17namespace altintegration {
18
19namespace adaptors {
20
22 ~LevelDBStorageIterator() override {
23 if (it_ != nullptr) {
24 delete it_;
25 }
26 }
27
28 LevelDBStorageIterator(leveldb::Iterator* it) : it_(it) {}
29
30 bool value(std::vector<uint8_t>& out) const override;
31
32 bool key(std::vector<uint8_t>& out) const override;
33
34 void next() override { it_->Next(); }
35
36 bool valid() const override { return it_->Valid(); }
37
38 void seek_start() override { it_->SeekToFirst(); }
39
40 void seek(const std::vector<uint8_t>& val) override;
41
42 private:
43 leveldb::Iterator* it_;
44};
45
47 ~LevelDBWriteBatch() override = default;
48
49 LevelDBWriteBatch(leveldb::DB& db, leveldb::WriteOptions& write_options)
50 : db_(db), write_options_(write_options) {}
51
52 void write(const std::vector<uint8_t>& key,
53 const std::vector<uint8_t>& value) override;
54
55 void writeBatch() override;
56
57 private:
58 leveldb::DB& db_;
59 leveldb::WriteOptions& write_options_;
60 leveldb::WriteBatch batch_{};
61};
62
63struct LevelDBStorage : public Storage {
64 ~LevelDBStorage() override;
65
66 LevelDBStorage(const std::string& path);
67
68 void write(const std::vector<uint8_t>& key,
69 const std::vector<uint8_t>& value) override;
70
71 bool read(const std::vector<uint8_t>& key,
72 std::vector<uint8_t>& value) override;
73
74 std::shared_ptr<WriteBatch> generateWriteBatch() override {
75 return std::make_shared<LevelDBWriteBatch>(*db_, write_options_);
76 }
77
78 std::shared_ptr<StorageIterator> generateIterator() override {
79 return std::make_shared<LevelDBStorageIterator>(
80 db_->NewIterator(read_options_));
81 }
82
83 private:
84 leveldb::DB* db_{nullptr};
85 leveldb::WriteOptions write_options_{};
86 leveldb::ReadOptions read_options_{};
87};
88
89} // namespace adaptors
90
91} // namespace altintegration
92
93#endif
Defines logging helpers.
Definition: block.hpp:14