我刚刚问 了这个问题,并决定在我的协议缓冲区中编写枚举值的扩展。但是,即使使用这个简单的 .proto 文件,我也很难真正读回这些值:
package test;
import "google/protobuf/descriptor.proto";
extend google.protobuf.EnumValueOptions {
optional string abbr = 54321;
}
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
enum PhoneType { MOBILE = 0 [(abbr)="Mobile ph"]; HOME = 1 [(abbr)="HomePhone"]; WORK = 2 [(abbr)="Work number"]; }
message PhoneNumber {
required string number = 1;
optional PhoneType type = 2 [default = HOME];
}
repeated PhoneNumber phone = 4;
}
message AddressBook {
repeated Person person = 1;
}
我一直在尝试这些和其他变体:
test::Person::PhoneNumber::descriptor()->options().GetExtension(test::abbr);
test::Person::PhoneNumber::descriptor().GetExtension(test::abbr);
test::Person::descriptor()->options().GetExtension(test::abbr);
const google::protobuf::Descriptor* message = test::Person::PhoneNumber::descriptor();
const google::protobuf::Descriptor* desc = phone2.descriptor();
desc->options().GetExtension(test::abbr); //D.N.E.
google::protobuf::MessageOptions opts = message->options();
opts.GetExtension(test::abbr);
const google::protobuf::EnumDescriptor* enm = message->FindEnumTypeByName("PhoneNumber"); // null, not found
google::protobuf::EnumValueOptions opts2 = enm->value(1)->options();
opts2.GetExtension(test::abbr);
test::Person::PhoneNumber::descriptor()->options().GetExtension(test::abbr);
以上都不起作用 - 方法根本不存在,或者没有对该函数签名的匹配调用。我已经阅读了几个小时的文档无济于事。我知道这应该是可能的,但唯一的例子是编写 .proto 文件,而不是从它们中读取——我该怎么做?一个简短的例子将不胜感激。提前致谢。