forked from gabriel/yajl-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYAJLDocument.h
196 lines (166 loc) · 7.04 KB
/
YAJLDocument.h
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
//
// YAJLDecoder.h
// YAJL
//
// Created by Gabriel Handford on 3/1/09.
// Copyright 2009. All rights reserved.
//
// 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.
//
#include "YAJLParser.h"
typedef enum {
YAJLDecoderCurrentTypeNone,
YAJLDecoderCurrentTypeArray,
YAJLDecoderCurrentTypeDict
} YAJLDecoderCurrentType;
extern NSInteger YAJLDocumentStackCapacity;
@class YAJLDocument;
/*!
YAJLDocument delegate notified when objects are added.
*/
@protocol YAJLDocumentDelegate <NSObject>
@optional
/*!
Did add dictionary.
@param document Sender
@param dict Dictionary that was added
*/
- (void)document:(YAJLDocument *)document didAddDictionary:(NSDictionary *)dict;
/*!
Did add array.
@param document Sender
@param array Array that was added
*/
- (void)document:(YAJLDocument *)document didAddArray:(NSArray *)array;
/*!
Did add object to array.
@param document Sender
@param object Object added
@param array Array objct was added to
*/
- (void)document:(YAJLDocument *)document didAddObject:(id)object toArray:(NSArray *)array;
/*!
Did set object for key on dictionary.
@param document Sender
@param object Object that was set
@param key Key
@param dict Dictionary object was set for key on
*/
- (void)document:(YAJLDocument *)document didSetObject:(id)object forKey:(id)key inDictionary:(NSDictionary *)dict;
@end
/*!
JSON document interface.
@code
NSData *data = [NSData dataWithContentsOfFile:@"example.json"];
NSError *error = nil;
YAJLDocument *document = [[YAJLDocument alloc] initWithData:data parserOptions:YAJLParserOptionsNone error:&error];
// Access root element at document.root
NSLog(@"Root: %@", document.root);
[document release];
@endcode
Example for streaming:
@code
YAJLDocument *document = [[YAJLDocument alloc] init];
document.delegate = self;
NSError *error = nil;
[document parse:chunk1 error:error];
[document parse:chunk2 error:error];
// You can access root element at document.root
NSLog(@"Root: %@", document.root);
[document release];
// Or via the YAJLDocumentDelegate delegate methods
- (void)document:(YAJLDocument *)document didAddDictionary:(NSDictionary *)dict { }
- (void)document:(YAJLDocument *)document didAddArray:(NSArray *)array { }
- (void)document:(YAJLDocument *)document didAddObject:(id)object toArray:(NSArray *)array { }
- (void)document:(YAJLDocument *)document didSetObject:(id)object forKey:(id)key inDictionary:(NSDictionary *)dict { }
@endcode
*/
@interface YAJLDocument : NSObject <YAJLParserDelegate> {
id root_; // NSArray or NSDictionary
YAJLParser *parser_;
// TODO(gabe): This should be __weak
id<YAJLDocumentDelegate> delegate_;
__weak NSMutableDictionary *dict_; // weak; if map in progress, points to the current map
__weak NSMutableArray *array_; // weak; If array in progress, points the current array
__weak NSString *key_; // weak; If map in progress, points to current key
NSMutableArray *stack_;
NSMutableArray *keyStack_;
YAJLDecoderCurrentType currentType_;
YAJLParserStatus parserStatus_;
}
@property (readonly, nonatomic) id root; //! The root element of the document, either NSArray or NSDictionary
@property (readonly, nonatomic) YAJLParserStatus parserStatus; //! The current status of parsing
@property (assign, nonatomic) id<YAJLDocumentDelegate> delegate; //! Delegate
/*!
Create document from data.
@param data Data to parse
@param parserOptions Parse options
- YAJLParserOptionsNone: No options
- YAJLParserOptionsAllowComments: Javascript style comments will be allowed in the input (both /&asterisk; &asterisk;/ and //)
- YAJLParserOptionsCheckUTF8: Invalid UTF8 strings will cause a parse error
- YAJLParserOptionsStrictPrecision: If YES will force strict precision and return integer overflow error
@param error Error to set on failure
*/
- (id)initWithData:(NSData *)data parserOptions:(YAJLParserOptions)parserOptions error:(NSError **)error;
/*!
Create document from data.
@param data Data to parse
@param parserOptions Parse options
- YAJLParserOptionsNone: No options
- YAJLParserOptionsAllowComments: Javascript style comments will be allowed in the input (both /&asterisk; &asterisk;/ and //)
- YAJLParserOptionsCheckUTF8: Invalid UTF8 strings will cause a parse error
- YAJLParserOptionsStrictPrecision: If YES will force strict precision and return integer overflow error
@param capacity Initial capacity for NSArray and NSDictionary objects (Defaults to 20)
@param error Error to set on failure
*/
- (id)initWithData:(NSData *)data parserOptions:(YAJLParserOptions)parserOptions capacity:(NSInteger)capacity error:(NSError **)error;
/*!
Create empty document with parser options.
@param parserOptions Parse options
- YAJLParserOptionsNone: No options
- YAJLParserOptionsAllowComments: Javascript style comments will be allowed in the input (both /&asterisk; &asterisk;/ and //)
- YAJLParserOptionsCheckUTF8: Invalid UTF8 strings will cause a parse error
- YAJLParserOptionsStrictPrecision: If YES will force strict precision and return integer overflow error
*/
- (id)initWithParserOptions:(YAJLParserOptions)parserOptions;
/*!
Create empty document with parser options.
@param parserOptions Parse options
- YAJLParserOptionsNone: No options
- YAJLParserOptionsAllowComments: Javascript style comments will be allowed in the input (both /&asterisk; &asterisk;/ and //)
- YAJLParserOptionsCheckUTF8: Invalid UTF8 strings will cause a parse error
- YAJLParserOptionsStrictPrecision: If YES will force strict precision and return integer overflow error
@param capacity Initial capacity for NSArray and NSDictionary objects (Defaults to 20)
*/
- (id)initWithParserOptions:(YAJLParserOptions)parserOptions capacity:(NSInteger)capacity;
/*!
Parse data.
@param data Data to parse
@param error Out error to set on failure
@result Parser status
- YAJLParserStatusNone: No status
- YAJLParserStatusOK: Parsed OK
- YAJLParserStatusInsufficientData: There was insufficient data
- YAJLParserStatusError: Parser errored
*/
- (YAJLParserStatus)parse:(NSData *)data error:(NSError **)error;
@end