5 #ifndef BITCOIN_INTERFACES_NODE_H 6 #define BITCOIN_INTERFACES_NODE_H 76 virtual void mapPort(
bool use_upnp) = 0;
86 std::vector<std::tuple<CNodeStats, bool, CNodeStateStats>>;
93 virtual bool ban(
const CNetAddr &net_addr, int64_t ban_time_offset) = 0;
117 virtual bool getHeaderTip(
int &height, int64_t &block_time) = 0;
152 const std::string &uri) = 0;
173 virtual std::vector<std::unique_ptr<Wallet>>
getWallets() = 0;
178 virtual std::unique_ptr<Wallet>
181 std::vector<bilingual_str> &warnings)
const = 0;
184 virtual std::unique_ptr<Wallet>
186 uint64_t wallet_creation_flags,
const std::string &
name,
197 const std::string &caption,
unsigned int style)>;
203 const std::string &non_interactive_message,
204 const std::string &caption,
unsigned int style)>;
209 const std::string &title,
int progress,
bool resume_possible)>;
213 using LoadWalletFn = std::function<void(std::unique_ptr<Wallet> wallet)>;
218 std::function<void(int new_num_connections)>;
219 virtual std::unique_ptr<Handler>
224 std::function<void(bool network_active)>;
225 virtual std::unique_ptr<Handler>
230 virtual std::unique_ptr<Handler>
235 virtual std::unique_ptr<Handler>
241 double verification_progress)>;
242 virtual std::unique_ptr<Handler>
248 double verification_progress)>;
249 virtual std::unique_ptr<Handler>
263 #endif // BITCOIN_INTERFACES_NODE_H virtual CFeeRate estimateSmartFee()=0
Estimate smart fee.
virtual std::unique_ptr< Handler > handleNotifyHeaderTip(NotifyHeaderTipFn fn)=0
std::vector< std::tuple< CNodeStats, bool, CNodeStateStats > > NodesStats
Get stats for connected nodes.
std::function< void(SynchronizationState, int height, int64_t block_time, double verification_progress)> NotifyBlockTipFn
Register handler for block tip messages.
virtual bool isInitialBlockDownload()=0
Is initial block download.
SynchronizationState
Current sync state passed to tip changed callbacks.
virtual bool getNetworkActive()=0
Get network active.
virtual void initLogging()=0
Init logging.
virtual double getVerificationProgress()=0
Get verification progress.
virtual size_t getMempoolDynamicUsage()=0
Get mempool dynamic usage.
virtual bool getProxy(Network net, proxyType &proxy_info)=0
Get proxy.
virtual bool unban(const CSubNet &ip)=0
Unban node.
virtual void startShutdown()=0
Start shutdown.
virtual void rpcUnsetTimerInterface(RPCTimerInterface *iface)=0
Unset RPC timer interface.
virtual std::vector< std::string > listWalletDir()=0
Return available wallets in wallet directory.
virtual int64_t getTotalBytesRecv()=0
Get total bytes recv.
virtual bool getImporting()=0
Get importing.
std::function< void(bool network_active)> NotifyNetworkActiveChangedFn
Register handler for network active messages.
virtual size_t getMempoolSize()=0
Get mempool size.
std::basic_string< char, std::char_traits< char >, secure_allocator< char > > SecureString
virtual UniValue executeRpc(Config &config, const std::string &command, const UniValue ¶ms, const std::string &uri)=0
Execute rpc command.
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system...
std::function< bool(const bilingual_str &message, const std::string &caption, unsigned int style)> MessageBoxFn
Register handler for message box messages.
virtual std::vector< std::unique_ptr< Wallet > > getWallets()=0
Return interfaces for accessing wallets (if any).
virtual std::unique_ptr< Handler > handleNotifyBlockTip(NotifyBlockTipFn fn)=0
virtual void setContext(NodeContext *context)
virtual CFeeRate getDustRelayFee()=0
Get dust relay fee.
virtual bool ban(const CNetAddr &net_addr, int64_t ban_time_offset)=0
Ban node.
virtual void rpcSetTimerInterfaceIfUnset(RPCTimerInterface *iface)=0
Set RPC timer interface if unset.
std::function< bool(const bilingual_str &message, const std::string &non_interactive_message, const std::string &caption, unsigned int style)> QuestionFn
Register handler for question messages.
virtual std::unique_ptr< Handler > handleMessageBox(MessageBoxFn fn)=0
virtual std::unique_ptr< Wallet > createWallet(const CChainParams ¶ms, const SecureString &passphrase, uint64_t wallet_creation_flags, const std::string &name, bilingual_str &error, std::vector< bilingual_str > &warnings, WalletCreationStatus &status)=0
Create a wallet from file.
virtual std::unique_ptr< Handler > handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn)=0
NodeContext struct containing references to chain state and connection state.
std::function< void()> NotifyAlertChangedFn
Register handler for notify alert messages.
virtual std::string getWalletDir()=0
Return default wallet directory.
virtual std::unique_ptr< Handler > handleShowProgress(ShowProgressFn fn)=0
virtual bool disconnectByAddress(const CNetAddr &net_addr)=0
Disconnect node by address.
Class for registering and managing all RPC calls.
virtual std::unique_ptr< Handler > handleBannedListChanged(BannedListChangedFn fn)=0
std::function< void(std::unique_ptr< Wallet > wallet)> LoadWalletFn
Register handler for load wallet messages.
An outpoint - a combination of a transaction hash and an index n into its vout.
virtual bool shutdownRequested()=0
Return whether shutdown was requested.
std::function< void()> BannedListChangedFn
Register handler for ban list messages.
std::function< void(const std::string &message)> InitMessageFn
Register handler for init messages.
std::function< void(const std::string &title, int progress, bool resume_possible)> ShowProgressFn
Register handler for progress messages.
virtual void initParameterInteraction()=0
Init parameter interaction.
virtual std::unique_ptr< Handler > handleLoadWallet(LoadWalletFn fn)=0
std::function< void(int new_num_connections)> NotifyNumConnectionsChangedFn
Register handler for number of connections changed messages.
IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96))
virtual bool getReindex()=0
Get reindex.
virtual int64_t getLastBlockTime()=0
Get last block time.
virtual void appShutdown()=0
Stop node.
virtual std::unique_ptr< Handler > handleQuestion(QuestionFn fn)=0
virtual void mapPort(bool use_upnp)=0
Map port.
virtual std::vector< std::string > listRpcCommands()=0
List rpc commands.
virtual bool getHeaderTip(int &height, int64_t &block_time)=0
Get header tip height and time.
virtual bool baseInitialize(Config &config)=0
Initialize app dependencies.
virtual bool appInitMain(Config &config, RPCServer &rpcServer, HTTPRPCRequestProcessor &httpRPCRequestProcessor)=0
Start node.
virtual NodeContext * context()
Get and set internal node context.
virtual bool getNodesStats(NodesStats &stats)=0
Fee rate in satoshis per kilobyte: Amount / kB.
POD that contains various stats about a node.
virtual bool getBanned(banmap_t &banmap)=0
Get ban map entries.
std::map< CSubNet, CBanEntry > banmap_t
virtual int getNumBlocks()=0
Get num blocks.
virtual std::unique_ptr< Handler > handleNotifyAlertChanged(NotifyAlertChangedFn fn)=0
virtual bool disconnectById(NodeId id)=0
Disconnect node by id.
virtual std::string getWarnings()=0
Get warnings.
virtual std::unique_ptr< Handler > handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn)=0
std::unique_ptr< Node > MakeNode(NodeContext *context)
Return implementation of Node interface.
virtual int64_t getTotalBytesSent()=0
Get total bytes sent.
virtual void setNetworkActive(bool active)=0
Set network active.
Top-level interface for a bitcoin node (bitcoind process).
bool error(const char *fmt, const Args &... args)
virtual size_t getNodeCount(CConnman::NumConnections flags)=0
Get number of connections.
virtual std::unique_ptr< Wallet > loadWallet(const CChainParams ¶ms, const std::string &name, bilingual_str &error, std::vector< bilingual_str > &warnings) const =0
Attempts to load a wallet from file or directory.
std::function< void(SynchronizationState, int height, int64_t block_time, double verification_progress)> NotifyHeaderTipFn
Register handler for header tip messages.
virtual bool getUnspentOutput(const COutPoint &output, Coin &coin)=0
Get unspent outputs associated with a transaction.
virtual std::unique_ptr< Handler > handleInitMessage(InitMessageFn fn)=0