首页 文章 Golang中使用protobuf
Golang中使用protobuf
编辑时间:2020-02-08 16:23:16 作者:dashizi 浏览量:383

Protobuf(Protocol Buffer)是google 的一种数据交换的格式,它独立于语言,独立于平台。google 提供了多种语言的实现:java、c#、c++、go 和 python,每一种实现都包含了相应语言的编译器以及库文件。

Go语言的编译器器插件是在另一个叫 golang/protobuf 的项目中提供的,也叫 goprotobuf,git源码地址:https://github.com/golang/protobuf。


下载安装protobuf

1.可以下载源码编译生成exe:https://github.com/google/protobuf/releases

2.windows中也可以直接下载编译好的exe:

https://github.com/google/protobuf/releases中最后选择下载protoc-3.11.3-win32.zipprotoc-3.11.3-win64.zip

3.将protoc.exe放到$GOPATH/bin


安装go protoc库

项目代码使用必须依赖

go get github.com/golang/protobuf/proto


安装protoc-gen-go

安装go proto编译器:

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

执行完命令都说会自动安装protoc-gen-go.exe到$GOPATH/bin,如果没有安装可以自己编译然后拷贝至$GOPATH/bin


编译生成proto.go

protoc --go_out . .msg.proto


编译 .proto 文件

执行 protoc,并使用 --go_out 选项指定输出目录,即可生成 Go 源码文件。因为安装了 protoc-gen-go 之后,--go_out 选项会自动搜索 protoc-gen-go,只要其在 PATH 目录中可以找到即可。

--go_out 支持以下参数

  • plugins=plugin1+plugin2 指定插件,目前只支持 grpc,即:plugins=grpc

  • M 参数 指定导入的.proto文件路径编译后对应的golang包名(不指定本参数默认就是.proto文件中import语句的路径)

  • import_prefix=xxx 为所有 import 路径添加前缀,主要用于编译子目录内的多个 proto 文件,这个参数按理说很有用,尤其适用替代一些情况时的 M 参数。

  • import_path=foo/bar 用于指定未声明 package 或 go_package 的文件的包名,最右面的斜线前的字符会被忽略




附带上支持的数据类型:

.proto TypeNOtesgophp
double
float64float
float
float32float
int32如果有负号请使用sint32int32integer
int64如果有负号请使用sint54int64integer/string
uint32使用变长编码uint32integer
uint64使用变长编码uint64integer/string
sint32使用变长编码,有符号的整型值。编码时比通常的int32高效。int32integer
sint64使用变长编码,有符号的整型值。编码时比通常的int64高效。int64integer/string
fixed32总是8个字节,如果值总是比228大的话,这个类型比uint32高效uint32integer
fixed64总是8个字节,如果值总是比256大的话,这个类型比uint64高效uint64integer/string
sfixed32总是4个字节int32integer
sfixed64总是8个字节int64integer/string
bool
boolboolean
string一个字符串必须是UTF-8编码或者7-bit ASCII编码的文本。stringstring
bytes可能包含任意顺序的字节数据[]bytestring


来说两句吧
最新评论