123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533 |
- package google.protobuf;
- option java_package = "com.google.protobuf";
- option java_outer_classname = "DescriptorProtos";
- option optimize_for = SPEED;
- message FileDescriptorSet {
- repeated FileDescriptorProto file = 1;
- }
- message FileDescriptorProto {
- optional string name = 1;
- optional string package = 2;
-
- repeated string dependency = 3;
-
- repeated DescriptorProto message_type = 4;
- repeated EnumDescriptorProto enum_type = 5;
- repeated ServiceDescriptorProto service = 6;
- repeated FieldDescriptorProto extension = 7;
- optional FileOptions options = 8;
-
-
-
-
- optional SourceCodeInfo source_code_info = 9;
- }
- message DescriptorProto {
- optional string name = 1;
- repeated FieldDescriptorProto field = 2;
- repeated FieldDescriptorProto extension = 6;
- repeated DescriptorProto nested_type = 3;
- repeated EnumDescriptorProto enum_type = 4;
- message ExtensionRange {
- optional int32 start = 1;
- optional int32 end = 2;
- }
- repeated ExtensionRange extension_range = 5;
- optional MessageOptions options = 7;
- }
- message FieldDescriptorProto {
- enum Type {
-
-
- TYPE_DOUBLE = 1;
- TYPE_FLOAT = 2;
- TYPE_INT64 = 3;
-
-
- TYPE_UINT64 = 4;
- TYPE_INT32 = 5;
-
-
- TYPE_FIXED64 = 6;
- TYPE_FIXED32 = 7;
- TYPE_BOOL = 8;
- TYPE_STRING = 9;
- TYPE_GROUP = 10;
- TYPE_MESSAGE = 11;
-
- TYPE_BYTES = 12;
- TYPE_UINT32 = 13;
- TYPE_ENUM = 14;
- TYPE_SFIXED32 = 15;
- TYPE_SFIXED64 = 16;
- TYPE_SINT32 = 17;
- TYPE_SINT64 = 18;
- };
- enum Label {
-
- LABEL_OPTIONAL = 1;
- LABEL_REQUIRED = 2;
- LABEL_REPEATED = 3;
-
- };
- optional string name = 1;
- optional int32 number = 3;
- optional Label label = 4;
-
-
- optional Type type = 5;
-
-
-
-
-
- optional string type_name = 6;
-
-
- optional string extendee = 2;
-
-
-
-
-
- optional string default_value = 7;
- optional FieldOptions options = 8;
- }
- message EnumDescriptorProto {
- optional string name = 1;
- repeated EnumValueDescriptorProto value = 2;
- optional EnumOptions options = 3;
- }
- message EnumValueDescriptorProto {
- optional string name = 1;
- optional int32 number = 2;
- optional EnumValueOptions options = 3;
- }
- message ServiceDescriptorProto {
- optional string name = 1;
- repeated MethodDescriptorProto method = 2;
- optional ServiceOptions options = 3;
- }
- message MethodDescriptorProto {
- optional string name = 1;
-
-
- optional string input_type = 2;
- optional string output_type = 3;
- optional MethodOptions options = 4;
- }
- message FileOptions {
-
-
-
-
- optional string java_package = 1;
-
-
-
-
-
- optional string java_outer_classname = 8;
-
-
-
-
-
-
- optional bool java_multiple_files = 10 [default=false];
-
-
-
-
- optional bool java_generate_equals_and_hash = 20 [default=false];
-
- enum OptimizeMode {
- SPEED = 1;
-
- CODE_SIZE = 2;
- LITE_RUNTIME = 3;
- }
- optional OptimizeMode optimize_for = 9 [default=SPEED];
-
-
-
-
-
-
-
-
-
-
- optional bool cc_generic_services = 16 [default=false];
- optional bool java_generic_services = 17 [default=false];
- optional bool py_generic_services = 18 [default=false];
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message MessageOptions {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- optional bool message_set_wire_format = 1 [default=false];
-
-
-
- optional bool no_standard_descriptor_accessor = 2 [default=false];
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message FieldOptions {
-
-
-
-
- optional CType ctype = 1 [default = STRING];
- enum CType {
-
- STRING = 0;
- CORD = 1;
- STRING_PIECE = 2;
- }
-
-
-
-
- optional bool packed = 2;
-
-
-
-
- optional bool deprecated = 3 [default=false];
-
-
-
-
-
-
-
-
-
-
-
-
- optional string experimental_map_key = 9;
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message EnumOptions {
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message EnumValueOptions {
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message ServiceOptions {
-
-
-
-
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message MethodOptions {
-
-
-
-
-
- repeated UninterpretedOption uninterpreted_option = 999;
-
- extensions 1000 to max;
- }
- message UninterpretedOption {
-
-
-
-
-
- message NamePart {
- required string name_part = 1;
- required bool is_extension = 2;
- }
- repeated NamePart name = 2;
-
-
- optional string identifier_value = 3;
- optional uint64 positive_int_value = 4;
- optional int64 negative_int_value = 5;
- optional double double_value = 6;
- optional bytes string_value = 7;
- optional string aggregate_value = 8;
- }
- message SourceCodeInfo {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated Location location = 1;
- message Location {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated int32 path = 1 [packed=true];
-
-
-
-
-
- repeated int32 span = 2 [packed=true];
-
-
- }
- }
|