Bitcoin ABC 0.31.0
P2P Digital Currency
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
init.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2018 The Bitcoin Core developers
3// Copyright (c) 2018-2019 The Bitcoin developers
4// Distributed under the MIT software license, see the accompanying
5// file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
7#ifndef BITCOIN_INIT_H
8#define BITCOIN_INIT_H
9
10#include <common/system.h>
11
12#include <memory>
13#include <string>
14
16static constexpr bool DEFAULT_DAEMON = false;
18static constexpr bool DEFAULT_DAEMONWAIT = false;
19
20class ArgsManager;
21class Config;
22class CScheduler;
23class CWallet;
25namespace interfaces {
26struct BlockAndHeaderTipInfo;
27}
28namespace kernel {
29struct Context;
30}
31namespace node {
32struct NodeContext;
33} // namespace node
34class RPCServer;
35
40void InitLogging(const ArgsManager &args);
43
50bool AppInitBasicSetup(const ArgsManager &args);
58bool AppInitParameterInteraction(Config &config, const ArgsManager &args);
86bool AppInitMain(Config &config, RPCServer &rpcServer,
87 HTTPRPCRequestProcessor &httpRPCRequestProcessor,
89 interfaces::BlockAndHeaderTipInfo *tip_info = nullptr);
90
95
101
102#endif // BITCOIN_INIT_H
Simple class for background tasks that should be run periodically or once "after a while".
Definition: scheduler.h:41
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:254
Definition: config.h:19
Class for registering and managing all RPC calls.
Definition: server.h:40
void Shutdown(node::NodeContext &node)
Definition: init.cpp:225
static constexpr bool DEFAULT_DAEMON
Default value for -daemon option.
Definition: init.h:16
void SetupServerArgs(node::NodeContext &node)
Register all arguments with the ArgsManager.
Definition: init.cpp:425
void InitLogging(const ArgsManager &args)
Initialize the logging infrastructure.
Definition: init.cpp:1703
bool AppInitLockDataDirectory()
Lock bitcoin data directory.
Definition: init.cpp:2098
void Interrupt(node::NodeContext &node)
Interrupt threads.
Definition: init.cpp:201
bool AppInitBasicSetup(const ArgsManager &args)
Initialize bitcoin: Basic context setup.
Definition: init.cpp:1730
static constexpr bool DEFAULT_DAEMONWAIT
Default value for -daemonwait option.
Definition: init.h:18
bool StartIndexBackgroundSync(node::NodeContext &node)
Validates requirements to run the indexes and spawns each index initial sync thread.
Definition: init.cpp:3041
void InitParameterInteraction(ArgsManager &args)
Parameter interaction: change current parameters depending on various rules.
Definition: init.cpp:1569
bool AppInitMain(Config &config, RPCServer &rpcServer, HTTPRPCRequestProcessor &httpRPCRequestProcessor, node::NodeContext &node, interfaces::BlockAndHeaderTipInfo *tip_info=nullptr)
Bitcoin main initialization.
Definition: init.cpp:2120
bool AppInitParameterInteraction(Config &config, const ArgsManager &args)
Initialization: parameter interaction.
Definition: init.cpp:1777
bool AppInitInterfaces(node::NodeContext &node)
Initialize node and wallet interface pointers.
Definition: init.cpp:2110
bool AppInitSanityChecks(const kernel::Context &kernel)
Initialization sanity checks.
Definition: init.cpp:2082
Definition: init.h:28
Definition: init.h:31
Block and header tip information.
Definition: node.h:50
Context struct holding the kernel library's logically global state, and passed to external libbitcoin...
Definition: context.h:20
NodeContext struct containing references to chain state and connection state.
Definition: context.h:46