veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
progpow_header_cache_provider_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_PROGPOW_HEADER_CACHE_PROVIDER_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_PROGPOW_HEADER_CACHE_PROVIDER_IMPL_HPP
8
9#include <veriblock/pop/storage/progpow_header_cache_provider.hpp>
10#include <veriblock/pop/validation_state.hpp>
11
12#include "storage_interface.hpp"
13
14namespace altintegration {
15
16namespace adaptors {
17
18const char DB_PROGPOW_HEADER_PREFIX = '!';
19
20inline std::vector<uint8_t> key_bytes(const uint256& key) {
21 auto res = key.asVector();
22 res.insert(res.begin(), DB_PROGPOW_HEADER_PREFIX);
23 return res;
24}
25
27 ~ProgpowHeaderCacheImpl() override = default;
28
29 ProgpowHeaderCacheImpl(Storage& storage) : storage_(storage) {}
30
31 bool get(const uint256& key, uint192& value) const override {
32 std::vector<uint8_t> bytes_out;
33 if (!storage_.read(key_bytes(key), bytes_out)) {
34 return false;
35 }
36 value = bytes_out;
37
38 return true;
39 }
40
41 void insert(const uint256& key, uint192 value) override {
42 storage_.write(key_bytes(key), value.asVector());
43 }
44
45 private:
46 Storage& storage_;
47};
48} // namespace adaptors
49
50} // namespace altintegration
51
52#endif
Defines logging helpers.
Definition: block.hpp:14
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: uint.hpp:24