首页 文章 Golang中使用protobuf
Protobuf(Protocol Buffer)是google 的一种数据交换的格式,它独立于语言,独立于平台。google 提供了多种语言的实现:java、c#、c++、go 和 python,每一种实现都包含了相应语言的编译器以及库文件。
Go语言的编译器器插件是在另一个叫 golang/protobuf 的项目中提供的,也叫 goprotobuf,git源码地址:https://github.com/golang/protobuf。
1.可以下载源码编译生成exe:https://github.com/google/protobuf/releases
2.windows中也可以直接下载编译好的exe:
在https://github.com/google/protobuf/releases中最后选择下载protoc-3.11.3-win32.zip,protoc-3.11.3-win64.zip
3.将protoc.exe放到$GOPATH/bin
项目代码使用必须依赖
go get github.com/golang/protobuf/proto
安装go proto编译器:
go get github.com/golang/protobuf/protoc-gen-go
执行完命令都说会自动安装protoc-gen-go.exe到$GOPATH/bin,如果没有安装可以自己编译然后拷贝至$GOPATH/bin
protoc --go_out . .msg.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 Type | NOtes | go | php |
---|---|---|---|
double | float64 | float | |
float | float32 | float | |
int32 | 如果有负号请使用sint32 | int32 | integer |
int64 | 如果有负号请使用sint54 | int64 | integer/string |
uint32 | 使用变长编码 | uint32 | integer |
uint64 | 使用变长编码 | uint64 | integer/string |
sint32 | 使用变长编码,有符号的整型值。编码时比通常的int32高效。 | int32 | integer |
sint64 | 使用变长编码,有符号的整型值。编码时比通常的int64高效。 | int64 | integer/string |
fixed32 | 总是8个字节,如果值总是比228大的话,这个类型比uint32高效 | uint32 | integer |
fixed64 | 总是8个字节,如果值总是比256大的话,这个类型比uint64高效 | uint64 | integer/string |
sfixed32 | 总是4个字节 | int32 | integer |
sfixed64 | 总是8个字节 | int64 | integer/string |
bool | bool | boolean | |
string | 一个字符串必须是UTF-8编码或者7-bit ASCII编码的文本。 | string | string |
bytes | 可能包含任意顺序的字节数据 | []byte | string |