我有一个原型文件
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
答案 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