veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
addblock.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_ADDBLOCK_HPP
7#define ALTINTEGRATION_ADDBLOCK_HPP
8
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>
17
18namespace altintegration {
19
21template <typename Block, typename ChainParams>
22struct AddBlock : public Command {
23 using Tree = BlockTree<Block, ChainParams>;
24 using ref_height_t = int32_t;
25
26 AddBlock(Tree& tree,
27 std::shared_ptr<Block> block,
28 ref_height_t referencedAtHeight = 0)
29 : tree_(&tree),
30 block_(std::move(block)),
31 referencedAtHeight_(referencedAtHeight) {}
32
33 bool Execute(ValidationState& state) noexcept override {
34 auto& hash = block_->getHash();
35 auto* index = tree_->getBlockIndex(hash);
36
37 if (index == nullptr) {
38 if (!tree_->acceptBlockHeader(block_, state)) {
39 return false;
40 }
41
42 index = tree_->getBlockIndex(block_->getHash());
43 VBK_ASSERT(index != nullptr &&
44 "could not find the block we have just added");
45 }
46
47 index->addRef(referencedAtHeight_);
48 return true;
49 }
50
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",
56 HexStr(hash));
57
58 index->removeRef(referencedAtHeight_);
59
60 if (index->refCount() == 0) {
61 assertBlockCanBeRemoved(*index);
62 tree_->removeLeaf(*index);
63 return;
64 }
65 }
66
67 private:
68 Tree* tree_ = nullptr;
69 std::shared_ptr<Block> block_ = nullptr;
70 int32_t referencedAtHeight_;
71};
72
74using AddBtcBlock = AddBlock<BtcBlock, BtcChainParams>;
76using AddVbkBlock = AddBlock<VbkBlock, VbkChainParams>;
77
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;
86 // we don't know this block, create command
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));
91};
92
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);
99}
100
101} // namespace altintegration
102
103#endif // ALTINTEGRATION_ADDBLOCK_HPP
Defines logging helpers.
Definition: block.hpp:14
std::string HexStr(const T itbegin, const T itend)
Convert bytes to hex.
Definition: strutil.hpp:44