veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
inmem_storage_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_INMEM_STORAGE_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_INMEM_STORAGE_IMPL_HPP
8
9#include <map>
10#include <veriblock/pop/assert.hpp>
11#include <veriblock/pop/exceptions/storage_io.hpp>
12#include <veriblock/pop/strutil.hpp>
13
14#include "storage_interface.hpp"
15
16namespace altintegration {
17
18namespace adaptors {
19
21 ~InmemStorageIterator() override = default;
22
24 std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage)
25 : storage_(storage), it_(storage.begin()) {}
26
27 bool value(std::vector<uint8_t>& out) const override {
28 out = it_->second;
29 return true;
30 }
31
32 bool key(std::vector<uint8_t>& out) const override {
33 out = it_->first;
34 return true;
35 }
36
37 void next() override { ++it_; }
38
39 bool valid() const override { return it_ != storage_.end(); }
40
41 void seek_start() override { it_ = storage_.begin(); }
42
43 void seek(const std::vector<uint8_t>& val) override {
44 it_ = storage_.begin();
45 for (; it_ != storage_.end(); ++it_) {
46 if (is_sub_vec(it_->first, val)) {
47 break;
48 }
49 }
50 }
51
52 private:
53 bool is_sub_vec(const std::vector<uint8_t>& cur,
54 const std::vector<uint8_t>& sub) {
55 if (sub.size() > cur.size()) {
56 return false;
57 }
58 for (size_t i = 0; i < sub.size(); ++i) {
59 if (cur[i] != sub[i]) {
60 return false;
61 }
62 }
63 return true;
64 }
65
66 std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage_;
67 std::map<std::vector<uint8_t>, std::vector<uint8_t>>::iterator it_;
68};
69
70struct InmemWriteBatch : public WriteBatch {
71 ~InmemWriteBatch() override = default;
72
73 InmemWriteBatch(std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage)
74 : storage_(storage) {}
75
76 void write(const std::vector<uint8_t>& key,
77 const std::vector<uint8_t>& value) override {
78 storage_[key] = value;
79 }
80
81 void writeBatch() override {}
82
83 private:
84 std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage_;
85};
86
87struct InmemStorageImpl : public Storage {
88 ~InmemStorageImpl() override = default;
89
90 void write(const std::vector<uint8_t>& key,
91 const std::vector<uint8_t>& value) override {
92 storage_[key] = value;
93 }
94
95 bool read(const std::vector<uint8_t>& key,
96 std::vector<uint8_t>& value) override {
97 const auto& it = storage_.find(key);
98 if (it != storage_.end()) {
99 value = it->second;
100 return true;
101 }
102 return false;
103 }
104
105 std::shared_ptr<WriteBatch> generateWriteBatch() override {
106 return std::make_shared<InmemWriteBatch>(storage_);
107 }
108
109 std::shared_ptr<StorageIterator> generateIterator() override {
110 return std::make_shared<InmemStorageIterator>(storage_);
111 }
112
113 private:
114 std::map<std::vector<uint8_t>, std::vector<uint8_t>> storage_;
115};
116
117} // namespace adaptors
118
119} // namespace altintegration
120
121#endif
Defines logging helpers.
Definition: block.hpp:14