mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
jsonrpc 0.3.0 working, needs cleanup
This commit is contained in:
parent
07d08e3af3
commit
cde59bdb90
@ -18,6 +18,7 @@ target_link_libraries(testeth ${CRYPTOPP_LS})
|
|||||||
target_link_libraries(testeth webthree)
|
target_link_libraries(testeth webthree)
|
||||||
if(JSONRPC_LS)
|
if(JSONRPC_LS)
|
||||||
target_link_libraries(testeth web3jsonrpc)
|
target_link_libraries(testeth web3jsonrpc)
|
||||||
|
target_link_libraries(testeth ${JSONRPC_CLIENT_LS})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_link_libraries(createRandomTest ethereum)
|
target_link_libraries(createRandomTest ethereum)
|
||||||
|
11
jsonrpc.cpp
11
jsonrpc.cpp
@ -29,8 +29,10 @@
|
|||||||
#include <libwebthree/WebThree.h>
|
#include <libwebthree/WebThree.h>
|
||||||
#include <libweb3jsonrpc/WebThreeStubServer.h>
|
#include <libweb3jsonrpc/WebThreeStubServer.h>
|
||||||
#include <libweb3jsonrpc/CorsHttpServer.h>
|
#include <libweb3jsonrpc/CorsHttpServer.h>
|
||||||
#include <jsonrpc/connectors/httpserver.h>
|
#include <jsonrpccpp/server/connectors/httpserver.h>
|
||||||
#include <jsonrpc/connectors/httpclient.h>
|
#include <jsonrpccpp/client/connectors/httpclient.h>
|
||||||
|
//#include <jsonrpc/connectors/httpserver.h>
|
||||||
|
//#include <jsonrpc/connectors/httpclient.h>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include "JsonSpiritHeaders.h"
|
#include "JsonSpiritHeaders.h"
|
||||||
#include "TestHelper.h"
|
#include "TestHelper.h"
|
||||||
@ -54,7 +56,8 @@ dev::WebThreeDirect web3(name, dbPath, true, s, np);
|
|||||||
|
|
||||||
unique_ptr<WebThreeStubServer> jsonrpcServer;
|
unique_ptr<WebThreeStubServer> jsonrpcServer;
|
||||||
unique_ptr<WebThreeStubClient> jsonrpcClient;
|
unique_ptr<WebThreeStubClient> jsonrpcClient;
|
||||||
|
jsonrpc::HttpClient httpClient("http://localhost:8080");
|
||||||
|
|
||||||
struct JsonrpcFixture {
|
struct JsonrpcFixture {
|
||||||
JsonrpcFixture()
|
JsonrpcFixture()
|
||||||
{
|
{
|
||||||
@ -66,7 +69,7 @@ struct JsonrpcFixture {
|
|||||||
jsonrpcServer->setIdentities({});
|
jsonrpcServer->setIdentities({});
|
||||||
jsonrpcServer->StartListening();
|
jsonrpcServer->StartListening();
|
||||||
|
|
||||||
jsonrpcClient = unique_ptr<WebThreeStubClient>(new WebThreeStubClient(new jsonrpc::HttpClient("http://localhost:8080")));
|
jsonrpcClient = unique_ptr<WebThreeStubClient>(new WebThreeStubClient(httpClient));
|
||||||
}
|
}
|
||||||
~JsonrpcFixture()
|
~JsonrpcFixture()
|
||||||
{
|
{
|
||||||
|
@ -1,587 +1,460 @@
|
|||||||
/**
|
/**
|
||||||
* THIS FILE IS GENERATED BY jsonrpcstub, DO NOT CHANGE IT!!!!!
|
* This file is generated by jsonrpcstub, DO NOT CHANGE IT MANUALLY!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _WEBTHREESTUBCLIENT_H_
|
#ifndef JSONRPC_CPP_STUB_WEBTHREESTUBCLIENT_H_
|
||||||
#define _WEBTHREESTUBCLIENT_H_
|
#define JSONRPC_CPP_STUB_WEBTHREESTUBCLIENT_H_
|
||||||
|
|
||||||
#include <jsonrpc/rpc.h>
|
#include <jsonrpccpp/client.h>
|
||||||
|
|
||||||
class WebThreeStubClient
|
class WebThreeStubClient : public jsonrpc::Client
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
WebThreeStubClient(jsonrpc::AbstractClientConnector* conn)
|
WebThreeStubClient(jsonrpc::IClientConnector &conn) : jsonrpc::Client(conn) {}
|
||||||
{
|
|
||||||
this->client = new jsonrpc::Client(conn);
|
|
||||||
}
|
|
||||||
~WebThreeStubClient()
|
|
||||||
{
|
|
||||||
delete this->client;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string account() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("account",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value accounts() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("accounts",p);
|
|
||||||
if (result.isArray())
|
|
||||||
return result;
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string addToGroup(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("addToGroup",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string balanceAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("balanceAt",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value blockByHash(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("blockByHash",p);
|
|
||||||
if (result.isObject())
|
|
||||||
return result;
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value blockByNumber(const int& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("blockByNumber",p);
|
|
||||||
if (result.isObject())
|
|
||||||
return result;
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string call(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("call",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool changed(const int& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("changed",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string codeAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("codeAt",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string coinbase() throw (jsonrpc::JsonRpcException)
|
std::string coinbase() throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p = Json::nullValue;
|
p = Json::nullValue;
|
||||||
Json::Value result = this->client->CallMethod("coinbase",p);
|
Json::Value result = this->CallMethod("coinbase",p);
|
||||||
if (result.isString())
|
if (result.isString())
|
||||||
return result.asString();
|
return result.asString();
|
||||||
else
|
else
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string compile(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("compile",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
double countAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("countAt",p);
|
|
||||||
if (result.isDouble())
|
|
||||||
return result.asDouble();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int defaultBlock() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("defaultBlock",p);
|
|
||||||
if (result.isInt())
|
|
||||||
return result.asInt();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string gasPrice() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("gasPrice",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string get(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("get",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value getMessages(const int& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("getMessages",p);
|
|
||||||
if (result.isArray())
|
|
||||||
return result;
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string getString(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("getString",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool haveIdentity(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("haveIdentity",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool listening() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("listening",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool mining() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("mining",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int newFilter(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("newFilter",p);
|
|
||||||
if (result.isInt())
|
|
||||||
return result.asInt();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int newFilterString(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("newFilterString",p);
|
|
||||||
if (result.isInt())
|
|
||||||
return result.asInt();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string newGroup(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("newGroup",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string newIdentity() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("newIdentity",p);
|
|
||||||
if (result.isString())
|
|
||||||
return result.asString();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int number() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("number",p);
|
|
||||||
if (result.isInt())
|
|
||||||
return result.asInt();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int peerCount() throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p = Json::nullValue;
|
|
||||||
Json::Value result = this->client->CallMethod("peerCount",p);
|
|
||||||
if (result.isInt())
|
|
||||||
return result.asInt();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool post(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("post",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool put(const std::string& param1, const std::string& param2, const std::string& param3) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
p.append(param3);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("put",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool putString(const std::string& param1, const std::string& param2, const std::string& param3) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
p.append(param2);
|
|
||||||
p.append(param3);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("putString",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool setCoinbase(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
bool setCoinbase(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("setCoinbase",p);
|
||||||
Json::Value result = this->client->CallMethod("setCoinbase",p);
|
if (result.isBool())
|
||||||
if (result.isBool())
|
return result.asBool();
|
||||||
return result.asBool();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
bool listening() throw (jsonrpc::JsonRpcException)
|
||||||
bool setDefaultBlock(const int& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("listening",p);
|
||||||
Json::Value result = this->client->CallMethod("setDefaultBlock",p);
|
if (result.isBool())
|
||||||
if (result.isBool())
|
return result.asBool();
|
||||||
return result.asBool();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool setListening(const bool& param1) throw (jsonrpc::JsonRpcException)
|
bool setListening(const bool& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("setListening",p);
|
||||||
Json::Value result = this->client->CallMethod("setListening",p);
|
if (result.isBool())
|
||||||
if (result.isBool())
|
return result.asBool();
|
||||||
return result.asBool();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
}
|
||||||
|
bool mining() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("mining",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool setMining(const bool& param1) throw (jsonrpc::JsonRpcException)
|
bool setMining(const bool& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("setMining",p);
|
||||||
Json::Value result = this->client->CallMethod("setMining",p);
|
if (result.isBool())
|
||||||
if (result.isBool())
|
return result.asBool();
|
||||||
return result.asBool();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
std::string gasPrice() throw (jsonrpc::JsonRpcException)
|
||||||
Json::Value shhChanged(const int& param1) throw (jsonrpc::JsonRpcException)
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("gasPrice",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string account() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("account",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value accounts() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("accounts",p);
|
||||||
|
if (result.isArray())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
int peerCount() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("peerCount",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
int defaultBlock() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("defaultBlock",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool setDefaultBlock(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("setDefaultBlock",p);
|
||||||
Json::Value result = this->client->CallMethod("shhChanged",p);
|
if (result.isBool())
|
||||||
if (result.isArray())
|
return result.asBool();
|
||||||
return result;
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
int number() throw (jsonrpc::JsonRpcException)
|
||||||
int shhNewFilter(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("number",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string balanceAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("balanceAt",p);
|
||||||
Json::Value result = this->client->CallMethod("shhNewFilter",p);
|
if (result.isString())
|
||||||
if (result.isInt())
|
return result.asString();
|
||||||
return result.asInt();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool shhUninstallFilter(const int& param1) throw (jsonrpc::JsonRpcException)
|
|
||||||
{
|
|
||||||
Json::Value p;
|
|
||||||
p.append(param1);
|
|
||||||
|
|
||||||
Json::Value result = this->client->CallMethod("shhUninstallFilter",p);
|
|
||||||
if (result.isBool())
|
|
||||||
return result.asBool();
|
|
||||||
else
|
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string stateAt(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
std::string stateAt(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
p.append(param2);
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("stateAt",p);
|
||||||
Json::Value result = this->client->CallMethod("stateAt",p);
|
if (result.isString())
|
||||||
if (result.isString())
|
return result.asString();
|
||||||
return result.asString();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
}
|
||||||
|
double countAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("countAt",p);
|
||||||
|
if (result.isDouble())
|
||||||
|
return result.asDouble();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string codeAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("codeAt",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string transact(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
std::string transact(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("transact",p);
|
||||||
Json::Value result = this->client->CallMethod("transact",p);
|
if (result.isString())
|
||||||
if (result.isString())
|
return result.asString();
|
||||||
return result.asString();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
}
|
||||||
|
std::string call(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("call",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value blockByHash(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("blockByHash",p);
|
||||||
|
if (result.isObject())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value blockByNumber(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("blockByNumber",p);
|
||||||
|
if (result.isObject())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value transactionByHash(const std::string& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
Json::Value transactionByHash(const std::string& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
p.append(param2);
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("transactionByHash",p);
|
||||||
Json::Value result = this->client->CallMethod("transactionByHash",p);
|
if (result.isObject())
|
||||||
if (result.isObject())
|
return result;
|
||||||
return result;
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value transactionByNumber(const int& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
Json::Value transactionByNumber(const int& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
p.append(param2);
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("transactionByNumber",p);
|
||||||
Json::Value result = this->client->CallMethod("transactionByNumber",p);
|
if (result.isObject())
|
||||||
if (result.isObject())
|
return result;
|
||||||
return result;
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value uncleByHash(const std::string& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
Json::Value uncleByHash(const std::string& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
p.append(param2);
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("uncleByHash",p);
|
||||||
Json::Value result = this->client->CallMethod("uncleByHash",p);
|
if (result.isObject())
|
||||||
if (result.isObject())
|
return result;
|
||||||
return result;
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value uncleByNumber(const int& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
Json::Value uncleByNumber(const int& param1, const int& param2) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
p.append(param2);
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("uncleByNumber",p);
|
||||||
Json::Value result = this->client->CallMethod("uncleByNumber",p);
|
if (result.isObject())
|
||||||
if (result.isObject())
|
return result;
|
||||||
return result;
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
}
|
||||||
|
std::string compile(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("compile",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
int newFilter(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("newFilter",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
int newFilterString(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("newFilterString",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool uninstallFilter(const int& param1) throw (jsonrpc::JsonRpcException)
|
bool uninstallFilter(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("uninstallFilter",p);
|
||||||
Json::Value result = this->client->CallMethod("uninstallFilter",p);
|
if (result.isBool())
|
||||||
if (result.isBool())
|
return result.asBool();
|
||||||
return result.asBool();
|
else
|
||||||
else
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
}
|
||||||
|
bool changed(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("changed",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value getMessages(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("getMessages",p);
|
||||||
|
if (result.isArray())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool put(const std::string& param1, const std::string& param2, const std::string& param3) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
p.append(param3);
|
||||||
|
Json::Value result = this->CallMethod("put",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string get(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("get",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool putString(const std::string& param1, const std::string& param2, const std::string& param3) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
p.append(param3);
|
||||||
|
Json::Value result = this->CallMethod("putString",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string getString(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("getString",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool post(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("post",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string newIdentity() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("newIdentity",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool haveIdentity(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("haveIdentity",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string newGroup(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("newGroup",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string addToGroup(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
p.append(param2);
|
||||||
|
Json::Value result = this->CallMethod("addToGroup",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
int shhNewFilter(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("shhNewFilter",p);
|
||||||
|
if (result.isInt())
|
||||||
|
return result.asInt();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
bool shhUninstallFilter(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("shhUninstallFilter",p);
|
||||||
|
if (result.isBool())
|
||||||
|
return result.asBool();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value shhChanged(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("shhChanged",p);
|
||||||
|
if (result.isArray())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
|
||||||
jsonrpc::Client* client;
|
|
||||||
};
|
};
|
||||||
#endif //_WEBTHREESTUBCLIENT_H_
|
|
||||||
|
#endif //JSONRPC_CPP_WEBTHREESTUBCLIENT_H_
|
||||||
|
Loading…
Reference in New Issue
Block a user