6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_LEVELDB_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_LEVELDB_IMPL_HPP
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"
30 bool value(std::vector<uint8_t>& out)
const override;
32 bool key(std::vector<uint8_t>& out)
const override;
34 void next()
override { it_->Next(); }
36 bool valid()
const override {
return it_->Valid(); }
38 void seek_start()
override { it_->SeekToFirst(); }
40 void seek(
const std::vector<uint8_t>& val)
override;
43 leveldb::Iterator* it_;
50 : db_(db), write_options_(write_options) {}
52 void write(
const std::vector<uint8_t>& key,
53 const std::vector<uint8_t>& value)
override;
55 void writeBatch()
override;
59 leveldb::WriteOptions& write_options_;
60 leveldb::WriteBatch batch_{};
68 void write(
const std::vector<uint8_t>& key,
69 const std::vector<uint8_t>& value)
override;
71 bool read(
const std::vector<uint8_t>& key,
72 std::vector<uint8_t>& value)
override;
74 std::shared_ptr<WriteBatch> generateWriteBatch()
override {
75 return std::make_shared<LevelDBWriteBatch>(*db_, write_options_);
78 std::shared_ptr<StorageIterator> generateIterator()
override {
79 return std::make_shared<LevelDBStorageIterator>(
80 db_->NewIterator(read_options_));
84 leveldb::DB* db_{
nullptr};
85 leveldb::WriteOptions write_options_{};
86 leveldb::ReadOptions read_options_{};