GPBCodedInputStream.h 7.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.  All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#import <Foundation/Foundation.h>

@class GPBMessage;
@class GPBExtensionRegistry;

36 37
NS_ASSUME_NONNULL_BEGIN

38 39
CF_EXTERN_C_BEGIN

40 41 42 43 44
/**
 * @c GPBCodedInputStream exception name. Exceptions raised from
 * @c GPBCodedInputStream contain an underlying error in the userInfo dictionary
 * under the GPBCodedInputStreamUnderlyingErrorKey key.
 **/
45 46
extern NSString *const GPBCodedInputStreamException;

47
/** The key under which the underlying NSError from the exception is stored. */
48 49
extern NSString *const GPBCodedInputStreamUnderlyingErrorKey;

50
/** NSError domain used for @c GPBCodedInputStream errors. */
51 52
extern NSString *const GPBCodedInputStreamErrorDomain;

53 54 55
/**
 * Error code for NSError with @c GPBCodedInputStreamErrorDomain.
 **/
56
typedef NS_ENUM(NSInteger, GPBCodedInputStreamErrorCode) {
57
  /** The size does not fit in the remaining bytes to be read. */
58
  GPBCodedInputStreamErrorInvalidSize = -100,
59
  /** Attempted to read beyond the subsection limit. */
60
  GPBCodedInputStreamErrorSubsectionLimitReached = -101,
61
  /** The requested subsection limit is invalid. */
62
  GPBCodedInputStreamErrorInvalidSubsectionLimit = -102,
63
  /** Invalid tag read. */
64
  GPBCodedInputStreamErrorInvalidTag = -103,
65
  /** Invalid UTF-8 character in a string. */
66
  GPBCodedInputStreamErrorInvalidUTF8 = -104,
67
  /** Invalid VarInt read. */
68
  GPBCodedInputStreamErrorInvalidVarInt = -105,
69
  /** The maximum recursion depth of messages was exceeded. */
70 71 72 73 74
  GPBCodedInputStreamErrorRecursionDepthExceeded = -106,
};

CF_EXTERN_C_END

75 76 77 78 79 80 81 82 83 84
/**
 * Reads and decodes protocol message fields.
 *
 * The common uses of protocol buffers shouldn't need to use this class.
 * @c GPBMessage's provide a @c +parseFromData:error: and
 * @c +parseFromData:extensionRegistry:error: method that will decode a
 * message for you.
 *
 * @note Subclassing of @c GPBCodedInputStream is NOT supported.
 **/
85 86
@interface GPBCodedInputStream : NSObject

87 88 89 90 91 92 93
/**
 * Creates a new stream wrapping some data.
 *
 * @param data The data to wrap inside the stream.
 *
 * @return A newly instanced GPBCodedInputStream.
 **/
94
+ (instancetype)streamWithData:(NSData *)data;
95

96 97 98 99 100 101 102
/**
 * Initializes a stream wrapping some data.
 *
 * @param data The data to wrap inside the stream.
 *
 * @return A newly initialized GPBCodedInputStream.
 **/
103 104
- (instancetype)initWithData:(NSData *)data;

105 106 107 108 109 110 111
/**
 * Attempts to read a field tag, returning zero if we have reached EOF.
 * Protocol message parsers use this to read tags, since a protocol message
 * may legally end wherever a tag occurs, and zero is not a valid tag number.
 *
 * @return The field tag, or zero if EOF was reached.
 **/
112 113
- (int32_t)readTag;

114 115 116
/**
 * @return A double read from the stream.
 **/
117
- (double)readDouble;
118 119 120
/**
 * @return A float read from the stream.
 **/
121
- (float)readFloat;
122 123 124
/**
 * @return A uint64 read from the stream.
 **/
125
- (uint64_t)readUInt64;
126 127 128
/**
 * @return A uint32 read from the stream.
 **/
129
- (uint32_t)readUInt32;
130 131 132
/**
 * @return An int64 read from the stream.
 **/
133
- (int64_t)readInt64;
134 135 136
/**
 * @return An int32 read from the stream.
 **/
137
- (int32_t)readInt32;
138 139 140
/**
 * @return A fixed64 read from the stream.
 **/
141
- (uint64_t)readFixed64;
142 143 144
/**
 * @return A fixed32 read from the stream.
 **/
145
- (uint32_t)readFixed32;
146 147 148
/**
 * @return An enum read from the stream.
 **/
149
- (int32_t)readEnum;
150 151 152
/**
 * @return A sfixed32 read from the stream.
 **/
153
- (int32_t)readSFixed32;
154 155 156
/**
 * @return A fixed64 read from the stream.
 **/
157
- (int64_t)readSFixed64;
158 159 160
/**
 * @return A sint32 read from the stream.
 **/
161
- (int32_t)readSInt32;
162 163 164
/**
 * @return A sint64 read from the stream.
 **/
165
- (int64_t)readSInt64;
166 167 168
/**
 * @return A boolean read from the stream.
 **/
169
- (BOOL)readBool;
170 171 172
/**
 * @return A string read from the stream.
 **/
173
- (NSString *)readString;
174 175 176
/**
 * @return Data read from the stream.
 **/
177
- (NSData *)readBytes;
178

179 180 181 182 183 184 185
/**
 * Read an embedded message field value from the stream.
 *
 * @param message           The message to set fields on as they are read.
 * @param extensionRegistry An optional extension registry to use to lookup
 *                          extensions for message.
 **/
186
- (void)readMessage:(GPBMessage *)message
187
  extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry;
188

189 190 191 192 193 194 195 196
/**
 * Reads and discards a single field, given its tag value.
 *
 * @param tag The tag number of the field to skip.
 *
 * @return NO if the tag is an endgroup tag (in which case nothing is skipped),
 *         YES in all other cases.
 **/
197 198
- (BOOL)skipField:(int32_t)tag;

199 200 201 202
/**
 * Reads and discards an entire message. This will read either until EOF or
 * until an endgroup tag, whichever comes first.
 **/
203 204
- (void)skipMessage;

205 206 207 208 209 210 211 212
/**
 * Check to see if the logical end of the stream has been reached.
 *
 * @note This can return NO when there is no more data, but the current parsing
 *       expected more data.
 *
 * @return YES if the logical end of the stream has been reached, NO otherwise.
 **/
213 214
- (BOOL)isAtEnd;

215 216 217
/**
 * @return The offset into the stream.
 **/
218 219
- (size_t)position;

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
/**
 * Moves the limit to the given byte offset starting at the current location.
 *
 * @exception GPBCodedInputStreamException If the requested bytes exceeed the
 *            current limit.
 *
 * @param byteLimit The number of bytes to move the limit, offset to the current
 *                  location.
 *
 * @return The limit offset before moving the new limit.
 */
- (size_t)pushLimit:(size_t)byteLimit;

/**
 * Moves the limit back to the offset as it was before calling pushLimit:.
 *
 * @param oldLimit The number of bytes to move the current limit. Usually this
 *                 is the value returned by the pushLimit: method.
 */
- (void)popLimit:(size_t)oldLimit;

241 242 243 244 245 246 247 248
/**
 * Verifies that the last call to -readTag returned the given tag value. This
 * is used to verify that a nested group ended with the correct end tag.
 *
 * @exception NSParseErrorException If the value does not match the last tag.
 *
 * @param expected The tag that was expected.
 **/
249
- (void)checkLastTagWas:(int32_t)expected;
250 251

@end
252 253

NS_ASSUME_NONNULL_END