1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2008 Google Inc. All rights reserved. 3 // https://developers.google.com/protocol-buffers/ 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 // 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 <string> 42 #include <utility> 43 #include <vector> 44 #include <google/protobuf/stubs/common.h> 45 46 #include <google/protobuf/port_def.inc> 47 48 namespace google { 49 namespace protobuf { 50 51 namespace io { 52 class ZeroCopyOutputStream; 53 } 54 class FileDescriptor; 55 56 namespace compiler { 57 class AccessInfoMap; 58 59 class Version; 60 61 // Defined in this file. 62 class CodeGenerator; 63 class GeneratorContext; 64 65 // The abstract interface to a class which generates code implementing a 66 // particular proto file in a particular language. A number of these may 67 // be registered with CommandLineInterface to support various languages. 68 class PROTOC_EXPORT CodeGenerator { 69 public: CodeGenerator()70 inline CodeGenerator() {} 71 virtual ~CodeGenerator(); 72 73 // Generates code for the given proto file, generating one or more files in 74 // the given output directory. 75 // 76 // A parameter to be passed to the generator can be specified on the command 77 // line. This is intended to be used to pass generator specific parameters. 78 // It is empty if no parameter was given. ParseGeneratorParameter (below), 79 // can be used to accept multiple parameters within the single parameter 80 // command line flag. 81 // 82 // Returns true if successful. Otherwise, sets *error to a description of 83 // the problem (e.g. "invalid parameter") and returns false. 84 virtual bool Generate(const FileDescriptor* file, 85 const std::string& parameter, 86 GeneratorContext* generator_context, 87 std::string* error) const = 0; 88 89 // Generates code for all given proto files. 90 // 91 // WARNING: The canonical code generator design produces one or two output 92 // files per input .proto file, and we do not wish to encourage alternate 93 // designs. 94 // 95 // A parameter is given as passed on the command line, as in |Generate()| 96 // above. 97 // 98 // Returns true if successful. Otherwise, sets *error to a description of 99 // the problem (e.g. "invalid parameter") and returns false. 100 virtual bool GenerateAll(const std::vector<const FileDescriptor*>& files, 101 const std::string& parameter, 102 GeneratorContext* generator_context, 103 std::string* error) const; 104 105 // Sync with plugin.proto. 106 enum Feature { 107 FEATURE_PROTO3_OPTIONAL = 1, 108 }; 109 110 // Implement this to indicate what features this code generator supports. 111 // This should be a bitwise OR of features from the Features enum in 112 // plugin.proto. GetSupportedFeatures()113 virtual uint64_t GetSupportedFeatures() const { return 0; } 114 115 // This is no longer used, but this class is part of the opensource protobuf 116 // library, so it has to remain to keep vtables the same for the current 117 // version of the library. When protobufs does a api breaking change, the 118 // method can be removed. HasGenerateAll()119 virtual bool HasGenerateAll() const { return true; } 120 121 private: 122 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(CodeGenerator); 123 }; 124 125 // CodeGenerators generate one or more files in a given directory. This 126 // abstract interface represents the directory to which the CodeGenerator is 127 // to write and other information about the context in which the Generator 128 // runs. 129 class PROTOC_EXPORT GeneratorContext { 130 public: GeneratorContext()131 inline GeneratorContext() { 132 } 133 virtual ~GeneratorContext(); 134 135 // Opens the given file, truncating it if it exists, and returns a 136 // ZeroCopyOutputStream that writes to the file. The caller takes ownership 137 // of the returned object. This method never fails (a dummy stream will be 138 // returned instead). 139 // 140 // The filename given should be relative to the root of the source tree. 141 // E.g. the C++ generator, when generating code for "foo/bar.proto", will 142 // generate the files "foo/bar.pb.h" and "foo/bar.pb.cc"; note that 143 // "foo/" is included in these filenames. The filename is not allowed to 144 // contain "." or ".." components. 145 virtual io::ZeroCopyOutputStream* Open(const std::string& filename) = 0; 146 147 // Similar to Open() but the output will be appended to the file if exists 148 virtual io::ZeroCopyOutputStream* OpenForAppend(const std::string& filename); 149 150 // Creates a ZeroCopyOutputStream which will insert code into the given file 151 // at the given insertion point. See plugin.proto (plugin.pb.h) for more 152 // information on insertion points. The default implementation 153 // assert-fails -- it exists only for backwards-compatibility. 154 // 155 // WARNING: This feature is currently EXPERIMENTAL and is subject to change. 156 virtual io::ZeroCopyOutputStream* OpenForInsert( 157 const std::string& filename, const std::string& insertion_point); 158 159 // Returns a vector of FileDescriptors for all the files being compiled 160 // in this run. Useful for languages, such as Go, that treat files 161 // differently when compiled as a set rather than individually. 162 virtual void ListParsedFiles(std::vector<const FileDescriptor*>* output); 163 164 // Retrieves the version number of the protocol compiler associated with 165 // this GeneratorContext. 166 virtual void GetCompilerVersion(Version* version) const; 167 168 169 private: 170 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(GeneratorContext); 171 }; 172 173 // The type GeneratorContext was once called OutputDirectory. This typedef 174 // provides backward compatibility. 175 typedef GeneratorContext OutputDirectory; 176 177 // Several code generators treat the parameter argument as holding a 178 // list of options separated by commas. This helper function parses 179 // a set of comma-delimited name/value pairs: e.g., 180 // "foo=bar,baz,qux=corge" 181 // parses to the pairs: 182 // ("foo", "bar"), ("baz", ""), ("qux", "corge") 183 PROTOC_EXPORT void ParseGeneratorParameter( 184 const std::string&, std::vector<std::pair<std::string, std::string> >*); 185 186 } // namespace compiler 187 } // namespace protobuf 188 } // namespace google 189 190 #include <google/protobuf/port_undef.inc> 191 192 #endif // GOOGLE_PROTOBUF_COMPILER_CODE_GENERATOR_H__ 193