veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
mempool_relations.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_VERIBLOCK_MEMPOOL_RELATIONS_HPP
7#define ALT_INTEGRATION_VERIBLOCK_MEMPOOL_RELATIONS_HPP
8
9#include <memory>
10#include <set>
11#include <utility>
12#include <vector>
13
14#include "blockchain/alt_block_tree.hpp"
15#include "entities/atv.hpp"
16#include "entities/popdata.hpp"
17#include "entities/vbkblock.hpp"
18#include "entities/vtb.hpp"
19
20namespace altintegration {
21struct ATV;
22struct AltBlockTree;
23struct VTB;
24
26struct VbkPayloadsRelations {
27 using id_t = VbkBlock::id_t;
28 using height_t = typename VbkBlock::height_t;
29
31 EndorsedAltComparator(const AltBlockTree& tree) : tree_(tree) {}
32 int operator()(const std::shared_ptr<ATV>& a,
33 const std::shared_ptr<ATV>& b) const;
34
35 private:
36 const AltBlockTree& tree_;
37 };
38
40 int operator()(const std::shared_ptr<ATV>& a,
41 const std::shared_ptr<ATV>& b) const;
42 };
43
46 : txFeeComparator(), endorsedAltComparator(tree) {}
47 bool operator()(const std::shared_ptr<ATV>& a,
48 const std::shared_ptr<ATV>& b) const;
49
50 private:
51 TxFeeComparator txFeeComparator;
52 EndorsedAltComparator endorsedAltComparator;
53 };
54
55 VbkPayloadsRelations(const AltBlockTree& tree, const VbkBlock& b)
56 : tree_(tree),
57 header(std::make_shared<VbkBlock>(b)),
58 atvComparator(tree),
59 atvs(atvComparator) {}
60
61 VbkPayloadsRelations(const AltBlockTree& tree,
62 std::shared_ptr<VbkBlock> ptr_b)
63 : tree_(tree),
64 header(std::move(ptr_b)),
65 atvComparator(tree),
66 atvs(atvComparator) {}
67
68 const AltBlockTree& tree_;
69 std::shared_ptr<VbkBlock> header;
70 std::vector<std::shared_ptr<VTB>> vtbs;
71 AtvCombinedComparator atvComparator;
72 std::set<std::shared_ptr<ATV>, AtvCombinedComparator> atvs;
73
74 bool empty() const { return atvs.empty() && vtbs.empty(); }
75};
76
77} // namespace altintegration
78
79#endif
Defines logging helpers.
Definition: block.hpp:14
Represents simplified view on Altchain's block tree, maintains VBK tree and BTC tree.
Veriblock block.
Definition: vbkblock.hpp:32