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
@@ -1,20 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/addressbook_ext.proto>
|
3
|
-
# import "test/proto/addressbook_base.proto";
|
4
|
-
# package tutorial_ext;
|
5
|
-
#
|
6
|
-
# extend Person {
|
7
|
-
# optional int32 age = 100;
|
8
|
-
# }
|
9
|
-
|
10
|
-
require 'protobuf/message/message'
|
11
|
-
require 'protobuf/message/enum'
|
12
|
-
require 'protobuf/message/extend'
|
13
|
-
|
14
|
-
require 'test/proto/addressbook_base.pb'
|
15
|
-
module TutorialExt
|
16
|
-
class Person < ::Protobuf::Message
|
17
|
-
defined_in __FILE__
|
18
|
-
optional :int32, :age, 100, :extension => true
|
19
|
-
end
|
20
|
-
end
|
data/test/proto/collision.pb.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/collision.proto>
|
3
|
-
# message CollisionTest {
|
4
|
-
# optional string a = 1;
|
5
|
-
# optional string b = 1;
|
6
|
-
# }
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'protobuf/message/message'
|
10
|
-
require 'protobuf/message/enum'
|
11
|
-
require 'protobuf/message/extend'
|
12
|
-
|
13
|
-
class CollisionTest < ::Protobuf::Message
|
14
|
-
defined_in __FILE__
|
15
|
-
optional :string, :a, 1
|
16
|
-
optional :string, :b, 1
|
17
|
-
end
|
data/test/proto/collision.proto
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/ext_collision.proto>
|
3
|
-
# message ExtCollisionTest {
|
4
|
-
# extensions 1 to 10;
|
5
|
-
# }
|
6
|
-
#
|
7
|
-
# message ExtCollisionTest {
|
8
|
-
# optional string a = 1;
|
9
|
-
# optional string b = 1;
|
10
|
-
# }
|
11
|
-
|
12
|
-
require 'protobuf/message/message'
|
13
|
-
require 'protobuf/message/enum'
|
14
|
-
require 'protobuf/message/extend'
|
15
|
-
|
16
|
-
class ExtCollisionTest < ::Protobuf::Message
|
17
|
-
defined_in __FILE__
|
18
|
-
extensions 1..10
|
19
|
-
end
|
20
|
-
class ExtCollisionTest < ::Protobuf::Message
|
21
|
-
defined_in __FILE__
|
22
|
-
optional :string, :a, 1
|
23
|
-
optional :string, :b, 1
|
24
|
-
end
|
data/test/proto/ext_range.pb.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/ext_range.proto>
|
3
|
-
# message ExtRangeTest {
|
4
|
-
# extensions 1 to 10;
|
5
|
-
# }
|
6
|
-
#
|
7
|
-
# extend ExtRangeTest {
|
8
|
-
# optional string a = 11;
|
9
|
-
# }
|
10
|
-
|
11
|
-
require 'protobuf/message/message'
|
12
|
-
require 'protobuf/message/enum'
|
13
|
-
require 'protobuf/message/extend'
|
14
|
-
|
15
|
-
class ExtRangeTest < ::Protobuf::Message
|
16
|
-
defined_in __FILE__
|
17
|
-
extensions 1..10
|
18
|
-
end
|
19
|
-
class ExtRangeTest < ::Protobuf::Message
|
20
|
-
defined_in __FILE__
|
21
|
-
optional :string, :a, 11, :extension => true
|
22
|
-
end
|
data/test/proto/ext_range.proto
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
message M {
|
2
|
-
optional float f = 1 [default = 4.2];
|
3
|
-
optional float g = 2 [default = -4.2];
|
4
|
-
optional float h = 3 [default = 4352];
|
5
|
-
optional float i = 4 [default = 23145.2 ];
|
6
|
-
optional float j = 5 [default = -5 ];
|
7
|
-
optional float k = 6 [default = +23 ];
|
8
|
-
optional float l = 7 [default = +23.42 ];
|
9
|
-
}
|
10
|
-
|
data/test/proto/lowercase.pb.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/lowercase.proto>
|
3
|
-
# package test.lowercase;
|
4
|
-
#
|
5
|
-
# message foo {
|
6
|
-
# message bar {
|
7
|
-
# }
|
8
|
-
# }
|
9
|
-
# message baaz {
|
10
|
-
# required foo.bar x = 1;
|
11
|
-
# }
|
12
|
-
|
13
|
-
require 'protobuf/message/message'
|
14
|
-
require 'protobuf/message/enum'
|
15
|
-
require 'protobuf/message/extend'
|
16
|
-
|
17
|
-
module Test
|
18
|
-
module Lowercase
|
19
|
-
class Foo < ::Protobuf::Message
|
20
|
-
defined_in __FILE__
|
21
|
-
class Bar < ::Protobuf::Message
|
22
|
-
defined_in __FILE__
|
23
|
-
end
|
24
|
-
end
|
25
|
-
class Baaz < ::Protobuf::Message
|
26
|
-
defined_in __FILE__
|
27
|
-
required :'foo::bar', :x, 1
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
data/test/proto/lowercase.proto
DELETED
data/test/proto/merge.pb.rb
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/merge.proto>
|
3
|
-
# package test;
|
4
|
-
#
|
5
|
-
# message MergeMessage {
|
6
|
-
# message InnerMessage1 {
|
7
|
-
# required string name = 1;
|
8
|
-
# }
|
9
|
-
# message InnerMessage2 {
|
10
|
-
# required string name = 1;
|
11
|
-
# repeated InnerMessage1 repeate_message = 2;
|
12
|
-
# }
|
13
|
-
#
|
14
|
-
# required string name = 1;
|
15
|
-
# repeated InnerMessage1 repeate_message = 2;
|
16
|
-
# required InnerMessage2 require_message = 3;
|
17
|
-
# }
|
18
|
-
|
19
|
-
require 'protobuf/message/message'
|
20
|
-
require 'protobuf/message/enum'
|
21
|
-
require 'protobuf/message/extend'
|
22
|
-
|
23
|
-
module Test
|
24
|
-
class MergeMessage < ::Protobuf::Message
|
25
|
-
defined_in __FILE__
|
26
|
-
class InnerMessage1 < ::Protobuf::Message
|
27
|
-
defined_in __FILE__
|
28
|
-
required :string, :name, 1
|
29
|
-
end
|
30
|
-
class InnerMessage2 < ::Protobuf::Message
|
31
|
-
defined_in __FILE__
|
32
|
-
required :string, :name, 1
|
33
|
-
repeated :InnerMessage1, :repeate_message, 2
|
34
|
-
end
|
35
|
-
required :string, :name, 1
|
36
|
-
repeated :InnerMessage1, :repeate_message, 2
|
37
|
-
required :InnerMessage2, :require_message, 3
|
38
|
-
end
|
39
|
-
end
|
data/test/proto/merge.proto
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
package test;
|
2
|
-
|
3
|
-
message MergeMessage {
|
4
|
-
message InnerMessage1 {
|
5
|
-
required string name = 1;
|
6
|
-
}
|
7
|
-
message InnerMessage2 {
|
8
|
-
required string name = 1;
|
9
|
-
repeated InnerMessage1 repeate_message = 2;
|
10
|
-
}
|
11
|
-
|
12
|
-
required string name = 1;
|
13
|
-
repeated InnerMessage1 repeate_message = 2;
|
14
|
-
required InnerMessage2 require_message = 3;
|
15
|
-
}
|
data/test/proto/nested.pb.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/nested.proto>
|
3
|
-
# package test.nested;
|
4
|
-
#
|
5
|
-
# message Foo {
|
6
|
-
# message Bar {
|
7
|
-
# }
|
8
|
-
# }
|
9
|
-
# message Baaz {
|
10
|
-
# optional Foo.Bar x = 1;
|
11
|
-
# }
|
12
|
-
|
13
|
-
require 'protobuf/message/message'
|
14
|
-
require 'protobuf/message/enum'
|
15
|
-
require 'protobuf/message/extend'
|
16
|
-
|
17
|
-
module Test
|
18
|
-
module Nested
|
19
|
-
class Foo < ::Protobuf::Message
|
20
|
-
defined_in __FILE__
|
21
|
-
class Bar < ::Protobuf::Message
|
22
|
-
defined_in __FILE__
|
23
|
-
end
|
24
|
-
end
|
25
|
-
class Baaz < ::Protobuf::Message
|
26
|
-
defined_in __FILE__
|
27
|
-
optional :'Foo::Bar', :x, 1
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
data/test/proto/nested.proto
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/optional_field.proto>
|
3
|
-
# package test.optional_field;
|
4
|
-
#
|
5
|
-
# message Message {
|
6
|
-
# enum Enum {
|
7
|
-
# A = 1;
|
8
|
-
# B = 2;
|
9
|
-
# }
|
10
|
-
# optional uint32 number = 1 [default = 20];
|
11
|
-
# optional string text = 2 [default = "default string"];
|
12
|
-
# optional Enum enum = 3 [default = B];
|
13
|
-
# optional int32 signed = 4 [default = -100];
|
14
|
-
# }
|
15
|
-
|
16
|
-
require 'protobuf/message/message'
|
17
|
-
require 'protobuf/message/enum'
|
18
|
-
require 'protobuf/message/extend'
|
19
|
-
|
20
|
-
module Test
|
21
|
-
module OptionalField
|
22
|
-
class Message < ::Protobuf::Message
|
23
|
-
defined_in __FILE__
|
24
|
-
class Enum < ::Protobuf::Enum
|
25
|
-
defined_in __FILE__
|
26
|
-
define :A, 1
|
27
|
-
define :B, 2
|
28
|
-
end
|
29
|
-
optional :uint32, :number, 1, :default => 20
|
30
|
-
optional :string, :text, 2, :default => "default string"
|
31
|
-
optional :Enum, :enum, 3, :default => :B
|
32
|
-
optional :int32, :signed, 4, :default => -100
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
package test.optional_field;
|
2
|
-
|
3
|
-
message Message {
|
4
|
-
enum Enum {
|
5
|
-
A = 1;
|
6
|
-
B = 2;
|
7
|
-
}
|
8
|
-
optional uint32 number = 1 [default = 20];
|
9
|
-
optional string text = 2 [default = "default string"];
|
10
|
-
optional Enum enum = 3 [default = B];
|
11
|
-
optional int32 signed = 4 [default = -100];
|
12
|
-
}
|
data/test/proto/packed.pb.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/packed.proto>
|
3
|
-
# package test.packed_field;
|
4
|
-
#
|
5
|
-
# message Message {
|
6
|
-
# repeated int32 a = 1 [packed = true];
|
7
|
-
# repeated fixed32 b = 2 [packed = true];
|
8
|
-
# }
|
9
|
-
|
10
|
-
require 'protobuf/message/message'
|
11
|
-
require 'protobuf/message/enum'
|
12
|
-
require 'protobuf/message/extend'
|
13
|
-
|
14
|
-
module Test
|
15
|
-
module PackedField
|
16
|
-
class Message < ::Protobuf::Message
|
17
|
-
defined_in __FILE__
|
18
|
-
repeated :int32, :a, 1, :packed => true
|
19
|
-
repeated :fixed32, :b, 2, :packed => true
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
data/test/proto/packed.proto
DELETED
data/test/proto/rpc.proto
DELETED
data/test/proto/types.pb.rb
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
### Generated by rprotoc. DO NOT EDIT!
|
2
|
-
### <proto file: test/proto/types.proto>
|
3
|
-
# package test.types;
|
4
|
-
#
|
5
|
-
# message TestTypes {
|
6
|
-
# required double type1 = 1;
|
7
|
-
# required float type2 = 2;
|
8
|
-
# required int32 type3 = 3;
|
9
|
-
# required int64 type4 = 4;
|
10
|
-
# required uint32 type5 = 5;
|
11
|
-
# required uint64 type6 = 6;
|
12
|
-
# required sint32 type7 = 7;
|
13
|
-
# required sint64 type8 = 8;
|
14
|
-
# required fixed32 type9 = 9;
|
15
|
-
# required fixed64 type10 = 10;
|
16
|
-
# required bool type11 = 11;
|
17
|
-
# required string type12 = 12;
|
18
|
-
# required bytes type13 = 13;
|
19
|
-
# required sfixed32 type14 = 14;
|
20
|
-
# required sfixed64 type15 = 15;
|
21
|
-
# }
|
22
|
-
#
|
23
|
-
# message RepeatedTypes {
|
24
|
-
# repeated double type1 = 1;
|
25
|
-
# repeated float type2 = 2;
|
26
|
-
# repeated int32 type3 = 3;
|
27
|
-
# repeated int64 type4 = 4;
|
28
|
-
# repeated uint32 type5 = 5;
|
29
|
-
# repeated uint64 type6 = 6;
|
30
|
-
# repeated sint32 type7 = 7;
|
31
|
-
# repeated sint64 type8 = 8;
|
32
|
-
# repeated fixed32 type9 = 9;
|
33
|
-
# repeated fixed64 type10 = 10;
|
34
|
-
# repeated bool type11 = 11;
|
35
|
-
# repeated string type12 = 12;
|
36
|
-
# repeated bytes type13 = 13;
|
37
|
-
# repeated sfixed32 type14 = 14;
|
38
|
-
# repeated sfixed64 type15 = 15;
|
39
|
-
# }
|
40
|
-
|
41
|
-
require 'protobuf/message/message'
|
42
|
-
require 'protobuf/message/enum'
|
43
|
-
require 'protobuf/message/extend'
|
44
|
-
|
45
|
-
module Test
|
46
|
-
module Types
|
47
|
-
class TestTypes < ::Protobuf::Message
|
48
|
-
defined_in __FILE__
|
49
|
-
required :double, :type1, 1
|
50
|
-
required :float, :type2, 2
|
51
|
-
required :int32, :type3, 3
|
52
|
-
required :int64, :type4, 4
|
53
|
-
required :uint32, :type5, 5
|
54
|
-
required :uint64, :type6, 6
|
55
|
-
required :sint32, :type7, 7
|
56
|
-
required :sint64, :type8, 8
|
57
|
-
required :fixed32, :type9, 9
|
58
|
-
required :fixed64, :type10, 10
|
59
|
-
required :bool, :type11, 11
|
60
|
-
required :string, :type12, 12
|
61
|
-
required :bytes, :type13, 13
|
62
|
-
required :sfixed32, :type14, 14
|
63
|
-
required :sfixed64, :type15, 15
|
64
|
-
end
|
65
|
-
class RepeatedTypes < ::Protobuf::Message
|
66
|
-
defined_in __FILE__
|
67
|
-
repeated :double, :type1, 1
|
68
|
-
repeated :float, :type2, 2
|
69
|
-
repeated :int32, :type3, 3
|
70
|
-
repeated :int64, :type4, 4
|
71
|
-
repeated :uint32, :type5, 5
|
72
|
-
repeated :uint64, :type6, 6
|
73
|
-
repeated :sint32, :type7, 7
|
74
|
-
repeated :sint64, :type8, 8
|
75
|
-
repeated :fixed32, :type9, 9
|
76
|
-
repeated :fixed64, :type10, 10
|
77
|
-
repeated :bool, :type11, 11
|
78
|
-
repeated :string, :type12, 12
|
79
|
-
repeated :bytes, :type13, 13
|
80
|
-
repeated :sfixed32, :type14, 14
|
81
|
-
repeated :sfixed64, :type15, 15
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|