Bitcoin Core 30.99.0
P2P Digital Currency
bitcoind.cpp
Go to the documentation of this file.
1// Copyright (c) 2021-2022 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#include <init.h>
6#include <interfaces/chain.h>
7#include <interfaces/echo.h>
8#include <interfaces/init.h>
9#include <interfaces/mining.h>
10#include <interfaces/node.h>
11#include <interfaces/wallet.h>
12#include <node/context.h>
13#include <util/check.h>
14
15#include <memory>
16
18
19namespace init {
20namespace {
21const char* EXE_NAME = "bitcoind";
22
23class BitcoindInit : public interfaces::Init
24{
25public:
26 BitcoindInit(NodeContext& node) : m_node(node)
27 {
29 m_node.init = this;
30 }
31 std::unique_ptr<interfaces::Node> makeNode() override { return interfaces::MakeNode(m_node); }
32 std::unique_ptr<interfaces::Chain> makeChain() override { return interfaces::MakeChain(m_node); }
33 std::unique_ptr<interfaces::Mining> makeMining() override { return interfaces::MakeMining(m_node); }
34 std::unique_ptr<interfaces::WalletLoader> makeWalletLoader(interfaces::Chain& chain) override
35 {
36 return MakeWalletLoader(chain, *Assert(m_node.args));
37 }
38 std::unique_ptr<interfaces::Echo> makeEcho() override { return interfaces::MakeEcho(); }
39 const char* exeName() override { return EXE_NAME; }
41};
42} // namespace
43} // namespace init
44
45namespace interfaces {
46std::unique_ptr<Init> MakeNodeInit(NodeContext& node, int argc, char* argv[], int& exit_status)
47{
48 return std::make_unique<init::BitcoindInit>(node);
49}
50} // namespace interfaces
int exit_status
Definition: bitcoind.cpp:268
#define Assert(val)
Identity function.
Definition: check.h:106
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:130
Initial interface created when a process is first started, and used to give and get access to other i...
Definition: init.h:31
NodeContext & m_node
Definition: bitcoind.cpp:40
void InitContext(NodeContext &node)
Initialize node context shutdown and args variables.
Definition: init.cpp:208
std::unique_ptr< Node > MakeNode(node::NodeContext &context)
Return implementation of Node interface.
Definition: interfaces.cpp:988
std::unique_ptr< Mining > MakeMining(node::NodeContext &node)
Return implementation of Mining interface.
Definition: interfaces.cpp:990
std::unique_ptr< Echo > MakeEcho()
Return implementation of Echo interface.
Definition: interfaces.cpp:52
std::unique_ptr< WalletLoader > MakeWalletLoader(Chain &chain, ArgsManager &args)
Return implementation of ChainClient interface for a wallet loader.
Definition: dummywallet.cpp:60
std::unique_ptr< Init > MakeNodeInit(node::NodeContext &node, int argc, char *argv[], int &exit_status)
Return implementation of Init interface for the node process.
std::unique_ptr< Chain > MakeChain(node::NodeContext &node)
Return implementation of Chain interface.
Definition: interfaces.cpp:989
Definition: messages.h:20
NodeContext struct containing references to chain state and connection state.
Definition: context.h:56
ArgsManager * args
Definition: context.h:74
interfaces::Init * init
Init interface for initializing current process and connecting to other processes.
Definition: context.h:61