veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
mempool_block_tree.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 ALTINTEGRATION_MEMPOOL_BLOCK_TREE_HPP
7#define ALTINTEGRATION_MEMPOOL_BLOCK_TREE_HPP
8
9#include <functional>
10#include <memory>
11#include <unordered_map>
12#include <veriblock/pop/mempool_relations.hpp>
13
14#include "alt_block_tree.hpp"
15#include "temp_block_tree.hpp"
16#include "veriblock/pop/blob.hpp"
17#include "veriblock/pop/blockchain/pop/vbk_block_tree.hpp"
18#include "veriblock/pop/uint.hpp"
19#include "veriblock/pop/validation_state.hpp"
20
21namespace altintegration {
22class ValidationState;
23struct ATV;
24struct PopData;
25struct VTB;
26struct VbkBlock;
27
29struct MemPoolBlockTree {
30 using BtcBlockTree = typename VbkBlockTree::BtcTree;
31
32 MemPoolBlockTree(AltBlockTree& tree)
33 : temp_vbk_tree_(tree.vbk()), temp_btc_tree_(tree.btc()), tree_(&tree) {}
34
35 bool acceptVbkBlock(const std::shared_ptr<VbkBlock>& blk,
36 ValidationState& state);
37
38 bool acceptVTB(const VTB& vtb,
39 const std::shared_ptr<VbkBlock>& containingBlock,
40 ValidationState& state);
41
42 bool acceptATV(const ATV& atv,
43 const std::shared_ptr<VbkBlock>& blockOfProof,
44 ValidationState& state);
45
46 bool checkContextually(const ATV& atv, ValidationState& state);
47 bool checkContextually(const VTB& vtb, ValidationState& state);
48 bool checkContextually(const VbkBlock& block, ValidationState& state);
49
50 bool isBlockOld(const VbkBlock& block) const;
51
60 bool areStronglyEquivalent(const ATV& atv1, const ATV& atv2);
61
70 bool areStronglyEquivalent(const VTB& vtb1, const VTB& vtb2);
71
80 bool areWeaklyEquivalent(const VTB& vtb1, const VTB& vtb2);
81
91 int weaklyCompare(const VTB& vtb1, const VTB& vtb2);
92
93 TempBlockTree<VbkBlockTree>& vbk() { return temp_vbk_tree_; }
94
95 const TempBlockTree<VbkBlockTree>& vbk() const { return temp_vbk_tree_; }
96
97 TempBlockTree<BtcBlockTree>& btc() { return temp_btc_tree_; }
98
99 const TempBlockTree<BtcBlockTree>& btc() const { return temp_btc_tree_; }
100
103 void filterInvalidPayloads(
104 PopData& pop,
105 const std::function<void(const ATV&, const ValidationState&)>& onATV,
106 const std::function<void(const VTB&, const ValidationState&)>& onVTB,
107 const std::function<void(const VbkBlock&, const ValidationState&)>&
108 onVBK);
109
110 AltBlockTree& alt() { return *tree_; }
111
112 const AltBlockTree& alt() const { return *tree_; }
113
114 void cleanUp() {
115 temp_btc_tree_.cleanUpStaleBlocks();
116 temp_vbk_tree_.cleanUpStaleBlocks();
117 }
118
119 void clear() {
120 temp_btc_tree_.clear();
121 temp_vbk_tree_.clear();
122 }
123
124 private:
125 TempBlockTree<VbkBlockTree> temp_vbk_tree_;
126 TempBlockTree<BtcBlockTree> temp_btc_tree_;
127 AltBlockTree* tree_;
128};
129
130} // namespace altintegration
131
132#endif
Defines logging helpers.
Definition: block.hpp:14
BlockTree< BtcBlock, BtcChainParams > BtcBlockTree
Bitcoin tree.