veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
command_group_cache.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 ALT_INTEGRATION_INCLUDE_VERIBLOCK_COMMAND_GROUP_CACHE_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_COMMAND_GROUP_CACHE_HPP_
8
9#include <cstddef>
10#include <cstdint>
11#include <list>
12#include <unordered_map>
13#include <vector>
14
15#include "blockchain/command_group.hpp"
16#include "hashers.hpp"
17
18namespace altintegration {
19struct CommandGroup;
20
22struct CommandGroupCache {
23 // id = containing block hash
24 using id_t = std::vector<uint8_t>;
25 CommandGroupCache(const size_t maxsize = 1000);
26
27 bool put(const id_t& cid, const std::vector<CommandGroup>& cg);
28
29 bool get(const id_t& cid, std::vector<CommandGroup>* out);
30
31 bool remove(const id_t& cid);
32
33 void clear();
34
35 protected:
36 size_t _maxsize;
37 std::list<id_t> _priority;
38 std::unordered_map<id_t, std::list<id_t>::iterator> _keys;
39 // cache stores [containing block hash] => list of command groups
40 std::unordered_map<id_t, std::vector<CommandGroup>> _cache;
41
42 void truncate();
43
44 bool refer(const id_t& cid);
45};
46
47} // namespace altintegration
48
49#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_COMMAND_GROUP_CACHE_HPP_
Defines logging helpers.
Definition: block.hpp:14