forked from mattgemmell/MGTwitterEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MGTwitterMiscLibXMLParser.m
54 lines (47 loc) · 1.28 KB
/
MGTwitterMiscLibXMLParser.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
//
// MGTwitterMiscLibXMLParser.m
// MGTwitterEngine
//
// Created by Matt Gemmell on 11/02/2008.
// Copyright 2008 Instinctive Code.
//
#import "MGTwitterMiscLibXMLParser.h"
@implementation MGTwitterMiscLibXMLParser
- (void)parse
{
int readerResult = xmlTextReaderRead(_reader);
if (readerResult != 1)
return;
int nodeType = xmlTextReaderNodeType(_reader);
const xmlChar *name = xmlTextReaderConstName(_reader);
while (! (nodeType == XML_READER_TYPE_END_ELEMENT))
{
if (nodeType == XML_READER_TYPE_ELEMENT)
{
if (xmlStrEqual(name, BAD_CAST "hash"))
{
[parsedObjects addObject:[self _hashDictionaryForNodeWithName:name]];
}
else
{
// process element as a string -- API calls like friendships/exists.xml just return <friends>false</friends> or <friends>true</friends>
NSString *string = [self _nodeValueAsString];
if (string)
{
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
[dictionary setObject:string forKey:[NSString stringWithUTF8String:(const char *)name]];
[parsedObjects addObject:dictionary];
}
}
}
// advance reader
readerResult = xmlTextReaderRead(_reader);
if (readerResult != 1)
{
break;
}
nodeType = xmlTextReaderNodeType(_reader);
name = xmlTextReaderConstName(_reader);
}
}
@end