诸暨麻将添加redis
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

219 Zeilen
8.2 KiB

  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. syntax = "proto3";
  31. option cc_enable_arenas = true;
  32. import "google/protobuf/unittest_import.proto";
  33. package proto3_arena_unittest;
  34. // This proto includes every type of field in both singular and repeated
  35. // forms.
  36. message TestAllTypes {
  37. message NestedMessage {
  38. // The field name "b" fails to compile in proto1 because it conflicts with
  39. // a local variable named "b" in one of the generated methods. Doh.
  40. // This file needs to compile in proto1 to test backwards-compatibility.
  41. int32 bb = 1;
  42. }
  43. enum NestedEnum {
  44. ZERO = 0;
  45. FOO = 1;
  46. BAR = 2;
  47. BAZ = 3;
  48. NEG = -1; // Intentionally negative.
  49. }
  50. // Singular
  51. int32 optional_int32 = 1;
  52. int64 optional_int64 = 2;
  53. uint32 optional_uint32 = 3;
  54. uint64 optional_uint64 = 4;
  55. sint32 optional_sint32 = 5;
  56. sint64 optional_sint64 = 6;
  57. fixed32 optional_fixed32 = 7;
  58. fixed64 optional_fixed64 = 8;
  59. sfixed32 optional_sfixed32 = 9;
  60. sfixed64 optional_sfixed64 = 10;
  61. float optional_float = 11;
  62. double optional_double = 12;
  63. bool optional_bool = 13;
  64. string optional_string = 14;
  65. bytes optional_bytes = 15;
  66. // Groups are not allowed in proto3.
  67. // optional group OptionalGroup = 16 {
  68. // optional int32 a = 17;
  69. // }
  70. NestedMessage optional_nested_message = 18;
  71. ForeignMessage optional_foreign_message = 19;
  72. protobuf_unittest_import.ImportMessage optional_import_message = 20;
  73. NestedEnum optional_nested_enum = 21;
  74. ForeignEnum optional_foreign_enum = 22;
  75. // Omitted (compared to unittest.proto) because proto2 enums are not allowed
  76. // inside proto2 messages.
  77. //
  78. // optional protobuf_unittest_import.ImportEnum optional_import_enum = 23;
  79. string optional_string_piece = 24 [ctype=STRING_PIECE];
  80. string optional_cord = 25 [ctype=CORD];
  81. // Defined in unittest_import_public.proto
  82. protobuf_unittest_import.PublicImportMessage
  83. optional_public_import_message = 26;
  84. NestedMessage optional_lazy_message = 27 [lazy=true];
  85. protobuf_unittest_import.ImportMessage optional_lazy_import_message = 115
  86. [lazy = true];
  87. // Repeated
  88. repeated int32 repeated_int32 = 31;
  89. repeated int64 repeated_int64 = 32;
  90. repeated uint32 repeated_uint32 = 33;
  91. repeated uint64 repeated_uint64 = 34;
  92. repeated sint32 repeated_sint32 = 35;
  93. repeated sint64 repeated_sint64 = 36;
  94. repeated fixed32 repeated_fixed32 = 37;
  95. repeated fixed64 repeated_fixed64 = 38;
  96. repeated sfixed32 repeated_sfixed32 = 39;
  97. repeated sfixed64 repeated_sfixed64 = 40;
  98. repeated float repeated_float = 41;
  99. repeated double repeated_double = 42;
  100. repeated bool repeated_bool = 43;
  101. repeated string repeated_string = 44;
  102. repeated bytes repeated_bytes = 45;
  103. // Groups are not allowed in proto3.
  104. // repeated group RepeatedGroup = 46 {
  105. // optional int32 a = 47;
  106. // }
  107. repeated NestedMessage repeated_nested_message = 48;
  108. repeated ForeignMessage repeated_foreign_message = 49;
  109. repeated protobuf_unittest_import.ImportMessage repeated_import_message = 50;
  110. repeated NestedEnum repeated_nested_enum = 51;
  111. repeated ForeignEnum repeated_foreign_enum = 52;
  112. // Omitted (compared to unittest.proto) because proto2 enums are not allowed
  113. // inside proto2 messages.
  114. //
  115. // repeated protobuf_unittest_import.ImportEnum repeated_import_enum = 53;
  116. repeated string repeated_string_piece = 54 [ctype=STRING_PIECE];
  117. repeated string repeated_cord = 55 [ctype=CORD];
  118. repeated NestedMessage repeated_lazy_message = 57 [lazy=true];
  119. oneof oneof_field {
  120. uint32 oneof_uint32 = 111;
  121. NestedMessage oneof_nested_message = 112;
  122. string oneof_string = 113;
  123. bytes oneof_bytes = 114;
  124. }
  125. }
  126. // Test messages for packed fields
  127. message TestPackedTypes {
  128. repeated int32 packed_int32 = 90 [packed = true];
  129. repeated int64 packed_int64 = 91 [packed = true];
  130. repeated uint32 packed_uint32 = 92 [packed = true];
  131. repeated uint64 packed_uint64 = 93 [packed = true];
  132. repeated sint32 packed_sint32 = 94 [packed = true];
  133. repeated sint64 packed_sint64 = 95 [packed = true];
  134. repeated fixed32 packed_fixed32 = 96 [packed = true];
  135. repeated fixed64 packed_fixed64 = 97 [packed = true];
  136. repeated sfixed32 packed_sfixed32 = 98 [packed = true];
  137. repeated sfixed64 packed_sfixed64 = 99 [packed = true];
  138. repeated float packed_float = 100 [packed = true];
  139. repeated double packed_double = 101 [packed = true];
  140. repeated bool packed_bool = 102 [packed = true];
  141. repeated ForeignEnum packed_enum = 103 [packed = true];
  142. }
  143. // Explicitly set packed to false
  144. message TestUnpackedTypes {
  145. repeated int32 repeated_int32 = 1 [packed = false];
  146. repeated int64 repeated_int64 = 2 [packed = false];
  147. repeated uint32 repeated_uint32 = 3 [packed = false];
  148. repeated uint64 repeated_uint64 = 4 [packed = false];
  149. repeated sint32 repeated_sint32 = 5 [packed = false];
  150. repeated sint64 repeated_sint64 = 6 [packed = false];
  151. repeated fixed32 repeated_fixed32 = 7 [packed = false];
  152. repeated fixed64 repeated_fixed64 = 8 [packed = false];
  153. repeated sfixed32 repeated_sfixed32 = 9 [packed = false];
  154. repeated sfixed64 repeated_sfixed64 = 10 [packed = false];
  155. repeated float repeated_float = 11 [packed = false];
  156. repeated double repeated_double = 12 [packed = false];
  157. repeated bool repeated_bool = 13 [packed = false];
  158. repeated TestAllTypes.NestedEnum repeated_nested_enum = 14 [packed = false];
  159. }
  160. // This proto includes a recusively nested message.
  161. message NestedTestAllTypes {
  162. NestedTestAllTypes child = 1;
  163. TestAllTypes payload = 2;
  164. repeated NestedTestAllTypes repeated_child = 3;
  165. }
  166. // Define these after TestAllTypes to make sure the compiler can handle
  167. // that.
  168. message ForeignMessage {
  169. int32 c = 1;
  170. }
  171. enum ForeignEnum {
  172. FOREIGN_ZERO = 0;
  173. FOREIGN_FOO = 4;
  174. FOREIGN_BAR = 5;
  175. FOREIGN_BAZ = 6;
  176. }
  177. // TestEmptyMessage is used to test behavior of unknown fields.
  178. message TestEmptyMessage {
  179. }
  180. // Needed for a Python test.
  181. message TestPickleNestedMessage {
  182. message NestedMessage {
  183. int32 bb = 1;
  184. message NestedNestedMessage {
  185. int32 cc = 1;
  186. }
  187. }
  188. }