blob: 8835f4d6fda36175b1470e478d558e1a9fe87c54 [file] [log] [blame]
Thomas Van Lenten30650d82015-05-01 08:57:16 -04001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
Thomas Van Lenten30650d82015-05-01 08:57:16 -04003//
Joshua Haberman44bd65b2023-09-08 17:43:14 -07004// 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 Lenten30650d82015-05-01 08:57:16 -04007
8#import <Foundation/Foundation.h>
9
10@class GPBCodedOutputStream;
11@class GPBUInt32Array;
12@class GPBUInt64Array;
13@class GPBUnknownFieldSet;
14
Thomas Van Lenten8c889572015-06-16 16:45:14 -040015NS_ASSUME_NONNULL_BEGIN
Sergio Campamá32fadc02016-08-08 07:15:02 -070016/**
17 * Store an unknown field. These are used in conjunction with
18 * GPBUnknownFieldSet.
19 **/
Protobuf Team Bota185a6e2023-01-27 15:19:53 -080020__attribute__((objc_subclassing_restricted))
21@interface GPBUnknownField : NSObject<NSCopying>
Thomas Van Lenten30650d82015-05-01 08:57:16 -040022
Thomas Van Lentenb30dee32017-07-05 11:16:34 -040023/** Initialize a field with the given number. */
24- (instancetype)initWithNumber:(int32_t)number;
25
Sergio Campamá32fadc02016-08-08 07:15:02 -070026/** The field number the data is stored under. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040027@property(nonatomic, readonly, assign) int32_t number;
28
Sergio Campamá32fadc02016-08-08 07:15:02 -070029/** An array of varint values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040030@property(nonatomic, readonly, strong) GPBUInt64Array *varintList;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050031
Sergio Campamá32fadc02016-08-08 07:15:02 -070032/** An array of fixed32 values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040033@property(nonatomic, readonly, strong) GPBUInt32Array *fixed32List;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050034
Sergio Campamá32fadc02016-08-08 07:15:02 -070035/** An array of fixed64 values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040036@property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050037
Sergio Campamá32fadc02016-08-08 07:15:02 -070038/** An array of data values for this field. */
Thomas Van Lenten5d0b2172022-09-19 17:20:35 -040039@property(nonatomic, readonly, strong) NSArray<NSData *> *lengthDelimitedList;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050040
Sergio Campamá32fadc02016-08-08 07:15:02 -070041/** An array of groups of values for this field. */
Thomas Van Lenten5d0b2172022-09-19 17:20:35 -040042@property(nonatomic, readonly, strong) NSArray<GPBUnknownFieldSet *> *groupList;
Thomas Van Lenten30650d82015-05-01 08:57:16 -040043
Sergio Campamá32fadc02016-08-08 07:15:02 -070044/**
45 * Add a value to the varintList.
46 *
47 * @param value The value to add.
48 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040049- (void)addVarint:(uint64_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070050/**
51 * Add a value to the fixed32List.
52 *
53 * @param value The value to add.
54 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040055- (void)addFixed32:(uint32_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070056/**
57 * Add a value to the fixed64List.
58 *
59 * @param value The value to add.
60 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040061- (void)addFixed64:(uint64_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070062/**
63 * Add a value to the lengthDelimitedList.
64 *
65 * @param value The value to add.
66 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040067- (void)addLengthDelimited:(NSData *)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070068/**
69 * Add a value to the groupList.
70 *
71 * @param value The value to add.
72 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040073- (void)addGroup:(GPBUnknownFieldSet *)value;
74
75@end
Thomas Van Lenten8c889572015-06-16 16:45:14 -040076
77NS_ASSUME_NONNULL_END