veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
command_group.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_COMMANDGROUP_HPP
7#define ALTINTEGRATION_COMMANDGROUP_HPP
8
9#include <utility>
10#include <vector>
11#include <veriblock/pop/reversed_range.hpp>
12#include <veriblock/pop/uint.hpp>
13
14#include "command.hpp"
15
16namespace altintegration {
17
19struct CommandGroup {
20 using storage_t = std::vector<CommandPtr>;
21 using id_t = std::vector<uint8_t>;
22
23 CommandGroup() = default;
24
25 CommandGroup(std::vector<uint8_t> id,
26 bool valid,
27 const std::string& payload_type_name)
28 : payload_type_name(&payload_type_name),
29 id(std::move(id)),
30 valid(valid) {}
31
32 // HACK, store the payload type name
33 const std::string* payload_type_name{};
34
35 // ATV id or VTB id or VBK block id
36 std::vector<uint8_t> id;
37 storage_t commands;
38 bool valid{true};
39
40 // clang-format off
41 typename storage_t::iterator begin() { return commands.begin(); }
42 typename storage_t::const_iterator begin() const { return commands.begin(); }
43 typename storage_t::iterator end() { return commands.end(); }
44 typename storage_t::const_iterator end() const { return commands.end(); }
45 typename storage_t::reverse_iterator rbegin() { return commands.rbegin(); }
46 typename storage_t::const_reverse_iterator rbegin() const { return commands.rbegin(); }
47 typename storage_t::reverse_iterator rend() { return commands.rend(); }
48 typename storage_t::const_reverse_iterator rend() const { return commands.rend(); }
49 // clang-format on
50
51 const std::string& getPayloadsTypeName() const { return *payload_type_name; }
52
58 bool execute(ValidationState& state) const {
59 for (auto cmd = begin(); cmd != end(); ++cmd) {
60 if (!(*cmd)->Execute(state)) {
61 // one of the commands has failed, rollback
62 for (auto r_cmd = std::reverse_iterator<decltype(cmd)>(cmd);
63 r_cmd != rend();
64 ++r_cmd) {
65 (*r_cmd)->UnExecute();
66 }
67
68 return false;
69 }
70 }
71
72 return true;
73 }
74
78 void unExecute() const noexcept {
79 for (auto& cmd : reverse_iterate(commands)) {
80 cmd->UnExecute();
81 }
82 }
83
84 bool operator==(const CommandGroup& o) const { return id == o.id; }
85
86 bool operator==(const uint256& o) const { return id == o; }
87};
88
89} // namespace altintegration
90
91#endif // ALTINTEGRATION_COMMANDGROUP_HPP
Defines logging helpers.
Definition: block.hpp:14
reverse_range< T > reverse_iterate(T &x)
This is an overloaded member function, provided for convenience. It differs from the above function o...
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