// Protocol Buffers - Google's data interchange format // Copyright 2024 Google LLC. All rights reserved. // // 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 #ifndef GOOGLE_PROTOBUF_HPB_INTERNAL_INTERNAL_H__ #define GOOGLE_PROTOBUF_HPB_INTERNAL_INTERNAL_H__ #include #include #include "hpb/multibackend.h" #if HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB #include "upb/mem/arena.h" #include "upb/message/message.h" #endif // HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB namespace hpb::internal { struct PrivateAccess { template static auto* GetInternalMsg(T&& message) { return message->msg(); } template static auto* GetInternalArena(T&& message) { return message->arena(); } template static constexpr auto InvokeConstructor(Args&&... args) { return T(std::forward(args)...); } #if HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB template static auto* GetInternalUPBArena(T&& arena) { return arena.arena_.ptr(); } template static auto Proxy(upb_Message* p, upb_Arena* arena) { return typename T::Proxy(p, arena); } template static auto CProxy(const upb_Message* p, upb_Arena* arena) { return typename T::CProxy(p, arena); } template static auto CreateMessage(upb_Arena* arena) { return typename T::Proxy(upb_Message_New(T::minitable(), arena), arena); } template static constexpr uint32_t GetExtensionNumber(const ExtensionId& id) { return id.number(); } template static decltype(auto) GetDefaultValue(const ExtensionId& id) { return id.default_value(); } #endif // HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB }; #if HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB template struct AssociatedUpbTypes; #endif // HPB_INTERNAL_BACKEND == HPB_INTERNAL_BACKEND_UPB } // namespace hpb::internal #endif // GOOGLE_PROTOBUF_HPB_INTERNAL_INTERNAL_H__