| // Protocol Buffers - Google's data interchange format |
| // Copyright 2023 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 |
| |
| #include "upb/message/internal/extension.h" |
| |
| #include <stdint.h> |
| #include <string.h> |
| |
| #include "upb/mem/arena.h" |
| #include "upb/message/internal/extension.h" |
| #include "upb/message/internal/message.h" |
| #include "upb/message/internal/types.h" |
| #include "upb/mini_table/extension.h" |
| |
| // Must be last. |
| #include "upb/port/def.inc" |
| |
| const upb_Extension* UPB_PRIVATE(_upb_Message_Getext)( |
| const struct upb_Message* msg, const upb_MiniTableExtension* e) { |
| upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
| if (!in) return NULL; |
| |
| for (size_t i = 0; i < in->size; i++) { |
| upb_TaggedAuxPtr tagged_ptr = in->aux_data[i]; |
| if (upb_TaggedAuxPtr_IsExtension(tagged_ptr)) { |
| const upb_Extension* ext = upb_TaggedAuxPtr_Extension(tagged_ptr); |
| if (ext->ext == e) { |
| return ext; |
| } |
| } |
| } |
| |
| return NULL; |
| } |
| |
| upb_Extension* UPB_PRIVATE(_upb_Message_GetOrCreateExtension)( |
| struct upb_Message* msg, const upb_MiniTableExtension* e, upb_Arena* a) { |
| UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
| upb_Extension* ext = (upb_Extension*)UPB_PRIVATE(_upb_Message_Getext)(msg, e); |
| if (ext) return ext; |
| |
| if (!UPB_PRIVATE(_upb_Message_ReserveSlot)(msg, a)) return NULL; |
| upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
| ext = upb_Arena_Malloc(a, sizeof(upb_Extension)); |
| if (!ext) return NULL; |
| memset(ext, 0, sizeof(upb_Extension)); |
| ext->ext = e; |
| in->aux_data[in->size++] = upb_TaggedAuxPtr_MakeExtension(ext); |
| return ext; |
| } |