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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6a1f202e9093dde16ace67f973c582b548e089d332cf415612b1b7eeaaa1d87
4
- data.tar.gz: 9671a4b08f7b201f3bec8dd06f3754f291486b9a6b9eeb3ab5cbf04719ba02d5
3
+ metadata.gz: 3da1fe7a0b07a7333405dc10a634bede28ecd81b754e9c82f47d4d7d58c13400
4
+ data.tar.gz: d3795db46eb0c181a1aaceb7c4a8b7f8b7ae1fc333180bfb54ece1fdda9cf0c6
5
5
  SHA512:
6
- metadata.gz: f7cf1ed805bfe5e3a345c1e4300a241a327984cc11d392ff29ab4a6b6becd8c8447408af1944af10073efe0ee1dd86e429046e7f751e4e7e1f3c54ba94b2ed56
7
- data.tar.gz: 58dbbb3b8d179283b64f627bd9ff32edd04a44829a4171fa059ad66cc11a9bcb2371ba40f74d1eb7b9b1e8467c33c23860280e0347c47a88d00975c3d03f12dd
6
+ metadata.gz: e25a6404869843044042d492b5612c2bb6bbf8d11cee513de10f5c2d0d41ed5869f965b68971f6727624965cb90afcf1c8433998bce5b9ba21a379815b46be63
7
+ data.tar.gz: 18f281a695a40fa48cc5d3243d8691e12c53596199887e7f2bc026f3e64ad7a36ca4fc1e2a6158f32519307fd0bfaac2cd14d63b3c433d42daeb0586859a84fe
@@ -0,0 +1,3 @@
1
+ import '../../../lib/google/tasks/ffi.rake'
2
+
3
+ task default: ['ffi-protobuf:default']
@@ -1,32 +1,9 @@
1
1
  // Protocol Buffers - Google's data interchange format
2
2
  // Copyright 2008 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
  // -----------------------------------------------------------------------------
32
9
  // Ruby <-> upb data conversion functions.
@@ -41,6 +18,7 @@
41
18
 
42
19
  #include "message.h"
43
20
  #include "protobuf.h"
21
+ #include "shared_convert.h"
44
22
 
45
23
  static upb_StringView Convert_StringData(VALUE str, upb_Arena* arena) {
46
24
  upb_StringView ret;
@@ -111,8 +89,7 @@ static int32_t Convert_ToEnum(VALUE value, const char* name,
111
89
  case T_SYMBOL: {
112
90
  const upb_EnumValueDef* ev =
113
91
  upb_EnumDef_FindValueByName(e, rb_id2name(SYM2ID(value)));
114
- if (!ev)
115
- goto unknownval;
92
+ if (!ev) goto unknownval;
116
93
  val = upb_EnumValueDef_Number(ev);
117
94
  break;
118
95
  }
@@ -127,6 +104,34 @@ unknownval:
127
104
  rb_raise(rb_eRangeError, "Unknown symbol value for enum field '%s'.", name);
128
105
  }
129
106
 
107
+ VALUE Convert_CheckStringUtf8(VALUE str) {
108
+ VALUE utf8 = rb_enc_from_encoding(rb_utf8_encoding());
109
+
110
+ if (rb_obj_encoding(str) == utf8) {
111
+ // Note: Just because a string is marked as having UTF-8 encoding does
112
+ // not mean that it is *valid* UTF-8. We have to check separately
113
+ // whether it is valid.
114
+ if (rb_enc_str_coderange(str) == ENC_CODERANGE_BROKEN) {
115
+ VALUE exc = rb_const_get_at(
116
+ rb_cEncoding, rb_intern("InvalidByteSequenceError"));
117
+ rb_raise(exc, "String is invalid UTF-8");
118
+ }
119
+ } else {
120
+ // Note: this will not duplicate underlying string data unless
121
+ // necessary.
122
+ //
123
+ // This will throw an exception if the conversion cannot be performed:
124
+ // - Encoding::UndefinedConversionError if certain characters cannot be
125
+ // converted to UTF-8.
126
+ // - Encoding::InvalidByteSequenceError if certain characters were invalid
127
+ // in the source encoding.
128
+ str = rb_str_encode(str, utf8, 0, Qnil);
129
+ PBRUBY_ASSERT(rb_enc_str_coderange(str) != ENC_CODERANGE_BROKEN);
130
+ }
131
+
132
+ return str;
133
+ }
134
+
130
135
  upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
131
136
  TypeInfo type_info, upb_Arena* arena) {
132
137
  upb_MessageValue ret;
@@ -160,29 +165,18 @@ upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
160
165
  }
161
166
  break;
162
167
  }
163
- case kUpb_CType_String: {
164
- VALUE utf8 = rb_enc_from_encoding(rb_utf8_encoding());
168
+ case kUpb_CType_String:
165
169
  if (rb_obj_class(value) == rb_cSymbol) {
166
170
  value = rb_funcall(value, rb_intern("to_s"), 0);
167
- } else if (rb_obj_class(value) != rb_cString) {
171
+ } else if (!rb_obj_is_kind_of(value, rb_cString)) {
168
172
  rb_raise(cTypeError,
169
173
  "Invalid argument for string field '%s' (given %s).", name,
170
174
  rb_class2name(CLASS_OF(value)));
171
175
  }
172
176
 
173
- if (rb_obj_encoding(value) != utf8) {
174
- // Note: this will not duplicate underlying string data unless
175
- // necessary.
176
- value = rb_str_encode(value, utf8, 0, Qnil);
177
-
178
- if (rb_enc_str_coderange(value) == ENC_CODERANGE_BROKEN) {
179
- rb_raise(rb_eEncodingError, "String is invalid UTF-8");
180
- }
181
- }
182
-
177
+ value = Convert_CheckStringUtf8(value);
183
178
  ret.str_val = Convert_StringData(value, arena);
184
179
  break;
185
- }
186
180
  case kUpb_CType_Bytes: {
187
181
  VALUE bytes = rb_enc_from_encoding(rb_ascii8bit_encoding());
188
182
  if (rb_obj_class(value) != rb_cString) {
@@ -194,7 +188,7 @@ upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
194
188
  if (rb_obj_encoding(value) != bytes) {
195
189
  // Note: this will not duplicate underlying string data unless
196
190
  // necessary.
197
- // TODO(haberman): is this really necessary to get raw bytes?
191
+ // TODO: is this really necessary to get raw bytes?
198
192
  value = rb_str_encode(value, bytes, 0, Qnil);
199
193
  }
200
194
 
@@ -227,11 +221,13 @@ upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
227
221
  ret.uint64_val = NUM2ULL(value);
228
222
  break;
229
223
  default:
230
- break;
224
+ rb_raise(cTypeError, "Convert_RubyToUpb(): Unexpected type %d",
225
+ (int)type_info.type);
231
226
  }
232
227
  break;
233
228
  default:
234
- break;
229
+ rb_raise(cTypeError,
230
+ "Convert_RubyToUpb(): Unexpected type %d", (int)type_info.type);
235
231
  }
236
232
 
237
233
  return ret;
@@ -255,7 +251,7 @@ VALUE Convert_UpbToRuby(upb_MessageValue upb_val, TypeInfo type_info,
255
251
  case kUpb_CType_UInt64:
256
252
  return ULL2NUM(upb_val.int64_val);
257
253
  case kUpb_CType_Enum: {
258
- const upb_EnumValueDef *ev = upb_EnumDef_FindValueByNumber(
254
+ const upb_EnumValueDef* ev = upb_EnumDef_FindValueByNumber(
259
255
  type_info.def.enumdef, upb_val.int32_val);
260
256
  if (ev) {
261
257
  return ID2SYM(rb_intern(upb_EnumValueDef_Name(ev)));
@@ -312,50 +308,28 @@ upb_MessageValue Msgval_DeepCopy(upb_MessageValue msgval, TypeInfo type_info,
312
308
 
313
309
  bool Msgval_IsEqual(upb_MessageValue val1, upb_MessageValue val2,
314
310
  TypeInfo type_info) {
315
- switch (type_info.type) {
316
- case kUpb_CType_Bool:
317
- return memcmp(&val1, &val2, 1) == 0;
318
- case kUpb_CType_Float:
319
- case kUpb_CType_Int32:
320
- case kUpb_CType_UInt32:
321
- case kUpb_CType_Enum:
322
- return memcmp(&val1, &val2, 4) == 0;
323
- case kUpb_CType_Double:
324
- case kUpb_CType_Int64:
325
- case kUpb_CType_UInt64:
326
- return memcmp(&val1, &val2, 8) == 0;
327
- case kUpb_CType_String:
328
- case kUpb_CType_Bytes:
329
- return val1.str_val.size == val2.str_val.size &&
330
- memcmp(val1.str_val.data, val2.str_val.data, val1.str_val.size) ==
331
- 0;
332
- case kUpb_CType_Message:
333
- return Message_Equal(val1.msg_val, val2.msg_val, type_info.def.msgdef);
334
- default:
335
- rb_raise(rb_eRuntimeError, "Internal error, unexpected type");
311
+ upb_Status status;
312
+ upb_Status_Clear(&status);
313
+ bool return_value = shared_Msgval_IsEqual(val1, val2, type_info.type,
314
+ type_info.def.msgdef, &status);
315
+ if (upb_Status_IsOk(&status)) {
316
+ return return_value;
317
+ } else {
318
+ rb_raise(rb_eRuntimeError, "Msgval_IsEqual(): %s",
319
+ upb_Status_ErrorMessage(&status));
336
320
  }
337
321
  }
338
322
 
339
323
  uint64_t Msgval_GetHash(upb_MessageValue val, TypeInfo type_info,
340
324
  uint64_t seed) {
341
- switch (type_info.type) {
342
- case kUpb_CType_Bool:
343
- return _upb_Hash(&val, 1, seed);
344
- case kUpb_CType_Float:
345
- case kUpb_CType_Int32:
346
- case kUpb_CType_UInt32:
347
- case kUpb_CType_Enum:
348
- return _upb_Hash(&val, 4, seed);
349
- case kUpb_CType_Double:
350
- case kUpb_CType_Int64:
351
- case kUpb_CType_UInt64:
352
- return _upb_Hash(&val, 8, seed);
353
- case kUpb_CType_String:
354
- case kUpb_CType_Bytes:
355
- return _upb_Hash(val.str_val.data, val.str_val.size, seed);
356
- case kUpb_CType_Message:
357
- return Message_Hash(val.msg_val, type_info.def.msgdef, seed);
358
- default:
359
- rb_raise(rb_eRuntimeError, "Internal error, unexpected type");
325
+ upb_Status status;
326
+ upb_Status_Clear(&status);
327
+ uint64_t return_value = shared_Msgval_GetHash(
328
+ val, type_info.type, type_info.def.msgdef, seed, &status);
329
+ if (upb_Status_IsOk(&status)) {
330
+ return return_value;
331
+ } else {
332
+ rb_raise(rb_eRuntimeError, "Msgval_GetHash(): %s",
333
+ upb_Status_ErrorMessage(&status));
360
334
  }
361
335
  }
@@ -1,38 +1,13 @@
1
1
  // Protocol Buffers - Google's data interchange format
2
2
  // Copyright 2008 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
  #ifndef RUBY_PROTOBUF_CONVERT_H_
32
9
  #define RUBY_PROTOBUF_CONVERT_H_
33
10
 
34
- #include <ruby/ruby.h>
35
-
36
11
  #include "protobuf.h"
37
12
  #include "ruby-upb.h"
38
13