理解proto3协议

示例解读

假设我们看到以下的接口参数定义:

  1. // 创建服务
  2. message CreateServerRequest {
  3. int64 userId = 1;
  4. int64 adminId = 2;
  5. string type = 3;
  6. string name = 4;
  7. string description = 5;
  8. // 配置相关
  9. bytes serverNamesJON = 8;
  10. bytes httpJSON = 9;
  11. bytes httpsJSON = 10;
  12. bytes tcpJSON = 11;
  13. bytes tlsJSON = 12;
  14. bytes unixJSON = 13;
  15. bytes udpJSON = 14;
  16. int64 webId = 15;
  17. bytes reverseProxyJSON = 16;
  18. repeated int64 serverGroupIds = 17;
  19. int64 userPlanId = 18;
  20. }

其中:

  • 每个字段定义都至少由三部分组成,最简单的定义为 字段类型 字段名 = 字段编号
  • int64string 等都是字段数据类型,目前支持以下常用的数据类型:
    • int64 - 64位整型
    • int32 - 32位整型
    • uint64 - 无符号的64位整型
    • uint32 - 无符号的32位整型
    • double - 双精度浮点数字
    • float - 单精度浮点数字
    • string - 字符串
    • bool - 布尔值,在JSON中为 true 或者 false
    • bytes - 二进制字节数组,通过JSON调用时,你需要先将数据转换为Base64格式,再传递到接口,比如:
    • 一个字符串的内容为Hello, World,那么传递到 bytes 类型字段的时候就需要传递 base64_encode('Hello, World'),最终值应该为 SGVsbG8sIFdvcmxk
    • 一个JSON数据的内容为{ "name": "goedge.cn", "type": "domain"},那么传递到 bytes 类型字段的时候就需要传递 base64_encode('{ "name": "goedge.cn", "type": "domain"}'),最终值应该为 eyAibmFtZSI6ICJnb2VkZ2UuY24iLCAidHlwZSI6ICJkb21haW4ifQ==
    • 一个文件内容的二进制内容同样也需要Base64编码处理
    • 反之,对于接口返回的响应数据来说,你需要Base64 Decode处理才能得到原始数据
  • repeated 字段类型 字段名 = 字段编号 表示一个数组,字段类型 部分表示字段值数组中的元素的类型,比如:
    • repeated int64 serverGroupIds 表示 serverGroupIds 是一个数组,通过JSON调用时需要传递[ 1, 2, 3 ]这样格式的数据,其中 int64 规定了数组中的每一项必须是一个整型;
    • repeated string types 表示 types 的值为 [ "type1", "type2" ] 这样的数组
    • repeated ServerGroup serverGroups 表示 serverGroups 的只为 [ serverGroup1, serverGroup2, serverGroup3 ] 这样的数组,因为ServerGroup也是一个对象,所以我们可以展开来,最终的JSON为:[ { "id":1, "name": "分组1" }, { "id":2, "name": "分组2" }, { "id":3, "name": "分组3" } ]
  • 数字1232等为字段编号,并 不是 字段值,对调用者来说,并没有实际意义;编号不一定是按顺序的,也不一定是连续的;

整体转换为JSON

通过JSON调用API时,需要将proto3协议的数据转换为JSON。对于这个示例中,和JSON的对应关系为:

  1. {
  2. "userId": 35,
  3. "adminId": 1,
  4. "type": "httpProxy",
  5. "name": "My site",
  6. "description": "This is my site",
  7. "serverNamesJON": "ewogICJuYW1lIjogImdvZWRnZS5jbiIKfQ==",
  8. "httpJSON": "...",
  9. "httpsJSON": "...",
  10. "tcpJSON": "...",
  11. "tlsJSON": "...",
  12. "unixJSON": "...",
  13. "udpJSON": "...",
  14. "webId": "...",
  15. "reverseProxyJSON": "...",
  16. "serverGroupIds": [1, 3, 5],
  17. "userPlanId": 12
  18. }

空参数

有些接口参数定义为:

  1. message NotifyServersChangeRequest {
  2. }

像这样的接口需要传递的JSON为:

  1. {}

即可。

字符集

GoEdge所有API都只支持UTF-8。