protobuf 2.8.0.beta9 → 2.8.0
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 +7 -0
- data/.gitignore +0 -1
- data/{UPGRADING.md → CHANGES.md} +20 -12
- data/LICENSE.txt +14 -0
- data/README.md +60 -74
- data/bin/protoc-gen-ruby +26 -0
- data/bin/rprotoc +4 -58
- data/lib/protobuf.rb +15 -13
- data/lib/protobuf/code_generator.rb +41 -0
- data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +51 -0
- data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +248 -0
- data/lib/protobuf/field/base_field.rb +0 -1
- data/lib/protobuf/field/bytes_field.rb +1 -1
- data/lib/protobuf/field/message_field.rb +2 -4
- data/lib/protobuf/field/varint_field.rb +4 -7
- data/lib/protobuf/generators/base.rb +71 -0
- data/lib/protobuf/generators/enum_generator.rb +31 -0
- data/lib/protobuf/generators/extension_generator.rb +28 -0
- data/lib/protobuf/generators/field_generator.rb +132 -0
- data/lib/protobuf/generators/file_generator.rb +140 -0
- data/lib/protobuf/generators/group_generator.rb +113 -0
- data/lib/protobuf/generators/message_generator.rb +99 -0
- data/lib/protobuf/generators/printable.rb +161 -0
- data/lib/protobuf/generators/service_generator.rb +27 -0
- data/lib/protobuf/lifecycle.rb +7 -3
- data/lib/protobuf/message.rb +51 -34
- data/lib/protobuf/rpc/connectors/common.rb +4 -6
- data/lib/protobuf/rpc/server.rb +1 -1
- data/lib/protobuf/rpc/servers/zmq/server.rb +2 -2
- data/lib/protobuf/rpc/servers/zmq/worker.rb +2 -2
- data/lib/protobuf/rpc/service.rb +3 -3
- data/lib/protobuf/rpc/service_directory.rb +24 -12
- data/lib/protobuf/version.rb +1 -1
- data/proto/google/protobuf/compiler/plugin.proto +147 -0
- data/proto/google/protobuf/descriptor.proto +620 -0
- data/protobuf.gemspec +12 -21
- data/spec/bin/protoc-gen-ruby_spec.rb +18 -0
- data/spec/data/data.bin +3 -0
- data/{test/data/unk.png → spec/data/types.bin} +0 -0
- data/spec/encoding/all_types_spec.rb +91 -0
- data/spec/encoding/extreme_values_spec.rb +0 -0
- data/spec/lib/protobuf/code_generator_spec.rb +60 -0
- data/spec/lib/protobuf/generators/base_spec.rb +87 -0
- data/spec/lib/protobuf/generators/enum_generator_spec.rb +45 -0
- data/spec/lib/protobuf/generators/extension_generator_spec.rb +43 -0
- data/spec/lib/protobuf/generators/field_generator_spec.rb +99 -0
- data/spec/lib/protobuf/generators/file_generator_spec.rb +29 -0
- data/spec/lib/protobuf/generators/message_generator_spec.rb +0 -0
- data/spec/lib/protobuf/generators/service_generator_spec.rb +43 -0
- data/spec/lib/protobuf/lifecycle_spec.rb +31 -1
- data/spec/lib/protobuf/logger_spec.rb +5 -0
- data/spec/lib/protobuf/message_spec.rb +22 -8
- data/spec/lib/protobuf/rpc/connectors/common_spec.rb +1 -1
- data/spec/lib/protobuf/rpc/service_directory_spec.rb +45 -7
- data/spec/lib/protobuf/rpc/service_spec.rb +3 -3
- data/spec/spec_helper.rb +15 -16
- data/spec/support/test/all_types.data.bin +0 -0
- data/spec/support/test/all_types.data.txt +119 -0
- data/spec/support/test/defaults.pb.rb +25 -0
- data/spec/support/test/defaults.proto +9 -0
- data/spec/support/test/enum.pb.rb +10 -8
- data/spec/support/test/extended.pb.rb +5 -3
- data/spec/support/test/extreme_values.data.bin +0 -0
- data/spec/support/test/google_unittest.pb.rb +543 -0
- data/spec/support/test/google_unittest.proto +713 -0
- data/spec/support/test/google_unittest_import.pb.rb +37 -0
- data/{ext/protobuf-2.4.1/src/google/protobuf/io/package_info.h → spec/support/test/google_unittest_import.proto} +27 -17
- data/spec/support/test/google_unittest_import_public.pb.rb +8 -0
- data/{ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream_inl.h → spec/support/test/google_unittest_import_public.proto} +5 -31
- data/spec/support/test/multi_field_extensions.pb.rb +29 -7
- data/spec/support/test/multi_field_extensions.proto +12 -2
- data/spec/support/test/resource.pb.rb +20 -16
- metadata +149 -236
- data/examples/addressbook.pb.rb +0 -55
- data/examples/addressbook.proto +0 -24
- data/examples/reading_a_message.rb +0 -32
- data/examples/writing_a_message.rb +0 -46
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/code_generator.h +0 -142
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/command_line_interface.h +0 -318
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum.h +0 -99
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h +0 -103
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_extension.h +0 -85
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_field.h +0 -167
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_file.h +0 -98
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_generator.h +0 -72
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_helpers.h +0 -159
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message.h +0 -170
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message_field.h +0 -102
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_primitive_field.h +0 -103
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_service.h +0 -118
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_string_field.h +0 -104
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h +0 -2721
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/importer.h +0 -303
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum.h +0 -84
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum_field.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_extension.h +0 -77
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_field.h +0 -108
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_file.h +0 -101
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_generator.h +0 -72
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_helpers.h +0 -213
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message.h +0 -109
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message_field.h +0 -134
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_primitive_field.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_service.h +0 -113
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_string_field.h +0 -120
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/mock_code_generator.h +0 -113
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/package_info.h +0 -64
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/parser.h +0 -434
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.h +0 -73
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.pb.h +0 -790
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/python/python_generator.h +0 -156
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/subprocess.h +0 -108
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/zip_writer.h +0 -93
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.h +0 -1367
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.pb.h +0 -5223
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor_database.h +0 -366
- data/ext/protobuf-2.4.1/src/google/protobuf/dynamic_message.h +0 -136
- data/ext/protobuf-2.4.1/src/google/protobuf/extension_set.h +0 -904
- data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_reflection.h +0 -424
- data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_util.h +0 -82
- data/ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream.h +0 -1102
- data/ext/protobuf-2.4.1/src/google/protobuf/io/gzip_stream.h +0 -207
- data/ext/protobuf-2.4.1/src/google/protobuf/io/printer.h +0 -136
- data/ext/protobuf-2.4.1/src/google/protobuf/io/tokenizer.h +0 -313
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream.h +0 -238
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl.h +0 -357
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h +0 -340
- data/ext/protobuf-2.4.1/src/google/protobuf/message.h +0 -692
- data/ext/protobuf-2.4.1/src/google/protobuf/message_lite.h +0 -239
- data/ext/protobuf-2.4.1/src/google/protobuf/package_info.h +0 -64
- data/ext/protobuf-2.4.1/src/google/protobuf/reflection_ops.h +0 -80
- data/ext/protobuf-2.4.1/src/google/protobuf/repeated_field.h +0 -1295
- data/ext/protobuf-2.4.1/src/google/protobuf/service.h +0 -291
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/common.h +0 -1211
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/hash.h +0 -220
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/map-util.h +0 -119
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/once.h +0 -123
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/stl_util-inl.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/strutil.h +0 -457
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/substitute.h +0 -170
- data/ext/protobuf-2.4.1/src/google/protobuf/test_util.h +0 -174
- data/ext/protobuf-2.4.1/src/google/protobuf/test_util_lite.h +0 -101
- data/ext/protobuf-2.4.1/src/google/protobuf/testing/file.h +0 -83
- data/ext/protobuf-2.4.1/src/google/protobuf/testing/googletest.h +0 -98
- data/ext/protobuf-2.4.1/src/google/protobuf/text_format.h +0 -285
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest.pb.h +0 -11915
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_custom_options.pb.h +0 -2895
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_embed_optimize_for.pb.h +0 -211
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_empty.pb.h +0 -56
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import.pb.h +0 -188
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import_lite.pb.h +0 -151
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite.pb.h +0 -4752
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite_imports_nonlite.pb.h +0 -150
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_mset.pb.h +0 -816
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_no_generic_services.pb.h +0 -197
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_optimize_for.pb.h +0 -403
- data/ext/protobuf-2.4.1/src/google/protobuf/unknown_field_set.h +0 -268
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format.h +0 -304
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite.h +0 -620
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite_inl.h +0 -774
- data/ext/ruby_generator/Makefile +0 -10
- data/ext/ruby_generator/RubyGenerator.cpp +0 -544
- data/ext/ruby_generator/RubyGenerator.h +0 -206
- data/ext/ruby_generator/extconf.rb +0 -35
- data/test/data/data_source.py +0 -14
- data/test/data/types_source.py +0 -22
- data/test/proto/addressbook.pb.rb +0 -66
- data/test/proto/addressbook.proto +0 -33
- data/test/proto/addressbook_base.pb.rb +0 -58
- data/test/proto/addressbook_base.proto +0 -26
- data/test/proto/addressbook_ext.pb.rb +0 -20
- data/test/proto/addressbook_ext.proto +0 -6
- data/test/proto/collision.pb.rb +0 -17
- data/test/proto/collision.proto +0 -5
- data/test/proto/ext_collision.pb.rb +0 -24
- data/test/proto/ext_collision.proto +0 -8
- data/test/proto/ext_range.pb.rb +0 -22
- data/test/proto/ext_range.proto +0 -7
- data/test/proto/float_default.proto +0 -10
- data/test/proto/lowercase.pb.rb +0 -30
- data/test/proto/lowercase.proto +0 -9
- data/test/proto/merge.pb.rb +0 -39
- data/test/proto/merge.proto +0 -15
- data/test/proto/nested.pb.rb +0 -30
- data/test/proto/nested.proto +0 -9
- data/test/proto/optional_field.pb.rb +0 -35
- data/test/proto/optional_field.proto +0 -12
- data/test/proto/packed.pb.rb +0 -22
- data/test/proto/packed.proto +0 -6
- data/test/proto/rpc.proto +0 -6
- data/test/proto/types.pb.rb +0 -84
- data/test/proto/types.proto +0 -37
- data/test/test_addressbook.rb +0 -56
- data/test/test_enum_value.rb +0 -41
- data/test/test_extension.rb +0 -36
- data/test/test_lowercase.rb +0 -11
- data/test/test_message.rb +0 -128
- data/test/test_optional_field.rb +0 -103
- data/test/test_packed_field.rb +0 -40
- data/test/test_parse.rb +0 -15
- data/test/test_repeated_types.rb +0 -132
- data/test/test_serialize.rb +0 -61
- data/test/test_standard_message.rb +0 -96
- data/test/test_types.rb +0 -226
data/lib/protobuf.rb
CHANGED
@@ -92,20 +92,22 @@ module Protobuf
|
|
92
92
|
|
93
93
|
end
|
94
94
|
|
95
|
-
|
96
|
-
require 'protobuf/rpc/
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
95
|
+
unless ENV.key?('PB_NO_NETWORKING')
|
96
|
+
require 'protobuf/rpc/client'
|
97
|
+
require 'protobuf/rpc/service'
|
98
|
+
|
99
|
+
env_connector_type = ENV.fetch('PB_CLIENT_TYPE') {
|
100
|
+
::Protobuf::DEFAULT_CONNECTOR
|
101
|
+
}.to_s.downcase.strip.to_sym
|
102
|
+
|
103
|
+
if ::Protobuf::CONNECTORS.include?(env_connector_type)
|
104
|
+
require "protobuf/#{env_connector_type}"
|
105
|
+
else
|
106
|
+
$stderr.puts <<-WARN
|
106
107
|
[WARNING] Require attempted on an invalid connector type '#{env_connector_type}'.
|
107
108
|
Falling back to default '#{::Protobuf::DEFAULT_CONNECTOR}' connector.
|
108
|
-
|
109
|
+
WARN
|
109
110
|
|
110
|
-
|
111
|
+
require "protobuf/#{::Protobuf::DEFAULT_CONNECTOR}"
|
112
|
+
end
|
111
113
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'protobuf/generators/file_generator'
|
2
|
+
|
3
|
+
module Protobuf
|
4
|
+
class CodeGenerator
|
5
|
+
|
6
|
+
CodeGeneratorFatalError = Class.new(RuntimeError)
|
7
|
+
|
8
|
+
def self.fatal(message)
|
9
|
+
raise CodeGeneratorFatalError, message
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.print_tag_warning_suppress
|
13
|
+
STDERR.puts "Suppress tag warning output with PB_NO_TAG_WARNINGS=1."
|
14
|
+
def self.print_tag_warning_suppress; end
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.warn(message)
|
18
|
+
STDERR.puts("[WARN] #{message}")
|
19
|
+
end
|
20
|
+
|
21
|
+
def initialize(request_bytes)
|
22
|
+
@request = ::Google::Protobuf::Compiler::CodeGeneratorRequest.decode(request_bytes)
|
23
|
+
@generated_files = []
|
24
|
+
end
|
25
|
+
|
26
|
+
def generate_file(file_descriptor)
|
27
|
+
file_generator = ::Protobuf::Generators::FileGenerator.new(file_descriptor)
|
28
|
+
@generated_files << file_generator.generate_output_file
|
29
|
+
end
|
30
|
+
|
31
|
+
def response_bytes
|
32
|
+
@request.proto_file.each do |file_descriptor|
|
33
|
+
generate_file(file_descriptor)
|
34
|
+
end
|
35
|
+
|
36
|
+
return ::Google::Protobuf::Compiler::CodeGeneratorResponse.encode(:file => @generated_files)
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
@@ -0,0 +1,51 @@
|
|
1
|
+
##
|
2
|
+
# This file is auto-generated. DO NOT EDIT!
|
3
|
+
#
|
4
|
+
require 'protobuf/message'
|
5
|
+
|
6
|
+
##
|
7
|
+
# Imports
|
8
|
+
#
|
9
|
+
require 'google/protobuf/descriptor.pb'
|
10
|
+
|
11
|
+
module Google
|
12
|
+
|
13
|
+
module Protobuf
|
14
|
+
|
15
|
+
module Compiler
|
16
|
+
|
17
|
+
##
|
18
|
+
# Message Classes
|
19
|
+
#
|
20
|
+
class CodeGeneratorRequest < ::Protobuf::Message; end
|
21
|
+
class CodeGeneratorResponse < ::Protobuf::Message
|
22
|
+
class File < ::Protobuf::Message; end
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# Message Fields
|
27
|
+
#
|
28
|
+
class CodeGeneratorRequest
|
29
|
+
repeated ::Protobuf::Field::StringField, :file_to_generate, 1
|
30
|
+
optional ::Protobuf::Field::StringField, :parameter, 2
|
31
|
+
repeated ::Google::Protobuf::FileDescriptorProto, :proto_file, 15
|
32
|
+
end
|
33
|
+
|
34
|
+
class CodeGeneratorResponse
|
35
|
+
class File
|
36
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
37
|
+
optional ::Protobuf::Field::StringField, :insertion_point, 2
|
38
|
+
optional ::Protobuf::Field::StringField, :content, 15
|
39
|
+
end
|
40
|
+
|
41
|
+
optional ::Protobuf::Field::StringField, :error, 1
|
42
|
+
repeated ::Google::Protobuf::Compiler::CodeGeneratorResponse::File, :file, 15
|
43
|
+
end
|
44
|
+
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
|
@@ -0,0 +1,248 @@
|
|
1
|
+
##
|
2
|
+
# This file is auto-generated. DO NOT EDIT!
|
3
|
+
#
|
4
|
+
require 'protobuf/message'
|
5
|
+
|
6
|
+
module Google
|
7
|
+
|
8
|
+
module Protobuf
|
9
|
+
|
10
|
+
##
|
11
|
+
# Message Classes
|
12
|
+
#
|
13
|
+
class FileDescriptorSet < ::Protobuf::Message; end
|
14
|
+
class FileDescriptorProto < ::Protobuf::Message; end
|
15
|
+
class DescriptorProto < ::Protobuf::Message
|
16
|
+
class ExtensionRange < ::Protobuf::Message; end
|
17
|
+
end
|
18
|
+
class FieldDescriptorProto < ::Protobuf::Message
|
19
|
+
class Type < ::Protobuf::Enum
|
20
|
+
define :TYPE_DOUBLE, 1
|
21
|
+
define :TYPE_FLOAT, 2
|
22
|
+
define :TYPE_INT64, 3
|
23
|
+
define :TYPE_UINT64, 4
|
24
|
+
define :TYPE_INT32, 5
|
25
|
+
define :TYPE_FIXED64, 6
|
26
|
+
define :TYPE_FIXED32, 7
|
27
|
+
define :TYPE_BOOL, 8
|
28
|
+
define :TYPE_STRING, 9
|
29
|
+
define :TYPE_GROUP, 10
|
30
|
+
define :TYPE_MESSAGE, 11
|
31
|
+
define :TYPE_BYTES, 12
|
32
|
+
define :TYPE_UINT32, 13
|
33
|
+
define :TYPE_ENUM, 14
|
34
|
+
define :TYPE_SFIXED32, 15
|
35
|
+
define :TYPE_SFIXED64, 16
|
36
|
+
define :TYPE_SINT32, 17
|
37
|
+
define :TYPE_SINT64, 18
|
38
|
+
end
|
39
|
+
|
40
|
+
class Label < ::Protobuf::Enum
|
41
|
+
define :LABEL_OPTIONAL, 1
|
42
|
+
define :LABEL_REQUIRED, 2
|
43
|
+
define :LABEL_REPEATED, 3
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
class EnumDescriptorProto < ::Protobuf::Message; end
|
48
|
+
class EnumValueDescriptorProto < ::Protobuf::Message; end
|
49
|
+
class ServiceDescriptorProto < ::Protobuf::Message; end
|
50
|
+
class MethodDescriptorProto < ::Protobuf::Message; end
|
51
|
+
class FileOptions < ::Protobuf::Message
|
52
|
+
class OptimizeMode < ::Protobuf::Enum
|
53
|
+
define :SPEED, 1
|
54
|
+
define :CODE_SIZE, 2
|
55
|
+
define :LITE_RUNTIME, 3
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
class MessageOptions < ::Protobuf::Message; end
|
60
|
+
class FieldOptions < ::Protobuf::Message
|
61
|
+
class CType < ::Protobuf::Enum
|
62
|
+
define :STRING, 0
|
63
|
+
define :CORD, 1
|
64
|
+
define :STRING_PIECE, 2
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
class EnumOptions < ::Protobuf::Message; end
|
69
|
+
class EnumValueOptions < ::Protobuf::Message; end
|
70
|
+
class ServiceOptions < ::Protobuf::Message; end
|
71
|
+
class MethodOptions < ::Protobuf::Message; end
|
72
|
+
class UninterpretedOption < ::Protobuf::Message
|
73
|
+
class NamePart < ::Protobuf::Message; end
|
74
|
+
end
|
75
|
+
class SourceCodeInfo < ::Protobuf::Message
|
76
|
+
class Location < ::Protobuf::Message; end
|
77
|
+
end
|
78
|
+
|
79
|
+
##
|
80
|
+
# Message Fields
|
81
|
+
#
|
82
|
+
class FileDescriptorSet
|
83
|
+
repeated ::Google::Protobuf::FileDescriptorProto, :file, 1
|
84
|
+
end
|
85
|
+
|
86
|
+
class FileDescriptorProto
|
87
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
88
|
+
optional ::Protobuf::Field::StringField, :package, 2
|
89
|
+
repeated ::Protobuf::Field::StringField, :dependency, 3
|
90
|
+
repeated ::Protobuf::Field::Int32Field, :public_dependency, 10
|
91
|
+
repeated ::Protobuf::Field::Int32Field, :weak_dependency, 11
|
92
|
+
repeated ::Google::Protobuf::DescriptorProto, :message_type, 4
|
93
|
+
repeated ::Google::Protobuf::EnumDescriptorProto, :enum_type, 5
|
94
|
+
repeated ::Google::Protobuf::ServiceDescriptorProto, :service, 6
|
95
|
+
repeated ::Google::Protobuf::FieldDescriptorProto, :extension, 7
|
96
|
+
optional ::Google::Protobuf::FileOptions, :options, 8
|
97
|
+
optional ::Google::Protobuf::SourceCodeInfo, :source_code_info, 9
|
98
|
+
end
|
99
|
+
|
100
|
+
class DescriptorProto
|
101
|
+
class ExtensionRange
|
102
|
+
optional ::Protobuf::Field::Int32Field, :start, 1
|
103
|
+
optional ::Protobuf::Field::Int32Field, :end, 2
|
104
|
+
end
|
105
|
+
|
106
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
107
|
+
repeated ::Google::Protobuf::FieldDescriptorProto, :field, 2
|
108
|
+
repeated ::Google::Protobuf::FieldDescriptorProto, :extension, 6
|
109
|
+
repeated ::Google::Protobuf::DescriptorProto, :nested_type, 3
|
110
|
+
repeated ::Google::Protobuf::EnumDescriptorProto, :enum_type, 4
|
111
|
+
repeated ::Google::Protobuf::DescriptorProto::ExtensionRange, :extension_range, 5
|
112
|
+
optional ::Google::Protobuf::MessageOptions, :options, 7
|
113
|
+
end
|
114
|
+
|
115
|
+
class FieldDescriptorProto
|
116
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
117
|
+
optional ::Protobuf::Field::Int32Field, :number, 3
|
118
|
+
optional ::Google::Protobuf::FieldDescriptorProto::Label, :label, 4
|
119
|
+
optional ::Google::Protobuf::FieldDescriptorProto::Type, :type, 5
|
120
|
+
optional ::Protobuf::Field::StringField, :type_name, 6
|
121
|
+
optional ::Protobuf::Field::StringField, :extendee, 2
|
122
|
+
optional ::Protobuf::Field::StringField, :default_value, 7
|
123
|
+
optional ::Google::Protobuf::FieldOptions, :options, 8
|
124
|
+
end
|
125
|
+
|
126
|
+
class EnumDescriptorProto
|
127
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
128
|
+
repeated ::Google::Protobuf::EnumValueDescriptorProto, :value, 2
|
129
|
+
optional ::Google::Protobuf::EnumOptions, :options, 3
|
130
|
+
end
|
131
|
+
|
132
|
+
class EnumValueDescriptorProto
|
133
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
134
|
+
optional ::Protobuf::Field::Int32Field, :number, 2
|
135
|
+
optional ::Google::Protobuf::EnumValueOptions, :options, 3
|
136
|
+
end
|
137
|
+
|
138
|
+
class ServiceDescriptorProto
|
139
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
140
|
+
repeated ::Google::Protobuf::MethodDescriptorProto, :method, 2
|
141
|
+
optional ::Google::Protobuf::ServiceOptions, :options, 3
|
142
|
+
end
|
143
|
+
|
144
|
+
class MethodDescriptorProto
|
145
|
+
optional ::Protobuf::Field::StringField, :name, 1
|
146
|
+
optional ::Protobuf::Field::StringField, :input_type, 2
|
147
|
+
optional ::Protobuf::Field::StringField, :output_type, 3
|
148
|
+
optional ::Google::Protobuf::MethodOptions, :options, 4
|
149
|
+
end
|
150
|
+
|
151
|
+
class FileOptions
|
152
|
+
optional ::Protobuf::Field::StringField, :java_package, 1
|
153
|
+
optional ::Protobuf::Field::StringField, :java_outer_classname, 8
|
154
|
+
optional ::Protobuf::Field::BoolField, :java_multiple_files, 10, :default => false
|
155
|
+
optional ::Protobuf::Field::BoolField, :java_generate_equals_and_hash, 20, :default => false
|
156
|
+
optional ::Google::Protobuf::FileOptions::OptimizeMode, :optimize_for, 9, :default => ::Google::Protobuf::FileOptions::OptimizeMode::SPEED
|
157
|
+
optional ::Protobuf::Field::StringField, :go_package, 11
|
158
|
+
optional ::Protobuf::Field::BoolField, :cc_generic_services, 16, :default => false
|
159
|
+
optional ::Protobuf::Field::BoolField, :java_generic_services, 17, :default => false
|
160
|
+
optional ::Protobuf::Field::BoolField, :py_generic_services, 18, :default => false
|
161
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
162
|
+
|
163
|
+
# Extension Fields
|
164
|
+
extensions 1000...536870912
|
165
|
+
end
|
166
|
+
|
167
|
+
class MessageOptions
|
168
|
+
optional ::Protobuf::Field::BoolField, :message_set_wire_format, 1, :default => false
|
169
|
+
optional ::Protobuf::Field::BoolField, :no_standard_descriptor_accessor, 2, :default => false
|
170
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
171
|
+
|
172
|
+
# Extension Fields
|
173
|
+
extensions 1000...536870912
|
174
|
+
end
|
175
|
+
|
176
|
+
class FieldOptions
|
177
|
+
optional ::Google::Protobuf::FieldOptions::CType, :ctype, 1, :default => ::Google::Protobuf::FieldOptions::CType::STRING
|
178
|
+
optional ::Protobuf::Field::BoolField, :packed, 2
|
179
|
+
optional ::Protobuf::Field::BoolField, :lazy, 5, :default => false
|
180
|
+
optional ::Protobuf::Field::BoolField, :deprecated, 3, :default => false
|
181
|
+
optional ::Protobuf::Field::StringField, :experimental_map_key, 9
|
182
|
+
optional ::Protobuf::Field::BoolField, :weak, 10, :default => false
|
183
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
184
|
+
|
185
|
+
# Extension Fields
|
186
|
+
extensions 1000...536870912
|
187
|
+
end
|
188
|
+
|
189
|
+
class EnumOptions
|
190
|
+
optional ::Protobuf::Field::BoolField, :allow_alias, 2, :default => true
|
191
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
192
|
+
|
193
|
+
# Extension Fields
|
194
|
+
extensions 1000...536870912
|
195
|
+
end
|
196
|
+
|
197
|
+
class EnumValueOptions
|
198
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
199
|
+
|
200
|
+
# Extension Fields
|
201
|
+
extensions 1000...536870912
|
202
|
+
end
|
203
|
+
|
204
|
+
class ServiceOptions
|
205
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
206
|
+
|
207
|
+
# Extension Fields
|
208
|
+
extensions 1000...536870912
|
209
|
+
end
|
210
|
+
|
211
|
+
class MethodOptions
|
212
|
+
repeated ::Google::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
213
|
+
|
214
|
+
# Extension Fields
|
215
|
+
extensions 1000...536870912
|
216
|
+
end
|
217
|
+
|
218
|
+
class UninterpretedOption
|
219
|
+
class NamePart
|
220
|
+
required ::Protobuf::Field::StringField, :name_part, 1
|
221
|
+
required ::Protobuf::Field::BoolField, :is_extension, 2
|
222
|
+
end
|
223
|
+
|
224
|
+
repeated ::Google::Protobuf::UninterpretedOption::NamePart, :name, 2
|
225
|
+
optional ::Protobuf::Field::StringField, :identifier_value, 3
|
226
|
+
optional ::Protobuf::Field::Uint64Field, :positive_int_value, 4
|
227
|
+
optional ::Protobuf::Field::Int64Field, :negative_int_value, 5
|
228
|
+
optional ::Protobuf::Field::DoubleField, :double_value, 6
|
229
|
+
optional ::Protobuf::Field::BytesField, :string_value, 7
|
230
|
+
optional ::Protobuf::Field::StringField, :aggregate_value, 8
|
231
|
+
end
|
232
|
+
|
233
|
+
class SourceCodeInfo
|
234
|
+
class Location
|
235
|
+
repeated ::Protobuf::Field::Int32Field, :path, 1, :packed => true
|
236
|
+
repeated ::Protobuf::Field::Int32Field, :span, 2, :packed => true
|
237
|
+
optional ::Protobuf::Field::StringField, :leading_comments, 3
|
238
|
+
optional ::Protobuf::Field::StringField, :trailing_comments, 4
|
239
|
+
end
|
240
|
+
|
241
|
+
repeated ::Google::Protobuf::SourceCodeInfo::Location, :location, 1
|
242
|
+
end
|
243
|
+
|
244
|
+
|
245
|
+
end
|
246
|
+
|
247
|
+
end
|
248
|
+
|
@@ -46,7 +46,7 @@ module Protobuf
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def encode(value)
|
49
|
-
value = value.
|
49
|
+
value = value.encode if value.is_a?(::Protobuf::Message)
|
50
50
|
value.force_encoding(::Protobuf::Field::BytesField::BYTES_ENCODING)
|
51
51
|
|
52
52
|
string_size = ::Protobuf::Field::VarintField.encode(value.size)
|
@@ -14,13 +14,11 @@ module Protobuf
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def decode(bytes)
|
17
|
-
|
18
|
-
message.parse_from_string(bytes)
|
19
|
-
message
|
17
|
+
type.decode(bytes)
|
20
18
|
end
|
21
19
|
|
22
20
|
def encode(value)
|
23
|
-
bytes = value.
|
21
|
+
bytes = value.encode
|
24
22
|
result = ::Protobuf::Field::VarintField.encode(bytes.size)
|
25
23
|
result << bytes
|
26
24
|
end
|
@@ -4,8 +4,8 @@ module Protobuf
|
|
4
4
|
module Field
|
5
5
|
class VarintField < BaseField
|
6
6
|
INT32_MAX = 2**31 - 1
|
7
|
-
INT32_MIN = -2**31
|
8
|
-
INT64_MAX = 2**63 - 1
|
7
|
+
INT32_MIN = -2**31
|
8
|
+
INT64_MAX = 2**63 - 1
|
9
9
|
INT64_MIN = -2**63
|
10
10
|
UINT32_MAX = 2**32 - 1
|
11
11
|
UINT64_MAX = 2**64 - 1
|
@@ -26,15 +26,12 @@ module Protobuf
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def self.encode(value)
|
29
|
-
return [value].pack('C') if value < 128
|
30
|
-
|
31
29
|
bytes = []
|
32
|
-
until value
|
30
|
+
until value < 128
|
33
31
|
bytes << (0x80 | (value & 0x7f))
|
34
32
|
value >>= 7
|
35
33
|
end
|
36
|
-
bytes
|
37
|
-
bytes.pack('C*')
|
34
|
+
(bytes << value).pack('C*')
|
38
35
|
end
|
39
36
|
|
40
37
|
##
|
@@ -0,0 +1,71 @@
|
|
1
|
+
require 'protobuf/generators/printable'
|
2
|
+
|
3
|
+
module Protobuf
|
4
|
+
module Generators
|
5
|
+
class Base
|
6
|
+
include ::Protobuf::Generators::Printable
|
7
|
+
|
8
|
+
def self.validate_tags(type_name, tags)
|
9
|
+
return if tags.empty?
|
10
|
+
|
11
|
+
unique_tags = tags.uniq
|
12
|
+
|
13
|
+
if unique_tags.size < tags.size
|
14
|
+
::Protobuf::CodeGenerator.fatal("#{type_name} object has duplicate tags. Expected #{unique_tags.size} tags, but got #{tags.size}. Suppress with PB_NO_TAG_WARNINGS=1.")
|
15
|
+
end
|
16
|
+
|
17
|
+
unless ENV.key?('PB_NO_TAG_WARNINGS')
|
18
|
+
range = (tags.min)..(tags.max)
|
19
|
+
if range.respond_to?(:size)
|
20
|
+
expected_size = range.size
|
21
|
+
else
|
22
|
+
expected_size = range.to_a.size
|
23
|
+
end
|
24
|
+
|
25
|
+
if tags.size < expected_size
|
26
|
+
::Protobuf::CodeGenerator.print_tag_warning_suppress
|
27
|
+
::Protobuf::CodeGenerator.warn("#{type_name} object should have #{expected_size} tags (#{range.begin}..#{range.end}), but found #{tags.size} tags.")
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
attr_reader :descriptor, :namespace, :options
|
33
|
+
|
34
|
+
def initialize(descriptor, indent_level = 0, options = {})
|
35
|
+
@descriptor = descriptor
|
36
|
+
@options = options
|
37
|
+
@namespace = @options.fetch(:namespace) { [] }
|
38
|
+
init_printer(indent_level)
|
39
|
+
end
|
40
|
+
|
41
|
+
def fully_qualified_type_namespace
|
42
|
+
".#{type_namespace.join('.')}"
|
43
|
+
end
|
44
|
+
|
45
|
+
def run_once(label, &block)
|
46
|
+
tracker_ivar = "@_#{label}_compiled"
|
47
|
+
value_ivar = "@_#{label}_compiled_value"
|
48
|
+
|
49
|
+
if instance_variable_get(tracker_ivar)
|
50
|
+
return instance_variable_get(value_ivar)
|
51
|
+
else
|
52
|
+
return_value = block.call
|
53
|
+
instance_variable_set(tracker_ivar, true)
|
54
|
+
instance_variable_set(value_ivar, return_value)
|
55
|
+
return return_value
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def to_s
|
60
|
+
compile
|
61
|
+
print_contents # see Printable
|
62
|
+
end
|
63
|
+
|
64
|
+
def type_namespace
|
65
|
+
@type_namespace ||= @namespace + [ descriptor.name ]
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|