-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCXMLDocumentParser.m
252 lines (175 loc) · 6.46 KB
/
BCXMLDocumentParser.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
//
// BCXMLDocumentParser.m
// Caravan
//
// Created by Tom Houpt on 16/6/2.
// Copyright © 2016 Tom Houpt. All rights reserved.
//
#import "BCXMLDocumentParser.h"
#import "BCAlert.h"
#import "BCXMLElement.h"
@interface BCXMLDocumentParser (Private)
-(void)pushContainerStack:(BCXMLElement *)d;
-(BCXMLElement *)popContainerStack;
//-(BOOL)topContainerIsDictionary;
//-(BOOL)topContainerIsArray;
//-(NSMutableDictionary *)topDictionary;
//-(BOOL)topContainerIsXMLElement;
//-(NSMutableArray *)topArray;
-(BCXMLElement *)topElement;
-(void)addElementToTopContainer:(BCXMLElement *)element;
-(BOOL)isNameOfDictionaryElement:(NSString *)elementName;
-(BOOL)isNameOfArrayElement:(NSString *)elementName;
@end
@implementation BCXMLDocumentParser
@synthesize currentStringValue;
@synthesize containerStack;
@synthesize xmlParser;
@synthesize parseCompleted;
-(id)initWithData:(NSData *)xmlData;
{
self = [super init];
if (self) {
containerStack = [NSMutableArray array];
parseCompleted = NO;
xmlParser = [[NSXMLParser alloc] initWithData:xmlData];
[xmlParser setDelegate:self];
[xmlParser setShouldResolveExternalEntities:YES];
[xmlParser parse];
}
return self;
}
-(void)pushContainerStack:(BCXMLElement *)d; {
[containerStack addObject:d];
}
-(BCXMLElement *)popContainerStack; {
BCXMLElement *top = (BCXMLElement *)[containerStack lastObject];
if (nil != top && [containerStack firstObject] != top) {
[containerStack removeLastObject];
}
return top;
}
-(BCXMLElement *)topElement; {
return (BCXMLElement *)[containerStack lastObject];
}
-(void)addElementToTopContainer:(BCXMLElement *)element;
{
if (nil != [self topElement]) {
[[self topElement] addSubElement:element];
}
else {
[containerStack addObject:element];
}
}
-(BOOL)isNameOfDictionaryElement:(NSString *)elementName; {
NSArray *dictionaryElements = @[];
for (NSString *eachElement in dictionaryElements ) {
if ([elementName isEqualToString:eachElement]) {
return YES;
}
}
return NO;
}
-(BOOL)isNameOfArrayElement:(NSString *)elementName; {
NSArray *arrayElements = @[];
for (NSString *eachElement in arrayElements ) {
if ([elementName isEqualToString:eachElement]) {
return YES;
}
}
return NO;
}
-(BCXMLElement *)xmlDictionary; {
return (BCXMLElement *)[containerStack firstObject];
}
- (void)parserDidStartDocument:(NSXMLParser *)parser;
{
// NSLog(@"Start Document");
// add the root dictionary to the stack
[containerStack removeAllObjects];
// [containerStack addObject:[NSMutableDictionary dictionary]];
}
- (void)parserDidEndDocument:(NSXMLParser *)parser;
{
// NSLog(@"End Document");
parseCompleted = YES;
// NOTE: post notification that parse was completed?
[[NSNotificationCenter defaultCenter] postNotificationName:kBCXMLDocumentParserCompletionNotification
object:self
userInfo:@{@"sender":self}
];
}
- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError; {
NSString *errorString = [NSString stringWithFormat:@"Error %li, Description: %@, Line: %li, Column: %li",
(long)[parseError code],
[[parser parserError] localizedDescription],
(long)[parser lineNumber],
(long)[parser columnNumber]];
NSLog(@"Parsing Error: %@",errorString);
BCOneButtonAlert(NSAlertStyleWarning,
@"Parsing Error!",
errorString,
@"OK");
}
- (void)parser:(NSXMLParser *)parser foundIgnorableWhitespace:(NSString *)whitespaceString;
{
}
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict;
{
// NSLog(@"Parsed startElement: %@", elementName);
BCXMLElement *newElement = [[BCXMLElement alloc] initWithName:elementName andAttributes:attributeDict];
if ([self isNameOfArrayElement:elementName]) {
[newElement setElementType:kBCXMLElementArray];
}
else if ([self isNameOfDictionaryElement:elementName]) {
[newElement setElementType:kBCXMLElementDictionary];
}
else {
currentStringValue = nil;
[newElement setElementType:kBCXMLElementString];
}
[self pushContainerStack:newElement];
}
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string;
{
if (!currentStringValue) {
// currentStringValue is an NSMutableString instance variable
currentStringValue = [[NSMutableString alloc] initWithCapacity:50];
}
[currentStringValue appendString:string];
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName;
{
BCXMLElement *endingElement = (BCXMLElement *)[self popContainerStack];
assert ([[endingElement name] isEqualToString:elementName]);
// NSLog(@"Parsed endElement: %@", elementName);
// if ending element is an array or a dictionary, then take it off the stack
// if (kBCXMLElementArray == [endingElement type]) {
// if ( 0 == [(NSArray *)(endingElement.value) count]) {
// endingElement.value = nil;
// }
// }
// if (kBCXMLElementDictionary == [endingElement type]) {
// if ( 0 == [(NSDictionary *)(endingElement.value) count]) {
// endingElement.value = nil;
// }
// }
// else {
//
if (kBCXMLElementString == [endingElement type]) {
if (nil != currentStringValue ) {
endingElement.value = [currentStringValue stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
if (0 == [((NSString *)endingElement.value) length]) {
endingElement.value = nil;
}
currentStringValue = nil;
}
else {
endingElement.value = nil;
}
}
if (![endingElement isEmpty]) {
[self addElementToTopContainer:endingElement];
}
}
@end