protobuf 1.4.2 → 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. data/.gitignore +4 -0
  2. data/Rakefile +7 -7
  3. data/bin/rpc_server +2 -188
  4. data/bin/rprotoc +44 -38
  5. data/examples/addressbook.pb.rb +2 -2
  6. data/ext/Makefile +11 -0
  7. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/code_generator.h +142 -0
  8. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/command_line_interface.h +318 -0
  9. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum.h +99 -0
  10. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h +103 -0
  11. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_extension.h +85 -0
  12. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_field.h +167 -0
  13. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_file.h +98 -0
  14. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_generator.h +72 -0
  15. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_helpers.h +159 -0
  16. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message.h +170 -0
  17. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message_field.h +102 -0
  18. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_primitive_field.h +103 -0
  19. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_service.h +118 -0
  20. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_string_field.h +104 -0
  21. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h +2721 -0
  22. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/importer.h +303 -0
  23. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum.h +84 -0
  24. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum_field.h +121 -0
  25. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_extension.h +77 -0
  26. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_field.h +108 -0
  27. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_file.h +101 -0
  28. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_generator.h +72 -0
  29. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_helpers.h +213 -0
  30. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message.h +109 -0
  31. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message_field.h +134 -0
  32. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_primitive_field.h +121 -0
  33. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_service.h +113 -0
  34. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_string_field.h +120 -0
  35. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/mock_code_generator.h +113 -0
  36. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/package_info.h +64 -0
  37. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/parser.h +434 -0
  38. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.h +73 -0
  39. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.pb.h +790 -0
  40. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/python/python_generator.h +156 -0
  41. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/subprocess.h +108 -0
  42. data/ext/protobuf-2.4.1/src/google/protobuf/compiler/zip_writer.h +93 -0
  43. data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.h +1367 -0
  44. data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.pb.h +5223 -0
  45. data/ext/protobuf-2.4.1/src/google/protobuf/descriptor_database.h +366 -0
  46. data/ext/protobuf-2.4.1/src/google/protobuf/dynamic_message.h +136 -0
  47. data/ext/protobuf-2.4.1/src/google/protobuf/extension_set.h +904 -0
  48. data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_reflection.h +424 -0
  49. data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_util.h +82 -0
  50. data/ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream.h +1102 -0
  51. data/ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream_inl.h +64 -0
  52. data/ext/protobuf-2.4.1/src/google/protobuf/io/gzip_stream.h +207 -0
  53. data/ext/protobuf-2.4.1/src/google/protobuf/io/package_info.h +54 -0
  54. data/ext/protobuf-2.4.1/src/google/protobuf/io/printer.h +136 -0
  55. data/ext/protobuf-2.4.1/src/google/protobuf/io/tokenizer.h +313 -0
  56. data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream.h +238 -0
  57. data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl.h +357 -0
  58. data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h +340 -0
  59. data/ext/protobuf-2.4.1/src/google/protobuf/message.h +692 -0
  60. data/ext/protobuf-2.4.1/src/google/protobuf/message_lite.h +239 -0
  61. data/ext/protobuf-2.4.1/src/google/protobuf/package_info.h +64 -0
  62. data/ext/protobuf-2.4.1/src/google/protobuf/reflection_ops.h +80 -0
  63. data/ext/protobuf-2.4.1/src/google/protobuf/repeated_field.h +1295 -0
  64. data/ext/protobuf-2.4.1/src/google/protobuf/service.h +291 -0
  65. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/common.h +1211 -0
  66. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/hash.h +220 -0
  67. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/map-util.h +119 -0
  68. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/once.h +123 -0
  69. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/stl_util-inl.h +121 -0
  70. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/strutil.h +457 -0
  71. data/ext/protobuf-2.4.1/src/google/protobuf/stubs/substitute.h +170 -0
  72. data/ext/protobuf-2.4.1/src/google/protobuf/test_util.h +174 -0
  73. data/ext/protobuf-2.4.1/src/google/protobuf/test_util_lite.h +101 -0
  74. data/ext/protobuf-2.4.1/src/google/protobuf/testing/file.h +83 -0
  75. data/ext/protobuf-2.4.1/src/google/protobuf/testing/googletest.h +98 -0
  76. data/ext/protobuf-2.4.1/src/google/protobuf/text_format.h +285 -0
  77. data/ext/protobuf-2.4.1/src/google/protobuf/unittest.pb.h +11915 -0
  78. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_custom_options.pb.h +2895 -0
  79. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_embed_optimize_for.pb.h +211 -0
  80. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_empty.pb.h +56 -0
  81. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import.pb.h +188 -0
  82. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import_lite.pb.h +151 -0
  83. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite.pb.h +4752 -0
  84. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite_imports_nonlite.pb.h +150 -0
  85. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_mset.pb.h +816 -0
  86. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_no_generic_services.pb.h +197 -0
  87. data/ext/protobuf-2.4.1/src/google/protobuf/unittest_optimize_for.pb.h +403 -0
  88. data/ext/protobuf-2.4.1/src/google/protobuf/unknown_field_set.h +268 -0
  89. data/ext/protobuf-2.4.1/src/google/protobuf/wire_format.h +304 -0
  90. data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite.h +620 -0
  91. data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite_inl.h +774 -0
  92. data/ext/ruby_generator/RubyGenerator.cpp +435 -0
  93. data/ext/ruby_generator/RubyGenerator.h +180 -0
  94. data/ext/ruby_generator/extconf.rb +24 -0
  95. data/lib/protobuf.rb +55 -33
  96. data/lib/protobuf/cli.rb +176 -0
  97. data/lib/protobuf/common/logger.rb +11 -11
  98. data/lib/protobuf/{message/enum.rb → enum.rb} +0 -10
  99. data/lib/protobuf/evented.rb +22 -0
  100. data/lib/protobuf/field.rb +57 -0
  101. data/lib/protobuf/field/base_field.rb +210 -0
  102. data/lib/protobuf/field/bool_field.rb +24 -0
  103. data/lib/protobuf/field/bytes_field.rb +38 -0
  104. data/lib/protobuf/field/double_field.rb +19 -0
  105. data/lib/protobuf/field/enum_field.rb +58 -0
  106. data/lib/protobuf/field/extension_fields.rb +24 -0
  107. data/lib/protobuf/field/field_array.rb +55 -0
  108. data/lib/protobuf/field/fixed32_field.rb +19 -0
  109. data/lib/protobuf/field/fixed64_field.rb +22 -0
  110. data/lib/protobuf/field/float_field.rb +29 -0
  111. data/lib/protobuf/field/int32_field.rb +10 -0
  112. data/lib/protobuf/field/int64_field.rb +10 -0
  113. data/lib/protobuf/field/integer_field.rb +19 -0
  114. data/lib/protobuf/field/message_field.rb +51 -0
  115. data/lib/protobuf/field/sfixed32_field.rb +21 -0
  116. data/lib/protobuf/field/sfixed64_field.rb +24 -0
  117. data/lib/protobuf/field/signed_integer_field.rb +23 -0
  118. data/lib/protobuf/field/sint32_field.rb +10 -0
  119. data/lib/protobuf/field/sint64_field.rb +10 -0
  120. data/lib/protobuf/field/string_field.rb +14 -0
  121. data/lib/protobuf/field/uint32_field.rb +10 -0
  122. data/lib/protobuf/field/uint64_field.rb +10 -0
  123. data/lib/protobuf/field/varint_field.rb +63 -0
  124. data/lib/protobuf/message.rb +376 -0
  125. data/lib/protobuf/message/message.rb +1 -475
  126. data/lib/protobuf/rpc/buffer.rb +1 -1
  127. data/lib/protobuf/rpc/client.rb +26 -26
  128. data/lib/protobuf/rpc/connector.rb +15 -14
  129. data/lib/protobuf/rpc/connectors/eventmachine.rb +13 -13
  130. data/lib/protobuf/rpc/rpc.pb.rb +39 -28
  131. data/lib/protobuf/rpc/server.rb +7 -28
  132. data/lib/protobuf/rpc/servers/evented_runner.rb +15 -15
  133. data/lib/protobuf/rpc/servers/socket/server.rb +2 -1
  134. data/lib/protobuf/rpc/servers/socket_runner.rb +5 -6
  135. data/lib/protobuf/rpc/servers/zmq_runner.rb +4 -5
  136. data/lib/protobuf/socket.rb +22 -0
  137. data/lib/protobuf/version.rb +2 -1
  138. data/lib/protobuf/zmq.rb +21 -0
  139. data/proto/rpc.pb.rb +48 -0
  140. data/protobuf.gemspec +14 -6
  141. data/spec/benchmark/tasks.rb +42 -23
  142. data/spec/functional/evented_server_spec.rb +2 -0
  143. data/spec/functional/socket_server_spec.rb +22 -26
  144. data/spec/functional/zmq_server_spec.rb +22 -26
  145. data/spec/lib/protobuf/cli_spec.rb +182 -0
  146. data/spec/{unit → lib/protobuf}/common/logger_spec.rb +0 -0
  147. data/spec/{unit → lib/protobuf/message}/enum_spec.rb +0 -0
  148. data/spec/{unit → lib/protobuf/message}/message_spec.rb +0 -0
  149. data/spec/{unit → lib/protobuf}/rpc/client_spec.rb +6 -4
  150. data/spec/lib/protobuf/rpc/connector_spec.rb +41 -0
  151. data/spec/{unit → lib/protobuf}/rpc/connectors/base_spec.rb +18 -18
  152. data/spec/{unit → lib/protobuf}/rpc/connectors/common_spec.rb +20 -20
  153. data/spec/{unit → lib/protobuf}/rpc/connectors/socket_spec.rb +9 -8
  154. data/spec/{unit → lib/protobuf}/rpc/connectors/zmq_spec.rb +1 -1
  155. data/spec/{unit → lib/protobuf}/rpc/servers/evented_server_spec.rb +4 -4
  156. data/spec/{unit → lib/protobuf}/rpc/servers/socket_server_spec.rb +11 -23
  157. data/spec/{unit → lib/protobuf}/rpc/servers/zmq/broker_spec.rb +5 -0
  158. data/spec/{unit → lib/protobuf}/rpc/servers/zmq/server_spec.rb +5 -0
  159. data/spec/{unit → lib/protobuf}/rpc/servers/zmq/util_spec.rb +5 -0
  160. data/spec/{unit → lib/protobuf}/rpc/servers/zmq/worker_spec.rb +5 -0
  161. data/spec/{unit → lib/protobuf}/rpc/service_spec.rb +0 -0
  162. data/spec/proto/test.pb.rb +48 -25
  163. data/spec/spec_helper.rb +9 -15
  164. data/spec/support/all.rb +7 -0
  165. data/spec/{helper → support}/server.rb +5 -7
  166. data/spec/{helper → support}/silent_constants.rb +4 -0
  167. data/spec/support/test_app_file.rb +2 -0
  168. data/spec/{helper → support}/tolerance_matcher.rb +0 -0
  169. data/test/proto/types.pb.rb +1 -1
  170. data/test/test_addressbook.rb +1 -1
  171. data/test/test_enum_value.rb +1 -1
  172. data/test/test_standard_message.rb +1 -1
  173. metadata +243 -107
  174. data/lib/protobuf/common/util.rb +0 -59
  175. data/lib/protobuf/compiler/compiler.rb +0 -52
  176. data/lib/protobuf/compiler/nodes.rb +0 -323
  177. data/lib/protobuf/compiler/proto.y +0 -216
  178. data/lib/protobuf/compiler/proto2.ebnf +0 -79
  179. data/lib/protobuf/compiler/proto_parser.rb +0 -1425
  180. data/lib/protobuf/compiler/template/rpc_service_implementation.erb +0 -42
  181. data/lib/protobuf/compiler/visitors.rb +0 -282
  182. data/lib/protobuf/descriptor/descriptor.proto +0 -286
  183. data/lib/protobuf/descriptor/descriptor.rb +0 -55
  184. data/lib/protobuf/descriptor/descriptor_builder.rb +0 -143
  185. data/lib/protobuf/descriptor/descriptor_proto.rb +0 -138
  186. data/lib/protobuf/descriptor/enum_descriptor.rb +0 -33
  187. data/lib/protobuf/descriptor/field_descriptor.rb +0 -49
  188. data/lib/protobuf/descriptor/file_descriptor.rb +0 -37
  189. data/lib/protobuf/message/field.rb +0 -684
  190. data/lib/protobuf/message/protoable.rb +0 -38
  191. data/spec/helper/all.rb +0 -7
  192. data/spec/unit/common/util_spec.rb +0 -17
  193. data/spec/unit/rpc/connector_spec.rb +0 -31
  194. data/spec/unit/rpc/connectors/eventmachine_client_spec.rb +0 -32
  195. data/spec/unit/rpc/connectors/eventmachine_spec.rb +0 -0
  196. data/test/check_unbuild.rb +0 -30
  197. data/test/test_compiler.rb +0 -325
  198. data/test/test_descriptor.rb +0 -122
@@ -0,0 +1,64 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // http://code.google.com/p/protobuf/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
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.
30
+
31
+ // Author: jasonh@google.com (Jason Hsueh)
32
+ //
33
+ // Implements methods of coded_stream.h that need to be inlined for performance
34
+ // reasons, but should not be defined in a public header.
35
+
36
+ #ifndef GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
37
+ #define GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
38
+
39
+ #include <google/protobuf/io/coded_stream.h>
40
+ #include <string>
41
+ #include <google/protobuf/stubs/stl_util-inl.h>
42
+
43
+ namespace google {
44
+ namespace protobuf {
45
+ namespace io {
46
+
47
+ inline bool CodedInputStream::InternalReadStringInline(string* buffer,
48
+ int size) {
49
+ if (size < 0) return false; // security: size is often user-supplied
50
+
51
+ if (BufferSize() >= size) {
52
+ STLStringResizeUninitialized(buffer, size);
53
+ memcpy(string_as_array(buffer), buffer_, size);
54
+ Advance(size);
55
+ return true;
56
+ }
57
+
58
+ return ReadStringFallback(buffer, size);
59
+ }
60
+
61
+ } // namespace io
62
+ } // namespace protobuf
63
+ } // namespace google
64
+ #endif // GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
@@ -0,0 +1,207 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // http://code.google.com/p/protobuf/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
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.
30
+
31
+ // Author: brianolson@google.com (Brian Olson)
32
+ //
33
+ // This file contains the definition for classes GzipInputStream and
34
+ // GzipOutputStream.
35
+ //
36
+ // GzipInputStream decompresses data from an underlying
37
+ // ZeroCopyInputStream and provides the decompressed data as a
38
+ // ZeroCopyInputStream.
39
+ //
40
+ // GzipOutputStream is an ZeroCopyOutputStream that compresses data to
41
+ // an underlying ZeroCopyOutputStream.
42
+
43
+ #ifndef GOOGLE_PROTOBUF_IO_GZIP_STREAM_H__
44
+ #define GOOGLE_PROTOBUF_IO_GZIP_STREAM_H__
45
+
46
+ #include <zlib.h>
47
+
48
+ #include <google/protobuf/io/zero_copy_stream.h>
49
+
50
+ namespace google {
51
+ namespace protobuf {
52
+ namespace io {
53
+
54
+ // A ZeroCopyInputStream that reads compressed data through zlib
55
+ class LIBPROTOBUF_EXPORT GzipInputStream : public ZeroCopyInputStream {
56
+ public:
57
+ // Format key for constructor
58
+ enum Format {
59
+ // zlib will autodetect gzip header or deflate stream
60
+ AUTO = 0,
61
+
62
+ // GZIP streams have some extra header data for file attributes.
63
+ GZIP = 1,
64
+
65
+ // Simpler zlib stream format.
66
+ ZLIB = 2,
67
+ };
68
+
69
+ // buffer_size and format may be -1 for default of 64kB and GZIP format
70
+ explicit GzipInputStream(
71
+ ZeroCopyInputStream* sub_stream,
72
+ Format format = AUTO,
73
+ int buffer_size = -1);
74
+ virtual ~GzipInputStream();
75
+
76
+ // Return last error message or NULL if no error.
77
+ inline const char* ZlibErrorMessage() const {
78
+ return zcontext_.msg;
79
+ }
80
+ inline int ZlibErrorCode() const {
81
+ return zerror_;
82
+ }
83
+
84
+ // implements ZeroCopyInputStream ----------------------------------
85
+ bool Next(const void** data, int* size);
86
+ void BackUp(int count);
87
+ bool Skip(int count);
88
+ int64 ByteCount() const;
89
+
90
+ private:
91
+ Format format_;
92
+
93
+ ZeroCopyInputStream* sub_stream_;
94
+
95
+ z_stream zcontext_;
96
+ int zerror_;
97
+
98
+ void* output_buffer_;
99
+ void* output_position_;
100
+ size_t output_buffer_length_;
101
+
102
+ int Inflate(int flush);
103
+ void DoNextOutput(const void** data, int* size);
104
+
105
+ GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(GzipInputStream);
106
+ };
107
+
108
+
109
+ class LIBPROTOBUF_EXPORT GzipOutputStream : public ZeroCopyOutputStream {
110
+ public:
111
+ // Format key for constructor
112
+ enum Format {
113
+ // GZIP streams have some extra header data for file attributes.
114
+ GZIP = 1,
115
+
116
+ // Simpler zlib stream format.
117
+ ZLIB = 2,
118
+ };
119
+
120
+ struct Options {
121
+ // Defaults to GZIP.
122
+ Format format;
123
+
124
+ // What size buffer to use internally. Defaults to 64kB.
125
+ int buffer_size;
126
+
127
+ // A number between 0 and 9, where 0 is no compression and 9 is best
128
+ // compression. Defaults to Z_DEFAULT_COMPRESSION (see zlib.h).
129
+ int compression_level;
130
+
131
+ // Defaults to Z_DEFAULT_STRATEGY. Can also be set to Z_FILTERED,
132
+ // Z_HUFFMAN_ONLY, or Z_RLE. See the documentation for deflateInit2 in
133
+ // zlib.h for definitions of these constants.
134
+ int compression_strategy;
135
+
136
+ Options(); // Initializes with default values.
137
+ };
138
+
139
+ // Create a GzipOutputStream with default options.
140
+ explicit GzipOutputStream(ZeroCopyOutputStream* sub_stream);
141
+
142
+ // Create a GzipOutputStream with the given options.
143
+ GzipOutputStream(
144
+ ZeroCopyOutputStream* sub_stream,
145
+ const Options& options);
146
+
147
+ // DEPRECATED: Use one of the above constructors instead.
148
+ GzipOutputStream(
149
+ ZeroCopyOutputStream* sub_stream,
150
+ Format format,
151
+ int buffer_size = -1) GOOGLE_ATTRIBUTE_DEPRECATED;
152
+
153
+ virtual ~GzipOutputStream();
154
+
155
+ // Return last error message or NULL if no error.
156
+ inline const char* ZlibErrorMessage() const {
157
+ return zcontext_.msg;
158
+ }
159
+ inline int ZlibErrorCode() const {
160
+ return zerror_;
161
+ }
162
+
163
+ // Flushes data written so far to zipped data in the underlying stream.
164
+ // It is the caller's responsibility to flush the underlying stream if
165
+ // necessary.
166
+ // Compression may be less efficient stopping and starting around flushes.
167
+ // Returns true if no error.
168
+ bool Flush();
169
+
170
+ // Writes out all data and closes the gzip stream.
171
+ // It is the caller's responsibility to close the underlying stream if
172
+ // necessary.
173
+ // Returns true if no error.
174
+ bool Close();
175
+
176
+ // implements ZeroCopyOutputStream ---------------------------------
177
+ bool Next(void** data, int* size);
178
+ void BackUp(int count);
179
+ int64 ByteCount() const;
180
+
181
+ private:
182
+ ZeroCopyOutputStream* sub_stream_;
183
+ // Result from calling Next() on sub_stream_
184
+ void* sub_data_;
185
+ int sub_data_size_;
186
+
187
+ z_stream zcontext_;
188
+ int zerror_;
189
+ void* input_buffer_;
190
+ size_t input_buffer_length_;
191
+
192
+ // Shared constructor code.
193
+ void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
194
+
195
+ // Do some compression.
196
+ // Takes zlib flush mode.
197
+ // Returns zlib error code.
198
+ int Deflate(int flush);
199
+
200
+ GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(GzipOutputStream);
201
+ };
202
+
203
+ } // namespace io
204
+ } // namespace protobuf
205
+
206
+ } // namespace google
207
+ #endif // GOOGLE_PROTOBUF_IO_GZIP_STREAM_H__
@@ -0,0 +1,54 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // http://code.google.com/p/protobuf/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
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.
30
+
31
+ // Author: kenton@google.com (Kenton Varda)
32
+ // Based on original Protocol Buffers design by
33
+ // Sanjay Ghemawat, Jeff Dean, and others.
34
+ //
35
+ // This file exists solely to document the google::protobuf::io namespace.
36
+ // It is not compiled into anything, but it may be read by an automated
37
+ // documentation generator.
38
+
39
+ namespace google {
40
+
41
+ namespace protobuf {
42
+
43
+ // Auxiliary classes used for I/O.
44
+ //
45
+ // The Protocol Buffer library uses the classes in this package to deal with
46
+ // I/O and encoding/decoding raw bytes. Most users will not need to
47
+ // deal with this package. However, users who want to adapt the system to
48
+ // work with their own I/O abstractions -- e.g., to allow Protocol Buffers
49
+ // to be read from a different kind of input stream without the need for a
50
+ // temporary buffer -- should take a closer look.
51
+ namespace io {}
52
+
53
+ } // namespace protobuf
54
+ } // namespace google
@@ -0,0 +1,136 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // http://code.google.com/p/protobuf/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
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.
30
+
31
+ // Author: kenton@google.com (Kenton Varda)
32
+ // Based on original Protocol Buffers design by
33
+ // Sanjay Ghemawat, Jeff Dean, and others.
34
+ //
35
+ // Utility class for writing text to a ZeroCopyOutputStream.
36
+
37
+ #ifndef GOOGLE_PROTOBUF_IO_PRINTER_H__
38
+ #define GOOGLE_PROTOBUF_IO_PRINTER_H__
39
+
40
+ #include <string>
41
+ #include <map>
42
+ #include <google/protobuf/stubs/common.h>
43
+
44
+ namespace google {
45
+ namespace protobuf {
46
+ namespace io {
47
+
48
+ class ZeroCopyOutputStream; // zero_copy_stream.h
49
+
50
+ // This simple utility class assists in code generation. It basically
51
+ // allows the caller to define a set of variables and then output some
52
+ // text with variable substitutions. Example usage:
53
+ //
54
+ // Printer printer(output, '$');
55
+ // map<string, string> vars;
56
+ // vars["name"] = "Bob";
57
+ // printer.Print(vars, "My name is $name$.");
58
+ //
59
+ // The above writes "My name is Bob." to the output stream.
60
+ //
61
+ // Printer aggressively enforces correct usage, crashing (with assert failures)
62
+ // in the case of undefined variables in debug builds. This helps greatly in
63
+ // debugging code which uses it.
64
+ class LIBPROTOBUF_EXPORT Printer {
65
+ public:
66
+ // Create a printer that writes text to the given output stream. Use the
67
+ // given character as the delimiter for variables.
68
+ Printer(ZeroCopyOutputStream* output, char variable_delimiter);
69
+ ~Printer();
70
+
71
+ // Print some text after applying variable substitutions. If a particular
72
+ // variable in the text is not defined, this will crash. Variables to be
73
+ // substituted are identified by their names surrounded by delimiter
74
+ // characters (as given to the constructor). The variable bindings are
75
+ // defined by the given map.
76
+ void Print(const map<string, string>& variables, const char* text);
77
+
78
+ // Like the first Print(), except the substitutions are given as parameters.
79
+ void Print(const char* text);
80
+ // Like the first Print(), except the substitutions are given as parameters.
81
+ void Print(const char* text, const char* variable, const string& value);
82
+ // Like the first Print(), except the substitutions are given as parameters.
83
+ void Print(const char* text, const char* variable1, const string& value1,
84
+ const char* variable2, const string& value2);
85
+ // Like the first Print(), except the substitutions are given as parameters.
86
+ void Print(const char* text, const char* variable1, const string& value1,
87
+ const char* variable2, const string& value2,
88
+ const char* variable3, const string& value3);
89
+ // TODO(kenton): Overloaded versions with more variables? Three seems
90
+ // to be enough.
91
+
92
+ // Indent text by two spaces. After calling Indent(), two spaces will be
93
+ // inserted at the beginning of each line of text. Indent() may be called
94
+ // multiple times to produce deeper indents.
95
+ void Indent();
96
+
97
+ // Reduces the current indent level by two spaces, or crashes if the indent
98
+ // level is zero.
99
+ void Outdent();
100
+
101
+ // Write a string to the output buffer.
102
+ // This method does not look for newlines to add indentation.
103
+ void PrintRaw(const string& data);
104
+
105
+ // Write a zero-delimited string to output buffer.
106
+ // This method does not look for newlines to add indentation.
107
+ void PrintRaw(const char* data);
108
+
109
+ // Write some bytes to the output buffer.
110
+ // This method does not look for newlines to add indentation.
111
+ void WriteRaw(const char* data, int size);
112
+
113
+ // True if any write to the underlying stream failed. (We don't just
114
+ // crash in this case because this is an I/O failure, not a programming
115
+ // error.)
116
+ bool failed() const { return failed_; }
117
+
118
+ private:
119
+ const char variable_delimiter_;
120
+
121
+ ZeroCopyOutputStream* const output_;
122
+ char* buffer_;
123
+ int buffer_size_;
124
+
125
+ string indent_;
126
+ bool at_start_of_line_;
127
+ bool failed_;
128
+
129
+ GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Printer);
130
+ };
131
+
132
+ } // namespace io
133
+ } // namespace protobuf
134
+
135
+ } // namespace google
136
+ #endif // GOOGLE_PROTOBUF_IO_PRINTER_H__