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.
164 lines
6.9 KiB
164 lines
6.9 KiB
/* |
|
* Copyright (c) 2009-2021, Google LLC |
|
* All rights reserved. |
|
* |
|
* Redistribution and use in source and binary forms, with or without |
|
* modification, are permitted provided that the following conditions are met: |
|
* * Redistributions of source code must retain the above copyright |
|
* notice, this list of conditions and the following disclaimer. |
|
* * Redistributions in binary form must reproduce the above copyright |
|
* notice, this list of conditions and the following disclaimer in the |
|
* documentation and/or other materials provided with the distribution. |
|
* * Neither the name of Google LLC nor the |
|
* names of its contributors may be used to endorse or promote products |
|
* derived from this software without specific prior written permission. |
|
* |
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
* ARE DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY DIRECT, |
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
*/ |
|
|
|
// IWYU pragma: private, include "third_party/upb/upb/reflection/def.h" |
|
|
|
#ifndef UPB_REFLECTION_MESSAGE_DEF_H_ |
|
#define UPB_REFLECTION_MESSAGE_DEF_H_ |
|
|
|
#include "upb/reflection/common.h" |
|
#include "upb/string_view.h" |
|
|
|
// Must be last. |
|
#include "upb/port_def.inc" |
|
|
|
// Well-known field tag numbers for map-entry messages. |
|
#define kUpb_MapEntry_KeyFieldNumber 1 |
|
#define kUpb_MapEntry_ValueFieldNumber 2 |
|
|
|
// Well-known field tag numbers for Any messages. |
|
#define kUpb_Any_TypeFieldNumber 1 |
|
#define kUpb_Any_ValueFieldNumber 2 |
|
|
|
// Well-known field tag numbers for duration messages. |
|
#define kUpb_Duration_SecondsFieldNumber 1 |
|
#define kUpb_Duration_NanosFieldNumber 2 |
|
|
|
// Well-known field tag numbers for timestamp messages. |
|
#define kUpb_Timestamp_SecondsFieldNumber 1 |
|
#define kUpb_Timestamp_NanosFieldNumber 2 |
|
|
|
// All the different kind of well known type messages. For simplicity of check, |
|
// number wrappers and string wrappers are grouped together. Make sure the |
|
// order and number of these groups are not changed. |
|
typedef enum { |
|
kUpb_WellKnown_Unspecified, |
|
kUpb_WellKnown_Any, |
|
kUpb_WellKnown_FieldMask, |
|
kUpb_WellKnown_Duration, |
|
kUpb_WellKnown_Timestamp, |
|
|
|
// number wrappers |
|
kUpb_WellKnown_DoubleValue, |
|
kUpb_WellKnown_FloatValue, |
|
kUpb_WellKnown_Int64Value, |
|
kUpb_WellKnown_UInt64Value, |
|
kUpb_WellKnown_Int32Value, |
|
kUpb_WellKnown_UInt32Value, |
|
|
|
// string wrappers |
|
kUpb_WellKnown_StringValue, |
|
kUpb_WellKnown_BytesValue, |
|
kUpb_WellKnown_BoolValue, |
|
kUpb_WellKnown_Value, |
|
kUpb_WellKnown_ListValue, |
|
kUpb_WellKnown_Struct, |
|
} upb_WellKnown; |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
const upb_MessageDef* upb_MessageDef_ContainingType(const upb_MessageDef* m); |
|
|
|
const upb_ExtensionRange* upb_MessageDef_ExtensionRange(const upb_MessageDef* m, |
|
int i); |
|
int upb_MessageDef_ExtensionRangeCount(const upb_MessageDef* m); |
|
|
|
const upb_FieldDef* upb_MessageDef_Field(const upb_MessageDef* m, int i); |
|
int upb_MessageDef_FieldCount(const upb_MessageDef* m); |
|
|
|
const upb_FileDef* upb_MessageDef_File(const upb_MessageDef* m); |
|
|
|
// Returns a field by either JSON name or regular proto name. |
|
const upb_FieldDef* upb_MessageDef_FindByJsonNameWithSize( |
|
const upb_MessageDef* m, const char* name, size_t size); |
|
UPB_INLINE const upb_FieldDef* upb_MessageDef_FindByJsonName( |
|
const upb_MessageDef* m, const char* name) { |
|
return upb_MessageDef_FindByJsonNameWithSize(m, name, strlen(name)); |
|
} |
|
|
|
// Lookup of either field or oneof by name. Returns whether either was found. |
|
// If the return is true, then the found def will be set, and the non-found |
|
// one set to NULL. |
|
bool upb_MessageDef_FindByNameWithSize(const upb_MessageDef* m, |
|
const char* name, size_t size, |
|
const upb_FieldDef** f, |
|
const upb_OneofDef** o); |
|
UPB_INLINE bool upb_MessageDef_FindByName(const upb_MessageDef* m, |
|
const char* name, |
|
const upb_FieldDef** f, |
|
const upb_OneofDef** o) { |
|
return upb_MessageDef_FindByNameWithSize(m, name, strlen(name), f, o); |
|
} |
|
|
|
const upb_FieldDef* upb_MessageDef_FindFieldByName(const upb_MessageDef* m, |
|
const char* name); |
|
const upb_FieldDef* upb_MessageDef_FindFieldByNameWithSize( |
|
const upb_MessageDef* m, const char* name, size_t size); |
|
const upb_FieldDef* upb_MessageDef_FindFieldByNumber(const upb_MessageDef* m, |
|
uint32_t i); |
|
const upb_OneofDef* upb_MessageDef_FindOneofByName(const upb_MessageDef* m, |
|
const char* name); |
|
const upb_OneofDef* upb_MessageDef_FindOneofByNameWithSize( |
|
const upb_MessageDef* m, const char* name, size_t size); |
|
const char* upb_MessageDef_FullName(const upb_MessageDef* m); |
|
bool upb_MessageDef_HasOptions(const upb_MessageDef* m); |
|
bool upb_MessageDef_IsMapEntry(const upb_MessageDef* m); |
|
bool upb_MessageDef_IsMessageSet(const upb_MessageDef* m); |
|
|
|
// Creates a mini descriptor string for a message, returns true on success. |
|
bool upb_MessageDef_MiniDescriptorEncode(const upb_MessageDef* m, upb_Arena* a, |
|
upb_StringView* out); |
|
|
|
const upb_MiniTable* upb_MessageDef_MiniTable(const upb_MessageDef* m); |
|
const char* upb_MessageDef_Name(const upb_MessageDef* m); |
|
|
|
const upb_EnumDef* upb_MessageDef_NestedEnum(const upb_MessageDef* m, int i); |
|
const upb_FieldDef* upb_MessageDef_NestedExtension(const upb_MessageDef* m, |
|
int i); |
|
const upb_MessageDef* upb_MessageDef_NestedMessage(const upb_MessageDef* m, |
|
int i); |
|
|
|
int upb_MessageDef_NestedEnumCount(const upb_MessageDef* m); |
|
int upb_MessageDef_NestedExtensionCount(const upb_MessageDef* m); |
|
int upb_MessageDef_NestedMessageCount(const upb_MessageDef* m); |
|
|
|
const upb_OneofDef* upb_MessageDef_Oneof(const upb_MessageDef* m, int i); |
|
int upb_MessageDef_OneofCount(const upb_MessageDef* m); |
|
|
|
const google_protobuf_MessageOptions* upb_MessageDef_Options(const upb_MessageDef* m); |
|
upb_Syntax upb_MessageDef_Syntax(const upb_MessageDef* m); |
|
upb_WellKnown upb_MessageDef_WellKnownType(const upb_MessageDef* m); |
|
|
|
#ifdef __cplusplus |
|
} /* extern "C" */ |
|
#endif |
|
|
|
#include "upb/port_undef.inc" |
|
|
|
#endif /* UPB_REFLECTION_MESSAGE_DEF_H_ */
|
|
|