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
data/lib/google/protobuf.rb
CHANGED
@@ -1,35 +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
|
-
#
|
6
|
-
#
|
7
|
-
#
|
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
|
# require mixins before we hook them into the java & c code
|
32
9
|
require 'google/protobuf/message_exts'
|
10
|
+
require 'google/protobuf/object_cache'
|
33
11
|
|
34
12
|
# We define these before requiring the platform-specific modules.
|
35
13
|
# That way the module init can grab references to these.
|
@@ -38,110 +16,46 @@ module Google
|
|
38
16
|
class Error < StandardError; end
|
39
17
|
class ParseError < Error; end
|
40
18
|
class TypeError < ::TypeError; end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
if RUBY_PLATFORM == "java"
|
45
|
-
require 'json'
|
46
|
-
require 'google/protobuf_java'
|
47
|
-
else
|
48
|
-
begin
|
49
|
-
require "google/#{RUBY_VERSION.sub(/\.\d+$/, '')}/protobuf_c"
|
50
|
-
rescue LoadError
|
51
|
-
require 'google/protobuf_c'
|
52
|
-
end
|
53
|
-
|
54
|
-
module Google
|
55
|
-
module Protobuf
|
56
|
-
module Internal
|
57
|
-
def self.infer_package(names)
|
58
|
-
# Package is longest common prefix ending in '.', if any.
|
59
|
-
if not names.empty?
|
60
|
-
min, max = names.minmax
|
61
|
-
last_common_dot = nil
|
62
|
-
min.size.times { |i|
|
63
|
-
if min[i] != max[i] then break end
|
64
|
-
if min[i] == ?. then last_common_dot = i end
|
65
|
-
}
|
66
|
-
if last_common_dot
|
67
|
-
return min.slice(0, last_common_dot)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
nil
|
72
|
-
end
|
73
|
-
|
74
|
-
class NestingBuilder
|
75
|
-
def initialize(msg_names, enum_names)
|
76
|
-
@to_pos = {nil=>nil}
|
77
|
-
@msg_children = Hash.new { |hash, key| hash[key] = [] }
|
78
|
-
@enum_children = Hash.new { |hash, key| hash[key] = [] }
|
79
|
-
|
80
|
-
msg_names.each_with_index { |name, idx| @to_pos[name] = idx }
|
81
|
-
enum_names.each_with_index { |name, idx| @to_pos[name] = idx }
|
82
|
-
|
83
|
-
msg_names.each { |name| @msg_children[parent(name)] << name }
|
84
|
-
enum_names.each { |name| @enum_children[parent(name)] << name }
|
85
|
-
end
|
86
|
-
|
87
|
-
def build(package)
|
88
|
-
return build_msg(package)
|
89
|
-
end
|
90
|
-
|
91
|
-
private
|
92
|
-
def build_msg(msg)
|
93
|
-
return {
|
94
|
-
:pos => @to_pos[msg],
|
95
|
-
:msgs => @msg_children[msg].map { |child| build_msg(child) },
|
96
|
-
:enums => @enum_children[msg].map { |child| @to_pos[child] },
|
97
|
-
}
|
98
|
-
end
|
99
|
-
|
100
|
-
private
|
101
|
-
def parent(name)
|
102
|
-
idx = name.rindex(?.)
|
103
|
-
if idx
|
104
|
-
return name.slice(0, idx)
|
105
|
-
else
|
106
|
-
return nil
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
19
|
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
end
|
124
|
-
|
125
|
-
require 'google/protobuf/repeated_field'
|
126
|
-
|
127
|
-
module Google
|
128
|
-
module Protobuf
|
129
|
-
|
130
|
-
def self.encode(msg)
|
131
|
-
msg.to_proto
|
20
|
+
PREFER_FFI = case ENV['PROTOCOL_BUFFERS_RUBY_IMPLEMENTATION']
|
21
|
+
when nil, "", /^native$/i
|
22
|
+
false
|
23
|
+
when /^ffi$/i
|
24
|
+
true
|
25
|
+
else
|
26
|
+
warn "Unexpected value `#{ENV['PROTOCOL_BUFFERS_RUBY_IMPLEMENTATION']}` for environment variable `PROTOCOL_BUFFERS_RUBY_IMPLEMENTATION`. Should be either \"FFI\", \"NATIVE\"."
|
27
|
+
false
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.encode(msg, options = {})
|
31
|
+
msg.to_proto(options)
|
132
32
|
end
|
133
33
|
|
134
34
|
def self.encode_json(msg, options = {})
|
135
35
|
msg.to_json(options)
|
136
36
|
end
|
137
37
|
|
138
|
-
def self.decode(klass, proto)
|
139
|
-
klass.decode(proto)
|
38
|
+
def self.decode(klass, proto, options = {})
|
39
|
+
klass.decode(proto, options)
|
140
40
|
end
|
141
41
|
|
142
42
|
def self.decode_json(klass, json, options = {})
|
143
43
|
klass.decode_json(json, options)
|
144
44
|
end
|
145
45
|
|
46
|
+
IMPLEMENTATION = if PREFER_FFI
|
47
|
+
begin
|
48
|
+
require 'google/protobuf_ffi'
|
49
|
+
:FFI
|
50
|
+
rescue LoadError
|
51
|
+
warn "Caught exception `#{$!.message}` while loading FFI implementation of google/protobuf."
|
52
|
+
warn "Falling back to native implementation."
|
53
|
+
require 'google/protobuf_native'
|
54
|
+
:NATIVE
|
55
|
+
end
|
56
|
+
else
|
57
|
+
require 'google/protobuf_native'
|
58
|
+
:NATIVE
|
59
|
+
end
|
146
60
|
end
|
147
61
|
end
|
@@ -0,0 +1,50 @@
|
|
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
|
+
require 'ffi-compiler/loader'
|
9
|
+
require 'google/protobuf/ffi/ffi'
|
10
|
+
require 'google/protobuf/ffi/internal/type_safety'
|
11
|
+
require 'google/protobuf/ffi/internal/pointer_helper'
|
12
|
+
require 'google/protobuf/ffi/internal/arena'
|
13
|
+
require 'google/protobuf/ffi/internal/convert'
|
14
|
+
require 'google/protobuf/ffi/descriptor'
|
15
|
+
require 'google/protobuf/ffi/enum_descriptor'
|
16
|
+
require 'google/protobuf/ffi/field_descriptor'
|
17
|
+
require 'google/protobuf/ffi/oneof_descriptor'
|
18
|
+
require 'google/protobuf/ffi/descriptor_pool'
|
19
|
+
require 'google/protobuf/ffi/file_descriptor'
|
20
|
+
require 'google/protobuf/ffi/map'
|
21
|
+
require 'google/protobuf/ffi/object_cache'
|
22
|
+
require 'google/protobuf/ffi/repeated_field'
|
23
|
+
require 'google/protobuf/ffi/message'
|
24
|
+
require 'google/protobuf/descriptor_dsl'
|
25
|
+
|
26
|
+
module Google
|
27
|
+
module Protobuf
|
28
|
+
def self.deep_copy(object)
|
29
|
+
case object
|
30
|
+
when RepeatedField
|
31
|
+
RepeatedField.send(:deep_copy, object)
|
32
|
+
when Google::Protobuf::Map
|
33
|
+
Google::Protobuf::Map.deep_copy(object)
|
34
|
+
when Google::Protobuf::MessageExts
|
35
|
+
object.class.send(:deep_copy, object.instance_variable_get(:@msg))
|
36
|
+
else
|
37
|
+
raise NotImplementedError
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.discard_unknown(message)
|
42
|
+
raise FrozenError if message.frozen?
|
43
|
+
raise ArgumentError.new "Expected message, got #{message.class} instead." if message.instance_variable_get(:@msg).nil?
|
44
|
+
unless Google::Protobuf::FFI.message_discard_unknown(message.instance_variable_get(:@msg), message.class.descriptor, 128)
|
45
|
+
raise RuntimeError.new "Messages nested too deeply."
|
46
|
+
end
|
47
|
+
nil
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,20 @@
|
|
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
|
+
if RUBY_PLATFORM == "java"
|
9
|
+
require 'json'
|
10
|
+
require 'google/protobuf_java'
|
11
|
+
else
|
12
|
+
begin
|
13
|
+
require "google/#{RUBY_VERSION.sub(/\.\d+$/, '')}/protobuf_c"
|
14
|
+
rescue LoadError
|
15
|
+
require 'google/protobuf_c'
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'google/protobuf/descriptor_dsl'
|
20
|
+
require 'google/protobuf/repeated_field'
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# # @param task [FFI::Compiler::CompileTask] task to configure
|
2
|
+
def configure_common_compile_task(task)
|
3
|
+
if FileUtils.pwd.include? 'ext'
|
4
|
+
src_dir = '.'
|
5
|
+
third_party_path = 'third_party/utf8_range'
|
6
|
+
else
|
7
|
+
src_dir = 'ext/google/protobuf_c'
|
8
|
+
third_party_path = 'ext/google/protobuf_c/third_party/utf8_range'
|
9
|
+
end
|
10
|
+
|
11
|
+
task.add_include_path third_party_path
|
12
|
+
task.add_define 'NDEBUG'
|
13
|
+
task.cflags << "-std=gnu99 -O3"
|
14
|
+
[
|
15
|
+
:convert, :defs, :map, :message, :protobuf, :repeated_field, :wrap_memcpy
|
16
|
+
].each { |file| task.exclude << "/#{file}.c" }
|
17
|
+
task.ext_dir = src_dir
|
18
|
+
task.source_dirs = [src_dir]
|
19
|
+
if RbConfig::CONFIG['target_os'] =~ /darwin|linux/
|
20
|
+
task.cflags << "-Wall -Wsign-compare -Wno-declaration-after-statement"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# FFI::CompilerTask's constructor walks the filesystem at task definition time
|
25
|
+
# to create subtasks for each source file, so files from third_party must be
|
26
|
+
# copied into place before the task is defined for it to work correctly.
|
27
|
+
# TODO Is there a sane way to check for generated protos under lib too?
|
28
|
+
def with_generated_files
|
29
|
+
expected_path = FileUtils.pwd.include?('ext') ? 'third_party/utf8_range' : 'ext/google/protobuf_c/third_party/utf8_range'
|
30
|
+
if File.directory?(expected_path)
|
31
|
+
yield
|
32
|
+
else
|
33
|
+
task :default do
|
34
|
+
# It is possible, especially in cases like the first invocation of
|
35
|
+
# `rake test` following `rake clean` or a fresh checkout that the
|
36
|
+
# `copy_third_party` task has been executed since initial task definition.
|
37
|
+
# If so, run the task definition block now and invoke it explicitly.
|
38
|
+
if File.directory?(expected_path)
|
39
|
+
yield
|
40
|
+
Rake::Task[:default].invoke
|
41
|
+
else
|
42
|
+
raise "Missing directory #{File.absolute_path(expected_path)}." +
|
43
|
+
" Did you forget to run `rake copy_third_party` before building" +
|
44
|
+
" native extensions?"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
begin
|
51
|
+
require "ffi-compiler/compile_task"
|
52
|
+
|
53
|
+
desc "Compile Protobuf library for FFI"
|
54
|
+
namespace "ffi-protobuf" do
|
55
|
+
with_generated_files do
|
56
|
+
# Compile Ruby UPB separately in order to limit use of -DUPB_BUILD_API to one
|
57
|
+
# compilation unit.
|
58
|
+
desc "Compile UPB library for FFI"
|
59
|
+
namespace "ffi-upb" do
|
60
|
+
with_generated_files do
|
61
|
+
FFI::Compiler::CompileTask.new('ruby-upb') do |c|
|
62
|
+
configure_common_compile_task c
|
63
|
+
c.add_define "UPB_BUILD_API"
|
64
|
+
c.exclude << "/glue.c"
|
65
|
+
c.exclude << "/shared_message.c"
|
66
|
+
c.exclude << "/shared_convert.c"
|
67
|
+
if RbConfig::CONFIG['target_os'] =~ /darwin|linux/
|
68
|
+
c.cflags << "-fvisibility=hidden"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
FFI::Compiler::CompileTask.new 'protobuf_c_ffi' do |c|
|
75
|
+
configure_common_compile_task c
|
76
|
+
# Ruby UPB was already compiled with different flags.
|
77
|
+
c.exclude << "/range2-neon.c"
|
78
|
+
c.exclude << "/range2-sse.c"
|
79
|
+
c.exclude << "/naive.c"
|
80
|
+
c.exclude << "/ruby-upb.c"
|
81
|
+
end
|
82
|
+
|
83
|
+
# Setup dependencies so that the .o files generated by building ffi-upb are
|
84
|
+
# available to link here.
|
85
|
+
# TODO Can this be simplified? Can the single shared library be used
|
86
|
+
# instead of the object files?
|
87
|
+
protobuf_c_task = Rake::Task[:default]
|
88
|
+
protobuf_c_shared_lib_task = Rake::Task[protobuf_c_task.prereqs.last]
|
89
|
+
ruby_upb_shared_lib_task = Rake::Task[:"ffi-upb:default"].prereqs.first
|
90
|
+
Rake::Task[ruby_upb_shared_lib_task].prereqs.each do |dependency|
|
91
|
+
protobuf_c_shared_lib_task.prereqs.prepend dependency
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
rescue LoadError
|
96
|
+
desc "Compile Protobuf library for FFI"
|
97
|
+
namespace "ffi-protobuf" do
|
98
|
+
task :default do
|
99
|
+
warn "Skipping build of FFI; `gem install ffi-compiler` to enable."
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
metadata
CHANGED
@@ -1,103 +1,166 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.25.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.2.1
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.2.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - "~>"
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
33
|
+
version: '13'
|
20
34
|
type: :development
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
24
38
|
- - "~>"
|
25
39
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
40
|
+
version: '13'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
42
|
+
name: ffi
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - "~>"
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
47
|
+
version: '1'
|
34
48
|
type: :development
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - "~>"
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
54
|
+
version: '1'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
56
|
+
name: ffi-compiler
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
59
|
- - "~>"
|
46
60
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 3.0.9
|
61
|
+
version: '1'
|
51
62
|
type: :development
|
52
63
|
prerelease: false
|
53
64
|
version_requirements: !ruby/object:Gem::Requirement
|
54
65
|
requirements:
|
55
66
|
- - "~>"
|
56
67
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
58
|
-
|
68
|
+
version: '1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake-compiler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
59
74
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
75
|
+
version: 1.1.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.1.0
|
61
83
|
- !ruby/object:Gem::Dependency
|
62
|
-
name:
|
84
|
+
name: test-unit
|
63
85
|
requirement: !ruby/object:Gem::Requirement
|
64
86
|
requirements:
|
65
87
|
- - "~>"
|
66
88
|
- !ruby/object:Gem::Version
|
67
|
-
version: 0
|
89
|
+
version: '3.0'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 3.0.9
|
68
93
|
type: :development
|
69
94
|
prerelease: false
|
70
95
|
version_requirements: !ruby/object:Gem::Requirement
|
71
96
|
requirements:
|
72
97
|
- - "~>"
|
73
98
|
- !ruby/object:Gem::Version
|
74
|
-
version: 0
|
99
|
+
version: '3.0'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 3.0.9
|
75
103
|
description: Protocol Buffers are Google's data interchange format.
|
76
104
|
email: protobuf@googlegroups.com
|
77
105
|
executables: []
|
78
106
|
extensions:
|
79
107
|
- ext/google/protobuf_c/extconf.rb
|
108
|
+
- ext/google/protobuf_c/Rakefile
|
80
109
|
extra_rdoc_files: []
|
81
110
|
files:
|
111
|
+
- ext/google/protobuf_c/Rakefile
|
112
|
+
- ext/google/protobuf_c/convert.c
|
113
|
+
- ext/google/protobuf_c/convert.h
|
82
114
|
- ext/google/protobuf_c/defs.c
|
83
|
-
- ext/google/protobuf_c/
|
115
|
+
- ext/google/protobuf_c/defs.h
|
84
116
|
- ext/google/protobuf_c/extconf.rb
|
117
|
+
- ext/google/protobuf_c/glue.c
|
85
118
|
- ext/google/protobuf_c/map.c
|
119
|
+
- ext/google/protobuf_c/map.h
|
86
120
|
- ext/google/protobuf_c/message.c
|
121
|
+
- ext/google/protobuf_c/message.h
|
87
122
|
- ext/google/protobuf_c/protobuf.c
|
88
123
|
- ext/google/protobuf_c/protobuf.h
|
89
124
|
- ext/google/protobuf_c/repeated_field.c
|
90
|
-
- ext/google/protobuf_c/
|
91
|
-
- ext/google/protobuf_c/upb.c
|
92
|
-
- ext/google/protobuf_c/upb.h
|
125
|
+
- ext/google/protobuf_c/repeated_field.h
|
126
|
+
- ext/google/protobuf_c/ruby-upb.c
|
127
|
+
- ext/google/protobuf_c/ruby-upb.h
|
128
|
+
- ext/google/protobuf_c/shared_convert.c
|
129
|
+
- ext/google/protobuf_c/shared_convert.h
|
130
|
+
- ext/google/protobuf_c/shared_message.c
|
131
|
+
- ext/google/protobuf_c/shared_message.h
|
132
|
+
- ext/google/protobuf_c/third_party/utf8_range/LICENSE
|
133
|
+
- ext/google/protobuf_c/third_party/utf8_range/naive.c
|
134
|
+
- ext/google/protobuf_c/third_party/utf8_range/range2-neon.c
|
135
|
+
- ext/google/protobuf_c/third_party/utf8_range/range2-sse.c
|
136
|
+
- ext/google/protobuf_c/third_party/utf8_range/utf8_range.h
|
93
137
|
- ext/google/protobuf_c/wrap_memcpy.c
|
94
138
|
- lib/google/protobuf.rb
|
95
139
|
- lib/google/protobuf/any_pb.rb
|
96
140
|
- lib/google/protobuf/api_pb.rb
|
141
|
+
- lib/google/protobuf/descriptor_dsl.rb
|
142
|
+
- lib/google/protobuf/descriptor_pb.rb
|
97
143
|
- lib/google/protobuf/duration_pb.rb
|
98
144
|
- lib/google/protobuf/empty_pb.rb
|
145
|
+
- lib/google/protobuf/ffi/descriptor.rb
|
146
|
+
- lib/google/protobuf/ffi/descriptor_pool.rb
|
147
|
+
- lib/google/protobuf/ffi/enum_descriptor.rb
|
148
|
+
- lib/google/protobuf/ffi/ffi.rb
|
149
|
+
- lib/google/protobuf/ffi/field_descriptor.rb
|
150
|
+
- lib/google/protobuf/ffi/file_descriptor.rb
|
151
|
+
- lib/google/protobuf/ffi/internal/arena.rb
|
152
|
+
- lib/google/protobuf/ffi/internal/convert.rb
|
153
|
+
- lib/google/protobuf/ffi/internal/pointer_helper.rb
|
154
|
+
- lib/google/protobuf/ffi/internal/type_safety.rb
|
155
|
+
- lib/google/protobuf/ffi/map.rb
|
156
|
+
- lib/google/protobuf/ffi/message.rb
|
157
|
+
- lib/google/protobuf/ffi/object_cache.rb
|
158
|
+
- lib/google/protobuf/ffi/oneof_descriptor.rb
|
159
|
+
- lib/google/protobuf/ffi/repeated_field.rb
|
99
160
|
- lib/google/protobuf/field_mask_pb.rb
|
100
161
|
- lib/google/protobuf/message_exts.rb
|
162
|
+
- lib/google/protobuf/object_cache.rb
|
163
|
+
- lib/google/protobuf/plugin_pb.rb
|
101
164
|
- lib/google/protobuf/repeated_field.rb
|
102
165
|
- lib/google/protobuf/source_context_pb.rb
|
103
166
|
- lib/google/protobuf/struct_pb.rb
|
@@ -105,14 +168,14 @@ files:
|
|
105
168
|
- lib/google/protobuf/type_pb.rb
|
106
169
|
- lib/google/protobuf/well_known_types.rb
|
107
170
|
- lib/google/protobuf/wrappers_pb.rb
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
171
|
+
- lib/google/protobuf_ffi.rb
|
172
|
+
- lib/google/protobuf_native.rb
|
173
|
+
- lib/google/tasks/ffi.rake
|
111
174
|
homepage: https://developers.google.com/protocol-buffers
|
112
175
|
licenses:
|
113
176
|
- BSD-3-Clause
|
114
177
|
metadata:
|
115
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.
|
178
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.25.5/ruby
|
116
179
|
post_install_message:
|
117
180
|
rdoc_options: []
|
118
181
|
require_paths:
|
@@ -121,18 +184,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
184
|
requirements:
|
122
185
|
- - ">="
|
123
186
|
- !ruby/object:Gem::Version
|
124
|
-
version: '2.
|
187
|
+
version: '2.7'
|
125
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
189
|
requirements:
|
127
190
|
- - ">="
|
128
191
|
- !ruby/object:Gem::Version
|
129
192
|
version: '0'
|
130
193
|
requirements: []
|
131
|
-
rubygems_version: 3.0.
|
194
|
+
rubygems_version: 3.0.8
|
132
195
|
signing_key:
|
133
196
|
specification_version: 4
|
134
197
|
summary: Protocol Buffers
|
135
|
-
test_files:
|
136
|
-
- tests/basic.rb
|
137
|
-
- tests/stress.rb
|
138
|
-
- tests/generated_code_test.rb
|
198
|
+
test_files: []
|