6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_INMEM_STORAGE_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_INMEM_STORAGE_IMPL_HPP
10#include <veriblock/pop/assert.hpp>
11#include <veriblock/pop/exceptions/storage_io.hpp>
12#include <veriblock/pop/strutil.hpp>
14#include "storage_interface.hpp"
24 std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage)
25 : storage_(storage), it_(storage.begin()) {}
27 bool value(std::vector<uint8_t>& out)
const override {
32 bool key(std::vector<uint8_t>& out)
const override {
37 void next()
override { ++it_; }
39 bool valid()
const override {
return it_ != storage_.end(); }
41 void seek_start()
override { it_ = storage_.begin(); }
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)) {
53 bool is_sub_vec(
const std::vector<uint8_t>& cur,
54 const std::vector<uint8_t>& sub) {
55 if (sub.size() > cur.size()) {
58 for (
size_t i = 0; i < sub.size(); ++i) {
59 if (cur[i] != sub[i]) {
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_;
73 InmemWriteBatch(std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage)
74 : storage_(storage) {}
76 void write(
const std::vector<uint8_t>& key,
77 const std::vector<uint8_t>& value)
override {
78 storage_[key] = value;
81 void writeBatch()
override {}
84 std::map<std::vector<uint8_t>, std::vector<uint8_t>>& storage_;
90 void write(
const std::vector<uint8_t>& key,
91 const std::vector<uint8_t>& value)
override {
92 storage_[key] = value;
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()) {
105 std::shared_ptr<WriteBatch> generateWriteBatch()
override {
106 return std::make_shared<InmemWriteBatch>(storage_);
109 std::shared_ptr<StorageIterator> generateIterator()
override {
110 return std::make_shared<InmemStorageIterator>(storage_);
114 std::map<std::vector<uint8_t>, std::vector<uint8_t>> storage_;