veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
alt_block_addon.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 VERIBLOCK_POP_CPP_ALT_BLOCK_ADDON_HPP
7#define VERIBLOCK_POP_CPP_ALT_BLOCK_ADDON_HPP
8
9#include <cstdint>
10#include <limits>
11#include <string>
12#include <vector>
13
14#include "veriblock/pop/assert.hpp"
15#include "veriblock/pop/blockchain/block_status.hpp"
16#include "veriblock/pop/blockchain/pop/pop_state.hpp"
17#include "veriblock/pop/entities/endorsements.hpp"
18#include "veriblock/pop/uint.hpp"
19
20namespace altintegration {
21
22struct PopData;
23class ValidationState;
24class WriteStream;
25struct ReadStream;
26
28struct AltBlockAddon : public PopState<AltEndorsement> {
29 using payloads_t = PopData;
30
31 void setNullInmemFields();
32
33 static constexpr auto validTipLevel = BLOCK_CONNECTED;
34
35 bool hasPayloads() const;
36
37 void clearPayloads();
38
39 template <typename pop_t>
40 const std::vector<typename pop_t::id_t>& getPayloadIds() const;
41
42 // used in `continueOnInvalid` mode
43 template <typename pop_t>
44 void removePayloadId(const typename pop_t::id_t& pid) {
45 auto& payloads = getPayloadIdsInner<pop_t>();
46 auto it = std::find(payloads.begin(), payloads.end(), pid);
47 VBK_ASSERT(it != payloads.end());
48 payloads.erase(it);
49 setDirty();
50 }
51
52 template <typename pop_t>
53 void setPayloads(const std::vector<typename pop_t::id_t>& pids) {
54 auto& payloads = getPayloadIdsInner<pop_t>();
55 payloads = pids;
56 setDirty();
57 }
58
59 // used in tests
60 template <typename pop_t>
61 void insertPayloadIds(const std::vector<typename pop_t::id_t>& pids) {
62 auto& payloads = getPayloadIdsInner<pop_t>();
63 payloads.insert(payloads.end(), pids.begin(), pids.end());
64 setDirty();
65 }
66
67 std::string toPrettyString() const;
68
69 void toVbkEncoding(WriteStream& w) const;
70
71 protected:
73 // ATV::id_t
74 std::vector<uint256> _atvids;
75 // VTB::id_t
76 std::vector<uint256> _vtbids;
77 // VbkBlock::id_t
78 std::vector<uint96> _vbkblockids;
79
84 int32_t minContainingVbkBlockHeight = std::numeric_limits<int32_t>::max();
85
86 void setDirty();
87
88 void setNull();
89
90 template <typename pop_t>
91 std::vector<typename pop_t::id_t>& getPayloadIdsInner();
92
93 friend bool DeserializeFromVbkEncoding(ReadStream& stream,
94 AltBlockAddon& out,
95 ValidationState& state);
96};
97
100 AltBlockAddon& out,
101 ValidationState& state);
102
103} // namespace altintegration
104
105#endif // VERIBLOCK_POP_CPP_ALT_BLOCK_ADDON_HPP
Class that is used for storing validation state.
Defines logging helpers.
Definition: block.hpp:14
@ BLOCK_CONNECTED
the block is connected via connectBlock, which means that this block and all its ancestors are at lea...
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Binary reading stream, that is useful during binary deserialization.
Definition: read_stream.hpp:22