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,207 +0,0 @@
|
|
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__
|
@@ -1,136 +0,0 @@
|
|
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__
|
@@ -1,313 +0,0 @@
|
|
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
|
-
// Class for parsing tokenized text from a ZeroCopyInputStream.
|
36
|
-
|
37
|
-
#ifndef GOOGLE_PROTOBUF_IO_TOKENIZER_H__
|
38
|
-
#define GOOGLE_PROTOBUF_IO_TOKENIZER_H__
|
39
|
-
|
40
|
-
#include <string>
|
41
|
-
#include <google/protobuf/stubs/common.h>
|
42
|
-
|
43
|
-
namespace google {
|
44
|
-
namespace protobuf {
|
45
|
-
namespace io {
|
46
|
-
|
47
|
-
class ZeroCopyInputStream; // zero_copy_stream.h
|
48
|
-
|
49
|
-
// Defined in this file.
|
50
|
-
class ErrorCollector;
|
51
|
-
class Tokenizer;
|
52
|
-
|
53
|
-
// Abstract interface for an object which collects the errors that occur
|
54
|
-
// during parsing. A typical implementation might simply print the errors
|
55
|
-
// to stdout.
|
56
|
-
class LIBPROTOBUF_EXPORT ErrorCollector {
|
57
|
-
public:
|
58
|
-
inline ErrorCollector() {}
|
59
|
-
virtual ~ErrorCollector();
|
60
|
-
|
61
|
-
// Indicates that there was an error in the input at the given line and
|
62
|
-
// column numbers. The numbers are zero-based, so you may want to add
|
63
|
-
// 1 to each before printing them.
|
64
|
-
virtual void AddError(int line, int column, const string& message) = 0;
|
65
|
-
|
66
|
-
// Indicates that there was a warning in the input at the given line and
|
67
|
-
// column numbers. The numbers are zero-based, so you may want to add
|
68
|
-
// 1 to each before printing them.
|
69
|
-
virtual void AddWarning(int line, int column, const string& message) { }
|
70
|
-
|
71
|
-
private:
|
72
|
-
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ErrorCollector);
|
73
|
-
};
|
74
|
-
|
75
|
-
// This class converts a stream of raw text into a stream of tokens for
|
76
|
-
// the protocol definition parser to parse. The tokens recognized are
|
77
|
-
// similar to those that make up the C language; see the TokenType enum for
|
78
|
-
// precise descriptions. Whitespace and comments are skipped. By default,
|
79
|
-
// C- and C++-style comments are recognized, but other styles can be used by
|
80
|
-
// calling set_comment_style().
|
81
|
-
class LIBPROTOBUF_EXPORT Tokenizer {
|
82
|
-
public:
|
83
|
-
// Construct a Tokenizer that reads and tokenizes text from the given
|
84
|
-
// input stream and writes errors to the given error_collector.
|
85
|
-
// The caller keeps ownership of input and error_collector.
|
86
|
-
Tokenizer(ZeroCopyInputStream* input, ErrorCollector* error_collector);
|
87
|
-
~Tokenizer();
|
88
|
-
|
89
|
-
enum TokenType {
|
90
|
-
TYPE_START, // Next() has not yet been called.
|
91
|
-
TYPE_END, // End of input reached. "text" is empty.
|
92
|
-
|
93
|
-
TYPE_IDENTIFIER, // A sequence of letters, digits, and underscores, not
|
94
|
-
// starting with a digit. It is an error for a number
|
95
|
-
// to be followed by an identifier with no space in
|
96
|
-
// between.
|
97
|
-
TYPE_INTEGER, // A sequence of digits representing an integer. Normally
|
98
|
-
// the digits are decimal, but a prefix of "0x" indicates
|
99
|
-
// a hex number and a leading zero indicates octal, just
|
100
|
-
// like with C numeric literals. A leading negative sign
|
101
|
-
// is NOT included in the token; it's up to the parser to
|
102
|
-
// interpret the unary minus operator on its own.
|
103
|
-
TYPE_FLOAT, // A floating point literal, with a fractional part and/or
|
104
|
-
// an exponent. Always in decimal. Again, never
|
105
|
-
// negative.
|
106
|
-
TYPE_STRING, // A quoted sequence of escaped characters. Either single
|
107
|
-
// or double quotes can be used, but they must match.
|
108
|
-
// A string literal cannot cross a line break.
|
109
|
-
TYPE_SYMBOL, // Any other printable character, like '!' or '+'.
|
110
|
-
// Symbols are always a single character, so "!+$%" is
|
111
|
-
// four tokens.
|
112
|
-
};
|
113
|
-
|
114
|
-
// Structure representing a token read from the token stream.
|
115
|
-
struct Token {
|
116
|
-
TokenType type;
|
117
|
-
string text; // The exact text of the token as it appeared in
|
118
|
-
// the input. e.g. tokens of TYPE_STRING will still
|
119
|
-
// be escaped and in quotes.
|
120
|
-
|
121
|
-
// "line" and "column" specify the position of the first character of
|
122
|
-
// the token within the input stream. They are zero-based.
|
123
|
-
int line;
|
124
|
-
int column;
|
125
|
-
int end_column;
|
126
|
-
};
|
127
|
-
|
128
|
-
// Get the current token. This is updated when Next() is called. Before
|
129
|
-
// the first call to Next(), current() has type TYPE_START and no contents.
|
130
|
-
const Token& current();
|
131
|
-
|
132
|
-
// Return the previous token -- i.e. what current() returned before the
|
133
|
-
// previous call to Next().
|
134
|
-
const Token& previous();
|
135
|
-
|
136
|
-
// Advance to the next token. Returns false if the end of the input is
|
137
|
-
// reached.
|
138
|
-
bool Next();
|
139
|
-
|
140
|
-
// Parse helpers ---------------------------------------------------
|
141
|
-
|
142
|
-
// Parses a TYPE_FLOAT token. This never fails, so long as the text actually
|
143
|
-
// comes from a TYPE_FLOAT token parsed by Tokenizer. If it doesn't, the
|
144
|
-
// result is undefined (possibly an assert failure).
|
145
|
-
static double ParseFloat(const string& text);
|
146
|
-
|
147
|
-
// Parses a TYPE_STRING token. This never fails, so long as the text actually
|
148
|
-
// comes from a TYPE_STRING token parsed by Tokenizer. If it doesn't, the
|
149
|
-
// result is undefined (possibly an assert failure).
|
150
|
-
static void ParseString(const string& text, string* output);
|
151
|
-
|
152
|
-
// Identical to ParseString, but appends to output.
|
153
|
-
static void ParseStringAppend(const string& text, string* output);
|
154
|
-
|
155
|
-
// Parses a TYPE_INTEGER token. Returns false if the result would be
|
156
|
-
// greater than max_value. Otherwise, returns true and sets *output to the
|
157
|
-
// result. If the text is not from a Token of type TYPE_INTEGER originally
|
158
|
-
// parsed by a Tokenizer, the result is undefined (possibly an assert
|
159
|
-
// failure).
|
160
|
-
static bool ParseInteger(const string& text, uint64 max_value,
|
161
|
-
uint64* output);
|
162
|
-
|
163
|
-
// Options ---------------------------------------------------------
|
164
|
-
|
165
|
-
// Set true to allow floats to be suffixed with the letter 'f'. Tokens
|
166
|
-
// which would otherwise be integers but which have the 'f' suffix will be
|
167
|
-
// forced to be interpreted as floats. For all other purposes, the 'f' is
|
168
|
-
// ignored.
|
169
|
-
void set_allow_f_after_float(bool value) { allow_f_after_float_ = value; }
|
170
|
-
|
171
|
-
// Valid values for set_comment_style().
|
172
|
-
enum CommentStyle {
|
173
|
-
// Line comments begin with "//", block comments are delimited by "/*" and
|
174
|
-
// "*/".
|
175
|
-
CPP_COMMENT_STYLE,
|
176
|
-
// Line comments begin with "#". No way to write block comments.
|
177
|
-
SH_COMMENT_STYLE
|
178
|
-
};
|
179
|
-
|
180
|
-
// Sets the comment style.
|
181
|
-
void set_comment_style(CommentStyle style) { comment_style_ = style; }
|
182
|
-
|
183
|
-
// -----------------------------------------------------------------
|
184
|
-
private:
|
185
|
-
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Tokenizer);
|
186
|
-
|
187
|
-
Token current_; // Returned by current().
|
188
|
-
Token previous_; // Returned by previous().
|
189
|
-
|
190
|
-
ZeroCopyInputStream* input_;
|
191
|
-
ErrorCollector* error_collector_;
|
192
|
-
|
193
|
-
char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
|
194
|
-
const char* buffer_; // Current buffer returned from input_.
|
195
|
-
int buffer_size_; // Size of buffer_.
|
196
|
-
int buffer_pos_; // Current position within the buffer.
|
197
|
-
bool read_error_; // Did we previously encounter a read error?
|
198
|
-
|
199
|
-
// Line and column number of current_char_ within the whole input stream.
|
200
|
-
int line_;
|
201
|
-
int column_;
|
202
|
-
|
203
|
-
// Position in buffer_ where StartToken() was called. If the token
|
204
|
-
// started in the previous buffer, this is zero, and current_.text already
|
205
|
-
// contains the part of the token from the previous buffer. If not
|
206
|
-
// currently parsing a token, this is -1.
|
207
|
-
int token_start_;
|
208
|
-
|
209
|
-
// Options.
|
210
|
-
bool allow_f_after_float_;
|
211
|
-
CommentStyle comment_style_;
|
212
|
-
|
213
|
-
// Since we count columns we need to interpret tabs somehow. We'll take
|
214
|
-
// the standard 8-character definition for lack of any way to do better.
|
215
|
-
static const int kTabWidth = 8;
|
216
|
-
|
217
|
-
// -----------------------------------------------------------------
|
218
|
-
// Helper methods.
|
219
|
-
|
220
|
-
// Consume this character and advance to the next one.
|
221
|
-
void NextChar();
|
222
|
-
|
223
|
-
// Read a new buffer from the input.
|
224
|
-
void Refresh();
|
225
|
-
|
226
|
-
// Called when the current character is the first character of a new
|
227
|
-
// token (not including whitespace or comments).
|
228
|
-
inline void StartToken();
|
229
|
-
// Called when the current character is the first character after the
|
230
|
-
// end of the last token. After this returns, current_.text will
|
231
|
-
// contain all text consumed since StartToken() was called.
|
232
|
-
inline void EndToken();
|
233
|
-
|
234
|
-
// Convenience method to add an error at the current line and column.
|
235
|
-
void AddError(const string& message) {
|
236
|
-
error_collector_->AddError(line_, column_, message);
|
237
|
-
}
|
238
|
-
|
239
|
-
// -----------------------------------------------------------------
|
240
|
-
// The following four methods are used to consume tokens of specific
|
241
|
-
// types. They are actually used to consume all characters *after*
|
242
|
-
// the first, since the calling function consumes the first character
|
243
|
-
// in order to decide what kind of token is being read.
|
244
|
-
|
245
|
-
// Read and consume a string, ending when the given delimiter is
|
246
|
-
// consumed.
|
247
|
-
void ConsumeString(char delimiter);
|
248
|
-
|
249
|
-
// Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
|
250
|
-
// depending on what was read. This needs to know if the first
|
251
|
-
// character was a zero in order to correctly recognize hex and octal
|
252
|
-
// numbers.
|
253
|
-
// It also needs to know if the first characted was a . to parse floating
|
254
|
-
// point correctly.
|
255
|
-
TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
|
256
|
-
|
257
|
-
// Consume the rest of a line.
|
258
|
-
void ConsumeLineComment();
|
259
|
-
// Consume until "*/".
|
260
|
-
void ConsumeBlockComment();
|
261
|
-
|
262
|
-
// -----------------------------------------------------------------
|
263
|
-
// These helper methods make the parsing code more readable. The
|
264
|
-
// "character classes" refered to are defined at the top of the .cc file.
|
265
|
-
// Basically it is a C++ class with one method:
|
266
|
-
// static bool InClass(char c);
|
267
|
-
// The method returns true if c is a member of this "class", like "Letter"
|
268
|
-
// or "Digit".
|
269
|
-
|
270
|
-
// Returns true if the current character is of the given character
|
271
|
-
// class, but does not consume anything.
|
272
|
-
template<typename CharacterClass>
|
273
|
-
inline bool LookingAt();
|
274
|
-
|
275
|
-
// If the current character is in the given class, consume it and return
|
276
|
-
// true. Otherwise return false.
|
277
|
-
// e.g. TryConsumeOne<Letter>()
|
278
|
-
template<typename CharacterClass>
|
279
|
-
inline bool TryConsumeOne();
|
280
|
-
|
281
|
-
// Like above, but try to consume the specific character indicated.
|
282
|
-
inline bool TryConsume(char c);
|
283
|
-
|
284
|
-
// Consume zero or more of the given character class.
|
285
|
-
template<typename CharacterClass>
|
286
|
-
inline void ConsumeZeroOrMore();
|
287
|
-
|
288
|
-
// Consume one or more of the given character class or log the given
|
289
|
-
// error message.
|
290
|
-
// e.g. ConsumeOneOrMore<Digit>("Expected digits.");
|
291
|
-
template<typename CharacterClass>
|
292
|
-
inline void ConsumeOneOrMore(const char* error);
|
293
|
-
};
|
294
|
-
|
295
|
-
// inline methods ====================================================
|
296
|
-
inline const Tokenizer::Token& Tokenizer::current() {
|
297
|
-
return current_;
|
298
|
-
}
|
299
|
-
|
300
|
-
inline const Tokenizer::Token& Tokenizer::previous() {
|
301
|
-
return previous_;
|
302
|
-
}
|
303
|
-
|
304
|
-
inline void Tokenizer::ParseString(const string& text, string* output) {
|
305
|
-
output->clear();
|
306
|
-
ParseStringAppend(text, output);
|
307
|
-
}
|
308
|
-
|
309
|
-
} // namespace io
|
310
|
-
} // namespace protobuf
|
311
|
-
|
312
|
-
} // namespace google
|
313
|
-
#endif // GOOGLE_PROTOBUF_IO_TOKENIZER_H__
|