google-protobuf 3.22.2 → 4.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/ext/google/protobuf_c/Rakefile +3 -0
  3. data/ext/google/protobuf_c/convert.c +60 -86
  4. data/ext/google/protobuf_c/convert.h +3 -28
  5. data/ext/google/protobuf_c/defs.c +692 -72
  6. data/ext/google/protobuf_c/defs.h +3 -28
  7. data/ext/google/protobuf_c/extconf.rb +14 -1
  8. data/ext/google/protobuf_c/glue.c +135 -0
  9. data/ext/google/protobuf_c/map.c +89 -45
  10. data/ext/google/protobuf_c/map.h +12 -30
  11. data/ext/google/protobuf_c/message.c +169 -169
  12. data/ext/google/protobuf_c/message.h +11 -33
  13. data/ext/google/protobuf_c/protobuf.c +65 -188
  14. data/ext/google/protobuf_c/protobuf.h +27 -39
  15. data/ext/google/protobuf_c/repeated_field.c +72 -38
  16. data/ext/google/protobuf_c/repeated_field.h +11 -29
  17. data/ext/google/protobuf_c/ruby-upb.c +15064 -11220
  18. data/ext/google/protobuf_c/ruby-upb.h +10643 -5403
  19. data/ext/google/protobuf_c/shared_convert.c +69 -0
  20. data/ext/google/protobuf_c/shared_convert.h +26 -0
  21. data/ext/google/protobuf_c/shared_message.c +37 -0
  22. data/ext/google/protobuf_c/shared_message.h +21 -0
  23. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +207 -0
  24. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +9 -8
  25. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_neon.inc +117 -0
  26. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_sse.inc +272 -0
  27. data/ext/google/protobuf_c/wrap_memcpy.c +3 -26
  28. data/lib/google/protobuf/any_pb.rb +6 -8
  29. data/lib/google/protobuf/api_pb.rb +6 -26
  30. data/lib/google/protobuf/descriptor_pb.rb +21 -252
  31. data/lib/google/protobuf/duration_pb.rb +6 -8
  32. data/lib/google/protobuf/empty_pb.rb +6 -6
  33. data/lib/google/protobuf/ffi/descriptor.rb +175 -0
  34. data/lib/google/protobuf/ffi/descriptor_pool.rb +77 -0
  35. data/lib/google/protobuf/ffi/enum_descriptor.rb +183 -0
  36. data/lib/google/protobuf/ffi/ffi.rb +214 -0
  37. data/lib/google/protobuf/ffi/field_descriptor.rb +340 -0
  38. data/lib/google/protobuf/ffi/file_descriptor.rb +59 -0
  39. data/lib/google/protobuf/ffi/internal/arena.rb +60 -0
  40. data/lib/google/protobuf/ffi/internal/convert.rb +292 -0
  41. data/lib/google/protobuf/ffi/internal/pointer_helper.rb +35 -0
  42. data/lib/google/protobuf/ffi/internal/type_safety.rb +25 -0
  43. data/lib/google/protobuf/ffi/map.rb +433 -0
  44. data/lib/google/protobuf/ffi/message.rb +783 -0
  45. data/lib/google/protobuf/ffi/method_descriptor.rb +124 -0
  46. data/lib/google/protobuf/ffi/object_cache.rb +30 -0
  47. data/lib/google/protobuf/ffi/oneof_descriptor.rb +107 -0
  48. data/lib/google/protobuf/ffi/repeated_field.rb +411 -0
  49. data/lib/google/protobuf/ffi/service_descriptor.rb +117 -0
  50. data/lib/google/protobuf/field_mask_pb.rb +6 -7
  51. data/lib/google/protobuf/internal/object_cache.rb +99 -0
  52. data/lib/google/protobuf/message_exts.rb +3 -26
  53. data/lib/google/protobuf/plugin_pb.rb +6 -31
  54. data/lib/google/protobuf/repeated_field.rb +7 -31
  55. data/lib/google/protobuf/source_context_pb.rb +6 -7
  56. data/lib/google/protobuf/struct_pb.rb +6 -23
  57. data/lib/google/protobuf/timestamp_pb.rb +6 -8
  58. data/lib/google/protobuf/type_pb.rb +6 -71
  59. data/lib/google/protobuf/well_known_types.rb +5 -34
  60. data/lib/google/protobuf/wrappers_pb.rb +6 -31
  61. data/lib/google/protobuf.rb +27 -45
  62. data/lib/google/protobuf_ffi.rb +52 -0
  63. data/lib/google/protobuf_native.rb +19 -0
  64. data/lib/google/tasks/ffi.rake +100 -0
  65. metadata +92 -9
  66. data/ext/google/protobuf_c/third_party/utf8_range/naive.c +0 -92
  67. data/ext/google/protobuf_c/third_party/utf8_range/range2-neon.c +0 -157
  68. data/ext/google/protobuf_c/third_party/utf8_range/range2-sse.c +0 -170
  69. data/lib/google/protobuf/descriptor_dsl.rb +0 -465
@@ -0,0 +1,272 @@
1
+ #include <emmintrin.h>
2
+ #include <smmintrin.h>
3
+ #include <tmmintrin.h>
4
+
5
+ static FORCE_INLINE_ATTR inline size_t utf8_range_ValidateUTF8Simd(
6
+ const char* data_original, const char* data, const char* end,
7
+ int return_position) {
8
+ /* This code checks that utf-8 ranges are structurally valid 16 bytes at once
9
+ * using superscalar instructions.
10
+ * The mapping between ranges of codepoint and their corresponding utf-8
11
+ * sequences is below.
12
+ */
13
+
14
+ /*
15
+ * U+0000...U+007F 00...7F
16
+ * U+0080...U+07FF C2...DF 80...BF
17
+ * U+0800...U+0FFF E0 A0...BF 80...BF
18
+ * U+1000...U+CFFF E1...EC 80...BF 80...BF
19
+ * U+D000...U+D7FF ED 80...9F 80...BF
20
+ * U+E000...U+FFFF EE...EF 80...BF 80...BF
21
+ * U+10000...U+3FFFF F0 90...BF 80...BF 80...BF
22
+ * U+40000...U+FFFFF F1...F3 80...BF 80...BF 80...BF
23
+ * U+100000...U+10FFFF F4 80...8F 80...BF 80...BF
24
+ */
25
+
26
+ /* First we compute the type for each byte, as given by the table below.
27
+ * This type will be used as an index later on.
28
+ */
29
+
30
+ /*
31
+ * Index Min Max Byte Type
32
+ * 0 00 7F Single byte sequence
33
+ * 1,2,3 80 BF Second, third and fourth byte for many of the sequences.
34
+ * 4 A0 BF Second byte after E0
35
+ * 5 80 9F Second byte after ED
36
+ * 6 90 BF Second byte after F0
37
+ * 7 80 8F Second byte after F4
38
+ * 8 C2 F4 First non ASCII byte
39
+ * 9..15 7F 80 Invalid byte
40
+ */
41
+
42
+ /* After the first step we compute the index for all bytes, then we permute
43
+ the bytes according to their indices to check the ranges from the range
44
+ table.
45
+ * The range for a given type can be found in the range_min_table and
46
+ range_max_table, the range for type/index X is in range_min_table[X] ...
47
+ range_max_table[X].
48
+ */
49
+
50
+ /* Algorithm:
51
+ * Put index zero to all bytes.
52
+ * Find all non ASCII characters, give them index 8.
53
+ * For each tail byte in a codepoint sequence, give it an index corresponding
54
+ to the 1 based index from the end.
55
+ * If the first byte of the codepoint is in the [C0...DF] range, we write
56
+ index 1 in the following byte.
57
+ * If the first byte of the codepoint is in the range [E0...EF], we write
58
+ indices 2 and 1 in the next two bytes.
59
+ * If the first byte of the codepoint is in the range [F0...FF] we write
60
+ indices 3,2,1 into the next three bytes.
61
+ * For finding the number of bytes we need to look at high nibbles (4 bits)
62
+ and do the lookup from the table, it can be done with shift by 4 + shuffle
63
+ instructions. We call it `first_len`.
64
+ * Then we shift first_len by 8 bits to get the indices of the 2nd bytes.
65
+ * Saturating sub 1 and shift by 8 bits to get the indices of the 3rd bytes.
66
+ * Again to get the indices of the 4th bytes.
67
+ * Take OR of all that 4 values and check within range.
68
+ */
69
+ /* For example:
70
+ * input C3 80 68 E2 80 20 A6 F0 A0 80 AC 20 F0 93 80 80
71
+ * first_len 1 0 0 2 0 0 0 3 0 0 0 0 3 0 0 0
72
+ * 1st byte 8 0 0 8 0 0 0 8 0 0 0 0 8 0 0 0
73
+ * 2nd byte 0 1 0 0 2 0 0 0 3 0 0 0 0 3 0 0 // Shift + sub
74
+ * 3rd byte 0 0 0 0 0 1 0 0 0 2 0 0 0 0 2 0 // Shift + sub
75
+ * 4th byte 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 // Shift + sub
76
+ * Index 8 1 0 8 2 1 0 8 3 2 1 0 8 3 2 1 // OR of results
77
+ */
78
+
79
+ /* Checking for errors:
80
+ * Error checking is done by looking up the high nibble (4 bits) of each byte
81
+ against an error checking table.
82
+ * Because the lookup value for the second byte depends of the value of the
83
+ first byte in codepoint, we use saturated operations to adjust the index.
84
+ * Specifically we need to add 2 for E0, 3 for ED, 3 for F0 and 4 for F4 to
85
+ match the correct index.
86
+ * If we subtract from all bytes EF then EO -> 241, ED -> 254, F0 -> 1,
87
+ F4 -> 5
88
+ * Do saturating sub 240, then E0 -> 1, ED -> 14 and we can do lookup to
89
+ match the adjustment
90
+ * Add saturating 112, then F0 -> 113, F4 -> 117, all that were > 16 will
91
+ be more 128 and lookup in ef_fe_table will return 0 but for F0
92
+ and F4 it will be 4 and 5 accordingly
93
+ */
94
+ /*
95
+ * Then just check the appropriate ranges with greater/smaller equal
96
+ instructions. Check tail with a naive algorithm.
97
+ * To save from previous 16 byte checks we just align previous_first_len to
98
+ get correct continuations of the codepoints.
99
+ */
100
+
101
+ /*
102
+ * Map high nibble of "First Byte" to legal character length minus 1
103
+ * 0x00 ~ 0xBF --> 0
104
+ * 0xC0 ~ 0xDF --> 1
105
+ * 0xE0 ~ 0xEF --> 2
106
+ * 0xF0 ~ 0xFF --> 3
107
+ */
108
+ const __m128i first_len_table =
109
+ _mm_setr_epi8(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3);
110
+
111
+ /* Map "First Byte" to 8-th item of range table (0xC2 ~ 0xF4) */
112
+ const __m128i first_range_table =
113
+ _mm_setr_epi8(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8);
114
+
115
+ /*
116
+ * Range table, map range index to min and max values
117
+ */
118
+ const __m128i range_min_table =
119
+ _mm_setr_epi8(0x00, 0x80, 0x80, 0x80, 0xA0, 0x80, 0x90, 0x80, 0xC2, 0x7F,
120
+ 0x7F, 0x7F, 0x7F, 0x7F, 0x7F, 0x7F);
121
+
122
+ const __m128i range_max_table =
123
+ _mm_setr_epi8(0x7F, 0xBF, 0xBF, 0xBF, 0xBF, 0x9F, 0xBF, 0x8F, 0xF4, 0x80,
124
+ 0x80, 0x80, 0x80, 0x80, 0x80, 0x80);
125
+
126
+ /*
127
+ * Tables for fast handling of four special First Bytes(E0,ED,F0,F4), after
128
+ * which the Second Byte are not 80~BF. It contains "range index adjustment".
129
+ * +------------+---------------+------------------+----------------+
130
+ * | First Byte | original range| range adjustment | adjusted range |
131
+ * +------------+---------------+------------------+----------------+
132
+ * | E0 | 2 | 2 | 4 |
133
+ * +------------+---------------+------------------+----------------+
134
+ * | ED | 2 | 3 | 5 |
135
+ * +------------+---------------+------------------+----------------+
136
+ * | F0 | 3 | 3 | 6 |
137
+ * +------------+---------------+------------------+----------------+
138
+ * | F4 | 4 | 4 | 8 |
139
+ * +------------+---------------+------------------+----------------+
140
+ */
141
+
142
+ /* df_ee_table[1] -> E0, df_ee_table[14] -> ED as ED - E0 = 13 */
143
+ // The values represent the adjustment in the Range Index table for a correct
144
+ // index.
145
+ const __m128i df_ee_table =
146
+ _mm_setr_epi8(0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0);
147
+
148
+ /* ef_fe_table[1] -> F0, ef_fe_table[5] -> F4, F4 - F0 = 4 */
149
+ // The values represent the adjustment in the Range Index table for a correct
150
+ // index.
151
+ const __m128i ef_fe_table =
152
+ _mm_setr_epi8(0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
153
+
154
+ __m128i prev_input = _mm_set1_epi8(0);
155
+ __m128i prev_first_len = _mm_set1_epi8(0);
156
+ __m128i error = _mm_set1_epi8(0);
157
+
158
+ while (end - data >= 16) {
159
+ const __m128i input = _mm_loadu_si128((const __m128i*)(data));
160
+
161
+ /* high_nibbles = input >> 4 */
162
+ const __m128i high_nibbles =
163
+ _mm_and_si128(_mm_srli_epi16(input, 4), _mm_set1_epi8(0x0F));
164
+
165
+ /* first_len = legal character length minus 1 */
166
+ /* 0 for 00~7F, 1 for C0~DF, 2 for E0~EF, 3 for F0~FF */
167
+ /* first_len = first_len_table[high_nibbles] */
168
+ __m128i first_len = _mm_shuffle_epi8(first_len_table, high_nibbles);
169
+
170
+ /* First Byte: set range index to 8 for bytes within 0xC0 ~ 0xFF */
171
+ /* range = first_range_table[high_nibbles] */
172
+ __m128i range = _mm_shuffle_epi8(first_range_table, high_nibbles);
173
+
174
+ /* Second Byte: set range index to first_len */
175
+ /* 0 for 00~7F, 1 for C0~DF, 2 for E0~EF, 3 for F0~FF */
176
+ /* range |= (first_len, prev_first_len) << 1 byte */
177
+ range = _mm_or_si128(range, _mm_alignr_epi8(first_len, prev_first_len, 15));
178
+
179
+ /* Third Byte: set range index to saturate_sub(first_len, 1) */
180
+ /* 0 for 00~7F, 0 for C0~DF, 1 for E0~EF, 2 for F0~FF */
181
+ __m128i tmp1;
182
+ __m128i tmp2;
183
+ /* tmp1 = saturate_sub(first_len, 1) */
184
+ tmp1 = _mm_subs_epu8(first_len, _mm_set1_epi8(1));
185
+ /* tmp2 = saturate_sub(prev_first_len, 1) */
186
+ tmp2 = _mm_subs_epu8(prev_first_len, _mm_set1_epi8(1));
187
+ /* range |= (tmp1, tmp2) << 2 bytes */
188
+ range = _mm_or_si128(range, _mm_alignr_epi8(tmp1, tmp2, 14));
189
+
190
+ /* Fourth Byte: set range index to saturate_sub(first_len, 2) */
191
+ /* 0 for 00~7F, 0 for C0~DF, 0 for E0~EF, 1 for F0~FF */
192
+ /* tmp1 = saturate_sub(first_len, 2) */
193
+ tmp1 = _mm_subs_epu8(first_len, _mm_set1_epi8(2));
194
+ /* tmp2 = saturate_sub(prev_first_len, 2) */
195
+ tmp2 = _mm_subs_epu8(prev_first_len, _mm_set1_epi8(2));
196
+ /* range |= (tmp1, tmp2) << 3 bytes */
197
+ range = _mm_or_si128(range, _mm_alignr_epi8(tmp1, tmp2, 13));
198
+
199
+ /*
200
+ * Now we have below range indices calculated
201
+ * Correct cases:
202
+ * - 8 for C0~FF
203
+ * - 3 for 1st byte after F0~FF
204
+ * - 2 for 1st byte after E0~EF or 2nd byte after F0~FF
205
+ * - 1 for 1st byte after C0~DF or 2nd byte after E0~EF or
206
+ * 3rd byte after F0~FF
207
+ * - 0 for others
208
+ * Error cases:
209
+ * >9 for non ascii First Byte overlapping
210
+ * E.g., F1 80 C2 90 --> 8 3 10 2, where 10 indicates error
211
+ */
212
+
213
+ /* Adjust Second Byte range for special First Bytes(E0,ED,F0,F4) */
214
+ /* Overlaps lead to index 9~15, which are illegal in range table */
215
+ __m128i shift1;
216
+ __m128i pos;
217
+ __m128i range2;
218
+ /* shift1 = (input, prev_input) << 1 byte */
219
+ shift1 = _mm_alignr_epi8(input, prev_input, 15);
220
+ pos = _mm_sub_epi8(shift1, _mm_set1_epi8(0xEF));
221
+ /*
222
+ * shift1: | EF F0 ... FE | FF 00 ... ... DE | DF E0 ... EE |
223
+ * pos: | 0 1 15 | 16 17 239| 240 241 255|
224
+ * pos-240: | 0 0 0 | 0 0 0 | 0 1 15 |
225
+ * pos+112: | 112 113 127| >= 128 | >= 128 |
226
+ */
227
+ tmp1 = _mm_subs_epu8(pos, _mm_set1_epi8(-16));
228
+ range2 = _mm_shuffle_epi8(df_ee_table, tmp1);
229
+ tmp2 = _mm_adds_epu8(pos, _mm_set1_epi8(112));
230
+ range2 = _mm_add_epi8(range2, _mm_shuffle_epi8(ef_fe_table, tmp2));
231
+
232
+ range = _mm_add_epi8(range, range2);
233
+
234
+ /* Load min and max values per calculated range index */
235
+ __m128i min_range = _mm_shuffle_epi8(range_min_table, range);
236
+ __m128i max_range = _mm_shuffle_epi8(range_max_table, range);
237
+
238
+ /* Check value range */
239
+ if (return_position) {
240
+ error = _mm_cmplt_epi8(input, min_range);
241
+ error = _mm_or_si128(error, _mm_cmpgt_epi8(input, max_range));
242
+ /* 5% performance drop from this conditional branch */
243
+ if (!_mm_testz_si128(error, error)) {
244
+ break;
245
+ }
246
+ } else {
247
+ error = _mm_or_si128(error, _mm_cmplt_epi8(input, min_range));
248
+ error = _mm_or_si128(error, _mm_cmpgt_epi8(input, max_range));
249
+ }
250
+
251
+ prev_input = input;
252
+ prev_first_len = first_len;
253
+
254
+ data += 16;
255
+ }
256
+ /* If we got to the end, we don't need to skip any bytes backwards */
257
+ if (return_position && data == data_original) {
258
+ return utf8_range_ValidateUTF8Naive(data, end, return_position);
259
+ }
260
+ /* Find previous codepoint (not 80~BF) */
261
+ data -= utf8_range_CodepointSkipBackwards(_mm_extract_epi32(prev_input, 3));
262
+ if (return_position) {
263
+ return (data - data_original) +
264
+ utf8_range_ValidateUTF8Naive(data, end, return_position);
265
+ }
266
+ /* Test if there was any error */
267
+ if (!_mm_testz_si128(error, error)) {
268
+ return 0;
269
+ }
270
+ /* Check the tail */
271
+ return utf8_range_ValidateUTF8Naive(data, end, return_position);
272
+ }
@@ -1,32 +1,9 @@
1
1
  // Protocol Buffers - Google's data interchange format
2
2
  // Copyright 2017 Google Inc. All rights reserved.
3
- // https://developers.google.com/protocol-buffers/
4
3
  //
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.
4
+ // Use of this source code is governed by a BSD-style
5
+ // license that can be found in the LICENSE file or at
6
+ // https://developers.google.com/open-source/licenses/bsd
30
7
 
31
8
  #include <string.h>
32
9
 
@@ -1,16 +1,14 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/protobuf/any.proto
3
4
 
4
5
  require 'google/protobuf'
5
6
 
6
- Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_file("google/protobuf/any.proto", :syntax => :proto3) do
8
- add_message "google.protobuf.Any" do
9
- optional :type_url, :string, 1
10
- optional :value, :bytes, 2
11
- end
12
- end
13
- end
7
+
8
+ descriptor_data = "\n\x19google/protobuf/any.proto\x12\x0fgoogle.protobuf\"&\n\x03\x41ny\x12\x10\n\x08type_url\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c\x42v\n\x13\x63om.google.protobufB\x08\x41nyProtoP\x01Z,google.golang.org/protobuf/types/known/anypb\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
14
12
 
15
13
  module Google
16
14
  module Protobuf
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/protobuf/api.proto
3
4
 
@@ -6,32 +7,11 @@ require 'google/protobuf'
6
7
  require 'google/protobuf/source_context_pb'
7
8
  require 'google/protobuf/type_pb'
8
9
 
9
- Google::Protobuf::DescriptorPool.generated_pool.build do
10
- add_file("google/protobuf/api.proto", :syntax => :proto3) do
11
- add_message "google.protobuf.Api" do
12
- optional :name, :string, 1
13
- repeated :methods, :message, 2, "google.protobuf.Method"
14
- repeated :options, :message, 3, "google.protobuf.Option"
15
- optional :version, :string, 4
16
- optional :source_context, :message, 5, "google.protobuf.SourceContext"
17
- repeated :mixins, :message, 6, "google.protobuf.Mixin"
18
- optional :syntax, :enum, 7, "google.protobuf.Syntax"
19
- end
20
- add_message "google.protobuf.Method" do
21
- optional :name, :string, 1
22
- optional :request_type_url, :string, 2
23
- optional :request_streaming, :bool, 3
24
- optional :response_type_url, :string, 4
25
- optional :response_streaming, :bool, 5
26
- repeated :options, :message, 6, "google.protobuf.Option"
27
- optional :syntax, :enum, 7, "google.protobuf.Syntax"
28
- end
29
- add_message "google.protobuf.Mixin" do
30
- optional :name, :string, 1
31
- optional :root, :string, 2
32
- end
33
- end
34
- end
10
+
11
+ descriptor_data = "\n\x19google/protobuf/api.proto\x12\x0fgoogle.protobuf\x1a$google/protobuf/source_context.proto\x1a\x1agoogle/protobuf/type.proto\"\x81\x02\n\x03\x41pi\x12\x0c\n\x04name\x18\x01 \x01(\t\x12(\n\x07methods\x18\x02 \x03(\x0b\x32\x17.google.protobuf.Method\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x17.google.protobuf.Option\x12\x0f\n\x07version\x18\x04 \x01(\t\x12\x36\n\x0esource_context\x18\x05 \x01(\x0b\x32\x1e.google.protobuf.SourceContext\x12&\n\x06mixins\x18\x06 \x03(\x0b\x32\x16.google.protobuf.Mixin\x12\'\n\x06syntax\x18\x07 \x01(\x0e\x32\x17.google.protobuf.Syntax\"\xd5\x01\n\x06Method\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x10request_type_url\x18\x02 \x01(\t\x12\x19\n\x11request_streaming\x18\x03 \x01(\x08\x12\x19\n\x11response_type_url\x18\x04 \x01(\t\x12\x1a\n\x12response_streaming\x18\x05 \x01(\x08\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x17.google.protobuf.Option\x12\'\n\x06syntax\x18\x07 \x01(\x0e\x32\x17.google.protobuf.Syntax\"#\n\x05Mixin\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04root\x18\x02 \x01(\tBv\n\x13\x63om.google.protobufB\x08\x41piProtoP\x01Z,google.golang.org/protobuf/types/known/apipb\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesb\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
35
15
 
36
16
  module Google
37
17
  module Protobuf