Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! |
| 2 | // source: google/protobuf/type.proto |
| 3 | |
Thomas Van Lenten | 7da023b | 2016-05-09 13:53:20 -0400 | [diff] [blame] | 4 | // This CPP symbol can be defined to use imports that match up to the framework |
| 5 | // imports needed when using CocoaPods. |
| 6 | #if !defined(GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS) |
| 7 | #define GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS 0 |
| 8 | #endif |
| 9 | |
| 10 | #if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 11 | #import <Protobuf/GPBProtocolBuffers_RuntimeSupport.h> |
Thomas Van Lenten | 7da023b | 2016-05-09 13:53:20 -0400 | [diff] [blame] | 12 | #else |
| 13 | #import "GPBProtocolBuffers_RuntimeSupport.h" |
| 14 | #endif |
| 15 | |
Thomas Van Lenten | 3e1587f | 2018-01-23 13:38:28 -0500 | [diff] [blame] | 16 | #import <stdatomic.h> |
| 17 | |
Thomas Van Lenten | 7da023b | 2016-05-09 13:53:20 -0400 | [diff] [blame] | 18 | #if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 19 | #import <Protobuf/GPBType.pbobjc.h> |
| 20 | #import <Protobuf/GPBAny.pbobjc.h> |
| 21 | #import <Protobuf/GPBSourceContext.pbobjc.h> |
Thomas Van Lenten | 7da023b | 2016-05-09 13:53:20 -0400 | [diff] [blame] | 22 | #else |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 23 | #import "GPBType.pbobjc.h" |
| 24 | #import "GPBAny.pbobjc.h" |
| 25 | #import "GPBSourceContext.pbobjc.h" |
Thomas Van Lenten | 7da023b | 2016-05-09 13:53:20 -0400 | [diff] [blame] | 26 | #endif |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 27 | // @@protoc_insertion_point(imports) |
| 28 | |
Thomas Van Lenten | e664aa6 | 2016-04-19 13:13:04 -0400 | [diff] [blame] | 29 | #pragma clang diagnostic push |
| 30 | #pragma clang diagnostic ignored "-Wdeprecated-declarations" |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 31 | #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" |
| 32 | |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 33 | #pragma mark - Objective C Class declarations |
| 34 | // Forward declarations of Objective C classes that we can use as |
| 35 | // static values in struct initializers. |
| 36 | // We don't use [Foo class] because it is not a static value. |
| 37 | GPBObjCClassDeclaration(GPBAny); |
| 38 | GPBObjCClassDeclaration(GPBEnumValue); |
| 39 | GPBObjCClassDeclaration(GPBField); |
| 40 | GPBObjCClassDeclaration(GPBOption); |
| 41 | GPBObjCClassDeclaration(GPBSourceContext); |
Thomas Van Lenten | e664aa6 | 2016-04-19 13:13:04 -0400 | [diff] [blame] | 42 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 43 | #pragma mark - GPBTypeRoot |
| 44 | |
| 45 | @implementation GPBTypeRoot |
| 46 | |
Thomas Van Lenten | 13a4124 | 2016-09-01 11:45:50 -0400 | [diff] [blame] | 47 | // No extensions in the file and none of the imports (direct or indirect) |
| 48 | // defined extensions, so no need to generate +extensionRegistry. |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 49 | |
| 50 | @end |
| 51 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 52 | #pragma mark - GPBTypeRoot_FileDescriptor |
| 53 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 54 | static GPBFileDescriptor *GPBTypeRoot_FileDescriptor(void) { |
| 55 | // This is called by +initialize so there is no need to worry |
| 56 | // about thread safety of the singleton. |
| 57 | static GPBFileDescriptor *descriptor = NULL; |
| 58 | if (!descriptor) { |
Thomas Van Lenten | 1aa6500 | 2016-09-15 13:27:17 -0400 | [diff] [blame] | 59 | GPB_DEBUG_CHECK_RUNTIME_VERSIONS(); |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 60 | descriptor = [[GPBFileDescriptor alloc] initWithPackage:@"google.protobuf" |
Thomas Van Lenten | 337ec30 | 2016-08-16 11:26:49 -0400 | [diff] [blame] | 61 | objcPrefix:@"GPB" |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 62 | syntax:GPBFileSyntaxProto3]; |
| 63 | } |
| 64 | return descriptor; |
| 65 | } |
| 66 | |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 67 | #pragma mark - Enum GPBSyntax |
| 68 | |
| 69 | GPBEnumDescriptor *GPBSyntax_EnumDescriptor(void) { |
Thomas Van Lenten | d83837d | 2018-01-31 13:58:11 -0500 | [diff] [blame] | 70 | static _Atomic(GPBEnumDescriptor*) descriptor = nil; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 71 | if (!descriptor) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 72 | static const char *valueNames = |
| 73 | "SyntaxProto2\000SyntaxProto3\000"; |
| 74 | static const int32_t values[] = { |
| 75 | GPBSyntax_SyntaxProto2, |
| 76 | GPBSyntax_SyntaxProto3, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 77 | }; |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 78 | GPBEnumDescriptor *worker = |
| 79 | [GPBEnumDescriptor allocDescriptorForName:GPBNSStringifySymbol(GPBSyntax) |
| 80 | valueNames:valueNames |
| 81 | values:values |
| 82 | count:(uint32_t)(sizeof(values) / sizeof(int32_t)) |
| 83 | enumVerifier:GPBSyntax_IsValidValue]; |
Jonathan Dierksen | a721bf6 | 2018-01-22 13:26:39 -0800 | [diff] [blame] | 84 | GPBEnumDescriptor *expected = nil; |
| 85 | if (!atomic_compare_exchange_strong(&descriptor, &expected, worker)) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 86 | [worker release]; |
| 87 | } |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 88 | } |
| 89 | return descriptor; |
| 90 | } |
| 91 | |
| 92 | BOOL GPBSyntax_IsValidValue(int32_t value__) { |
| 93 | switch (value__) { |
| 94 | case GPBSyntax_SyntaxProto2: |
| 95 | case GPBSyntax_SyntaxProto3: |
| 96 | return YES; |
| 97 | default: |
| 98 | return NO; |
| 99 | } |
| 100 | } |
| 101 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 102 | #pragma mark - GPBType |
| 103 | |
| 104 | @implementation GPBType |
| 105 | |
| 106 | @dynamic name; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 107 | @dynamic fieldsArray, fieldsArray_Count; |
| 108 | @dynamic oneofsArray, oneofsArray_Count; |
| 109 | @dynamic optionsArray, optionsArray_Count; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 110 | @dynamic hasSourceContext, sourceContext; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 111 | @dynamic syntax; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 112 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 113 | typedef struct GPBType__storage_ { |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 114 | uint32_t _has_storage_[1]; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 115 | GPBSyntax syntax; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 116 | NSString *name; |
| 117 | NSMutableArray *fieldsArray; |
| 118 | NSMutableArray *oneofsArray; |
| 119 | NSMutableArray *optionsArray; |
| 120 | GPBSourceContext *sourceContext; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 121 | } GPBType__storage_; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 122 | |
| 123 | // This method is threadsafe because it is initially called |
| 124 | // in +initialize for each subclass. |
| 125 | + (GPBDescriptor *)descriptor { |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 126 | static GPBDescriptor *descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 127 | if (!descriptor) { |
| 128 | static GPBMessageFieldDescription fields[] = { |
| 129 | { |
| 130 | .name = "name", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 131 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 132 | .number = GPBType_FieldNumber_Name, |
| 133 | .hasIndex = 0, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 134 | .offset = (uint32_t)offsetof(GPBType__storage_, name), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 135 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 136 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 137 | }, |
| 138 | { |
| 139 | .name = "fieldsArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 140 | .dataTypeSpecific.clazz = GPBObjCClass(GPBField), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 141 | .number = GPBType_FieldNumber_FieldsArray, |
| 142 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 143 | .offset = (uint32_t)offsetof(GPBType__storage_, fieldsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 144 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 145 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 146 | }, |
| 147 | { |
| 148 | .name = "oneofsArray", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 149 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 150 | .number = GPBType_FieldNumber_OneofsArray, |
| 151 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 152 | .offset = (uint32_t)offsetof(GPBType__storage_, oneofsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 153 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 154 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 155 | }, |
| 156 | { |
| 157 | .name = "optionsArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 158 | .dataTypeSpecific.clazz = GPBObjCClass(GPBOption), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 159 | .number = GPBType_FieldNumber_OptionsArray, |
| 160 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 161 | .offset = (uint32_t)offsetof(GPBType__storage_, optionsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 162 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 163 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 164 | }, |
| 165 | { |
| 166 | .name = "sourceContext", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 167 | .dataTypeSpecific.clazz = GPBObjCClass(GPBSourceContext), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 168 | .number = GPBType_FieldNumber_SourceContext, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 169 | .hasIndex = 1, |
| 170 | .offset = (uint32_t)offsetof(GPBType__storage_, sourceContext), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 171 | .flags = GPBFieldOptional, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 172 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 173 | }, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 174 | { |
| 175 | .name = "syntax", |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 176 | .dataTypeSpecific.enumDescFunc = GPBSyntax_EnumDescriptor, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 177 | .number = GPBType_FieldNumber_Syntax, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 178 | .hasIndex = 2, |
| 179 | .offset = (uint32_t)offsetof(GPBType__storage_, syntax), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 180 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldHasEnumDescriptor | GPBFieldClearHasIvarOnZero), |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 181 | .dataType = GPBDataTypeEnum, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 182 | }, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 183 | }; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 184 | GPBDescriptor *localDescriptor = |
| 185 | [GPBDescriptor allocDescriptorForClass:[GPBType class] |
| 186 | rootClass:[GPBTypeRoot class] |
| 187 | file:GPBTypeRoot_FileDescriptor() |
| 188 | fields:fields |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 189 | fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription)) |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 190 | storageSize:sizeof(GPBType__storage_) |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 191 | flags:(GPBDescriptorInitializationFlags)(GPBDescriptorInitializationFlag_UsesClassRefs | GPBDescriptorInitializationFlag_Proto3OptionalKnown)]; |
Dave MacLachlan | b631176 | 2018-12-11 16:32:48 -0800 | [diff] [blame] | 192 | #if defined(DEBUG) && DEBUG |
| 193 | NSAssert(descriptor == nil, @"Startup recursed!"); |
| 194 | #endif // DEBUG |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 195 | descriptor = localDescriptor; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 196 | } |
| 197 | return descriptor; |
| 198 | } |
| 199 | |
| 200 | @end |
| 201 | |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 202 | int32_t GPBType_Syntax_RawValue(GPBType *message) { |
| 203 | GPBDescriptor *descriptor = [GPBType descriptor]; |
| 204 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBType_FieldNumber_Syntax]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 205 | return GPBGetMessageRawEnumField(message, field); |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | void SetGPBType_Syntax_RawValue(GPBType *message, int32_t value) { |
| 209 | GPBDescriptor *descriptor = [GPBType descriptor]; |
| 210 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBType_FieldNumber_Syntax]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 211 | GPBSetMessageRawEnumField(message, field, value); |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 214 | #pragma mark - GPBField |
| 215 | |
| 216 | @implementation GPBField |
| 217 | |
| 218 | @dynamic kind; |
| 219 | @dynamic cardinality; |
| 220 | @dynamic number; |
| 221 | @dynamic name; |
| 222 | @dynamic typeURL; |
| 223 | @dynamic oneofIndex; |
| 224 | @dynamic packed; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 225 | @dynamic optionsArray, optionsArray_Count; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 226 | @dynamic jsonName; |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 227 | @dynamic defaultValue; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 228 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 229 | typedef struct GPBField__storage_ { |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 230 | uint32_t _has_storage_[1]; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 231 | GPBField_Kind kind; |
| 232 | GPBField_Cardinality cardinality; |
| 233 | int32_t number; |
| 234 | int32_t oneofIndex; |
| 235 | NSString *name; |
| 236 | NSString *typeURL; |
| 237 | NSMutableArray *optionsArray; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 238 | NSString *jsonName; |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 239 | NSString *defaultValue; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 240 | } GPBField__storage_; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 241 | |
| 242 | // This method is threadsafe because it is initially called |
| 243 | // in +initialize for each subclass. |
| 244 | + (GPBDescriptor *)descriptor { |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 245 | static GPBDescriptor *descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 246 | if (!descriptor) { |
| 247 | static GPBMessageFieldDescription fields[] = { |
| 248 | { |
| 249 | .name = "kind", |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 250 | .dataTypeSpecific.enumDescFunc = GPBField_Kind_EnumDescriptor, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 251 | .number = GPBField_FieldNumber_Kind, |
| 252 | .hasIndex = 0, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 253 | .offset = (uint32_t)offsetof(GPBField__storage_, kind), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 254 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldHasEnumDescriptor | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 255 | .dataType = GPBDataTypeEnum, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 256 | }, |
| 257 | { |
| 258 | .name = "cardinality", |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 259 | .dataTypeSpecific.enumDescFunc = GPBField_Cardinality_EnumDescriptor, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 260 | .number = GPBField_FieldNumber_Cardinality, |
| 261 | .hasIndex = 1, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 262 | .offset = (uint32_t)offsetof(GPBField__storage_, cardinality), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 263 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldHasEnumDescriptor | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 264 | .dataType = GPBDataTypeEnum, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 265 | }, |
| 266 | { |
| 267 | .name = "number", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 268 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 269 | .number = GPBField_FieldNumber_Number, |
| 270 | .hasIndex = 2, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 271 | .offset = (uint32_t)offsetof(GPBField__storage_, number), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 272 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 273 | .dataType = GPBDataTypeInt32, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 274 | }, |
| 275 | { |
| 276 | .name = "name", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 277 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 278 | .number = GPBField_FieldNumber_Name, |
| 279 | .hasIndex = 3, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 280 | .offset = (uint32_t)offsetof(GPBField__storage_, name), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 281 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 282 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 283 | }, |
| 284 | { |
| 285 | .name = "typeURL", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 286 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 287 | .number = GPBField_FieldNumber_TypeURL, |
| 288 | .hasIndex = 4, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 289 | .offset = (uint32_t)offsetof(GPBField__storage_, typeURL), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 290 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldTextFormatNameCustom | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 291 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 292 | }, |
| 293 | { |
| 294 | .name = "oneofIndex", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 295 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 296 | .number = GPBField_FieldNumber_OneofIndex, |
| 297 | .hasIndex = 5, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 298 | .offset = (uint32_t)offsetof(GPBField__storage_, oneofIndex), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 299 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 300 | .dataType = GPBDataTypeInt32, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 301 | }, |
| 302 | { |
| 303 | .name = "packed", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 304 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 305 | .number = GPBField_FieldNumber_Packed, |
| 306 | .hasIndex = 6, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 307 | .offset = 7, // Stored in _has_storage_ to save space. |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 308 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 309 | .dataType = GPBDataTypeBool, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 310 | }, |
| 311 | { |
| 312 | .name = "optionsArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 313 | .dataTypeSpecific.clazz = GPBObjCClass(GPBOption), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 314 | .number = GPBField_FieldNumber_OptionsArray, |
| 315 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 316 | .offset = (uint32_t)offsetof(GPBField__storage_, optionsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 317 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 318 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 319 | }, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 320 | { |
| 321 | .name = "jsonName", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 322 | .dataTypeSpecific.clazz = Nil, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 323 | .number = GPBField_FieldNumber_JsonName, |
| 324 | .hasIndex = 8, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 325 | .offset = (uint32_t)offsetof(GPBField__storage_, jsonName), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 326 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 327 | .dataType = GPBDataTypeString, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 328 | }, |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 329 | { |
| 330 | .name = "defaultValue", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 331 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 332 | .number = GPBField_FieldNumber_DefaultValue, |
| 333 | .hasIndex = 9, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 334 | .offset = (uint32_t)offsetof(GPBField__storage_, defaultValue), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 335 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 336 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | fcce784 | 2016-01-05 15:23:50 -0500 | [diff] [blame] | 337 | }, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 338 | }; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 339 | GPBDescriptor *localDescriptor = |
| 340 | [GPBDescriptor allocDescriptorForClass:[GPBField class] |
| 341 | rootClass:[GPBTypeRoot class] |
| 342 | file:GPBTypeRoot_FileDescriptor() |
| 343 | fields:fields |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 344 | fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription)) |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 345 | storageSize:sizeof(GPBField__storage_) |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 346 | flags:(GPBDescriptorInitializationFlags)(GPBDescriptorInitializationFlag_UsesClassRefs | GPBDescriptorInitializationFlag_Proto3OptionalKnown)]; |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 347 | #if !GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS |
| 348 | static const char *extraTextFormatInfo = |
| 349 | "\001\006\004\241!!\000"; |
| 350 | [localDescriptor setupExtraTextInfo:extraTextFormatInfo]; |
| 351 | #endif // !GPBOBJC_SKIP_MESSAGE_TEXTFORMAT_EXTRAS |
Dave MacLachlan | b631176 | 2018-12-11 16:32:48 -0800 | [diff] [blame] | 352 | #if defined(DEBUG) && DEBUG |
| 353 | NSAssert(descriptor == nil, @"Startup recursed!"); |
| 354 | #endif // DEBUG |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 355 | descriptor = localDescriptor; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 356 | } |
| 357 | return descriptor; |
| 358 | } |
| 359 | |
| 360 | @end |
| 361 | |
| 362 | int32_t GPBField_Kind_RawValue(GPBField *message) { |
| 363 | GPBDescriptor *descriptor = [GPBField descriptor]; |
| 364 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBField_FieldNumber_Kind]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 365 | return GPBGetMessageRawEnumField(message, field); |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | void SetGPBField_Kind_RawValue(GPBField *message, int32_t value) { |
| 369 | GPBDescriptor *descriptor = [GPBField descriptor]; |
| 370 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBField_FieldNumber_Kind]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 371 | GPBSetMessageRawEnumField(message, field, value); |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | int32_t GPBField_Cardinality_RawValue(GPBField *message) { |
| 375 | GPBDescriptor *descriptor = [GPBField descriptor]; |
| 376 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBField_FieldNumber_Cardinality]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 377 | return GPBGetMessageRawEnumField(message, field); |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | void SetGPBField_Cardinality_RawValue(GPBField *message, int32_t value) { |
| 381 | GPBDescriptor *descriptor = [GPBField descriptor]; |
| 382 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBField_FieldNumber_Cardinality]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 383 | GPBSetMessageRawEnumField(message, field, value); |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | #pragma mark - Enum GPBField_Kind |
| 387 | |
| 388 | GPBEnumDescriptor *GPBField_Kind_EnumDescriptor(void) { |
Thomas Van Lenten | d83837d | 2018-01-31 13:58:11 -0500 | [diff] [blame] | 389 | static _Atomic(GPBEnumDescriptor*) descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 390 | if (!descriptor) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 391 | static const char *valueNames = |
| 392 | "TypeUnknown\000TypeDouble\000TypeFloat\000TypeInt" |
| 393 | "64\000TypeUint64\000TypeInt32\000TypeFixed64\000Type" |
| 394 | "Fixed32\000TypeBool\000TypeString\000TypeGroup\000Ty" |
| 395 | "peMessage\000TypeBytes\000TypeUint32\000TypeEnum\000" |
| 396 | "TypeSfixed32\000TypeSfixed64\000TypeSint32\000Typ" |
| 397 | "eSint64\000"; |
| 398 | static const int32_t values[] = { |
| 399 | GPBField_Kind_TypeUnknown, |
| 400 | GPBField_Kind_TypeDouble, |
| 401 | GPBField_Kind_TypeFloat, |
| 402 | GPBField_Kind_TypeInt64, |
| 403 | GPBField_Kind_TypeUint64, |
| 404 | GPBField_Kind_TypeInt32, |
| 405 | GPBField_Kind_TypeFixed64, |
| 406 | GPBField_Kind_TypeFixed32, |
| 407 | GPBField_Kind_TypeBool, |
| 408 | GPBField_Kind_TypeString, |
| 409 | GPBField_Kind_TypeGroup, |
| 410 | GPBField_Kind_TypeMessage, |
| 411 | GPBField_Kind_TypeBytes, |
| 412 | GPBField_Kind_TypeUint32, |
| 413 | GPBField_Kind_TypeEnum, |
| 414 | GPBField_Kind_TypeSfixed32, |
| 415 | GPBField_Kind_TypeSfixed64, |
| 416 | GPBField_Kind_TypeSint32, |
| 417 | GPBField_Kind_TypeSint64, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 418 | }; |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 419 | GPBEnumDescriptor *worker = |
| 420 | [GPBEnumDescriptor allocDescriptorForName:GPBNSStringifySymbol(GPBField_Kind) |
| 421 | valueNames:valueNames |
| 422 | values:values |
| 423 | count:(uint32_t)(sizeof(values) / sizeof(int32_t)) |
| 424 | enumVerifier:GPBField_Kind_IsValidValue]; |
Jonathan Dierksen | a721bf6 | 2018-01-22 13:26:39 -0800 | [diff] [blame] | 425 | GPBEnumDescriptor *expected = nil; |
| 426 | if (!atomic_compare_exchange_strong(&descriptor, &expected, worker)) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 427 | [worker release]; |
| 428 | } |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 429 | } |
| 430 | return descriptor; |
| 431 | } |
| 432 | |
| 433 | BOOL GPBField_Kind_IsValidValue(int32_t value__) { |
| 434 | switch (value__) { |
| 435 | case GPBField_Kind_TypeUnknown: |
| 436 | case GPBField_Kind_TypeDouble: |
| 437 | case GPBField_Kind_TypeFloat: |
| 438 | case GPBField_Kind_TypeInt64: |
| 439 | case GPBField_Kind_TypeUint64: |
| 440 | case GPBField_Kind_TypeInt32: |
| 441 | case GPBField_Kind_TypeFixed64: |
| 442 | case GPBField_Kind_TypeFixed32: |
| 443 | case GPBField_Kind_TypeBool: |
| 444 | case GPBField_Kind_TypeString: |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 445 | case GPBField_Kind_TypeGroup: |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 446 | case GPBField_Kind_TypeMessage: |
| 447 | case GPBField_Kind_TypeBytes: |
| 448 | case GPBField_Kind_TypeUint32: |
| 449 | case GPBField_Kind_TypeEnum: |
| 450 | case GPBField_Kind_TypeSfixed32: |
| 451 | case GPBField_Kind_TypeSfixed64: |
| 452 | case GPBField_Kind_TypeSint32: |
| 453 | case GPBField_Kind_TypeSint64: |
| 454 | return YES; |
| 455 | default: |
| 456 | return NO; |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | #pragma mark - Enum GPBField_Cardinality |
| 461 | |
| 462 | GPBEnumDescriptor *GPBField_Cardinality_EnumDescriptor(void) { |
Thomas Van Lenten | d83837d | 2018-01-31 13:58:11 -0500 | [diff] [blame] | 463 | static _Atomic(GPBEnumDescriptor*) descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 464 | if (!descriptor) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 465 | static const char *valueNames = |
| 466 | "CardinalityUnknown\000CardinalityOptional\000C" |
| 467 | "ardinalityRequired\000CardinalityRepeated\000"; |
| 468 | static const int32_t values[] = { |
| 469 | GPBField_Cardinality_CardinalityUnknown, |
| 470 | GPBField_Cardinality_CardinalityOptional, |
| 471 | GPBField_Cardinality_CardinalityRequired, |
| 472 | GPBField_Cardinality_CardinalityRepeated, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 473 | }; |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 474 | GPBEnumDescriptor *worker = |
| 475 | [GPBEnumDescriptor allocDescriptorForName:GPBNSStringifySymbol(GPBField_Cardinality) |
| 476 | valueNames:valueNames |
| 477 | values:values |
| 478 | count:(uint32_t)(sizeof(values) / sizeof(int32_t)) |
| 479 | enumVerifier:GPBField_Cardinality_IsValidValue]; |
Jonathan Dierksen | a721bf6 | 2018-01-22 13:26:39 -0800 | [diff] [blame] | 480 | GPBEnumDescriptor *expected = nil; |
| 481 | if (!atomic_compare_exchange_strong(&descriptor, &expected, worker)) { |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 482 | [worker release]; |
| 483 | } |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 484 | } |
| 485 | return descriptor; |
| 486 | } |
| 487 | |
| 488 | BOOL GPBField_Cardinality_IsValidValue(int32_t value__) { |
| 489 | switch (value__) { |
| 490 | case GPBField_Cardinality_CardinalityUnknown: |
| 491 | case GPBField_Cardinality_CardinalityOptional: |
| 492 | case GPBField_Cardinality_CardinalityRequired: |
| 493 | case GPBField_Cardinality_CardinalityRepeated: |
| 494 | return YES; |
| 495 | default: |
| 496 | return NO; |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | #pragma mark - GPBEnum |
| 501 | |
| 502 | @implementation GPBEnum |
| 503 | |
| 504 | @dynamic name; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 505 | @dynamic enumvalueArray, enumvalueArray_Count; |
| 506 | @dynamic optionsArray, optionsArray_Count; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 507 | @dynamic hasSourceContext, sourceContext; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 508 | @dynamic syntax; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 509 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 510 | typedef struct GPBEnum__storage_ { |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 511 | uint32_t _has_storage_[1]; |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 512 | GPBSyntax syntax; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 513 | NSString *name; |
| 514 | NSMutableArray *enumvalueArray; |
| 515 | NSMutableArray *optionsArray; |
| 516 | GPBSourceContext *sourceContext; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 517 | } GPBEnum__storage_; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 518 | |
| 519 | // This method is threadsafe because it is initially called |
| 520 | // in +initialize for each subclass. |
| 521 | + (GPBDescriptor *)descriptor { |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 522 | static GPBDescriptor *descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 523 | if (!descriptor) { |
| 524 | static GPBMessageFieldDescription fields[] = { |
| 525 | { |
| 526 | .name = "name", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 527 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 528 | .number = GPBEnum_FieldNumber_Name, |
| 529 | .hasIndex = 0, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 530 | .offset = (uint32_t)offsetof(GPBEnum__storage_, name), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 531 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 532 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 533 | }, |
| 534 | { |
| 535 | .name = "enumvalueArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 536 | .dataTypeSpecific.clazz = GPBObjCClass(GPBEnumValue), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 537 | .number = GPBEnum_FieldNumber_EnumvalueArray, |
| 538 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 539 | .offset = (uint32_t)offsetof(GPBEnum__storage_, enumvalueArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 540 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 541 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 542 | }, |
| 543 | { |
| 544 | .name = "optionsArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 545 | .dataTypeSpecific.clazz = GPBObjCClass(GPBOption), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 546 | .number = GPBEnum_FieldNumber_OptionsArray, |
| 547 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 548 | .offset = (uint32_t)offsetof(GPBEnum__storage_, optionsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 549 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 550 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 551 | }, |
| 552 | { |
| 553 | .name = "sourceContext", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 554 | .dataTypeSpecific.clazz = GPBObjCClass(GPBSourceContext), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 555 | .number = GPBEnum_FieldNumber_SourceContext, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 556 | .hasIndex = 1, |
| 557 | .offset = (uint32_t)offsetof(GPBEnum__storage_, sourceContext), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 558 | .flags = GPBFieldOptional, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 559 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 560 | }, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 561 | { |
| 562 | .name = "syntax", |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 563 | .dataTypeSpecific.enumDescFunc = GPBSyntax_EnumDescriptor, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 564 | .number = GPBEnum_FieldNumber_Syntax, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 565 | .hasIndex = 2, |
| 566 | .offset = (uint32_t)offsetof(GPBEnum__storage_, syntax), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 567 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldHasEnumDescriptor | GPBFieldClearHasIvarOnZero), |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 568 | .dataType = GPBDataTypeEnum, |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 569 | }, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 570 | }; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 571 | GPBDescriptor *localDescriptor = |
| 572 | [GPBDescriptor allocDescriptorForClass:[GPBEnum class] |
| 573 | rootClass:[GPBTypeRoot class] |
| 574 | file:GPBTypeRoot_FileDescriptor() |
| 575 | fields:fields |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 576 | fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription)) |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 577 | storageSize:sizeof(GPBEnum__storage_) |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 578 | flags:(GPBDescriptorInitializationFlags)(GPBDescriptorInitializationFlag_UsesClassRefs | GPBDescriptorInitializationFlag_Proto3OptionalKnown)]; |
Dave MacLachlan | b631176 | 2018-12-11 16:32:48 -0800 | [diff] [blame] | 579 | #if defined(DEBUG) && DEBUG |
| 580 | NSAssert(descriptor == nil, @"Startup recursed!"); |
| 581 | #endif // DEBUG |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 582 | descriptor = localDescriptor; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 583 | } |
| 584 | return descriptor; |
| 585 | } |
| 586 | |
| 587 | @end |
| 588 | |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 589 | int32_t GPBEnum_Syntax_RawValue(GPBEnum *message) { |
| 590 | GPBDescriptor *descriptor = [GPBEnum descriptor]; |
| 591 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBEnum_FieldNumber_Syntax]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 592 | return GPBGetMessageRawEnumField(message, field); |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | void SetGPBEnum_Syntax_RawValue(GPBEnum *message, int32_t value) { |
| 596 | GPBDescriptor *descriptor = [GPBEnum descriptor]; |
| 597 | GPBFieldDescriptor *field = [descriptor fieldWithNumber:GPBEnum_FieldNumber_Syntax]; |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 598 | GPBSetMessageRawEnumField(message, field, value); |
TeBoring | aca5a60 | 2015-08-26 14:02:44 -0700 | [diff] [blame] | 599 | } |
| 600 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 601 | #pragma mark - GPBEnumValue |
| 602 | |
| 603 | @implementation GPBEnumValue |
| 604 | |
| 605 | @dynamic name; |
| 606 | @dynamic number; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 607 | @dynamic optionsArray, optionsArray_Count; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 608 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 609 | typedef struct GPBEnumValue__storage_ { |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 610 | uint32_t _has_storage_[1]; |
| 611 | int32_t number; |
| 612 | NSString *name; |
| 613 | NSMutableArray *optionsArray; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 614 | } GPBEnumValue__storage_; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 615 | |
| 616 | // This method is threadsafe because it is initially called |
| 617 | // in +initialize for each subclass. |
| 618 | + (GPBDescriptor *)descriptor { |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 619 | static GPBDescriptor *descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 620 | if (!descriptor) { |
| 621 | static GPBMessageFieldDescription fields[] = { |
| 622 | { |
| 623 | .name = "name", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 624 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 625 | .number = GPBEnumValue_FieldNumber_Name, |
| 626 | .hasIndex = 0, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 627 | .offset = (uint32_t)offsetof(GPBEnumValue__storage_, name), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 628 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 629 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 630 | }, |
| 631 | { |
| 632 | .name = "number", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 633 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 634 | .number = GPBEnumValue_FieldNumber_Number, |
| 635 | .hasIndex = 1, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 636 | .offset = (uint32_t)offsetof(GPBEnumValue__storage_, number), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 637 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 638 | .dataType = GPBDataTypeInt32, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 639 | }, |
| 640 | { |
| 641 | .name = "optionsArray", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 642 | .dataTypeSpecific.clazz = GPBObjCClass(GPBOption), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 643 | .number = GPBEnumValue_FieldNumber_OptionsArray, |
| 644 | .hasIndex = GPBNoHasBit, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 645 | .offset = (uint32_t)offsetof(GPBEnumValue__storage_, optionsArray), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 646 | .flags = GPBFieldRepeated, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 647 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 648 | }, |
| 649 | }; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 650 | GPBDescriptor *localDescriptor = |
| 651 | [GPBDescriptor allocDescriptorForClass:[GPBEnumValue class] |
| 652 | rootClass:[GPBTypeRoot class] |
| 653 | file:GPBTypeRoot_FileDescriptor() |
| 654 | fields:fields |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 655 | fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription)) |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 656 | storageSize:sizeof(GPBEnumValue__storage_) |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 657 | flags:(GPBDescriptorInitializationFlags)(GPBDescriptorInitializationFlag_UsesClassRefs | GPBDescriptorInitializationFlag_Proto3OptionalKnown)]; |
Dave MacLachlan | b631176 | 2018-12-11 16:32:48 -0800 | [diff] [blame] | 658 | #if defined(DEBUG) && DEBUG |
| 659 | NSAssert(descriptor == nil, @"Startup recursed!"); |
| 660 | #endif // DEBUG |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 661 | descriptor = localDescriptor; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 662 | } |
| 663 | return descriptor; |
| 664 | } |
| 665 | |
| 666 | @end |
| 667 | |
| 668 | #pragma mark - GPBOption |
| 669 | |
| 670 | @implementation GPBOption |
| 671 | |
| 672 | @dynamic name; |
| 673 | @dynamic hasValue, value; |
| 674 | |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 675 | typedef struct GPBOption__storage_ { |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 676 | uint32_t _has_storage_[1]; |
| 677 | NSString *name; |
| 678 | GPBAny *value; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 679 | } GPBOption__storage_; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 680 | |
| 681 | // This method is threadsafe because it is initially called |
| 682 | // in +initialize for each subclass. |
| 683 | + (GPBDescriptor *)descriptor { |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 684 | static GPBDescriptor *descriptor = nil; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 685 | if (!descriptor) { |
| 686 | static GPBMessageFieldDescription fields[] = { |
| 687 | { |
| 688 | .name = "name", |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 689 | .dataTypeSpecific.clazz = Nil, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 690 | .number = GPBOption_FieldNumber_Name, |
| 691 | .hasIndex = 0, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 692 | .offset = (uint32_t)offsetof(GPBOption__storage_, name), |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 693 | .flags = (GPBFieldFlags)(GPBFieldOptional | GPBFieldClearHasIvarOnZero), |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 694 | .dataType = GPBDataTypeString, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 695 | }, |
| 696 | { |
| 697 | .name = "value", |
Dave MacLachlan | aa1d7e7 | 2020-01-19 17:46:35 -0800 | [diff] [blame] | 698 | .dataTypeSpecific.clazz = GPBObjCClass(GPBAny), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 699 | .number = GPBOption_FieldNumber_Value, |
| 700 | .hasIndex = 1, |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 701 | .offset = (uint32_t)offsetof(GPBOption__storage_, value), |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 702 | .flags = GPBFieldOptional, |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 703 | .dataType = GPBDataTypeMessage, |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 704 | }, |
| 705 | }; |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 706 | GPBDescriptor *localDescriptor = |
| 707 | [GPBDescriptor allocDescriptorForClass:[GPBOption class] |
| 708 | rootClass:[GPBTypeRoot class] |
| 709 | file:GPBTypeRoot_FileDescriptor() |
| 710 | fields:fields |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 711 | fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription)) |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 712 | storageSize:sizeof(GPBOption__storage_) |
Thomas Van Lenten | b0e2792 | 2020-04-13 13:36:56 -0400 | [diff] [blame] | 713 | flags:(GPBDescriptorInitializationFlags)(GPBDescriptorInitializationFlag_UsesClassRefs | GPBDescriptorInitializationFlag_Proto3OptionalKnown)]; |
Dave MacLachlan | b631176 | 2018-12-11 16:32:48 -0800 | [diff] [blame] | 714 | #if defined(DEBUG) && DEBUG |
| 715 | NSAssert(descriptor == nil, @"Startup recursed!"); |
| 716 | #endif // DEBUG |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 717 | descriptor = localDescriptor; |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 718 | } |
| 719 | return descriptor; |
| 720 | } |
| 721 | |
| 722 | @end |
| 723 | |
| 724 | |
Thomas Van Lenten | e664aa6 | 2016-04-19 13:13:04 -0400 | [diff] [blame] | 725 | #pragma clang diagnostic pop |
| 726 | |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 727 | // @@protoc_insertion_point(global_scope) |