forked from gabriel/yajl-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYAJLGen.h
171 lines (140 loc) · 4.04 KB
/
YAJLGen.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
//
// YAJLGen.h
// YAJL
//
// Created by Gabriel Handford on 7/19/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_gen.h"
extern NSString *const YAJLGenInvalidObjectException; //! Exception type if we encounter invalid object
//! JSON generate options
enum YAJLGenOptions {
YAJLGenOptionsNone = 0, //!< No options
YAJLGenOptionsBeautify = 1 << 0, //!< Beautifiy JSON output
YAJLGenOptionsIgnoreUnknownTypes = 1 << 1, //!< Ignore unknown types (will use null value)
YAJLGenOptionsIncludeUnsupportedTypes = 1 << 2, //!< Handle non-JSON types (including NSDate, NSData, NSURL)
};
typedef NSUInteger YAJLGenOptions;
/*!
YAJL JSON string generator.
Supports the following types:
- NSArray
- NSDictionary
- NSString
- NSNumber
- NSNull
We also support the following types (if using YAJLGenOptionsIncludeUnsupportedTypes option),
by converting to JSON supported types:
- NSDate: number representing number of milliseconds since (1970) epoch
- NSData: Base64 encoded string
- NSURL: URL (absolute) string
*/
@interface YAJLGen : NSObject {
yajl_gen gen_;
YAJLGenOptions genOptions_;
}
/*!
JSON generator with options.
@param genOptions Generate 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 String for indentation
*/
- (id)initWithGenOptions:(YAJLGenOptions)genOptions indentString:(NSString *)indentString;
/*!
Write JSON for object to buffer.
@param obj Supported or custom object
*/
- (void)object:(id)obj;
/*!
Write null value to buffer.
*/
- (void)null;
/*!
Write bool value to buffer.
@param b Output true or false
*/
- (void)bool:(BOOL)b;
/*!
Write numeric value to buffer.
@param number Numeric value
*/
- (void)number:(NSNumber *)number;
/*!
Write string value to buffer.
@param s String value
*/
- (void)string:(NSString *)s;
/*!
Write dictionary start ('{') to buffer.
*/
- (void)startDictionary;
/*!
Write dictionary end ('}') to buffer.
*/
- (void)endDictionary;
/*!
Write array start ('[') to buffer.
*/
- (void)startArray;
/*!
Write array end (']') to buffer.
*/
- (void)endArray;
/*!
Clear JSON buffer.
*/
- (void)clear;
/*!
Get current JSON buffer.
*/
- (NSString *)buffer;
@end
/*!
Custom objects can support manual JSON encoding.
@code
@interface CustomObject : NSObject
@end
@implementation CustomObject
- (id)JSON {
return [NSArray arrayWithObject:[NSNumber numberWithInteger:1]];
}
@end
@endcode
And then:
@code
CustomObject *customObject = [[CustomObject alloc] init];
NSString *JSONString = [customObject yajl_JSON];
// JSONString == "[1]";
@endcode
*/
@protocol YAJLCoding <NSObject>
/*!
Provide custom and/or encodable object to parse to JSON string.
@result Object encodable as JSON such as NSDictionary, NSArray, etc
*/
- (id)JSON;
@end