GPBRuntimeTypes.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #import <Foundation/Foundation.h>
  31. #import "GPBBootstrap.h"
  32. @class GPBEnumDescriptor;
  33. @class GPBMessage;
  34. @class GPBInt32Array;
  35. // Function used to verify that a given value can be represented by an
  36. // enum type.
  37. typedef BOOL (*GPBEnumValidationFunc)(int32_t);
  38. // Function used to fetch an EnumDescriptor.
  39. typedef GPBEnumDescriptor *(*GPBEnumDescriptorFunc)(void);
  40. // Magic values used for when an the at runtime to indicate an enum value
  41. // that wasn't know at compile time.
  42. enum {
  43. kGPBUnrecognizedEnumeratorValue = (int32_t)0xFBADBEEF,
  44. };
  45. // A union for storing all possible Protobuf values.
  46. // Note that owner is responsible for memory management of object types.
  47. typedef union {
  48. BOOL valueBool;
  49. int32_t valueInt32;
  50. int64_t valueInt64;
  51. uint32_t valueUInt32;
  52. uint64_t valueUInt64;
  53. float valueFloat;
  54. double valueDouble;
  55. GPB_UNSAFE_UNRETAINED NSData *valueData;
  56. GPB_UNSAFE_UNRETAINED NSString *valueString;
  57. GPB_UNSAFE_UNRETAINED GPBMessage *valueMessage;
  58. int32_t valueEnum;
  59. } GPBGenericValue;
  60. // Do not change the order of this enum (or add things to it) without thinking
  61. // about it very carefully. There are several things that depend on the order.
  62. typedef NS_ENUM(uint8_t, GPBDataType) {
  63. GPBDataTypeBool = 0,
  64. GPBDataTypeFixed32,
  65. GPBDataTypeSFixed32,
  66. GPBDataTypeFloat,
  67. GPBDataTypeFixed64,
  68. GPBDataTypeSFixed64,
  69. GPBDataTypeDouble,
  70. GPBDataTypeInt32,
  71. GPBDataTypeInt64,
  72. GPBDataTypeSInt32,
  73. GPBDataTypeSInt64,
  74. GPBDataTypeUInt32,
  75. GPBDataTypeUInt64,
  76. GPBDataTypeBytes,
  77. GPBDataTypeString,
  78. GPBDataTypeMessage,
  79. GPBDataTypeGroup,
  80. GPBDataTypeEnum,
  81. };
  82. enum {
  83. // A count of the number of types in GPBDataType. Separated out from the
  84. // GPBDataType enum to avoid warnings regarding not handling
  85. // GPBDataType_Count in switch statements.
  86. GPBDataType_Count = GPBDataTypeEnum + 1
  87. };
  88. // An extension range.
  89. typedef struct GPBExtensionRange {
  90. uint32_t start; // inclusive
  91. uint32_t end; // exclusive
  92. } GPBExtensionRange;