veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::adaptors::EthashCacheImpl Struct Reference

Detailed Description

Definition at line 28 of file ethash_cache_provider_impl.hpp.

+ Inheritance diagram for altintegration::adaptors::EthashCacheImpl:
+ Collaboration diagram for altintegration::adaptors::EthashCacheImpl:

Public Member Functions

 EthashCacheImpl (Storage &storage)
 
bool get (uint64_t epoch, std::shared_ptr< CacheEntry > out) const override
 
void insert (uint64_t epoch, std::shared_ptr< CacheEntry > value) override
 
- Public Member Functions inherited from altintegration::EthashCache
virtual bool get (uint64_t epoch, std::shared_ptr< CacheEntry > out) const =0
 
virtual void insert (uint64_t epoch, std::shared_ptr< CacheEntry > value)=0
 
std::shared_ptr< CacheEntrygetOrDefault (uint64_t epoch, std::function< std::shared_ptr< CacheEntry >()> factory) override
 
void clear () override
 
virtual std::shared_ptr< CacheEntrygetOrDefault (uint64_t epoch, std::function< std::shared_ptr< CacheEntry >()> factory)=0
 
virtual void clear ()=0
 

Constructor & Destructor Documentation

◆ EthashCacheImpl()

altintegration::adaptors::EthashCacheImpl::EthashCacheImpl ( Storage storage)
inline

Definition at line 31 of file ethash_cache_provider_impl.hpp.

31: storage_(storage) {}

Member Function Documentation

◆ get()

bool altintegration::adaptors::EthashCacheImpl::get ( uint64_t  epoch,
std::shared_ptr< CacheEntry out 
) const
inlineoverridevirtual

Implements altintegration::EthashCache.

Definition at line 33 of file ethash_cache_provider_impl.hpp.

33 {
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 }
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...

◆ insert()

void altintegration::adaptors::EthashCacheImpl::insert ( uint64_t  epoch,
std::shared_ptr< CacheEntry value 
)
inlineoverridevirtual

Implements altintegration::EthashCache.

Definition at line 48 of file ethash_cache_provider_impl.hpp.

48 {
49 WriteStream write;
50 value->toVbkEncoding(write);
51
52 storage_.write(epoch_bytes(epoch), write.data());
53 }

The documentation for this struct was generated from the following file: