RPC
(Remote Procedure Call) 远程过程调用
gRPC
是谷歌开源的一个rpc框架,go语言项目中常用
Protocol Buffers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// 版本号
syntax = "proto3";
// 包名
package protobufTest;
// go包名,生成后的pb包名为v1
option go_package = "apihut-server-test/api/helloworld/v1;v1";
// 定义的服务
service Product {
rpc AddProduct(ProductInfo) returns (ResponseProduct);
}
// 枚举
enum XX {
NORMAL = 0;
SUCCESS = 1;
}
// 1 是字段标识符,不是赋值
// 尽量控制在 1~15 ,超过 15 会开两个结构体存储
// 字段名一般采用小写下划线的方式
// 每个 message 的字段标识都是从1开始
// 消息格式
message ProductInfo{
int64 id = 1;
string product_name = 2;
}
message ResponseProduct{
int64 product_id = 1;
}
message GetIpRequest {
string ip = 1;
}
message GetIpReply {
// 重复的string,相当于数组
repeated string info = 1;
}
// 内嵌结构体
message Response{
message Info{
int64 id =1;
string name =2;
string version =3;
}
Info info = 1;
}
|
proto3字段不设置时会默认赋类型零值
如需判断字段是未赋值还是传0值,可引入 import "google/protobuf/wrappers.proto";
包,并将 string
类型替换为 google.protobuf.StringValue
完整写法
1
|
google.protobuf.StringValue str = 1;
|