veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
vbk_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_VBK_BLOCK_INDEX_HPP
7#define VERIBLOCK_POP_CPP_VBK_BLOCK_INDEX_HPP
8
9#include <veriblock/pop/arith_uint256.hpp>
10#include <veriblock/pop/entities/endorsements.hpp>
11#include <veriblock/pop/logger.hpp>
12#include <veriblock/pop/uint.hpp>
13
14#include "block_status.hpp"
15#include "pop/pop_state.hpp"
16
17namespace altintegration {
18
19struct VTB;
20
22struct VbkBlockAddon : public PopState<VbkEndorsement> {
23 using payloads_t = VTB;
24 using ref_height_t = int32_t;
25
28 ArithUint256 chainWork = 0;
29
30 void setNullInmemFields();
31
32 static constexpr auto validTipLevel = BLOCK_VALID_TREE;
33
34 uint32_t refCount() const { return _refCount; }
35 void setRef(uint32_t count);
36
37 void addRef(ref_height_t);
38
39 void removeRef(ref_height_t);
40
41 void setIsBootstrap(bool isBootstrap);
42
43 void insertBlockOfProofEndorsement(const AltEndorsement* e);
44
45 bool eraseLastFromBlockOfProofEndorsement(const AltEndorsement* endorsement);
46
47 void clearBlockOfProofEndorsement();
48
49 const std::vector<const AltEndorsement*>& getBlockOfProofEndorsement() const;
50
51 bool hasPayloads() const { return !_vtbids.empty(); }
52
53 template <typename pop_t>
54 const std::vector<typename pop_t::id_t>& getPayloadIds() const;
55
56 template <typename pop_t>
57 void removePayloadId(const typename pop_t::id_t& pid) {
58 auto it = std::find(_vtbids.begin(), _vtbids.end(), pid);
59 VBK_ASSERT(it != _vtbids.end());
60 _vtbids.erase(it);
61 setDirty();
62 }
63
64 template <typename pop_t>
65 void insertPayloadId(const typename pop_t::id_t& pid) {
66 _vtbids.push_back(pid);
67 setDirty();
68 }
69
70 template <typename pop_t>
71 void insertPayloadIds(const std::vector<typename pop_t::id_t>& pids) {
72 _vtbids.insert(_vtbids.end(), pids.begin(), pids.end());
73 setDirty();
74 }
75
76 std::string toPrettyString() const;
77
78 void toVbkEncoding(WriteStream& w) const;
79
80 protected:
82 uint32_t _refCount = 0;
83 // VTB::id_t
84 std::vector<uint256> _vtbids;
85
88 std::vector<const AltEndorsement*> _blockOfProofEndorsements;
89
90 void setDirty();
91
92 void setNull();
93
94 friend bool DeserializeFromVbkEncoding(ReadStream& stream,
95 VbkBlockAddon& out,
96 ValidationState& state);
97};
98
101 VbkBlockAddon& out,
102 ValidationState& state);
103
104} // namespace altintegration
105
106#endif // VERIBLOCK_POP_CPP_VBK_BLOCK_INDEX_HPP
Class that is used for storing validation state.
Defines logging helpers.
Definition: block.hpp:14
@ BLOCK_VALID_TREE
acceptBlockHeader succeded.
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