protobuf初探

Protobuf是google的一个开源编解码协议,主要用于协议过程中的编解码包,对比与XML与JSON等方式,具有以下优势:

  • 灵活,支持语言描述。
  • 精简,效率高,二进制编解码。
  • 支持多种语言的生成,支持跨平台。
  • 支持动态扩展。

项目主页:http://code.google.com/p/protobuf/

下载:http://code.google.com/p/protobuf/downloads/list protobuf-2.4.1.tar.gz


安装步骤:

  1. 下载protobuf-2.4.1.tar.gz
  2. 解压
  3. ./configure
  4. make
  5. make install
然后,在/usr/lib/include以及/usr/local/lib下将安装相应的头文件以及.a,.so等库文件。

编写proto协议描述文件:
package corey;                                                                     
message helloworld                                                                 
{                                                                                  
    required int32 id = 1;                                                         
    required string name = 2;                                                      
    optional int32 gender = 3;                                                     
}        

corey::helloworld对象中有id,name,gender等三个属性,并且分别设置了默认值,其中id与name是必须设值的,不能为非空。

利用protoc命令行工具生成响应的.h.cc文件:

protoc ./helloworld.proto --cpp_out=./

相应目录下(当前目录)出现:

helloworld.pb.cc  helloworld.pb.h

编写测试用例:
#include <helloworld.pb.h>                                                         
#include <stdio.h>                                                                 
#include <stdlib.h>                                                                
#include <fstream>                                                                 
                                                                                   
using namespace std;                                                               
using namespace corey;                                                             
                                                                                   
int main(int argc,char** argv){                                                    
    helloworld hw;                                                                 
    /*                                                                             
    hw.set_gender(1);                                                              
    hw.set_id(33);                                                                 
    hw.set_name("hello wrld");                                                     
    printf("hello world\n");                                                       
    fstream output("./helloworld.bin",ios::out|ios::trunc|ios::binary);            
    if(!hw.SerializeToOstream(&output)){                                           
        printf("error\n");                                                         
    }                                                                           
    */                                                                          
    fstream input("./helloworld.bin",ios::in|ios::binary);                      
    hw.ParseFromIstream(&input);                                                
    printf("%d,%d,%s",hw.id(),hw.gender(),hw.name().c_str());                   
    return 0;                                                                   
}     

编译:g++ helloworld.c helloworld.pb.cc  -o ./helloworld -I./ -lprotobuf

分别将helloworld对象进行了序列化写入文件,读取文件反序列的操作,如果helloworld的required属性没有设置响应的值,则会产生:

libprotobuf ERROR google/protobuf/message_lite.cc:123] Can't parse message of type "corey.helloworld" because it is missing required fields: id, name



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值