~ubuntu-branches/debian/squeeze/protobuf/squeeze

« back to all changes in this revision

Viewing changes to src/google/protobuf/compiler/command_line_interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-06-02 16:19:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602161900-vm176i3ryt35yk91
Tags: 2.0.3-2.2
* Non-maintainer upload.
* Fix FTBFS from -2.1: don't fail when we can't clean up the java build,
  such as when openjdk isn't installed.
* Disable parallel builds, because libtool is made of fail (if binary-arch
  and build-indep run concurrently, we relink a library while it's being
  used; that doesn't work so well).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Protocol Buffers - Google's data interchange format
2
 
// Copyright 2008 Google Inc.
 
2
// Copyright 2008 Google Inc.  All rights reserved.
3
3
// http://code.google.com/p/protobuf/
4
4
//
5
 
// Licensed under the Apache License, Version 2.0 (the "License");
6
 
// you may not use this file except in compliance with the License.
7
 
// You may obtain a copy of the License at
8
 
//
9
 
//      http://www.apache.org/licenses/LICENSE-2.0
10
 
//
11
 
// Unless required by applicable law or agreed to in writing, software
12
 
// distributed under the License is distributed on an "AS IS" BASIS,
13
 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
// See the License for the specific language governing permissions and
15
 
// limitations under the License.
 
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.
16
30
 
17
31
// Author: kenton@google.com (Kenton Varda)
18
32
//  Based on original Protocol Buffers design by
35
49
namespace protobuf {
36
50
 
37
51
class FileDescriptor;        // descriptor.h
 
52
class DescriptorPool;        // descriptor.h
38
53
 
39
54
namespace compiler {
40
55
 
66
81
//   }
67
82
//
68
83
// The compiler is invoked with syntax like:
69
 
//   protoc --cpp_out=outdir --foo_out=outdir --proto_path=src foo.proto
 
84
//   protoc --cpp_out=outdir --foo_out=outdir --proto_path=src src/foo.proto
70
85
//
71
86
// For a full description of the command-line syntax, invoke it with --help.
72
87
class LIBPROTOC_EXPORT CommandLineInterface {
164
179
  bool GenerateOutput(const FileDescriptor* proto_file,
165
180
                      const OutputDirective& output_directive);
166
181
 
 
182
  // Implements --encode and --decode.
 
183
  bool EncodeOrDecode(const DescriptorPool* pool);
 
184
 
 
185
  // Implements the --descriptor_set_out option.
 
186
  bool WriteDescriptorSet(const vector<const FileDescriptor*> parsed_files);
 
187
 
167
188
  // -----------------------------------------------------------------
168
189
 
169
190
  // The name of the executable as invoked (i.e. argv[0]).
181
202
  GeneratorMap generators_;
182
203
 
183
204
  // Stuff parsed from command line.
 
205
  enum Mode {
 
206
    MODE_COMPILE,  // Normal mode:  parse .proto files and compile them.
 
207
    MODE_ENCODE,   // --encode:  read text from stdin, write binary to stdout.
 
208
    MODE_DECODE    // --decode:  read binary from stdin, write text to stdout.
 
209
  };
 
210
 
 
211
  Mode mode_;
 
212
 
184
213
  vector<pair<string, string> > proto_path_;  // Search path for proto files.
185
214
  vector<string> input_files_;                // Names of the input proto files.
186
215
 
194
223
  };
195
224
  vector<OutputDirective> output_directives_;
196
225
 
 
226
  // When using --encode or --decode, this names the type we are encoding or
 
227
  // decoding.  (Empty string indicates --decode_raw.)
 
228
  string codec_type_;
 
229
 
 
230
  // If --descriptor_set_out was given, this is the filename to which the
 
231
  // FileDescriptorSet should be written.  Otherwise, empty.
 
232
  string descriptor_set_name_;
 
233
 
 
234
  // True if --include_imports was given, meaning that we should
 
235
  // write all transitive dependencies to the DescriptorSet.  Otherwise, only
 
236
  // the .proto files listed on the command-line are added.
 
237
  bool imports_in_descriptor_set_;
 
238
 
197
239
  // Was the --disallow_services flag used?
198
240
  bool disallow_services_;
199
241