程序员

Google Protocol buffer 学习笔记.上篇-简

2018-08-05  本文已影响34人  neilzwshen

本次分上下两篇简单记录自己对protobuf协议的学习笔记, 上篇简单介绍protobuf, 记录了ubuntu系统中的安装过程, 并举了一个简单示例; 下篇将介绍protobuf的两个重要机制, 动态编译与类型反射.
能力有限, 如有疏漏望请指正.


引子

  • protobuf是一种序列化协议
  • 高效轻便
  • 支持多语言

一 简介(随意跳过)

1.1 varint编码方式

image.png

1.2 Key-Pair存储方式

image.png

1.3 ZigZag编码

image.png

1.4 解封包机制


二 安装

  1. 解压, 切换至下载目录 tar -xvf protobuf-all-3.6.0.tar.gz protobuf-3.6.0/ 根据不同格式选择不同的解压命令啦

  2. 切换至目标目录下cd protobuf-3.6.0/

  3. 观察一下有没有包含configure文件, 如果不存在那么先执行./autogen.shshell脚本生成该文件

  4. ./configure此处可以通过后缀--prefix=$INSTALL_DIR来指定想要安装的目标目录(将$INSTALL_DIR替换成自己想要的目录就好啦), 如果不指定一般是安装在默认的/usr/local/lib

  5. make编译一下, 等个十来分钟吧

  6. make check

  7. make install安装

  8. protoc --version检查一下是否安装成功, 成功会显示版本号, 多半会失败啦, 那就看下一步

  9. 如果提示protoc: error while loading shared libraries: libprotoc.so.9: cannot open shared object file: No such file or directory, 那么是因为protobuf的安装路径(默认的/usr/local/lib)不在ubuntu体系中默认的LD_LIBRARY_PATH中, 所以无法找到对应的lib. 解决 只需要在/etc/ld.so.conf.d/目录下创建文件bprotobuf.conf文件, 并写入我们的安装路径(/usr/local/lib), 然后执行sudo ldconfig即可.

    • 其中ldconfig是一个动态链接库管理命令,为了让动态链接库为系统所共享
      • /lib/usr/lib中添加动态库, 那么只需要执行ldconfig即可
      • 除了此二目录以外的位置增加动态库时, 需要额外修改/etc/ld.so.conf或者在/etc/ld.so.conf.d目录下创建包含对应目录的.conf文件, 而后执行ldconfig
  10. 至此protobuf就算是安装完成啦, 使用protoc --version再检查一下试试

如果上述安装步骤中遇到权限问题, 那么可以使用sudo命令, 或者切成root(慎用root 哈哈哈)


三 简单示例

编写简单的proto文件


// test.proto

syntax = "proto3";

package lm;

message helloworld

{

    int32 id = 1;

    string name = 2;

    repeated string hero = 3;                                                                     

}

protoc编译


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

使用示例


#include <iostream>

#include <fstream>

#include "test.pb.h"

int main()

{

    lm::helloworld ob1, ob2;

    ob1.set_id(1);

    ob1.set_name("szw");

    ob1.add_hero("loong");

    ob1.add_hero("uk");

    printf("ob1\n");

    ob1.PrintDebugString();

    std::ofstream fout("test.txt");

    if (!ob1.SerializeToOstream(&fout)){

        perror("ob1 SerializeToOstream Wrong!\n");

        exit(-1);

    }

    fout.close();

    std::ifstream fin("test.txt");

    if(!ob2.ParseFromIstream(&fin)){

        perror("ob2 ParseFromIstream Wrong!\n");

        exit(-1);

    }

    fin.close();

    printf("ob2\n");

    ob2.PrintDebugString();

    return 0;

}

makefile


all:

 g++ -std=c++11 -c -o test.o test.cpp

 g++ -std=c++11 -c -o test.pb.o test.pb.cc

 g++ -std=c++11 -o test test.o test.pb.o -lprotobuf -lpthread

clean:

 rm -rf *.o

执行结果


ob1

id: 1

name: "szw"

hero: "loong"

hero: "uk"

ob2

id: 1

name: "szw"

hero: "loong"

hero: "uk"

上一篇下一篇

猜你喜欢

热点阅读