mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 21:02:38 -03:00
54 lines
2 KiB
C++
54 lines
2 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.
|
|
|
|
#ifndef BITCOIN_INTERFACES_INIT_H
|
|
#define BITCOIN_INTERFACES_INIT_H
|
|
|
|
#include <memory>
|
|
|
|
namespace node {
|
|
struct NodeContext;
|
|
} // namespace node
|
|
|
|
namespace interfaces {
|
|
class Chain;
|
|
class Echo;
|
|
class Ipc;
|
|
class Node;
|
|
class WalletLoader;
|
|
|
|
//! Initial interface created when a process is first started, and used to give
|
|
//! and get access to other interfaces (Node, Chain, Wallet, etc).
|
|
//!
|
|
//! There is a different Init interface implementation for each process
|
|
//! (bitcoin-gui, bitcoin-node, bitcoin-wallet, bitcoind, bitcoin-qt) and each
|
|
//! implementation can implement the make methods for interfaces it supports.
|
|
//! The default make methods all return null.
|
|
class Init
|
|
{
|
|
public:
|
|
virtual ~Init() = default;
|
|
virtual std::unique_ptr<Node> makeNode();
|
|
virtual std::unique_ptr<Chain> makeChain();
|
|
virtual std::unique_ptr<WalletLoader> makeWalletLoader(Chain& chain);
|
|
virtual std::unique_ptr<Echo> makeEcho();
|
|
virtual Ipc* ipc();
|
|
};
|
|
|
|
//! Return implementation of Init interface for the node process. If the argv
|
|
//! indicates that this is a child process spawned to handle requests from a
|
|
//! parent process, this blocks and handles requests, then returns null and a
|
|
//! status code to exit with. If this returns non-null, the caller can start up
|
|
//! normally and use the Init object to spawn and connect to other processes
|
|
//! while it is running.
|
|
std::unique_ptr<Init> MakeNodeInit(node::NodeContext& node, int argc, char* argv[], int& exit_status);
|
|
|
|
//! Return implementation of Init interface for the wallet process.
|
|
std::unique_ptr<Init> MakeWalletInit(int argc, char* argv[], int& exit_status);
|
|
|
|
//! Return implementation of Init interface for the gui process.
|
|
std::unique_ptr<Init> MakeGuiInit(int argc, char* argv[]);
|
|
} // namespace interfaces
|
|
|
|
#endif // BITCOIN_INTERFACES_INIT_H
|