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/ext/ruby_generator/Makefile
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
all: \
|
2
|
-
RubyGenerator.h \
|
3
|
-
RubyGenerator.cpp
|
4
|
-
g++ -Wall -I/code/src/utilities/protobuf-2.4.1/src -lprotoc -lprotobuf -lpthread -o protoc-ruby RubyGenerator.cpp
|
5
|
-
|
6
|
-
test:
|
7
|
-
rm -rf test/out/*
|
8
|
-
./protoc-ruby --proto_path=../defs --ruby_out=../out ../defs/atlas/util.proto ../defs/atlas/newman/*.proto
|
9
|
-
|
10
|
-
.PHONY: all test
|
@@ -1,544 +0,0 @@
|
|
1
|
-
#include "RubyGenerator.h"
|
2
|
-
|
3
|
-
namespace google {
|
4
|
-
namespace protobuf {
|
5
|
-
namespace compiler {
|
6
|
-
namespace ruby {
|
7
|
-
|
8
|
-
RubyGenerator::RubyGenerator() {} // Constructor
|
9
|
-
RubyGenerator::~RubyGenerator() {} // Destructor
|
10
|
-
|
11
|
-
// Generate one or more ruby source files for the given proto file.
|
12
|
-
bool RubyGenerator::Generate(const FileDescriptor* file,
|
13
|
-
const string& parameter,
|
14
|
-
GeneratorContext* context,
|
15
|
-
string* error) const {
|
16
|
-
file_ = file;
|
17
|
-
context_ = context;
|
18
|
-
|
19
|
-
filename = CreateRubyFileName(file_->name());
|
20
|
-
ns_vector.clear();
|
21
|
-
extended_messages.clear();
|
22
|
-
SplitStringUsing(file_->package(), ".", &ns_vector);
|
23
|
-
|
24
|
-
// Get a ZeroCopyOutputStream object of the data.
|
25
|
-
scoped_ptr<io::ZeroCopyOutputStream> output(context_->Open(filename));
|
26
|
-
|
27
|
-
// Check the data against Google's proto checking algorithm.
|
28
|
-
GOOGLE_CHECK(output.get());
|
29
|
-
|
30
|
-
// Get a printer.
|
31
|
-
io::Printer printer(output.get(), '$');
|
32
|
-
printer_ = &printer;
|
33
|
-
|
34
|
-
PrintGeneratedFileComment();
|
35
|
-
PrintGenericRequires();
|
36
|
-
PrintImportRequires();
|
37
|
-
|
38
|
-
PrintEnclosingNamespaceModules();
|
39
|
-
StoreExtensionFields(file_);
|
40
|
-
|
41
|
-
PrintEnumsForFileDescriptor(file_, false);
|
42
|
-
PrintMessagesForFileDescriptor(file_, false);
|
43
|
-
PrintMessagesForFileDescriptor(file_, true);
|
44
|
-
PrintDanglingExtendedMessages();
|
45
|
-
PrintServices();
|
46
|
-
|
47
|
-
PrintEnclosingNamespaceModuleEnds();
|
48
|
-
|
49
|
-
if (printer.failed()) {
|
50
|
-
*error = "An unknown error occured writing file " + filename;
|
51
|
-
return false;
|
52
|
-
}
|
53
|
-
else {
|
54
|
-
return true;
|
55
|
-
}
|
56
|
-
} // end Generate()
|
57
|
-
|
58
|
-
//
|
59
|
-
///////////////////////////////////////////////// [ namespaces ] //////////////
|
60
|
-
//
|
61
|
-
|
62
|
-
void RubyGenerator::PrintEnclosingNamespaceModules() const {
|
63
|
-
PrintNewLine();
|
64
|
-
vector<string>::iterator iter;
|
65
|
-
map<string,string> data;
|
66
|
-
for (iter = ns_vector.begin(); iter < ns_vector.end(); iter++) {
|
67
|
-
data["ns"] = Constantize(*iter, false);
|
68
|
-
|
69
|
-
printer_->Print(data, "module $ns$");
|
70
|
-
PrintNewLine();
|
71
|
-
PrintNewLine();
|
72
|
-
printer_->Indent();
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
void RubyGenerator::PrintEnclosingNamespaceModuleEnds() const {
|
77
|
-
vector<string>::iterator iter;
|
78
|
-
for (iter = ns_vector.begin(); iter < ns_vector.end(); iter++) {
|
79
|
-
printer_->Outdent();
|
80
|
-
printer_->Print("end");
|
81
|
-
PrintNewLine();
|
82
|
-
PrintNewLine();
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
86
|
-
|
87
|
-
//
|
88
|
-
///////////////////////////////////////////////// [ messages ] ////////////////
|
89
|
-
//
|
90
|
-
|
91
|
-
// Print a comment and then iteratively PrintMessage for each message
|
92
|
-
// type defined by in this FileDescriptor scope.
|
93
|
-
//
|
94
|
-
void RubyGenerator::PrintMessagesForFileDescriptor(const FileDescriptor* descriptor, bool print_fields) const {
|
95
|
-
if (descriptor->message_type_count() > 0) {
|
96
|
-
if (print_fields) {
|
97
|
-
PrintComment("Message Fields", true);
|
98
|
-
}
|
99
|
-
else {
|
100
|
-
PrintComment("Message Classes", true);
|
101
|
-
}
|
102
|
-
|
103
|
-
for (int i = 0; i < descriptor->message_type_count(); i++) {
|
104
|
-
PrintMessage(descriptor->message_type(i), print_fields);
|
105
|
-
}
|
106
|
-
PrintNewLine();
|
107
|
-
}
|
108
|
-
}
|
109
|
-
|
110
|
-
// Iterates the nested types of a message descriptor and calls PrintMessage for each.
|
111
|
-
//
|
112
|
-
void RubyGenerator::PrintMessagesForDescriptor(const Descriptor* descriptor, bool print_fields) const {
|
113
|
-
for (int i = 0; i < descriptor->nested_type_count(); i++) {
|
114
|
-
PrintMessage(descriptor->nested_type(i), print_fields);
|
115
|
-
}
|
116
|
-
}
|
117
|
-
|
118
|
-
// Print out the given descriptor message as a Ruby class.
|
119
|
-
//
|
120
|
-
void RubyGenerator::PrintMessage(const Descriptor* descriptor, bool print_fields) const {
|
121
|
-
map<string,string> data;
|
122
|
-
data["class_name"] = descriptor->name();
|
123
|
-
|
124
|
-
switch (print_fields) {
|
125
|
-
case false:
|
126
|
-
|
127
|
-
if (DescriptorHasNestedTypes(descriptor)) {
|
128
|
-
printer_->Print(data, "class $class_name$ < ::Protobuf::Message");
|
129
|
-
PrintNewLine();
|
130
|
-
printer_->Indent();
|
131
|
-
|
132
|
-
if (descriptor->enum_type_count() > 0) {
|
133
|
-
PrintEnumsForDescriptor(descriptor, true);
|
134
|
-
}
|
135
|
-
|
136
|
-
if (descriptor->nested_type_count() > 0) {
|
137
|
-
PrintMessagesForDescriptor(descriptor, false);
|
138
|
-
}
|
139
|
-
|
140
|
-
printer_->Outdent();
|
141
|
-
printer_->Print(data, "end");
|
142
|
-
}
|
143
|
-
else {
|
144
|
-
printer_->Print(data, "class $class_name$ < ::Protobuf::Message; end");
|
145
|
-
}
|
146
|
-
|
147
|
-
PrintNewLine();
|
148
|
-
StoreExtensionFields(descriptor);
|
149
|
-
|
150
|
-
break;
|
151
|
-
|
152
|
-
case true:
|
153
|
-
|
154
|
-
if (descriptor->field_count() > 0 || DescriptorHasExtensions(descriptor)) {
|
155
|
-
printer_->Print(data, "class $class_name$");
|
156
|
-
PrintNewLine();
|
157
|
-
printer_->Indent();
|
158
|
-
|
159
|
-
if (descriptor->nested_type_count() > 0) {
|
160
|
-
PrintMessagesForDescriptor(descriptor, true);
|
161
|
-
}
|
162
|
-
|
163
|
-
// Print Fields
|
164
|
-
if (descriptor->field_count() > 0) {
|
165
|
-
for (int i = 0; i < descriptor->field_count(); i++) {
|
166
|
-
PrintMessageField(descriptor->field(i));
|
167
|
-
}
|
168
|
-
}
|
169
|
-
|
170
|
-
PrintExtensionRangesForDescriptor(descriptor);
|
171
|
-
|
172
|
-
// Print Extension Fields
|
173
|
-
if (DescriptorHasExtensions(descriptor)) {
|
174
|
-
PrintMessageExtensionFields(descriptor->full_name());
|
175
|
-
}
|
176
|
-
|
177
|
-
printer_->Outdent();
|
178
|
-
printer_->Print(data, "end");
|
179
|
-
PrintNewLine();
|
180
|
-
PrintNewLine();
|
181
|
-
}
|
182
|
-
else if (descriptor->nested_type_count() > 0) {
|
183
|
-
printer_->Print(data, "class $class_name$");
|
184
|
-
PrintNewLine();
|
185
|
-
printer_->Indent();
|
186
|
-
|
187
|
-
if (descriptor->nested_type_count() > 0) {
|
188
|
-
PrintMessagesForDescriptor(descriptor, true);
|
189
|
-
}
|
190
|
-
|
191
|
-
printer_->Outdent();
|
192
|
-
printer_->Print(data, "end");
|
193
|
-
PrintNewLine();
|
194
|
-
PrintNewLine();
|
195
|
-
}
|
196
|
-
|
197
|
-
break;
|
198
|
-
}
|
199
|
-
}
|
200
|
-
|
201
|
-
void RubyGenerator::PrintExtensionRangesForDescriptor(const Descriptor* descriptor) const {
|
202
|
-
if (descriptor->extension_range_count() > 0) {
|
203
|
-
PrintNewLine();
|
204
|
-
PrintComment("Extension Fields", false);
|
205
|
-
|
206
|
-
for (int i = 0; i < descriptor->extension_range_count(); i++) {
|
207
|
-
const Descriptor::ExtensionRange* range = descriptor->extension_range(i);
|
208
|
-
map<string,string> data;
|
209
|
-
data["message_class"] = Constantize(descriptor->full_name());
|
210
|
-
data["start"] = SimpleItoa(range->start);
|
211
|
-
data["end"] = SimpleItoa(range->end);
|
212
|
-
printer_->Print(data, "extensions $start$...$end$");
|
213
|
-
PrintNewLine();
|
214
|
-
}
|
215
|
-
}
|
216
|
-
}
|
217
|
-
|
218
|
-
// Print the given FieldDescriptor to the Message DSL methods.
|
219
|
-
void RubyGenerator::PrintMessageField(const FieldDescriptor* descriptor) const {
|
220
|
-
map<string,string> data;
|
221
|
-
data["field_presence"] = "";
|
222
|
-
data["field_name"] = descriptor->lowercase_name();
|
223
|
-
data["tag_number"] = SimpleItoa(descriptor->number());
|
224
|
-
data["data_type"] = "";
|
225
|
-
data["default_opt"] = "";
|
226
|
-
data["packed_opt"] = "";
|
227
|
-
data["deprecated_opt"] = "";
|
228
|
-
data["extension_opt"] = "";
|
229
|
-
|
230
|
-
if (descriptor->is_required()) {
|
231
|
-
data["field_presence"] = "required";
|
232
|
-
}
|
233
|
-
else if (descriptor->is_optional()) {
|
234
|
-
data["field_presence"] = "optional";
|
235
|
-
}
|
236
|
-
else if (descriptor->is_repeated()) {
|
237
|
-
data["field_presence"] = "repeated";
|
238
|
-
}
|
239
|
-
|
240
|
-
switch (descriptor->type()) {
|
241
|
-
// Primitives
|
242
|
-
case FieldDescriptor::TYPE_DOUBLE: data["data_type"] = "::Protobuf::Field::DoubleField"; break;
|
243
|
-
case FieldDescriptor::TYPE_FLOAT: data["data_type"] = "::Protobuf::Field::FloatField"; break;
|
244
|
-
case FieldDescriptor::TYPE_INT64: data["data_type"] = "::Protobuf::Field::Int64Field"; break;
|
245
|
-
case FieldDescriptor::TYPE_UINT64: data["data_type"] = "::Protobuf::Field::Uint64Field"; break;
|
246
|
-
case FieldDescriptor::TYPE_INT32: data["data_type"] = "::Protobuf::Field::Int32Field"; break;
|
247
|
-
case FieldDescriptor::TYPE_FIXED64: data["data_type"] = "::Protobuf::Field::Fixed64Field"; break;
|
248
|
-
case FieldDescriptor::TYPE_FIXED32: data["data_type"] = "::Protobuf::Field::Fixed32Field"; break;
|
249
|
-
case FieldDescriptor::TYPE_BOOL: data["data_type"] = "::Protobuf::Field::BoolField"; break;
|
250
|
-
case FieldDescriptor::TYPE_STRING: data["data_type"] = "::Protobuf::Field::StringField"; break;
|
251
|
-
case FieldDescriptor::TYPE_BYTES: data["data_type"] = "::Protobuf::Field::BytesField"; break;
|
252
|
-
case FieldDescriptor::TYPE_UINT32: data["data_type"] = "::Protobuf::Field::Uint32Field"; break;
|
253
|
-
case FieldDescriptor::TYPE_SFIXED32: data["data_type"] = "::Protobuf::Field::Sfixed32Field"; break;
|
254
|
-
case FieldDescriptor::TYPE_SFIXED64: data["data_type"] = "::Protobuf::Field::Sfixed64Field"; break;
|
255
|
-
case FieldDescriptor::TYPE_SINT32: data["data_type"] = "::Protobuf::Field::Sint32Field"; break;
|
256
|
-
case FieldDescriptor::TYPE_SINT64: data["data_type"] = "::Protobuf::Field::Sint64Field"; break;
|
257
|
-
|
258
|
-
// Enums
|
259
|
-
case FieldDescriptor::TYPE_ENUM:
|
260
|
-
data["data_type"] = Constantize(descriptor->enum_type()->full_name());
|
261
|
-
break;
|
262
|
-
|
263
|
-
// Messages
|
264
|
-
case FieldDescriptor::TYPE_GROUP:
|
265
|
-
case FieldDescriptor::TYPE_MESSAGE:
|
266
|
-
default:
|
267
|
-
data["data_type"] = Constantize(descriptor->message_type()->full_name());
|
268
|
-
break;
|
269
|
-
}
|
270
|
-
|
271
|
-
if (descriptor->has_default_value()) {
|
272
|
-
string value;
|
273
|
-
switch(descriptor->cpp_type()) {
|
274
|
-
case FieldDescriptor::CPPTYPE_INT32: value = SimpleItoa(descriptor->default_value_int32()); break;
|
275
|
-
case FieldDescriptor::CPPTYPE_INT64: value = SimpleItoa(descriptor->default_value_int64()); break;
|
276
|
-
case FieldDescriptor::CPPTYPE_UINT32: value = SimpleItoa(descriptor->default_value_uint32()); break;
|
277
|
-
case FieldDescriptor::CPPTYPE_UINT64: value = SimpleItoa(descriptor->default_value_uint64()); break;
|
278
|
-
case FieldDescriptor::CPPTYPE_DOUBLE: value = SimpleDtoa(descriptor->default_value_double()); break;
|
279
|
-
case FieldDescriptor::CPPTYPE_FLOAT: value = SimpleFtoa(descriptor->default_value_float()); break;
|
280
|
-
case FieldDescriptor::CPPTYPE_BOOL: value = descriptor->default_value_bool() ? "true" : "false"; break;
|
281
|
-
case FieldDescriptor::CPPTYPE_ENUM: value = FullEnumNamespace(descriptor->default_value_enum()); break;
|
282
|
-
case FieldDescriptor::CPPTYPE_STRING: value = "\"" + descriptor->default_value_string() + "\""; break;
|
283
|
-
default: break;
|
284
|
-
}
|
285
|
-
data["default_opt"] = strings::Substitute(", :default => $0", value);
|
286
|
-
}
|
287
|
-
|
288
|
-
if (descriptor->is_packable() && descriptor->options().has_packed()) {
|
289
|
-
string packed_bool = descriptor->options().packed() ? "true" : "false";
|
290
|
-
data["packed_opt"] = strings::Substitute(", :packed => $0", packed_bool);
|
291
|
-
}
|
292
|
-
|
293
|
-
if (descriptor->options().has_deprecated()) {
|
294
|
-
string deprecated_bool = descriptor->options().deprecated() ? "true" : "false";
|
295
|
-
data["deprecated_opt"] = strings::Substitute(", :deprecated => $0", deprecated_bool);
|
296
|
-
}
|
297
|
-
|
298
|
-
if (descriptor->is_extension()) {
|
299
|
-
data["extension_opt"] = ", :extension => true";
|
300
|
-
}
|
301
|
-
|
302
|
-
printer_->Print(data,
|
303
|
-
"$field_presence$ "
|
304
|
-
"$data_type$, "
|
305
|
-
":$field_name$, "
|
306
|
-
"$tag_number$"
|
307
|
-
"$default_opt$"
|
308
|
-
"$packed_opt$"
|
309
|
-
"$deprecated_opt$"
|
310
|
-
"$extension_opt$");
|
311
|
-
PrintNewLine();
|
312
|
-
}
|
313
|
-
|
314
|
-
// Print out each extension field previously mapped to the full name of
|
315
|
-
// the descriptor message.
|
316
|
-
//
|
317
|
-
// After printign the fields, erase the fields from the map so that we know
|
318
|
-
// which fields are dangling and to print wrapped in a re-opened class block.
|
319
|
-
//
|
320
|
-
void RubyGenerator::PrintMessageExtensionFields(const string full_name) const {
|
321
|
-
vector<const FieldDescriptor*> message_extensions = extended_messages[full_name];
|
322
|
-
vector<const FieldDescriptor*>::iterator it;
|
323
|
-
for (it = message_extensions.begin(); it != message_extensions.end(); ++it) {
|
324
|
-
PrintMessageField(*it);
|
325
|
-
}
|
326
|
-
extended_messages.erase(full_name);
|
327
|
-
}
|
328
|
-
|
329
|
-
//
|
330
|
-
///////////////////////////////////////////////// [ enums ] ///////////////////
|
331
|
-
//
|
332
|
-
|
333
|
-
void RubyGenerator::PrintEnumsForDescriptor(const Descriptor* descriptor, bool print_values) const {
|
334
|
-
for (int i = 0; i < descriptor->enum_type_count(); i++) {
|
335
|
-
PrintEnum(descriptor->enum_type(i));
|
336
|
-
}
|
337
|
-
}
|
338
|
-
|
339
|
-
void RubyGenerator::PrintEnumsForFileDescriptor(const FileDescriptor* descriptor, bool print_values) const {
|
340
|
-
if (descriptor->enum_type_count() > 0) {
|
341
|
-
if (print_values) {
|
342
|
-
PrintComment("Enum Values", true);
|
343
|
-
}
|
344
|
-
else {
|
345
|
-
PrintComment("Enum Classes", true);
|
346
|
-
}
|
347
|
-
|
348
|
-
for (int i = 0; i < descriptor->enum_type_count(); i++) {
|
349
|
-
PrintEnum(descriptor->enum_type(i));
|
350
|
-
}
|
351
|
-
PrintNewLine();
|
352
|
-
}
|
353
|
-
}
|
354
|
-
|
355
|
-
// Print the given enum descriptor as a Ruby class.
|
356
|
-
void RubyGenerator::PrintEnum(const EnumDescriptor* descriptor) const {
|
357
|
-
map<string,string> data;
|
358
|
-
data["class_name"] = descriptor->name();
|
359
|
-
|
360
|
-
printer_->Print(data, "class $class_name$ < ::Protobuf::Enum");
|
361
|
-
printer_->Indent();
|
362
|
-
PrintNewLine();
|
363
|
-
|
364
|
-
for (int i = 0; i < descriptor->value_count(); i++) {
|
365
|
-
PrintEnumValue(descriptor->value(i));
|
366
|
-
}
|
367
|
-
|
368
|
-
printer_->Outdent();
|
369
|
-
printer_->Print(data, "end");
|
370
|
-
PrintNewLine();
|
371
|
-
PrintNewLine();
|
372
|
-
}
|
373
|
-
|
374
|
-
// Print the given enum value to the Enum class DSL methods.
|
375
|
-
void RubyGenerator::PrintEnumValue(const EnumValueDescriptor* descriptor) const {
|
376
|
-
map<string,string> data;
|
377
|
-
data["name"] = descriptor->name();
|
378
|
-
data["number"] = ConvertIntToString(descriptor->number());
|
379
|
-
printer_->Print(data, "define :$name$, $number$");
|
380
|
-
PrintNewLine();
|
381
|
-
}
|
382
|
-
|
383
|
-
//
|
384
|
-
///////////////////////////////////////////////// [ services ] ////////////////
|
385
|
-
//
|
386
|
-
|
387
|
-
void RubyGenerator::PrintServices() const {
|
388
|
-
if (file_->service_count() > 0) {
|
389
|
-
PrintComment("Services", true);
|
390
|
-
for (int i = 0; i < file_->service_count(); i++) {
|
391
|
-
PrintService(file_->service(i));
|
392
|
-
}
|
393
|
-
}
|
394
|
-
}
|
395
|
-
|
396
|
-
// Print the given service as a Ruby class.
|
397
|
-
void RubyGenerator::PrintService(const ServiceDescriptor* descriptor) const {
|
398
|
-
map<string,string> data;
|
399
|
-
data["class_name"] = descriptor->name();
|
400
|
-
|
401
|
-
printer_->Print(data, "class $class_name$ < ::Protobuf::Rpc::Service");
|
402
|
-
PrintNewLine();
|
403
|
-
printer_->Indent();
|
404
|
-
|
405
|
-
for (int i = 0; i < descriptor->method_count(); i++) {
|
406
|
-
PrintServiceMethod(descriptor->method(i));
|
407
|
-
}
|
408
|
-
|
409
|
-
printer_->Outdent();
|
410
|
-
printer_->Print("end");
|
411
|
-
PrintNewLine();
|
412
|
-
}
|
413
|
-
|
414
|
-
// Print the rpc DSL declaration to the Ruby service class.
|
415
|
-
void RubyGenerator::PrintServiceMethod(const MethodDescriptor* descriptor) const {
|
416
|
-
map<string,string> data;
|
417
|
-
data["name"] = Underscore(descriptor->name());
|
418
|
-
data["request_klass"] = Constantize(descriptor->input_type()->full_name());
|
419
|
-
data["response_klass"] = Constantize(descriptor->output_type()->full_name());
|
420
|
-
printer_->Print(data, "rpc :$name$, $request_klass$, $response_klass$");
|
421
|
-
PrintNewLine();
|
422
|
-
}
|
423
|
-
|
424
|
-
|
425
|
-
//
|
426
|
-
///////////////////////////////////////////////// [ general ] ////////////////
|
427
|
-
//
|
428
|
-
|
429
|
-
void RubyGenerator::PrintDanglingExtendedMessages() const {
|
430
|
-
if (extended_messages.size() > 0) {
|
431
|
-
PrintComment("Extended Messages", true);
|
432
|
-
|
433
|
-
tr1::unordered_map<string, vector<const FieldDescriptor*> >::iterator it;
|
434
|
-
for (it = extended_messages.begin(); it != extended_messages.end(); ++it ) {
|
435
|
-
map<string,string> data;
|
436
|
-
data["class_name"] = Constantize(it->first);
|
437
|
-
|
438
|
-
printer_->Print(data, "class $class_name$");
|
439
|
-
printer_->Indent();
|
440
|
-
PrintNewLine();
|
441
|
-
|
442
|
-
PrintMessageExtensionFields(it->first);
|
443
|
-
|
444
|
-
printer_->Outdent();
|
445
|
-
printer_->Print(data, "end");
|
446
|
-
PrintNewLine();
|
447
|
-
PrintNewLine();
|
448
|
-
}
|
449
|
-
}
|
450
|
-
}
|
451
|
-
|
452
|
-
// Explicitly check for the key with `count` so that we don't create
|
453
|
-
// empty vectors for classes simply using bracket access.
|
454
|
-
//
|
455
|
-
bool RubyGenerator::DescriptorHasExtensions(const Descriptor* descriptor) const {
|
456
|
-
const string full_name = descriptor->full_name();
|
457
|
-
if (extended_messages.count(full_name) > 0) {
|
458
|
-
return (extended_messages[full_name].size());
|
459
|
-
}
|
460
|
-
else {
|
461
|
-
return 0;
|
462
|
-
}
|
463
|
-
}
|
464
|
-
|
465
|
-
// Print a header or one-line comment (as indicated by the as_header bool).
|
466
|
-
void RubyGenerator::PrintComment(string comment, bool as_header) const {
|
467
|
-
char format[] = "# $comment$\n";
|
468
|
-
char format_multi[] = "##\n# $comment$\n#\n";
|
469
|
-
|
470
|
-
map<string,string> data;
|
471
|
-
data["comment"] = comment;
|
472
|
-
|
473
|
-
if (as_header) {
|
474
|
-
printer_->Print(data, format_multi);
|
475
|
-
}
|
476
|
-
else {
|
477
|
-
printer_->Print(data, format);
|
478
|
-
}
|
479
|
-
}
|
480
|
-
|
481
|
-
// Prints a require with the given ruby library.
|
482
|
-
void RubyGenerator::PrintRequire(string lib_name) const {
|
483
|
-
map<string,string> data;
|
484
|
-
data["lib"] = lib_name;
|
485
|
-
printer_->Print(data, "require '$lib$'\n");
|
486
|
-
}
|
487
|
-
|
488
|
-
// Print a comment indicating that the file was generated.
|
489
|
-
void RubyGenerator::PrintGeneratedFileComment() const {
|
490
|
-
PrintComment("This file is auto-generated. DO NOT EDIT!", true);
|
491
|
-
}
|
492
|
-
|
493
|
-
// Print out message requires as they pertain to the ruby library.
|
494
|
-
void RubyGenerator::PrintGenericRequires() const {
|
495
|
-
if (file_->message_type_count() > 0) {
|
496
|
-
PrintRequire("protobuf/message");
|
497
|
-
}
|
498
|
-
if (file_->service_count() > 0) {
|
499
|
-
PrintRequire("protobuf/rpc/service");
|
500
|
-
}
|
501
|
-
}
|
502
|
-
|
503
|
-
void RubyGenerator::PrintImportRequires() const {
|
504
|
-
if (file_->dependency_count() > 0) {
|
505
|
-
PrintNewLine();
|
506
|
-
PrintComment("Imports", true);
|
507
|
-
for (int i = 0; i < file_->dependency_count(); i++) {
|
508
|
-
PrintRequire(CreateRubyFileName(file_->dependency(i)->name(), true));
|
509
|
-
}
|
510
|
-
}
|
511
|
-
}
|
512
|
-
|
513
|
-
// Print a one-line comment.
|
514
|
-
void RubyGenerator::PrintComment(string comment) const {
|
515
|
-
PrintComment(comment, false);
|
516
|
-
}
|
517
|
-
|
518
|
-
void RubyGenerator::PrintNewLine() const {
|
519
|
-
printer_->Print("\n");
|
520
|
-
}
|
521
|
-
|
522
|
-
// We need to store any extension fields defined in the scope of this
|
523
|
-
// descriptor message by the field's containing type.
|
524
|
-
void RubyGenerator::StoreExtensionFields(const FileDescriptor* descriptor) const {
|
525
|
-
for (int i = 0; i < descriptor->extension_count(); i++) {
|
526
|
-
const FieldDescriptor* extension_field = descriptor->extension(i);
|
527
|
-
const Descriptor* containing = extension_field->containing_type();
|
528
|
-
extended_messages[containing->full_name()].push_back(extension_field);
|
529
|
-
}
|
530
|
-
}
|
531
|
-
|
532
|
-
// Same as above, only accept the Descriptor type instead of FileDescriptor.
|
533
|
-
void RubyGenerator::StoreExtensionFields(const Descriptor* descriptor) const {
|
534
|
-
for (int i = 0; i < descriptor->extension_count(); i++) {
|
535
|
-
const FieldDescriptor* extension_field = descriptor->extension(i);
|
536
|
-
const Descriptor* containing = extension_field->containing_type();
|
537
|
-
extended_messages[containing->full_name()].push_back(extension_field);
|
538
|
-
}
|
539
|
-
}
|
540
|
-
|
541
|
-
} // namespace ruby
|
542
|
-
} // namespace compiler
|
543
|
-
} // namespace protobuf
|
544
|
-
} // namespace google
|