Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <chain.h>
#include <chainparams.h>
#include <config.h>
#include <core_io.h>
#include <httpserver.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 <util/any.h>
#include <validation.h>
#include <version.h>
#include <univalue.h>
#include <any>
Go to the source code of this file.
Classes | |
struct | CCoin |
Enumerations | |
enum class | RetFormat { UNDEF , BINARY , HEX , JSON } |
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... | |
static RetFormat | ParseDataFormat (std::string ¶m, const std::string &strReq) |
static std::string | AvailableDataFormatsString () |
static bool | CheckWarmup (HTTPRequest *req) |
static bool | rest_headers (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_block (const Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart, bool showTxDetails) |
static bool | rest_block_extended (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_block_notxdetails (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_chaininfo (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_mempool_info (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_mempool_contents (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_tx (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_getutxos (Config &config, const std::any &context, HTTPRequest *req, const std::string &strURIPart) |
static bool | rest_blockhash_by_height (Config &config, 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 |
struct { | |
RetFormat rf | |
const char * name | |
} | rf_names [] |
struct { | |
const char * prefix | |
bool(* handler )(Config &config, const std::any &context, HTTPRequest *req, const std::string &strReq) | |
} | uri_prefixes [] |
|
static |
|
static |
|
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 119 of file rest.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 103 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 83 of file rest.cpp.
void InterruptREST | ( | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
void StartREST | ( | const std::any & | context | ) |
void StopREST | ( | ) |
bool(* handler) (Config &config, const std::any &context, HTTPRequest *req, const std::string &strReq) | ( | Config & | config, |
const std::any & | context, | ||
HTTPRequest * | req, | ||
const std::string & | strReq | ||
) |
const struct { ... } rf_names[] |
const struct { ... } uri_prefixes[] |