6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ROCKSDB_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ROCKSDB_IMPL_HPP
9#include <veriblock/pop/assert.hpp>
10#include <veriblock/pop/exceptions/storage_io.hpp>
11#include <veriblock/pop/strutil.hpp>
13#include "rocksdb/db.h"
14#include "storage_interface.hpp"
29 bool value(std::vector<uint8_t>& out)
const override;
31 bool key(std::vector<uint8_t>& out)
const override;
33 void next()
override { it_->Next(); }
35 bool valid()
const override {
return it_->Valid(); }
37 void seek_start()
override { it_->SeekToFirst(); }
39 void seek(
const std::vector<uint8_t>& val)
override;
42 rocksdb::Iterator* it_;
49 : db_(db), write_options_(write_options) {}
51 void write(
const std::vector<uint8_t>& key,
52 const std::vector<uint8_t>& value)
override;
54 void writeBatch()
override;
58 rocksdb::WriteOptions& write_options_;
59 rocksdb::WriteBatch batch_{};
67 void write(
const std::vector<uint8_t>& key,
68 const std::vector<uint8_t>& value)
override;
70 bool read(
const std::vector<uint8_t>& key,
71 std::vector<uint8_t>& value)
override;
73 std::shared_ptr<WriteBatch> generateWriteBatch()
override {
74 return std::make_shared<RocksDBWriteBatch>(*db_, write_options_);
77 std::shared_ptr<StorageIterator> generateIterator()
override {
78 return std::make_shared<RocksDBStorageIterator>(
79 db_->NewIterator(read_options_));
83 rocksdb::DB* db_{
nullptr};
84 rocksdb::WriteOptions write_options_{};
85 rocksdb::ReadOptions read_options_{};