本文主要是介绍proto语法说明,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
官方文档:https://developers.google.cn/protocol-buffers/docs/proto3
一、基本语法示例
/*头部相关声明
*/
syntax = "proto3"; // 语法版本为protobuf3.0
package = "com.xxx.foo"; // 定义包名
import "common.proto"; // 导入common.proto
option java_package = "com.xxx.foo"; // 指定java包// 搜索请求
message SearchRequest{int32 page = 1; // 当前页int32 page_size = 2; // 一页多少条,使用下划线分隔,设置的时候使用驼峰命令法,如:setPageSize(10);enum Type {IN = 0; // 0需要是第一个,第一个也是默认值OUT = 1;}Type type = 3; // 类型
}// 搜索响应
message SearchResponse{int32 code = 1; // 状态码string message = 2; // 消息SearchList data = 3; // 数据,类型为SearchList
}// SearchList结构
message SearchList{repeated Item data = 1; // 数据记录项,repeated类型用来存放N个相同类型的内容int64 count = 2; // 总条数int32 page_size = 3; // 一页条数
}// Item结构
message Item{int64 id = 1; // idstring title = 2; // 标题int64 create_time = 3; // 创建时间int64 update_time = 4; // 更新时间
}// 服务
service SearchService{rpc GetSearchList(SearchRequest) returns (SearchResponse); // rpc 方法
}
命令规范建议使用上面示例
字段类型有:
二、字段修饰符
- singular:单个的,有0个或1个(默认)
- repeated:重复的,重复任意次数
- required:要求的
- optional:可选的
- reserved:保留的,保留字段名或字段号
message Foo {reserved 2, 15, 9 to 11;reserved "foo", "bar";string foo = 3 // 编译报错,因为‘foo’已经被标为保留字段
}
[warning] 注意:不能在同一个
reserved
语句中同时使用字段名和字段号。
三、嵌套
message SearchResponse {message Result {string id = 1;string title = 2;}repeated Result results = 1;
}
四、引用
message OtherMessage {SearchResponse.Result result = 1;
}
五、使用Any类型
需要导入import google/protobuf/any.proto
import "google/protobuf/any.proto";message ErrorStatus {string message = 1;repeated google.protobuf.Any details = 2;
}
六、oneof
oneof
除了共享内存中的所有字段外,oneof
字段与常规字段类似,并且最多可以同时设置一个字段。
message TestMessage {oneof test_oneof {int32 id = 1;string title = 2;}
}
七、系统默认值
- string默认为空字符串
- bool默认为false
- 数值默认为0
- enum默认为第一个元素
欢迎关注:https://fenxianglu.cn/
参考链接:
- https://blog.csdn.net/baidu_32237719/article/details/99854208
- https://www.jianshu.com/p/6a6dbff2b5cd
这篇关于proto语法说明的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!