Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 1 | // Protocol Buffers - Google's data interchange format |
| 2 | // Copyright 2008 Google Inc. All rights reserved. |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 3 | // |
Joshua Haberman | 44bd65b | 2023-09-08 17:43:14 -0700 | [diff] [blame] | 4 | // Use of this source code is governed by a BSD-style |
| 5 | // license that can be found in the LICENSE file or at |
| 6 | // https://developers.google.com/open-source/licenses/bsd |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 7 | |
| 8 | #import <Foundation/Foundation.h> |
| 9 | |
| 10 | @class GPBCodedOutputStream; |
| 11 | @class GPBUInt32Array; |
| 12 | @class GPBUInt64Array; |
| 13 | @class GPBUnknownFieldSet; |
| 14 | |
Thomas Van Lenten | 8c88957 | 2015-06-16 16:45:14 -0400 | [diff] [blame] | 15 | NS_ASSUME_NONNULL_BEGIN |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 16 | /** |
| 17 | * Store an unknown field. These are used in conjunction with |
| 18 | * GPBUnknownFieldSet. |
| 19 | **/ |
Protobuf Team Bot | a185a6e | 2023-01-27 15:19:53 -0800 | [diff] [blame] | 20 | __attribute__((objc_subclassing_restricted)) |
| 21 | @interface GPBUnknownField : NSObject<NSCopying> |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 22 | |
Thomas Van Lenten | b30dee3 | 2017-07-05 11:16:34 -0400 | [diff] [blame] | 23 | /** Initialize a field with the given number. */ |
| 24 | - (instancetype)initWithNumber:(int32_t)number; |
| 25 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 26 | /** The field number the data is stored under. */ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 27 | @property(nonatomic, readonly, assign) int32_t number; |
| 28 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 29 | /** An array of varint values for this field. */ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 30 | @property(nonatomic, readonly, strong) GPBUInt64Array *varintList; |
Thomas Van Lenten | 36650a0 | 2016-03-07 12:07:03 -0500 | [diff] [blame] | 31 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 32 | /** An array of fixed32 values for this field. */ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 33 | @property(nonatomic, readonly, strong) GPBUInt32Array *fixed32List; |
Thomas Van Lenten | 36650a0 | 2016-03-07 12:07:03 -0500 | [diff] [blame] | 34 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 35 | /** An array of fixed64 values for this field. */ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 36 | @property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List; |
Thomas Van Lenten | 36650a0 | 2016-03-07 12:07:03 -0500 | [diff] [blame] | 37 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 38 | /** An array of data values for this field. */ |
Thomas Van Lenten | 5d0b217 | 2022-09-19 17:20:35 -0400 | [diff] [blame] | 39 | @property(nonatomic, readonly, strong) NSArray<NSData *> *lengthDelimitedList; |
Thomas Van Lenten | 36650a0 | 2016-03-07 12:07:03 -0500 | [diff] [blame] | 40 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 41 | /** An array of groups of values for this field. */ |
Thomas Van Lenten | 5d0b217 | 2022-09-19 17:20:35 -0400 | [diff] [blame] | 42 | @property(nonatomic, readonly, strong) NSArray<GPBUnknownFieldSet *> *groupList; |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 43 | |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 44 | /** |
| 45 | * Add a value to the varintList. |
| 46 | * |
| 47 | * @param value The value to add. |
| 48 | **/ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 49 | - (void)addVarint:(uint64_t)value; |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 50 | /** |
| 51 | * Add a value to the fixed32List. |
| 52 | * |
| 53 | * @param value The value to add. |
| 54 | **/ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 55 | - (void)addFixed32:(uint32_t)value; |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 56 | /** |
| 57 | * Add a value to the fixed64List. |
| 58 | * |
| 59 | * @param value The value to add. |
| 60 | **/ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 61 | - (void)addFixed64:(uint64_t)value; |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 62 | /** |
| 63 | * Add a value to the lengthDelimitedList. |
| 64 | * |
| 65 | * @param value The value to add. |
| 66 | **/ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 67 | - (void)addLengthDelimited:(NSData *)value; |
Sergio Campamá | 32fadc0 | 2016-08-08 07:15:02 -0700 | [diff] [blame] | 68 | /** |
| 69 | * Add a value to the groupList. |
| 70 | * |
| 71 | * @param value The value to add. |
| 72 | **/ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 73 | - (void)addGroup:(GPBUnknownFieldSet *)value; |
| 74 | |
| 75 | @end |
Thomas Van Lenten | 8c88957 | 2015-06-16 16:45:14 -0400 | [diff] [blame] | 76 | |
| 77 | NS_ASSUME_NONNULL_END |