google-protobuf 3.25.0 → 4.28.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/convert.c +46 -18
- data/ext/google/protobuf_c/defs.c +499 -25
- data/ext/google/protobuf_c/extconf.rb +1 -1
- data/ext/google/protobuf_c/glue.c +53 -2
- data/ext/google/protobuf_c/map.c +82 -17
- data/ext/google/protobuf_c/map.h +9 -2
- data/ext/google/protobuf_c/message.c +130 -100
- data/ext/google/protobuf_c/message.h +8 -5
- data/ext/google/protobuf_c/protobuf.c +30 -15
- data/ext/google/protobuf_c/protobuf.h +3 -7
- data/ext/google/protobuf_c/repeated_field.c +64 -10
- data/ext/google/protobuf_c/repeated_field.h +8 -1
- data/ext/google/protobuf_c/ruby-upb.c +13047 -10836
- data/ext/google/protobuf_c/ruby-upb.h +11112 -9026
- data/ext/google/protobuf_c/shared_convert.c +10 -5
- data/ext/google/protobuf_c/shared_convert.h +2 -2
- data/ext/google/protobuf_c/shared_message.c +3 -31
- data/ext/google/protobuf_c/shared_message.h +0 -4
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +467 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +9 -8
- 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 +3 -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 +13 -2
- data/lib/google/protobuf/ffi/descriptor_pool.rb +16 -9
- data/lib/google/protobuf/ffi/enum_descriptor.rb +13 -1
- data/lib/google/protobuf/ffi/ffi.rb +3 -6
- data/lib/google/protobuf/ffi/field_descriptor.rb +37 -16
- data/lib/google/protobuf/ffi/file_descriptor.rb +13 -12
- data/lib/google/protobuf/ffi/internal/arena.rb +0 -6
- data/lib/google/protobuf/ffi/internal/convert.rb +21 -30
- data/lib/google/protobuf/ffi/map.rb +50 -13
- data/lib/google/protobuf/ffi/message.rb +196 -56
- data/lib/google/protobuf/ffi/method_descriptor.rb +114 -0
- data/lib/google/protobuf/ffi/object_cache.rb +3 -3
- data/lib/google/protobuf/ffi/oneof_descriptor.rb +20 -11
- data/lib/google/protobuf/ffi/repeated_field.rb +50 -142
- data/lib/google/protobuf/ffi/service_descriptor.rb +107 -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 +3 -2
- data/lib/google/protobuf_native.rb +0 -1
- data/lib/google/tasks/ffi.rake +1 -3
- metadata +25 -12
- 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
@@ -23,6 +23,9 @@ static VALUE get_enumdef_obj(VALUE descriptor_pool, const upb_EnumDef* def);
|
|
23
23
|
static VALUE get_fielddef_obj(VALUE descriptor_pool, const upb_FieldDef* def);
|
24
24
|
static VALUE get_filedef_obj(VALUE descriptor_pool, const upb_FileDef* def);
|
25
25
|
static VALUE get_oneofdef_obj(VALUE descriptor_pool, const upb_OneofDef* def);
|
26
|
+
static VALUE get_servicedef_obj(VALUE descriptor_pool,
|
27
|
+
const upb_ServiceDef* def);
|
28
|
+
static VALUE get_methoddef_obj(VALUE descriptor_pool, const upb_MethodDef* def);
|
26
29
|
|
27
30
|
// A distinct object that is not accessible from Ruby. We use this as a
|
28
31
|
// constructor argument to enforce that certain objects cannot be created from
|
@@ -44,7 +47,7 @@ static VALUE rb_str_maybe_null(const char* s) {
|
|
44
47
|
}
|
45
48
|
return rb_str_new2(s);
|
46
49
|
}
|
47
|
-
|
50
|
+
static ID options_instancevar_interned;
|
48
51
|
// -----------------------------------------------------------------------------
|
49
52
|
// DescriptorPool.
|
50
53
|
// -----------------------------------------------------------------------------
|
@@ -144,25 +147,37 @@ VALUE DescriptorPool_add_serialized_file(VALUE _self,
|
|
144
147
|
* call-seq:
|
145
148
|
* DescriptorPool.lookup(name) => descriptor
|
146
149
|
*
|
147
|
-
* Finds a Descriptor or
|
148
|
-
* exists with the given name.
|
150
|
+
* Finds a Descriptor, EnumDescriptor or FieldDescriptor by name and returns it,
|
151
|
+
* or nil if none exists with the given name.
|
149
152
|
*/
|
150
153
|
static VALUE DescriptorPool_lookup(VALUE _self, VALUE name) {
|
151
154
|
DescriptorPool* self = ruby_to_DescriptorPool(_self);
|
152
155
|
const char* name_str = get_str(name);
|
153
156
|
const upb_MessageDef* msgdef;
|
154
157
|
const upb_EnumDef* enumdef;
|
158
|
+
const upb_FieldDef* fielddef;
|
159
|
+
const upb_ServiceDef* servicedef;
|
155
160
|
|
156
161
|
msgdef = upb_DefPool_FindMessageByName(self->symtab, name_str);
|
157
162
|
if (msgdef) {
|
158
163
|
return get_msgdef_obj(_self, msgdef);
|
159
164
|
}
|
160
165
|
|
166
|
+
fielddef = upb_DefPool_FindExtensionByName(self->symtab, name_str);
|
167
|
+
if (fielddef) {
|
168
|
+
return get_fielddef_obj(_self, fielddef);
|
169
|
+
}
|
170
|
+
|
161
171
|
enumdef = upb_DefPool_FindEnumByName(self->symtab, name_str);
|
162
172
|
if (enumdef) {
|
163
173
|
return get_enumdef_obj(_self, enumdef);
|
164
174
|
}
|
165
175
|
|
176
|
+
servicedef = upb_DefPool_FindServiceByName(self->symtab, name_str);
|
177
|
+
if (servicedef) {
|
178
|
+
return get_servicedef_obj(_self, servicedef);
|
179
|
+
}
|
180
|
+
|
166
181
|
return Qnil;
|
167
182
|
}
|
168
183
|
|
@@ -192,6 +207,7 @@ static void DescriptorPool_register(VALUE module) {
|
|
192
207
|
|
193
208
|
rb_gc_register_address(&generated_pool);
|
194
209
|
generated_pool = rb_class_new_instance(0, NULL, klass);
|
210
|
+
options_instancevar_interned = rb_intern("options");
|
195
211
|
}
|
196
212
|
|
197
213
|
// -----------------------------------------------------------------------------
|
@@ -226,6 +242,48 @@ static Descriptor* ruby_to_Descriptor(VALUE val) {
|
|
226
242
|
return ret;
|
227
243
|
}
|
228
244
|
|
245
|
+
// Decode and return a frozen instance of a Descriptor Option for the given pool
|
246
|
+
static VALUE decode_options(VALUE self, const char* option_type, int size,
|
247
|
+
const char* bytes, VALUE descriptor_pool) {
|
248
|
+
VALUE options_rb = rb_ivar_get(self, options_instancevar_interned);
|
249
|
+
if (options_rb != Qnil) {
|
250
|
+
return options_rb;
|
251
|
+
}
|
252
|
+
|
253
|
+
static const char* prefix = "google.protobuf.";
|
254
|
+
char fullname
|
255
|
+
[/*strlen(prefix)*/ 16 +
|
256
|
+
/*strln(longest option type supported e.g. "MessageOptions")*/ 14 +
|
257
|
+
/*null terminator*/ 1];
|
258
|
+
|
259
|
+
snprintf(fullname, sizeof(fullname), "%s%s", prefix, option_type);
|
260
|
+
const upb_MessageDef* msgdef = upb_DefPool_FindMessageByName(
|
261
|
+
ruby_to_DescriptorPool(descriptor_pool)->symtab, fullname);
|
262
|
+
if (!msgdef) {
|
263
|
+
rb_raise(rb_eRuntimeError, "Cannot find %s in DescriptorPool", option_type);
|
264
|
+
}
|
265
|
+
|
266
|
+
VALUE desc_rb = get_msgdef_obj(descriptor_pool, msgdef);
|
267
|
+
const Descriptor* desc = ruby_to_Descriptor(desc_rb);
|
268
|
+
|
269
|
+
options_rb = Message_decode_bytes(size, bytes, 0, desc->klass, false);
|
270
|
+
|
271
|
+
// Strip features from the options proto to keep it internal.
|
272
|
+
const upb_MessageDef* decoded_desc = NULL;
|
273
|
+
upb_Message* options = Message_GetMutable(options_rb, &decoded_desc);
|
274
|
+
PBRUBY_ASSERT(options != NULL);
|
275
|
+
PBRUBY_ASSERT(decoded_desc == msgdef);
|
276
|
+
const upb_FieldDef* field =
|
277
|
+
upb_MessageDef_FindFieldByName(decoded_desc, "features");
|
278
|
+
PBRUBY_ASSERT(field != NULL);
|
279
|
+
upb_Message_ClearFieldByDef(options, field);
|
280
|
+
|
281
|
+
Message_freeze(options_rb);
|
282
|
+
|
283
|
+
rb_ivar_set(self, options_instancevar_interned, options_rb);
|
284
|
+
return options_rb;
|
285
|
+
}
|
286
|
+
|
229
287
|
/*
|
230
288
|
* call-seq:
|
231
289
|
* Descriptor.new => descriptor
|
@@ -374,6 +432,26 @@ static VALUE Descriptor_msgclass(VALUE _self) {
|
|
374
432
|
return self->klass;
|
375
433
|
}
|
376
434
|
|
435
|
+
/*
|
436
|
+
* call-seq:
|
437
|
+
* Descriptor.options => options
|
438
|
+
*
|
439
|
+
* Returns the `MessageOptions` for this `Descriptor`.
|
440
|
+
*/
|
441
|
+
static VALUE Descriptor_options(VALUE _self) {
|
442
|
+
Descriptor* self = ruby_to_Descriptor(_self);
|
443
|
+
const google_protobuf_MessageOptions* opts =
|
444
|
+
upb_MessageDef_Options(self->msgdef);
|
445
|
+
upb_Arena* arena = upb_Arena_New();
|
446
|
+
size_t size;
|
447
|
+
char* serialized =
|
448
|
+
google_protobuf_MessageOptions_serialize(opts, arena, &size);
|
449
|
+
VALUE message_options = decode_options(_self, "MessageOptions", size,
|
450
|
+
serialized, self->descriptor_pool);
|
451
|
+
upb_Arena_Free(arena);
|
452
|
+
return message_options;
|
453
|
+
}
|
454
|
+
|
377
455
|
static void Descriptor_register(VALUE module) {
|
378
456
|
VALUE klass = rb_define_class_under(module, "Descriptor", rb_cObject);
|
379
457
|
rb_define_alloc_func(klass, Descriptor_alloc);
|
@@ -385,6 +463,7 @@ static void Descriptor_register(VALUE module) {
|
|
385
463
|
rb_define_method(klass, "msgclass", Descriptor_msgclass, 0);
|
386
464
|
rb_define_method(klass, "name", Descriptor_name, 0);
|
387
465
|
rb_define_method(klass, "file_descriptor", Descriptor_file_descriptor, 0);
|
466
|
+
rb_define_method(klass, "options", Descriptor_options, 0);
|
388
467
|
rb_include_module(klass, rb_mEnumerable);
|
389
468
|
rb_gc_register_address(&cDescriptor);
|
390
469
|
cDescriptor = klass;
|
@@ -432,7 +511,7 @@ static VALUE FileDescriptor_alloc(VALUE klass) {
|
|
432
511
|
* call-seq:
|
433
512
|
* FileDescriptor.new => file
|
434
513
|
*
|
435
|
-
* Returns a new file descriptor.
|
514
|
+
* Returns a new file descriptor. May
|
436
515
|
* to a builder.
|
437
516
|
*/
|
438
517
|
static VALUE FileDescriptor_initialize(VALUE _self, VALUE cookie,
|
@@ -464,24 +543,20 @@ static VALUE FileDescriptor_name(VALUE _self) {
|
|
464
543
|
|
465
544
|
/*
|
466
545
|
* call-seq:
|
467
|
-
* FileDescriptor.
|
468
|
-
*
|
469
|
-
* Returns this file descriptors syntax.
|
546
|
+
* FileDescriptor.options => options
|
470
547
|
*
|
471
|
-
*
|
472
|
-
* :proto2 or :proto3.
|
548
|
+
* Returns the `FileOptions` for this `FileDescriptor`.
|
473
549
|
*/
|
474
|
-
static VALUE
|
550
|
+
static VALUE FileDescriptor_options(VALUE _self) {
|
475
551
|
FileDescriptor* self = ruby_to_FileDescriptor(_self);
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
}
|
552
|
+
const google_protobuf_FileOptions* opts = upb_FileDef_Options(self->filedef);
|
553
|
+
upb_Arena* arena = upb_Arena_New();
|
554
|
+
size_t size;
|
555
|
+
char* serialized = google_protobuf_FileOptions_serialize(opts, arena, &size);
|
556
|
+
VALUE file_options = decode_options(_self, "FileOptions", size, serialized,
|
557
|
+
self->descriptor_pool);
|
558
|
+
upb_Arena_Free(arena);
|
559
|
+
return file_options;
|
485
560
|
}
|
486
561
|
|
487
562
|
static void FileDescriptor_register(VALUE module) {
|
@@ -489,7 +564,7 @@ static void FileDescriptor_register(VALUE module) {
|
|
489
564
|
rb_define_alloc_func(klass, FileDescriptor_alloc);
|
490
565
|
rb_define_method(klass, "initialize", FileDescriptor_initialize, 3);
|
491
566
|
rb_define_method(klass, "name", FileDescriptor_name, 0);
|
492
|
-
rb_define_method(klass, "
|
567
|
+
rb_define_method(klass, "options", FileDescriptor_options, 0);
|
493
568
|
rb_gc_register_address(&cFileDescriptor);
|
494
569
|
cFileDescriptor = klass;
|
495
570
|
}
|
@@ -540,7 +615,7 @@ static VALUE FieldDescriptor_alloc(VALUE klass) {
|
|
540
615
|
|
541
616
|
/*
|
542
617
|
* call-seq:
|
543
|
-
*
|
618
|
+
* FieldDescriptor.new(c_only_cookie, pool, ptr) => FieldDescriptor
|
544
619
|
*
|
545
620
|
* Creates a descriptor wrapper object. May only be called from C.
|
546
621
|
*/
|
@@ -651,7 +726,7 @@ static VALUE FieldDescriptor__type(VALUE _self) {
|
|
651
726
|
static VALUE FieldDescriptor_default(VALUE _self) {
|
652
727
|
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
653
728
|
const upb_FieldDef* f = self->fielddef;
|
654
|
-
upb_MessageValue default_val =
|
729
|
+
upb_MessageValue default_val = upb_MessageValue_Zero();
|
655
730
|
if (upb_FieldDef_IsSubMessage(f)) {
|
656
731
|
return Qnil;
|
657
732
|
} else if (!upb_FieldDef_IsRepeated(f)) {
|
@@ -660,6 +735,28 @@ static VALUE FieldDescriptor_default(VALUE _self) {
|
|
660
735
|
return Convert_UpbToRuby(default_val, TypeInfo_get(self->fielddef), Qnil);
|
661
736
|
}
|
662
737
|
|
738
|
+
/*
|
739
|
+
* call-seq:
|
740
|
+
* FieldDescriptor.has_presence? => bool
|
741
|
+
*
|
742
|
+
* Returns whether this field tracks presence.
|
743
|
+
*/
|
744
|
+
static VALUE FieldDescriptor_has_presence(VALUE _self) {
|
745
|
+
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
746
|
+
return upb_FieldDef_HasPresence(self->fielddef) ? Qtrue : Qfalse;
|
747
|
+
}
|
748
|
+
|
749
|
+
/*
|
750
|
+
* call-seq:
|
751
|
+
* FieldDescriptor.is_packed? => bool
|
752
|
+
*
|
753
|
+
* Returns whether this is a repeated field that uses packed encoding.
|
754
|
+
*/
|
755
|
+
static VALUE FieldDescriptor_is_packed(VALUE _self) {
|
756
|
+
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
757
|
+
return upb_FieldDef_IsPacked(self->fielddef) ? Qtrue : Qfalse;
|
758
|
+
}
|
759
|
+
|
663
760
|
/*
|
664
761
|
* call-seq:
|
665
762
|
* FieldDescriptor.json_name => json_name
|
@@ -786,7 +883,7 @@ static VALUE FieldDescriptor_get(VALUE _self, VALUE msg_rb) {
|
|
786
883
|
static VALUE FieldDescriptor_has(VALUE _self, VALUE msg_rb) {
|
787
884
|
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
788
885
|
const upb_MessageDef* m;
|
789
|
-
const
|
886
|
+
const upb_Message* msg = Message_Get(msg_rb, &m);
|
790
887
|
|
791
888
|
if (m != upb_FieldDef_ContainingType(self->fielddef)) {
|
792
889
|
rb_raise(cTypeError, "has method called on wrong message type");
|
@@ -806,7 +903,7 @@ static VALUE FieldDescriptor_has(VALUE _self, VALUE msg_rb) {
|
|
806
903
|
static VALUE FieldDescriptor_clear(VALUE _self, VALUE msg_rb) {
|
807
904
|
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
808
905
|
const upb_MessageDef* m;
|
809
|
-
|
906
|
+
upb_Message* msg = Message_GetMutable(msg_rb, &m);
|
810
907
|
|
811
908
|
if (m != upb_FieldDef_ContainingType(self->fielddef)) {
|
812
909
|
rb_raise(cTypeError, "has method called on wrong message type");
|
@@ -827,7 +924,7 @@ static VALUE FieldDescriptor_clear(VALUE _self, VALUE msg_rb) {
|
|
827
924
|
static VALUE FieldDescriptor_set(VALUE _self, VALUE msg_rb, VALUE value) {
|
828
925
|
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
829
926
|
const upb_MessageDef* m;
|
830
|
-
|
927
|
+
upb_Message* msg = Message_GetMutable(msg_rb, &m);
|
831
928
|
upb_Arena* arena = Arena_get(Message_GetArena(msg_rb));
|
832
929
|
upb_MessageValue msgval;
|
833
930
|
|
@@ -841,6 +938,25 @@ static VALUE FieldDescriptor_set(VALUE _self, VALUE msg_rb, VALUE value) {
|
|
841
938
|
return Qnil;
|
842
939
|
}
|
843
940
|
|
941
|
+
/*
|
942
|
+
* call-seq:
|
943
|
+
* FieldDescriptor.options => options
|
944
|
+
*
|
945
|
+
* Returns the `FieldOptions` for this `FieldDescriptor`.
|
946
|
+
*/
|
947
|
+
static VALUE FieldDescriptor_options(VALUE _self) {
|
948
|
+
FieldDescriptor* self = ruby_to_FieldDescriptor(_self);
|
949
|
+
const google_protobuf_FieldOptions* opts =
|
950
|
+
upb_FieldDef_Options(self->fielddef);
|
951
|
+
upb_Arena* arena = upb_Arena_New();
|
952
|
+
size_t size;
|
953
|
+
char* serialized = google_protobuf_FieldOptions_serialize(opts, arena, &size);
|
954
|
+
VALUE field_options = decode_options(_self, "FieldOptions", size, serialized,
|
955
|
+
self->descriptor_pool);
|
956
|
+
upb_Arena_Free(arena);
|
957
|
+
return field_options;
|
958
|
+
}
|
959
|
+
|
844
960
|
static void FieldDescriptor_register(VALUE module) {
|
845
961
|
VALUE klass = rb_define_class_under(module, "FieldDescriptor", rb_cObject);
|
846
962
|
rb_define_alloc_func(klass, FieldDescriptor_alloc);
|
@@ -848,6 +964,8 @@ static void FieldDescriptor_register(VALUE module) {
|
|
848
964
|
rb_define_method(klass, "name", FieldDescriptor_name, 0);
|
849
965
|
rb_define_method(klass, "type", FieldDescriptor__type, 0);
|
850
966
|
rb_define_method(klass, "default", FieldDescriptor_default, 0);
|
967
|
+
rb_define_method(klass, "has_presence?", FieldDescriptor_has_presence, 0);
|
968
|
+
rb_define_method(klass, "is_packed?", FieldDescriptor_is_packed, 0);
|
851
969
|
rb_define_method(klass, "json_name", FieldDescriptor_json_name, 0);
|
852
970
|
rb_define_method(klass, "label", FieldDescriptor_label, 0);
|
853
971
|
rb_define_method(klass, "number", FieldDescriptor_number, 0);
|
@@ -857,6 +975,7 @@ static void FieldDescriptor_register(VALUE module) {
|
|
857
975
|
rb_define_method(klass, "clear", FieldDescriptor_clear, 1);
|
858
976
|
rb_define_method(klass, "get", FieldDescriptor_get, 1);
|
859
977
|
rb_define_method(klass, "set", FieldDescriptor_set, 2);
|
978
|
+
rb_define_method(klass, "options", FieldDescriptor_options, 0);
|
860
979
|
rb_gc_register_address(&cFieldDescriptor);
|
861
980
|
cFieldDescriptor = klass;
|
862
981
|
}
|
@@ -956,12 +1075,32 @@ static VALUE OneofDescriptor_each(VALUE _self) {
|
|
956
1075
|
return Qnil;
|
957
1076
|
}
|
958
1077
|
|
1078
|
+
/*
|
1079
|
+
* call-seq:
|
1080
|
+
* OneofDescriptor.options => options
|
1081
|
+
*
|
1082
|
+
* Returns the `OneofOptions` for this `OneofDescriptor`.
|
1083
|
+
*/
|
1084
|
+
static VALUE OneOfDescriptor_options(VALUE _self) {
|
1085
|
+
OneofDescriptor* self = ruby_to_OneofDescriptor(_self);
|
1086
|
+
const google_protobuf_OneofOptions* opts =
|
1087
|
+
upb_OneofDef_Options(self->oneofdef);
|
1088
|
+
upb_Arena* arena = upb_Arena_New();
|
1089
|
+
size_t size;
|
1090
|
+
char* serialized = google_protobuf_OneofOptions_serialize(opts, arena, &size);
|
1091
|
+
VALUE oneof_options = decode_options(_self, "OneofOptions", size, serialized,
|
1092
|
+
self->descriptor_pool);
|
1093
|
+
upb_Arena_Free(arena);
|
1094
|
+
return oneof_options;
|
1095
|
+
}
|
1096
|
+
|
959
1097
|
static void OneofDescriptor_register(VALUE module) {
|
960
1098
|
VALUE klass = rb_define_class_under(module, "OneofDescriptor", rb_cObject);
|
961
1099
|
rb_define_alloc_func(klass, OneofDescriptor_alloc);
|
962
1100
|
rb_define_method(klass, "initialize", OneofDescriptor_initialize, 3);
|
963
1101
|
rb_define_method(klass, "name", OneofDescriptor_name, 0);
|
964
1102
|
rb_define_method(klass, "each", OneofDescriptor_each, 0);
|
1103
|
+
rb_define_method(klass, "options", OneOfDescriptor_options, 0);
|
965
1104
|
rb_include_module(klass, rb_mEnumerable);
|
966
1105
|
rb_gc_register_address(&cOneofDescriptor);
|
967
1106
|
cOneofDescriptor = klass;
|
@@ -1047,6 +1186,17 @@ static VALUE EnumDescriptor_file_descriptor(VALUE _self) {
|
|
1047
1186
|
upb_EnumDef_File(self->enumdef));
|
1048
1187
|
}
|
1049
1188
|
|
1189
|
+
/*
|
1190
|
+
* call-seq:
|
1191
|
+
* EnumDescriptor.is_closed? => bool
|
1192
|
+
*
|
1193
|
+
* Returns whether this enum is open or closed.
|
1194
|
+
*/
|
1195
|
+
static VALUE EnumDescriptor_is_closed(VALUE _self) {
|
1196
|
+
EnumDescriptor* self = ruby_to_EnumDescriptor(_self);
|
1197
|
+
return upb_EnumDef_IsClosed(self->enumdef) ? Qtrue : Qfalse;
|
1198
|
+
}
|
1199
|
+
|
1050
1200
|
/*
|
1051
1201
|
* call-seq:
|
1052
1202
|
* EnumDescriptor.name => name
|
@@ -1131,6 +1281,24 @@ static VALUE EnumDescriptor_enummodule(VALUE _self) {
|
|
1131
1281
|
return self->module;
|
1132
1282
|
}
|
1133
1283
|
|
1284
|
+
/*
|
1285
|
+
* call-seq:
|
1286
|
+
* EnumDescriptor.options => options
|
1287
|
+
*
|
1288
|
+
* Returns the `EnumOptions` for this `EnumDescriptor`.
|
1289
|
+
*/
|
1290
|
+
static VALUE EnumDescriptor_options(VALUE _self) {
|
1291
|
+
EnumDescriptor* self = ruby_to_EnumDescriptor(_self);
|
1292
|
+
const google_protobuf_EnumOptions* opts = upb_EnumDef_Options(self->enumdef);
|
1293
|
+
upb_Arena* arena = upb_Arena_New();
|
1294
|
+
size_t size;
|
1295
|
+
char* serialized = google_protobuf_EnumOptions_serialize(opts, arena, &size);
|
1296
|
+
VALUE enum_options = decode_options(_self, "EnumOptions", size, serialized,
|
1297
|
+
self->descriptor_pool);
|
1298
|
+
upb_Arena_Free(arena);
|
1299
|
+
return enum_options;
|
1300
|
+
}
|
1301
|
+
|
1134
1302
|
static void EnumDescriptor_register(VALUE module) {
|
1135
1303
|
VALUE klass = rb_define_class_under(module, "EnumDescriptor", rb_cObject);
|
1136
1304
|
rb_define_alloc_func(klass, EnumDescriptor_alloc);
|
@@ -1141,11 +1309,305 @@ static void EnumDescriptor_register(VALUE module) {
|
|
1141
1309
|
rb_define_method(klass, "each", EnumDescriptor_each, 0);
|
1142
1310
|
rb_define_method(klass, "enummodule", EnumDescriptor_enummodule, 0);
|
1143
1311
|
rb_define_method(klass, "file_descriptor", EnumDescriptor_file_descriptor, 0);
|
1312
|
+
rb_define_method(klass, "is_closed?", EnumDescriptor_is_closed, 0);
|
1313
|
+
rb_define_method(klass, "options", EnumDescriptor_options, 0);
|
1144
1314
|
rb_include_module(klass, rb_mEnumerable);
|
1145
1315
|
rb_gc_register_address(&cEnumDescriptor);
|
1146
1316
|
cEnumDescriptor = klass;
|
1147
1317
|
}
|
1148
1318
|
|
1319
|
+
// -----------------------------------------------------------------------------
|
1320
|
+
// ServiceDescriptor
|
1321
|
+
// -----------------------------------------------------------------------------
|
1322
|
+
|
1323
|
+
typedef struct {
|
1324
|
+
const upb_ServiceDef* servicedef;
|
1325
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
1326
|
+
// macro to update VALUE references, as to trigger write barriers.
|
1327
|
+
VALUE module; // begins as nil
|
1328
|
+
VALUE descriptor_pool; // Owns the upb_ServiceDef.
|
1329
|
+
} ServiceDescriptor;
|
1330
|
+
|
1331
|
+
static VALUE cServiceDescriptor = Qnil;
|
1332
|
+
|
1333
|
+
static void ServiceDescriptor_mark(void* _self) {
|
1334
|
+
ServiceDescriptor* self = _self;
|
1335
|
+
rb_gc_mark(self->module);
|
1336
|
+
rb_gc_mark(self->descriptor_pool);
|
1337
|
+
}
|
1338
|
+
|
1339
|
+
static const rb_data_type_t ServiceDescriptor_type = {
|
1340
|
+
"Google::Protobuf::ServicDescriptor",
|
1341
|
+
{ServiceDescriptor_mark, RUBY_DEFAULT_FREE, NULL},
|
1342
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED,
|
1343
|
+
};
|
1344
|
+
|
1345
|
+
static ServiceDescriptor* ruby_to_ServiceDescriptor(VALUE val) {
|
1346
|
+
ServiceDescriptor* ret;
|
1347
|
+
TypedData_Get_Struct(val, ServiceDescriptor, &ServiceDescriptor_type, ret);
|
1348
|
+
return ret;
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
static VALUE ServiceDescriptor_alloc(VALUE klass) {
|
1352
|
+
ServiceDescriptor* self = ALLOC(ServiceDescriptor);
|
1353
|
+
VALUE ret = TypedData_Wrap_Struct(klass, &ServiceDescriptor_type, self);
|
1354
|
+
self->servicedef = NULL;
|
1355
|
+
self->module = Qnil;
|
1356
|
+
self->descriptor_pool = Qnil;
|
1357
|
+
return ret;
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
/*
|
1361
|
+
* call-seq:
|
1362
|
+
* ServiceDescriptor.new(c_only_cookie, ptr) => ServiceDescriptor
|
1363
|
+
*
|
1364
|
+
* Creates a descriptor wrapper object. May only be called from C.
|
1365
|
+
*/
|
1366
|
+
static VALUE ServiceDescriptor_initialize(VALUE _self, VALUE cookie,
|
1367
|
+
VALUE descriptor_pool, VALUE ptr) {
|
1368
|
+
ServiceDescriptor* self = ruby_to_ServiceDescriptor(_self);
|
1369
|
+
|
1370
|
+
if (cookie != c_only_cookie) {
|
1371
|
+
rb_raise(rb_eRuntimeError,
|
1372
|
+
"Descriptor objects may not be created from Ruby.");
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
RB_OBJ_WRITE(_self, &self->descriptor_pool, descriptor_pool);
|
1376
|
+
self->servicedef = (const upb_ServiceDef*)NUM2ULL(ptr);
|
1377
|
+
|
1378
|
+
return Qnil;
|
1379
|
+
}
|
1380
|
+
|
1381
|
+
/*
|
1382
|
+
* call-seq:
|
1383
|
+
* ServiceDescriptor.name => name
|
1384
|
+
*
|
1385
|
+
* Returns the name of this service.
|
1386
|
+
*/
|
1387
|
+
static VALUE ServiceDescriptor_name(VALUE _self) {
|
1388
|
+
ServiceDescriptor* self = ruby_to_ServiceDescriptor(_self);
|
1389
|
+
return rb_str_maybe_null(upb_ServiceDef_FullName(self->servicedef));
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
/*
|
1393
|
+
* call-seq:
|
1394
|
+
* ServiceDescriptor.file_descriptor
|
1395
|
+
*
|
1396
|
+
* Returns the FileDescriptor object this service belongs to.
|
1397
|
+
*/
|
1398
|
+
static VALUE ServiceDescriptor_file_descriptor(VALUE _self) {
|
1399
|
+
ServiceDescriptor* self = ruby_to_ServiceDescriptor(_self);
|
1400
|
+
return get_filedef_obj(self->descriptor_pool,
|
1401
|
+
upb_ServiceDef_File(self->servicedef));
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
/*
|
1405
|
+
* call-seq:
|
1406
|
+
* ServiceDescriptor.each(&block)
|
1407
|
+
*
|
1408
|
+
* Iterates over methods in this service, yielding to the block on each one.
|
1409
|
+
*/
|
1410
|
+
static VALUE ServiceDescriptor_each(VALUE _self) {
|
1411
|
+
ServiceDescriptor* self = ruby_to_ServiceDescriptor(_self);
|
1412
|
+
|
1413
|
+
int n = upb_ServiceDef_MethodCount(self->servicedef);
|
1414
|
+
for (int i = 0; i < n; i++) {
|
1415
|
+
const upb_MethodDef* method = upb_ServiceDef_Method(self->servicedef, i);
|
1416
|
+
VALUE obj = get_methoddef_obj(self->descriptor_pool, method);
|
1417
|
+
rb_yield(obj);
|
1418
|
+
}
|
1419
|
+
return Qnil;
|
1420
|
+
}
|
1421
|
+
|
1422
|
+
/*
|
1423
|
+
* call-seq:
|
1424
|
+
* ServiceDescriptor.options => options
|
1425
|
+
*
|
1426
|
+
* Returns the `ServiceOptions` for this `ServiceDescriptor`.
|
1427
|
+
*/
|
1428
|
+
static VALUE ServiceDescriptor_options(VALUE _self) {
|
1429
|
+
ServiceDescriptor* self = ruby_to_ServiceDescriptor(_self);
|
1430
|
+
const google_protobuf_ServiceOptions* opts =
|
1431
|
+
upb_ServiceDef_Options(self->servicedef);
|
1432
|
+
upb_Arena* arena = upb_Arena_New();
|
1433
|
+
size_t size;
|
1434
|
+
char* serialized =
|
1435
|
+
google_protobuf_ServiceOptions_serialize(opts, arena, &size);
|
1436
|
+
VALUE service_options = decode_options(_self, "ServiceOptions", size,
|
1437
|
+
serialized, self->descriptor_pool);
|
1438
|
+
upb_Arena_Free(arena);
|
1439
|
+
return service_options;
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
static void ServiceDescriptor_register(VALUE module) {
|
1443
|
+
VALUE klass = rb_define_class_under(module, "ServiceDescriptor", rb_cObject);
|
1444
|
+
rb_define_alloc_func(klass, ServiceDescriptor_alloc);
|
1445
|
+
rb_define_method(klass, "initialize", ServiceDescriptor_initialize, 3);
|
1446
|
+
rb_define_method(klass, "name", ServiceDescriptor_name, 0);
|
1447
|
+
rb_define_method(klass, "each", ServiceDescriptor_each, 0);
|
1448
|
+
rb_define_method(klass, "file_descriptor", ServiceDescriptor_file_descriptor,
|
1449
|
+
0);
|
1450
|
+
rb_define_method(klass, "options", ServiceDescriptor_options, 0);
|
1451
|
+
rb_include_module(klass, rb_mEnumerable);
|
1452
|
+
rb_gc_register_address(&cServiceDescriptor);
|
1453
|
+
cServiceDescriptor = klass;
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
// -----------------------------------------------------------------------------
|
1457
|
+
// MethodDescriptor
|
1458
|
+
// -----------------------------------------------------------------------------
|
1459
|
+
|
1460
|
+
typedef struct {
|
1461
|
+
const upb_MethodDef* methoddef;
|
1462
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
1463
|
+
// macro to update VALUE references, as to trigger write barriers.
|
1464
|
+
VALUE module; // begins as nil
|
1465
|
+
VALUE descriptor_pool; // Owns the upb_MethodDef.
|
1466
|
+
} MethodDescriptor;
|
1467
|
+
|
1468
|
+
static VALUE cMethodDescriptor = Qnil;
|
1469
|
+
|
1470
|
+
static void MethodDescriptor_mark(void* _self) {
|
1471
|
+
MethodDescriptor* self = _self;
|
1472
|
+
rb_gc_mark(self->module);
|
1473
|
+
rb_gc_mark(self->descriptor_pool);
|
1474
|
+
}
|
1475
|
+
|
1476
|
+
static const rb_data_type_t MethodDescriptor_type = {
|
1477
|
+
"Google::Protobuf::MethodDescriptor",
|
1478
|
+
{MethodDescriptor_mark, RUBY_DEFAULT_FREE, NULL},
|
1479
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED,
|
1480
|
+
};
|
1481
|
+
|
1482
|
+
static MethodDescriptor* ruby_to_MethodDescriptor(VALUE val) {
|
1483
|
+
MethodDescriptor* ret;
|
1484
|
+
TypedData_Get_Struct(val, MethodDescriptor, &MethodDescriptor_type, ret);
|
1485
|
+
return ret;
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
static VALUE MethodDescriptor_alloc(VALUE klass) {
|
1489
|
+
MethodDescriptor* self = ALLOC(MethodDescriptor);
|
1490
|
+
VALUE ret = TypedData_Wrap_Struct(klass, &MethodDescriptor_type, self);
|
1491
|
+
self->methoddef = NULL;
|
1492
|
+
self->module = Qnil;
|
1493
|
+
self->descriptor_pool = Qnil;
|
1494
|
+
return ret;
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
/*
|
1498
|
+
* call-seq:
|
1499
|
+
* MethodDescriptor.new(c_only_cookie, ptr) => MethodDescriptor
|
1500
|
+
*
|
1501
|
+
* Creates a descriptor wrapper object. May only be called from C.
|
1502
|
+
*/
|
1503
|
+
static VALUE MethodDescriptor_initialize(VALUE _self, VALUE cookie,
|
1504
|
+
VALUE descriptor_pool, VALUE ptr) {
|
1505
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1506
|
+
|
1507
|
+
if (cookie != c_only_cookie) {
|
1508
|
+
rb_raise(rb_eRuntimeError,
|
1509
|
+
"Descriptor objects may not be created from Ruby.");
|
1510
|
+
}
|
1511
|
+
|
1512
|
+
RB_OBJ_WRITE(_self, &self->descriptor_pool, descriptor_pool);
|
1513
|
+
self->methoddef = (const upb_MethodDef*)NUM2ULL(ptr);
|
1514
|
+
|
1515
|
+
return Qnil;
|
1516
|
+
}
|
1517
|
+
|
1518
|
+
/*
|
1519
|
+
* call-seq:
|
1520
|
+
* MethodDescriptor.name => name
|
1521
|
+
*
|
1522
|
+
* Returns the name of this method
|
1523
|
+
*/
|
1524
|
+
static VALUE MethodDescriptor_name(VALUE _self) {
|
1525
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1526
|
+
return rb_str_maybe_null(upb_MethodDef_Name(self->methoddef));
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
/*
|
1530
|
+
* call-seq:
|
1531
|
+
* MethodDescriptor.options => options
|
1532
|
+
*
|
1533
|
+
* Returns the `MethodOptions` for this `MethodDescriptor`.
|
1534
|
+
*/
|
1535
|
+
static VALUE MethodDescriptor_options(VALUE _self) {
|
1536
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1537
|
+
const google_protobuf_MethodOptions* opts =
|
1538
|
+
upb_MethodDef_Options(self->methoddef);
|
1539
|
+
upb_Arena* arena = upb_Arena_New();
|
1540
|
+
size_t size;
|
1541
|
+
char* serialized =
|
1542
|
+
google_protobuf_MethodOptions_serialize(opts, arena, &size);
|
1543
|
+
VALUE method_options = decode_options(_self, "MethodOptions", size,
|
1544
|
+
serialized, self->descriptor_pool);
|
1545
|
+
upb_Arena_Free(arena);
|
1546
|
+
return method_options;
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
/*
|
1550
|
+
* call-seq:
|
1551
|
+
* MethodDescriptor.input_type => Descriptor
|
1552
|
+
*
|
1553
|
+
* Returns the `Descriptor` for the request message type of this method
|
1554
|
+
*/
|
1555
|
+
static VALUE MethodDescriptor_input_type(VALUE _self) {
|
1556
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1557
|
+
const upb_MessageDef* type = upb_MethodDef_InputType(self->methoddef);
|
1558
|
+
return get_msgdef_obj(self->descriptor_pool, type);
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
/*
|
1562
|
+
* call-seq:
|
1563
|
+
* MethodDescriptor.output_type => Descriptor
|
1564
|
+
*
|
1565
|
+
* Returns the `Descriptor` for the response message type of this method
|
1566
|
+
*/
|
1567
|
+
static VALUE MethodDescriptor_output_type(VALUE _self) {
|
1568
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1569
|
+
const upb_MessageDef* type = upb_MethodDef_OutputType(self->methoddef);
|
1570
|
+
return get_msgdef_obj(self->descriptor_pool, type);
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
/*
|
1574
|
+
* call-seq:
|
1575
|
+
* MethodDescriptor.client_streaming => bool
|
1576
|
+
*
|
1577
|
+
* Returns whether or not this is a streaming request method
|
1578
|
+
*/
|
1579
|
+
static VALUE MethodDescriptor_client_streaming(VALUE _self) {
|
1580
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1581
|
+
return upb_MethodDef_ClientStreaming(self->methoddef) ? Qtrue : Qfalse;
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
/*
|
1585
|
+
* call-seq:
|
1586
|
+
* MethodDescriptor.server_streaming => bool
|
1587
|
+
*
|
1588
|
+
* Returns whether or not this is a streaming response method
|
1589
|
+
*/
|
1590
|
+
static VALUE MethodDescriptor_server_streaming(VALUE _self) {
|
1591
|
+
MethodDescriptor* self = ruby_to_MethodDescriptor(_self);
|
1592
|
+
return upb_MethodDef_ServerStreaming(self->methoddef) ? Qtrue : Qfalse;
|
1593
|
+
}
|
1594
|
+
|
1595
|
+
static void MethodDescriptor_register(VALUE module) {
|
1596
|
+
VALUE klass = rb_define_class_under(module, "MethodDescriptor", rb_cObject);
|
1597
|
+
rb_define_alloc_func(klass, MethodDescriptor_alloc);
|
1598
|
+
rb_define_method(klass, "initialize", MethodDescriptor_initialize, 3);
|
1599
|
+
rb_define_method(klass, "name", MethodDescriptor_name, 0);
|
1600
|
+
rb_define_method(klass, "options", MethodDescriptor_options, 0);
|
1601
|
+
rb_define_method(klass, "input_type", MethodDescriptor_input_type, 0);
|
1602
|
+
rb_define_method(klass, "output_type", MethodDescriptor_output_type, 0);
|
1603
|
+
rb_define_method(klass, "client_streaming", MethodDescriptor_client_streaming,
|
1604
|
+
0);
|
1605
|
+
rb_define_method(klass, "server_streaming", MethodDescriptor_server_streaming,
|
1606
|
+
0);
|
1607
|
+
rb_gc_register_address(&cMethodDescriptor);
|
1608
|
+
cMethodDescriptor = klass;
|
1609
|
+
}
|
1610
|
+
|
1149
1611
|
static VALUE get_def_obj(VALUE _descriptor_pool, const void* ptr, VALUE klass) {
|
1150
1612
|
DescriptorPool* descriptor_pool = ruby_to_DescriptorPool(_descriptor_pool);
|
1151
1613
|
VALUE key = ULL2NUM((intptr_t)ptr);
|
@@ -1187,6 +1649,16 @@ static VALUE get_oneofdef_obj(VALUE descriptor_pool, const upb_OneofDef* def) {
|
|
1187
1649
|
return get_def_obj(descriptor_pool, def, cOneofDescriptor);
|
1188
1650
|
}
|
1189
1651
|
|
1652
|
+
static VALUE get_servicedef_obj(VALUE descriptor_pool,
|
1653
|
+
const upb_ServiceDef* def) {
|
1654
|
+
return get_def_obj(descriptor_pool, def, cServiceDescriptor);
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
static VALUE get_methoddef_obj(VALUE descriptor_pool,
|
1658
|
+
const upb_MethodDef* def) {
|
1659
|
+
return get_def_obj(descriptor_pool, def, cMethodDescriptor);
|
1660
|
+
}
|
1661
|
+
|
1190
1662
|
// -----------------------------------------------------------------------------
|
1191
1663
|
// Shared functions
|
1192
1664
|
// -----------------------------------------------------------------------------
|
@@ -1262,6 +1734,8 @@ void Defs_register(VALUE module) {
|
|
1262
1734
|
FieldDescriptor_register(module);
|
1263
1735
|
OneofDescriptor_register(module);
|
1264
1736
|
EnumDescriptor_register(module);
|
1737
|
+
ServiceDescriptor_register(module);
|
1738
|
+
MethodDescriptor_register(module);
|
1265
1739
|
|
1266
1740
|
rb_gc_register_address(&c_only_cookie);
|
1267
1741
|
c_only_cookie = rb_class_new_instance(0, NULL, rb_cObject);
|