使用protobuf定义消息

使用protobuf定义消息

下载protobuf-2.3.0:
     http://protobuf.googlecode.com/files/protobuf-2.3.0.zip
安装: 
unzip protobuf-2.3.0.zip
cd protobuf-2.3.0
./configure
make 
make check 
make install

结果:
Libraries have been installed in:
   /usr/local/lib
Head files hava been installed in:
/usr/local/include/google/
protobuf/


开始写.proto文件:
BaseMessage.proto:
message MessageBase
{
    required int32 opcode = 1;
    // other: sendMgrId, sendId, recvMgrId, recvId, ...
}

message BaseMessage
{
    required MessageBase msgbase = 1;
}

BaseMessage. proto是其它消息proto文件的基础, 以容器模块的C2S_GetContainerInfo为例:
ContainerMessage.proto:
import "BaseMessage.proto";

message C2SGetContainerInfoMsg
{
    required MessageBase msgbase = 1;
    optional int32 containerType = 2;
}

.proto文件编写规则
1)所有消息都需要包含msgbase这项,并编号都为1,即:
  required MessageBase msgbase = 1;
2)除了msgbase这项写成required外, 其它所有项都写成optional。

编译 .proto 文件
protoc -I=. --cpp_out=. BaseMessage.proto
protoc -I=. --cpp_out=. ContainerMessage.proto
生成BaseMessage.pb.h、 BaseMessage.pb.cc
    ContainerMessage.pb.h、 ContainerMessage.pb.cc
将它们添加到工程文件中。

编写C++代码:
1)发送消息:
C2SGetContainerInfoMsg msg;
msg.mutable_msgbase()->set_ opcode(C2S_GetContainerInfo);
msg.set_containertype(1);
std::string out = msg.SerializeAsString();
send(sockfd, out.c_str(), out.size(), 0);
2)接收消息
char buf[MAXBUF + 1];
int len;
bzero(buf, MAXBUF + 1);
len = recv(new_fd, buf, MAXBUF, 0);
if (len > 0)
{
    printf("%d接收消息成功:'%s',共% d个字节的数据\n",
            new_fd, buf, len);

    BaseMessage baseMsg;
    std::string data = buf;
    baseMsg.ParseFromString(data);

    int opcode = baseMsg.mutable_msgbase()-> opcode();

    printf("opcode=%d\n", opcode);

    switch (opcode)
    {
    case C2S_GetContainerInfo:
    {
        C2SGetContainerInfoMsg msg;
        msg.ParseFromString(data);

        printf("containerType=%d\n", msg.containertype());

        break;
    }
    default:
    {
        break;
    }
    }
}
else
{
    if (len < 0)
        printf("消息接收失败!错误代码是%d,错误信息是'% s'\n",
             errno, strerror(errno));
    close(new_fd);
    return -1;
}


编译C++代码:
Need to link lib:
protobuf
pthread


参考: 
1, Google Protocol Buffer 的使用和原理:  http://www.ibm.com/developerworks/cn/linux/l-cn-gpb/index.html?ca=drs-
2, http://code.google.com/p/protobuf/

Feedback

# re: protobuf的使用[未登录]  回复  更多评论   

2011-04-29 15:43 by  me
把MessageBase写到proto里未必是好事(虽然数据可以动态变化),这会导致Message到BaseMessage的强制转换(发送消息时需要修改MessageBase的数据),protoc生成的类里都有XXX::MessageBase这一项。可以定义一个C++消息类: 
class NetMessage 

public: 
MessageBase msgBase; 
std::string msgData; 
}; 

.proto里只定义具体的具体,serialize成string后发送。 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值