TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cpp_helpers.h
Go to the documentation of this file.
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: [email protected] (Kenton Varda)
32 // Based on original Protocol Buffers design by
33 // Sanjay Ghemawat, Jeff Dean, and others.
34 
35 #ifndef GOOGLE_PROTOBUF_COMPILER_CPP_HELPERS_H__
36 #define GOOGLE_PROTOBUF_COMPILER_CPP_HELPERS_H__
37 
38 #include <map>
39 #include <string>
42 
43 namespace google {
44 namespace protobuf {
45 
46 namespace io {
47 class Printer;
48 }
49 
50 namespace compiler {
51 namespace cpp {
52 
53 // Commonly-used separator comments. Thick is a line of '=', thin is a line
54 // of '-'.
55 extern const char kThickSeparator[];
56 extern const char kThinSeparator[];
57 
58 // Returns the non-nested type name for the given type. If "qualified" is
59 // true, prefix the type with the full namespace. For example, if you had:
60 // package foo.bar;
61 // message Baz { message Qux {} }
62 // Then the qualified ClassName for Qux would be:
63 // ::foo::bar::Baz_Qux
64 // While the non-qualified version would be:
65 // Baz_Qux
66 string ClassName(const Descriptor* descriptor, bool qualified);
67 string ClassName(const EnumDescriptor* enum_descriptor, bool qualified);
68 
69 string SuperClassName(const Descriptor* descriptor);
70 
71 // Get the (unqualified) name that should be used for this field in C++ code.
72 // The name is coerced to lower-case to emulate proto1 behavior. People
73 // should be using lowercase-with-underscores style for proto field names
74 // anyway, so normally this just returns field->name().
75 string FieldName(const FieldDescriptor* field);
76 
77 // Get the unqualified name that should be used for a field's field
78 // number constant.
79 string FieldConstantName(const FieldDescriptor *field);
80 
81 // Returns the scope where the field was defined (for extensions, this is
82 // different from the message type to which the field applies).
83 inline const Descriptor* FieldScope(const FieldDescriptor* field) {
84  return field->is_extension() ?
85  field->extension_scope() : field->containing_type();
86 }
87 
88 // Returns the fully-qualified type name field->message_type(). Usually this
89 // is just ClassName(field->message_type(), true);
90 string FieldMessageTypeName(const FieldDescriptor* field);
91 
92 // Strips ".proto" or ".protodevel" from the end of a filename.
93 string StripProto(const string& filename);
94 
95 // Get the C++ type name for a primitive type (e.g. "double", "::google::protobuf::int32", etc.).
96 // Note: non-built-in type names will be qualified, meaning they will start
97 // with a ::. If you are using the type as a template parameter, you will
98 // need to insure there is a space between the < and the ::, because the
99 // ridiculous C++ standard defines "<:" to be a synonym for "[".
101 
102 // Get the declared type name in CamelCase format, as is used e.g. for the
103 // methods of WireFormat. For example, TYPE_INT32 becomes "Int32".
105 
106 // Return the code that evaluates to the number when compiled.
107 string Int32ToString(int number);
108 
109 // Return the code that evaluates to the number when compiled.
110 string Int64ToString(int64 number);
111 
112 // Get code that evaluates to the field's default value.
113 string DefaultValue(const FieldDescriptor* field);
114 
115 // Convert a file name into a valid identifier.
116 string FilenameIdentifier(const string& filename);
117 
118 // Return the name of the AddDescriptors() function for a given file.
119 string GlobalAddDescriptorsName(const string& filename);
120 
121 // Return the name of the AssignDescriptors() function for a given file.
122 string GlobalAssignDescriptorsName(const string& filename);
123 
124 // Return the qualified C++ name for a file level symbol.
125 string QualifiedFileLevelSymbol(const string& package, const string& name);
126 
127 // Return the name of the ShutdownFile() function for a given file.
128 string GlobalShutdownFileName(const string& filename);
129 
130 // Escape C++ trigraphs by escaping question marks to \?
131 string EscapeTrigraphs(const string& to_escape);
132 
133 // Escaped function name to eliminate naming conflict.
134 string SafeFunctionName(const Descriptor* descriptor,
135  const FieldDescriptor* field,
136  const string& prefix);
137 
138 // Do message classes in this file use UnknownFieldSet?
139 // Otherwise, messages will store unknown fields in a string
140 inline bool UseUnknownFieldSet(const FileDescriptor* file) {
141  return file->options().optimize_for() != FileOptions::LITE_RUNTIME;
142 }
143 
144 
145 // Does this file have any enum type definitions?
146 bool HasEnumDefinitions(const FileDescriptor* file);
147 
148 // Does this file have generated parsing, serialization, and other
149 // standard methods for which reflection-based fallback implementations exist?
150 inline bool HasGeneratedMethods(const FileDescriptor* file) {
151  return file->options().optimize_for() != FileOptions::CODE_SIZE;
152 }
153 
154 // Do message classes in this file have descriptor and reflection methods?
155 inline bool HasDescriptorMethods(const FileDescriptor* file) {
156  return file->options().optimize_for() != FileOptions::LITE_RUNTIME;
157 }
158 
159 // Should we generate generic services for this file?
160 inline bool HasGenericServices(const FileDescriptor* file) {
161  return file->service_count() > 0 &&
163  file->options().cc_generic_services();
164 }
165 
166 // Should string fields in this file verify that their contents are UTF-8?
167 inline bool HasUtf8Verification(const FileDescriptor* file) {
168  return file->options().optimize_for() != FileOptions::LITE_RUNTIME;
169 }
170 
171 // Should we generate a separate, super-optimized code path for serializing to
172 // flat arrays? We don't do this in Lite mode because we'd rather reduce code
173 // size.
174 inline bool HasFastArraySerialization(const FileDescriptor* file) {
175  return file->options().optimize_for() == FileOptions::SPEED;
176 }
177 
178 // Returns whether we have to generate code with static initializers.
179 bool StaticInitializersForced(const FileDescriptor* file);
180 
181 // Prints 'with_static_init' if static initializers have to be used for the
182 // provided file. Otherwise emits both 'with_static_init' and
183 // 'without_static_init' using #ifdef.
185  const FileDescriptor* file, io::Printer* printer,
186  const char* with_static_init, const char* without_static_init,
187  const char* var1 = NULL, const string& val1 = "",
188  const char* var2 = NULL, const string& val2 = "");
189 
191  const map<string, string>& vars, const FileDescriptor* file,
192  io::Printer* printer, const char* with_static_init,
193  const char* without_static_init);
194 
195 
196 // Returns true if the field's CPPTYPE is string or message.
197 bool IsStringOrMessage(const FieldDescriptor* field);
198 
199 string UnderscoresToCamelCase(const string& input, bool cap_next_letter);
200 
201 } // namespace cpp
202 } // namespace compiler
203 } // namespace protobuf
204 
205 } // namespace google
206 #endif // GOOGLE_PROTOBUF_COMPILER_CPP_HELPERS_H__
string GlobalShutdownFileName(const string &filename)
string FieldName(const FieldDescriptor *field)
string DefaultValue(const FieldDescriptor *field)
string FilenameIdentifier(const string &filename)
bool HasFastArraySerialization(const FileDescriptor *file)
Definition: cpp_helpers.h:174
string GlobalAddDescriptorsName(const string &filename)
bool HasEnumDefinitions(const FileDescriptor *file)
bool HasGenericServices(const FileDescriptor *file)
Definition: cpp_helpers.h:160
Definition: descriptor.h:126
arena_t NULL
Definition: jemalloc_internal.h:624
string SafeFunctionName(const Descriptor *descriptor, const FieldDescriptor *field, const string &prefix)
string Int32ToString(int number)
string FieldConstantName(const FieldDescriptor *field)
bool HasGeneratedMethods(const FileDescriptor *file)
Definition: cpp_helpers.h:150
string GlobalAssignDescriptorsName(const string &filename)
const Descriptor * extension_scope() const
const char * PrimitiveTypeName(FieldDescriptor::CppType type)
string QualifiedFileLevelSymbol(const string &package, const string &name)
static const OptimizeMode CODE_SIZE
Definition: descriptor.pb.h:1555
string SuperClassName(const Descriptor *descriptor)
bool StaticInitializersForced(const FileDescriptor *file)
bool HasDescriptorMethods(const FileDescriptor *file)
Definition: cpp_helpers.h:155
inline::google::protobuf::FileOptions_OptimizeMode optimize_for() const
Definition: descriptor.pb.h:5230
const Descriptor * containing_type() const
#define input
Definition: wire_format_lite.h:242
static const OptimizeMode SPEED
Definition: descriptor.pb.h:1554
string EscapeTrigraphs(const string &to_escape)
bool HasUtf8Verification(const FileDescriptor *file)
Definition: cpp_helpers.h:167
Definition: printer.h:64
const Descriptor * FieldScope(const FieldDescriptor *field)
Definition: cpp_helpers.h:83
bool cc_generic_services() const
Definition: descriptor.pb.h:5331
string StripProto(const string &filename)
CppType
Definition: descriptor.h:378
string ClassName(const Descriptor *descriptor, bool qualified)
int64_t int64
Definition: common.h:173
Definition: descriptor.h:342
string UnderscoresToCamelCase(const string &input, bool cap_next_letter)
Definition: BnetFileGenerator.h:47
string Int64ToString(int64 number)
static const OptimizeMode LITE_RUNTIME
Definition: descriptor.pb.h:1556
string FieldMessageTypeName(const FieldDescriptor *field)
bool IsStringOrMessage(const FieldDescriptor *field)
void PrintHandlingOptionalStaticInitializers(const FileDescriptor *file, io::Printer *printer, const char *with_static_init, const char *without_static_init, const char *var1=NULL, const string &val1="", const char *var2=NULL, const string &val2="")
Definition: descriptor.h:986
bool UseUnknownFieldSet(const FileDescriptor *file)
Definition: cpp_helpers.h:140
Type
Definition: descriptor.h:346
const char * DeclaredTypeMethodName(FieldDescriptor::Type type)
const FileOptions & options() const