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.
64 lines
2.1 KiB
64 lines
2.1 KiB
1 year ago
|
// 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/types.h"
|
||
|
#include "upb/mini_table/extension.h"
|
||
|
|
||
|
// Must be last.
|
||
|
#include "upb/port/def.inc"
|
||
|
|
||
|
const upb_Message_Extension* _upb_Message_Getext(
|
||
|
const upb_Message* msg, const upb_MiniTableExtension* e) {
|
||
|
size_t n;
|
||
|
const upb_Message_Extension* ext = _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_Message_Extension* _upb_Message_Getexts(const upb_Message* msg,
|
||
|
size_t* count) {
|
||
|
const upb_Message_Internal* in = upb_Message_Getinternal(msg);
|
||
|
if (in->internal) {
|
||
|
*count = (in->internal->size - in->internal->ext_begin) /
|
||
|
sizeof(upb_Message_Extension);
|
||
|
return UPB_PTR_AT(in->internal, in->internal->ext_begin, void);
|
||
|
} else {
|
||
|
*count = 0;
|
||
|
return NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
upb_Message_Extension* _upb_Message_GetOrCreateExtension(
|
||
|
upb_Message* msg, const upb_MiniTableExtension* e, upb_Arena* arena) {
|
||
|
upb_Message_Extension* ext =
|
||
|
(upb_Message_Extension*)_upb_Message_Getext(msg, e);
|
||
|
if (ext) return ext;
|
||
|
if (!UPB_PRIVATE(_upb_Message_Realloc)(msg, sizeof(upb_Message_Extension), arena)) return NULL;
|
||
|
upb_Message_Internal* in = upb_Message_Getinternal(msg);
|
||
|
in->internal->ext_begin -= sizeof(upb_Message_Extension);
|
||
|
ext = UPB_PTR_AT(in->internal, in->internal->ext_begin, void);
|
||
|
memset(ext, 0, sizeof(upb_Message_Extension));
|
||
|
ext->ext = e;
|
||
|
return ext;
|
||
|
}
|