[实现Rpc] 消息类型的测试 | dynamic_pointer_cast | gdb使用

目录

Request

RpcRequest测试:

[⭕ debug_1:dynamic_pointer_cast](#⭕ debug_1:dynamic_pointer_cast)

TopicRequest测试

ServiceRequest测试

⭕debug_2:gdb

Response

RpcResponse测试

TopicResponse测试

ServiceResponse测试


Request

RpcRequest测试:

复制代码
#include "message.hpp"

using namespace bitrpc;

int main()
{
	RpcRequest::ptr rrp = MessageFactory::create<RpcRequest>();

    Json::Value param;
    param["num1"] = 11;
    param["num2"] = 22;

    rrp->setMethod("Add");
    rrp->setParams(param);

    std::string ret = rrp->serialize();
    std::cout << ret << std::endl;

//

    BaseMessage::ptr bmp = MessageFactory::create(MType::REQ_RPC);
    bool res = bmp->unserialize(ret);
    if(bmp->check() == false)
    {
        return -1;
    }

//!!!!!!! dynamic_pointer_cast的使用
    RpcRequest::ptr rrp2 = std::dynamic_pointer_cast<RpcRequest>(bmp);
    std::cout << rrp2->method() << std::endl;
    std::cout << rrp2->params()["num1"] << std::endl;
    std::cout << rrp2->params()["num2"] << std::endl;

    return 0;
}

运行:

⭕ debug_1:dynamic_pointer_cast

📒dynamic_cast 和 dynamic_Pointer_cast的使用

1.指引或者引用的向上转换,向下转换

例如基类A ,派生类B.。A->B 则为向下转换。。B->A则为向上转换。。向上转换为隐士转换。向下转换需要dynamic_cast或者c的转换方式。

B * b = new B;

A * a = b;

此时b就是向上转换。无需显式转换既可以编译通过。

2.dynamic_cast

一般用于有继承关系的类之间的向下转换。

3.dynamic_pointer_cast

当指针是智能指针时候,向下转换,用dynamic_Cast 则编译不能通过,此时需要使用dynamic_pointer_cast。


TopicRequest测试

复制代码
int main()
{
 	TopicRequest::ptr trp = MessageFactory::create<TopicRequest>();
    trp->setTopicKey("news");
    trp->setOptype(TopicOptype::TOPIC_PUBLISH);
    trp->setTopicMsg("hello world");

    std::string str = trp->serialize();
    std::cout << str << std::endl;

    BaseMessage::ptr bmp = MessageFactory::create(MType::REQ_TOPIC);
    bmp->unserialize(str);

    bool ret = bmp->check();
    TopicRequest::ptr trp2 = std::dynamic_pointer_cast<TopicRequest>(bmp);
    std::cout << trp2->topicKey() << std::endl;
    std::cout << (int)trp2->optype() << std::endl;
    std::cout << trp2->topicMsg() << std::endl;

	return 0;
}

运行:


ServiceRequest测试

复制代码
int main()
{
	ServiceRequest::ptr trp = MessageFactory::create<ServiceRequest>();
    trp->setMethod("Add");
    trp->setOptype(ServiceOptype::SERVICE_REGISTRY);
//服务注册 测试

    trp->setHost(Address("127.0.0.1", 8080));
    
    std::string str = trp->serialize();
    std::cout << str << std::endl;

    BaseMessage::ptr bmp = MessageFactory::create(MType::REQ_SERVICE);
    bmp->unserialize(str);

    bool ret = bmp->check();
    ServiceRequest::ptr trp2 = std::dynamic_pointer_cast<ServiceRequest>(bmp);
    std::cout << trp2->method() << std::endl;
    std::cout << (int)trp2->optype() << std::endl;
    std::cout << trp2->host().first << std::endl;
    std::cout << trp2->host().second << std::endl;

	return 0;
}

⭕debug_2:gdb

调试:

使用 gdb

复制代码
(gdb) break message.hpp:169
run

gdb 调试中 不能使用宏 !!!!!!!!!!!!!!!!!!!!

后续采用 p 打印查看


Response

RpcResponse测试

复制代码
int main()
{
    RpcResponse::ptr trp = MessageFactory::create<RpcResponse>();
    trp->setRCode(RCode::RCODE_OK);
    trp->setResult(33);
    std::string str = trp->serialize();
    std::cout << str << std::endl;

    BaseMessage::ptr bmp = MessageFactory::create(MType::RSP_RPC);
    bmp->unserialize(str);

    bool ret = bmp->check();
    RpcResponse::ptr trp2 = std::dynamic_pointer_cast<RpcResponse>(bmp);
    std::cout << (int)trp2->rcode() << std::endl;
    std::cout << trp2->result().asInt() << std::endl;
	
	return 0;
}

运行:


TopicResponse测试

复制代码
int main()
{
	TopicResponse::ptr trp = MessageFactory::create<TopicResponse>();
    trp->setRCode(RCode::RCODE_OK);
    std::string str = trp->serialize();
    std::cout << str << std::endl;

    BaseMessage::ptr bmp = MessageFactory::create(MType::RSP_TOPIC);
    bmp->unserialize(str);

    bool ret = bmp->check();
    TopicResponse::ptr trp2 = std::dynamic_pointer_cast<TopicResponse>(bmp);
    std::cout << (int)trp2->rcode() << std::endl;
	
	return 0;
}

运行:


ServiceResponse测试

复制代码
int main()
{	
	ServiceResponse::ptr trp = MessageFactory::create<ServiceResponse>();
    trp->setRCode(RCode::RCODE_OK);
    trp->setMethod("Add");
    trp->setOptype(ServiceOptype::SERVICE_DISCOVERY);
    
    std::vector<Address> addrs;
    addrs.push_back(Address{"127.0.0.1", 8080});
    addrs.push_back(Address{"127.0.0.2", 9090});
    trp->setHost(addrs);
    std::string str = trp->serialize();
    std::cout << str << std::endl;

    BaseMessage::ptr bmp = MessageFactory::create(MType::RSP_SERVICE);
    bmp->unserialize(str);

    bool ret = bmp->check();
    ServiceResponse::ptr trp2 = std::dynamic_pointer_cast<ServiceResponse>(bmp);
    std::cout << (int)trp2->rcode() << std::endl;
    std::cout << trp2->method() << std::endl;
    std::cout << (int)trp2->optype() << std::endl;
    
    std::vector<Address> addrs1 = trp2->hosts();
    for(auto& addr : addrs1)
    {
        std::cout << addr.first << std::endl;
        std::cout << addr.second << std::endl;
    }

	return 0;
}

运行:

相关推荐
地平线开发者14 分钟前
C++ 部署的性能优化方法
c++·算法·自动驾驶
Yingye Zhu(HPXXZYY)35 分钟前
洛谷P12238 [蓝桥杯 2023 国 Java A] 单词分类
c++·算法·蓝桥杯
工藤新一¹1 小时前
C++/SDL 进阶游戏开发 —— 双人塔防(代号:村庄保卫战 16)
c++·游戏引擎·sdl·c++游戏开发·实践项目
whoarethenext2 小时前
c网络库libevent的http常用函数的使用(附带源码)
网络·c++·http·libevent
泽02024 小时前
C++入门(缺省参数/函数/引用)
开发语言·c++
mozun20208 小时前
VS BUG(6) LINK : fatal error LNK1158: 无法运行“rc.exe”
c++·bug·vs·链接器·资源文件
whoarethenext9 小时前
初始https附带c/c++源码使用curl库调用
服务器·c++·qt·https·curl
cloues break.10 小时前
C++进阶----多态
开发语言·c++
Despacito0o11 小时前
C++核心编程:类与对象全面解析
开发语言·c++
CodeWithMe13 小时前
【C++】线程池
开发语言·c++