aboutsummaryrefslogtreecommitdiff
path: root/src/rpcclient.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-06-04 10:31:22 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-06-04 13:18:35 +0200
commit043df2b56831bef4c4b726ae4fc761d4710b99be (patch)
tree8d4dd21f5e8693a4fd793fb4daffc102da47a553 /src/rpcclient.cpp
parent519eedeba76a2192bbded69b3c7e7e96bfc549a2 (diff)
downloadbitcoin-043df2b56831bef4c4b726ae4fc761d4710b99be.tar.xz
Simplify RPCclient, adapt json_parse_error test
# Conflicts: # src/test/rpc_tests.cpp
Diffstat (limited to 'src/rpcclient.cpp')
-rw-r--r--src/rpcclient.cpp36
1 files changed, 16 insertions, 20 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
index d175db09ee..f254da5de0 100644
--- a/src/rpcclient.cpp
+++ b/src/rpcclient.cpp
@@ -121,6 +121,18 @@ CRPCConvertTable::CRPCConvertTable()
static CRPCConvertTable rpcCvtTable;
+/** Non-RFC4627 JSON parser, accepts internal values (such as numbers, true, false, null)
+ * as well as objects and arrays.
+ */
+UniValue ParseNonRFCJSONValue(const std::string& strVal)
+{
+ UniValue jVal;
+ if (!jVal.read(std::string("[")+strVal+std::string("]")) ||
+ !jVal.isArray() || jVal.size()!=1)
+ throw runtime_error(string("Error parsing JSON:")+strVal);
+ return jVal[0];
+}
+
/** Convert strings to command-specific RPC representation */
UniValue RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams)
{
@@ -129,28 +141,12 @@ UniValue RPCConvertValues(const std::string &strMethod, const std::vector<std::s
for (unsigned int idx = 0; idx < strParams.size(); idx++) {
const std::string& strVal = strParams[idx];
- // insert string value directly
if (!rpcCvtTable.convert(strMethod, idx)) {
+ // insert string value directly
params.push_back(strVal);
- }
-
- // parse string as JSON, insert bool/number/object/etc. value
- else {
- //according to rfc4627 null, true, false are not valid json strings
- UniValue jVal;
- if(strVal == "null")
- jVal.setNull();
- else if(strVal == "true")
- jVal.setBool(true);
- else if(strVal == "false")
- jVal.setBool(false);
- else
- {
- if (!jVal.read(strVal) || (jVal.isNull() && strVal.size() > 0))
- if(!jVal.setNumStr(strVal) || jVal.isNull())
- throw runtime_error(string("Error parsing JSON:")+strVal);
- }
- params.push_back(jVal);
+ } else {
+ // parse string as JSON, insert bool/number/object/etc. value
+ params.push_back(ParseNonRFCJSONValue(strVal));
}
}