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.
306 lines
11 KiB
306 lines
11 KiB
// Copyright (c) 2009-2021, Google LLC |
|
// All rights reserved. |
|
// |
|
// 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 LLC 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 Google LLC 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. |
|
|
|
#include <memory> |
|
|
|
#include "google/protobuf/descriptor.pb.h" |
|
#include "google/protobuf/compiler/code_generator.h" |
|
#include "google/protobuf/compiler/plugin.h" |
|
#include "protos_generator/gen_enums.h" |
|
#include "protos_generator/gen_extensions.h" |
|
#include "protos_generator/gen_messages.h" |
|
#include "protos_generator/gen_utils.h" |
|
#include "protos_generator/output.h" |
|
#include "upbc/file_layout.h" |
|
|
|
namespace protos_generator { |
|
namespace { |
|
|
|
namespace protoc = ::google::protobuf::compiler; |
|
namespace protobuf = ::google::protobuf; |
|
using FileDescriptor = ::google::protobuf::FileDescriptor; |
|
using FileLayout = ::upbc::FileLayout; |
|
|
|
void WriteSource(const FileLayout& layout, Output& output, |
|
bool fasttable_enabled); |
|
void WriteHeader(const FileLayout& layout, Output& output); |
|
void WriteForwardingHeader(const FileLayout& layout, Output& output); |
|
void WriteMessageImplementations(const protobuf::FileDescriptor* file, |
|
Output& output); |
|
void WriteTypedefForwardingHeader( |
|
const protobuf::FileDescriptor* file, |
|
const std::vector<const protobuf::Descriptor*>& file_messages, |
|
Output& output); |
|
void WriteHeaderMessageForwardDecls( |
|
const protobuf::FileDescriptor* file, |
|
const std::vector<const protobuf::Descriptor*>& file_messages, |
|
const std::vector<const protobuf::FieldDescriptor*>& file_exts, |
|
Output& output); |
|
|
|
class Generator : public protoc::CodeGenerator { |
|
public: |
|
~Generator() override {} |
|
bool Generate(const protobuf::FileDescriptor* file, |
|
const std::string& parameter, protoc::GeneratorContext* context, |
|
std::string* error) const override; |
|
uint64_t GetSupportedFeatures() const override { |
|
return FEATURE_PROTO3_OPTIONAL; |
|
} |
|
}; |
|
|
|
bool Generator::Generate(const protobuf::FileDescriptor* file, |
|
const std::string& parameter, |
|
protoc::GeneratorContext* context, |
|
std::string* error) const { |
|
bool fasttable_enabled = false; |
|
std::vector<std::pair<std::string, std::string>> params; |
|
google::protobuf::compiler::ParseGeneratorParameter(parameter, ¶ms); |
|
|
|
for (const auto& pair : params) { |
|
if (pair.first == "fasttable") { |
|
fasttable_enabled = true; |
|
} else { |
|
*error = "Unknown parameter: " + pair.first; |
|
return false; |
|
} |
|
} |
|
|
|
FileLayout layout(file); |
|
|
|
// Write model.upb.fwd.h |
|
Output forwarding_header_output( |
|
context->Open(ForwardingHeaderFilename(file))); |
|
WriteForwardingHeader(layout, forwarding_header_output); |
|
// Write model.upb.proto.h |
|
Output header_output(context->Open(CppHeaderFilename(file))); |
|
WriteHeader(layout, header_output); |
|
// Write model.upb.proto.cc |
|
Output cc_output(context->Open(CppSourceFilename(file))); |
|
WriteSource(layout, cc_output, fasttable_enabled); |
|
return true; |
|
} |
|
|
|
// The forwarding header defines Access/Proxy/CProxy for message classes |
|
// used to include when referencing dependencies to prevent transitive |
|
// dependency headers from being included. |
|
void WriteForwardingHeader(const FileLayout& layout, Output& output) { |
|
const protobuf::FileDescriptor* file = layout.descriptor(); |
|
EmitFileWarning(file, output); |
|
output( |
|
R"cc( |
|
#ifndef $0_UPB_FWD_H_ |
|
#define $0_UPB_FWD_H_ |
|
)cc", |
|
ToPreproc(file->name())); |
|
output("\n"); |
|
const std::vector<const protobuf::Descriptor*> this_file_messages = |
|
::upbc::SortedMessages(file); |
|
WriteTypedefForwardingHeader(file, this_file_messages, output); |
|
output("#endif /* $0_UPB_FWD_H_ */\n", ToPreproc(file->name())); |
|
} |
|
|
|
void WriteHeader(const FileLayout& layout, Output& output) { |
|
const protobuf::FileDescriptor* file = layout.descriptor(); |
|
EmitFileWarning(file, output); |
|
output( |
|
R"cc( |
|
#ifndef $0_UPB_PROTO_H_ |
|
#define $0_UPB_PROTO_H_ |
|
|
|
#include "protos/protos.h" |
|
#include "protos/protos_internal.h" |
|
#include "upb/upb.hpp" |
|
|
|
#include "absl/strings/string_view.h" |
|
#include "absl/status/statusor.h" |
|
#include "upb/message/internal.h" |
|
)cc", |
|
ToPreproc(file->name())); |
|
|
|
// Import headers for proto public dependencies. |
|
for (int i = 0; i < file->public_dependency_count(); i++) { |
|
if (i == 0) { |
|
output("// Public Imports.\n"); |
|
} |
|
output("#include \"$0\"\n", CppHeaderFilename(file->public_dependency(i))); |
|
if (i == file->public_dependency_count() - 1) { |
|
output("\n"); |
|
} |
|
} |
|
|
|
output("#include \"upb/port/def.inc\"\n"); |
|
|
|
const std::vector<const protobuf::Descriptor*> this_file_messages = |
|
::upbc::SortedMessages(file); |
|
const std::vector<const protobuf::FieldDescriptor*> this_file_exts = |
|
::upbc::SortedExtensions(file); |
|
|
|
if (!this_file_messages.empty()) { |
|
output("\n"); |
|
} |
|
|
|
WriteHeaderMessageForwardDecls(file, this_file_messages, this_file_exts, |
|
output); |
|
WriteStartNamespace(file, output); |
|
|
|
std::vector<const protobuf::EnumDescriptor*> this_file_enums = |
|
::upbc::SortedEnums(file); |
|
|
|
// Write Class and Enums. |
|
WriteEnumDeclarations(this_file_enums, output); |
|
output("\n"); |
|
|
|
for (auto message : this_file_messages) { |
|
WriteMessageClassDeclarations(message, this_file_exts, output); |
|
} |
|
output("\n"); |
|
|
|
WriteExtensionIdentifiersHeader(this_file_exts, output); |
|
output("\n"); |
|
|
|
WriteEndNamespace(file, output); |
|
|
|
output("\n#include \"upb/port/undef.inc\"\n\n"); |
|
// End of "C" section. |
|
|
|
output("#endif /* $0_UPB_PROTO_H_ */\n", ToPreproc(file->name())); |
|
} |
|
|
|
// Writes a .upb.cc source file. |
|
void WriteSource(const FileLayout& layout, Output& output, |
|
bool fasttable_enabled) { |
|
const protobuf::FileDescriptor* file = layout.descriptor(); |
|
EmitFileWarning(file, output); |
|
|
|
output( |
|
R"cc( |
|
#include <stddef.h> |
|
#include "absl/strings/string_view.h" |
|
#include "upb/message/internal.h" |
|
#include "protos/protos.h" |
|
#include "$0" |
|
)cc", |
|
CppHeaderFilename(file)); |
|
|
|
for (int i = 0; i < file->dependency_count(); i++) { |
|
output("#include \"$0\"\n", CppHeaderFilename(file->dependency(i))); |
|
} |
|
output("#include \"upb/port/def.inc\"\n"); |
|
|
|
WriteStartNamespace(file, output); |
|
WriteMessageImplementations(file, output); |
|
const std::vector<const protobuf::FieldDescriptor*> this_file_exts = |
|
::upbc::SortedExtensions(file); |
|
WriteExtensionIdentifiers(this_file_exts, output); |
|
WriteEndNamespace(file, output); |
|
|
|
output("#include \"upb/port/undef.inc\"\n\n"); |
|
} |
|
|
|
void WriteMessageImplementations(const protobuf::FileDescriptor* file, |
|
Output& output) { |
|
const std::vector<const protobuf::FieldDescriptor*> file_exts = |
|
::upbc::SortedExtensions(file); |
|
const std::vector<const protobuf::Descriptor*> this_file_messages = |
|
::upbc::SortedMessages(file); |
|
for (auto message : this_file_messages) { |
|
WriteMessageImplementation(message, file_exts, output); |
|
} |
|
} |
|
|
|
void WriteTypedefForwardingHeader( |
|
const protobuf::FileDescriptor* file, |
|
const std::vector<const protobuf::Descriptor*>& file_messages, |
|
Output& output) { |
|
WriteStartNamespace(file, output); |
|
|
|
// Forward-declare types defined in this file. |
|
for (auto message : file_messages) { |
|
output( |
|
R"cc( |
|
class $0; |
|
namespace internal { |
|
class $0Access; |
|
class $0Proxy; |
|
class $0CProxy; |
|
} // namespace internal |
|
)cc", |
|
ClassName(message)); |
|
} |
|
output("\n"); |
|
WriteEndNamespace(file, output); |
|
} |
|
|
|
/// Writes includes for upb C minitables and fwd.h for transitive typedefs. |
|
void WriteHeaderMessageForwardDecls( |
|
const protobuf::FileDescriptor* file, |
|
const std::vector<const protobuf::Descriptor*>& file_messages, |
|
const std::vector<const protobuf::FieldDescriptor*>& file_exts, |
|
Output& output) { |
|
// Import forward-declaration of types defined in this file. |
|
output("#include \"$0\"\n", UpbCFilename(file)); |
|
output("#include \"$0\"\n", ForwardingHeaderFilename(file)); |
|
// Forward-declare types not in this file, but used as submessages. |
|
// Order by full name for consistent ordering. |
|
std::map<std::string, const protobuf::Descriptor*> forward_messages; |
|
|
|
for (auto* message : file_messages) { |
|
for (int i = 0; i < message->field_count(); i++) { |
|
const protobuf::FieldDescriptor* field = message->field(i); |
|
if (field->cpp_type() == protobuf::FieldDescriptor::CPPTYPE_MESSAGE && |
|
field->file() != field->message_type()->file()) { |
|
forward_messages[field->message_type()->full_name()] = |
|
field->message_type(); |
|
} |
|
} |
|
} |
|
for (auto* ext : file_exts) { |
|
if (ext->file() != ext->containing_type()->file()) { |
|
forward_messages[ext->containing_type()->full_name()] = |
|
ext->containing_type(); |
|
if (ext->cpp_type() == protobuf::FieldDescriptor::CPPTYPE_MESSAGE) { |
|
forward_messages[ext->message_type()->full_name()] = |
|
ext->message_type(); |
|
} |
|
} |
|
} |
|
std::map<std::string, const protobuf::FileDescriptor*> files_to_import; |
|
for (const auto& pair : forward_messages) { |
|
files_to_import[ForwardingHeaderFilename(pair.second->file())] = file; |
|
} |
|
for (const auto& pair : files_to_import) { |
|
output("#include \"$0\"\n", UpbCFilename(pair.second)); |
|
output("#include \"$0\"\n", pair.first); |
|
} |
|
output("\n"); |
|
} |
|
|
|
} // namespace |
|
} // namespace protos_generator |
|
|
|
int main(int argc, char** argv) { |
|
protos_generator::Generator generator_cc; |
|
return google::protobuf::compiler::PluginMain(argc, argv, &generator_cc); |
|
}
|
|
|