google-protobuf 3.11.1 → 3.25.5
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/Rakefile +3 -0
- data/ext/google/protobuf_c/convert.c +314 -0
- data/ext/google/protobuf_c/convert.h +50 -0
- data/ext/google/protobuf_c/defs.c +745 -1620
- data/ext/google/protobuf_c/defs.h +82 -0
- data/ext/google/protobuf_c/extconf.rb +15 -8
- data/ext/google/protobuf_c/glue.c +56 -0
- data/ext/google/protobuf_c/map.c +336 -512
- data/ext/google/protobuf_c/map.h +44 -0
- data/ext/google/protobuf_c/message.c +1096 -520
- data/ext/google/protobuf_c/message.h +86 -0
- data/ext/google/protobuf_c/protobuf.c +301 -94
- data/ext/google/protobuf_c/protobuf.h +66 -620
- data/ext/google/protobuf_c/repeated_field.c +323 -353
- data/ext/google/protobuf_c/repeated_field.h +41 -0
- data/ext/google/protobuf_c/ruby-upb.c +14414 -0
- data/ext/google/protobuf_c/ruby-upb.h +13044 -0
- data/ext/google/protobuf_c/shared_convert.c +64 -0
- data/ext/google/protobuf_c/shared_convert.h +26 -0
- data/ext/google/protobuf_c/shared_message.c +65 -0
- data/ext/google/protobuf_c/shared_message.h +25 -0
- data/ext/google/protobuf_c/third_party/utf8_range/LICENSE +22 -0
- data/ext/google/protobuf_c/third_party/utf8_range/naive.c +92 -0
- data/ext/google/protobuf_c/third_party/utf8_range/range2-neon.c +157 -0
- data/ext/google/protobuf_c/third_party/utf8_range/range2-sse.c +170 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +21 -0
- data/ext/google/protobuf_c/wrap_memcpy.c +7 -29
- data/lib/google/protobuf/any_pb.rb +24 -5
- data/lib/google/protobuf/api_pb.rb +27 -23
- data/lib/google/protobuf/descriptor_dsl.rb +465 -0
- data/lib/google/protobuf/descriptor_pb.rb +86 -0
- data/lib/google/protobuf/duration_pb.rb +24 -5
- data/lib/google/protobuf/empty_pb.rb +24 -3
- data/lib/google/protobuf/ffi/descriptor.rb +165 -0
- data/lib/google/protobuf/ffi/descriptor_pool.rb +75 -0
- data/lib/google/protobuf/ffi/enum_descriptor.rb +171 -0
- data/lib/google/protobuf/ffi/ffi.rb +213 -0
- data/lib/google/protobuf/ffi/field_descriptor.rb +319 -0
- data/lib/google/protobuf/ffi/file_descriptor.rb +59 -0
- data/lib/google/protobuf/ffi/internal/arena.rb +66 -0
- data/lib/google/protobuf/ffi/internal/convert.rb +305 -0
- data/lib/google/protobuf/ffi/internal/pointer_helper.rb +35 -0
- data/lib/google/protobuf/ffi/internal/type_safety.rb +25 -0
- data/lib/google/protobuf/ffi/map.rb +407 -0
- data/lib/google/protobuf/ffi/message.rb +662 -0
- data/lib/google/protobuf/ffi/object_cache.rb +30 -0
- data/lib/google/protobuf/ffi/oneof_descriptor.rb +95 -0
- data/lib/google/protobuf/ffi/repeated_field.rb +383 -0
- data/lib/google/protobuf/field_mask_pb.rb +24 -4
- data/lib/google/protobuf/message_exts.rb +10 -28
- data/lib/google/protobuf/object_cache.rb +97 -0
- data/lib/google/protobuf/plugin_pb.rb +47 -0
- data/lib/google/protobuf/repeated_field.rb +18 -28
- data/lib/google/protobuf/source_context_pb.rb +24 -4
- data/lib/google/protobuf/struct_pb.rb +24 -20
- data/lib/google/protobuf/timestamp_pb.rb +24 -5
- data/lib/google/protobuf/type_pb.rb +27 -68
- data/lib/google/protobuf/well_known_types.rb +17 -36
- data/lib/google/protobuf/wrappers_pb.rb +24 -28
- data/lib/google/protobuf.rb +32 -118
- data/lib/google/protobuf_ffi.rb +50 -0
- data/lib/google/protobuf_native.rb +20 -0
- data/lib/google/tasks/ffi.rake +102 -0
- metadata +92 -32
- data/ext/google/protobuf_c/encode_decode.c +0 -1758
- data/ext/google/protobuf_c/storage.c +0 -1149
- data/ext/google/protobuf_c/upb.c +0 -13289
- data/ext/google/protobuf_c/upb.h +0 -7085
- data/tests/basic.rb +0 -445
- data/tests/generated_code_test.rb +0 -23
- data/tests/stress.rb +0 -38
@@ -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_
|
@@ -2,20 +2,27 @@
|
|
2
2
|
|
3
3
|
require 'mkmf'
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
ext_name = "google/protobuf_c"
|
6
|
+
|
7
|
+
dir_config(ext_name)
|
8
|
+
|
9
|
+
if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /freebsd/
|
10
|
+
$CFLAGS += " -std=gnu99 -O3 -DNDEBUG -fvisibility=hidden -Wall -Wsign-compare -Wno-declaration-after-statement"
|
7
11
|
else
|
8
|
-
$CFLAGS += " -std=
|
12
|
+
$CFLAGS += " -std=gnu99 -O3 -DNDEBUG"
|
9
13
|
end
|
10
14
|
|
11
|
-
|
12
15
|
if RUBY_PLATFORM =~ /linux/
|
13
16
|
# Instruct the linker to point memcpy calls at our __wrap_memcpy wrapper.
|
14
17
|
$LDFLAGS += " -Wl,-wrap,memcpy"
|
15
18
|
end
|
16
19
|
|
17
|
-
$
|
18
|
-
|
19
|
-
|
20
|
+
$VPATH << "$(srcdir)/third_party/utf8_range"
|
21
|
+
$INCFLAGS += " -I$(srcdir)/third_party/utf8_range"
|
22
|
+
|
23
|
+
$srcs = ["protobuf.c", "convert.c", "defs.c", "message.c",
|
24
|
+
"repeated_field.c", "map.c", "ruby-upb.c", "wrap_memcpy.c",
|
25
|
+
"naive.c", "range2-neon.c", "range2-sse.c", "shared_convert.c",
|
26
|
+
"shared_message.c"]
|
20
27
|
|
21
|
-
create_makefile(
|
28
|
+
create_makefile(ext_name)
|
@@ -0,0 +1,56 @@
|
|
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* FileDescriptor_serialized_options(const upb_FileDef* filedef,
|
30
|
+
size_t* size, upb_Arena* arena) {
|
31
|
+
const google_protobuf_FileOptions* opts = upb_FileDef_Options(filedef);
|
32
|
+
char* serialized = google_protobuf_FileOptions_serialize(opts, arena, size);
|
33
|
+
return serialized;
|
34
|
+
}
|
35
|
+
|
36
|
+
char* Descriptor_serialized_options(const upb_MessageDef* msgdef, size_t* size,
|
37
|
+
upb_Arena* arena) {
|
38
|
+
const google_protobuf_MessageOptions* opts = upb_MessageDef_Options(msgdef);
|
39
|
+
char* serialized =
|
40
|
+
google_protobuf_MessageOptions_serialize(opts, arena, size);
|
41
|
+
return serialized;
|
42
|
+
}
|
43
|
+
|
44
|
+
char* OneOfDescriptor_serialized_options(const upb_OneofDef* oneofdef,
|
45
|
+
size_t* size, upb_Arena* arena) {
|
46
|
+
const google_protobuf_OneofOptions* opts = upb_OneofDef_Options(oneofdef);
|
47
|
+
char* serialized = google_protobuf_OneofOptions_serialize(opts, arena, size);
|
48
|
+
return serialized;
|
49
|
+
}
|
50
|
+
|
51
|
+
char* FieldDescriptor_serialized_options(const upb_FieldDef* fielddef,
|
52
|
+
size_t* size, upb_Arena* arena) {
|
53
|
+
const google_protobuf_FieldOptions* opts = upb_FieldDef_Options(fielddef);
|
54
|
+
char* serialized = google_protobuf_FieldOptions_serialize(opts, arena, size);
|
55
|
+
return serialized;
|
56
|
+
}
|