forked from gabriel/yajl-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYAJLParser.h
182 lines (147 loc) · 5.52 KB
/
YAJLParser.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
//
// YAJLParser.h
// YAJL
//
// Created by Gabriel Handford on 6/14/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 "yajl_parse.h"
extern NSString *const YAJLErrorDomain; //! Error domain for YAJL
extern NSString *const YAJLParserException; //! Generic parse exception
extern NSString *const YAJLParsingUnsupportedException; //! Parsing unsupported exception
extern NSString *const YAJLParserValueKey; //! Key in NSError userInfo for value we errored on
//! Parser error codes
enum YAJLParserErrorCode {
YAJLParserErrorCodeAllocError = -1000, //!< Alloc error
YAJLParserErrorCodeDoubleOverflow = -1001, //!< Double overflow
YAJLParserErrorCodeIntegerOverflow = -1002 //!< Integer overflow
};
typedef NSInteger YAJLParserErrorCode; //! Parser error codes
//! Parser options
enum YAJLParserOptions {
YAJLParserOptionsNone = 0, //!< No options
YAJLParserOptionsAllowComments = 1 << 0, //!< Javascript style comments will be allowed in the input (both /&asterisk; &asterisk;/ and //)
YAJLParserOptionsCheckUTF8 = 1 << 1, //!< Invalid UTF8 strings will cause a parse error
YAJLParserOptionsStrictPrecision = 1 << 2, //!< If YES will force strict precision and return integer overflow error
};
typedef NSUInteger YAJLParserOptions; //! Parser options
//! Parser status
enum {
YAJLParserStatusNone = 0, //!< No status
YAJLParserStatusOK = 1, //!< Parsed OK
YAJLParserStatusInsufficientData = 2, //!< There was insufficient data
YAJLParserStatusError = 3 //!< Parser errored
};
typedef NSUInteger YAJLParserStatus; //!< Status of the last parse event
@class YAJLParser;
/*!
Delegate for YAJL JSON parser.
*/
@protocol YAJLParserDelegate <NSObject>
/*!
Parser did start dictionary.
@param parser Sender
*/
- (void)parserDidStartDictionary:(YAJLParser *)parser;
/*!
Parser did end dictionary.
@param parser Sender
*/
- (void)parserDidEndDictionary:(YAJLParser *)parser;
/*!
Parser did start array.
@param parser Sender
*/
- (void)parserDidStartArray:(YAJLParser *)parser;
/*!
Parser did end array.
@param parser Sender
*/
- (void)parserDidEndArray:(YAJLParser *)parser;
/*!
Parser did map key.
@param parser Sender
@param key Key that was mapped
*/
- (void)parser:(YAJLParser *)parser didMapKey:(NSString *)key;
/*!
Did add value.
@param parser Sender
@param value Value of type NSNull, NSString or NSNumber
*/
- (void)parser:(YAJLParser *)parser didAdd:(id)value;
@end
/*!
JSON parser.
@code
NSData *data = [NSData dataWithContentsOfFile:@"example.json"];
YAJLParser *parser = [[YAJLParser alloc] initWithParserOptions:YAJLParserOptionsAllowComments];
parser.delegate = self;
[parser parse:data];
if (parser.parserError) {
NSLog(@"Error:\n%@", parser.parserError);
}
parser.delegate = nil;
[parser release];
// Include delegate methods from YAJLParserDelegate
- (void)parserDidStartDictionary:(YAJLParser *)parser { }
- (void)parserDidEndDictionary:(YAJLParser *)parser { }
- (void)parserDidStartArray:(YAJLParser *)parser { }
- (void)parserDidEndArray:(YAJLParser *)parser { }
- (void)parser:(YAJLParser *)parser didMapKey:(NSString *)key { }
- (void)parser:(YAJLParser *)parser didAdd:(id)value { }
@endcode
*/
@interface YAJLParser : NSObject {
yajl_handle handle_;
id<YAJLParserDelegate> delegate_; // weak
YAJLParserOptions parserOptions_;
NSError *parserError_;
}
@property (assign, nonatomic) id <YAJLParserDelegate> delegate;
@property (readonly, retain, nonatomic) NSError *parserError;
@property (readonly, nonatomic) YAJLParserOptions parserOptions;
@property (readonly, nonatomic) unsigned int bytesConsumed;
/*!
Create parser with data and options.
@param parserOptions Parser 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;
/*!
Parse data.
If streaming, you can call parse multiple times as long as
previous calls return YAJLParserStatusInsufficientData.
@param data
@result Parser status
- YAJLParserStatusNone: No status
- YAJLParserStatusOK: Parsed OK
- YAJLParserStatusInsufficientData: There was insufficient data
- YAJLParserStatusError: Parser errored
*/
- (YAJLParserStatus)parse:(NSData *)data;
@end