golang 使用 protobuf 的教程

來源:互聯網
上載者:User

1、下載protobuf的編譯器protoc

地址:

https://github.com/google/protobuf/releases

 window:

    下載: protoc-3.3.0-win32.zip
    解壓,把bin目錄下的protoc.exe複製到GOPATH/bin下,GOPATH/bin加入環境變數。
    當然也可放在其他目錄,需加入環境變數,能讓系統找到protoc.exe
linux:
    下載:protoc-3.3.0-linux-x86_64.zip 或 protoc-3.3.0-linux-x86_32.zip
    解壓,把bin目錄下的protoc複製到GOPATH/bin下,GOPATH/bin加入環境變數。
    如果喜歡編譯安裝的,也可下載源碼自行安裝,最後將可執行檔加入環境變數。


2、擷取protobuf的編譯器外掛程式protoc-gen-go
    進入GOPATH目錄
    運行

 go get -u github.com/golang/protobuf/protoc-gen-go

    如果成功,會在GOPATH/bin下產生protoc-gen-go.exe檔案

 

3、建立一個test.proto檔案

//指定版本//注意proto3與proto2的寫法有些不同syntax = "proto3"; //包名,通過protoc產生時go檔案時package test; //手機類型//枚舉類型第一個欄位必須為0enum PhoneType {    HOME = 0;    WORK = 1;} //手機message Phone {    PhoneType type = 1;    string number = 2;} //人message Person {    //後面的數字表示標識號    int32 id = 1;    string name = 2;    //repeated表示可重複    //可以有多個手機    repeated Phone phones = 3;} //聯絡簿message ContactBook {    repeated Person persons = 1;}

 

4、運行如下命令

> protoc --go_out=. *.proto

 

會產生一個test.pb.go的檔案,具體的檔案內容我就不了。

 

5、在go語言中使用protobuf

package main; import (    "github.com/golang/protobuf/proto"    "protobuf/test"    "io/ioutil"    "os"    "fmt") func write() {    p1 := &test.Person{        Id:   1,        Name: "小張",        Phones: []*test.Phone{            {test.PhoneType_HOME, "111111111"},            {test.PhoneType_WORK, "222222222"},        },    };    p2 := &test.Person{        Id:   2,        Name: "小王",        Phones: []*test.Phone{            {test.PhoneType_HOME, "333333333"},            {test.PhoneType_WORK, "444444444"},        },    };     //建立地址簿    book := &test.ContactBook{};    book.Persons = append(book.Persons, p1);    book.Persons = append(book.Persons, p2);     //編碼資料    data, _ := proto.Marshal(book);    //把資料寫入檔案    ioutil.WriteFile("./test.txt", data, os.ModePerm);} func read() {    //讀取檔案資料    data, _ := ioutil.ReadFile("./test.txt");    book := &test.ContactBook{};    //解碼資料    proto.Unmarshal(data, book);    for _, v := range book.Persons {        fmt.Println(v.Id, v.Name);        for _, vv := range v.Phones {            fmt.Println(vv.Type, vv.Number);        }    }} func main() {    write();    read();}

 

 

原文地址:https://www.cnblogs.com/jkko123/p/7161843.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.