-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCXMLElement.m
233 lines (168 loc) · 4.82 KB
/
BCXMLElement.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
//
// BCXMLElement.m
// Caravan
//
// Created by Tom Houpt on 15/3/17.
// Copyright (c) 2015 Tom Houpt. All rights reserved.
//
#import "BCXMLElement.h"
@implementation BCXMLElement
-(id)init; {
return [self initWithName:nil andAttributes:nil];
}
-(id)initWithName:(NSString *)n andAttributes:(NSDictionary *)a; {
self = [super init];
if (self) {
if (nil == n) {
self.name = [NSString string];
}
else {
self.name = n;
}
if (nil != a) {
self.attributes = [NSMutableDictionary dictionaryWithDictionary:a];
}
}
return self;
}
-(BOOL)hasAttributes; {
if (nil == self.attributes || 0 == [self.attributes count]) {
return NO;
}
return YES;
}
-(NSString *)attributeForKey:(NSString *)k; {
if (!self.hasAttributes) {
return nil;
}
return (NSString *)[self.attributes objectForKey:k];
}
-(BOOL)hasValue; {
if (nil == self.value) {
return NO;
}
if (kBCXMLElementArray == self.type) {
return (0 < [(NSMutableArray *)(self.value) count]);
}
else if (kBCXMLElementDictionary == self.type) {
return (0 < [(NSMutableDictionary *)(self.value) count]);
}
else if (kBCXMLElementString == self.type) {
return (0 < [(NSString *)(self.value) length]);
}
return NO;
}
-(BCXMLElementType) type; {
BCXMLElementType type = kBCXMLElementOther;
if ([_value isKindOfClass:[NSArray class]]) {
type = kBCXMLElementArray;
}
else if ([_value isKindOfClass:[NSDictionary class]]) {
type = kBCXMLElementDictionary;
}
else if ([_value isKindOfClass:[NSString class]]) {
type = kBCXMLElementString;
}
return type;
}
-(void)setElementType:(BCXMLElementType)type; {
if (kBCXMLElementArray == type) {
self.value = [NSMutableArray array];
}
else if (kBCXMLElementDictionary == type) {
self.value = [NSMutableDictionary dictionary];
}
else if (kBCXMLElementString == type) {
self.value = [NSString string];
}
else {
self.value = nil;
}
}
-(NSArray *)array; {
if (kBCXMLElementArray == self.type) {
return (NSArray *)(self.value);
}
return nil;
}
-(NSDictionary *)dictionary; {
if (kBCXMLElementDictionary == self.type) {
return (NSDictionary *)(self.value);
}
return nil;
}
-(NSString *)string; {
if (kBCXMLElementString == self.type) {
return (NSString *)(self.value);
}
return nil;
}
-(BOOL)isEmpty; {
return (![self hasValue] && ![self hasAttributes] );
}
-(void)addSubElement:(BCXMLElement *)e; {
if (kBCXMLElementArray == self.type) {
[(NSMutableArray *)(self.value) addObject:e];
}
else if (kBCXMLElementDictionary == self.type) {
[(NSMutableDictionary *)(self.value) setObject:e forKey:e.name];
}
}
-(BCXMLElement *)elementForKey:(NSString *)n; {
if (nil == self.value) { return nil; }
if (kBCXMLElementDictionary != self.type) {
return nil;
}
return [(NSMutableDictionary *)(self.value) objectForKey:n];
}
-(BCXMLElement *)elementAtIndex:(NSUInteger)i; {
if (nil == self.value) { return nil; }
if (kBCXMLElementArray != self.type) {
return nil;
}
if ([(NSMutableArray *)(self.value) count] <= i) {
return nil;
}
return [(NSMutableArray *)(self.value) objectAtIndex:i];
}
-(NSInteger)count; {
if (nil == self.value) {
return -1;
}
if (kBCXMLElementArray == self.type) {
return ([(NSMutableArray *)(self.value) count]);
}
else if (kBCXMLElementDictionary == self.type) {
return ([(NSMutableDictionary *)(self.value) count]);
}
else if (kBCXMLElementString == self.type) {
return (1);
}
return NO;
}
-(NSInteger)length; {
return [self count];
}
-(BCXMLElement *) elementAtKeyPath:(NSString *)path;{
BCXMLElement *currentDictionaryElement = self;
NSMutableArray *keys = [NSMutableArray arrayWithArray:[path componentsSeparatedByString:@"/"]];
if ([(NSString *)[keys firstObject] isEqualToString:self.name]) {
//skip first key
[keys removeObject:[keys firstObject]];
}
for (NSString *eachKey in keys) {
BCXMLElement *nextElement = [currentDictionaryElement elementForKey:eachKey];
if (eachKey == [keys lastObject]) {
return nextElement;
}
if (nextElement == nil) {
return nextElement;
}
else if (kBCXMLElementDictionary != [nextElement type] ) {
return nil;
}
currentDictionaryElement = nextElement;
}
return nil;
}
@end