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