Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.9 KiB
95 lines
2.9 KiB
1 year ago
|
// Protocol Buffers - Google's data interchange format
|
||
|
// Copyright 2023 Google LLC. All rights reserved.
|
||
2 years ago
|
//
|
||
1 year ago
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file or at
|
||
|
// https://developers.google.com/open-source/licenses/bsd
|
||
2 years ago
|
|
||
6 months ago
|
#include "hpb_generator/gen_extensions.h"
|
||
2 years ago
|
|
||
|
#include "absl/strings/str_cat.h"
|
||
6 months ago
|
#include "hpb_generator/gen_utils.h"
|
||
|
#include "hpb_generator/names.h"
|
||
2 years ago
|
|
||
|
namespace protos_generator {
|
||
|
|
||
|
namespace protobuf = ::google::protobuf;
|
||
|
|
||
|
std::string ExtensionIdentifierBase(const protobuf::FieldDescriptor* ext) {
|
||
|
assert(ext->is_extension());
|
||
|
std::string ext_scope;
|
||
|
if (ext->extension_scope()) {
|
||
|
return MessageName(ext->extension_scope());
|
||
|
} else {
|
||
|
return ToCIdent(ext->file()->package());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
std::string ContainingTypeName(const protobuf::FieldDescriptor* ext) {
|
||
|
return ext->containing_type()->file() != ext->file()
|
||
|
? QualifiedClassName(ext->containing_type())
|
||
|
: ClassName(ext->containing_type());
|
||
|
}
|
||
|
|
||
|
void WriteExtensionIdentifierHeader(const protobuf::FieldDescriptor* ext,
|
||
|
Output& output) {
|
||
|
std::string mini_table_name =
|
||
|
absl::StrCat(ExtensionIdentifierBase(ext), "_", ext->name(), "_ext");
|
||
|
if (ext->extension_scope()) {
|
||
2 years ago
|
output(
|
||
|
R"cc(
|
||
|
static const ::protos::internal::ExtensionIdentifier<$0, $1> $2;
|
||
|
)cc",
|
||
|
ContainingTypeName(ext), CppTypeParameterName(ext), ext->name());
|
||
2 years ago
|
} else {
|
||
|
output(
|
||
|
R"cc(
|
||
2 years ago
|
extern const ::protos::internal::ExtensionIdentifier<$0, $1> $2;
|
||
2 years ago
|
)cc",
|
||
|
ContainingTypeName(ext), CppTypeParameterName(ext), ext->name());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void WriteExtensionIdentifiersHeader(
|
||
|
const std::vector<const protobuf::FieldDescriptor*>& extensions,
|
||
|
Output& output) {
|
||
|
for (const auto* ext : extensions) {
|
||
|
if (!ext->extension_scope()) {
|
||
|
WriteExtensionIdentifierHeader(ext, output);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void WriteExtensionIdentifier(const protobuf::FieldDescriptor* ext,
|
||
|
Output& output) {
|
||
|
std::string mini_table_name =
|
||
|
absl::StrCat(ExtensionIdentifierBase(ext), "_", ext->name(), "_ext");
|
||
|
if (ext->extension_scope()) {
|
||
|
output(
|
||
|
R"cc(
|
||
2 years ago
|
const ::protos::internal::ExtensionIdentifier<$0, $3> $4::$2(&$1);
|
||
2 years ago
|
)cc",
|
||
|
ContainingTypeName(ext), mini_table_name, ext->name(),
|
||
|
CppTypeParameterName(ext), ClassName(ext->extension_scope()));
|
||
|
} else {
|
||
|
output(
|
||
|
R"cc(
|
||
2 years ago
|
const ::protos::internal::ExtensionIdentifier<$0, $3> $2(&$1);
|
||
2 years ago
|
)cc",
|
||
|
ContainingTypeName(ext), mini_table_name, ext->name(),
|
||
|
CppTypeParameterName(ext));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void WriteExtensionIdentifiers(
|
||
|
const std::vector<const protobuf::FieldDescriptor*>& extensions,
|
||
|
Output& output) {
|
||
|
for (const auto* ext : extensions) {
|
||
|
if (!ext->extension_scope()) {
|
||
|
WriteExtensionIdentifier(ext, output);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace protos_generator
|