Bitcoin Core 32.99.0
P2P Digital Currency
node.h
Go to the documentation of this file.
1// Copyright (c) 2018-present 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_INTERFACES_NODE_H
6#define BITCOIN_INTERFACES_NODE_H
7
8#include <common/settings.h>
9#include <consensus/amount.h>
10#include <net.h>
11#include <net_types.h>
12#include <netaddress.h>
13#include <netbase.h>
15#include <uint256.h>
16#include <util/log.h>
17#include <util/translation.h>
18
19#include <cstddef>
20#include <cstdint>
21#include <functional>
22#include <map>
23#include <memory>
24#include <optional>
25#include <string>
26#include <tuple>
27#include <vector>
28
29class CFeeRate;
30class Coin;
31class UniValue;
32enum class SynchronizationState;
33struct CNodeStateStats;
34namespace node {
35enum class TransactionError;
36struct NodeContext;
37} // namespace node
38
39namespace interfaces {
40class Handler;
41class WalletLoader;
42struct BlockTip;
43
46{
48 int64_t block_time;
50 int64_t header_time;
52};
53
56{
57public:
58 virtual ~ExternalSigner() = default;
59
61 virtual std::string getName() = 0;
62};
63
65class Node
66{
67public:
68 virtual ~Node() = default;
69
71 virtual void initLogging() = 0;
72
74 virtual void initParameterInteraction() = 0;
75
78
80 virtual int getExitStatus() = 0;
81
82 // Get log flags.
84
86 virtual bool baseInitialize() = 0;
87
89 virtual bool appInitMain(interfaces::BlockAndHeaderTipInfo* tip_info = nullptr) = 0;
90
92 virtual void appShutdown() = 0;
93
95 virtual void startShutdown() = 0;
96
98 virtual bool shutdownRequested() = 0;
99
102 virtual bool isSettingIgnored(const std::string& name) = 0;
103
105 virtual common::SettingsValue getPersistentSetting(const std::string& name) = 0;
106
108 virtual void updateRwSetting(const std::string& name, const common::SettingsValue& value) = 0;
109
112 virtual void forceSetting(const std::string& name, const common::SettingsValue& value) = 0;
113
116 virtual void resetSettings() = 0;
117
119 virtual void mapPort(bool enable) = 0;
120
122 virtual std::optional<Proxy> getProxy(Network net) = 0;
123
126
128 using NodesStats = std::vector<std::tuple<CNodeStats, bool, CNodeStateStats>>;
129 virtual bool getNodesStats(NodesStats& stats) = 0;
130
132 virtual bool getBanned(banmap_t& banmap) = 0;
133
135 virtual bool ban(const CNetAddr& net_addr, int64_t ban_time_offset) = 0;
136
138 virtual bool unban(const CSubNet& ip) = 0;
139
141 virtual bool disconnectByAddress(const CNetAddr& net_addr) = 0;
142
144 virtual bool disconnectById(NodeId id) = 0;
145
147 virtual std::vector<std::unique_ptr<ExternalSigner>> listExternalSigners() = 0;
148
150 virtual int64_t getTotalBytesRecv() = 0;
151
153 virtual int64_t getTotalBytesSent() = 0;
154
156 virtual size_t getMempoolSize() = 0;
157
159 virtual size_t getMempoolDynamicUsage() = 0;
160
162 virtual size_t getMempoolMaxUsage() = 0;
163
165 virtual bool getHeaderTip(int& height, int64_t& block_time) = 0;
166
168 virtual int getNumBlocks() = 0;
169
171 virtual std::map<CNetAddr, LocalServiceInfo> getNetLocalAddresses() = 0;
172
175
177 virtual int64_t getLastBlockTime() = 0;
178
180 virtual double getVerificationProgress() = 0;
181
183 virtual bool isInitialBlockDownload() = 0;
184
186 virtual bool isLoadingBlocks() = 0;
187
189 virtual void setNetworkActive(bool active) = 0;
190
192 virtual bool getNetworkActive() = 0;
193
196
198 virtual UniValue executeRpc(const std::string& command, const UniValue& params, const std::string& uri) = 0;
199
201 virtual std::vector<std::string> listRpcCommands() = 0;
202
204 virtual std::optional<Coin> getUnspentOutput(const COutPoint& output) = 0;
205
207 virtual node::TransactionError broadcastTransaction(CTransactionRef tx, CAmount max_tx_fee, std::string& err_string) = 0;
208
211
213 using InitMessageFn = std::function<void(const std::string& message)>;
214 virtual std::unique_ptr<Handler> handleInitMessage(InitMessageFn fn) = 0;
215
217 using MessageBoxFn = std::function<void(const bilingual_str& message, unsigned int style)>;
218 virtual std::unique_ptr<Handler> handleMessageBox(MessageBoxFn fn) = 0;
219
221 using QuestionFn = std::function<bool(const bilingual_str& message,
222 const std::string& non_interactive_message,
223 unsigned int style)>;
224 virtual std::unique_ptr<Handler> handleQuestion(QuestionFn fn) = 0;
225
227 using ShowProgressFn = std::function<void(const std::string& title, int progress, bool resume_possible)>;
228 virtual std::unique_ptr<Handler> handleShowProgress(ShowProgressFn fn) = 0;
229
231 using InitWalletFn = std::function<void()>;
232 virtual std::unique_ptr<Handler> handleInitWallet(InitWalletFn fn) = 0;
233
235 using NotifyNumConnectionsChangedFn = std::function<void(int new_num_connections)>;
236 virtual std::unique_ptr<Handler> handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn) = 0;
237
239 using NotifyNetworkActiveChangedFn = std::function<void(bool network_active)>;
240 virtual std::unique_ptr<Handler> handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn) = 0;
241
243 using NotifyAlertChangedFn = std::function<void()>;
244 virtual std::unique_ptr<Handler> handleNotifyAlertChanged(NotifyAlertChangedFn fn) = 0;
245
247 using BannedListChangedFn = std::function<void()>;
248 virtual std::unique_ptr<Handler> handleBannedListChanged(BannedListChangedFn fn) = 0;
249
252 std::function<void(SynchronizationState, interfaces::BlockTip tip, double verification_progress)>;
253 virtual std::unique_ptr<Handler> handleNotifyBlockTip(NotifyBlockTipFn fn) = 0;
254
257 std::function<void(SynchronizationState, interfaces::BlockTip tip, bool presync)>;
258 virtual std::unique_ptr<Handler> handleNotifyHeaderTip(NotifyHeaderTipFn fn) = 0;
259
262 virtual node::NodeContext* context() { return nullptr; }
264};
265
267std::unique_ptr<Node> MakeNode(node::NodeContext& context);
268
270struct BlockTip {
272 int64_t block_time;
274};
275
276} // namespace interfaces
277
278#endif // BITCOIN_INTERFACES_NODE_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
int flags
Definition: bitcoin-tx.cpp:530
const auto command
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
Definition: feerate.h:32
Network address.
Definition: netaddress.h:113
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition: transaction.h:29
A UTXO entry.
Definition: coins.h:46
External signer interface used by the GUI.
Definition: node.h:56
virtual std::string getName()=0
Get signer display name.
virtual ~ExternalSigner()=default
Top-level interface for a bitcoin node (bitcoind process).
Definition: node.h:66
std::function< void()> BannedListChangedFn
Register handler for ban list messages.
Definition: node.h:247
virtual void mapPort(bool enable)=0
Map port.
virtual void updateRwSetting(const std::string &name, const common::SettingsValue &value)=0
Update a setting in <datadir>/settings.json.
virtual std::map< CNetAddr, LocalServiceInfo > getNetLocalAddresses()=0
Get network local addresses.
virtual std::optional< Coin > getUnspentOutput(const COutPoint &output)=0
Get unspent output associated with a transaction.
virtual common::SettingsValue getPersistentSetting(const std::string &name)=0
Return setting value from <datadir>/settings.json or bitcoin.conf.
virtual bool disconnectById(NodeId id)=0
Disconnect node by id.
virtual bool baseInitialize()=0
Initialize app dependencies.
std::function< void(SynchronizationState, interfaces::BlockTip tip, bool presync)> NotifyHeaderTipFn
Register handler for header tip messages.
Definition: node.h:257
virtual std::unique_ptr< Handler > handleInitMessage(InitMessageFn fn)=0
virtual bool ban(const CNetAddr &net_addr, int64_t ban_time_offset)=0
Ban node.
std::function< void(bool network_active)> NotifyNetworkActiveChangedFn
Register handler for network active messages.
Definition: node.h:239
virtual std::unique_ptr< Handler > handleShowProgress(ShowProgressFn fn)=0
virtual void setNetworkActive(bool active)=0
Set network active.
virtual bilingual_str getWarnings()=0
Get warnings.
virtual size_t getMempoolMaxUsage()=0
Get mempool maximum memory usage.
virtual std::vector< std::string > listRpcCommands()=0
List rpc commands.
virtual void appShutdown()=0
Stop node.
virtual node::TransactionError broadcastTransaction(CTransactionRef tx, CAmount max_tx_fee, std::string &err_string)=0
Broadcast transaction.
std::function< void(const std::string &message)> InitMessageFn
Register handler for init messages.
Definition: node.h:213
virtual std::unique_ptr< Handler > handleNotifyBlockTip(NotifyBlockTipFn fn)=0
virtual void resetSettings()=0
Clear all settings in <datadir>/settings.json and store a backup of previous settings in <datadir>/se...
std::function< void()> InitWalletFn
Register handler for wallet loader constructed messages.
Definition: node.h:231
virtual std::unique_ptr< Handler > handleNotifyAlertChanged(NotifyAlertChangedFn fn)=0
virtual std::unique_ptr< Handler > handleNotifyHeaderTip(NotifyHeaderTipFn fn)=0
virtual std::unique_ptr< Handler > handleMessageBox(MessageBoxFn fn)=0
std::vector< std::tuple< CNodeStats, bool, CNodeStateStats > > NodesStats
Get stats for connected nodes.
Definition: node.h:128
virtual UniValue executeRpc(const std::string &command, const UniValue &params, const std::string &uri)=0
Execute rpc command.
virtual bool isSettingIgnored(const std::string &name)=0
Return whether a particular setting in <datadir>/settings.json is or would be ignored because it is a...
virtual void initParameterInteraction()=0
Init parameter interaction.
virtual void startShutdown()=0
Start shutdown.
std::function< void()> NotifyAlertChangedFn
Register handler for notify alert messages.
Definition: node.h:243
virtual int64_t getLastBlockTime()=0
Get last block time.
virtual bool getBanned(banmap_t &banmap)=0
Get ban map entries.
virtual std::unique_ptr< Handler > handleInitWallet(InitWalletFn fn)=0
virtual BCLog::CategoryMask getLogCategories()=0
virtual size_t getMempoolSize()=0
Get mempool size.
virtual bool getNetworkActive()=0
Get network active.
virtual bool unban(const CSubNet &ip)=0
Unban node.
virtual bool isLoadingBlocks()=0
Is loading blocks.
virtual bool appInitMain(interfaces::BlockAndHeaderTipInfo *tip_info=nullptr)=0
Start node.
std::function< bool(const bilingual_str &message, const std::string &non_interactive_message, unsigned int style)> QuestionFn
Register handler for question messages.
Definition: node.h:223
virtual std::unique_ptr< Handler > handleQuestion(QuestionFn fn)=0
virtual size_t getNodeCount(ConnectionDirection flags)=0
Get number of connections.
virtual void forceSetting(const std::string &name, const common::SettingsValue &value)=0
Force a setting value to be applied, overriding any other configuration source, but not being persist...
virtual double getVerificationProgress()=0
Get verification progress.
std::function< void(const bilingual_str &message, unsigned int style)> MessageBoxFn
Register handler for message box messages.
Definition: node.h:217
virtual bool getHeaderTip(int &height, int64_t &block_time)=0
Get header tip height and time.
virtual uint256 getBestBlockHash()=0
Get best block hash.
virtual std::optional< Proxy > getProxy(Network net)=0
Get proxy.
virtual bool disconnectByAddress(const CNetAddr &net_addr)=0
Disconnect node by address.
virtual int64_t getTotalBytesRecv()=0
Get total bytes recv.
virtual std::unique_ptr< Handler > handleBannedListChanged(BannedListChangedFn fn)=0
std::function< void(const std::string &title, int progress, bool resume_possible)> ShowProgressFn
Register handler for progress messages.
Definition: node.h:227
virtual WalletLoader & walletLoader()=0
Get wallet loader.
virtual void initLogging()=0
Init logging.
virtual std::unique_ptr< Handler > handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn)=0
virtual int64_t getTotalBytesSent()=0
Get total bytes sent.
virtual ~Node()=default
virtual node::NodeContext * context()
Get and set internal node context.
Definition: node.h:262
virtual size_t getMempoolDynamicUsage()=0
Get mempool dynamic usage.
virtual int getNumBlocks()=0
Get num blocks.
virtual bool shutdownRequested()=0
Return whether shutdown was requested.
virtual bool getNodesStats(NodesStats &stats)=0
virtual bool isInitialBlockDownload()=0
Is initial block download.
std::function< void(int new_num_connections)> NotifyNumConnectionsChangedFn
Register handler for number of connections changed messages.
Definition: node.h:235
virtual std::unique_ptr< Handler > handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn)=0
virtual int getExitStatus()=0
Get exit status.
virtual CFeeRate getDustRelayFee()=0
Get dust relay fee.
virtual void setContext(node::NodeContext *context)
Definition: node.h:263
std::function< void(SynchronizationState, interfaces::BlockTip tip, double verification_progress)> NotifyBlockTipFn
Register handler for block tip messages.
Definition: node.h:252
virtual std::vector< std::unique_ptr< ExternalSigner > > listExternalSigners()=0
Return list of external signers (attached devices which can sign transactions).
Wallet chain client that in addition to having chain client methods for starting up,...
Definition: wallet.h:312
256-bit opaque blob.
Definition: uint256.h:196
static CService ip(uint32_t i)
uint64_t CategoryMask
Definition: categories.h:12
std::unique_ptr< Node > MakeNode(node::NodeContext &context)
Return implementation of Node interface.
Definition: messages.h:21
TransactionError
Definition: types.h:19
int64_t NodeId
Definition: net.h:105
std::map< CSubNet, CBanEntry > banmap_t
Definition: net_types.h:41
Network
A network type.
Definition: netaddress.h:33
ConnectionDirection
Definition: netbase.h:35
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:403
const char * name
Definition: rest.cpp:71
Bilingual messages:
Definition: translation.h:24
Block and header tip information.
Definition: node.h:46
Block tip (could be a header or not, depends on the subscribed signal).
Definition: node.h:270
uint256 block_hash
Definition: node.h:273
int64_t block_time
Definition: node.h:272
NodeContext struct containing references to chain state and connection state.
Definition: context.h:59
SynchronizationState
Current sync state passed to tip changed callbacks.
Definition: validation.h:96