protobuf:如何解析FieldOptions中的描述符消息

时间:2017-10-25 06:48:18

标签: go protocol-buffers

我有一个原型文件

syntax = "proto2";
package cmd;

import "google/protobuf/descriptor.proto";

message FlagDetail {
  required string name = 1;
  required string value = 2;
  required string shorthand = 3;
  required string usage = 4;
}

extend google.protobuf.FieldOptions {
  optional FlagDetail info = 1234;
}

message VersionFlags {
  optional bool client = 2 [ (info) = { name: "client" value: "false" shorthand: "c" usage: "Client version only (no server required)."}];
  optional bool short = 3  [ (info) = { name: "short" value: "false" shorthand: "baz" usage: "Print just the version number."}];
  optional string output = 4 [ (info) = { name: "output" value: "" shorthand: "o" usage: "One of 'yaml' or 'json'."}];
}

如何获取空消息的FlagDetail默认值

像这样的事情

var msg VersionFlags
md := ForMessage(&msg)  
o := md.Field[0].GetOptions()
o.GetFlagDetail.GetName()  //unfortunately, there's no method like this

BTW ForMessage()来自:https://github.com/golang/protobuf/blob/master/descriptor/descriptor_test.go

这是我的原型文件https://gist.githubusercontent.com/shiywang/3d9f53fe253bb4195d65b3626442cb66/raw/89c286599a4103f67b80a62c87c69847497fa289/protofile

1 个答案:

答案 0 :(得分:0)

_, md := descriptor.ForMessage(msg.(descriptor.Message))
info, err := proto.GetExtension(md.GetOptions(), cmdproto.E_Cmd)
if err != nil {
    panic(err)
}
return info.(*cmdproto.CommandInfo)

有点像这样,但我实际遇到的问题是https://github.com/golang/protobuf/issues/372