一、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. 查看日志文章来源:https://www.toymoban.com/news/detail-596377.html
文章来源地址https://www.toymoban.com/news/detail-596377.html
到了这里,关于FISCO BCOS区块链 修改增加RPC接口的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!