-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNSArray+BPFoundationExtensions.m
More file actions
312 lines (244 loc) · 7.47 KB
/
NSArray+BPFoundationExtensions.m
File metadata and controls
312 lines (244 loc) · 7.47 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
//
// NSArray+BPFoundationExtensions.m
// BPFoundation
//
// Created by Jon Olson on 7/9/09.
// Copyright 2009 Ballistic Pigeon, LLC. All rights reserved.
//
#import "NSArray+BPFoundationExtensions.h"
@implementation NSArray (BPFoundationExtensions)
#if NS_BLOCKS_AVAILABLE
- (NSArray *)map:(id (^)(id))block {
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self)
items[i++] = block(item);
NSArray *result = [NSArray arrayWithObjects:items count:count];
free(items);
return result;
}
- (NSArray *)select:(BOOL (^)(id))block {
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self)
if (block(item))
items[i++] = item;
NSArray *result = [NSArray arrayWithObjects:items count:i];
free(items);
return result;
}
- (NSArray *)reject:(BOOL (^)(id))block {
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self)
if (!block(item))
items[i++] = item;
NSArray *result = [NSArray arrayWithObjects:items count:i];
free(items);
return result;
}
- (NSArray *)reduce:(id (^)(id, id))block withInitialValue:(id)value {
for (id item in self)
value = block(value, item);
return value;
}
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
- (NSArray *)mapConcurrent:(id (^)(id))block {
dispatch_group_t group = dispatch_group_create();
dispatch_queue_t queue = dispatch_get_current_queue();
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self) {
id *result = &items[i++];
dispatch_group_async(group, queue, ^{
*result = block(item);
});
}
dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
NSArray *result = [NSArray arrayWithObjects:items count:count];
free(items);
return result;
}
- (NSArray *)selectConcurrent:(BOOL (^)(id))block {
dispatch_group_t group = dispatch_group_create();
dispatch_queue_t queue = dispatch_get_current_queue();
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self) {
id *result = &items[i++];
dispatch_group_async(group, queue, ^{
*result = block(item) ? item : nil;
});
}
dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
id compacted[count];
NSInteger c = 0;
for (i = 0; i < count; i++)
if (items[i])
compacted[c++] = items[i];
NSArray *result = [NSArray arrayWithObjects:items count:c];
free(items);
return result;
}
- (NSArray *)rejectConcurrent:(BOOL (^)(id))block {
dispatch_group_t group = dispatch_group_create();
dispatch_queue_t queue = dispatch_get_current_queue();
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = 0;
for (id item in self) {
id *result = &items[i++];
dispatch_group_async(group, queue, ^{
*result = !block(item) ? item : nil;
});
}
dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
id compacted[count];
NSInteger c = 0;
for (i = 0; i < count; i++)
if (items[i])
compacted[c++] = items[i];
NSArray *result = [NSArray arrayWithObjects:items count:c];
free(items);
return result;
}
#endif
static NSComparisonResult SortComparator(id first, id second, void *block) {
NSComparisonResult (^comparator)(id, id) = block;
return comparator(first, second);
}
- (NSArray *)sort:(NSComparisonResult (^)(id, id))comparator {
return [self sortedArrayUsingFunction:SortComparator context:comparator];
}
#endif
- (NSArray *)reversedArray {
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
NSInteger i = count - 1;
for (id item in self)
items[i--] = item;
NSArray *result = [NSArray arrayWithObjects:items count:count];
free(items);
return result;
}
- (NSArray *)shuffledArray {
static BOOL randomized = NO;
const NSInteger count = [self count];
id *items = malloc(sizeof(id)*count);
if (!items)
return nil;
if (!randomized) {
srandomdev();
randomized = YES;
}
NSInteger i = 0;
for (id item in self)
items[i++] = item;
// Swap each item with an item at an index greater than or equal to its current index.
// This ammounts to picking n items from an urn of n balls without replacement
// In other words, it generates any given permutation with probability 1/n!
for (i = 0; i < count; i++) {
NSInteger index = (random() % (count - i)) + i;
id tmp = items[i];
items[i] = items[index];
items[index] = tmp;
}
NSArray *result = [NSArray arrayWithObjects:items count:count];
free(items);
return result;
}
- (NSArray *)sortedArray {
return [self sortedArrayUsingSelector:@selector(compare:)];
}
- (NSArray *)flattenedArray {
NSMutableArray *result = [NSMutableArray arrayWithCapacity:[self count]];
for (id item in self) {
if ([item isKindOfClass:[NSArray class]])
[result addObjectsFromArray:[((NSArray *)item) flattenedArray]];
else
[result addObject:item];
}
return result;
}
#if NS_BLOCKS_AVAILABLE
- (NSArray *)mapSelector:(SEL)selector {
return [self map:^(id object) {
return [object performSelector:selector];
}];
}
- (NSArray *)mapSelector:(SEL)selector withArgument:(id)argument {
return [self map:^(id object) {
return [object performSelector:selector withObject:argument];
}];
}
- (NSArray *)mapSelector:(SEL)selector withArgument:(id)argument withArgument:(id)secondArgument {
return [self map:^(id object) {
return [object performSelector:selector withObject:argument withObject:secondArgument];
}];
}
#else
- (NSArray *)mapSelector:(SEL)selector {
NSMutableArray *result = [NSMutableArray array];
for (id item in self)
[result addObject:[item performSelector:selector]];
return result;
}
- (NSArray *)mapSelector:(SEL)selector withArgument:(id)argument {
NSMutableArray *result = [NSMutableArray array];
for (id item in self)
[result addObject:[item performSelector:selector withObject:argument]];
return result;
}
- (NSArray *)mapSelector:(SEL)selector withArgument:(id)argument withArgument:(id)secondArgument {
NSMutableArray *result = [NSMutableArray array];
for (id item in self)
[result addObject:[item performSelector:selector withObject:argument withObject:secondArgument]];
return result;
}
#endif
#if NS_BLOCKS_AVAILABLE
- (NSDictionary *)dictionaryByApplyingBlock:(id (^)(id))block {
NSMutableArray *keys = [NSMutableArray arrayWithCapacity:[self count]];
for (id item in self)
[keys addObject:block(item)];
return [NSDictionary dictionaryWithObjects:self forKeys:keys];
}
#endif
- (NSDictionary *)dictionaryByApplyingSelector:(SEL)selector {
NSMutableDictionary *map = [NSMutableDictionary dictionary];
for (id item in self)
[map setObject:item forKey:[item performSelector:selector]];
return map;
}
- (NSDictionary *)dictionaryByApplyingSelector:(SEL)selector withArgument:(id)argument {
NSMutableDictionary *map = [NSMutableDictionary dictionary];
for (id item in self)
[map setObject:item forKey:[item performSelector:selector withObject:argument]];
return map;
}
- (NSDictionary *)dictionaryByApplyingSelector:(SEL)selector withArgument:(id)argument withArgument:(id)secondArgument {
NSMutableDictionary *map = [NSMutableDictionary dictionary];
for (id item in self)
[map setObject:item forKey:[item performSelector:selector withObject:argument withObject:secondArgument]];
return map;
}
@end