Extend the weak descriptor message feature to include extensions.

An extension declaration now allows both messages to be weak and will create
the prototype on the fly.

PiperOrigin-RevId: 588811002
pull/14999/head
Protobuf Team Bot 12 months ago committed by Copybara-Service
parent 976029283f
commit 8edf0bd630
  1. 80
      src/google/protobuf/compiler/cpp/extension.cc
  2. 10
      src/google/protobuf/compiler/cpp/helpers.h
  3. 19
      src/google/protobuf/generated_message_reflection.cc
  4. 5
      src/google/protobuf/generated_message_reflection.h

@ -12,6 +12,7 @@
#include "google/protobuf/compiler/cpp/extension.h" #include "google/protobuf/compiler/cpp/extension.h"
#include <string> #include <string>
#include <vector>
#include "absl/strings/str_cat.h" #include "absl/strings/str_cat.h"
#include "absl/strings/str_replace.h" #include "absl/strings/str_replace.h"
@ -188,35 +189,58 @@ void ExtensionGenerator::GenerateRegistration(io::Printer* p) {
$repeated$, $packed$, $enum_name$_IsValid), $repeated$, $packed$, $enum_name$_IsValid),
)cc"); )cc");
break; break;
case FieldDescriptor::CPPTYPE_MESSAGE: case FieldDescriptor::CPPTYPE_MESSAGE: {
p->Emit({{"verify", const bool should_verify =
[&] { // Only verify msgs.
const bool should_verify = descriptor_->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE &&
// Only verify msgs. // Options say to verify.
descriptor_->cpp_type() == ShouldVerify(descriptor_->message_type(), options_, scc_analyzer_) &&
FieldDescriptor::CPPTYPE_MESSAGE && ShouldVerify(descriptor_->containing_type(), options_, scc_analyzer_);
// Options say to verify. const auto message_type = FieldMessageTypeName(descriptor_, options_);
ShouldVerify(descriptor_->message_type(), options_, auto v = p->WithVars(
scc_analyzer_) && {{"verify", should_verify
ShouldVerify(descriptor_->containing_type(), options_, ? absl::StrCat("&", message_type, "::InternalVerify")
scc_analyzer_); : "nullptr"},
if (should_verify) { {"message_type", message_type},
p->Emit("&$message_type$::InternalVerify,"); {"lazy", descriptor_->options().has_lazy()
} else { ? descriptor_->options().lazy() ? "kLazy" : "kEager"
p->Emit("nullptr,"); : "kUndefined"}});
} if (UsingImplicitWeakDescriptor(descriptor_->file(), options_)) {
}}, const auto find_index = [](auto* desc) {
{"message_type", FieldMessageTypeName(descriptor_, options_)}, const std::vector<const Descriptor*> msgs =
{"lazy", descriptor_->options().has_lazy() FlattenMessagesInFile(desc->file());
? descriptor_->options().lazy() ? "kLazy" : "kEager" return absl::c_find(msgs, desc) - msgs.begin();
: "kUndefined"}}, };
R"cc( p->Emit(
::_pbi::ExtensionSet::RegisterMessageExtension( {
&$extendee$::default_instance(), $number$, $field_type$, {"extendee_table",
$repeated$, $packed$, &$message_type$::default_instance(), DescriptorTableName(descriptor_->containing_type()->file(),
$verify$, ::_pbi::LazyAnnotation::$lazy$), options_)},
)cc"); {"extendee_index", find_index(descriptor_->containing_type())},
{"extension_table",
DescriptorTableName(descriptor_->message_type()->file(),
options_)},
{"extension_index", find_index(descriptor_->message_type())},
},
R"cc(
::_pbi::ExtensionSet::RegisterMessageExtension(
::_pbi::GetPrototypeForWeakDescriptor(&$extendee_table$,
$extendee_index$),
$number$, $field_type$, $repeated$, $packed$,
::_pbi::GetPrototypeForWeakDescriptor(&$extension_table$,
$extension_index$),
$verify$, ::_pbi::LazyAnnotation::$lazy$),
)cc");
} else {
p->Emit(R"cc(
::_pbi::ExtensionSet::RegisterMessageExtension(
&$extendee$::default_instance(), $number$, $field_type$,
$repeated$, $packed$, &$message_type$::default_instance(),
$verify$, ::_pbi::LazyAnnotation::$lazy$),
)cc");
}
break; break;
}
default: default:
p->Emit( p->Emit(
R"cc( R"cc(

@ -772,9 +772,13 @@ void ListAllTypesForServices(const FileDescriptor* fd,
// their codegen. // their codegen.
// LITE messages do not participate at all in this feature. // LITE messages do not participate at all in this feature.
// //
// For extensions, the identifiers currently pin both the extended and extendee // For extensions, the identifiers currently pin the extendee. The extended is
// messages. This is the status quo, but not the desired end state which should // assumed to by pinned elsewhere since we already have an instance of it when
// change in a future update to the feature. // we call `.GetExtension` et al. The extension identifier itself is not
// automatically pinned, so it has to be used to participate in the graph.
// Registration of the extensions do not pin the extended or the extendee. At
// registration time we will eagerly create a prototype object if one is
// missing to insert in the extension table in ExtensionSet.
// //
// For services, the TU unconditionally pins the request/response objects. // For services, the TU unconditionally pins the request/response objects.
// This is the status quo for simplicitly to avoid modifying the RPC layer. It // This is the status quo for simplicitly to avoid modifying the RPC layer. It

@ -39,6 +39,7 @@
#include "google/protobuf/inlined_string_field.h" #include "google/protobuf/inlined_string_field.h"
#include "google/protobuf/map_field.h" #include "google/protobuf/map_field.h"
#include "google/protobuf/map_field_inl.h" #include "google/protobuf/map_field_inl.h"
#include "google/protobuf/message.h"
#include "google/protobuf/raw_ptr.h" #include "google/protobuf/raw_ptr.h"
#include "google/protobuf/repeated_field.h" #include "google/protobuf/repeated_field.h"
#include "google/protobuf/unknown_field_set.h" #include "google/protobuf/unknown_field_set.h"
@ -3819,6 +3820,24 @@ bool SplitFieldHasExtraIndirection(const FieldDescriptor* field) {
return field->is_repeated(); return field->is_repeated();
} }
const Message* GetPrototypeForWeakDescriptor(const DescriptorTable* table,
int index) {
// First, make sure we inject the surviving default instances.
InitProtobufDefaults();
// Now check if the table has it. If so, return it.
if (const auto* msg = table->default_instances[index]) {
return msg;
}
// Fallback to dynamic messages.
// Register the dep and generate the prototype via the generated pool.
AssignDescriptors(table);
ABSL_CHECK(table->file_level_metadata[index].descriptor != nullptr);
return MessageFactory::generated_factory()->GetPrototype(
table->file_level_metadata[index].descriptor);
}
} // namespace internal } // namespace internal
} // namespace protobuf } // namespace protobuf
} // namespace google } // namespace google

@ -344,6 +344,11 @@ struct PROTOBUF_EXPORT AddDescriptorsRunner {
explicit AddDescriptorsRunner(const DescriptorTable* table); explicit AddDescriptorsRunner(const DescriptorTable* table);
}; };
// Retrieves the existing prototype out of a descriptor table.
// If it doesn't exist, asks the generated message factory for one.
const Message* GetPrototypeForWeakDescriptor(const DescriptorTable* table,
int index);
struct DenseEnumCacheInfo { struct DenseEnumCacheInfo {
std::atomic<const std::string**> cache; std::atomic<const std::string**> cache;
int min_val; int min_val;

Loading…
Cancel
Save