veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
ethash_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_ETHASH_CACHE_PROVIDER_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ETHASH_CACHE_PROVIDER_IMPL_HPP
8
9#include <veriblock/pop/storage/ethash_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_ETHASH_PREFIX = '&';
19
20inline std::vector<uint8_t> epoch_bytes(uint64_t epoch) {
21 WriteStream write;
22 write.writeBE(epoch);
23 auto res = write.data();
24 res.insert(res.begin(), DB_ETHASH_PREFIX);
25 return res;
26}
27
29 ~EthashCacheImpl() override = default;
30
31 EthashCacheImpl(Storage& storage) : storage_(storage) {}
32
33 bool get(uint64_t epoch, std::shared_ptr<CacheEntry> out) const override {
34 std::vector<uint8_t> bytes_out;
35 if (!storage_.read(epoch_bytes(epoch), bytes_out)) {
36 return false;
37 }
38
39 ReadStream read(bytes_out);
40 ValidationState state;
41 if (!DeserializeFromVbkEncoding(read, *out, state)) {
42 return false;
43 }
44
45 return true;
46 }
47
48 void insert(uint64_t epoch, std::shared_ptr<CacheEntry> value) override {
49 WriteStream write;
50 value->toVbkEncoding(write);
51
52 storage_.write(epoch_bytes(epoch), write.data());
53 }
54
55 private:
56 Storage& storage_;
57};
58
59} // namespace adaptors
60
61} // namespace altintegration
62
63#endif
Class that is used for storing validation state.
Binary writer that is useful for binary serialization.
Defines logging helpers.
Definition: block.hpp:14
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Binary reading stream, that is useful during binary deserialization.
Definition: read_stream.hpp:22