123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499 |
- // Protocol Buffers - Google's data interchange format
- // Copyright 2015 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 "GPBArray_PackagePrivate.h"
- #import "GPBMessage_PackagePrivate.h"
- // Mutable arrays use an internal buffer that can always hold a multiple of this elements.
- #define kChunkSize 16
- #define CapacityFromCount(x) (((x / kChunkSize) + 1) * kChunkSize)
- static BOOL ArrayDefault_IsValidValue(int32_t value) {
- // Anything but the bad value marker is allowed.
- return (value != kGPBUnrecognizedEnumeratorValue);
- }
- //%PDDM-DEFINE VALIDATE_RANGE(INDEX, COUNT)
- //% if (INDEX >= COUNT) {
- //% [NSException raise:NSRangeException
- //% format:@"Index (%lu) beyond bounds (%lu)",
- //% (unsigned long)INDEX, (unsigned long)COUNT];
- //% }
- //%PDDM-DEFINE MAYBE_GROW_TO_SET_COUNT(NEW_COUNT)
- //% if (NEW_COUNT > _capacity) {
- //% [self internalResizeToCapacity:CapacityFromCount(NEW_COUNT)];
- //% }
- //% _count = NEW_COUNT;
- //%PDDM-DEFINE SET_COUNT_AND_MAYBE_SHRINK(NEW_COUNT)
- //% _count = NEW_COUNT;
- //% if ((NEW_COUNT + (2 * kChunkSize)) < _capacity) {
- //% [self internalResizeToCapacity:CapacityFromCount(NEW_COUNT)];
- //% }
- //
- // Macros for the common basic cases.
- //
- //%PDDM-DEFINE ARRAY_INTERFACE_SIMPLE(NAME, TYPE, FORMAT)
- //%#pragma mark - NAME
- //%
- //%@implementation GPB##NAME##Array {
- //% @package
- //% TYPE *_values;
- //% NSUInteger _count;
- //% NSUInteger _capacity;
- //%}
- //%
- //%@synthesize count = _count;
- //%
- //%+ (instancetype)array {
- //% return [[[self alloc] initWithValues:NULL count:0] autorelease];
- //%}
- //%
- //%+ (instancetype)arrayWithValue:(TYPE)value {
- //% // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- //% // the type correct.
- //% return [[(GPB##NAME##Array*)[self alloc] initWithValues:&value count:1] autorelease];
- //%}
- //%
- //%+ (instancetype)arrayWithValueArray:(GPB##NAME##Array *)array {
- //% return [[(GPB##NAME##Array*)[self alloc] initWithValueArray:array] autorelease];
- //%}
- //%
- //%+ (instancetype)arrayWithCapacity:(NSUInteger)count {
- //% return [[[self alloc] initWithCapacity:count] autorelease];
- //%}
- //%
- //%- (instancetype)init {
- //% return [self initWithValues:NULL count:0];
- //%}
- //%
- //%- (instancetype)initWithValueArray:(GPB##NAME##Array *)array {
- //% return [self initWithValues:array->_values count:array->_count];
- //%}
- //%
- //%- (instancetype)initWithValues:(const TYPE [])values count:(NSUInteger)count {
- //% self = [super init];
- //% if (self) {
- //% if (count && values) {
- //% _values = malloc(count * sizeof(TYPE));
- //% if (values != NULL) {
- //% _capacity = count;
- //% memcpy(_values, values, count * sizeof(TYPE));
- //% _count = count;
- //% } else {
- //% [self release];
- //% [NSException raise:NSMallocException
- //% format:@"Failed to allocate %lu bytes",
- //% (unsigned long)(count * sizeof(TYPE))];
- //% }
- //% }
- //% }
- //% return self;
- //%}
- //%
- //%- (instancetype)initWithCapacity:(NSUInteger)count {
- //% self = [self initWithValues:NULL count:0];
- //% if (self && count) {
- //% [self internalResizeToCapacity:count];
- //% }
- //% return self;
- //%}
- //%
- //%- (instancetype)copyWithZone:(NSZone *)zone {
- //% return [[GPB##NAME##Array allocWithZone:zone] initWithValues:_values count:_count];
- //%}
- //%
- //%ARRAY_IMMUTABLE_CORE(NAME, TYPE, , FORMAT)
- //%
- //%- (TYPE)valueAtIndex:(NSUInteger)index {
- //%VALIDATE_RANGE(index, _count)
- //% return _values[index];
- //%}
- //%
- //%ARRAY_MUTABLE_CORE(NAME, TYPE, , FORMAT)
- //%@end
- //%
- //
- // Some core macros used for both the simple types and Enums.
- //
- //%PDDM-DEFINE ARRAY_IMMUTABLE_CORE(NAME, TYPE, ACCESSOR_NAME, FORMAT)
- //%- (void)dealloc {
- //% NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- //% free(_values);
- //% [super dealloc];
- //%}
- //%
- //%- (BOOL)isEqual:(GPB##NAME##Array *)other {
- //% if (self == other) {
- //% return YES;
- //% }
- //% if (![other isKindOfClass:[GPB##NAME##Array class]]) {
- //% return NO;
- //% }
- //% return (_count == other->_count
- //% && memcmp(_values, other->_values, (_count * sizeof(TYPE))) == 0);
- //%}
- //%
- //%- (NSUInteger)hash {
- //% // Follow NSArray's lead, and use the count as the hash.
- //% return _count;
- //%}
- //%
- //%- (NSString *)description {
- //% NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- //% for (NSUInteger i = 0, count = _count; i < count; ++i) {
- //% if (i == 0) {
- //% [result appendFormat:@"##FORMAT##", _values[i]];
- //% } else {
- //% [result appendFormat:@", ##FORMAT##", _values[i]];
- //% }
- //% }
- //% [result appendFormat:@" }"];
- //% return result;
- //%}
- //%
- //%- (void)enumerate##ACCESSOR_NAME##ValuesWithBlock:(void (^)(TYPE value, NSUInteger idx, BOOL *stop))block {
- //% [self enumerate##ACCESSOR_NAME##ValuesWithOptions:0 usingBlock:block];
- //%}
- //%
- //%- (void)enumerate##ACCESSOR_NAME##ValuesWithOptions:(NSEnumerationOptions)opts
- //% ACCESSOR_NAME$S usingBlock:(void (^)(TYPE value, NSUInteger idx, BOOL *stop))block {
- //% // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- //% BOOL stop = NO;
- //% if ((opts & NSEnumerationReverse) == 0) {
- //% for (NSUInteger i = 0, count = _count; i < count; ++i) {
- //% block(_values[i], i, &stop);
- //% if (stop) break;
- //% }
- //% } else if (_count > 0) {
- //% for (NSUInteger i = _count; i > 0; --i) {
- //% block(_values[i - 1], (i - 1), &stop);
- //% if (stop) break;
- //% }
- //% }
- //%}
- //%PDDM-DEFINE MUTATION_HOOK_None()
- //%PDDM-DEFINE MUTATION_METHODS(NAME, TYPE, ACCESSOR_NAME, HOOK_1, HOOK_2)
- //%- (void)add##ACCESSOR_NAME##Value:(TYPE)value {
- //% [self add##ACCESSOR_NAME##Values:&value count:1];
- //%}
- //%
- //%- (void)add##ACCESSOR_NAME##Values:(const TYPE [])values count:(NSUInteger)count {
- //% if (values == NULL || count == 0) return;
- //%MUTATION_HOOK_##HOOK_1() NSUInteger initialCount = _count;
- //% NSUInteger newCount = initialCount + count;
- //%MAYBE_GROW_TO_SET_COUNT(newCount);
- //% memcpy(&_values[initialCount], values, count * sizeof(TYPE));
- //% if (_autocreator) {
- //% GPBAutocreatedArrayModified(_autocreator, self);
- //% }
- //%}
- //%
- //%- (void)insert##ACCESSOR_NAME##Value:(TYPE)value atIndex:(NSUInteger)index {
- //%VALIDATE_RANGE(index, _count + 1)
- //%MUTATION_HOOK_##HOOK_2() NSUInteger initialCount = _count;
- //% NSUInteger newCount = initialCount + 1;
- //%MAYBE_GROW_TO_SET_COUNT(newCount);
- //% if (index != initialCount) {
- //% memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(TYPE));
- //% }
- //% _values[index] = value;
- //% if (_autocreator) {
- //% GPBAutocreatedArrayModified(_autocreator, self);
- //% }
- //%}
- //%
- //%- (void)replaceValueAtIndex:(NSUInteger)index with##ACCESSOR_NAME##Value:(TYPE)value {
- //%VALIDATE_RANGE(index, _count)
- //%MUTATION_HOOK_##HOOK_2() _values[index] = value;
- //%}
- //%PDDM-DEFINE ARRAY_MUTABLE_CORE(NAME, TYPE, ACCESSOR_NAME, FORMAT)
- //%- (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- //% _values = reallocf(_values, newCapacity * sizeof(TYPE));
- //% if (_values == NULL) {
- //% _capacity = 0;
- //% _count = 0;
- //% [NSException raise:NSMallocException
- //% format:@"Failed to allocate %lu bytes",
- //% (unsigned long)(newCapacity * sizeof(TYPE))];
- //% }
- //% _capacity = newCapacity;
- //%}
- //%
- //%MUTATION_METHODS(NAME, TYPE, ACCESSOR_NAME, None, None)
- //%
- //%- (void)add##ACCESSOR_NAME##ValuesFromArray:(GPB##NAME##Array *)array {
- //% [self add##ACCESSOR_NAME##Values:array->_values count:array->_count];
- //%}
- //%
- //%- (void)removeValueAtIndex:(NSUInteger)index {
- //%VALIDATE_RANGE(index, _count)
- //% NSUInteger newCount = _count - 1;
- //% if (index != newCount) {
- //% memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(TYPE));
- //% }
- //%SET_COUNT_AND_MAYBE_SHRINK(newCount)
- //%}
- //%
- //%- (void)removeAll {
- //%SET_COUNT_AND_MAYBE_SHRINK(0)
- //%}
- //%
- //%- (void)exchangeValueAtIndex:(NSUInteger)idx1
- //% withValueAtIndex:(NSUInteger)idx2 {
- //%VALIDATE_RANGE(idx1, _count)
- //%VALIDATE_RANGE(idx2, _count)
- //% TYPE temp = _values[idx1];
- //% _values[idx1] = _values[idx2];
- //% _values[idx2] = temp;
- //%}
- //%
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(Int32, int32_t, %d)
- // This block of code is generated, do not edit it directly.
- #pragma mark - Int32
- @implementation GPBInt32Array {
- @package
- int32_t *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(int32_t)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBInt32Array*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBInt32Array *)array {
- return [[(GPBInt32Array*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBInt32Array *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const int32_t [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(int32_t));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(int32_t));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(int32_t))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBInt32Array allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBInt32Array *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBInt32Array class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(int32_t))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%d", _values[i]];
- } else {
- [result appendFormat:@", %d", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (int32_t)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(int32_t));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(int32_t))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(int32_t)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const int32_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(int32_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(int32_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(int32_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(int32_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBInt32Array *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(int32_t));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- int32_t temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(UInt32, uint32_t, %u)
- // This block of code is generated, do not edit it directly.
- #pragma mark - UInt32
- @implementation GPBUInt32Array {
- @package
- uint32_t *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(uint32_t)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBUInt32Array*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBUInt32Array *)array {
- return [[(GPBUInt32Array*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBUInt32Array *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const uint32_t [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(uint32_t));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(uint32_t));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(uint32_t))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBUInt32Array allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBUInt32Array *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBUInt32Array class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(uint32_t))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%u", _values[i]];
- } else {
- [result appendFormat:@", %u", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(uint32_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(uint32_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (uint32_t)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(uint32_t));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(uint32_t))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(uint32_t)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const uint32_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(uint32_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(uint32_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(uint32_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(uint32_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBUInt32Array *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(uint32_t));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- uint32_t temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(Int64, int64_t, %lld)
- // This block of code is generated, do not edit it directly.
- #pragma mark - Int64
- @implementation GPBInt64Array {
- @package
- int64_t *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(int64_t)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBInt64Array*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBInt64Array *)array {
- return [[(GPBInt64Array*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBInt64Array *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const int64_t [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(int64_t));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(int64_t));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(int64_t))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBInt64Array allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBInt64Array *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBInt64Array class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(int64_t))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%lld", _values[i]];
- } else {
- [result appendFormat:@", %lld", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(int64_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(int64_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (int64_t)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(int64_t));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(int64_t))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(int64_t)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const int64_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(int64_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(int64_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(int64_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(int64_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBInt64Array *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(int64_t));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- int64_t temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(UInt64, uint64_t, %llu)
- // This block of code is generated, do not edit it directly.
- #pragma mark - UInt64
- @implementation GPBUInt64Array {
- @package
- uint64_t *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(uint64_t)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBUInt64Array*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBUInt64Array *)array {
- return [[(GPBUInt64Array*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBUInt64Array *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const uint64_t [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(uint64_t));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(uint64_t));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(uint64_t))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBUInt64Array allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBUInt64Array *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBUInt64Array class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(uint64_t))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%llu", _values[i]];
- } else {
- [result appendFormat:@", %llu", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(uint64_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(uint64_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (uint64_t)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(uint64_t));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(uint64_t))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(uint64_t)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const uint64_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(uint64_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(uint64_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(uint64_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(uint64_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBUInt64Array *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(uint64_t));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- uint64_t temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(Float, float, %f)
- // This block of code is generated, do not edit it directly.
- #pragma mark - Float
- @implementation GPBFloatArray {
- @package
- float *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(float)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBFloatArray*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBFloatArray *)array {
- return [[(GPBFloatArray*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBFloatArray *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const float [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(float));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(float));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(float))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBFloatArray allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBFloatArray *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBFloatArray class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(float))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%f", _values[i]];
- } else {
- [result appendFormat:@", %f", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(float value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(float value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (float)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(float));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(float))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(float)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const float [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(float));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(float)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(float));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(float)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBFloatArray *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(float));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- float temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(Double, double, %lf)
- // This block of code is generated, do not edit it directly.
- #pragma mark - Double
- @implementation GPBDoubleArray {
- @package
- double *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(double)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBDoubleArray*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBDoubleArray *)array {
- return [[(GPBDoubleArray*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBDoubleArray *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const double [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(double));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(double));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(double))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBDoubleArray allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBDoubleArray *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBDoubleArray class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(double))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%lf", _values[i]];
- } else {
- [result appendFormat:@", %lf", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(double value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(double value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (double)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(double));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(double))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(double)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const double [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(double));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(double)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(double));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(double)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBDoubleArray *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(double));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- double temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND ARRAY_INTERFACE_SIMPLE(Bool, BOOL, %d)
- // This block of code is generated, do not edit it directly.
- #pragma mark - Bool
- @implementation GPBBoolArray {
- @package
- BOOL *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- + (instancetype)array {
- return [[[self alloc] initWithValues:NULL count:0] autorelease];
- }
- + (instancetype)arrayWithValue:(BOOL)value {
- // Cast is needed so the compiler knows what class we are invoking initWithValues: on to get
- // the type correct.
- return [[(GPBBoolArray*)[self alloc] initWithValues:&value count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBBoolArray *)array {
- return [[(GPBBoolArray*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithCapacity:(NSUInteger)count {
- return [[[self alloc] initWithCapacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBBoolArray *)array {
- return [self initWithValues:array->_values count:array->_count];
- }
- - (instancetype)initWithValues:(const BOOL [])values count:(NSUInteger)count {
- self = [super init];
- if (self) {
- if (count && values) {
- _values = malloc(count * sizeof(BOOL));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(BOOL));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(BOOL))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithCapacity:(NSUInteger)count {
- self = [self initWithValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBBoolArray allocWithZone:zone] initWithValues:_values count:_count];
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBBoolArray *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBBoolArray class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(BOOL))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%d", _values[i]];
- } else {
- [result appendFormat:@", %d", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateValuesWithBlock:(void (^)(BOOL value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(BOOL value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- - (BOOL)valueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- return _values[index];
- }
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(BOOL));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(BOOL))];
- }
- _capacity = newCapacity;
- }
- - (void)addValue:(BOOL)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const BOOL [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(BOOL));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(BOOL)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(BOOL));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(BOOL)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addValuesFromArray:(GPBBoolArray *)array {
- [self addValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(BOOL));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- BOOL temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- @end
- //%PDDM-EXPAND-END (7 expansions)
- #pragma mark - Enum
- @implementation GPBEnumArray {
- @package
- GPBEnumValidationFunc _validationFunc;
- int32_t *_values;
- NSUInteger _count;
- NSUInteger _capacity;
- }
- @synthesize count = _count;
- @synthesize validationFunc = _validationFunc;
- + (instancetype)array {
- return [[[self alloc] initWithValidationFunction:NULL
- rawValues:NULL
- count:0] autorelease];
- }
- + (instancetype)arrayWithValidationFunction:(GPBEnumValidationFunc)func {
- return [[[self alloc] initWithValidationFunction:func
- rawValues:NULL
- count:0] autorelease];
- }
- + (instancetype)arrayWithValidationFunction:(GPBEnumValidationFunc)func
- rawValue:(int32_t)value {
- return [[[self alloc] initWithValidationFunction:func
- rawValues:&value
- count:1] autorelease];
- }
- + (instancetype)arrayWithValueArray:(GPBEnumArray *)array {
- return [[(GPBEnumArray*)[self alloc] initWithValueArray:array] autorelease];
- }
- + (instancetype)arrayWithValidationFunction:(GPBEnumValidationFunc)func
- capacity:(NSUInteger)count {
- return [[[self alloc] initWithValidationFunction:func capacity:count] autorelease];
- }
- - (instancetype)init {
- return [self initWithValidationFunction:NULL rawValues:NULL count:0];
- }
- - (instancetype)initWithValueArray:(GPBEnumArray *)array {
- return [self initWithValidationFunction:array->_validationFunc
- rawValues:array->_values
- count:array->_count];
- }
- - (instancetype)initWithValidationFunction:(GPBEnumValidationFunc)func {
- return [self initWithValidationFunction:func rawValues:NULL count:0];
- }
- - (instancetype)initWithValidationFunction:(GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- count:(NSUInteger)count {
- self = [super init];
- if (self) {
- _validationFunc = (func != NULL ? func : ArrayDefault_IsValidValue);
- if (count && values) {
- _values = malloc(count * sizeof(int32_t));
- if (values != NULL) {
- _capacity = count;
- memcpy(_values, values, count * sizeof(int32_t));
- _count = count;
- } else {
- [self release];
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(count * sizeof(int32_t))];
- }
- }
- }
- return self;
- }
- - (instancetype)initWithValidationFunction:(GPBEnumValidationFunc)func
- capacity:(NSUInteger)count {
- self = [self initWithValidationFunction:func rawValues:NULL count:0];
- if (self && count) {
- [self internalResizeToCapacity:count];
- }
- return self;
- }
- - (instancetype)copyWithZone:(NSZone *)zone {
- return [[GPBEnumArray allocWithZone:zone]
- initWithValidationFunction:_validationFunc
- rawValues:_values
- count:_count];
- }
- //%PDDM-EXPAND ARRAY_IMMUTABLE_CORE(Enum, int32_t, Raw, %d)
- // This block of code is generated, do not edit it directly.
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- free(_values);
- [super dealloc];
- }
- - (BOOL)isEqual:(GPBEnumArray *)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[GPBEnumArray class]]) {
- return NO;
- }
- return (_count == other->_count
- && memcmp(_values, other->_values, (_count * sizeof(int32_t))) == 0);
- }
- - (NSUInteger)hash {
- // Follow NSArray's lead, and use the count as the hash.
- return _count;
- }
- - (NSString *)description {
- NSMutableString *result = [NSMutableString stringWithFormat:@"<%@ %p> { ", [self class], self];
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- if (i == 0) {
- [result appendFormat:@"%d", _values[i]];
- } else {
- [result appendFormat:@", %d", _values[i]];
- }
- }
- [result appendFormat:@" }"];
- return result;
- }
- - (void)enumerateRawValuesWithBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateRawValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateRawValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- if ((opts & NSEnumerationReverse) == 0) {
- for (NSUInteger i = 0, count = _count; i < count; ++i) {
- block(_values[i], i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- for (NSUInteger i = _count; i > 0; --i) {
- block(_values[i - 1], (i - 1), &stop);
- if (stop) break;
- }
- }
- }
- //%PDDM-EXPAND-END ARRAY_IMMUTABLE_CORE(Enum, int32_t, Raw, %d)
- - (int32_t)valueAtIndex:(NSUInteger)index {
- //%PDDM-EXPAND VALIDATE_RANGE(index, _count)
- // This block of code is generated, do not edit it directly.
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- //%PDDM-EXPAND-END VALIDATE_RANGE(index, _count)
- int32_t result = _values[index];
- if (!_validationFunc(result)) {
- result = kGPBUnrecognizedEnumeratorValue;
- }
- return result;
- }
- - (int32_t)rawValueAtIndex:(NSUInteger)index {
- //%PDDM-EXPAND VALIDATE_RANGE(index, _count)
- // This block of code is generated, do not edit it directly.
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- //%PDDM-EXPAND-END VALIDATE_RANGE(index, _count)
- return _values[index];
- }
- - (void)enumerateValuesWithBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- [self enumerateValuesWithOptions:0 usingBlock:block];
- }
- - (void)enumerateValuesWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block {
- // NSEnumerationConcurrent isn't currently supported (and Apple's docs say that is ok).
- BOOL stop = NO;
- GPBEnumValidationFunc func = _validationFunc;
- if ((opts & NSEnumerationReverse) == 0) {
- int32_t *scan = _values;
- int32_t *end = scan + _count;
- for (NSUInteger i = 0; scan < end; ++i, ++scan) {
- int32_t value = *scan;
- if (!func(value)) {
- value = kGPBUnrecognizedEnumeratorValue;
- }
- block(value, i, &stop);
- if (stop) break;
- }
- } else if (_count > 0) {
- int32_t *end = _values;
- int32_t *scan = end + (_count - 1);
- for (NSUInteger i = (_count - 1); scan >= end; --i, --scan) {
- int32_t value = *scan;
- if (!func(value)) {
- value = kGPBUnrecognizedEnumeratorValue;
- }
- block(value, i, &stop);
- if (stop) break;
- }
- }
- }
- //%PDDM-EXPAND ARRAY_MUTABLE_CORE(Enum, int32_t, Raw, %d)
- // This block of code is generated, do not edit it directly.
- - (void)internalResizeToCapacity:(NSUInteger)newCapacity {
- _values = reallocf(_values, newCapacity * sizeof(int32_t));
- if (_values == NULL) {
- _capacity = 0;
- _count = 0;
- [NSException raise:NSMallocException
- format:@"Failed to allocate %lu bytes",
- (unsigned long)(newCapacity * sizeof(int32_t))];
- }
- _capacity = newCapacity;
- }
- - (void)addRawValue:(int32_t)value {
- [self addRawValues:&value count:1];
- }
- - (void)addRawValues:(const int32_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(int32_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertRawValue:(int32_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(int32_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withRawValue:(int32_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- _values[index] = value;
- }
- - (void)addRawValuesFromArray:(GPBEnumArray *)array {
- [self addRawValues:array->_values count:array->_count];
- }
- - (void)removeValueAtIndex:(NSUInteger)index {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- NSUInteger newCount = _count - 1;
- if (index != newCount) {
- memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(int32_t));
- }
- _count = newCount;
- if ((newCount + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- }
- - (void)removeAll {
- _count = 0;
- if ((0 + (2 * kChunkSize)) < _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(0)];
- }
- }
- - (void)exchangeValueAtIndex:(NSUInteger)idx1
- withValueAtIndex:(NSUInteger)idx2 {
- if (idx1 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx1, (unsigned long)_count];
- }
- if (idx2 >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)idx2, (unsigned long)_count];
- }
- int32_t temp = _values[idx1];
- _values[idx1] = _values[idx2];
- _values[idx2] = temp;
- }
- //%PDDM-EXPAND MUTATION_METHODS(Enum, int32_t, , EnumValidationList, EnumValidationOne)
- // This block of code is generated, do not edit it directly.
- - (void)addValue:(int32_t)value {
- [self addValues:&value count:1];
- }
- - (void)addValues:(const int32_t [])values count:(NSUInteger)count {
- if (values == NULL || count == 0) return;
- GPBEnumValidationFunc func = _validationFunc;
- for (NSUInteger i = 0; i < count; ++i) {
- if (!func(values[i])) {
- [NSException raise:NSInvalidArgumentException
- format:@"%@: Attempt to set an unknown enum value (%d)",
- [self class], values[i]];
- }
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + count;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- memcpy(&_values[initialCount], values, count * sizeof(int32_t));
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)insertValue:(int32_t)value atIndex:(NSUInteger)index {
- if (index >= _count + 1) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count + 1];
- }
- if (!_validationFunc(value)) {
- [NSException raise:NSInvalidArgumentException
- format:@"%@: Attempt to set an unknown enum value (%d)",
- [self class], value];
- }
- NSUInteger initialCount = _count;
- NSUInteger newCount = initialCount + 1;
- if (newCount > _capacity) {
- [self internalResizeToCapacity:CapacityFromCount(newCount)];
- }
- _count = newCount;;
- if (index != initialCount) {
- memmove(&_values[index + 1], &_values[index], (initialCount - index) * sizeof(int32_t));
- }
- _values[index] = value;
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)replaceValueAtIndex:(NSUInteger)index withValue:(int32_t)value {
- if (index >= _count) {
- [NSException raise:NSRangeException
- format:@"Index (%lu) beyond bounds (%lu)",
- (unsigned long)index, (unsigned long)_count];
- }
- if (!_validationFunc(value)) {
- [NSException raise:NSInvalidArgumentException
- format:@"%@: Attempt to set an unknown enum value (%d)",
- [self class], value];
- }
- _values[index] = value;
- }
- //%PDDM-EXPAND-END (2 expansions)
- //%PDDM-DEFINE MUTATION_HOOK_EnumValidationList()
- //% GPBEnumValidationFunc func = _validationFunc;
- //% for (NSUInteger i = 0; i < count; ++i) {
- //% if (!func(values[i])) {
- //% [NSException raise:NSInvalidArgumentException
- //% format:@"%@: Attempt to set an unknown enum value (%d)",
- //% [self class], values[i]];
- //% }
- //% }
- //%
- //%PDDM-DEFINE MUTATION_HOOK_EnumValidationOne()
- //% if (!_validationFunc(value)) {
- //% [NSException raise:NSInvalidArgumentException
- //% format:@"%@: Attempt to set an unknown enum value (%d)",
- //% [self class], value];
- //% }
- //%
- @end
- #pragma mark - NSArray Subclass
- @implementation GPBAutocreatedArray {
- NSMutableArray *_array;
- }
- - (void)dealloc {
- NSAssert(!_autocreator, @"Autocreator must be cleared before release.");
- [_array release];
- [super dealloc];
- }
- #pragma mark Required NSArray overrides
- - (NSUInteger)count {
- return [_array count];
- }
- - (id)objectAtIndex:(NSUInteger)idx {
- return [_array objectAtIndex:idx];
- }
- #pragma mark Required NSMutableArray overrides
- // Only need to call GPBAutocreatedArrayModified() when adding things since
- // we only autocreate empty arrays.
- - (void)insertObject:(id)anObject atIndex:(NSUInteger)idx {
- if (_array == nil) {
- _array = [[NSMutableArray alloc] init];
- }
- [_array insertObject:anObject atIndex:idx];
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)removeObject:(id)anObject {
- [_array removeObject:anObject];
- }
- - (void)removeObjectAtIndex:(NSUInteger)idx {
- [_array removeObjectAtIndex:idx];
- }
- - (void)addObject:(id)anObject {
- if (_array == nil) {
- _array = [[NSMutableArray alloc] init];
- }
- [_array addObject:anObject];
- if (_autocreator) {
- GPBAutocreatedArrayModified(_autocreator, self);
- }
- }
- - (void)removeLastObject {
- [_array removeLastObject];
- }
- - (void)replaceObjectAtIndex:(NSUInteger)idx withObject:(id)anObject {
- [_array replaceObjectAtIndex:idx withObject:anObject];
- }
- #pragma mark Extra things hooked
- - (id)copyWithZone:(NSZone *)zone {
- if (_array == nil) {
- _array = [[NSMutableArray alloc] init];
- }
- return [_array copyWithZone:zone];
- }
- - (id)mutableCopyWithZone:(NSZone *)zone {
- if (_array == nil) {
- _array = [[NSMutableArray alloc] init];
- }
- return [_array mutableCopyWithZone:zone];
- }
- - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
- objects:(id __unsafe_unretained [])buffer
- count:(NSUInteger)len {
- return [_array countByEnumeratingWithState:state objects:buffer count:len];
- }
- - (void)enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {
- [_array enumerateObjectsUsingBlock:block];
- }
- - (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts
- usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {
- [_array enumerateObjectsWithOptions:opts usingBlock:block];
- }
- @end
|