google-protobuf 3.25.6 → 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.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/convert.c +33 -15
- data/ext/google/protobuf_c/defs.c +526 -29
- data/ext/google/protobuf_c/extconf.rb +13 -1
- data/ext/google/protobuf_c/glue.c +79 -0
- data/ext/google/protobuf_c/map.c +72 -27
- data/ext/google/protobuf_c/map.h +7 -3
- data/ext/google/protobuf_c/message.c +113 -116
- data/ext/google/protobuf_c/message.h +2 -6
- data/ext/google/protobuf_c/protobuf.c +32 -18
- data/ext/google/protobuf_c/protobuf.h +3 -7
- data/ext/google/protobuf_c/repeated_field.c +58 -23
- data/ext/google/protobuf_c/repeated_field.h +6 -2
- data/ext/google/protobuf_c/ruby-upb.c +14926 -11596
- data/ext/google/protobuf_c/ruby-upb.h +8701 -5832
- data/ext/google/protobuf_c/shared_convert.c +7 -2
- data/ext/google/protobuf_c/shared_message.c +3 -32
- data/ext/google/protobuf_c/shared_message.h +0 -4
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +207 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +9 -8
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/lib/google/protobuf/any_pb.rb +1 -22
- data/lib/google/protobuf/api_pb.rb +1 -24
- data/lib/google/protobuf/descriptor_pb.rb +4 -23
- data/lib/google/protobuf/duration_pb.rb +1 -22
- data/lib/google/protobuf/empty_pb.rb +1 -22
- data/lib/google/protobuf/ffi/descriptor.rb +14 -4
- data/lib/google/protobuf/ffi/descriptor_pool.rb +3 -1
- data/lib/google/protobuf/ffi/enum_descriptor.rb +13 -1
- data/lib/google/protobuf/ffi/ffi.rb +7 -6
- data/lib/google/protobuf/ffi/field_descriptor.rb +23 -2
- data/lib/google/protobuf/ffi/file_descriptor.rb +13 -13
- data/lib/google/protobuf/ffi/internal/arena.rb +0 -6
- data/lib/google/protobuf/ffi/internal/convert.rb +17 -30
- data/lib/google/protobuf/ffi/map.rb +50 -24
- data/lib/google/protobuf/ffi/message.rb +188 -67
- data/lib/google/protobuf/ffi/method_descriptor.rb +124 -0
- data/lib/google/protobuf/ffi/object_cache.rb +3 -3
- data/lib/google/protobuf/ffi/oneof_descriptor.rb +13 -1
- data/lib/google/protobuf/ffi/repeated_field.rb +47 -19
- data/lib/google/protobuf/ffi/service_descriptor.rb +117 -0
- data/lib/google/protobuf/field_mask_pb.rb +1 -22
- data/lib/google/protobuf/internal/object_cache.rb +99 -0
- data/lib/google/protobuf/plugin_pb.rb +2 -24
- data/lib/google/protobuf/repeated_field.rb +4 -5
- data/lib/google/protobuf/source_context_pb.rb +1 -22
- data/lib/google/protobuf/struct_pb.rb +1 -22
- data/lib/google/protobuf/timestamp_pb.rb +1 -22
- data/lib/google/protobuf/type_pb.rb +1 -24
- data/lib/google/protobuf/wrappers_pb.rb +1 -22
- data/lib/google/protobuf.rb +1 -1
- data/lib/google/protobuf_ffi.rb +5 -3
- data/lib/google/protobuf_native.rb +0 -1
- data/lib/google/tasks/ffi.rake +1 -3
- metadata +28 -13
- data/ext/google/protobuf_c/third_party/utf8_range/naive.c +0 -92
- data/ext/google/protobuf_c/third_party/utf8_range/range2-neon.c +0 -157
- data/ext/google/protobuf_c/third_party/utf8_range/range2-sse.c +0 -170
- data/lib/google/protobuf/descriptor_dsl.rb +0 -465
- data/lib/google/protobuf/object_cache.rb +0 -97
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3da1fe7a0b07a7333405dc10a634bede28ecd81b754e9c82f47d4d7d58c13400
|
4
|
+
data.tar.gz: d3795db46eb0c181a1aaceb7c4a8b7f8b7ae1fc333180bfb54ece1fdda9cf0c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e25a6404869843044042d492b5612c2bb6bbf8d11cee513de10f5c2d0d41ed5869f965b68971f6727624965cb90afcf1c8433998bce5b9ba21a379815b46be63
|
7
|
+
data.tar.gz: 18f281a695a40fa48cc5d3243d8691e12c53596199887e7f2bc026f3e64ad7a36ca4fc1e2a6158f32519307fd0bfaac2cd14d63b3c433d42daeb0586859a84fe
|
@@ -104,6 +104,34 @@ unknownval:
|
|
104
104
|
rb_raise(rb_eRangeError, "Unknown symbol value for enum field '%s'.", name);
|
105
105
|
}
|
106
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
|
+
|
107
135
|
upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
|
108
136
|
TypeInfo type_info, upb_Arena* arena) {
|
109
137
|
upb_MessageValue ret;
|
@@ -137,29 +165,18 @@ upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
|
|
137
165
|
}
|
138
166
|
break;
|
139
167
|
}
|
140
|
-
case kUpb_CType_String:
|
141
|
-
VALUE utf8 = rb_enc_from_encoding(rb_utf8_encoding());
|
168
|
+
case kUpb_CType_String:
|
142
169
|
if (rb_obj_class(value) == rb_cSymbol) {
|
143
170
|
value = rb_funcall(value, rb_intern("to_s"), 0);
|
144
|
-
} else if (
|
171
|
+
} else if (!rb_obj_is_kind_of(value, rb_cString)) {
|
145
172
|
rb_raise(cTypeError,
|
146
173
|
"Invalid argument for string field '%s' (given %s).", name,
|
147
174
|
rb_class2name(CLASS_OF(value)));
|
148
175
|
}
|
149
176
|
|
150
|
-
|
151
|
-
// Note: this will not duplicate underlying string data unless
|
152
|
-
// necessary.
|
153
|
-
value = rb_str_encode(value, utf8, 0, Qnil);
|
154
|
-
|
155
|
-
if (rb_enc_str_coderange(value) == ENC_CODERANGE_BROKEN) {
|
156
|
-
rb_raise(rb_eEncodingError, "String is invalid UTF-8");
|
157
|
-
}
|
158
|
-
}
|
159
|
-
|
177
|
+
value = Convert_CheckStringUtf8(value);
|
160
178
|
ret.str_val = Convert_StringData(value, arena);
|
161
179
|
break;
|
162
|
-
}
|
163
180
|
case kUpb_CType_Bytes: {
|
164
181
|
VALUE bytes = rb_enc_from_encoding(rb_ascii8bit_encoding());
|
165
182
|
if (rb_obj_class(value) != rb_cString) {
|
@@ -204,7 +221,8 @@ upb_MessageValue Convert_RubyToUpb(VALUE value, const char* name,
|
|
204
221
|
ret.uint64_val = NUM2ULL(value);
|
205
222
|
break;
|
206
223
|
default:
|
207
|
-
|
224
|
+
rb_raise(cTypeError, "Convert_RubyToUpb(): Unexpected type %d",
|
225
|
+
(int)type_info.type);
|
208
226
|
}
|
209
227
|
break;
|
210
228
|
default:
|