-
Notifications
You must be signed in to change notification settings - Fork 164
/
MGTwitterStatusesYAJLParser.m
125 lines (103 loc) · 2.98 KB
/
MGTwitterStatusesYAJLParser.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
//
// MGTwitterStatusesYAJLParser.m
// MGTwitterEngine
//
// Created by Matt Gemmell on 11/02/2008.
// Copyright 2008 Instinctive Code.
//
#import "MGTwitterStatusesYAJLParser.h"
#define DEBUG_PARSING 0
@implementation MGTwitterStatusesYAJLParser
- (void)addValue:(id)value forKey:(NSString *)key
{
//if for some reason there are no dictionaries, exit here
if (!_dictionaries || [_dictionaries count] == 0)
{
return;
}
NSMutableDictionary *lastDictionary = [_dictionaries lastObject];
if([[lastDictionary objectForKey:key] isKindOfClass:[NSArray class]]){
NSMutableArray *array = [lastDictionary objectForKey:key];
[array addObject:value];
}else{
[lastDictionary setObject:value forKey:key];
}
#if DEBUG_PARSING
NSLog(@"parsed item: %@ = %@ (%@)", key, value, NSStringFromClass([value class]));
#endif
}
- (void)startDictionaryWithKey:(NSString *)key
{
#if DEBUG_PARSING
NSLog(@"status: dictionary start = %@", key);
#endif
if (!_dictionaries)
{
_dictionaries = [[NSMutableArray alloc] init];
}
if (!_dictionaryKeys)
{
_dictionaryKeys = [[NSMutableArray alloc] init];
}
//add a new dictionary to the array
NSMutableDictionary *newDictionary = [[NSMutableDictionary alloc] initWithCapacity:0];
[_dictionaries addObject:newDictionary];
[newDictionary release];
//add a key for the above dictionary to the array
[_dictionaryKeys addObject:(key) ? key : @""];
}
- (void)endDictionary
{
if (_dictionaries && _dictionaryKeys && [_dictionaries count] > 0 && [_dictionaryKeys count] > 0)
{
//is this the root dictionary?
if ([_dictionaries count] == 1)
{
//one dictionary left, so it must be the root
NSMutableDictionary *rootDictionary = [_dictionaries lastObject];
//set the request type in the root dictionary
[rootDictionary setObject:[NSNumber numberWithInt:requestType] forKey:TWITTER_SOURCE_REQUEST_TYPE];
//send the root dictionary to the super class
[self _parsedObject:rootDictionary];
[parsedObjects addObject:rootDictionary];
}
else
{
//child dictionary found
//add the child dictionary to its parent dictionary
NSMutableDictionary *parentDictionary = [_dictionaries objectAtIndex:[_dictionaries count] - 2];
[parentDictionary setObject:[_dictionaries lastObject] forKey:[_dictionaryKeys lastObject]];
}
//remove the last dictionary since it has been joined with its parent (or was the root dictionary)
//also remove the corresponding key
[_dictionaries removeLastObject];
[_dictionaryKeys removeLastObject];
}
#if DEBUG_PARSING
NSLog(@"status: dictionary end");
#endif
}
- (void)startArrayWithKey:(NSString *)key
{
arrayDepth++;
NSMutableArray *newArray = [NSMutableArray array];
[self addValue:newArray forKey:key];
#if DEBUG_PARSING
NSLog(@"status: array start = %@", key);
#endif
}
- (void)endArray
{
#if DEBUG_PARSING
NSLog(@"status: array end");
#endif
arrayDepth--;
[self clearCurrentKey];
}
- (void)dealloc
{
[_dictionaries release];
[_dictionaryKeys release];
[super dealloc];
}
@end