当前位置 : 主页 > 大数据 > 区块链 >

基于Go语言的protobuf 安装 以及简单测试用例

来源:互联网 收集:自由互联 发布时间:2021-06-22
先去官网下载protobuf的源码 https://github.com/google/protobuf/releases 可以先下载本地,然后上传到虚拟机中 我选择的是Source code(tar.gz) 安装依赖包(如果缺少包,可能会报错) yum install -y gcc gcc
  •  先去官网下载protobuf的源码

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

    可以先下载本地,然后上传到虚拟机中

    我选择的是Source code(tar.gz)

     

  • 安装依赖包(如果缺少包,可能会报错)

    yum install -y gcc gcc-c++ autoconf automake libtool curl make g++ unzip


  • 解压后,进入protobuf-3.5.1目录中,运行

    ./autogen.sh命令

     

  • 执行./configure命令

     

  • make && make install

     

  • 检测protobuf是否安装成功?

    protoc -h

  •  

    由于要使用Go语言,因此,需要安装相应的插件

     

    1. 先去官网将插件源码下载到本地:

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

         

         上传到虚拟机,进行解压

          tar -zxvf protobuf-1.1.0.tar.gz

    1.  

    2. 重命名

    3. mv  protobuf-1.1.0.tar.gz  protobuf

    4.  

    1. 查询GOROOT的值是什么,如我的是:

      echo $GOROOT   

      /usr/local/gohome/go

       

    2. 在GOROOT目录下,创建下面的目录src/github.com/golang

      mkdir -p /usr/local/gohome/go/src/github.com/golang

       

    3. 将protobuf目录移动到$GOROOT/src/github.com/golang 目录下  

       

    4. 进入$GOROOT/src/github.com/golang/protobuf

       

    5. make install

     

    举例:

    先手动创建一个文件test.proto

    //指定版本
    //注意proto3与proto2的写法有些不同
    syntax = "proto3"; 
    
    //包名,通过protoc生成时go文件时
    package test;
    //手机类型
    //枚举类型第一个字段必须为0
    enum 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;
     }

    执行下面的命令,生成相应的代码文件

    protoc  --go_out=.    *.proto

    或者

    protoc   --go_out=.  test.proto

     

    Go语言中,如何使用呢?

    1、首先创建test包,然后将生成的test.pb.go 上传到test包下

    2、编写测试用例

    内容如下:

    package main
    import (
     "fmt"
     "github.com/golang/protobuf/proto"
     "io/ioutil"
     "os"
     "xingej-go/xingej-go/xingej-go666/protobuf/test"
    )
    func write() {
     p1 := &test.Person{
      Id:   1,
      Name: "spark",
     }
     book := &test.ContactBook{}
     book.Persons = append(book.Persons, p1)
     //编码数据
     data, _ := proto.Marshal(book)
     //将数据写入文件
     ioutil.WriteFile("./pb_test.txt", data, os.ModePerm)
    }
    func read() {
     data, _ := ioutil.ReadFile("./pb_test.txt")
     book := &test.ContactBook{}
     //解码数据
     proto.Unmarshal(data, book)
     for _, v := range book.Persons {
      fmt.Println(v.Id, v.Name)
     }
    }
    func main() {
     write()
     read()
    }

     

     

     本文测试样例,参考了下面的文章:

    https://www.cnblogs.com/jkko123/p/7161843.html

    网友评论