Protobuf

# Part 1: Protobuf Intro

protobuf documentation詳細(xì)介紹了關(guān)于protobuf的基本概念和初步使用法逻恐。
Protobuf是Google開(kāi)源的一種可用于結(jié)構(gòu)化數(shù)據(jù)串行化(序列化)的數(shù)據(jù)緩存格式宁舰,適用于數(shù)據(jù)存儲(chǔ)以及RPC數(shù)據(jù)交換格式野揪。Protobuf將一個(gè)文件結(jié)構(gòu)化為多個(gè)message組合而成嗡呼。
就我理解源祈,好處有:

  1. 方便的序列化方式虫溜。提供了簡(jiǎn)單明了的接口來(lái)對(duì)自己定義好的結(jié)構(gòu)化數(shù)據(jù)進(jìn)行序列化和反序列化合敦。
  2. 適合數(shù)據(jù)保密桩皿。若沒(méi)有用戶定義好的.proto格式豌汇,但看序列化到硬盤的文件很難知曉數(shù)據(jù)內(nèi)容。
  3. 跨語(yǔ)言泄隔,定義一個(gè).proto格式拒贱,再任何語(yǔ)言下均可以使用,使用提供的不同語(yǔ)言的wrapper即可佛嬉。

# Part 2: Protobuf Installaiton in MacOS

官網(wǎng)下載protobuf逻澳,此時(shí)的最新版本是 3.6.1
解壓下載的文件并進(jìn)入該目錄

./configure
make
make check
sudo make install

順利安裝后,使用which protocprotoc --version來(lái)查看proto版本暖呕。

# Part 3: Protobuf Definition

先看一個(gè)例子

syntax = "proto3"

package tutorial;

message Person {
  required string name = 1;
  required int32 id = 2;
  optional string email = 3;
 
  enum PhoneType{
      MOBILE = 0;
      HOME = 1;
      WORK = 2;
  }

 message PhoneNumber {
     required string number = 1;
     optional PhoneType type = 2 [default = HOME];
  }

  repeated PhoneNumber phones = 4;
}

message AddressBook {
  repeated Person people = 1;
}

開(kāi)頭是package的聲明斜做,用于防止不同工程下的重命名。

protobuf 自動(dòng)生成了一系列成員函數(shù)以便對(duì)信息內(nèi)數(shù)據(jù)進(jìn)行訪問(wèn)湾揽,以上面的Person為例:

// name
inline bool has_name() const;
inline void clear_name();
inline const ::std::string& name() const;
inline void set_name(const ::std::string& value);
inline void set_name(const char * value);
inline ::std::string* mutable_name();

// id
inline bool has_id() const;
inline void clear_id();
inline int32_t id() const;
inline void set_id(int32_t value);

// email
inline bool has_email() const;
inline void clear_email();
inline const ::std::string& email() const;
inline void set_email(const ::std::string& value);
inline void set_email(const char* value);
inline ::std::string* mutable_email();

// phones
inline int phones_size() const;
inline void clear_phones();
inline const ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >& phones() const;
inline ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >* mutable_phones();
inline const ::tutorial::Person_PhoneNumber& phones(int index) const;
inline ::tutorial::Person_PhoneNumber* mutable_phones(int index);
inline ::tutorial::Person_PhoneNumber* add_phones();

有以下幾類函數(shù):
getters in lowercase : 和變量名字相同的函數(shù)名稱瓤逼。
setters in highercase: 在變量名字前加上set_。
clear: 用于將變量多置為空態(tài)库物。
除此之外霸旗,還有一系列mutable_函數(shù),能夠得到指向變量的指針戚揭。從而進(jìn)行set或者get操作诱告。mutable調(diào)用時(shí),所有的變量會(huì)自動(dòng)設(shè)置為空毫目。
Repeated類型的信息域具有一些特殊的方法蔬啡,如:
1)size
2)通過(guò)index 訪問(wèn)第幾個(gè)元素
3)通過(guò)add
函數(shù)增加新的元素诲侮,此時(shí)也能返回該元素的指針

# Part 4: Protobuf in Bazel

WORKSPACE file:

http_archive(
    name = "com_google_protobuf",
    urls = [
        "https://mirror.bazel.build/github.com/google/protobuf/archive/v3.6.1.tar.gz",
        "https://github.com/google/protobuf/archive/v3.6.1.tar.gz",
      ],
    sha256 = "3d4e589d81b2006ca603c1ab712c9715a76227293032d05b26fca603f90b3f5b",
    strip_prefix = "protobuf-3.6.1",
)

BUILD file:

proto_library(
    name = "person_proto",
    srcs = ["Person.proto"],
)

# The cc_proto_library rule generates C++ code for a proto_library rule. It
# must have exactly one proto_library dependency. If you want to use multiple
# proto_library targets, create a separate cc_proto_library target for each
# of them.
#
# Remote repository "com_google_protobuf_cc" must be defined to use this rule.
cc_proto_library(
    name = "person_cc_proto",
    deps = [":person_proto"],
)

依賴關(guān)系需要按照:同目錄,同工程箱蟆,外部第三方的順序

# Part 5: Protobuf with zlib

zlib是一個(gè)開(kāi)源的壓縮庫(kù)沟绪,實(shí)現(xiàn)的deflate壓縮算法,也是該庫(kù)唯一實(shí)現(xiàn)的壓縮算法空猜。
Que's C++ Studio關(guān)于理解和使用zlib庫(kù)很詳細(xì)绽慈。
對(duì).proto格式的數(shù)據(jù)字段進(jìn)行壓縮用到的是GZIP
一個(gè)簡(jiǎn)單的例子如下:

...
#include "scene.pb.h"

#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <google/protobuf/io/gzip_stream.h>
...
unsigned int const _COMPRESSION_LEVEL = 9;
using namespace google::protobuf::io;

int main() {
    GOOGLE_PROTOBUF_VERIFY_VERSION;
    
    Recipe::Scene * scene = new Recipe::Scene();
    
    /*
      initialization date in scene
    */
    
    std::ofstream output("scene.art", std::ofstream::out | std::ofstream::trunc | std::ofstream::binary);
    OstreamOutputStream outputFileStream(&output);
    
    GzipOutputStream::Options options;
    options.format = GzipOutputStream::GZIP;
    options.compression_level = _COMPRESSION_LEVEL;

    GzipOutputStream gzipOutputStream(&outputFileStream, &options);
    if (!scene->SerializeToZeroCopyStream(&gzipOutputStream))
    {
        std::cerr << "Failed to write scene." << std::endl;
        return -1;
    }
    Recipe::Scene * scene1 = new Recipe::Scene();
    {
        std::ifstream input("scene.art", std::ifstream::in | std::ifstream::binary);
        IstreamInputStream inputFileStream(&input);
        GzipInputStream GzipInputStream(&inputFileStream);
        if (!scene1->ParseFromZeroCopyStream(&GzipInputStream))
        {
              std::cerr << "Failed to read scene." << std::endl;
              return -1;
    }
    }
    std::cout << "scene1->imageData_size() " << scene1->imageData_size() << std::endl;
    google::protobuf::ShutdownProtobufLibrary();
    return 0;
}

即直接將.proto數(shù)據(jù)在序列化的同時(shí)進(jìn)行壓縮,對(duì)應(yīng)的辈毯,在反序列時(shí)也是直接parse即可坝疼。

out: ofstream --> OstreamOutputStream --> GZipOutputStream
in: ifstream --> IstreamInputStream --> GZipInputStream
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市谆沃,隨后出現(xiàn)的幾起案子钝凶,更是在濱河造成了極大的恐慌,老刑警劉巖唁影,帶你破解...
    沈念sama閱讀 212,332評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件耕陷,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡据沈,警方通過(guò)查閱死者的電腦和手機(jī)哟沫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,508評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)锌介,“玉大人嗜诀,你說(shuō)我怎么就攤上這事】谆觯” “怎么了隆敢?”我有些...
    開(kāi)封第一講書人閱讀 157,812評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)融击。 經(jīng)常有香客問(wèn)我筑公,道長(zhǎng),這世上最難降的妖魔是什么尊浪? 我笑而不...
    開(kāi)封第一講書人閱讀 56,607評(píng)論 1 284
  • 正文 為了忘掉前任匣屡,我火速辦了婚禮,結(jié)果婚禮上拇涤,老公的妹妹穿的比我還像新娘捣作。我一直安慰自己,他們只是感情好鹅士,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,728評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布券躁。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪也拜。 梳的紋絲不亂的頭發(fā)上以舒,一...
    開(kāi)封第一講書人閱讀 49,919評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音慢哈,去河邊找鬼蔓钟。 笑死,一個(gè)胖子當(dāng)著我的面吹牛卵贱,可吹牛的內(nèi)容都是我干的滥沫。 我是一名探鬼主播,決...
    沈念sama閱讀 39,071評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼键俱,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼兰绣!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起编振,我...
    開(kāi)封第一講書人閱讀 37,802評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤缀辩,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后党觅,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體雌澄,經(jīng)...
    沈念sama閱讀 44,256評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,576評(píng)論 2 327
  • 正文 我和宋清朗相戀三年杯瞻,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片炫掐。...
    茶點(diǎn)故事閱讀 38,712評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡魁莉,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出募胃,到底是詐尸還是另有隱情旗唁,我是刑警寧澤,帶...
    沈念sama閱讀 34,389評(píng)論 4 332
  • 正文 年R本政府宣布痹束,位于F島的核電站检疫,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏祷嘶。R本人自食惡果不足惜屎媳,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,032評(píng)論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望论巍。 院中可真熱鬧烛谊,春花似錦、人聲如沸嘉汰。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,798評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至双泪,卻和暖如春持搜,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背焙矛。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 32,026評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工葫盼, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人薄扁。 一個(gè)月前我還...
    沈念sama閱讀 46,473評(píng)論 2 360
  • 正文 我出身青樓剪返,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親邓梅。 傳聞我的和親對(duì)象是個(gè)殘疾皇子脱盲,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,606評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容