google-protobuf 4.31.0.rc.1-aarch64-linux-gnu

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 (70) hide show
  1. checksums.yaml +7 -0
  2. data/ext/google/protobuf_c/Rakefile +3 -0
  3. data/ext/google/protobuf_c/convert.c +335 -0
  4. data/ext/google/protobuf_c/convert.h +50 -0
  5. data/ext/google/protobuf_c/defs.c +1932 -0
  6. data/ext/google/protobuf_c/defs.h +82 -0
  7. data/ext/google/protobuf_c/extconf.rb +44 -0
  8. data/ext/google/protobuf_c/glue.c +135 -0
  9. data/ext/google/protobuf_c/map.c +731 -0
  10. data/ext/google/protobuf_c/map.h +48 -0
  11. data/ext/google/protobuf_c/message.c +1426 -0
  12. data/ext/google/protobuf_c/message.h +82 -0
  13. data/ext/google/protobuf_c/protobuf.c +357 -0
  14. data/ext/google/protobuf_c/protobuf.h +102 -0
  15. data/ext/google/protobuf_c/repeated_field.c +691 -0
  16. data/ext/google/protobuf_c/repeated_field.h +45 -0
  17. data/ext/google/protobuf_c/ruby-upb.c +18305 -0
  18. data/ext/google/protobuf_c/ruby-upb.h +16315 -0
  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/LICENSE +22 -0
  24. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +207 -0
  25. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +22 -0
  26. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_neon.inc +117 -0
  27. data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_sse.inc +272 -0
  28. data/ext/google/protobuf_c/wrap_memcpy.c +29 -0
  29. data/lib/google/3.1/protobuf_c.so +0 -0
  30. data/lib/google/3.2/protobuf_c.so +0 -0
  31. data/lib/google/3.3/protobuf_c.so +0 -0
  32. data/lib/google/3.4/protobuf_c.so +0 -0
  33. data/lib/google/protobuf/any_pb.rb +17 -0
  34. data/lib/google/protobuf/api_pb.rb +22 -0
  35. data/lib/google/protobuf/descriptor_pb.rb +70 -0
  36. data/lib/google/protobuf/duration_pb.rb +17 -0
  37. data/lib/google/protobuf/empty_pb.rb +17 -0
  38. data/lib/google/protobuf/ffi/descriptor.rb +175 -0
  39. data/lib/google/protobuf/ffi/descriptor_pool.rb +79 -0
  40. data/lib/google/protobuf/ffi/enum_descriptor.rb +183 -0
  41. data/lib/google/protobuf/ffi/ffi.rb +214 -0
  42. data/lib/google/protobuf/ffi/field_descriptor.rb +346 -0
  43. data/lib/google/protobuf/ffi/file_descriptor.rb +85 -0
  44. data/lib/google/protobuf/ffi/internal/arena.rb +60 -0
  45. data/lib/google/protobuf/ffi/internal/convert.rb +292 -0
  46. data/lib/google/protobuf/ffi/internal/pointer_helper.rb +36 -0
  47. data/lib/google/protobuf/ffi/internal/type_safety.rb +25 -0
  48. data/lib/google/protobuf/ffi/map.rb +433 -0
  49. data/lib/google/protobuf/ffi/message.rb +783 -0
  50. data/lib/google/protobuf/ffi/method_descriptor.rb +124 -0
  51. data/lib/google/protobuf/ffi/object_cache.rb +30 -0
  52. data/lib/google/protobuf/ffi/oneof_descriptor.rb +107 -0
  53. data/lib/google/protobuf/ffi/repeated_field.rb +411 -0
  54. data/lib/google/protobuf/ffi/service_descriptor.rb +117 -0
  55. data/lib/google/protobuf/field_mask_pb.rb +17 -0
  56. data/lib/google/protobuf/internal/object_cache.rb +99 -0
  57. data/lib/google/protobuf/message_exts.rb +39 -0
  58. data/lib/google/protobuf/plugin_pb.rb +25 -0
  59. data/lib/google/protobuf/repeated_field.rb +177 -0
  60. data/lib/google/protobuf/source_context_pb.rb +17 -0
  61. data/lib/google/protobuf/struct_pb.rb +20 -0
  62. data/lib/google/protobuf/timestamp_pb.rb +17 -0
  63. data/lib/google/protobuf/type_pb.rb +27 -0
  64. data/lib/google/protobuf/well_known_types.rb +211 -0
  65. data/lib/google/protobuf/wrappers_pb.rb +25 -0
  66. data/lib/google/protobuf.rb +61 -0
  67. data/lib/google/protobuf_ffi.rb +52 -0
  68. data/lib/google/protobuf_native.rb +19 -0
  69. data/lib/google/tasks/ffi.rake +100 -0
  70. metadata +215 -0
@@ -0,0 +1,82 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ //
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
7
+
8
+ #ifndef RUBY_PROTOBUF_DEFS_H_
9
+ #define RUBY_PROTOBUF_DEFS_H_
10
+
11
+ #include "protobuf.h"
12
+ #include "ruby-upb.h"
13
+
14
+ // -----------------------------------------------------------------------------
15
+ // TypeInfo
16
+ // -----------------------------------------------------------------------------
17
+
18
+ // This bundles a upb_CType and msgdef/enumdef when appropriate. This is
19
+ // convenient for functions that need type information but cannot necessarily
20
+ // assume a upb_FieldDef will be available.
21
+ //
22
+ // For example, Google::Protobuf::Map and Google::Protobuf::RepeatedField can
23
+ // be constructed with type information alone:
24
+ //
25
+ // # RepeatedField will internally store the type information in a TypeInfo.
26
+ // Google::Protobuf::RepeatedField.new(:message, FooMessage)
27
+
28
+ typedef struct {
29
+ upb_CType type;
30
+ union {
31
+ const upb_MessageDef* msgdef; // When type == kUpb_CType_Message
32
+ const upb_EnumDef* enumdef; // When type == kUpb_CType_Enum
33
+ } def;
34
+ } TypeInfo;
35
+
36
+ static inline TypeInfo TypeInfo_get(const upb_FieldDef* f) {
37
+ TypeInfo ret = {upb_FieldDef_CType(f), {NULL}};
38
+ switch (ret.type) {
39
+ case kUpb_CType_Message:
40
+ ret.def.msgdef = upb_FieldDef_MessageSubDef(f);
41
+ break;
42
+ case kUpb_CType_Enum:
43
+ ret.def.enumdef = upb_FieldDef_EnumSubDef(f);
44
+ break;
45
+ default:
46
+ break;
47
+ }
48
+ return ret;
49
+ }
50
+
51
+ TypeInfo TypeInfo_FromClass(int argc, VALUE* argv, int skip_arg,
52
+ VALUE* type_class, VALUE* init_arg);
53
+
54
+ static inline TypeInfo TypeInfo_from_type(upb_CType type) {
55
+ TypeInfo ret = {type};
56
+ assert(type != kUpb_CType_Message && type != kUpb_CType_Enum);
57
+ return ret;
58
+ }
59
+
60
+ // -----------------------------------------------------------------------------
61
+ // Other utilities
62
+ // -----------------------------------------------------------------------------
63
+
64
+ VALUE Descriptor_DefToClass(const upb_MessageDef* m);
65
+
66
+ // Returns the underlying msgdef, enumdef, or symtab (respectively) for the
67
+ // given Descriptor, EnumDescriptor, or DescriptorPool Ruby object.
68
+ const upb_EnumDef* EnumDescriptor_GetEnumDef(VALUE enum_desc_rb);
69
+ const upb_DefPool* DescriptorPool_GetSymtab(VALUE desc_pool_rb);
70
+ const upb_MessageDef* Descriptor_GetMsgDef(VALUE desc_rb);
71
+
72
+ // Returns a upb field type for the given Ruby symbol
73
+ // (eg. :float => kUpb_CType_Float).
74
+ upb_CType ruby_to_fieldtype(VALUE type);
75
+
76
+ // The singleton generated pool (a DescriptorPool object).
77
+ extern VALUE generated_pool;
78
+
79
+ // Call at startup to register all types in this module.
80
+ void Defs_register(VALUE module);
81
+
82
+ #endif // RUBY_PROTOBUF_DEFS_H_
@@ -0,0 +1,44 @@
1
+ #!/usr/bin/ruby
2
+
3
+ require 'mkmf'
4
+
5
+ ext_name = "google/protobuf_c"
6
+
7
+ dir_config(ext_name)
8
+
9
+ if ENV["CC"]
10
+ RbConfig::CONFIG["CC"] = RbConfig::MAKEFILE_CONFIG["CC"] = ENV["CC"]
11
+ end
12
+
13
+ if ENV["CXX"]
14
+ RbConfig::CONFIG["CXX"] = RbConfig::MAKEFILE_CONFIG["CXX"] = ENV["CXX"]
15
+ end
16
+
17
+ if ENV["LD"]
18
+ RbConfig::CONFIG["LD"] = RbConfig::MAKEFILE_CONFIG["LD"] = ENV["LD"]
19
+ end
20
+
21
+ debug_enabled = ENV["PROTOBUF_CONFIG"] == "dbg"
22
+
23
+ additional_c_flags = debug_enabled ? "-O0 -fno-omit-frame-pointer -fvisibility=default -g" : "-O3 -DNDEBUG -fvisibility=hidden"
24
+
25
+ if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /freebsd/
26
+ $CFLAGS += " -std=gnu99 -Wall -Wsign-compare -Wno-declaration-after-statement #{additional_c_flags}"
27
+ else
28
+ $CFLAGS += " -std=gnu99 #{additional_c_flags}"
29
+ end
30
+
31
+ if RUBY_PLATFORM =~ /linux/
32
+ # Instruct the linker to point memcpy calls at our __wrap_memcpy wrapper.
33
+ $LDFLAGS += " -Wl,-wrap,memcpy"
34
+ end
35
+
36
+ $VPATH << "$(srcdir)/third_party/utf8_range"
37
+ $INCFLAGS += " -I$(srcdir)/third_party/utf8_range"
38
+
39
+ $srcs = ["protobuf.c", "convert.c", "defs.c", "message.c",
40
+ "repeated_field.c", "map.c", "ruby-upb.c", "wrap_memcpy.c",
41
+ "utf8_range.c", "shared_convert.c",
42
+ "shared_message.c"]
43
+
44
+ create_makefile(ext_name)
@@ -0,0 +1,135 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2023 Google Inc. All rights reserved.
3
+ //
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
7
+
8
+ // -----------------------------------------------------------------------------
9
+ // Exposing inlined UPB functions. Strictly free of dependencies on
10
+ // Ruby interpreter internals.
11
+
12
+ #include "ruby-upb.h"
13
+
14
+ upb_Arena* Arena_create() { return upb_Arena_Init(NULL, 0, &upb_alloc_global); }
15
+
16
+ google_protobuf_FileDescriptorProto* FileDescriptorProto_parse(
17
+ const char* serialized_file_proto, size_t length, upb_Arena* arena) {
18
+ return google_protobuf_FileDescriptorProto_parse(serialized_file_proto,
19
+ length, arena);
20
+ }
21
+
22
+ char* EnumDescriptor_serialized_options(const upb_EnumDef* enumdef,
23
+ size_t* size, upb_Arena* arena) {
24
+ const google_protobuf_EnumOptions* opts = upb_EnumDef_Options(enumdef);
25
+ char* serialized = google_protobuf_EnumOptions_serialize(opts, arena, size);
26
+ return serialized;
27
+ }
28
+
29
+ char* EnumDescriptor_serialized_to_proto(const upb_EnumDef* enumdef,
30
+ size_t* size, upb_Arena* arena) {
31
+ const google_protobuf_EnumDescriptorProto* file_proto =
32
+ upb_EnumDef_ToProto(enumdef, arena);
33
+ char* serialized =
34
+ google_protobuf_EnumDescriptorProto_serialize(file_proto, arena, size);
35
+ return serialized;
36
+ }
37
+
38
+ char* FileDescriptor_serialized_options(const upb_FileDef* filedef,
39
+ size_t* size, upb_Arena* arena) {
40
+ const google_protobuf_FileOptions* opts = upb_FileDef_Options(filedef);
41
+ char* serialized = google_protobuf_FileOptions_serialize(opts, arena, size);
42
+ return serialized;
43
+ }
44
+
45
+ char* FileDescriptor_serialized_to_proto(const upb_FileDef* filedef,
46
+ size_t* size, upb_Arena* arena) {
47
+ const google_protobuf_FileDescriptorProto* file_proto =
48
+ upb_FileDef_ToProto(filedef, arena);
49
+ char* serialized =
50
+ google_protobuf_FileDescriptorProto_serialize(file_proto, arena, size);
51
+ return serialized;
52
+ }
53
+
54
+ char* Descriptor_serialized_options(const upb_MessageDef* msgdef, size_t* size,
55
+ upb_Arena* arena) {
56
+ const google_protobuf_MessageOptions* opts = upb_MessageDef_Options(msgdef);
57
+ char* serialized =
58
+ google_protobuf_MessageOptions_serialize(opts, arena, size);
59
+ return serialized;
60
+ }
61
+
62
+ char* Descriptor_serialized_to_proto(const upb_MessageDef* msgdef, size_t* size,
63
+ upb_Arena* arena) {
64
+ const google_protobuf_DescriptorProto* proto =
65
+ upb_MessageDef_ToProto(msgdef, arena);
66
+ char* serialized =
67
+ google_protobuf_DescriptorProto_serialize(proto, arena, size);
68
+ return serialized;
69
+ }
70
+
71
+ char* OneOfDescriptor_serialized_options(const upb_OneofDef* oneofdef,
72
+ size_t* size, upb_Arena* arena) {
73
+ const google_protobuf_OneofOptions* opts = upb_OneofDef_Options(oneofdef);
74
+ char* serialized = google_protobuf_OneofOptions_serialize(opts, arena, size);
75
+ return serialized;
76
+ }
77
+
78
+ char* OneOfDescriptor_serialized_to_proto(const upb_OneofDef* oneofdef,
79
+ size_t* size, upb_Arena* arena) {
80
+ const google_protobuf_OneofDescriptorProto* proto =
81
+ upb_OneofDef_ToProto(oneofdef, arena);
82
+ char* serialized =
83
+ google_protobuf_OneofDescriptorProto_serialize(proto, arena, size);
84
+ return serialized;
85
+ }
86
+
87
+ char* FieldDescriptor_serialized_options(const upb_FieldDef* fielddef,
88
+ size_t* size, upb_Arena* arena) {
89
+ const google_protobuf_FieldOptions* opts = upb_FieldDef_Options(fielddef);
90
+ char* serialized = google_protobuf_FieldOptions_serialize(opts, arena, size);
91
+ return serialized;
92
+ }
93
+
94
+ char* FieldDescriptor_serialized_to_proto(const upb_FieldDef* fieldef,
95
+ size_t* size, upb_Arena* arena) {
96
+ const google_protobuf_FieldDescriptorProto* proto =
97
+ upb_FieldDef_ToProto(fieldef, arena);
98
+ char* serialized =
99
+ google_protobuf_FieldDescriptorProto_serialize(proto, arena, size);
100
+ return serialized;
101
+ }
102
+
103
+ char* ServiceDescriptor_serialized_options(const upb_ServiceDef* servicedef,
104
+ size_t* size, upb_Arena* arena) {
105
+ const google_protobuf_ServiceOptions* opts =
106
+ upb_ServiceDef_Options(servicedef);
107
+ char* serialized =
108
+ google_protobuf_ServiceOptions_serialize(opts, arena, size);
109
+ return serialized;
110
+ }
111
+
112
+ char* ServiceDescriptor_serialized_to_proto(const upb_ServiceDef* servicedef,
113
+ size_t* size, upb_Arena* arena) {
114
+ const google_protobuf_ServiceDescriptorProto* proto =
115
+ upb_ServiceDef_ToProto(servicedef, arena);
116
+ char* serialized =
117
+ google_protobuf_ServiceDescriptorProto_serialize(proto, arena, size);
118
+ return serialized;
119
+ }
120
+
121
+ char* MethodDescriptor_serialized_options(const upb_MethodDef* methoddef,
122
+ size_t* size, upb_Arena* arena) {
123
+ const google_protobuf_MethodOptions* opts = upb_MethodDef_Options(methoddef);
124
+ char* serialized = google_protobuf_MethodOptions_serialize(opts, arena, size);
125
+ return serialized;
126
+ }
127
+
128
+ char* MethodDescriptor_serialized_to_proto(const upb_MethodDef* methodef,
129
+ size_t* size, upb_Arena* arena) {
130
+ const google_protobuf_MethodDescriptorProto* proto =
131
+ upb_MethodDef_ToProto(methodef, arena);
132
+ char* serialized =
133
+ google_protobuf_MethodDescriptorProto_serialize(proto, arena, size);
134
+ return serialized;
135
+ }