16 #include <boost/signals2/signal.hpp> 22 #include <unordered_map> 51 std::list<RPCCommandExecutionInfo>::iterator
it;
84 std::set<intptr_t> setDone;
85 std::vector<std::pair<std::string, const CRPCCommand*> > vCommands;
88 vCommands.push_back(make_pair(entry.second.front()->category + entry.first, entry.second.front()));
89 sort(vCommands.begin(), vCommands.end());
95 for (
const std::pair<std::string, const CRPCCommand*>&
command : vCommands)
98 std::string strMethod = pcmd->
name;
99 if ((strCommand !=
"" || pcmd->
category ==
"hidden") && strMethod != strCommand)
101 jreq.strMethod = strMethod;
105 if (setDone.insert(pcmd->
unique_id).second)
106 pcmd->
actor(jreq, unused_result,
true );
108 catch (
const std::exception& e)
111 std::string strHelp = std::string(e.what());
112 if (strCommand ==
"")
114 if (strHelp.find(
'\n') != std::string::npos)
115 strHelp = strHelp.substr(0, strHelp.find(
'\n'));
119 if (!category.empty())
122 strRet +=
"== " +
Capitalize(category) +
" ==\n";
125 strRet += strHelp +
"\n";
129 strRet =
strprintf(
"help: unknown command: %s\n", strCommand);
130 strRet = strRet.substr(0,strRet.size()-1);
137 "\nList all commands, or get help for a specified command.\n",
148 std::string strCommand;
149 if (jsonRequest.params.size() > 0) {
150 strCommand = jsonRequest.params[0].
get_str();
152 if (strCommand ==
"dump_all_command_conversions") {
164 static const std::string RESULT{
PACKAGE_NAME " stopping"};
180 if (jsonRequest.params[0].isNum()) {
191 "\nReturns the total uptime of the server.\n",
210 "\nReturns details of the RPC server.\n",
236 entry.
pushKV(
"duration", int64_t{Ticks<std::chrono::microseconds>(SteadyClock::now() - info.
start)});
241 result.
pushKV(
"active_commands", active_commands);
245 result.
pushKV(
"logpath", log_path);
278 auto new_end = std::remove(it->second.begin(), it->second.end(), pcmd);
279 if (it->second.end() != new_end) {
280 it->second.erase(new_end, it->second.end());
296 static std::once_flag g_rpc_interrupt_flag;
298 std::call_once(g_rpc_interrupt_flag, []() {
307 static std::once_flag g_rpc_stop_flag;
310 std::call_once(g_rpc_stop_flag, []() {
331 rpcWarmupStatus = newStatus;
338 fRPCInWarmup =
false;
345 *outStatus = rpcWarmupStatus;
351 const std::vector<std::string> enabled_methods =
gArgs.
GetArgs(
"-deprecatedrpc");
353 return find(enabled_methods.begin(), enabled_methods.end(), method) != enabled_methods.end();
370 catch (
const std::exception& e)
382 for (
unsigned int reqIdx = 0; reqIdx < vReq.
size(); reqIdx++)
385 return ret.write() +
"\n";
400 std::unordered_map<std::string, const UniValue*> argsIn;
401 for (
size_t i=0; i<keys.size(); ++i) {
402 argsIn[keys[i]] = &
values[i];
406 for (
const std::string &argNamePattern: argNames) {
407 std::vector<std::string> vargNames =
SplitString(argNamePattern,
'|');
408 auto fr = argsIn.end();
409 for (
const std::string & argName : vargNames) {
410 fr = argsIn.find(argName);
411 if (fr != argsIn.end()) {
415 if (fr != argsIn.end()) {
416 for (
int i = 0; i < hole; ++i) {
430 if (!argsIn.empty()) {
439 for (
const auto&
command : commands) {
476 return command.actor(request, result, last_handler);
479 catch (
const std::exception& e)
487 std::vector<std::string> commandList;
488 for (
const auto& i :
mapCommands) commandList.emplace_back(i.first);
526 void RPCRunLater(
const std::string&
name, std::function<
void()> func, int64_t nSeconds)
531 deadlineTimers.erase(
name);
void push_back(UniValue val)
static const int SERIALIZE_TRANSACTION_NO_WITNESS
A flag that is ORed into the protocol version to designate that a transaction should be (un)serialize...
std::string help(const std::string &name, const JSONRPCRequest &helpreq) const
const std::vector< UniValue > & getValues() const
static JSONRPCRequest transformNamedArguments(const JSONRPCRequest &in, const std::vector< std::string > &argNames)
Process named arguments into a vector of positional arguments, based on the passed-in specification f...
BCLog::Logger & LogInstance()
static GlobalMutex g_deadline_timers_mutex
#define LogPrint(category,...)
bool IsRPCRunning()
Query whether RPC is running.
void SetRPCWarmupStatus(const std::string &newStatus)
Set the RPC warmup status.
static const unsigned int DEFAULT_RPC_SERIALIZE_VERSION
static bool ExecuteCommands(const std::vector< const CRPCCommand *> &commands, const JSONRPCRequest &request, UniValue &result)
void appendCommand(const std::string &name, const CRPCCommand *pcmd)
Appends a CRPCCommand to the dispatch table.
static bool fRPCInWarmup GUARDED_BY(g_rpc_warmup_mutex)
#define CHECK_NONFATAL(condition)
Identity function.
static std::atomic< bool > g_rpc_running
void OnStopped(std::function< void()> slot)
static GlobalMutex g_rpc_warmup_mutex
bool removeCommand(const std::string &name, const CRPCCommand *pcmd)
const std::string & get_str() const
static const int64_t values[]
A selection of numbers that do not trigger int64_t overflow when added/subtracted.
const std::vector< std::string > & getKeys() const
static const CRPCCommand vRPCCommands[]
void RPCRunLater(const std::string &name, std::function< void()> func, int64_t nSeconds)
Run func nSeconds from now.
std::vector< std::string > SplitString(std::string_view str, char sep)
Invalid, missing or duplicate parameter.
static RPCServerInfo g_rpc_server_info
void RPCUnsetTimerInterface(RPCTimerInterface *iface)
Unset factory function for timers.
void DeleteAuthCookie()
Delete RPC authentication cookie from disk.
static bool ExecuteCommand(const CRPCCommand &command, const JSONRPCRequest &request, UniValue &result, bool last_handler)
UniValue execute(const JSONRPCRequest &request) const
Execute a method.
boost::signals2::signal< void()> Stopped
void SetRPCWarmupFinished()
std::string HelpExampleRpc(const std::string &methodname, const std::string &args)
UniValue JSONRPCError(int code, const std::string &message)
enum JSONRPCRequest::Mode mode
static RPCTimerInterface * timerInterface
boost::signals2::signal< void()> Started
std::string JSONRPCExecBatch(const JSONRPCRequest &jreq, const UniValue &vReq)
Special type to disable type checks (for testing only)
General application defined errors.
RPCCommandExecution(const std::string &method)
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
bool IsDeprecatedRPCEnabled(const std::string &method)
static UniValue JSONRPCExecOne(JSONRPCRequest jreq, const UniValue &req)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
static struct CRPCSignals g_rpcSignals
Optional arg that is a named argument and has a default value of null.
void RPCSetTimerInterfaceIfUnset(RPCTimerInterface *iface)
Set the factory function for timer, but only, if unset.
virtual RPCTimerBase * NewTimer(std::function< void()> &func, int64_t millis)=0
Factory function for timers.
void parse(const UniValue &valRequest)
void UninterruptibleSleep(const std::chrono::microseconds &n)
void pushKV(std::string key, UniValue val)
int RPCSerializationFlags()
void RpcInterruptionPoint()
Throw JSONRPCError if RPC is not running.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
static RPCHelpMan getrpcinfo()
void RPCSetTimerInterface(RPCTimerInterface *iface)
Set the factory function for timers.
UniValue JSONRPCReplyObj(const UniValue &result, const UniValue &error, const UniValue &id)
std::list< RPCCommandExecutionInfo >::iterator it
std::string u8string() const
bool RPCIsInWarmup(std::string *outStatus)
const UniValue NullUniValue
void StartShutdown()
Request shutdown of the application.
virtual const char * Name()=0
Implementation name.
void OnStarted(std::function< void()> slot)
std::map< std::string, std::vector< const CRPCCommand * > > mapCommands
Different type to mark Mutex at global scope.
std::list< RPCCommandExecutionInfo > active_commands GUARDED_BY(mutex)
std::vector< std::string > GetArgs(const std::string &strArg) const
Return a vector of strings of the given argument.
SteadyClock::time_point start
int64_t GetTime()
DEPRECATED, see GetTime.
std::vector< std::string > listCommands() const
Returns a list of registered commands.
UniValue dumpArgMap(const JSONRPCRequest &request) const
Return all named arguments that need to be converted by the client from string to another JSON type...
std::string Capitalize(std::string str)
Capitalizes the first character of the given string.
static RPCHelpMan uptime()