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.
62 lines
2.0 KiB
62 lines
2.0 KiB
// 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 <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) { |
|
size_t n; |
|
const upb_Extension* ext = UPB_PRIVATE(_upb_Message_Getexts)(msg, &n); |
|
|
|
// For now we use linear search exclusively to find extensions. |
|
// If this becomes an issue due to messages with lots of extensions, |
|
// we can introduce a table of some sort. |
|
for (size_t i = 0; i < n; i++) { |
|
if (ext[i].ext == e) { |
|
return &ext[i]; |
|
} |
|
} |
|
|
|
return NULL; |
|
} |
|
|
|
const upb_Extension* UPB_PRIVATE(_upb_Message_Getexts)( |
|
const struct upb_Message* msg, size_t* count) { |
|
upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
|
if (in) { |
|
*count = (in->size - in->ext_begin) / sizeof(upb_Extension); |
|
return UPB_PTR_AT(in, in->ext_begin, void); |
|
} else { |
|
*count = 0; |
|
return NULL; |
|
} |
|
} |
|
|
|
upb_Extension* UPB_PRIVATE(_upb_Message_GetOrCreateExtension)( |
|
struct upb_Message* msg, const upb_MiniTableExtension* e, upb_Arena* a) { |
|
upb_Extension* ext = (upb_Extension*)UPB_PRIVATE(_upb_Message_Getext)(msg, e); |
|
if (ext) return ext; |
|
if (!UPB_PRIVATE(_upb_Message_Realloc)(msg, sizeof(upb_Extension), a)) |
|
return NULL; |
|
upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
|
in->ext_begin -= sizeof(upb_Extension); |
|
ext = UPB_PTR_AT(in, in->ext_begin, void); |
|
memset(ext, 0, sizeof(upb_Extension)); |
|
ext->ext = e; |
|
return ext; |
|
}
|
|
|