veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
counting_context.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_CONTINUE_ON_INVALID_HPP
7#define VERIBLOCK_POP_CPP_CONTINUE_ON_INVALID_HPP
8
9#include <veriblock/pop/blockchain/alt_chain_params.hpp>
10#include <veriblock/pop/blockchain/command_group.hpp>
11#include <veriblock/pop/entities/popdata.hpp>
12
13namespace altintegration {
14
16struct CountingContext {
17 CountingContext(const AltChainParams& params) : params_(params) {}
18
20 bool canFit(const ATV& p) const {
21 if (atvs >= params_.getMaxATVsInAltBlock()) {
22 return false;
23 }
24 size_t size = p.estimateSize();
25 return canFitSize(size);
26 }
27
28 bool canFit(const VTB& p) const {
29 if (vtbs >= params_.getMaxVTBsInAltBlock()) {
30 return false;
31 }
32 size_t size = p.estimateSize();
33 return canFitSize(size);
34 }
35
36 bool canFit(const VbkBlock& p) const {
37 if (vbks >= params_.getMaxVbkBlocksInAltBlock()) {
38 return false;
39 }
40 size_t size = p.estimateSize();
41 return canFitSize(size);
42 }
43
44 void update(const ATV& p) {
45 atvs_size += p.estimateSize();
46 atvs++;
47 }
48
49 void update(const VTB& p) {
50 vtbs_size += p.estimateSize();
51 vtbs++;
52 }
53
54 void update(const VbkBlock& p) {
55 vbks_size += p.estimateSize();
56 vbks++;
57 }
58
59 private:
60 bool canFitSize(size_t size) const {
61 // clang-format off
62 size_t popdatasize =
63 sizeof(PopData::version) +
64 singleBEValueSize(atvs) + atvs_size +
65 singleBEValueSize(vtbs) + vtbs_size +
66 singleBEValueSize(vbks) + vbks_size;
67 // clang-format on
68 return popdatasize + size <= params_.getMaxPopDataSize();
69 }
70
71 private:
72 size_t atvs = 0;
73 size_t vtbs = 0;
74 size_t vbks = 0;
75 size_t atvs_size = 0;
76 size_t vtbs_size = 0;
77 size_t vbks_size = 0;
78 const AltChainParams& params_;
79};
80
81} // namespace altintegration
82
83#endif // VERIBLOCK_POP_CPP_CONTINUE_ON_INVALID_HPP
Defines logging helpers.
Definition: block.hpp:14