forked from gabriel/yajl-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSObject+YAJL.h
154 lines (127 loc) · 5.29 KB
/
NSObject+YAJL.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
//
// NSObject+YAJL.h
// YAJL
//
// Created by Gabriel Handford on 7/23/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.
//
#import "YAJLGen.h"
#import "YAJLParser.h"
/*!
Generate JSON string from NSArray, NSDictionary or custom object or parse JSON from NSString or custom object.
Parse JSON:
@code
NSData *JSONData = [NSData dataWithContentsOfFile:@"example.json"];
NSArray *arrayFromData = [JSONData yajl_JSON];
NSString *JSONString = @"[\"Test\"]";
NSArray *arrayFromString = [JSONString yajl_JSON];
// With options and out error
NSError *error = nil;
NSArray *arrayFromString = [JSONString yajl_JSONWithOptions:YAJLParserOptionsAllowComments error:&error];
@endcode
Generate JSON:
@code
NSDictionary *dict = [NSDictionary dictionaryWithObject:@"value" forKey:@"key"];
NSString *JSONString = [dict yajl_JSONString];
// Beautified with custon indent string
NSArray *array = [NSArray arrayWithObjects:@"value1", @"value2", nil];
NSString *JSONString = [dict yajl_JSONStringWithOptions:YAJLGenOptionsBeautify indentString:@" "];
@endcode
*/
@interface NSObject(YAJL)
#pragma mark Gen
/*!
Create JSON string from object.
Supported objects include: NSArray, NSDictionary, NSNumber, NSString, NSNull
To override JSON value to encode (or support custom objects), implement (id)JSON; See YAJLCoding in YAJLGen.h
@throws YAJLGenInvalidObjectException If object is invalid
@result JSON String
*/
- (NSString *)yajl_JSONString;
/*!
Create JSON string from object.
Supported objects include: NSArray, NSDictionary, NSNumber, NSString, NSNull
To override JSON value to encode (or support custom objects), implement (id)JSON; See YAJLCoding in YAJLGen.h
@throws YAJLGenInvalidObjectException If object is invalid
@param options
- YAJLGenOptionsNone: No options
- YAJLGenOptionsBeautify: Beautifiy JSON output
- YAJLGenOptionsIgnoreUnknownTypes: Ignore unknown types (will use null value)
- YAJLGenOptionsIncludeUnsupportedTypes: Handle non-JSON types (including NSDate, NSData, NSURL)
@param indentString
@result JSON String
*/
- (NSString *)yajl_JSONStringWithOptions:(YAJLGenOptions)options indentString:(NSString *)indentString;
#pragma mark Parsing
/*!
Parse JSON (NSString or NSData or dataUsingEncoding:).
@result JSON object
@throws YAJLParserException If a parse error occured
@throws YAJLParsingUnsupportedException If not NSData or doesn't respond to dataUsingEncoding:
@code
NSString *JSONString = @"{'foo':['bar', true]}";
id JSONValue = [JSONString yajl_JSON];
NSData *JSONData = ...;
id JSONValue = [JSONData yajl_JSON];
@endcode
*/
- (id)yajl_JSON;
/*!
Parse JSON (NSString or NSData or dataUsingEncoding:) with out error.
If an error occurs, the returned object will be the current state of the object when
the error occurred.
@param error Error to set if we failed to parse
@result JSON object
@throws YAJLParserException If a parse error occured
@throws YAJLParsingUnsupportedException If not NSData or doesn't respond to dataUsingEncoding:
@code
NSString *JSONString = @"{'foo':['bar', true]}";
NSError *error = nil;
[JSONString yajl_JSON:error];
if (error) ...;
@endcode
*/
- (id)yajl_JSON:(NSError **)error;
/*!
Parse JSON (NSString or NSData or dataUsingEncoding:) with options and out error.
If an error occurs, the returned object will be the current state of the object when
the error occurred.
@param options 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 if we failed to parse
@result JSON object
@throws YAJLParserException If a parse error occured
@throws YAJLParsingUnsupportedException If not NSData or doesn't respond to dataUsingEncoding:
@code
NSString *JSONString = @"{'foo':['bar', true]} // comment";
NSError *error = nil;
[JSONString yajl_JSONWithOptions:YAJLParserOptionsAllowComments error:error];
if (error) ...;
@endcode
*/
- (id)yajl_JSONWithOptions:(YAJLParserOptions)options error:(NSError **)error;
@end