Bitcoin ABC 0.33.11
P2P Digital Currency
context.h
Go to the documentation of this file.
1// Copyright (c) 2019 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_NODE_CONTEXT_H
6#define BITCOIN_NODE_CONTEXT_H
7
8#include <kernel/context.h>
9
10#include <atomic>
11#include <cassert>
12#include <cstdlib>
13#include <functional>
14#include <memory>
15#include <vector>
16
17class ArgsManager;
18class AddrMan;
19class BanMan;
20class BaseIndex;
21class CConnman;
23class CScheduler;
24class CTxMemPool;
26class PeerManager;
27namespace interfaces {
28class Chain;
29class ChainClient;
30class WalletClient;
31} // namespace interfaces
32namespace avalanche {
33class Processor;
34} // namespace avalanche
35
36namespace node {
37class KernelNotifications;
38
51 std::unique_ptr<kernel::Context> kernel;
52 std::unique_ptr<AddrMan> addrman;
53 std::unique_ptr<CConnman> connman;
54 std::unique_ptr<CTxMemPool> mempool;
55 std::unique_ptr<PeerManager> peerman;
56 std::unique_ptr<ChainstateManager> chainman;
57 std::unique_ptr<BanMan> banman;
58 // Currently a raw pointer because the memory is not managed by this struct
59 ArgsManager *args{nullptr};
60 // raw pointers because memory is not managed by this struct
61 std::vector<BaseIndex *> indexes;
62 std::unique_ptr<interfaces::Chain> chain;
65 std::vector<std::unique_ptr<interfaces::ChainClient>> chain_clients;
69 std::unique_ptr<CScheduler> scheduler;
70 std::function<void()> rpc_interruption_point = [] {};
72 std::unique_ptr<KernelNotifications> notifications;
74 std::unique_ptr<ValidationSignals> validation_signals;
75 std::atomic<int> exit_status{EXIT_SUCCESS};
76
77 std::unique_ptr<avalanche::Processor> avalanche;
78
84};
85} // namespace node
86
87#endif // BITCOIN_NODE_CONTEXT_H
Stochastic address manager.
Definition: addrman.h:68
Definition: banman.h:59
Base class for indices of blockchain data.
Definition: base.h:37
Definition: net.h:841
Simple class for background tasks that should be run periodically or once "after a while".
Definition: scheduler.h:42
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:222
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
Definition: validation.h:1174
Wallet chain client that in addition to having chain client methods for starting up,...
Definition: wallet.h:304
Definition: messages.h:12
NodeContext struct containing references to chain state and connection state.
Definition: context.h:49
std::unique_ptr< ValidationSignals > validation_signals
Issues calls about blocks and transactions.
Definition: context.h:74
std::vector< BaseIndex * > indexes
Definition: context.h:61
std::unique_ptr< CConnman > connman
Definition: context.h:53
std::unique_ptr< kernel::Context > kernel
libbitcoin_kernel context
Definition: context.h:51
std::vector< std::unique_ptr< interfaces::ChainClient > > chain_clients
List of all chain clients (wallet processes or other client) connected to node.
Definition: context.h:65
std::unique_ptr< CTxMemPool > mempool
Definition: context.h:54
std::unique_ptr< BanMan > banman
Definition: context.h:57
std::unique_ptr< avalanche::Processor > avalanche
Definition: context.h:77
std::unique_ptr< AddrMan > addrman
Definition: context.h:52
std::function< void()> rpc_interruption_point
Definition: context.h:70
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:56
NodeContext()
Declare default constructor and destructor that are not inline, so code instantiating the NodeContext...
std::unique_ptr< KernelNotifications > notifications
Issues blocking calls about sync status, errors and warnings.
Definition: context.h:72
std::unique_ptr< CScheduler > scheduler
Definition: context.h:69
interfaces::WalletClient * wallet_client
Reference to chain client that should used to load or create wallets opened by the gui.
Definition: context.h:68
std::unique_ptr< PeerManager > peerman
Definition: context.h:55
ArgsManager * args
Definition: context.h:59
std::atomic< int > exit_status
Definition: context.h:75
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:62