blob: 5b96023b16cf2bb3d6c25b5495f931e30a9327e4 [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.
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
31#import <Foundation/Foundation.h>
32
33@class GPBCodedOutputStream;
34@class GPBUInt32Array;
35@class GPBUInt64Array;
36@class GPBUnknownFieldSet;
37
Thomas Van Lenten8c889572015-06-16 16:45:14 -040038NS_ASSUME_NONNULL_BEGIN
Sergio Campamá32fadc02016-08-08 07:15:02 -070039/**
40 * Store an unknown field. These are used in conjunction with
41 * GPBUnknownFieldSet.
42 **/
Thomas Van Lentend846b0b2015-06-08 16:24:57 -040043@interface GPBUnknownField : NSObject<NSCopying>
Thomas Van Lenten30650d82015-05-01 08:57:16 -040044
Thomas Van Lentenb30dee32017-07-05 11:16:34 -040045/** Initialize a field with the given number. */
46- (instancetype)initWithNumber:(int32_t)number;
47
Sergio Campamá32fadc02016-08-08 07:15:02 -070048/** The field number the data is stored under. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040049@property(nonatomic, readonly, assign) int32_t number;
50
Sergio Campamá32fadc02016-08-08 07:15:02 -070051/** An array of varint values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040052@property(nonatomic, readonly, strong) GPBUInt64Array *varintList;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050053
Sergio Campamá32fadc02016-08-08 07:15:02 -070054/** An array of fixed32 values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040055@property(nonatomic, readonly, strong) GPBUInt32Array *fixed32List;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050056
Sergio Campamá32fadc02016-08-08 07:15:02 -070057/** An array of fixed64 values for this field. */
Thomas Van Lenten30650d82015-05-01 08:57:16 -040058@property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050059
Sergio Campamá32fadc02016-08-08 07:15:02 -070060/** An array of data values for this field. */
Thomas Van Lenten2480acb2015-11-30 14:38:04 -050061@property(nonatomic, readonly, strong) NSArray<NSData*> *lengthDelimitedList;
Thomas Van Lenten36650a02016-03-07 12:07:03 -050062
Sergio Campamá32fadc02016-08-08 07:15:02 -070063/** An array of groups of values for this field. */
Thomas Van Lenten2480acb2015-11-30 14:38:04 -050064@property(nonatomic, readonly, strong) NSArray<GPBUnknownFieldSet*> *groupList;
Thomas Van Lenten30650d82015-05-01 08:57:16 -040065
Sergio Campamá32fadc02016-08-08 07:15:02 -070066/**
67 * Add a value to the varintList.
68 *
69 * @param value The value to add.
70 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040071- (void)addVarint:(uint64_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070072/**
73 * Add a value to the fixed32List.
74 *
75 * @param value The value to add.
76 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040077- (void)addFixed32:(uint32_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070078/**
79 * Add a value to the fixed64List.
80 *
81 * @param value The value to add.
82 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040083- (void)addFixed64:(uint64_t)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070084/**
85 * Add a value to the lengthDelimitedList.
86 *
87 * @param value The value to add.
88 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040089- (void)addLengthDelimited:(NSData *)value;
Sergio Campamá32fadc02016-08-08 07:15:02 -070090/**
91 * Add a value to the groupList.
92 *
93 * @param value The value to add.
94 **/
Thomas Van Lenten30650d82015-05-01 08:57:16 -040095- (void)addGroup:(GPBUnknownFieldSet *)value;
96
97@end
Thomas Van Lenten8c889572015-06-16 16:45:14 -040098
99NS_ASSUME_NONNULL_END