csharp_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: kenton@google.com (Kenton Varda)
32 // Based on original Protocol Buffers design by
33 // Sanjay Ghemawat, Jeff Dean, and others.
34 
35 #ifndef GOOGLE_PROTOBUF_COMPILER_CSHARP_HELPERS_H__
36 #define GOOGLE_PROTOBUF_COMPILER_CSHARP_HELPERS_H__
37 
38 #include <string>
44 
45 #include <google/protobuf/port_def.inc>
46 
47 namespace google {
48 namespace protobuf {
49 namespace compiler {
50 namespace csharp {
51 
52 struct Options;
53 class FieldGeneratorBase;
54 
55 // TODO: start using this enum.
56 enum CSharpType {
69 };
70 
71 // Converts field type to corresponding C# type.
73 
74 std::string StripDotProto(const std::string& proto_file);
75 
76 // Gets unqualified name of the reflection class
78 // Gets unqualified name of the extension class
80 
82 
84 
86 
88 
90 
92  bool cap_next_letter,
93  bool preserve_period);
94 
95 inline std::string UnderscoresToCamelCase(const std::string& input, bool cap_next_letter) {
96  return UnderscoresToCamelCase(input, cap_next_letter, false);
97 }
98 
100 
101 // Note that we wouldn't normally want to export this (we're not expecting
102 // it to be used outside libprotoc itself) but this exposes it for testing.
103 std::string PROTOC_EXPORT GetEnumValueName(const std::string& enum_name,
104  const std::string& enum_value_name);
105 
106 // TODO(jtattermusch): perhaps we could move this to strutil
108 
110 
111 FieldGeneratorBase* CreateFieldGenerator(const FieldDescriptor* descriptor,
112  int presenceIndex,
113  const Options* options);
114 
116 
118 
119 // Determines whether the given message is a map entry message,
120 // i.e. one implicitly created by protoc due to a map<key, value> field.
122  return descriptor->options().map_entry();
123 }
124 
125 // Checks if this descriptor is for a group and gets its end tag or 0 if it's not a group
127 
128 // Determines whether we're generating code for the proto representation of
129 // descriptors etc, for use in the runtime. This is the only type which is
130 // allowed to use proto2 syntax, and it generates internal classes.
132  return descriptor->name() == "google/protobuf/descriptor.proto";
133 }
134 
135 // Determines whether the given message is an options message within descriptor.proto.
137  if (!IsDescriptorProto(descriptor->file())) {
138  return false;
139  }
140  const string name = descriptor->full_name();
141  return name == "google.protobuf.FileOptions" ||
142  name == "google.protobuf.MessageOptions" ||
143  name == "google.protobuf.FieldOptions" ||
144  name == "google.protobuf.OneofOptions" ||
145  name == "google.protobuf.EnumOptions" ||
146  name == "google.protobuf.EnumValueOptions" ||
147  name == "google.protobuf.ServiceOptions" ||
148  name == "google.protobuf.MethodOptions";
149 }
150 
152  return descriptor->type() == FieldDescriptor::TYPE_MESSAGE &&
153  descriptor->message_type()->file()->name() == "google/protobuf/wrappers.proto";
154 }
155 
156 inline bool IsProto2(const FileDescriptor* descriptor) {
157  return descriptor->syntax() == FileDescriptor::SYNTAX_PROTO2;
158 }
159 
160 } // namespace csharp
161 } // namespace compiler
162 } // namespace protobuf
163 } // namespace google
164 
165 #include <google/protobuf/port_undef.inc>
166 
167 #endif // GOOGLE_PROTOBUF_COMPILER_CSHARP_HELPERS_H__
google::protobuf::FieldDescriptor::Type
Type
Definition: src/google/protobuf/descriptor.h:521
google::protobuf::compiler::csharp::GetFieldConstantName
std::string GetFieldConstantName(const FieldDescriptor *field)
Definition: csharp_helpers.cc:352
name
GLuint const GLchar * name
Definition: glcorearb.h:3055
google::protobuf::FieldDescriptor
Definition: src/google/protobuf/descriptor.h:515
options
Message * options
Definition: src/google/protobuf/descriptor.cc:3119
input
std::string input
Definition: tokenizer_unittest.cc:197
google::protobuf::compiler::csharp::CSHARPTYPE_UINT32
@ CSHARPTYPE_UINT32
Definition: csharp_helpers.h:59
google::protobuf::compiler::csharp::CSHARPTYPE_INT32
@ CSHARPTYPE_INT32
Definition: csharp_helpers.h:57
google::protobuf::compiler::csharp::StringToBase64
std::string StringToBase64(const std::string &input)
Definition: csharp_helpers.cc:440
google::protobuf::compiler::csharp::GetFullExtensionName
std::string GetFullExtensionName(const FieldDescriptor *descriptor)
Definition: csharp_helpers.cc:324
google::protobuf::compiler::csharp::StripDotProto
std::string StripDotProto(const std::string &proto_file)
Definition: csharp_helpers.cc:109
google::protobuf::compiler::csharp::GetFixedSize
int GetFixedSize(FieldDescriptor::Type type)
Definition: csharp_helpers.cc:407
google::protobuf::compiler::csharp::GetCSharpType
CSharpType GetCSharpType(FieldDescriptor::Type type)
Definition: csharp_helpers.cc:63
string
GLsizei const GLchar *const * string
Definition: glcorearb.h:3083
google::protobuf::compiler::csharp::IsDescriptorOptionMessage
bool IsDescriptorOptionMessage(const Descriptor *descriptor)
Definition: csharp_helpers.h:136
google::protobuf::compiler::csharp::UnderscoresToPascalCase
std::string UnderscoresToPascalCase(const std::string &input)
Definition: csharp_helpers.cc:183
descriptor
Descriptor * descriptor
Definition: php/ext/google/protobuf/protobuf.h:936
google::protobuf::FileDescriptor::SYNTAX_PROTO2
@ SYNTAX_PROTO2
Definition: src/google/protobuf/descriptor.h:1393
google::protobuf::compiler::csharp::CSHARPTYPE_DOUBLE
@ CSHARPTYPE_DOUBLE
Definition: csharp_helpers.h:62
google::protobuf::compiler::csharp::IsProto2
bool IsProto2(const FileDescriptor *descriptor)
Definition: csharp_helpers.h:156
google::protobuf::compiler::csharp::GetFieldName
std::string GetFieldName(const FieldDescriptor *descriptor)
Definition: csharp_helpers.cc:344
google::protobuf::compiler::csharp::CSHARPTYPE_STRING
@ CSHARPTYPE_STRING
Definition: csharp_helpers.h:64
google::protobuf::compiler::csharp::CSHARPTYPE_BOOL
@ CSHARPTYPE_BOOL
Definition: csharp_helpers.h:63
google::protobuf::compiler::csharp::CSHARPTYPE_UINT64
@ CSHARPTYPE_UINT64
Definition: csharp_helpers.h:60
google::protobuf::compiler::csharp::IsDescriptorProto
bool IsDescriptorProto(const FileDescriptor *descriptor)
Definition: csharp_helpers.h:131
google::protobuf::compiler::csharp::CSHARPTYPE_MESSAGE
@ CSHARPTYPE_MESSAGE
Definition: csharp_helpers.h:66
google::protobuf::compiler::csharp::GetReflectionClassUnqualifiedName
std::string GetReflectionClassUnqualifiedName(const FileDescriptor *descriptor)
Definition: csharp_helpers.cc:130
google::protobuf::compiler::csharp::CSHARPTYPE_FLOAT
@ CSHARPTYPE_FLOAT
Definition: csharp_helpers.h:61
printer.h
code_generator.h
google::protobuf::compiler::csharp::CSHARPTYPE_ENUM
@ CSHARPTYPE_ENUM
Definition: csharp_helpers.h:67
google::protobuf::compiler::csharp::GetPropertyName
std::string GetPropertyName(const FieldDescriptor *descriptor)
Definition: csharp_helpers.cc:356
google::protobuf::uint
unsigned int uint
Definition: protobuf/src/google/protobuf/stubs/port.h:135
field
const FieldDescriptor * field
Definition: parser_unittest.cc:2694
google::protobuf::compiler::csharp::CSHARPTYPE_INT64
@ CSHARPTYPE_INT64
Definition: csharp_helpers.h:58
google::protobuf::compiler::csharp::GetGroupEndTag
uint GetGroupEndTag(const Descriptor *descriptor)
Definition: csharp_helpers.cc:285
google::protobuf::FieldDescriptor::TYPE_MESSAGE
@ TYPE_MESSAGE
Definition: src/google/protobuf/descriptor.h:536
google::protobuf::compiler::csharp::CSHARPTYPE_BYTESTRING
@ CSHARPTYPE_BYTESTRING
Definition: csharp_helpers.h:65
type
GLenum type
Definition: glcorearb.h:2695
google::protobuf::compiler::csharp::GetClassName
std::string GetClassName(const Descriptor *descriptor)
Definition: csharp_helpers.cc:333
google::protobuf::compiler::csharp::FileDescriptorToBase64
std::string FileDescriptorToBase64(const FileDescriptor *descriptor)
Definition: csharp_helpers.cc:471
google::protobuf::compiler::csharp::IsNullable
bool IsNullable(const FieldDescriptor *descriptor)
Definition: csharp_helpers.cc:529
google::protobuf::compiler::csharp::IsMapEntryMessage
bool IsMapEntryMessage(const Descriptor *descriptor)
Definition: csharp_helpers.h:121
google::protobuf::Descriptor
Definition: src/google/protobuf/descriptor.h:231
descriptor.h
google::protobuf::compiler::csharp::IsWrapperType
bool IsWrapperType(const FieldDescriptor *descriptor)
Definition: csharp_helpers.h:151
google::protobuf::FileDescriptor
Definition: src/google/protobuf/descriptor.h:1320
google::protobuf::compiler::csharp::GetExtensionClassUnqualifiedName
std::string GetExtensionClassUnqualifiedName(const FileDescriptor *descriptor)
Definition: csharp_helpers.cc:136
google::protobuf::compiler::csharp::UnderscoresToCamelCase
std::string UnderscoresToCamelCase(const std::string &input, bool cap_next_letter, bool preserve_period)
Definition: csharp_helpers.cc:143
descriptor.pb.h
google::protobuf::compiler::csharp::GetEnumValueName
std::string GetEnumValueName(const std::string &enum_name, const std::string &enum_value_name)
Definition: csharp_helpers.cc:274
google::protobuf::compiler::csharp::CreateFieldGenerator
FieldGeneratorBase * CreateFieldGenerator(const FieldDescriptor *descriptor, int presenceIndex, const Options *options)
Definition: csharp_helpers.cc:479
google::protobuf::EnumDescriptor
Definition: src/google/protobuf/descriptor.h:918
google::protobuf::compiler::csharp::CSharpType
CSharpType
Definition: csharp_helpers.h:56
port.h
google::protobuf::compiler::csharp::MAX_CSHARPTYPE
@ MAX_CSHARPTYPE
Definition: csharp_helpers.h:68
compiler
Definition: plugin.pb.cc:22
google
Definition: data_proto2_to_proto3_util.h:11


libaditof
Author(s):
autogenerated on Wed May 21 2025 02:06:49