forked from itod/parsekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKDelimitDescriptorCollection.m
More file actions
65 lines (48 loc) · 1.28 KB
/
Copy pathPKDelimitDescriptorCollection.m
File metadata and controls
65 lines (48 loc) · 1.28 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
//
// PKDelimitDescriptorCollection.m
// ParseKit
//
// Created by Todd Ditchendorf on 3/20/13.
//
//
#import "PKDelimitDescriptorCollection.h"
#import "PKDelimitDescriptor.h"
@interface PKDelimitDescriptorCollection ()
@property (nonatomic, retain) NSMutableDictionary *descTab;
@end
@implementation PKDelimitDescriptorCollection
- (id)init {
self = [super init];
if (self) {
self.descTab = [NSMutableDictionary dictionary];
}
return self;
}
- (void)dealloc {
self.descTab = nil;
[super dealloc];
}
- (void)add:(PKDelimitDescriptor *)desc {
NSParameterAssert(desc);
NSString *key = desc.startMarker;
NSAssert([key length], @"");
NSMutableSet *existing = _descTab[key];
if (!existing) {
existing = [NSMutableSet set];
_descTab[key] = existing;
}
[existing addObject:desc];
}
- (void)remove:(PKDelimitDescriptor *)desc {
NSParameterAssert(desc);
NSString *key = desc.startMarker;
NSAssert([key length], @"");
NSMutableSet *existing = _descTab[key];
NSAssert([existing containsObject:desc], @"");
[existing removeObject:desc];
}
- (NSArray *)descriptorsForStartMarker:(NSString *)startMarker {
NSParameterAssert(startMarker);
return [_descTab[startMarker] allObjects];
}
@end