veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
mock_miner.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_MOCK_MINER_2_HPP
7#define ALT_INTEGRATION_VERIBLOCK_MOCK_MINER_2_HPP
8
9#include <memory>
10#include <unordered_map>
11#include <utility>
12#include <vector>
13
14#include "blockchain/blocktree.hpp"
15#include "blockchain/miner.hpp"
16#include "blockchain/pop/vbk_block_tree.hpp"
17#include "bootstraps.hpp"
18#include "entities/atv.hpp"
19#include "entities/btcblock.hpp"
20#include "entities/merkle_tree.hpp"
21#include "entities/vbkblock.hpp"
22#include "entities/vbktx.hpp"
23#include "entities/vtb.hpp"
24#include "storage/adaptors/block_provider_impl.hpp"
25#include "storage/adaptors/inmem_storage_impl.hpp"
26#include "storage/adaptors/payloads_provider_impl.hpp"
27
28namespace altintegration {
29
31template <typename T>
32std::vector<typename T::hash_t> hashAll(const std::vector<T>& txs) {
33 std::vector<typename T::hash_t> hashes(txs.size());
34 for (size_t i = 0; i < hashes.size(); i++) {
35 hashes[i] = txs[i].getHash();
36 }
37 return hashes;
38}
39
41class MockMiner {
42 public:
43 using btc_block_tree = BlockTree<BtcBlock, BtcChainParams>;
44 using vbk_block_tree = VbkBlockTree;
45
46 public:
47 PopData endorseAltBlock(const PublicationData& publicationData,
48 const VbkBlock::hash_t& lastKnownVbkBlockHash);
49
50 VTB endorseVbkBlock(const VbkBlock& publishedBlock,
51 const BtcBlock::hash_t& lastKnownBtcBlockHash);
52
53 VbkPopTx createVbkPopTxEndorsingVbkBlock(
54 const VbkBlock& publishedBlock,
55 const BtcBlock::hash_t& lastKnownBtcBlockHash);
56
57 PopData createPopDataEndorsingAltBlock(
58 const VbkBlock& blockOfProof,
59 const VbkTx& tx,
60 const VbkBlock::hash_t& lastKnownVbkBlockHash) const;
61
62 ATV createATV(const VbkBlock& blockOfProof, const VbkTx& tx) const;
63
64 VbkTx createVbkTxEndorsingAltBlockWithSourceAmount(
65 const PublicationData& publicationData, const Coin& sourceAmount) const;
66
67 VbkTx createVbkTxEndorsingAltBlock(
68 const PublicationData& publicationData) const;
69
70 VTB createVTB(const VbkBlock& containingBlock, const VbkPopTx& tx) const;
71
72 VbkPopTx createVbkPopTxEndorsingVbkBlock(
73 const BtcBlock& blockOfProof,
74 const BtcTx& tx,
75 const VbkBlock& publishedBlock,
76 const BtcBlock::hash_t& lastKnownBtcBlockHash) const;
77
78 BtcTx createBtcTxEndorsingVbkBlock(const VbkBlock& publishedBlock) const;
79
80 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount);
81 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
82 const BlockIndex<VbkBlock>& tip);
83 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
84 const std::vector<VbkTx>& txs,
85 const std::vector<VbkPopTx>& pop_txs);
86 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
87 const std::vector<VbkTx>& txs);
88 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
89 const std::vector<VbkPopTx>& pop_txs);
90 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
91 const BlockIndex<VbkBlock>& tip,
92 const std::vector<VbkTx>& txs,
93 const std::vector<VbkPopTx>& pop_txs);
94 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
95 const BlockIndex<VbkBlock>& tip,
96 const std::vector<VbkTx>& txs);
97 BlockIndex<VbkBlock>* mineVbkBlocks(size_t amount,
98 const BlockIndex<VbkBlock>& tip,
99 const std::vector<VbkPopTx>& pop_txs);
100
101 BlockIndex<BtcBlock>* mineBtcBlocks(size_t amount,
102 const std::vector<BtcTx>& txs = {});
103 BlockIndex<BtcBlock>* mineBtcBlocks(size_t amount,
104 const BlockIndex<BtcBlock>& tip,
105 const std::vector<BtcTx>& txs = {});
106
107 const BlockIndex<VbkBlock>* vbkTip() const;
108 const BlockIndex<BtcBlock>* btcTip() const;
109
110 const BlockIndex<VbkBlock>* getVbkBlockIndex(
111 const VbkBlock::hash_t& hash) const;
112 const BlockIndex<BtcBlock>* getBtcBlockIndex(
113 const BtcBlock::hash_t& hash) const;
114
115 std::vector<VTB> getVTBs(const VbkBlock& block) const;
116 const std::unordered_map<VbkBlock::hash_t, std::vector<VTB>>& getAllVTBs()
117 const;
118
119 vbk_block_tree& vbk() { return vbk_tree_; }
120 btc_block_tree& btc() { return btc_tree_; }
121 const vbk_block_tree& vbk() const { return vbk_tree_; }
122 const btc_block_tree& btc() const { return btc_tree_; }
123 const VbkChainParams& vbkParams() const { return vbk_params_; }
124 const BtcChainParams& btcParams() const { return btc_params_; }
125
126 MockMiner(const AltChainParams& alt_config,
127 const VbkChainParams& vbk_config,
128 const BtcChainParams& btc_config)
129 : alt_params_(alt_config),
130 vbk_params_(vbk_config),
131 btc_params_(btc_config) {
132 btc_tree_.bootstrapWithGenesis(GetRegTestBtcBlock());
133 vbk_tree_.bootstrapWithGenesis(GetRegTestVbkBlock());
134 }
135
136 adaptors::InmemStorageImpl& getStorage() { return storage_; }
137
138 private:
139 template <typename BlockTree, typename Block>
140 static std::vector<Block> getBlocks(
141 BlockTree& tree,
142 const Block& tip,
143 const typename Block::hash_t& lastKnownHash);
144
145 template <typename BlockTree, typename Block>
146 static BlockIndex<Block>* acceptBlock(BlockTree& tree, const Block& block);
147
148 BlockIndex<VbkBlock>* mineBlocks(size_t amount,
149 const BlockIndex<VbkBlock>& tip,
150 const std::vector<VbkTx>& txs,
151 const std::vector<VbkPopTx>& pop_txs);
152
153 BlockIndex<BtcBlock>* mineBlocks(size_t amount,
154 const BlockIndex<BtcBlock>& tip,
155 const std::vector<BtcTx>& txs);
156
157 BlockIndex<VbkBlock>* mineBlock(const BlockIndex<VbkBlock>& tip,
158 const std::vector<VbkTx>& txs);
159
160 BlockIndex<VbkBlock>* mineBlock(const BlockIndex<VbkBlock>& tip,
161 const std::vector<VbkPopTx>& txs);
162
163 BlockIndex<VbkBlock>* mineBlock(const BlockIndex<VbkBlock>& tip,
164 const std::vector<VbkTx>& txs,
165 const std::vector<VbkPopTx>& pop_txs);
166
167 BlockIndex<BtcBlock>* mineBlock(const BlockIndex<BtcBlock>& tip,
168 const std::vector<BtcTx>& txs);
169
170 bool saveVTBs(BlockIndex<VbkBlock>* blockIndex,
171 const std::vector<VbkPopTx>& txs);
172
173 VbkMerklePath getMerklePath(const VbkBlock& block,
174 const uint256& txHash,
175 VbkMerkleTree::TreeIndex treeIndex) const;
176 MerklePath getMerklePath(const BtcBlock& block, const uint256& txHash) const;
177
178 const AltChainParams& alt_params_;
179 const VbkChainParams& vbk_params_;
180 const BtcChainParams& btc_params_;
181 adaptors::InmemStorageImpl storage_{};
182 adaptors::PayloadsStorageImpl payloads_provider_{storage_};
183 adaptors::BlockReaderImpl block_provider_{storage_, alt_params_};
184
185 Miner<BtcBlock, BtcChainParams> btc_miner_{btc_params_};
186 Miner<VbkBlock, VbkChainParams> vbk_miner_{vbk_params_};
187
188 vbk_block_tree vbk_tree_{
189 vbk_params_, btc_params_, payloads_provider_, block_provider_};
190 btc_block_tree& btc_tree_ = vbk_tree_.btc();
191
192 std::unordered_map<VbkBlock::hash_t, std::vector<VTB>> vtbs_;
193 std::unordered_map<VbkBlock::hash_t, VbkMerkleTree> vbk_merkle_trees_;
194 std::unordered_map<BtcBlock::hash_t, BtcMerkleTree> btc_merkle_trees_;
195};
196
197} // namespace altintegration
198
199#endif
Defines logging helpers.
Definition: block.hpp:14
BtcBlock GetRegTestBtcBlock()
Getter for regtest BTC network genesis block.
VbkBlock GetRegTestVbkBlock()
Getter for regtest_progpow VBK network genesis block.
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: uint.hpp:24