PB-进阶-2

keywords

  • protobuf
  • proto兼容问题

0. 引言

Protocol buffers(下文简称PB) 是一种灵活,高效,自动化机制的结构数据序列化方法-可类比 XML,但是比 XML 更小(3 ~ 10倍)、更快(20 ~ 100倍)、更为简单。实际使用过程中,我们会遇到PB的proto文件新老协议兼容的问题,本文主要简述新老proto兼容相关的问题以及使用注意事项,入门篇参考PB-入门-1

1. proto兼容

本文暂不深挖协议,主要介绍实际case,后续文章会深挖PB相关的协议。首先我们来看看本文测试使用到的proto文件定义

syntax = "proto2";
package test.tutorial;

message Student {
  optional uint64 id = 1;
  optional string name = 2;
  optional string email = 3;
}

message Student2 {
  optional uint64 id = 1;
  optional string name = 2;
  optional string email_2 = 3;
  optional uint64 ex = 4;
}

此外,介绍一个基本知识:proto文件生成的类都公开继承自google::protobuf::Message,比如一些序列化和反序列化的方法

bool SerializeToString(string* output) const; //将消息序列化并储存在指定的string中。注意里面的内容是二进制的,而不是文本;我们只是使用string作为一个很方便的容器。
bool ParseFromString(const string& data); //从给定的string解析消息。
bool SerializeToArray(void * data, int size) const  //将消息序列化至数组
bool ParseFromArray(const void * data, int size)    //从数组解析消息
bool SerializeToOstream(ostream* output) const; //将消息写入到给定的C++ ostream中。
bool ParseFromIstream(istream* input); //从给定的C++ istream解析消息。

1.1. 老的序列化,新的反序列化

使用老的proto文件序列化得到二进制数据,使用新的proto文件反序列化,直接看测试代码和结果

#include <iostream>
#include <string>
#include "build/Student.pb.h"

int main(int argc, char* argv[]) {
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  test::tutorial::Student Student;

  Student.set_id(1);
  *Student.mutable_name() = "kk";
  Student.set_email("kk@tencent.com");

  std::string serializedStr;
  Student.SerializeToString(&serializedStr);
  std::cout << std::endl << "before debugString:\r\n" << Student.DebugString();

  std::cout << "----------上面是序列化,下面是反序列化----------" << std::endl;
  test::tutorial::Student2 test;
  test.ParseFromString(serializedStr);
  std::cout << "after debugString:\r\n" << test.DebugString() << std::endl;

  google::protobuf::ShutdownProtobufLibrary();
}
before debugString:
id: 1
name: "kk"
email: "kk@tencent.com"
----------上面是序列化,下面是反序列化----------
after debugString:
id: 1
name: "kk"
email_2: "kk@tencent.com"

从上面看,反序列化后的数据正常(仔细看,发现没有:第3个name是email_2,这里是因为PB协议,传递的知识type(按照编号和数据类型规则生成的,参考Protobuf通信协议详解:代码演示、详细原理介绍等),名字对于协议来说,并不传递。

1.2. 新的序列化,老的反序列化

代码如下:

#include <iostream>
#include <string>
#include "build/Student.pb.h"

int main(int argc, char* argv[]) {
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  test::tutorial::Student2 Student;

  Student.set_id(1);
  *Student.mutable_name() = "kk";
  Student.set_email_2("kk@tencent.com");
  Student.set_ex(2);

  std::string serializedStr;
  Student.SerializeToString(&serializedStr);
  std::cout << std::endl << "before debugString:\r\n" << Student.DebugString();

  std::cout << "----------上面是序列化,下面是反序列化----------" << std::endl;
  test::tutorial::Student test;
  test.ParseFromString(serializedStr);
  std::cout << "after debugString:\r\n" << test.DebugString() << std::endl;

  google::protobuf::ShutdownProtobufLibrary();
}

结果

before debugString:
id: 1
name: "kk"
email_2: "kk@tencent.com"
ex: 2
----------上面是序列化,下面是反序列化----------
after debugString:
id: 1
name: "kk"
email: "kk@tencent.com"
4: 2

注意反序列化的打印,有一个 “4:2”,这里是有问题的,因为test::tutorial::Student的空间,并没有这么大,这里实际上已经内存越界访问了,在很多情况下会出现预期之外的异常。

1.3. 在序列化后的数据上,多出一些数据

#include <iostream>
#include <string>
#include "build/Student.pb.h"

int main(int argc, char* argv[]) {
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  test::tutorial::Student Student;

  Student.set_id(1);
  *Student.mutable_name() = "kk";
  Student.set_email("kk@tencent.com");

  std::string serializedStr;
  Student.SerializeToString(&serializedStr);
  std::cout << std::endl << "before debugString:\r\n" << Student.DebugString();

  std::cout << "----------上面是序列化,下面是反序列化----------" << std::endl;
  test::tutorial::Student2 test;
  test.ParseFromString(serializedStr + "kk");
  std::cout << "after debugString:\r\n" << test.DebugString() << std::endl;

  google::protobuf::ShutdownProtobufLibrary();
}

结果

before debugString:
id: 1
name: "kk"
email: "kk@tencent.com"
----------上面是序列化,下面是反序列化----------
after debugString:
id: 1
name: "kk"
email_2: "kk@tencent.com"
13 {
  13 {
  }
}

这个跟上面case一样,是有问题的,存在内存越界访问

1.4. 序列化的数据丢失部分

#include <iostream>
#include <string>
#include "build/Student.pb.h"

int main(int argc, char* argv[]) {
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  test::tutorial::Student Student;

  Student.set_id(1);
  *Student.mutable_name() = "kk";
  Student.set_email("kk@tencent.com");

  std::string serializedStr;
  Student.SerializeToString(&serializedStr);
  std::cout << std::endl << "before debugString:\r\n" << Student.DebugString();

  std::cout << "----------上面是序列化,下面是反序列化----------" << std::endl;
  test::tutorial::Student2 test;
  test.ParseFromString(serializedStr.substr(0, serializedStr.size() - 3));
  std::cout << "after debugString:\r\n" << test.DebugString() << std::endl;

  google::protobuf::ShutdownProtobufLibrary();
}

结果

before debugString:
id: 1
name: "kk"
email: "kk@tencent.com"
----------上面是序列化,下面是反序列化----------
after debugString:
id: 1
name: "kk"
email_2: "kk@tencent.\000\000\000"

这里结果其实也不难理解,因为按照PB的编码协议,内容的长度字段是正常的,内容确实部分,PB填充了0

对于丢失这个场景,丢失的数据不一样结果也会不一样。

2. 结论

PB协议的兼容是:

  • 新的proto可以兼容老的proto序列化
  • 新的proto序列化出来的二进制序列不能用老的proto解析
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容