123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- // 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>
- #import "GPBTypes.h"
- #import "GPBWireFormat.h"
- @class GPBBoolArray;
- @class GPBDoubleArray;
- @class GPBEnumArray;
- @class GPBFloatArray;
- @class GPBMessage;
- @class GPBInt32Array;
- @class GPBInt64Array;
- @class GPBUInt32Array;
- @class GPBUInt64Array;
- @class GPBUnknownFieldSet;
- @interface GPBCodedOutputStream : NSObject
- // Creates a new stream to write into data. Data must be sized to fit or it
- // will error when it runs out of space.
- + (instancetype)streamWithData:(NSMutableData *)data;
- + (instancetype)streamWithOutputStream:(NSOutputStream *)output;
- + (instancetype)streamWithOutputStream:(NSOutputStream *)output
- bufferSize:(size_t)bufferSize;
- - (instancetype)initWithOutputStream:(NSOutputStream *)output;
- - (instancetype)initWithData:(NSMutableData *)data;
- - (instancetype)initWithOutputStream:(NSOutputStream *)output
- bufferSize:(size_t)bufferSize;
- - (instancetype)initWithOutputStream:(NSOutputStream *)output
- data:(NSMutableData *)data;
- - (void)flush;
- - (void)writeRawByte:(uint8_t)value;
- - (void)writeTag:(uint32_t)fieldNumber format:(GPBWireFormat)format;
- - (void)writeRawLittleEndian32:(int32_t)value;
- - (void)writeRawLittleEndian64:(int64_t)value;
- - (void)writeRawVarint32:(int32_t)value;
- - (void)writeRawVarint64:(int64_t)value;
- // Note that this will truncate 64 bit values to 32.
- - (void)writeRawVarintSizeTAs32:(size_t)value;
- - (void)writeRawData:(NSData *)data;
- - (void)writeRawPtr:(const void *)data
- offset:(size_t)offset
- length:(size_t)length;
- //%PDDM-EXPAND _WRITE_DECLS()
- // This block of code is generated, do not edit it directly.
- - (void)writeDouble:(int32_t)fieldNumber value:(double)value;
- - (void)writeDoubles:(int32_t)fieldNumber
- values:(GPBDoubleArray *)values
- tag:(uint32_t)tag;
- - (void)writeDoubleNoTag:(double)value;
- - (void)writeFloat:(int32_t)fieldNumber value:(float)value;
- - (void)writeFloats:(int32_t)fieldNumber
- values:(GPBFloatArray *)values
- tag:(uint32_t)tag;
- - (void)writeFloatNoTag:(float)value;
- - (void)writeUInt64:(int32_t)fieldNumber value:(uint64_t)value;
- - (void)writeUInt64s:(int32_t)fieldNumber
- values:(GPBUInt64Array *)values
- tag:(uint32_t)tag;
- - (void)writeUInt64NoTag:(uint64_t)value;
- - (void)writeInt64:(int32_t)fieldNumber value:(int64_t)value;
- - (void)writeInt64s:(int32_t)fieldNumber
- values:(GPBInt64Array *)values
- tag:(uint32_t)tag;
- - (void)writeInt64NoTag:(int64_t)value;
- - (void)writeInt32:(int32_t)fieldNumber value:(int32_t)value;
- - (void)writeInt32s:(int32_t)fieldNumber
- values:(GPBInt32Array *)values
- tag:(uint32_t)tag;
- - (void)writeInt32NoTag:(int32_t)value;
- - (void)writeUInt32:(int32_t)fieldNumber value:(uint32_t)value;
- - (void)writeUInt32s:(int32_t)fieldNumber
- values:(GPBUInt32Array *)values
- tag:(uint32_t)tag;
- - (void)writeUInt32NoTag:(uint32_t)value;
- - (void)writeFixed64:(int32_t)fieldNumber value:(uint64_t)value;
- - (void)writeFixed64s:(int32_t)fieldNumber
- values:(GPBUInt64Array *)values
- tag:(uint32_t)tag;
- - (void)writeFixed64NoTag:(uint64_t)value;
- - (void)writeFixed32:(int32_t)fieldNumber value:(uint32_t)value;
- - (void)writeFixed32s:(int32_t)fieldNumber
- values:(GPBUInt32Array *)values
- tag:(uint32_t)tag;
- - (void)writeFixed32NoTag:(uint32_t)value;
- - (void)writeSInt32:(int32_t)fieldNumber value:(int32_t)value;
- - (void)writeSInt32s:(int32_t)fieldNumber
- values:(GPBInt32Array *)values
- tag:(uint32_t)tag;
- - (void)writeSInt32NoTag:(int32_t)value;
- - (void)writeSInt64:(int32_t)fieldNumber value:(int64_t)value;
- - (void)writeSInt64s:(int32_t)fieldNumber
- values:(GPBInt64Array *)values
- tag:(uint32_t)tag;
- - (void)writeSInt64NoTag:(int64_t)value;
- - (void)writeSFixed64:(int32_t)fieldNumber value:(int64_t)value;
- - (void)writeSFixed64s:(int32_t)fieldNumber
- values:(GPBInt64Array *)values
- tag:(uint32_t)tag;
- - (void)writeSFixed64NoTag:(int64_t)value;
- - (void)writeSFixed32:(int32_t)fieldNumber value:(int32_t)value;
- - (void)writeSFixed32s:(int32_t)fieldNumber
- values:(GPBInt32Array *)values
- tag:(uint32_t)tag;
- - (void)writeSFixed32NoTag:(int32_t)value;
- - (void)writeBool:(int32_t)fieldNumber value:(BOOL)value;
- - (void)writeBools:(int32_t)fieldNumber
- values:(GPBBoolArray *)values
- tag:(uint32_t)tag;
- - (void)writeBoolNoTag:(BOOL)value;
- - (void)writeEnum:(int32_t)fieldNumber value:(int32_t)value;
- - (void)writeEnums:(int32_t)fieldNumber
- values:(GPBEnumArray *)values
- tag:(uint32_t)tag;
- - (void)writeEnumNoTag:(int32_t)value;
- - (void)writeString:(int32_t)fieldNumber value:(NSString *)value;
- - (void)writeStrings:(int32_t)fieldNumber values:(NSArray *)values;
- - (void)writeStringNoTag:(NSString *)value;
- - (void)writeMessage:(int32_t)fieldNumber value:(GPBMessage *)value;
- - (void)writeMessages:(int32_t)fieldNumber values:(NSArray *)values;
- - (void)writeMessageNoTag:(GPBMessage *)value;
- - (void)writeData:(int32_t)fieldNumber value:(NSData *)value;
- - (void)writeDatas:(int32_t)fieldNumber values:(NSArray *)values;
- - (void)writeDataNoTag:(NSData *)value;
- - (void)writeGroup:(int32_t)fieldNumber
- value:(GPBMessage *)value;
- - (void)writeGroups:(int32_t)fieldNumber values:(NSArray *)values;
- - (void)writeGroupNoTag:(int32_t)fieldNumber
- value:(GPBMessage *)value;
- - (void)writeUnknownGroup:(int32_t)fieldNumber
- value:(GPBUnknownFieldSet *)value;
- - (void)writeUnknownGroups:(int32_t)fieldNumber values:(NSArray *)values;
- - (void)writeUnknownGroupNoTag:(int32_t)fieldNumber
- value:(GPBUnknownFieldSet *)value;
- //%PDDM-EXPAND-END _WRITE_DECLS()
- // Write a MessageSet extension field to the stream. For historical reasons,
- // the wire format differs from normal fields.
- - (void)writeMessageSetExtension:(int32_t)fieldNumber value:(GPBMessage *)value;
- // Write an unparsed MessageSet extension field to the stream. For
- // historical reasons, the wire format differs from normal fields.
- - (void)writeRawMessageSetExtension:(int32_t)fieldNumber value:(NSData *)value;
- @end
- CF_EXTERN_C_BEGIN
- size_t GPBComputeDoubleSize(int32_t fieldNumber, double value)
- __attribute__((const));
- size_t GPBComputeFloatSize(int32_t fieldNumber, float value)
- __attribute__((const));
- size_t GPBComputeUInt64Size(int32_t fieldNumber, uint64_t value)
- __attribute__((const));
- size_t GPBComputeInt64Size(int32_t fieldNumber, int64_t value)
- __attribute__((const));
- size_t GPBComputeInt32Size(int32_t fieldNumber, int32_t value)
- __attribute__((const));
- size_t GPBComputeFixed64Size(int32_t fieldNumber, uint64_t value)
- __attribute__((const));
- size_t GPBComputeFixed32Size(int32_t fieldNumber, uint32_t value)
- __attribute__((const));
- size_t GPBComputeBoolSize(int32_t fieldNumber, BOOL value)
- __attribute__((const));
- size_t GPBComputeStringSize(int32_t fieldNumber, NSString *value)
- __attribute__((const));
- size_t GPBComputeGroupSize(int32_t fieldNumber, GPBMessage *value)
- __attribute__((const));
- size_t GPBComputeUnknownGroupSize(int32_t fieldNumber,
- GPBUnknownFieldSet *value)
- __attribute__((const));
- size_t GPBComputeMessageSize(int32_t fieldNumber, GPBMessage *value)
- __attribute__((const));
- size_t GPBComputeDataSize(int32_t fieldNumber, NSData *value)
- __attribute__((const));
- size_t GPBComputeUInt32Size(int32_t fieldNumber, uint32_t value)
- __attribute__((const));
- size_t GPBComputeSFixed32Size(int32_t fieldNumber, int32_t value)
- __attribute__((const));
- size_t GPBComputeSFixed64Size(int32_t fieldNumber, int64_t value)
- __attribute__((const));
- size_t GPBComputeSInt32Size(int32_t fieldNumber, int32_t value)
- __attribute__((const));
- size_t GPBComputeSInt64Size(int32_t fieldNumber, int64_t value)
- __attribute__((const));
- size_t GPBComputeTagSize(int32_t fieldNumber) __attribute__((const));
- size_t GPBComputeWireFormatTagSize(int field_number, GPBType type)
- __attribute__((const));
- size_t GPBComputeDoubleSizeNoTag(double value) __attribute__((const));
- size_t GPBComputeFloatSizeNoTag(float value) __attribute__((const));
- size_t GPBComputeUInt64SizeNoTag(uint64_t value) __attribute__((const));
- size_t GPBComputeInt64SizeNoTag(int64_t value) __attribute__((const));
- size_t GPBComputeInt32SizeNoTag(int32_t value) __attribute__((const));
- size_t GPBComputeFixed64SizeNoTag(uint64_t value) __attribute__((const));
- size_t GPBComputeFixed32SizeNoTag(uint32_t value) __attribute__((const));
- size_t GPBComputeBoolSizeNoTag(BOOL value) __attribute__((const));
- size_t GPBComputeStringSizeNoTag(NSString *value) __attribute__((const));
- size_t GPBComputeGroupSizeNoTag(GPBMessage *value) __attribute__((const));
- size_t GPBComputeUnknownGroupSizeNoTag(GPBUnknownFieldSet *value)
- __attribute__((const));
- size_t GPBComputeMessageSizeNoTag(GPBMessage *value) __attribute__((const));
- size_t GPBComputeDataSizeNoTag(NSData *value) __attribute__((const));
- size_t GPBComputeUInt32SizeNoTag(int32_t value) __attribute__((const));
- size_t GPBComputeEnumSizeNoTag(int32_t value) __attribute__((const));
- size_t GPBComputeSFixed32SizeNoTag(int32_t value) __attribute__((const));
- size_t GPBComputeSFixed64SizeNoTag(int64_t value) __attribute__((const));
- size_t GPBComputeSInt32SizeNoTag(int32_t value) __attribute__((const));
- size_t GPBComputeSInt64SizeNoTag(int64_t value) __attribute__((const));
- // Note that this will calculate the size of 64 bit values truncated to 32.
- size_t GPBComputeSizeTSizeAsInt32NoTag(size_t value) __attribute__((const));
- size_t GPBComputeRawVarint32Size(int32_t value) __attribute__((const));
- size_t GPBComputeRawVarint64Size(int64_t value) __attribute__((const));
- // Note that this will calculate the size of 64 bit values truncated to 32.
- size_t GPBComputeRawVarint32SizeForInteger(NSInteger value)
- __attribute__((const));
- // Compute the number of bytes that would be needed to encode a
- // MessageSet extension to the stream. For historical reasons,
- // the wire format differs from normal fields.
- size_t GPBComputeMessageSetExtensionSize(int32_t fieldNumber, GPBMessage *value)
- __attribute__((const));
- // Compute the number of bytes that would be needed to encode an
- // unparsed MessageSet extension field to the stream. For
- // historical reasons, the wire format differs from normal fields.
- size_t GPBComputeRawMessageSetExtensionSize(int32_t fieldNumber, NSData *value)
- __attribute__((const));
- size_t GPBComputeEnumSize(int32_t fieldNumber, int32_t value)
- __attribute__((const));
- CF_EXTERN_C_END
- // Write methods for types that can be in packed arrays.
- //%PDDM-DEFINE _WRITE_PACKABLE_DECLS(NAME, ARRAY_TYPE, TYPE)
- //%- (void)write##NAME:(int32_t)fieldNumber value:(TYPE)value;
- //%- (void)write##NAME##s:(int32_t)fieldNumber
- //% NAME$S values:(GPB##ARRAY_TYPE##Array *)values
- //% NAME$S tag:(uint32_t)tag;
- //%- (void)write##NAME##NoTag:(TYPE)value;
- //%
- // Write methods for types that aren't in packed arrays.
- //%PDDM-DEFINE _WRITE_UNPACKABLE_DECLS(NAME, TYPE)
- //%- (void)write##NAME:(int32_t)fieldNumber value:(TYPE)value;
- //%- (void)write##NAME##s:(int32_t)fieldNumber values:(NSArray *)values;
- //%- (void)write##NAME##NoTag:(TYPE)value;
- //%
- // Special write methods for Groups.
- //%PDDM-DEFINE _WRITE_GROUP_DECLS(NAME, TYPE)
- //%- (void)write##NAME:(int32_t)fieldNumber
- //% NAME$S value:(TYPE)value;
- //%- (void)write##NAME##s:(int32_t)fieldNumber values:(NSArray *)values;
- //%- (void)write##NAME##NoTag:(int32_t)fieldNumber
- //% NAME$S value:(TYPE)value;
- //%
- // One macro to hide it all up above.
- //%PDDM-DEFINE _WRITE_DECLS()
- //%_WRITE_PACKABLE_DECLS(Double, Double, double)
- //%_WRITE_PACKABLE_DECLS(Float, Float, float)
- //%_WRITE_PACKABLE_DECLS(UInt64, UInt64, uint64_t)
- //%_WRITE_PACKABLE_DECLS(Int64, Int64, int64_t)
- //%_WRITE_PACKABLE_DECLS(Int32, Int32, int32_t)
- //%_WRITE_PACKABLE_DECLS(UInt32, UInt32, uint32_t)
- //%_WRITE_PACKABLE_DECLS(Fixed64, UInt64, uint64_t)
- //%_WRITE_PACKABLE_DECLS(Fixed32, UInt32, uint32_t)
- //%_WRITE_PACKABLE_DECLS(SInt32, Int32, int32_t)
- //%_WRITE_PACKABLE_DECLS(SInt64, Int64, int64_t)
- //%_WRITE_PACKABLE_DECLS(SFixed64, Int64, int64_t)
- //%_WRITE_PACKABLE_DECLS(SFixed32, Int32, int32_t)
- //%_WRITE_PACKABLE_DECLS(Bool, Bool, BOOL)
- //%_WRITE_PACKABLE_DECLS(Enum, Enum, int32_t)
- //%_WRITE_UNPACKABLE_DECLS(String, NSString *)
- //%_WRITE_UNPACKABLE_DECLS(Message, GPBMessage *)
- //%_WRITE_UNPACKABLE_DECLS(Data, NSData *)
- //%_WRITE_GROUP_DECLS(Group, GPBMessage *)
- //%_WRITE_GROUP_DECLS(UnknownGroup, GPBUnknownFieldSet *)
|