veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
pop_stateless_validator.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 COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef ALT_INTEGRATION_VERIBLOCK_POP_STATELESS_VALIDATOR_HPP
7#define ALT_INTEGRATION_VERIBLOCK_POP_STATELESS_VALIDATOR_HPP
8
9#include <cstddef>
10#include <future>
11#include <memory>
12#include <veriblock/pop/blockchain/alt_chain_params.hpp>
13#include <veriblock/pop/blockchain/btc_chain_params.hpp>
14#include <veriblock/pop/blockchain/vbk_chain_params.hpp>
15#include <veriblock/pop/validation_state.hpp>
16
17#include "veriblock/pop/third_party/thread_pool/mpmc_bounded_queue.hpp"
18#include "veriblock/pop/third_party/thread_pool/thread_pool.hpp"
19
20#ifndef VBK_NO_THREADS
21#include <veriblock/pop/third_party/thread_pool.hpp>
22#endif
23
24namespace altintegration {
25class ValidationState;
26struct AltChainParams;
27struct BtcChainParams;
28struct VbkChainParams;
29
30#ifndef VBK_NO_THREADS
32using ValidationThreadPool =
33 tp::ThreadPoolImpl<tp::FixedFunction<void(), 128>, tp::MPMCBoundedQueue>;
34#endif
35
37class PopValidator {
38 public:
39 PopValidator(const VbkChainParams& vbk,
40 const BtcChainParams& btc,
41 const AltChainParams& alt,
42 size_t threads = 0);
43 ~PopValidator();
44
45 void start(size_t threads = 0);
46 void stop();
47
48 template <typename CheckType>
49 std::future<ValidationState> addCheck(const CheckType& block);
50
51 const VbkChainParams& getVbkParams() const { return vbk_; }
52 const BtcChainParams& getBtcParams() const { return btc_; }
53 const AltChainParams& getAltParams() const { return alt_; }
54
55 void clear();
56
57 protected:
58 size_t threads_ = 0;
59#ifndef VBK_NO_THREADS
60 std::shared_ptr<ValidationThreadPool> workers;
61#endif
62 const VbkChainParams& vbk_;
63 const BtcChainParams& btc_;
64 const AltChainParams& alt_;
65};
66
67} // namespace altintegration
68
69#endif // ALT_INTEGRATION_VERIBLOCK_POP_STATELESS_VALIDATOR_HPP
Defines logging helpers.
Definition: block.hpp:14