BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
node.h
Go to the documentation of this file.
1 // Copyright (c) 2018 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 <addrdb.h> // For banmap_t
9 #include <amount.h> // For CAmount
10 #include <net.h> // For CConnman::NumConnections
11 #include <netaddress.h> // For Network
12 
13 #include <functional>
14 #include <memory>
15 #include <stddef.h>
16 #include <stdint.h>
17 #include <string>
18 #include <tuple>
19 #include <vector>
20 
21 class CCoinControl;
22 class CFeeRate;
23 class CNodeStats;
24 class Coin;
25 class RPCTimerInterface;
26 class UniValue;
27 class proxyType;
28 struct CNodeStateStats;
29 
30 namespace interfaces {
31 class Handler;
32 class Wallet;
33 
35 class Node
36 {
37 public:
38  virtual ~Node() {}
39 
41  virtual bool parseParameters(int argc, const char* const argv[], std::string& error) = 0;
42 
44  virtual bool softSetArg(const std::string& arg, const std::string& value) = 0;
45 
47  virtual bool softSetBoolArg(const std::string& arg, bool value) = 0;
48 
50  virtual bool readConfigFiles(std::string& error) = 0;
51 
53  virtual void selectParams(const std::string& network) = 0;
54 
56  virtual std::string getNetwork() = 0;
57 
59  virtual void initLogging() = 0;
60 
62  virtual void initParameterInteraction() = 0;
63 
65  virtual std::string getWarnings(const std::string& type) = 0;
66 
67  // Get log flags.
68  virtual uint32_t getLogCategories() = 0;
69 
71  virtual bool baseInitialize() = 0;
72 
74  virtual bool appInitMain() = 0;
75 
77  virtual void appShutdown() = 0;
78 
80  virtual void startShutdown() = 0;
81 
83  virtual bool shutdownRequested() = 0;
84 
86  virtual void setupServerArgs() = 0;
87 
89  virtual void mapPort(bool use_upnp) = 0;
90 
92  virtual bool getProxy(Network net, proxyType& proxy_info) = 0;
93 
95  virtual size_t getNodeCount(CConnman::NumConnections flags) = 0;
96 
98  using NodesStats = std::vector<std::tuple<CNodeStats, bool, CNodeStateStats>>;
99  virtual bool getNodesStats(NodesStats& stats) = 0;
100 
102  virtual bool getBanned(banmap_t& banmap) = 0;
103 
105  virtual bool ban(const CNetAddr& net_addr, BanReason reason, int64_t ban_time_offset) = 0;
106 
108  virtual bool unban(const CSubNet& ip) = 0;
109 
111  virtual bool disconnect(NodeId id) = 0;
112 
114  virtual int64_t getTotalBytesRecv() = 0;
115 
117  virtual int64_t getTotalBytesSent() = 0;
118 
120  virtual size_t getMempoolSize() = 0;
121 
123  virtual size_t getMempoolDynamicUsage() = 0;
124 
126  virtual bool getHeaderTip(int& height, int64_t& block_time) = 0;
127 
129  virtual int getNumBlocks() = 0;
130 
132  virtual int64_t getLastBlockTime() = 0;
133 
135  virtual double getVerificationProgress() = 0;
136 
138  virtual bool isInitialBlockDownload() = 0;
139 
141  virtual bool getReindex() = 0;
142 
144  virtual bool getImporting() = 0;
145 
147  virtual void setNetworkActive(bool active) = 0;
148 
150  virtual bool getNetworkActive() = 0;
151 
153  virtual CAmount getMaxTxFee() = 0;
154 
156  virtual CFeeRate estimateSmartFee(int num_blocks, bool conservative, int* returned_target = nullptr) = 0;
157 
159  virtual CFeeRate getDustRelayFee() = 0;
160 
162  virtual UniValue executeRpc(const std::string& command, const UniValue& params, const std::string& uri) = 0;
163 
165  virtual std::vector<std::string> listRpcCommands() = 0;
166 
168  virtual void rpcSetTimerInterfaceIfUnset(RPCTimerInterface* iface) = 0;
169 
171  virtual void rpcUnsetTimerInterface(RPCTimerInterface* iface) = 0;
172 
174  virtual bool getUnspentOutput(const COutPoint& output, Coin& coin) = 0;
175 
177  virtual std::string getWalletDir() = 0;
178 
180  virtual std::vector<std::string> listWalletDir() = 0;
181 
183  virtual std::vector<std::unique_ptr<Wallet>> getWallets() = 0;
184 
186  using InitMessageFn = std::function<void(const std::string& message)>;
187  virtual std::unique_ptr<Handler> handleInitMessage(InitMessageFn fn) = 0;
188 
190  using MessageBoxFn =
191  std::function<bool(const std::string& message, const std::string& caption, unsigned int style)>;
192  virtual std::unique_ptr<Handler> handleMessageBox(MessageBoxFn fn) = 0;
193 
195  using QuestionFn = std::function<bool(const std::string& message,
196  const std::string& non_interactive_message,
197  const std::string& caption,
198  unsigned int style)>;
199  virtual std::unique_ptr<Handler> handleQuestion(QuestionFn fn) = 0;
200 
202  using ShowProgressFn = std::function<void(const std::string& title, int progress, bool resume_possible)>;
203  virtual std::unique_ptr<Handler> handleShowProgress(ShowProgressFn fn) = 0;
204 
206  using LoadWalletFn = std::function<void(std::unique_ptr<Wallet> wallet)>;
207  virtual std::unique_ptr<Handler> handleLoadWallet(LoadWalletFn fn) = 0;
208 
210  using NotifyNumConnectionsChangedFn = std::function<void(int new_num_connections)>;
211  virtual std::unique_ptr<Handler> handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn) = 0;
212 
214  using NotifyNetworkActiveChangedFn = std::function<void(bool network_active)>;
215  virtual std::unique_ptr<Handler> handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn) = 0;
216 
218  using NotifyAlertChangedFn = std::function<void()>;
219  virtual std::unique_ptr<Handler> handleNotifyAlertChanged(NotifyAlertChangedFn fn) = 0;
220 
222  using BannedListChangedFn = std::function<void()>;
223  virtual std::unique_ptr<Handler> handleBannedListChanged(BannedListChangedFn fn) = 0;
224 
226  using NotifyBlockTipFn =
227  std::function<void(bool initial_download, int height, int64_t block_time, double verification_progress)>;
228  virtual std::unique_ptr<Handler> handleNotifyBlockTip(NotifyBlockTipFn fn) = 0;
229 
231  using NotifyHeaderTipFn =
232  std::function<void(bool initial_download, int height, int64_t block_time, double verification_progress)>;
233  virtual std::unique_ptr<Handler> handleNotifyHeaderTip(NotifyHeaderTipFn fn) = 0;
234 };
235 
237 std::unique_ptr<Node> MakeNode();
238 
239 } // namespace interfaces
240 
241 #endif // BITCOIN_INTERFACES_NODE_H
virtual std::unique_ptr< Handler > handleNotifyHeaderTip(NotifyHeaderTipFn fn)=0
std::vector< std::tuple< CNodeStats, bool, CNodeStateStats > > NodesStats
Get stats for connected nodes.
Definition: node.h:98
virtual bool appInitMain()=0
Start node.
std::function< bool(const std::string &message, const std::string &non_interactive_message, const std::string &caption, unsigned int style)> QuestionFn
Register handler for question messages.
Definition: node.h:198
virtual std::string getWarnings(const std::string &type)=0
Get warnings.
RPC timer "driver".
Definition: server.h:101
virtual bool isInitialBlockDownload()=0
Is initial block download.
virtual bool getNetworkActive()=0
Get network active.
BanReason
Definition: addrdb.h:19
virtual std::string getNetwork()=0
Get network name.
virtual void initLogging()=0
Init logging.
virtual void selectParams(const std::string &network)=0
Choose network parameters.
A UTXO entry.
Definition: coins.h:29
virtual double getVerificationProgress()=0
Get verification progress.
virtual size_t getMempoolDynamicUsage()=0
Get mempool dynamic usage.
virtual bool baseInitialize()=0
Initialize app dependencies.
virtual bool parseParameters(int argc, const char *const argv[], std::string &error)=0
Set command line arguments.
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 UniValue executeRpc(const std::string &command, const UniValue &params, const std::string &uri)=0
Execute rpc command.
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.
Definition: node.h:214
virtual size_t getMempoolSize()=0
Get mempool size.
virtual uint32_t getLogCategories()=0
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 CFeeRate getDustRelayFee()=0
Get dust relay fee.
Coin Control Features.
Definition: coincontrol.h:16
std::function< void(bool initial_download, int height, int64_t block_time, double verification_progress)> NotifyHeaderTipFn
Register handler for header tip messages.
Definition: node.h:232
virtual void rpcSetTimerInterfaceIfUnset(RPCTimerInterface *iface)=0
Set RPC timer interface if unset.
virtual std::unique_ptr< Handler > handleMessageBox(MessageBoxFn fn)=0
std::function< void(bool initial_download, int height, int64_t block_time, double verification_progress)> NotifyBlockTipFn
Register handler for block tip messages.
Definition: node.h:227
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
virtual std::unique_ptr< Handler > handleNotifyNumConnectionsChanged(NotifyNumConnectionsChangedFn fn)=0
std::map< CSubNet, CBanEntry > banmap_t
Definition: addrdb.h:77
std::function< void()> NotifyAlertChangedFn
Register handler for notify alert messages.
Definition: node.h:218
virtual std::string getWalletDir()=0
Return default wallet directory.
virtual std::unique_ptr< Handler > handleShowProgress(ShowProgressFn fn)=0
virtual CFeeRate estimateSmartFee(int num_blocks, bool conservative, int *returned_target=nullptr)=0
Estimate smart fee.
virtual CAmount getMaxTxFee()=0
Get max tx fee.
virtual ~Node()
Definition: node.h:38
Network
Definition: netaddress.h:20
int64_t NodeId
Definition: net.h:88
NumConnections
Definition: net.h:119
virtual bool disconnect(NodeId id)=0
Disconnect node.
virtual std::unique_ptr< Handler > handleBannedListChanged(BannedListChangedFn fn)=0
std::function< void(std::unique_ptr< Wallet > wallet)> LoadWalletFn
Register handler for load wallet messages.
Definition: node.h:206
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition: transaction.h:18
virtual bool shutdownRequested()=0
Return whether shutdown was requested.
std::function< void(const std::string &message)> InitMessageFn
Register handler for init messages.
Definition: node.h:186
std::function< void()> BannedListChangedFn
Register handler for ban list messages.
Definition: node.h:222
virtual void initParameterInteraction()=0
Init parameter interaction.
virtual std::unique_ptr< Handler > handleLoadWallet(LoadWalletFn fn)=0
virtual bool ban(const CNetAddr &net_addr, BanReason reason, int64_t ban_time_offset)=0
Ban node.
std::function< void(int new_num_connections)> NotifyNumConnectionsChangedFn
Register handler for number of connections changed messages.
Definition: node.h:210
virtual bool readConfigFiles(std::string &error)=0
Load settings from configuration file.
IP address (IPv6, or IPv4 using mapped IPv6 range (::FFFF:0:0/96))
Definition: netaddress.h:32
virtual bool getReindex()=0
Get reindex.
virtual void setupServerArgs()=0
Setup arguments.
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.
std::unique_ptr< Node > MakeNode()
Return implementation of Node interface.
Definition: node.cpp:298
virtual std::vector< std::string > listRpcCommands()=0
List rpc commands.
std::function< bool(const std::string &message, const std::string &caption, unsigned int style)> MessageBoxFn
Register handler for message box messages.
Definition: node.h:191
virtual bool getHeaderTip(int &height, int64_t &block_time)=0
Get header tip height and time.
virtual bool getNodesStats(NodesStats &stats)=0
Fee rate in satoshis per kilobyte: CAmount / kB.
Definition: feerate.h:19
bool error(const char *fmt, const Args &... args)
Definition: util.h:59
virtual bool getBanned(banmap_t &banmap)=0
Get ban map entries.
std::function< void(const std::string &title, int progress, bool resume_possible)> ShowProgressFn
Register handler for progress messages.
Definition: node.h:202
int flags
Definition: bsha3-tx.cpp:509
virtual int getNumBlocks()=0
Get num blocks.
virtual std::unique_ptr< Handler > handleNotifyAlertChanged(NotifyAlertChangedFn fn)=0
virtual bool softSetArg(const std::string &arg, const std::string &value)=0
Set a command line argument if it doesn&#39;t already have a value.
virtual std::unique_ptr< Handler > handleNotifyNetworkActiveChanged(NotifyNetworkActiveChangedFn fn)=0
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 (bsha3d process).
Definition: node.h:35
virtual size_t getNodeCount(CConnman::NumConnections flags)=0
Get number of connections.
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
virtual bool softSetBoolArg(const std::string &arg, bool value)=0
Set a command line boolean argument if it doesn&#39;t already have a value.