Bitcoin ABC  0.26.3
P2P Digital Currency
client.cpp
Go to the documentation of this file.
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #include <rpc/client.h>
7 
8 #include <common/args.h>
9 #include <tinyformat.h>
10 
11 #include <cstdint>
12 #include <set>
13 #include <string>
14 #include <string_view>
15 
17 public:
18  std::string methodName;
19  int paramIdx;
20  std::string paramName;
21 };
22 
30  {"setmocktime", 0, "timestamp"},
31  {"mockscheduler", 0, "delta_time"},
32  {"utxoupdatepsbt", 1, "descriptors"},
33  {"generatetoaddress", 0, "nblocks"},
34  {"generatetoaddress", 2, "maxtries"},
35  {"generatetodescriptor", 0, "num_blocks"},
36  {"generatetodescriptor", 2, "maxtries"},
37  {"generateblock", 1, "transactions"},
38  {"getnetworkhashps", 0, "nblocks"},
39  {"getnetworkhashps", 1, "height"},
40  {"sendtoaddress", 1, "amount"},
41  {"sendtoaddress", 4, "subtractfeefromamount"},
42  {"sendtoaddress", 5, "avoid_reuse"},
43  {"settxfee", 0, "amount"},
44  {"sethdseed", 0, "newkeypool"},
45  {"getreceivedbyaddress", 1, "minconf"},
46  {"getreceivedbylabel", 1, "minconf"},
47  {"listreceivedbyaddress", 0, "minconf"},
48  {"listreceivedbyaddress", 1, "include_empty"},
49  {"listreceivedbyaddress", 2, "include_watchonly"},
50  {"listreceivedbylabel", 0, "minconf"},
51  {"listreceivedbylabel", 1, "include_empty"},
52  {"listreceivedbylabel", 2, "include_watchonly"},
53  {"getbalance", 1, "minconf"},
54  {"getbalance", 2, "include_watchonly"},
55  {"getbalance", 3, "avoid_reuse"},
56  {"getblockfrompeer", 1, "peer_id"},
57  {"getblockhash", 0, "height"},
58  {"waitforblockheight", 0, "height"},
59  {"waitforblockheight", 1, "timeout"},
60  {"waitforblock", 1, "timeout"},
61  {"waitfornewblock", 0, "timeout"},
62  {"listtransactions", 1, "count"},
63  {"listtransactions", 2, "skip"},
64  {"listtransactions", 3, "include_watchonly"},
65  {"walletpassphrase", 1, "timeout"},
66  {"getblocktemplate", 0, "template_request"},
67  {"listsinceblock", 1, "target_confirmations"},
68  {"listsinceblock", 2, "include_watchonly"},
69  {"listsinceblock", 3, "include_removed"},
70  {"sendmany", 1, "amounts"},
71  {"sendmany", 2, "minconf"},
72  {"sendmany", 4, "subtractfeefrom"},
73  {"deriveaddresses", 1, "range"},
74  {"scantxoutset", 1, "scanobjects"},
75  {"addmultisigaddress", 0, "nrequired"},
76  {"addmultisigaddress", 1, "keys"},
77  {"createmultisig", 0, "nrequired"},
78  {"createmultisig", 1, "keys"},
79  {"listunspent", 0, "minconf"},
80  {"listunspent", 1, "maxconf"},
81  {"listunspent", 2, "addresses"},
82  {"listunspent", 3, "include_unsafe"},
83  {"listunspent", 4, "query_options"},
84  {"listunspent", 4, "minimumAmount"},
85  {"listunspent", 4, "maximumAmount"},
86  {"listunspent", 4, "maximumCount"},
87  {"listunspent", 4, "minimumSumAmount"},
88  {"getblock", 1, "verbosity"},
89  {"getblock", 1, "verbose"},
90  {"getblockheader", 1, "verbose"},
91  {"getchaintxstats", 0, "nblocks"},
92  {"gettransaction", 1, "include_watchonly"},
93  {"gettransaction", 2, "verbose"},
94  {"getrawtransaction", 1, "verbose"},
95  {"createrawtransaction", 0, "inputs"},
96  {"createrawtransaction", 1, "outputs"},
97  {"createrawtransaction", 2, "locktime"},
98  {"signrawtransactionwithkey", 1, "privkeys"},
99  {"signrawtransactionwithkey", 2, "prevtxs"},
100  {"signrawtransactionwithwallet", 1, "prevtxs"},
101  {"sendrawtransaction", 1, "maxfeerate"},
102  {"submitpackage", 0, "package"},
103  {"testmempoolaccept", 0, "rawtxs"},
104  {"testmempoolaccept", 1, "maxfeerate"},
105  {"combinerawtransaction", 0, "txs"},
106  {"fundrawtransaction", 1, "options"},
107  {"fundrawtransaction", 1, "add_inputs"},
108  {"fundrawtransaction", 1, "include_unsafe"},
109  {"fundrawtransaction", 1, "changePosition"},
110  {"fundrawtransaction", 1, "includeWatching"},
111  {"fundrawtransaction", 1, "lockUnspents"},
112  {"fundrawtransaction", 1, "feeRate"},
113  {"fundrawtransaction", 1, "subtractFeeFromOutputs"},
114  {"walletcreatefundedpsbt", 0, "inputs"},
115  {"walletcreatefundedpsbt", 1, "outputs"},
116  {"walletcreatefundedpsbt", 2, "locktime"},
117  {"walletcreatefundedpsbt", 3, "options"},
118  {"walletcreatefundedpsbt", 3, "add_inputs"},
119  {"walletcreatefundedpsbt", 3, "include_unsafe"},
120  {"walletcreatefundedpsbt", 3, "changePosition"},
121  {"walletcreatefundedpsbt", 3, "includeWatching"},
122  {"walletcreatefundedpsbt", 3, "lockUnspents"},
123  {"walletcreatefundedpsbt", 3, "feeRate"},
124  {"walletcreatefundedpsbt", 3, "subtractFeeFromOutputs"},
125  {"walletcreatefundedpsbt", 4, "bip32derivs"},
126  {"walletprocesspsbt", 1, "sign"},
127  {"walletprocesspsbt", 3, "bip32derivs"},
128  {"createpsbt", 0, "inputs"},
129  {"createpsbt", 1, "outputs"},
130  {"createpsbt", 2, "locktime"},
131  {"combinepsbt", 0, "txs"},
132  {"joinpsbts", 0, "txs"},
133  {"finalizepsbt", 1, "extract"},
134  {"converttopsbt", 1, "permitsigdata"},
135  {"gettxout", 1, "n"},
136  {"gettxout", 2, "include_mempool"},
137  {"gettxoutproof", 0, "txids"},
138  {"gettxoutsetinfo", 1, "hash_or_height"},
139  {"gettxoutsetinfo", 2, "use_index"},
140  {"lockunspent", 0, "unlock"},
141  {"lockunspent", 1, "transactions"},
142  {"send", 0, "outputs"},
143  {"send", 1, "options"},
144  {"send", 1, "add_inputs"},
145  {"send", 1, "include_unsafe"},
146  {"send", 1, "add_to_wallet"},
147  {"send", 1, "change_position"},
148  {"send", 1, "fee_rate"},
149  {"send", 1, "include_watching"},
150  {"send", 1, "inputs"},
151  {"send", 1, "locktime"},
152  {"send", 1, "lock_unspents"},
153  {"send", 1, "psbt"},
154  {"send", 1, "subtract_fee_from_outputs"},
155  {"importprivkey", 2, "rescan"},
156  {"importaddress", 2, "rescan"},
157  {"importaddress", 3, "p2sh"},
158  {"importpubkey", 2, "rescan"},
159  {"importmulti", 0, "requests"},
160  {"importmulti", 1, "options"},
161  {"importmulti", 1, "rescan"},
162  {"importdescriptors", 0, "requests"},
163  {"verifychain", 0, "checklevel"},
164  {"verifychain", 1, "nblocks"},
165  {"getblockstats", 0, "hash_or_height"},
166  {"getblockstats", 1, "stats"},
167  {"pruneblockchain", 0, "height"},
168  {"keypoolrefill", 0, "newsize"},
169  {"getrawmempool", 0, "verbose"},
170  {"getrawmempool", 1, "mempool_sequence"},
171  {"prioritisetransaction", 1, "dummy"},
172  {"prioritisetransaction", 2, "fee_delta"},
173  {"setban", 2, "bantime"},
174  {"setban", 3, "absolute"},
175  {"setnetworkactive", 0, "state"},
176  {"setwalletflag", 1, "value"},
177  {"getmempoolancestors", 1, "verbose"},
178  {"getmempooldescendants", 1, "verbose"},
179  {"disconnectnode", 1, "nodeid"},
180  {"logging", 0, "include"},
181  {"logging", 1, "exclude"},
182  {"upgradewallet", 0, "version"},
183  // Echo with conversion (For testing only)
184  {"echojson", 0, "arg0"},
185  {"echojson", 1, "arg1"},
186  {"echojson", 2, "arg2"},
187  {"echojson", 3, "arg3"},
188  {"echojson", 4, "arg4"},
189  {"echojson", 5, "arg5"},
190  {"echojson", 6, "arg6"},
191  {"echojson", 7, "arg7"},
192  {"echojson", 8, "arg8"},
193  {"echojson", 9, "arg9"},
194  {"rescanblockchain", 0, "start_height"},
195  {"rescanblockchain", 1, "stop_height"},
196  {"createwallet", 1, "disable_private_keys"},
197  {"createwallet", 2, "blank"},
198  {"createwallet", 4, "avoid_reuse"},
199  {"createwallet", 5, "descriptors"},
200  {"createwallet", 6, "load_on_startup"},
201  {"restorewallet", 2, "load_on_startup"},
202  {"loadwallet", 1, "load_on_startup"},
203  {"unloadwallet", 1, "load_on_startup"},
204  {"getnodeaddresses", 0, "count"},
205  {"addpeeraddress", 1, "port"},
206  {"addpeeraddress", 2, "tried"},
207  {"stop", 0, "wait"},
208  {"createwallettransaction", 1, "amount"},
209  // Avalanche
210  {"addavalanchenode", 0, "nodeid"},
211  {"buildavalancheproof", 0, "sequence"},
212  {"buildavalancheproof", 1, "expiration"},
213  {"buildavalancheproof", 3, "stakes"},
214  {"getremoteproofs", 0, "nodeid"},
215  {"getstakingreward", 1, "recompute"},
216  {"setstakingreward", 2, "append"},
217  {"setflakyproof", 1, "flaky"},
218 };
219 
224 static UniValue Parse(std::string_view raw) {
225  UniValue parsed;
226  if (!parsed.read(raw)) {
227  throw std::runtime_error(tfm::format("Error parsing JSON: %s", raw));
228  }
229 
230  return parsed;
231 }
232 
234 private:
235  std::set<std::pair<std::string, int>> members;
236  std::set<std::pair<std::string, std::string>> membersByName;
237 
238 public:
240 
245  UniValue ArgToUniValue(std::string_view arg_value,
246  const std::string &method, int param_idx) {
247  return members.count({method, param_idx}) > 0 ? Parse(arg_value)
248  : arg_value;
249  }
250 
255  UniValue ArgToUniValue(std::string_view arg_value,
256  const std::string &method,
257  const std::string &param_name) {
258  return membersByName.count({method, param_name}) > 0 ? Parse(arg_value)
259  : arg_value;
260  }
261 };
262 
264  for (const auto &cp : vRPCConvertParams) {
265  members.emplace(cp.methodName, cp.paramIdx);
266  membersByName.emplace(cp.methodName, cp.paramName);
267  }
268 }
269 
271 
272 UniValue RPCConvertValues(const std::string &strMethod,
273  const std::vector<std::string> &strParams) {
274  UniValue params(UniValue::VARR);
275 
276  for (unsigned int idx = 0; idx < strParams.size(); idx++) {
277  std::string_view value{strParams[idx]};
278  params.push_back(rpcCvtTable.ArgToUniValue(value, strMethod, idx));
279  }
280 
281  return params;
282 }
283 
284 UniValue RPCConvertNamedValues(const std::string &strMethod,
285  const std::vector<std::string> &strParams) {
286  UniValue params(UniValue::VOBJ);
287  UniValue positional_args{UniValue::VARR};
288 
289  for (std::string_view s : strParams) {
290  size_t pos = s.find('=');
291  if (pos == std::string::npos) {
292  positional_args.push_back(rpcCvtTable.ArgToUniValue(
293  s, strMethod, positional_args.size()));
294  continue;
295  }
296 
297  std::string name{s.substr(0, pos)};
298  std::string_view value{s.substr(pos + 1)};
299 
300  // Intentionally overwrite earlier named values with later ones as a
301  // convenience for scripts and command line users that want to merge
302  // options.
303  params.pushKV(name, rpcCvtTable.ArgToUniValue(value, strMethod, name));
304  }
305 
306  if (!positional_args.empty()) {
307  // Use pushKVEnd instead of pushKV to avoid overwriting an explicit
308  // "args" value with an implicit one. Let the RPC server handle the
309  // request as given.
310  params.pushKVEnd("args", positional_args);
311  }
312 
313  return params;
314 }
std::string methodName
method whose params want conversion
Definition: client.cpp:18
int paramIdx
0-based idx of param to convert
Definition: client.cpp:19
std::string paramName
parameter name
Definition: client.cpp:20
std::set< std::pair< std::string, std::string > > membersByName
Definition: client.cpp:236
UniValue ArgToUniValue(std::string_view arg_value, const std::string &method, int param_idx)
Return arg_value as UniValue, and first parse it if it is a non-string parameter.
Definition: client.cpp:245
std::set< std::pair< std::string, int > > members
Definition: client.cpp:235
UniValue ArgToUniValue(std::string_view arg_value, const std::string &method, const std::string &param_name)
Return arg_value as UniValue, and first parse it if it is a non-string parameter.
Definition: client.cpp:255
void push_back(UniValue val)
Definition: univalue.cpp:96
@ VOBJ
Definition: univalue.h:31
@ VARR
Definition: univalue.h:32
void pushKVEnd(std::string key, UniValue val)
Definition: univalue.cpp:108
bool read(std::string_view raw)
void pushKV(std::string key, UniValue val)
Definition: univalue.cpp:115
UniValue RPCConvertValues(const std::string &strMethod, const std::vector< std::string > &strParams)
Convert positional arguments to command-specific RPC representation.
Definition: client.cpp:272
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
Definition: client.cpp:224
UniValue RPCConvertNamedValues(const std::string &strMethod, const std::vector< std::string > &strParams)
Convert named arguments to command-specific RPC representation.
Definition: client.cpp:284
static CRPCConvertTable rpcCvtTable
Definition: client.cpp:270
static const CRPCConvertParam vRPCConvertParams[]
Specify a (method, idx, name) here if the argument is a non-string RPC argument and needs to be conve...
Definition: client.cpp:29
void format(std::ostream &out, const char *fmt, const Args &...args)
Format list of arguments to the stream according to given format string.
Definition: tinyformat.h:1112
const char * name
Definition: rest.cpp:47