-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCWCollection.m
305 lines (242 loc) · 8.26 KB
/
CWCollection.m
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
//
// CWCollection.m
//
// Created by Clément Wehrung on 08/04/2014.
// Copyright (c) 2014 Clément Wehrung. All rights reserved.
//
#import "CWCollection.h"
#import "CWModel.h"
#define IS_OBJECT(T) _Generic( (T), id: YES, default: NO)
@interface CWCollection()
@property (nonatomic, strong, readwrite) NSMutableArray *models;
@property (nonatomic, strong, readwrite) NSArray *filteredModels;
@property (nonatomic, strong) NSMutableDictionary *dictionary;
@property (nonatomic, strong) NSComparator comparator;
@end
@implementation CWCollection
- (id)init
{
if (self = [super init]) {
_dictionary = [NSMutableDictionary dictionary];
_models = [NSMutableArray array];
_filteredModels = [NSArray array];
}
return self;
}
- (void)dealloc
{
for (id <CWCollectionModelProtocol> model in self.models) {
if ([model respondsToSelector:@selector(collection)] && model.collection == self) {
model.collection = nil;
}
}
_delegate = nil;
_dataSource = nil;
}
#pragma mark - Sort
- (NSComparisonResult)sortCompareModel:(id<CWCollectionModelProtocol>)model1 withModel:(id<CWCollectionModelProtocol>)model2
{
if (self.dataSource && [self.dataSource respondsToSelector:@selector(collection:sortCompareModel:withModel:)]) {
return [self.dataSource collection:self sortCompareModel:model1 withModel:model2];
} else {
return self.isAscending ? [model1.identifier compare:model2.identifier] : [model2.identifier compare:model1.identifier];
}
}
/**
* Sort
* Performs a full resort of the collection. Never called internally. Beware, the delegate won't be called with model
**/
- (void)sort
{
__weak CWCollection *weakSelf = self;
[self.models sortUsingComparator:^NSComparisonResult(id <CWCollectionModelProtocol> obj1, id <CWCollectionModelProtocol> obj2) {
return [weakSelf sortCompareModel:obj1 withModel:obj2];
}];
}
/**
* @return Provides the insert index of the model in the array. If no sort comparator is found, returns NSNotFound.
**/
- (NSUInteger)indexForInsertingModel:(id <CWCollectionModelProtocol>)model
{
// Inspired from: http://www.jayway.com/2009/03/28/adding-sorted-inserts-to-uimutablearray/
NSUInteger topIndex = self.models.count;
NSUInteger index = 0;
while (index < topIndex) {
NSUInteger midIndex = (index + topIndex) / 2;
id <CWCollectionModelProtocol> testModel = [self.models objectAtIndex:midIndex];
if ([self sortCompareModel:model withModel:testModel] > 0) {
index = midIndex + 1;
} else {
topIndex = midIndex;
}
}
return index;
}
#pragma mark - Accessors
- (id <CWCollectionModelProtocol>)modelWithIdentifier:(NSString *)identifier
{
return [self.dictionary objectForKey:identifier];
}
- (id)modelAtIndex:(NSUInteger)index
{
return [self.models objectAtIndex:index];
}
- (NSUInteger)indexOf:(id <CWCollectionModelProtocol>)model
{
return [self.models indexOfObject:model];
}
- (BOOL)hasModel:(id <CWCollectionModelProtocol>)model
{
return [self modelWithIdentifier:model.identifier] ? YES : NO;
}
#pragma mark - Add / Change / Move / Remove
- (void)addModel:(id <CWCollectionModelProtocol>)model
{
return [self addModel:model silent:NO];
}
- (void)addModel:(id <CWCollectionModelProtocol>)model silent:(BOOL)silent
{
id localModel = [self modelWithIdentifier:model.identifier];
if (!localModel)
{
if ([model respondsToSelector:@selector(setCollection:)]) {
model.collection = self;
}
if (![self.dictionary objectForKey:model.identifier])
{
NSUInteger insertIndex = [self indexForInsertingModel:model];
[self.models insertObject:model atIndex:insertIndex];
[self.dictionary setObject:model forKey:model.identifier];
[self refilter];
if (!silent) {
[self modelAdded:model atIndex:insertIndex];
}
}
}
}
- (void)removeModel:(id <CWCollectionModelProtocol>)model
{
[self removeModel:model silent:NO];
}
- (void)removeModel:(id <CWCollectionModelProtocol>)model silent:(BOOL)silent
{
return [self removeModelWithIdentifier:model.identifier silent:silent];
}
- (void)removeModelWithIdentifier:(NSString *)identifier
{
return [self removeModelWithIdentifier:identifier silent:NO];
}
- (void)removeModelWithIdentifier:(NSString *)identifier silent:(BOOL)silent
{
id <CWCollectionModelProtocol> localModel = [self modelWithIdentifier:identifier];
if (localModel)
{
NSUInteger index = [self indexOf:localModel];
[self.models removeObject:[_dictionary objectForKey:identifier]];
[self.dictionary removeObjectForKey:identifier];
[self refilter];
if (!silent) {
[self modelRemoved:localModel atIndex:index];
}
}
}
- (void)updateModel:(id <CWCollectionModelProtocol>)model
{
return [self updateModel:model silent:NO];
}
- (void)updateModel:(id <CWCollectionModelProtocol>)model silent:(BOOL)silent
{
id localModel = [self modelWithIdentifier:model.identifier];
if (localModel)
{
NSUInteger indexBeforeUpdate = [self indexOf:localModel];
BOOL didChange = [localModel updateWithDictionary:model.dictionary];
if (!silent && didChange)
{
[self modelUpdated:localModel atIndex:indexBeforeUpdate];
[self sort];
[self refilter];
NSUInteger indexAfterUpdate = [self indexOf:localModel];
BOOL modelDidMove = indexBeforeUpdate != indexAfterUpdate;
if (modelDidMove)
{
[self.models removeObject:localModel];
[self.models insertObject:localModel atIndex:indexAfterUpdate];
[self modelMoved:localModel fromIndex:indexBeforeUpdate toIndex:indexAfterUpdate];
}
}
}
}
#pragma mark - Delegate Notifiers
- (void)modelAdded:(id <CWCollectionModelProtocol>)model atIndex:(NSUInteger)index
{
if ([self.delegate respondsToSelector:@selector(collection:modelAdded:atIndex:)]) {
[self.delegate collection:self modelAdded:model atIndex:index];
}
[self collectionDidChange];
}
- (void)modelRemoved:(id <CWCollectionModelProtocol>)model atIndex:(NSUInteger)index
{
if ([self.delegate respondsToSelector:@selector(collection:modelRemoved:atIndex:)]) {
[self.delegate collection:self modelRemoved:model atIndex:index];
}
[self collectionDidChange];
}
- (void)modelUpdated:(id <CWCollectionModelProtocol>)model atIndex:(NSUInteger)index
{
if ([self.delegate respondsToSelector:@selector(collection:modelUpdated:atIndex:)]) {
[self.delegate collection:self modelUpdated:model atIndex:index];
}
[self collectionDidChange];
}
- (void)modelMoved:(id <CWCollectionModelProtocol>)model fromIndex:(NSUInteger)fromIndex toIndex:(NSUInteger)toIndex
{
if ([self.delegate respondsToSelector:@selector(collection:modelMoved:fromIndex:toIndex:)]) {
[self.delegate collection:self modelMoved:model fromIndex:fromIndex toIndex:toIndex];
}
[self collectionDidChange];
}
- (void)collectionDidChange
{
if ([self.delegate respondsToSelector:@selector(collectionDidChange:)]) {
id delegate = self.delegate;
[NSObject cancelPreviousPerformRequestsWithTarget:delegate selector:@selector(collectionDidChange:) object:self];
[delegate performSelector:@selector(collectionDidChange:) withObject:self afterDelay:0];
}
}
#pragma mark - Filter
- (void)setFilter:(NSPredicate *)filter
{
_filter = filter;
[self refilter];
}
- (void)refilter
{
self.filteredModels = self.filter ? [self.models filteredArrayUsingPredicate:self.filter] : nil;
}
- (NSArray *)filteredModels
{
return _filteredModels ?: self.models;
}
#pragma mark - Compliance
- (id)objectForKeyedSubscript:(id)key
{
return [self.dictionary objectForKey:key];
}
- (id)objectAtIndexedSubscript:(NSUInteger)index
{
return [self modelAtIndex:index];
}
- (id)objectAtIndex:(NSUInteger)index
{
return [self modelAtIndex:index];
}
- (NSEnumerator *)keyEnumerator
{
return [self.models objectEnumerator];
}
- (NSUInteger)count
{
return [self.models count];
}
@end