FISCO BCOS区块链 修改增加RPC接口

FISCO BCOS区块链 修改增加RPC接口,第1张

一、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(request[0u].asString()),
            boost::lexical_cast(request[1u].asString()), boost::lexical_cast(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. 查看日志

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/2991051.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-23
下一篇 2022-09-23

发表评论

登录后才能评论

评论列表(0条)

保存