FISCO BCOS区块链 修改增加RPC接口
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FISCO BCOS区块链 修改增加RPC接口相关的知识,希望对你有一定的参考价值。
一、RPC
RPC(Remote Procedure Call,远程过程调用)是客户端与区块链系统交互的一套协议和接口。用户通过RPC接口可查询区块链相关信息(如块高、区块、节点连接等)和发送交易。
介绍文档
远程过程调用(RPC) — FISCO BCOS v2.9.0 文档https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/design/rpc.html区块链功能接口列表 — FISCO BCOS v2.9.0 文档https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/api.html
二、测试代码
1. Rpc.h
// 测试用
Json::Value getTestInfo(int p1, int p2, int p3) override;
2. Rpc.cpp
/**
* @brief 测试
*
* @return Json::Value
*/
Json::Value Rpc::getTestInfo(int p1, int p2, int p3)
try
RPC_LOG(INFO) << LOG_BADGE("getTestInfo") << LOG_DESC("request")
<< LOG_KV("p1", p1) << LOG_KV("p2", p2)
<< LOG_KV("p3", p3);
Json::Value version;
version["FISCO-BCOS Version"] = g_BCOSConfig.binaryInfo.version;
version["Supported Version"] = g_BCOSConfig.supportedVersion();
version["Chain Id"] = toString(g_BCOSConfig.chainId());
version["info"] = "hello world";
return version;
catch (JsonRpcException& e)
throw e;
catch (std::exception& e)
BOOST_THROW_EXCEPTION(
JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR, boost::diagnostic_information(e)));
return Json::Value();
3. RpcFace.h
// 测试用
this->bindAndAddMethod(jsonrpc::Procedure("getTestInfo", jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT,
"param1", jsonrpc::JSON_INTEGER,
"param2", jsonrpc::JSON_INTEGER,
"param3", jsonrpc::JSON_INTEGER, NULL),
&dev::rpc::RpcFace::getTestInfoI);
// 测试用
inline virtual void getTestInfoI(const Json::Value& request, Json::Value& response)
response = this->getTestInfo(boost::lexical_cast<int>(request[0u].asString()),
boost::lexical_cast<int>(request[1u].asString()), boost::lexical_cast<int>(request[2u].asString()));
// 测试用
virtual Json::Value getTestInfo(int param1, int param2, int param3) = 0;
三、测试
1.编译代码,运行起fisco bcos
2. 执行命令
curl -X POST --data '"jsonrpc":"2.0","method":"getTestInfo","params":[1,2,3],"id":1' http://127.0.0.1:8545 |jq
3. 查看日志
以上是关于FISCO BCOS区块链 修改增加RPC接口的主要内容,如果未能解决你的问题,请参考以下文章