forked from nKey/TBXML
-
Notifications
You must be signed in to change notification settings - Fork 1
/
TBXML.m
640 lines (510 loc) · 19.6 KB
/
TBXML.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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
// ================================================================================================
// TBXML.m
// Fast processing of XML files
//
// ================================================================================================
// Created by Tom Bradley on 21/10/2009.
// Version 1.4
//
// Copyright (c) 2009 Tom Bradley
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ================================================================================================
#import "TBXML.h"
#import "NSDataAdditions.h"
// ================================================================================================
// Private methods
// ================================================================================================
@interface TBXML (Private)
- (void) decodeData:(NSData*)data;
- (void) decodeBytes;
- (TBXMLElement*) nextAvailableElement;
- (TBXMLAttribute*) nextAvailableAttribute;
@end
// ================================================================================================
// Public Implementation
// ================================================================================================
@implementation TBXML
@synthesize rootXMLElement;
+ (id)tbxmlWithURL:(NSURL*)aURL {
return [[[TBXML alloc] initWithURL:aURL] autorelease];
}
+ (id)tbxmlWithXMLString:(NSString*)aXMLString {
return [[[TBXML alloc] initWithXMLString:aXMLString] autorelease];
}
+ (id)tbxmlWithXMLData:(NSData*)aData {
return [[[TBXML alloc] initWithXMLData:aData] autorelease];
}
+ (id)tbxmlWithXMLFile:(NSString*)aXMLFile {
return [[[TBXML alloc] initWithXMLFile:aXMLFile] autorelease];
}
+ (id)tbxmlWithXMLFile:(NSString*)aXMLFile fileExtension:(NSString*)aFileExtension {
return [[[TBXML alloc] initWithXMLFile:aXMLFile fileExtension:aFileExtension] autorelease];
}
- (id)init {
self = [super init];
if (self != nil) {
rootXMLElement = nil;
currentElementBuffer = 0;
currentAttributeBuffer = 0;
currentElement = 0;
currentAttribute = 0;
bytes = 0;
bytesLength = 0;
encodings = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithInt:NSUTF8StringEncoding], @"UTF-8",
[NSNumber numberWithInt:NSUTF16StringEncoding], @"UTF-16",
[NSNumber numberWithInt:NSISOLatin1StringEncoding], @"ISO-8859-1",
[NSNumber numberWithInt:NSISOLatin2StringEncoding], @"ISO-8859-2",
[NSNumber numberWithInt:NSISO2022JPStringEncoding], @"ISO-2022-JP",
[NSNumber numberWithInt:NSShiftJISStringEncoding], @"Shift_JIS",
[NSNumber numberWithInt:NSJapaneseEUCStringEncoding], @"EUC-JP",
[NSNumber numberWithInt:NSWindowsCP1250StringEncoding], @"windows-1250",
[NSNumber numberWithInt:NSWindowsCP1251StringEncoding], @"windows-1251",
[NSNumber numberWithInt:NSWindowsCP1252StringEncoding], @"windows-1252",
[NSNumber numberWithInt:NSWindowsCP1253StringEncoding], @"windows-1253",
[NSNumber numberWithInt:NSWindowsCP1254StringEncoding], @"windows-1254",
nil];
}
return self;
}
- (id)initWithURL:(NSURL*)aURL {
self = [self initWithXMLString:[NSString stringWithContentsOfURL:aURL encoding:NSUTF8StringEncoding error:nil]];
if (self != nil) {
}
return self;
}
- (id)initWithXMLString:(NSString*)aXMLString {
self = [self init];
if (self != nil) {
// copy string to byte array
bytesLength = [aXMLString lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
bytes = malloc(bytesLength+1);
[aXMLString getBytes:bytes maxLength:bytesLength usedLength:0 encoding:NSUTF8StringEncoding options:NSStringEncodingConversionAllowLossy range:NSMakeRange(0, bytesLength) remainingRange:nil];
// set null terminator at end of byte array
bytes[bytesLength] = 0;
// decode xml data
[self decodeBytes];
}
return self;
}
- (id)initWithXMLData:(NSData*)aData {
self = [self init];
if (self != nil) {
// decode aData
[self decodeData:aData];
}
return self;
}
- (id)initWithXMLFile:(NSString*)aXMLFile fileExtension:(NSString*)aFileExtension {
self = [self init];
if (self != nil) {
// Get uncompressed file contents
NSData * data = [NSData dataWithUncompressedContentsOfFile:[[NSBundle mainBundle] pathForResource:aXMLFile ofType:aFileExtension]];
// decode data
[self decodeData:data];
}
return self;
}
- (id)initWithXMLFile:(NSString*)aXMLFile {
self = [self init];
if (self != nil) {
NSString * filename = [aXMLFile stringByDeletingPathExtension];
NSString * extension = [aXMLFile pathExtension];
// Get uncompressed file contents
NSData * data = [NSData dataWithUncompressedContentsOfFile:[[NSBundle mainBundle] pathForResource:filename ofType:extension]];
// decode data
[self decodeData:data];
}
return self;
}
@end
// ================================================================================================
// Static Functions Implementation
// ================================================================================================
#pragma mark -
#pragma mark Static Functions implementation
@implementation TBXML (StaticFunctions)
+ (NSString*) elementName:(TBXMLElement*)aXMLElement {
if (aXMLElement == nil || nil == aXMLElement->name) return @"";
return [NSString stringWithCString:&aXMLElement->name[0] encoding:aXMLElement->encoding];
}
+ (NSString*) attributeName:(TBXMLAttribute*)aXMLAttribute {
if (aXMLAttribute == nil || nil == aXMLAttribute->name) return @"";
return [NSString stringWithCString:&aXMLAttribute->name[0] encoding:aXMLAttribute->encoding];
}
+ (NSString*) attributeValue:(TBXMLAttribute*)aXMLAttribute {
if (aXMLAttribute == nil || nil == aXMLAttribute->value) return @"";
return [NSString stringWithCString:&aXMLAttribute->value[0] encoding:aXMLAttribute->encoding];
}
+ (NSString*) textForElement:(TBXMLElement*)aXMLElement {
if (aXMLElement == nil || nil == aXMLElement->text) return @"";
return [NSString stringWithCString:&aXMLElement->text[0] encoding:aXMLElement->encoding];
}
+ (NSString*) valueOfAttributeNamed:(NSString *)aName forElement:(TBXMLElement*)aXMLElement {
const char * name = [aName cStringUsingEncoding:NSUTF8StringEncoding];
NSString * value = nil;
TBXMLAttribute * attribute = aXMLElement->firstAttribute;
while (attribute) {
if (strlen(attribute->name) == strlen(name) && memcmp(attribute->name,name,strlen(name)) == 0) {
value = [NSString stringWithCString:&attribute->value[0] encoding:aXMLElement->encoding];
break;
}
attribute = attribute->next;
}
return value;
}
+ (TBXMLElement*) childElementNamed:(NSString*)aName parentElement:(TBXMLElement*)aParentXMLElement{
TBXMLElement * xmlElement = aParentXMLElement->firstChild;
const char * name = [aName cStringUsingEncoding:NSUTF8StringEncoding];
while (xmlElement) {
if (strlen(xmlElement->name) == strlen(name) && memcmp(xmlElement->name,name,strlen(name)) == 0) {
return xmlElement;
}
xmlElement = xmlElement->nextSibling;
}
return nil;
}
+ (TBXMLElement*) nextSiblingNamed:(NSString*)aName searchFromElement:(TBXMLElement*)aXMLElement{
TBXMLElement * xmlElement = aXMLElement->nextSibling;
const char * name = [aName cStringUsingEncoding:NSUTF8StringEncoding];
while (xmlElement) {
if (strlen(xmlElement->name) == strlen(name) && memcmp(xmlElement->name,name,strlen(name)) == 0) {
return xmlElement;
}
xmlElement = xmlElement->nextSibling;
}
return nil;
}
@end
// ================================================================================================
// Private Implementation
// ================================================================================================
#pragma mark -
#pragma mark Private implementation
@implementation TBXML (Private)
- (void)decodeData:(NSData*)data {
// copy data to byte array
bytesLength = [data length];
bytes = malloc(bytesLength+1);
[data getBytes:bytes length:bytesLength];
// set null terminator at end of byte array
bytes[bytesLength] = 0;
// decode xml data
[self decodeBytes];
}
- (void) decodeBytes{
// -----------------------------------------------------------------------------
// Process xml
// -----------------------------------------------------------------------------
// set elementStart pointer to the start of our xml
char * elementStart=bytes;
// set parent element to nil
TBXMLElement * parentXMLElement = nil;
// set default encoding to UTF-8
NSStringEncoding encoding = NSUTF8StringEncoding;
// find next element start
while ((elementStart = strstr(elementStart,"<"))) {
// detect comment section
if (strncmp(elementStart,"<!--",4) == 0) {
elementStart = strstr(elementStart,"-->") + 3;
continue;
}
// detect cdata section within element text
int isCDATA = strncmp(elementStart,"<![CDATA[",9);
// if cdata section found, skip data within cdata section and remove cdata tags
if (isCDATA==0) {
// find end of cdata section
char * CDATAEnd = strstr(elementStart,"]]>");
// find start of next element skipping any cdata sections within text
char * elementEnd = CDATAEnd;
// find next open tag
elementEnd = strstr(elementEnd,"<");
// if open tag is a cdata section
while (strncmp(elementEnd,"<![CDATA[",9) == 0) {
// find end of cdata section
elementEnd = strstr(elementEnd,"]]>");
// find next open tag
elementEnd = strstr(elementEnd,"<");
}
// calculate length of cdata content
long CDATALength = CDATAEnd-elementStart;
// calculate total length of text
long textLength = elementEnd-elementStart;
// remove begining cdata section tag
memcpy(elementStart, elementStart+9, CDATAEnd-elementStart-9);
// remove ending cdata section tag
memcpy(CDATAEnd-9, CDATAEnd+3, textLength-CDATALength-3);
// blank out end of text
memset(elementStart+textLength-12,' ',12);
// set new search start position
elementStart = CDATAEnd-9;
continue;
}
// find element end, skipping any cdata sections within attributes
char * elementEnd = elementStart+1;
while ((elementEnd = strpbrk(elementEnd, "<>"))) {
if (strncmp(elementEnd,"<![CDATA[",9) == 0) {
elementEnd = strstr(elementEnd,"]]>")+3;
} else {
break;
}
}
// null terminate element end
if (elementEnd) *elementEnd = 0;
// null terminate element start so previous element text doesnt overrun
*elementStart = 0;
// get element name start
char * elementNameStart = elementStart+1;
// detect xml encoding
if (strncmp(elementNameStart, "?xml", 4) == 0) {
char *encodingStart, *encodingEnd;
// find encoding attribute declaration
if ((encodingStart = strstr(elementNameStart, "encoding="))) {
encodingStart = strchr(encodingStart, '"');
}
if (encodingStart++) {
if ((encodingEnd = strchr(encodingStart, '"'))) {
// null terminate encoding string
*encodingEnd = 0;
// fetch encoding from mapping
NSNumber *encodingsValue = [encodings objectForKey:[NSString stringWithCString:encodingStart encoding:encoding]];
if (encodingsValue) {
encoding = [encodingsValue intValue];
}
}
}
}
// ignore tags that start with ? or ! unless cdata "<![CDATA"
if (*elementNameStart == '?' || (*elementNameStart == '!' && isCDATA != 0)) {
elementStart = elementEnd+1;
continue;
}
// ignore attributes/text if this is a closing element
if (*elementNameStart == '/') {
elementStart = elementEnd+1;
if (parentXMLElement) {
if (parentXMLElement->text) {
// trim whitespace from start of text
while (isspace(*parentXMLElement->text))
parentXMLElement->text++;
// trim whitespace from end of text
char * end = parentXMLElement->text + strlen(parentXMLElement->text)-1;
while (end > parentXMLElement->text && isspace(*end))
*end--=0;
}
parentXMLElement = parentXMLElement->parentElement;
// if parent element has children clear text
if (parentXMLElement && parentXMLElement->firstChild)
parentXMLElement->text = 0;
}
continue;
}
// is this element opening and closing
BOOL selfClosingElement = NO;
if (*(elementEnd-1) == '/') {
selfClosingElement = YES;
}
// create new xmlElement struct
TBXMLElement * xmlElement = [self nextAvailableElement];
// set element name and encoding
xmlElement->name = elementNameStart;
xmlElement->encoding = encoding;
// if there is a parent element
if (parentXMLElement) {
// if this is first child of parent element
if (parentXMLElement->currentChild) {
// set next child element in list
parentXMLElement->currentChild->nextSibling = xmlElement;
xmlElement->previousSibling = parentXMLElement->currentChild;
parentXMLElement->currentChild = xmlElement;
} else {
// set first child element
parentXMLElement->currentChild = xmlElement;
parentXMLElement->firstChild = xmlElement;
}
xmlElement->parentElement = parentXMLElement;
}
// in the following xml the ">" is replaced with \0 by elementEnd.
// element may contain no atributes and would return nil while looking for element name end
// <tile>
// find end of element name
char * elementNameEnd = strpbrk(xmlElement->name," /");
// if end was found check for attributes
if (elementNameEnd) {
// null terminate end of elemenet name
*elementNameEnd = 0;
char * chr = elementNameEnd;
char * name = nil;
char * value = nil;
char * CDATAStart = nil;
char * CDATAEnd = nil;
TBXMLAttribute * lastXMLAttribute = nil;
TBXMLAttribute * xmlAttribute = nil;
BOOL singleQuote = NO;
int mode = TBXML_ATTRIBUTE_NAME_START;
// loop through all characters within element
while (chr++ < elementEnd) {
switch (mode) {
// look for start of attribute name
case TBXML_ATTRIBUTE_NAME_START:
if (isspace(*chr)) continue;
name = chr;
mode = TBXML_ATTRIBUTE_NAME_END;
break;
// look for end of attribute name
case TBXML_ATTRIBUTE_NAME_END:
if (isspace(*chr) || *chr == '=') {
*chr = 0;
mode = TBXML_ATTRIBUTE_VALUE_START;
}
break;
// look for start of attribute value
case TBXML_ATTRIBUTE_VALUE_START:
if (isspace(*chr)) continue;
if (*chr == '"' || *chr == '\'') {
value = chr+1;
mode = TBXML_ATTRIBUTE_VALUE_END;
if (*chr == '\'')
singleQuote = YES;
else
singleQuote = NO;
}
break;
// look for end of attribute value
case TBXML_ATTRIBUTE_VALUE_END:
if (*chr == '<' && strncmp(chr, "<![CDATA[", 9) == 0) {
mode = TBXML_ATTRIBUTE_CDATA_END;
}else if ((*chr == '"' && singleQuote == NO) || (*chr == '\'' && singleQuote == YES)) {
*chr = 0;
// remove cdata section tags
while ((CDATAStart = strstr(value, "<![CDATA["))) {
// remove begin cdata tag
memcpy(CDATAStart, CDATAStart+9, strlen(CDATAStart)-8);
// search for end cdata
CDATAEnd = strstr(CDATAStart,"]]>");
// remove end cdata tag
memcpy(CDATAEnd, CDATAEnd+3, strlen(CDATAEnd)-2);
}
// create new attribute
xmlAttribute = [self nextAvailableAttribute];
// if this is the first attribute found, set pointer to this attribute on element
if (!xmlElement->firstAttribute) xmlElement->firstAttribute = xmlAttribute;
// if previous attribute found, link this attribute to previous one
if (lastXMLAttribute) lastXMLAttribute->next = xmlAttribute;
// set last attribute to this attribute
lastXMLAttribute = xmlAttribute;
// set attribute name, value and encoding
xmlAttribute->name = name;
xmlAttribute->value = value;
xmlAttribute->encoding = encoding;
// clear name and value pointers
name = nil;
value = nil;
// start looking for next attribute
mode = TBXML_ATTRIBUTE_NAME_START;
}
break;
// look for end of cdata
case TBXML_ATTRIBUTE_CDATA_END:
if (*chr == ']') {
if (strncmp(chr, "]]>", 3) == 0) {
mode = TBXML_ATTRIBUTE_VALUE_END;
}
}
break;
default:
break;
}
}
}
// if tag is not self closing, set parent to current element
if (!selfClosingElement) {
// set text on element to element end+1
if (*(elementEnd+1) != '>')
xmlElement->text = elementEnd+1;
parentXMLElement = xmlElement;
}
// start looking for next element after end of current element
elementStart = elementEnd+1;
}
}
// Deallocate used memory
- (void) dealloc {
if (bytes) {
free(bytes);
bytes = nil;
}
while (currentElementBuffer) {
if (currentElementBuffer->elements)
free(currentElementBuffer->elements);
if (currentElementBuffer->previous) {
currentElementBuffer = currentElementBuffer->previous;
free(currentElementBuffer->next);
} else {
free(currentElementBuffer);
currentElementBuffer = 0;
}
}
while (currentAttributeBuffer) {
if (currentAttributeBuffer->attributes)
free(currentAttributeBuffer->attributes);
if (currentAttributeBuffer->previous) {
currentAttributeBuffer = currentAttributeBuffer->previous;
free(currentAttributeBuffer->next);
} else {
free(currentAttributeBuffer);
currentAttributeBuffer = 0;
}
}
[encodings release];
[super dealloc];
}
- (TBXMLElement*) nextAvailableElement {
currentElement++;
if (!currentElementBuffer) {
currentElementBuffer = calloc(1, sizeof(TBXMLElementBuffer));
currentElementBuffer->elements = (TBXMLElement*)calloc(1,sizeof(TBXMLElement)*MAX_ELEMENTS);
currentElement = 0;
rootXMLElement = ¤tElementBuffer->elements[currentElement];
} else if (currentElement >= MAX_ELEMENTS) {
currentElementBuffer->next = calloc(1, sizeof(TBXMLElementBuffer));
currentElementBuffer->next->previous = currentElementBuffer;
currentElementBuffer = currentElementBuffer->next;
currentElementBuffer->elements = (TBXMLElement*)calloc(1,sizeof(TBXMLElement)*MAX_ELEMENTS);
currentElement = 0;
}
return ¤tElementBuffer->elements[currentElement];
}
- (TBXMLAttribute*) nextAvailableAttribute {
currentAttribute++;
if (!currentAttributeBuffer) {
currentAttributeBuffer = calloc(1, sizeof(TBXMLAttributeBuffer));
currentAttributeBuffer->attributes = (TBXMLAttribute*)calloc(MAX_ATTRIBUTES,sizeof(TBXMLAttribute));
currentAttribute = 0;
} else if (currentAttribute >= MAX_ATTRIBUTES) {
currentAttributeBuffer->next = calloc(1, sizeof(TBXMLAttributeBuffer));
currentAttributeBuffer->next->previous = currentAttributeBuffer;
currentAttributeBuffer = currentAttributeBuffer->next;
currentAttributeBuffer->attributes = (TBXMLAttribute*)calloc(MAX_ATTRIBUTES,sizeof(TBXMLAttribute));
currentAttribute = 0;
}
return ¤tAttributeBuffer->attributes[currentAttribute];
}
@end