![]() |
Bitcoin Core 30.99.0
P2P Digital Currency
|
#include <bitcoin-build-config.h>#include <rest.h>#include <blockfilter.h>#include <chain.h>#include <chainparams.h>#include <core_io.h>#include <flatfile.h>#include <httpserver.h>#include <index/blockfilterindex.h>#include <index/txindex.h>#include <node/blockstorage.h>#include <node/context.h>#include <primitives/block.h>#include <primitives/transaction.h>#include <rpc/blockchain.h>#include <rpc/mempool.h>#include <rpc/protocol.h>#include <rpc/server.h>#include <rpc/server_util.h>#include <streams.h>#include <sync.h>#include <txmempool.h>#include <undo.h>#include <util/any.h>#include <util/check.h>#include <util/strencodings.h>#include <validation.h>#include <any>#include <vector>#include <univalue.h>Go to the source code of this file.
Classes | |
| struct | CCoin |
Functions | |
| static bool | RESTERR (HTTPRequest *req, enum HTTPStatusCode status, std::string message) |
| static NodeContext * | GetNodeContext (const std::any &context, HTTPRequest *req) |
| Get the node context. More... | |
| static CTxMemPool * | GetMemPool (const std::any &context, HTTPRequest *req) |
| Get the node context mempool. More... | |
| static ChainstateManager * | GetChainman (const std::any &context, HTTPRequest *req) |
| Get the node context chainstatemanager. More... | |
| RESTResponseFormat | ParseDataFormat (std::string ¶m, const std::string &strReq) |
| Parse a URI to get the data format and URI without data format and query string. More... | |
| static std::string | AvailableDataFormatsString () |
| static bool | CheckWarmup (HTTPRequest *req) |
| static bool | rest_headers (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static void | SerializeBlockUndo (DataStream &stream, const CBlockUndo &block_undo) |
| Serialize spent outputs as a list of per-transaction CTxOut lists using binary format. More... | |
| static void | BlockUndoToJSON (const CBlockUndo &block_undo, UniValue &result) |
| Serialize spent outputs as a list of per-transaction CTxOut lists using JSON format. More... | |
| static bool | rest_spent_txouts (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_block (const std::any &context, HTTPRequest *req, const std::string &uri_part, TxVerbosity tx_verbosity) |
| static bool | rest_block_extended (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_block_notxdetails (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_filter_header (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_block_filter (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| RPCHelpMan | getblockchaininfo () |
| static bool | rest_chaininfo (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| RPCHelpMan | getdeploymentinfo () |
| static bool | rest_deploymentinfo (const std::any &context, HTTPRequest *req, const std::string &str_uri_part) |
| static bool | rest_mempool (const std::any &context, HTTPRequest *req, const std::string &str_uri_part) |
| static bool | rest_tx (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_getutxos (const std::any &context, HTTPRequest *req, const std::string &uri_part) |
| static bool | rest_blockhash_by_height (const std::any &context, HTTPRequest *req, const std::string &str_uri_part) |
| void | StartREST (const std::any &context) |
| Start HTTP REST subsystem. More... | |
| void | InterruptREST () |
| Interrupt RPC REST subsystem. More... | |
| void | StopREST () |
| Stop HTTP REST subsystem. More... | |
Variables | |
| static const size_t | MAX_GETUTXOS_OUTPOINTS = 15 |
| static constexpr unsigned int | MAX_REST_HEADERS_RESULTS = 2000 |
| struct { | |
| RESTResponseFormat rf | |
| const char * name | |
| } | rf_names [] |
| struct { | |
| const char * prefix | |
| bool(* handler )(const std::any &context, HTTPRequest *req, const std::string &strReq) | |
| } | uri_prefixes [] |
|
static |
|
static |
|
static |
| RPCHelpMan getblockchaininfo | ( | ) |
Definition at line 1339 of file blockchain.cpp.
|
static |
Get the node context chainstatemanager.
| [in] | req | The HTTP request, whose status code will be set if node context chainstatemanager is not found. |
Definition at line 124 of file rest.cpp.
| RPCHelpMan getdeploymentinfo | ( | ) |
Definition at line 1464 of file blockchain.cpp.
|
static |
Get the node context mempool.
| [in] | req | The HTTP request, whose status code will be set if node context mempool is not found. |
Definition at line 107 of file rest.cpp.
|
static |
Get the node context.
| [in] | req | The HTTP request, whose status code will be set if node context is not found. |
Definition at line 86 of file rest.cpp.
| void InterruptREST | ( | ) |
| RESTResponseFormat ParseDataFormat | ( | std::string & | param, |
| const std::string & | strReq | ||
| ) |
Parse a URI to get the data format and URI without data format and query string.
| [out] | param | The strReq without the data format string and without the query string (if any). |
| [in] | strReq | The URI to be parsed. |
Definition at line 138 of file rest.cpp.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
| void StartREST | ( | const std::any & | context | ) |
| void StopREST | ( | ) |
| bool(* handler) (const std::any &context, HTTPRequest *req, const std::string &strReq) | ( | const std::any & | context, |
| HTTPRequest * | req, | ||
| const std::string & | strReq | ||
| ) |
|
staticconstexpr |
| const struct { ... } rf_names[] |
| const struct { ... } uri_prefixes[] |