blob: 252f68d1dc269898a64118fc8dd6015176b98cb0 [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001// Protocol Buffers - Google's data interchange format
kenton@google.com24bf56f2008-09-24 20:31:01 +00002// Copyright 2008 Google Inc. All rights reserved.
temporal40ee5512008-07-10 02:12:20 +00003// http://code.google.com/p/protobuf/
4//
kenton@google.com24bf56f2008-09-24 20:31:01 +00005// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
temporal40ee5512008-07-10 02:12:20 +00008//
kenton@google.com24bf56f2008-09-24 20:31:01 +00009// * 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.
temporal40ee5512008-07-10 02:12:20 +000018//
kenton@google.com24bf56f2008-09-24 20:31:01 +000019// 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.
temporal40ee5512008-07-10 02:12:20 +000030
31// Author: kenton@google.com (Kenton Varda)
32// Based on original Protocol Buffers design by
33// Sanjay Ghemawat, Jeff Dean, and others.
34//
35// Defines the abstract interface implemented by each of the language-specific
36// code generators.
37
38#ifndef GOOGLE_PROTOBUF_COMPILER_CODE_GENERATOR_H__
39#define GOOGLE_PROTOBUF_COMPILER_CODE_GENERATOR_H__
40
41#include <google/protobuf/stubs/common.h>
42#include <string>
kenton@google.com80b1d622009-07-29 01:13:20 +000043#include <vector>
44#include <utility>
temporal40ee5512008-07-10 02:12:20 +000045
46namespace google {
47namespace protobuf {
48
49namespace io { class ZeroCopyOutputStream; }
50class FileDescriptor;
51
52namespace compiler {
53
54// Defined in this file.
55class CodeGenerator;
liujisi@google.com33165fe2010-11-02 13:14:58 +000056class GeneratorContext;
temporal40ee5512008-07-10 02:12:20 +000057
58// The abstract interface to a class which generates code implementing a
59// particular proto file in a particular language. A number of these may
60// be registered with CommandLineInterface to support various languages.
61class LIBPROTOC_EXPORT CodeGenerator {
62 public:
63 inline CodeGenerator() {}
64 virtual ~CodeGenerator();
65
66 // Generates code for the given proto file, generating one or more files in
67 // the given output directory.
68 //
69 // A parameter to be passed to the generator can be specified on the
70 // command line. This is intended to be used by Java and similar languages
71 // to specify which specific class from the proto file is to be generated,
72 // though it could have other uses as well. It is empty if no parameter was
73 // given.
74 //
75 // Returns true if successful. Otherwise, sets *error to a description of
76 // the problem (e.g. "invalid parameter") and returns false.
77 virtual bool Generate(const FileDescriptor* file,
78 const string& parameter,
liujisi@google.com33165fe2010-11-02 13:14:58 +000079 GeneratorContext* generator_context,
temporal40ee5512008-07-10 02:12:20 +000080 string* error) const = 0;
81
82 private:
83 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(CodeGenerator);
84};
85
86// CodeGenerators generate one or more files in a given directory. This
87// abstract interface represents the directory to which the CodeGenerator is
liujisi@google.com33165fe2010-11-02 13:14:58 +000088// to write and other information about the context in which the Generator
89// runs.
90class LIBPROTOC_EXPORT GeneratorContext {
temporal40ee5512008-07-10 02:12:20 +000091 public:
liujisi@google.com33165fe2010-11-02 13:14:58 +000092 inline GeneratorContext() {}
93 virtual ~GeneratorContext();
temporal40ee5512008-07-10 02:12:20 +000094
95 // Opens the given file, truncating it if it exists, and returns a
96 // ZeroCopyOutputStream that writes to the file. The caller takes ownership
97 // of the returned object. This method never fails (a dummy stream will be
98 // returned instead).
99 //
100 // The filename given should be relative to the root of the source tree.
101 // E.g. the C++ generator, when generating code for "foo/bar.proto", will
kenton@google.com7b7a80e2010-01-08 03:56:03 +0000102 // generate the files "foo/bar.pb.h" and "foo/bar.pb.cc"; note that
temporal40ee5512008-07-10 02:12:20 +0000103 // "foo/" is included in these filenames. The filename is not allowed to
104 // contain "." or ".." components.
105 virtual io::ZeroCopyOutputStream* Open(const string& filename) = 0;
106
kenton@google.comfccb1462009-12-18 02:11:36 +0000107 // Creates a ZeroCopyOutputStream which will insert code into the given file
kenton@google.com7b7a80e2010-01-08 03:56:03 +0000108 // at the given insertion point. See plugin.proto (plugin.pb.h) for more
109 // information on insertion points. The default implementation
110 // assert-fails -- it exists only for backwards-compatibility.
kenton@google.com7f4938b2009-12-22 22:57:39 +0000111 //
112 // WARNING: This feature is currently EXPERIMENTAL and is subject to change.
kenton@google.comfccb1462009-12-18 02:11:36 +0000113 virtual io::ZeroCopyOutputStream* OpenForInsert(
114 const string& filename, const string& insertion_point);
115
liujisi@google.com33165fe2010-11-02 13:14:58 +0000116 // Returns a vector of FileDescriptors for all the files being compiled
117 // in this run. Useful for languages, such as Go, that treat files
118 // differently when compiled as a set rather than individually.
119 virtual void ListParsedFiles(vector<const FileDescriptor*>* output);
120
temporal40ee5512008-07-10 02:12:20 +0000121 private:
liujisi@google.com33165fe2010-11-02 13:14:58 +0000122 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(GeneratorContext);
temporal40ee5512008-07-10 02:12:20 +0000123};
124
liujisi@google.com33165fe2010-11-02 13:14:58 +0000125// The type GeneratorContext was once called OutputDirectory. This typedef
126// provides backward compatibility.
127typedef GeneratorContext OutputDirectory;
128
kenton@google.com80b1d622009-07-29 01:13:20 +0000129// Several code generators treat the parameter argument as holding a
130// list of options separated by commas. This helper function parses
131// a set of comma-delimited name/value pairs: e.g.,
132// "foo=bar,baz,qux=corge"
133// parses to the pairs:
134// ("foo", "bar"), ("baz", ""), ("qux", "corge")
135extern void ParseGeneratorParameter(const string&,
kenton@google.comfccb1462009-12-18 02:11:36 +0000136 vector<pair<string, string> >*);
kenton@google.com80b1d622009-07-29 01:13:20 +0000137
temporal40ee5512008-07-10 02:12:20 +0000138} // namespace compiler
139} // namespace protobuf
140
141} // namespace google
142#endif // GOOGLE_PROTOBUF_COMPILER_CODE_GENERATOR_H__