码迷,mamicode.com
首页 > 其他好文 > 详细

protobuf简介和使用

时间:2015-11-23 18:41:29      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:

1.Protocol Buffers简介

Protocol Buffers (ProtocolBuffer/ protobuf )是Google公司开发的一种数据描述语言,类似于XML能够将结构化数据序列化,可用于数据存储、通信协议等方面。现阶段支持C++、JAVA、Python等三种编程语言。

2.protobuf相比Xml的优点

•更简单
•数据描述文件只需原来的1/10至1/3
•解析速度是原来的20倍至100倍
•减少了二义性
•生成了更容易在编程中使用的数据访问类
3.安装
yum -y install protobuf-c protobuf-compiler protobuf-static protobuff protobuf-devel
4.使用
vi helloworld.proto
 
输入下面的数据:

message helloworld {

     required int32 id = 1; // ID

     required string str = 2; // str

}

5.编译 .proto

protoc -I=$SRC_DIR --cpp_out=$DST_DIR $SRC_DIR/helloworld.proto

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

命令将生成:

helloworld.pb.h , 定义了 C++ 类的头文件

helloworld.pb.cc , C++ 类的实现文件

 

6.测试程序

#include "helloworld.pb.h" //包含生成的头文件
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char* argv[]) { 
    helloworld msg; 
    msg.set_id(101); 
    msg.set_str("hello"); 
    // 序列化消息
    char buff[1024] = {0};
    msg.SerializeToArray(buff, 1024);
    //解析消息
    msg.ParseFromArray(buff, 1024);
    cout << msg.id() << endl; 
    cout << msg.str() << endl; 
}

  

 7.编译运行

      g++ -o main  main.cpp helloworld.pb.cc -lprotobuf -lpthread

      ./main

 

protobuf简介和使用

标签:

原文地址:http://www.cnblogs.com/moxiaopeng/p/4988793.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!