6#ifndef ALTINTEGRATION_ADDBLOCK_HPP
7#define ALTINTEGRATION_ADDBLOCK_HPP
9#include <veriblock/pop/blockchain/block_index.hpp>
10#include <veriblock/pop/blockchain/blocktree.hpp>
11#include <veriblock/pop/blockchain/btc_chain_params.hpp>
12#include <veriblock/pop/blockchain/command.hpp>
13#include <veriblock/pop/blockchain/vbk_chain_params.hpp>
14#include <veriblock/pop/entities/btcblock.hpp>
15#include <veriblock/pop/entities/vbkblock.hpp>
16#include <veriblock/pop/fmt.hpp>
21template <
typename Block,
typename ChainParams>
22struct AddBlock :
public Command {
23 using Tree = BlockTree<Block, ChainParams>;
24 using ref_height_t = int32_t;
27 std::shared_ptr<Block> block,
28 ref_height_t referencedAtHeight = 0)
30 block_(std::move(block)),
31 referencedAtHeight_(referencedAtHeight) {}
33 bool Execute(ValidationState& state)
noexcept override {
34 auto& hash = block_->getHash();
35 auto* index = tree_->getBlockIndex(hash);
37 if (index ==
nullptr) {
38 if (!tree_->acceptBlockHeader(block_, state)) {
42 index = tree_->getBlockIndex(block_->getHash());
43 VBK_ASSERT(index !=
nullptr &&
44 "could not find the block we have just added");
47 index->addRef(referencedAtHeight_);
51 void UnExecute() noexcept
override {
52 auto hash = block_->getHash();
53 auto* index = tree_->getBlockIndex(hash);
54 VBK_ASSERT_MSG(index !=
nullptr,
55 "failed to roll back AddBlock: the block does not exist %s",
58 index->removeRef(referencedAtHeight_);
60 if (index->refCount() == 0) {
61 assertBlockCanBeRemoved(*index);
62 tree_->removeLeaf(*index);
68 Tree* tree_ =
nullptr;
69 std::shared_ptr<Block> block_ =
nullptr;
70 int32_t referencedAtHeight_;
74using AddBtcBlock = AddBlock<BtcBlock, BtcChainParams>;
76using AddVbkBlock = AddBlock<VbkBlock, VbkChainParams>;
79template <
typename BlockTree>
80void addBlock(BlockTree& tree,
81 const typename BlockTree::block_t& block,
82 int32_t referencedAtHeight,
83 std::vector<CommandPtr>& commands) {
84 using block_t =
typename BlockTree::block_t;
85 using params_t =
typename BlockTree::params_t;
87 auto blockPtr = std::make_shared<block_t>(block);
88 auto cmd = std::make_shared<AddBlock<block_t, params_t>>(
89 tree, std::move(blockPtr), referencedAtHeight);
90 commands.push_back(std::move(cmd));
94template <
typename BlockTree>
95void addBlock(BlockTree& tree,
96 const typename BlockTree::block_t& block,
97 std::vector<CommandPtr>& commands) {
98 return addBlock(tree, block, 0, commands);
std::string HexStr(const T itbegin, const T itend)
Convert bytes to hex.