-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCOPrimitiveCollection.m
More file actions
798 lines (642 loc) · 19.5 KB
/
COPrimitiveCollection.m
File metadata and controls
798 lines (642 loc) · 19.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
/*
Copyright (C) 2013 Eric Wasylishen
Date: December 2013
License: MIT (see COPYING)
*/
#import "COPrimitiveCollection.h"
#import "COObject.h"
#import "COPath.h"
#pragma clang diagnostic ignored "-Wobjc-designated-initializers"
@implementation COWeakRef
- (instancetype)initWithObject: (COObject *)anObject
{
SUPERINIT;
_object = anObject;
return self;
}
@end
static inline BOOL COIsTombstone(NSObject *obj)
{
return [obj isKindOfClass: [COPath class]];
}
static inline void COThrowExceptionIfNotMutable(BOOL permanent, int temp)
{
if (!permanent && temp == 0)
{
[NSException raise: NSGenericException
format: @"Attempted to modify an immutable collection"];
}
}
static inline void COThrowExceptionIfOutOfBounds(COMutableArray *self,
NSUInteger index,
BOOL isInsertion)
{
NSUInteger maxIndex = isInsertion ? self.count : self.count - 1;
if (index > maxIndex)
{
[NSException raise: NSRangeException
format: @"Attempt to access index %lu out of bounds (%lu) for %@",
(unsigned long)index, (unsigned long)self.count - 1, self];
}
}
@implementation COMutableArray
@synthesize backing = _backing;
- (void)beginMutation
{
_temporaryMutable++;
}
- (void)endMutation
{
_temporaryMutable--;
if (_temporaryMutable < 0)
{
/*
* Currently, we need to "eat" extra -endTemporaryModification calls because
* during deserialization, we create a new COPrimitiveCollection, add it to the
* variable storage, and then -didChangeValueForProperty: will make a
* -endTemporaryModification call. Since the collection was created after the
* -willChangeValueForProperty:, it didn't get the matching
* beginTemporaryModification call.
*/
_temporaryMutable = 0;
}
}
- (BOOL)isMutable
{
return _permanentlyMutable || _temporaryMutable > 0;
}
- (NSPointerArray *)makeBacking
{
return [NSPointerArray strongObjectsPointerArray];
}
- (instancetype)init
{
return [self initWithObjects: NULL count: 0];
}
- (instancetype)initWithObjects: (const id[])objects count: (NSUInteger)count
{
SUPERINIT;
_backing = [self makeBacking];
_externalIndexToBackingIndex = [NSPointerArray pointerArrayWithOptions:
NSPointerFunctionsOpaqueMemory | NSPointerFunctionsIntegerPersonality];
[self beginMutation];
for (NSUInteger i = 0; i < count; i++)
{
[self addReference: objects[i]];
}
[self endMutation];
return self;
}
- (instancetype)initWithCapacity: (NSUInteger)capacity
{
return [self init];
}
- (id)copyWithZone: (NSZone *)zone
{
COMutableArray *newArray = [[self class] allocWithZone: zone];
newArray->_backing = [_backing copyWithZone: zone];
newArray->_externalIndexToBackingIndex = [_externalIndexToBackingIndex copyWithZone: zone];
newArray->_permanentlyMutable = _permanentlyMutable;
newArray->_temporaryMutable = _temporaryMutable;
return newArray;
}
- (id)mutableCopyWithZone: (NSZone *)zone
{
COMutableArray *newArray = [self copyWithZone: zone];
newArray->_permanentlyMutable = YES;
newArray->_temporaryMutable = 0;
return newArray;
}
- (id <NSFastEnumeration>)enumerableReferences
{
return _backing;
}
- (id)referenceAtIndex: (NSUInteger)index
{
return [_backing pointerAtIndex: index];
}
- (void)addReference: (id)aReference
{
NILARG_EXCEPTION_TEST(aReference);
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
if (!COIsTombstone(aReference))
{
[_externalIndexToBackingIndex addPointer: (void *)_backing.count];
}
[_backing addPointer: (__bridge void *)aReference];
}
- (NSUInteger)firstExternalIndexGreaterThanOrEqualToBackingIndex: (NSUInteger)index
{
const NSUInteger externalCount = _externalIndexToBackingIndex.count;
for (NSUInteger externalI = 0; externalI < externalCount; externalI++)
{
const NSUInteger backingI = (NSUInteger)[_externalIndexToBackingIndex pointerAtIndex: externalI];
if (backingI >= index)
return externalI;
}
return NSNotFound;
}
- (void)shiftBackingIndicesGreaterThanOrEqualTo: (NSUInteger)index by: (NSInteger)delta
{
const NSUInteger externalCount = _externalIndexToBackingIndex.count;
for (NSUInteger i = 0; i < externalCount; i++)
{
const NSUInteger backingI = (NSUInteger)[_externalIndexToBackingIndex pointerAtIndex: i];
if (backingI >= index)
{
const NSUInteger shifted = backingI + delta;
[_externalIndexToBackingIndex replacePointerAtIndex: i
withPointer: (void *)shifted];
}
}
}
- (void)replaceReferenceAtIndex: (NSUInteger)index withReference: (id)aReference
{
NILARG_EXCEPTION_TEST(aReference);
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
const BOOL wasTombstone = COIsTombstone((id)[_backing pointerAtIndex: index]);
const BOOL willBeTombstone = COIsTombstone(aReference);
if (!wasTombstone && willBeTombstone)
{
NSUInteger externalI = [self firstExternalIndexGreaterThanOrEqualToBackingIndex: index];
[_externalIndexToBackingIndex removePointerAtIndex: externalI];
}
else if (wasTombstone && !willBeTombstone)
{
NSUInteger externalI = [self firstExternalIndexGreaterThanOrEqualToBackingIndex: index];
if (externalI == NSNotFound)
{
// inserting at the end
[_externalIndexToBackingIndex addPointer: (void *)index];
}
else
{
[_externalIndexToBackingIndex insertPointer: (void *)index
atIndex: externalI];
}
}
[_backing replacePointerAtIndex: index withPointer: (__bridge void *)aReference];
}
- (NSUInteger)count
{
return _externalIndexToBackingIndex.count;
}
- (NSUInteger)backingIndex: (NSUInteger)index
{
return (NSUInteger)[_externalIndexToBackingIndex pointerAtIndex: index];
}
- (id)objectAtIndex: (NSUInteger)index
{
COThrowExceptionIfOutOfBounds(self, index, NO);
return [_backing pointerAtIndex: [self backingIndex: index]];
}
- (void)addObject: (id)anObject
{
NSUInteger count = self.count;
[self insertObject: anObject atIndex: (count > 0 ? count : 0)];
}
- (void)insertObject: (id)anObject atIndex: (NSUInteger)index
{
NILARG_EXCEPTION_TEST(anObject);
INVALIDARG_EXCEPTION_TEST(anObject, !COIsTombstone(anObject));
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
COThrowExceptionIfOutOfBounds(self, index, YES);
// NSPointerArray on 10.9 (at least) doesn't allow inserting at the end using index == count, so
// call addPointer in that case as a workaround.
if (index == _externalIndexToBackingIndex.count)
{
// insert at end
[_externalIndexToBackingIndex addPointer: (void *)_backing.count];
[_backing addPointer: (__bridge void *)anObject];
}
else
{
// insert in the beginning or middle
NSUInteger backingIndex = [self backingIndex: index];
[self shiftBackingIndicesGreaterThanOrEqualTo: backingIndex by: 1];
[_externalIndexToBackingIndex insertPointer: (void *)backingIndex
atIndex: index];
[_backing insertPointer: (__bridge void *)anObject
atIndex: backingIndex];
}
}
- (void)removeLastObject
{
NSUInteger count = self.count;
if (count == 0)
return;
[self removeObjectAtIndex: count - 1];
}
- (void)removeObjectAtIndex: (NSUInteger)index
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
COThrowExceptionIfOutOfBounds(self, index, NO);
NSUInteger backingIndex = [self backingIndex: index];
[_backing removePointerAtIndex: backingIndex];
[_externalIndexToBackingIndex removePointerAtIndex: index];
[self shiftBackingIndicesGreaterThanOrEqualTo: backingIndex by: -1];
}
- (void)replaceObjectAtIndex: (NSUInteger)index withObject: (id)anObject
{
NILARG_EXCEPTION_TEST(anObject);
INVALIDARG_EXCEPTION_TEST(anObject, !COIsTombstone(anObject));
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
COThrowExceptionIfOutOfBounds(self, index, NO);
[_backing replacePointerAtIndex: [self backingIndex: index]
withPointer: (__bridge void *)anObject];
}
// TODO: Compute a diff between the receiver objects and the ones in argument,
// then apply insertion, move and removal operations to the receiver derived
// from the diff. In this way, the dead references would shifted around more properly.
- (void)setArray: (NSArray *)liveObjects
{
NILARG_EXCEPTION_TEST(liveObjects);
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
NSArray *deadReferences = [_backing.allObjects filteredCollectionWithBlock: ^(id obj)
{
return COIsTombstone(obj);
}];
_backing.count = 0;
_externalIndexToBackingIndex.count = 0;
NSArray *validLiveObjects = (liveObjects != nil ? liveObjects : [NSArray new]);
for (id reference in [validLiveObjects arrayByAddingObjectsFromArray: deadReferences])
{
[self addReference: reference];
}
}
// NOTE: For any additional mutation methods added, ensure they are overridden
// in COUnsafeRetainedMutableArray to enforce no duplicates
@end
@implementation COMutableArray (TestPrimitiveCollection)
- (NSIndexSet *)deadIndexes
{
return [self.allReferences indexesOfObjectsPassingTest: ^(id obj, NSUInteger idx, BOOL *stop)
{
return [obj isKindOfClass: [COPath class]];
}];
}
- (NSArray *)deadReferences
{
return [self.allReferences objectsAtIndexes: self.deadIndexes];
}
- (NSArray *)allReferences
{
NSMutableArray *results = [NSMutableArray new];
for (id ref in self.enumerableReferences)
{
[results addObject: ref];
}
return results;
}
@end
@implementation COUnsafeRetainedMutableArray
- (NSPointerArray *)makeBacking
{
return [NSPointerArray weakObjectsPointerArray];
}
- (NSHashTable *)makeBackingHashTable
{
return [NSHashTable weakObjectsHashTable];
}
- (instancetype)initWithObjects: (const id[])objects count: (NSUInteger)count
{
self = [super initWithObjects: objects count: count];
if (self == nil)
return nil;
_deadReferences = [NSMutableSet new];
_backingHashTable = [self makeBackingHashTable];
return self;
}
- (id)copyWithZone: (NSZone *)zone
{
COUnsafeRetainedMutableArray *newArray = [super copyWithZone: zone];
newArray->_deadReferences = [_deadReferences mutableCopyWithZone: zone];
newArray->_backingHashTable = [_backingHashTable copyWithZone: zone];
return newArray;
}
- (BOOL)checkPresentAndAddToHashTable: (id)anObject
{
if ([_backingHashTable containsObject: anObject])
{
return YES;
}
else
{
[_backingHashTable addObject: anObject];
return NO;
}
}
- (void)addReference: (id)aReference
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// discard duplicates
if ([self checkPresentAndAddToHashTable: aReference])
return;
[super addReference: aReference];
if (COIsTombstone(aReference))
{
[_deadReferences addObject: aReference];
}
}
- (void)replaceReferenceAtIndex: (NSUInteger)index withReference: (id)aReference
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// discard duplicates
if ([self checkPresentAndAddToHashTable: aReference])
return;
// remove old value from hash table
id oldValue = [_backing pointerAtIndex: index];
[_backingHashTable removeObject: oldValue];
if (COIsTombstone(oldValue))
{
[_deadReferences removeObject: oldValue];
}
[super replaceReferenceAtIndex: index withReference: aReference];
if (COIsTombstone(aReference))
{
[_deadReferences addObject: aReference];
}
}
- (void)insertObject: (id)anObject atIndex: (NSUInteger)index
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// discard duplicates
if ([self checkPresentAndAddToHashTable: anObject])
return;
[super insertObject: anObject atIndex: index];
}
- (void)removeObjectAtIndex: (NSUInteger)index
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// remove old value from hash table
[_backingHashTable removeObject: self[index]];
[super removeObjectAtIndex: index];
}
- (void)replaceObjectAtIndex: (NSUInteger)index withObject: (id)anObject
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// discard duplicates
if ([self checkPresentAndAddToHashTable: anObject])
return;
// remove old value from hash table
[_backingHashTable removeObject: self[index]];
[super replaceObjectAtIndex: index withObject: anObject];
}
- (void)setArray: (NSArray *)liveObjects
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
// remove old values from hash table
[_backingHashTable removeAllObjects];
[super setArray: liveObjects];
}
@end
@implementation COMutableSet
- (void)beginMutation
{
_temporaryMutable++;
}
- (void)endMutation
{
_temporaryMutable--;
if (_temporaryMutable < 0)
{
_temporaryMutable = 0;
}
}
- (BOOL)isMutable
{
return _permanentlyMutable || _temporaryMutable > 0;
}
- (NSHashTable *)makeBacking
{
return [[NSHashTable alloc] init];
}
- (instancetype)init
{
return [self initWithObjects: NULL count: 0];
}
- (instancetype)initWithObjects: (const id[])objects count: (NSUInteger)count
{
SUPERINIT;
_backing = [self makeBacking];
_deadReferences = [NSHashTable new];
[self beginMutation];
for (NSUInteger i = 0; i < count; i++)
{
[self addReference: objects[i]];
}
[self endMutation];
return self;
}
- (instancetype)initWithCapacity: (NSUInteger)numItems
{
return [self init];
}
- (id)copyWithZone: (NSZone *)zone
{
COMutableSet *newSet = [[self class] allocWithZone: zone];
newSet->_backing = [_backing copyWithZone: zone];
newSet->_deadReferences = [_deadReferences copyWithZone: zone];
newSet->_permanentlyMutable = _permanentlyMutable;
newSet->_temporaryMutable = _temporaryMutable;
return newSet;
}
- (id)mutableCopyWithZone: (NSZone *)zone
{
COMutableSet *newSet = [self copyWithZone: zone];
newSet->_permanentlyMutable = YES;
newSet->_temporaryMutable = 0;
return newSet;
}
- (id <NSFastEnumeration>)enumerableReferences
{
return _backing;
}
- (void)addReference: (id)aReference
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
[_backing addObject: aReference];
if (COIsTombstone(aReference))
{
[_deadReferences addObject: aReference];
}
}
- (void)removeReference: (id)aReference
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
[_backing removeObject: aReference];
if (COIsTombstone(aReference))
{
[_deadReferences removeObject: aReference];
}
}
- (BOOL)containsReference: (id)aReference
{
return [_backing member: aReference] != nil;
}
- (NSHashTable *)aliveObjects
{
NSHashTable *aliveObjects = [_backing mutableCopy];
[aliveObjects minusHashTable: _deadReferences];
return aliveObjects;
}
- (NSUInteger)count
{
return _backing.count - _deadReferences.count;
}
- (id)member: (id)anObject
{
return [_deadReferences member: anObject] == nil ? [_backing member: anObject] : nil;
}
- (NSEnumerator *)objectEnumerator
{
return [[self aliveObjects] objectEnumerator];
}
- (void)addObject: (id)anObject
{
INVALIDARG_EXCEPTION_TEST(anObject, !COIsTombstone(anObject));
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
[_backing addObject: anObject];
}
- (void)removeObject: (id)anObject
{
INVALIDARG_EXCEPTION_TEST(anObject, !COIsTombstone(anObject));
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
[_backing removeObject: anObject];
}
- (NSArray *)deadReferencesArray
{
return _deadReferences.allObjects;
}
@end
@implementation COMutableSet (TestPrimitiveCollection)
- (NSSet *)deadReferences
{
return [self.allReferences objectsPassingTest: ^(id obj, BOOL *stop)
{
return [obj isKindOfClass: [COPath class]];
}];
}
- (NSSet *)allReferences
{
NSMutableSet *results = [NSMutableSet new];
for (id ref in self.enumerableReferences)
{
[results addObject: ref];
}
return results;
}
@end
@implementation COUnsafeRetainedMutableSet
- (NSHashTable *)makeBacking
{
return [NSHashTable weakObjectsHashTable];
}
@end
@implementation COMutableDictionary
- (void)beginMutation
{
_temporaryMutable++;
}
- (void)endMutation
{
_temporaryMutable--;
if (_temporaryMutable < 0)
{
_temporaryMutable = 0;
}
}
- (BOOL)isMutable
{
return _permanentlyMutable || _temporaryMutable > 0;
}
- (instancetype)init
{
return [self initWithObjects: NULL forKeys: NULL count: 0];
}
- (instancetype)initWithObjects: (const id[])objects
forKeys: (const id <NSCopying>[])keys
count: (NSUInteger)count
{
SUPERINIT;
_backing = [[NSMutableDictionary alloc] initWithCapacity: count];
_deadKeys = [NSMutableSet new];
[self beginMutation];
for (NSUInteger i = 0; i < count; i++)
{
[self setReference: objects[i] forKey: keys[i]];
}
[self endMutation];
return self;
}
- (instancetype)initWithCapacity: (NSUInteger)aCount
{
return [self init];
}
- (id)copyWithZone: (NSZone *)zone
{
COMutableDictionary *newDictionary = [[self class] allocWithZone: zone];
newDictionary->_backing = [_backing copyWithZone: zone];
newDictionary->_deadKeys = [_deadKeys copyWithZone: zone];
newDictionary->_permanentlyMutable = _permanentlyMutable;
newDictionary->_temporaryMutable = _temporaryMutable;
return newDictionary;
}
- (id)mutableCopyWithZone: (NSZone *)zone
{
COMutableDictionary *newDictionary = [self copyWithZone: zone];
newDictionary->_permanentlyMutable = YES;
newDictionary->_temporaryMutable = 0;
return newDictionary;
}
- (id <NSFastEnumeration>)enumerableReferences
{
return [_backing objectEnumerator];
}
- (void)setReference: (id)aReference forKey: (id <NSCopying>)aKey
{
NILARG_EXCEPTION_TEST(aReference);
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
if (COIsTombstone(aReference))
{
[_deadKeys addObject: aKey];
}
if (COIsTombstone(_backing[aKey]))
{
[_deadKeys removeObject: aKey];
}
_backing[aKey] = aReference;
}
- (NSDictionary *)aliveEntries
{
NSMutableDictionary *aliveEntries = [_backing mutableCopy];
[_backing removeObjectsForKeys: _deadKeys.allObjects];
return aliveEntries;
}
- (NSUInteger)count
{
return _backing.count - _deadKeys.count;
}
- (id)objectForKey: (id)key
{
return ![_deadKeys containsObject: key] ? _backing[key] : nil;
}
- (NSEnumerator *)objectEnumerator
{
return [[self aliveEntries] objectEnumerator];
}
- (NSEnumerator *)keyEnumerator
{
return [[self aliveEntries] keyEnumerator];
}
- (void)removeObjectForKey: (id)aKey
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
[_backing removeObjectForKey: aKey];
}
- (void)setObject: (id)anObject forKey: (id <NSCopying>)aKey
{
COThrowExceptionIfNotMutable(_permanentlyMutable, _temporaryMutable);
_backing[aKey] = anObject;
}
@end