summaryrefslogtreecommitdiffstats
path: root/contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc
diff options
context:
space:
mode:
authormikhnenko <[email protected]>2024-06-30 20:16:52 +0300
committermikhnenko <[email protected]>2024-06-30 20:28:14 +0300
commitb91a38fe11269c505fec071351a68e568768e6e8 (patch)
tree07d43bf92eee00e2fce98bdbf698f135386995c1 /contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc
parentb21e05a2e32e36ae9cc9826acf98084ca4b52d7d (diff)
Update protobuf to 3.21.2
a628f0376085fcf46dc6d24629f2a7dacb91ae79
Diffstat (limited to 'contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc')
-rw-r--r--contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc438
1 files changed, 438 insertions, 0 deletions
diff --git a/contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc b/contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc
new file mode 100644
index 00000000000..91d0b9442b7
--- /dev/null
+++ b/contrib/libs/protoc/src/google/protobuf/compiler/cpp/enum.cc
@@ -0,0 +1,438 @@
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc. All rights reserved.
+// https://developers.google.com/protocol-buffers/
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// Author: [email protected] (Kenton Varda)
+// Based on original Protocol Buffers design by
+// Sanjay Ghemawat, Jeff Dean, and others.
+
+#include <google/protobuf/compiler/cpp/enum.h>
+
+#include <cstdint>
+#include <limits>
+#include <map>
+
+#include <google/protobuf/io/printer.h>
+#include <google/protobuf/stubs/strutil.h>
+#include <google/protobuf/compiler/cpp/helpers.h>
+#include <google/protobuf/compiler/cpp/names.h>
+
+namespace google {
+namespace protobuf {
+namespace compiler {
+namespace cpp {
+
+namespace {
+// The GOOGLE_ARRAYSIZE constant is the max enum value plus 1. If the max enum value
+// is kint32max, GOOGLE_ARRAYSIZE will overflow. In such cases we should omit the
+// generation of the GOOGLE_ARRAYSIZE constant.
+bool ShouldGenerateArraySize(const EnumDescriptor* descriptor) {
+ arc_i32 max_value = descriptor->value(0)->number();
+ for (int i = 0; i < descriptor->value_count(); i++) {
+ if (descriptor->value(i)->number() > max_value) {
+ max_value = descriptor->value(i)->number();
+ }
+ }
+ return max_value != std::numeric_limits<arc_i32>::max();
+}
+
+// Returns the number of unique numeric enum values. This is less than
+// descriptor->value_count() when there are aliased values.
+int CountUniqueValues(const EnumDescriptor* descriptor) {
+ std::set<int> values;
+ for (int i = 0; i < descriptor->value_count(); ++i) {
+ values.insert(descriptor->value(i)->number());
+ }
+ return values.size();
+}
+
+} // namespace
+
+EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor,
+ const std::map<TProtoStringType, TProtoStringType>& vars,
+ const Options& options)
+ : descriptor_(descriptor),
+ classname_(ClassName(descriptor, false)),
+ options_(options),
+ generate_array_size_(ShouldGenerateArraySize(descriptor)),
+ variables_(vars) {
+ variables_["classname"] = classname_;
+ variables_["classtype"] = QualifiedClassName(descriptor_, options);
+ variables_["short_name"] = descriptor_->name();
+ variables_["nested_name"] = descriptor_->name();
+ variables_["resolved_name"] = ResolveKeyword(descriptor_->name());
+ variables_["prefix"] =
+ (descriptor_->containing_type() == nullptr) ? "" : classname_ + "_";
+}
+
+EnumGenerator::~EnumGenerator() {}
+
+void EnumGenerator::GenerateDefinition(io::Printer* printer) {
+ Formatter format(printer, variables_);
+ format("enum ${1$$classname$$}$ : int {\n", descriptor_);
+ format.Indent();
+
+ const EnumValueDescriptor* min_value = descriptor_->value(0);
+ const EnumValueDescriptor* max_value = descriptor_->value(0);
+
+ for (int i = 0; i < descriptor_->value_count(); i++) {
+ auto format_value = format;
+ format_value.Set("name", EnumValueName(descriptor_->value(i)));
+ // In C++, an value of -2147483648 gets interpreted as the negative of
+ // 2147483648, and since 2147483648 can't fit in an integer, this produces a
+ // compiler warning. This works around that issue.
+ format_value.Set("number", Int32ToString(descriptor_->value(i)->number()));
+ format_value.Set("deprecation",
+ DeprecatedAttribute(options_, descriptor_->value(i)));
+
+ if (i > 0) format_value(",\n");
+ format_value("${1$$prefix$$name$$}$ $deprecation$= $number$",
+ descriptor_->value(i));
+
+ if (descriptor_->value(i)->number() < min_value->number()) {
+ min_value = descriptor_->value(i);
+ }
+ if (descriptor_->value(i)->number() > max_value->number()) {
+ max_value = descriptor_->value(i);
+ }
+ }
+
+ if (descriptor_->file()->syntax() == FileDescriptor::SYNTAX_PROTO3) {
+ // For new enum semantics: generate min and max sentinel values equal to
+ // INT32_MIN and INT32_MAX
+ if (descriptor_->value_count() > 0) format(",\n");
+ format(
+ "$classname$_$prefix$INT_MIN_SENTINEL_DO_NOT_USE_ = "
+ "std::numeric_limits<$int32$>::min(),\n"
+ "$classname$_$prefix$INT_MAX_SENTINEL_DO_NOT_USE_ = "
+ "std::numeric_limits<$int32$>::max()");
+ }
+
+ format.Outdent();
+ format("\n};\n");
+
+ format(
+ "$dllexport_decl $bool $classname$_IsValid(int value);\n"
+ "constexpr $classname$ ${1$$prefix$$short_name$_MIN$}$ = "
+ "$prefix$$2$;\n"
+ "constexpr $classname$ ${1$$prefix$$short_name$_MAX$}$ = "
+ "$prefix$$3$;\n",
+ descriptor_, EnumValueName(min_value), EnumValueName(max_value));
+
+ if (generate_array_size_) {
+ format(
+ "constexpr int ${1$$prefix$$short_name$_ARRAYSIZE$}$ = "
+ "$prefix$$short_name$_MAX + 1;\n\n",
+ descriptor_);
+ }
+
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ "$dllexport_decl $const ::$proto_ns$::EnumDescriptor* "
+ "$classname$_descriptor();\n");
+ }
+
+ // The _Name and _Parse functions. The lite implementation is table-based, so
+ // we make sure to keep the tables hidden in the .cc file.
+ if (!HasDescriptorMethods(descriptor_->file(), options_)) {
+ format("const TProtoStringType& $classname$_Name($classname$ value);\n");
+ }
+ // The _Name() function accepts the enum type itself but also any integral
+ // type.
+ format(
+ "template<typename T>\n"
+ "inline const TProtoStringType& $classname$_Name(T enum_t_value) {\n"
+ " static_assert(::std::is_same<T, $classname$>::value ||\n"
+ " ::std::is_integral<T>::value,\n"
+ " \"Incorrect type passed to function $classname$_Name.\");\n");
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ " return ::$proto_ns$::internal::NameOfEnum(\n"
+ " $classname$_descriptor(), enum_t_value);\n");
+ } else {
+ format(
+ " return $classname$_Name(static_cast<$classname$>(enum_t_value));\n");
+ }
+ format("}\n");
+
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ "inline bool $classname$_Parse(\n"
+ " ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, $classname$* "
+ "value) "
+ "{\n"
+ " return ::$proto_ns$::internal::ParseNamedEnum<$classname$>(\n"
+ " $classname$_descriptor(), name, value);\n"
+ "}\n");
+ } else {
+ format(
+ "bool $classname$_Parse(\n"
+ " ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, $classname$* "
+ "value);\n");
+ }
+}
+
+void EnumGenerator::GenerateGetEnumDescriptorSpecializations(
+ io::Printer* printer) {
+ Formatter format(printer, variables_);
+ format(
+ "template <> struct is_proto_enum< $classtype$> : ::std::true_type "
+ "{};\n");
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ "template <>\n"
+ "inline const EnumDescriptor* GetEnumDescriptor< $classtype$>() {\n"
+ " return $classtype$_descriptor();\n"
+ "}\n");
+ }
+}
+
+void EnumGenerator::GenerateSymbolImports(io::Printer* printer) const {
+ Formatter format(printer, variables_);
+ format("typedef $classname$ $resolved_name$;\n");
+
+ for (int j = 0; j < descriptor_->value_count(); j++) {
+ TProtoStringType deprecated_attr =
+ DeprecatedAttribute(options_, descriptor_->value(j));
+ format(
+ "$1$static constexpr $resolved_name$ ${2$$3$$}$ =\n"
+ " $classname$_$3$;\n",
+ deprecated_attr, descriptor_->value(j),
+ EnumValueName(descriptor_->value(j)));
+ }
+
+ format(
+ "static inline bool $nested_name$_IsValid(int value) {\n"
+ " return $classname$_IsValid(value);\n"
+ "}\n"
+ "static constexpr $resolved_name$ ${1$$nested_name$_MIN$}$ =\n"
+ " $classname$_$nested_name$_MIN;\n"
+ "static constexpr $resolved_name$ ${1$$nested_name$_MAX$}$ =\n"
+ " $classname$_$nested_name$_MAX;\n",
+ descriptor_);
+ if (generate_array_size_) {
+ format(
+ "static constexpr int ${1$$nested_name$_ARRAYSIZE$}$ =\n"
+ " $classname$_$nested_name$_ARRAYSIZE;\n",
+ descriptor_);
+ }
+
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ "static inline const ::$proto_ns$::EnumDescriptor*\n"
+ "$nested_name$_descriptor() {\n"
+ " return $classname$_descriptor();\n"
+ "}\n");
+ }
+
+ format(
+ "template<typename T>\n"
+ "static inline const TProtoStringType& $nested_name$_Name(T enum_t_value) {\n"
+ " static_assert(::std::is_same<T, $resolved_name$>::value ||\n"
+ " ::std::is_integral<T>::value,\n"
+ " \"Incorrect type passed to function $nested_name$_Name.\");\n"
+ " return $classname$_Name(enum_t_value);\n"
+ "}\n");
+ format(
+ "static inline bool "
+ "$nested_name$_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam name,\n"
+ " $resolved_name$* value) {\n"
+ " return $classname$_Parse(name, value);\n"
+ "}\n");
+}
+
+void EnumGenerator::GenerateMethods(int idx, io::Printer* printer) {
+ Formatter format(printer, variables_);
+ if (HasDescriptorMethods(descriptor_->file(), options_)) {
+ format(
+ "const ::$proto_ns$::EnumDescriptor* $classname$_descriptor() {\n"
+ " ::$proto_ns$::internal::AssignDescriptors(&$desc_table$);\n"
+ " return $file_level_enum_descriptors$[$1$];\n"
+ "}\n",
+ idx);
+ }
+
+ format(
+ "bool $classname$_IsValid(int value) {\n"
+ " switch (value) {\n");
+
+ // Multiple values may have the same number. Make sure we only cover
+ // each number once by first constructing a set containing all valid
+ // numbers, then printing a case statement for each element.
+
+ std::set<int> numbers;
+ for (int j = 0; j < descriptor_->value_count(); j++) {
+ const EnumValueDescriptor* value = descriptor_->value(j);
+ numbers.insert(value->number());
+ }
+
+ for (std::set<int>::iterator iter = numbers.begin(); iter != numbers.end();
+ ++iter) {
+ format(" case $1$:\n", Int32ToString(*iter));
+ }
+
+ format(
+ " return true;\n"
+ " default:\n"
+ " return false;\n"
+ " }\n"
+ "}\n"
+ "\n");
+
+ if (!HasDescriptorMethods(descriptor_->file(), options_)) {
+ // In lite mode (where descriptors are unavailable), we generate separate
+ // tables for mapping between enum names and numbers. The _entries table
+ // contains the bulk of the data and is sorted by name, while
+ // _entries_by_number is sorted by number and just contains pointers into
+ // _entries. The two tables allow mapping from name to number and number to
+ // name, both in time logarithmic in the number of enum entries. This could
+ // probably be made faster, but for now the tables are intended to be simple
+ // and compact.
+ //
+ // Enums with allow_alias = true support multiple entries with the same
+ // numerical value. In cases where there are multiple names for the same
+ // number, we treat the first name appearing in the .proto file as the
+ // canonical one.
+ std::map<TProtoStringType, int> name_to_number;
+ std::map<int, TProtoStringType> number_to_canonical_name;
+ for (int i = 0; i < descriptor_->value_count(); i++) {
+ const EnumValueDescriptor* value = descriptor_->value(i);
+ name_to_number.emplace(value->name(), value->number());
+ // The same number may appear with multiple names, so we use emplace() to
+ // let the first name win.
+ number_to_canonical_name.emplace(value->number(), value->name());
+ }
+
+ format(
+ "static ::$proto_ns$::internal::ExplicitlyConstructed<TProtoStringType> "
+ "$classname$_strings[$1$] = {};\n\n",
+ CountUniqueValues(descriptor_));
+
+ // We concatenate all the names for a given enum into one big string
+ // literal. If instead we store an array of string literals, the linker
+ // seems to put all enum strings for a given .proto file in the same
+ // section, which hinders its ability to strip out unused strings.
+ format("static const char $classname$_names[] =");
+ for (const auto& p : name_to_number) {
+ format("\n \"$1$\"", p.first);
+ }
+ format(";\n\n");
+
+ format(
+ "static const ::$proto_ns$::internal::EnumEntry $classname$_entries[] "
+ "= {\n");
+ int i = 0;
+ std::map<int, int> number_to_index;
+ int data_index = 0;
+ for (const auto& p : name_to_number) {
+ format(" { {$classname$_names + $1$, $2$}, $3$ },\n", data_index,
+ p.first.size(), p.second);
+ if (number_to_canonical_name[p.second] == p.first) {
+ number_to_index.emplace(p.second, i);
+ }
+ ++i;
+ data_index += p.first.size();
+ }
+
+ format(
+ "};\n"
+ "\n"
+ "static const int $classname$_entries_by_number[] = {\n");
+ for (const auto& p : number_to_index) {
+ format(" $1$, // $2$ -> $3$\n", p.second, p.first,
+ number_to_canonical_name[p.first]);
+ }
+ format(
+ "};\n"
+ "\n");
+
+ format(
+ "const TProtoStringType& $classname$_Name(\n"
+ " $classname$ value) {\n"
+ " static const bool dummy =\n"
+ " ::$proto_ns$::internal::InitializeEnumStrings(\n"
+ " $classname$_entries,\n"
+ " $classname$_entries_by_number,\n"
+ " $1$, $classname$_strings);\n"
+ " (void) dummy;\n"
+ " int idx = ::$proto_ns$::internal::LookUpEnumName(\n"
+ " $classname$_entries,\n"
+ " $classname$_entries_by_number,\n"
+ " $1$, value);\n"
+ " return idx == -1 ? ::$proto_ns$::internal::GetEmptyString() :\n"
+ " $classname$_strings[idx].get();\n"
+ "}\n",
+ CountUniqueValues(descriptor_));
+ format(
+ "bool $classname$_Parse(\n"
+ " ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, $classname$* "
+ "value) "
+ "{\n"
+ " int int_value;\n"
+ " bool success = ::$proto_ns$::internal::LookUpEnumValue(\n"
+ " $classname$_entries, $1$, name, &int_value);\n"
+ " if (success) {\n"
+ " *value = static_cast<$classname$>(int_value);\n"
+ " }\n"
+ " return success;\n"
+ "}\n",
+ descriptor_->value_count());
+ }
+
+ if (descriptor_->containing_type() != nullptr) {
+ TProtoStringType parent = ClassName(descriptor_->containing_type(), false);
+ // Before C++17, we must define the static constants which were
+ // declared in the header, to give the linker a place to put them.
+ // But MSVC++ pre-2015 and post-2017 (version 15.5+) insists that we not.
+ format(
+ "#if (__cplusplus < 201703) && "
+ "(!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912))\n");
+
+ for (int i = 0; i < descriptor_->value_count(); i++) {
+ format("constexpr $classname$ $1$::$2$;\n", parent,
+ EnumValueName(descriptor_->value(i)));
+ }
+ format(
+ "constexpr $classname$ $1$::$nested_name$_MIN;\n"
+ "constexpr $classname$ $1$::$nested_name$_MAX;\n",
+ parent);
+ if (generate_array_size_) {
+ format("constexpr int $1$::$nested_name$_ARRAYSIZE;\n", parent);
+ }
+
+ format(
+ "#endif // (__cplusplus < 201703) && "
+ "(!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912))\n");
+ }
+}
+
+} // namespace cpp
+} // namespace compiler
+} // namespace protobuf
+} // namespace google