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.
107 lines
3.4 KiB
107 lines
3.4 KiB
1 year ago
|
// Protocol Buffers - Google's data interchange format
|
||
|
// Copyright 2023 Google LLC. All rights reserved.
|
||
|
//
|
||
1 year ago
|
// 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
|
||
2 years ago
|
|
||
|
/*
|
||
|
** Our memory representation for parsing tables and messages themselves.
|
||
|
** Functions in this file are used by generated code and possibly reflection.
|
||
|
**
|
||
|
** The definitions in this file are internal to upb.
|
||
|
**/
|
||
|
|
||
|
#ifndef UPB_MESSAGE_INTERNAL_H_
|
||
|
#define UPB_MESSAGE_INTERNAL_H_
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
1 year ago
|
#include "upb/message/internal/extension.h"
|
||
|
#include "upb/message/internal/types.h"
|
||
|
#include "upb/message/message.h"
|
||
|
#include "upb/mini_table/extension.h"
|
||
|
#include "upb/mini_table/extension_registry.h"
|
||
|
#include "upb/mini_table/message.h"
|
||
2 years ago
|
|
||
|
// Must be last.
|
||
1 year ago
|
#include "upb/port/def.inc"
|
||
2 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern const float kUpb_FltInfinity;
|
||
|
extern const double kUpb_Infinity;
|
||
2 years ago
|
extern const double kUpb_NaN;
|
||
2 years ago
|
|
||
|
/* Internal members of a upb_Message that track unknown fields and/or
|
||
|
* extensions. We can change this without breaking binary compatibility. We put
|
||
|
* these before the user's data. The user's upb_Message* points after the
|
||
|
* upb_Message_Internal. */
|
||
|
|
||
1 year ago
|
struct upb_Message_InternalData {
|
||
2 years ago
|
/* Total size of this structure, including the data that follows.
|
||
|
* Must be aligned to 8, which is alignof(upb_Message_Extension) */
|
||
|
uint32_t size;
|
||
|
|
||
|
/* Offsets relative to the beginning of this structure.
|
||
|
*
|
||
|
* Unknown data grows forward from the beginning to unknown_end.
|
||
|
* Extension data grows backward from size to ext_begin.
|
||
|
* When the two meet, we're out of data and have to realloc.
|
||
|
*
|
||
|
* If we imagine that the final member of this struct is:
|
||
|
* char data[size - overhead]; // overhead =
|
||
|
* sizeof(upb_Message_InternalData)
|
||
|
*
|
||
|
* Then we have:
|
||
|
* unknown data: data[0 .. (unknown_end - overhead)]
|
||
|
* extensions data: data[(ext_begin - overhead) .. (size - overhead)] */
|
||
|
uint32_t unknown_end;
|
||
|
uint32_t ext_begin;
|
||
|
/* Data follows, as if there were an array:
|
||
|
* char data[size - sizeof(upb_Message_InternalData)]; */
|
||
1 year ago
|
};
|
||
2 years ago
|
|
||
|
/* Maps upb_CType -> memory size. */
|
||
|
extern char _upb_CTypeo_size[12];
|
||
|
|
||
|
UPB_INLINE size_t upb_msg_sizeof(const upb_MiniTable* t) {
|
||
|
return t->size + sizeof(upb_Message_Internal);
|
||
|
}
|
||
|
|
||
|
// Inline version upb_Message_New(), for internal use.
|
||
|
UPB_INLINE upb_Message* _upb_Message_New(const upb_MiniTable* mini_table,
|
||
|
upb_Arena* arena) {
|
||
|
size_t size = upb_msg_sizeof(mini_table);
|
||
|
void* mem = upb_Arena_Malloc(arena, size + sizeof(upb_Message_Internal));
|
||
|
if (UPB_UNLIKELY(!mem)) return NULL;
|
||
|
upb_Message* msg = UPB_PTR_AT(mem, sizeof(upb_Message_Internal), upb_Message);
|
||
|
memset(mem, 0, size);
|
||
|
return msg;
|
||
|
}
|
||
|
|
||
|
UPB_INLINE upb_Message_Internal* upb_Message_Getinternal(
|
||
|
const upb_Message* msg) {
|
||
|
ptrdiff_t size = sizeof(upb_Message_Internal);
|
||
|
return (upb_Message_Internal*)((char*)msg - size);
|
||
|
}
|
||
|
|
||
|
// Discards the unknown fields for this message only.
|
||
|
void _upb_Message_DiscardUnknown_shallow(upb_Message* msg);
|
||
|
|
||
|
// Adds unknown data (serialized protobuf data) to the given message.
|
||
|
// The data is copied into the message instance.
|
||
|
bool _upb_Message_AddUnknown(upb_Message* msg, const char* data, size_t len,
|
||
|
upb_Arena* arena);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
1 year ago
|
#include "upb/port/undef.inc"
|
||
2 years ago
|
|
||
|
#endif /* UPB_MESSAGE_INTERNAL_H_ */
|