mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Use interfaces::Init::make* methods instead of interfaces::Make* functions, so interfaces can be constructed differently in different executables without having to change any code. (So for example bitcoin-gui can make an interfaces::Node pointer that communicates with a bitcoin-node subprocess, while bitcoin-qt can make an interfaces::Node pointer that starts node code in the same process.)
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
// Copyright (c) 2021 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <interfaces/chain.h>
|
|
#include <interfaces/echo.h>
|
|
#include <interfaces/init.h>
|
|
#include <interfaces/node.h>
|
|
#include <interfaces/wallet.h>
|
|
#include <node/context.h>
|
|
#include <util/system.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace init {
|
|
namespace {
|
|
class BitcoindInit : public interfaces::Init
|
|
{
|
|
public:
|
|
BitcoindInit(NodeContext& node) : m_node(node)
|
|
{
|
|
m_node.args = &gArgs;
|
|
m_node.init = this;
|
|
}
|
|
std::unique_ptr<interfaces::Node> makeNode() override { return interfaces::MakeNode(m_node); }
|
|
std::unique_ptr<interfaces::Chain> makeChain() override { return interfaces::MakeChain(m_node); }
|
|
std::unique_ptr<interfaces::WalletClient> makeWalletClient(interfaces::Chain& chain) override
|
|
{
|
|
return MakeWalletClient(chain, *Assert(m_node.args));
|
|
}
|
|
std::unique_ptr<interfaces::Echo> makeEcho() override { return interfaces::MakeEcho(); }
|
|
NodeContext& m_node;
|
|
};
|
|
} // namespace
|
|
} // namespace init
|
|
|
|
namespace interfaces {
|
|
std::unique_ptr<Init> MakeNodeInit(NodeContext& node, int argc, char* argv[], int& exit_status)
|
|
{
|
|
return std::make_unique<init::BitcoindInit>(node);
|
|
}
|
|
} // namespace interfaces
|