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.
92 lines
3.3 KiB
92 lines
3.3 KiB
2 years ago
|
/*
|
||
|
* Copyright (c) 2009-2022, 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.
|
||
|
*/
|
||
|
|
||
1 year ago
|
#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
|
||
|
#define UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
|
||
2 years ago
|
|
||
2 years ago
|
#include "upb/base/descriptor_constants.h"
|
||
2 years ago
|
|
||
|
// Must be last.
|
||
2 years ago
|
#include "upb/port/def.inc"
|
||
2 years ago
|
|
||
|
typedef enum {
|
||
|
kUpb_EncodedType_Double = 0,
|
||
|
kUpb_EncodedType_Float = 1,
|
||
|
kUpb_EncodedType_Fixed32 = 2,
|
||
|
kUpb_EncodedType_Fixed64 = 3,
|
||
|
kUpb_EncodedType_SFixed32 = 4,
|
||
|
kUpb_EncodedType_SFixed64 = 5,
|
||
|
kUpb_EncodedType_Int32 = 6,
|
||
|
kUpb_EncodedType_UInt32 = 7,
|
||
|
kUpb_EncodedType_SInt32 = 8,
|
||
|
kUpb_EncodedType_Int64 = 9,
|
||
|
kUpb_EncodedType_UInt64 = 10,
|
||
|
kUpb_EncodedType_SInt64 = 11,
|
||
|
kUpb_EncodedType_OpenEnum = 12,
|
||
|
kUpb_EncodedType_Bool = 13,
|
||
|
kUpb_EncodedType_Bytes = 14,
|
||
|
kUpb_EncodedType_String = 15,
|
||
|
kUpb_EncodedType_Group = 16,
|
||
|
kUpb_EncodedType_Message = 17,
|
||
|
kUpb_EncodedType_ClosedEnum = 18,
|
||
|
|
||
|
kUpb_EncodedType_RepeatedBase = 20,
|
||
|
} upb_EncodedType;
|
||
|
|
||
|
typedef enum {
|
||
|
kUpb_EncodedFieldModifier_FlipPacked = 1 << 0,
|
||
2 years ago
|
kUpb_EncodedFieldModifier_IsRequired = 1 << 1,
|
||
2 years ago
|
kUpb_EncodedFieldModifier_IsProto3Singular = 1 << 2,
|
||
|
} upb_EncodedFieldModifier;
|
||
|
|
||
|
enum {
|
||
|
kUpb_EncodedValue_MinField = ' ',
|
||
|
kUpb_EncodedValue_MaxField = 'I',
|
||
|
kUpb_EncodedValue_MinModifier = 'L',
|
||
|
kUpb_EncodedValue_MaxModifier = '[',
|
||
|
kUpb_EncodedValue_End = '^',
|
||
|
kUpb_EncodedValue_MinSkip = '_',
|
||
|
kUpb_EncodedValue_MaxSkip = '~',
|
||
|
kUpb_EncodedValue_OneofSeparator = '~',
|
||
|
kUpb_EncodedValue_FieldSeparator = '|',
|
||
|
kUpb_EncodedValue_MinOneofField = ' ',
|
||
|
kUpb_EncodedValue_MaxOneofField = 'b',
|
||
|
kUpb_EncodedValue_MaxEnumMask = 'A',
|
||
|
};
|
||
|
|
||
|
enum {
|
||
|
kUpb_EncodedVersion_EnumV1 = '!',
|
||
|
kUpb_EncodedVersion_ExtensionV1 = '#',
|
||
|
kUpb_EncodedVersion_MapV1 = '%',
|
||
|
kUpb_EncodedVersion_MessageV1 = '$',
|
||
|
kUpb_EncodedVersion_MessageSetV1 = '&',
|
||
|
};
|
||
|
|
||
2 years ago
|
#include "upb/port/undef.inc"
|
||
2 years ago
|
|
||
1 year ago
|
#endif // UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
|