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.
39 lines
1.1 KiB
39 lines
1.1 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/compat.h" |
|
|
|
#include <stddef.h> |
|
#include <stdint.h> |
|
|
|
#include "upb/message/internal/extension.h" |
|
#include "upb/message/message.h" |
|
#include "upb/mini_table/extension.h" |
|
|
|
// Must be last. |
|
#include "upb/port/def.inc" |
|
|
|
const upb_MiniTableExtension* upb_Message_ExtensionByIndex( |
|
const upb_Message* msg, size_t index) { |
|
size_t count; |
|
const upb_Extension* ext = UPB_PRIVATE(_upb_Message_Getexts)(msg, &count); |
|
|
|
UPB_ASSERT(index < count); |
|
return ext[index].ext; |
|
} |
|
|
|
const upb_MiniTableExtension* upb_Message_FindExtensionByNumber( |
|
const upb_Message* msg, uint32_t field_number) { |
|
size_t count; |
|
const upb_Extension* ext = UPB_PRIVATE(_upb_Message_Getexts)(msg, &count); |
|
|
|
for (; count--; ext++) { |
|
const upb_MiniTableExtension* e = ext->ext; |
|
if (upb_MiniTableExtension_Number(e) == field_number) return e; |
|
} |
|
return NULL; |
|
}
|
|
|