Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 #ifndef __ULTRAJSON_H__
00049 #define __ULTRAJSON_H__
00050
00051 #include <stdio.h>
00052 #include <wchar.h>
00053
00054
00055
00056
00057 #define JSON_NO_EXTRA_WHITESPACE
00058
00059
00060 #ifndef JSON_DOUBLE_MAX_DECIMALS
00061 #define JSON_DOUBLE_MAX_DECIMALS 15
00062 #endif
00063
00064
00065 #ifndef JSON_MAX_RECURSION_DEPTH
00066 #define JSON_MAX_RECURSION_DEPTH 1024
00067 #endif
00068
00069
00070
00071 #ifndef JSON_MAX_STACK_BUFFER_SIZE
00072 #define JSON_MAX_STACK_BUFFER_SIZE 131072
00073 #endif
00074
00075 #ifdef _WIN32
00076
00077 typedef __int64 JSINT64;
00078 typedef unsigned __int64 JSUINT64;
00079
00080 typedef __int32 JSINT32;
00081 typedef unsigned __int32 JSUINT32;
00082 typedef unsigned __int8 JSUINT8;
00083 typedef unsigned __int16 JSUTF16;
00084 typedef unsigned __int32 JSUTF32;
00085 typedef __int64 JSLONG;
00086
00087 #define EXPORTFUNCTION __declspec(dllexport)
00088
00089 #define FASTCALL_MSVC __fastcall
00090 #define FASTCALL_ATTR
00091 #define INLINE_PREFIX __inline
00092
00093 #else
00094
00095 #include <sys/types.h>
00096 typedef int64_t JSINT64;
00097 typedef u_int64_t JSUINT64;
00098
00099 typedef int32_t JSINT32;
00100 typedef u_int32_t JSUINT32;
00101
00102 #define FASTCALL_MSVC
00103 #define FASTCALL_ATTR __attribute__((fastcall))
00104 #define INLINE_PREFIX inline
00105
00106 typedef u_int8_t JSUINT8;
00107 typedef u_int16_t JSUTF16;
00108 typedef u_int32_t JSUTF32;
00109
00110 typedef int64_t JSLONG;
00111
00112 #define EXPORTFUNCTION
00113 #endif
00114
00115 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
00116 #define __LITTLE_ENDIAN__
00117 #else
00118
00119 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
00120 #define __BIG_ENDIAN__
00121 #endif
00122
00123 #endif
00124
00125 #if !defined(__LITTLE_ENDIAN__) && !defined(__BIG_ENDIAN__)
00126 #error "Endianess not supported"
00127 #endif
00128
00129 enum JSTYPES
00130 {
00131 JT_NULL,
00132 JT_TRUE,
00133 JT_FALSE,
00134 JT_INT,
00135 JT_LONG,
00136 JT_DOUBLE,
00137 JT_UTF8,
00138 JT_ARRAY,
00139 JT_OBJECT,
00140 JT_INVALID,
00141 };
00142
00143 typedef void * JSOBJ;
00144 typedef void * JSITER;
00145
00146 typedef struct __JSONTypeContext
00147 {
00148 int type;
00149 void *prv;
00150 } JSONTypeContext;
00151
00152
00153
00154 typedef void (*JSPFN_ITERBEGIN)(JSOBJ obj, JSONTypeContext *tc);
00155 typedef int (*JSPFN_ITERNEXT)(JSOBJ obj, JSONTypeContext *tc);
00156 typedef void (*JSPFN_ITEREND)(JSOBJ obj, JSONTypeContext *tc);
00157 typedef JSOBJ (*JSPFN_ITERGETVALUE)(JSOBJ obj, JSONTypeContext *tc);
00158 typedef char *(*JSPFN_ITERGETNAME)(JSOBJ obj, JSONTypeContext *tc, size_t *outLen);
00159 typedef void *(*JSPFN_MALLOC)(size_t size);
00160 typedef void (*JSPFN_FREE)(void *pptr);
00161 typedef void *(*JSPFN_REALLOC)(void *base, size_t size);
00162
00163 typedef struct __JSONObjectEncoder
00164 {
00165 void (*beginTypeContext)(JSOBJ obj, JSONTypeContext *tc);
00166 void (*endTypeContext)(JSOBJ obj, JSONTypeContext *tc);
00167 const char *(*getStringValue)(JSOBJ obj, JSONTypeContext *tc, size_t *_outLen);
00168 JSINT64 (*getLongValue)(JSOBJ obj, JSONTypeContext *tc);
00169 JSINT32 (*getIntValue)(JSOBJ obj, JSONTypeContext *tc);
00170 double (*getDoubleValue)(JSOBJ obj, JSONTypeContext *tc);
00171
00172
00173
00174
00175
00176 JSPFN_ITERBEGIN iterBegin;
00177
00178
00179
00180
00181
00182 JSPFN_ITERNEXT iterNext;
00183
00184
00185
00186
00187
00188 JSPFN_ITEREND iterEnd;
00189
00190
00191
00192
00193
00194 JSPFN_ITERGETVALUE iterGetValue;
00195
00196
00197
00198
00199
00200 JSPFN_ITERGETNAME iterGetName;
00201
00202
00203
00204
00205
00206 void (*releaseObject)(JSOBJ obj);
00207
00208
00209
00210 JSPFN_MALLOC malloc;
00211 JSPFN_REALLOC realloc;
00212 JSPFN_FREE free;
00213
00214
00215
00216 int recursionMax;
00217
00218
00219
00220 int doublePrecision;
00221
00222
00223
00224 int forceASCII;
00225
00226
00227
00228
00229 const char *errorMsg;
00230 JSOBJ errorObj;
00231
00232
00233 char *start;
00234 char *offset;
00235 char *end;
00236 int heap;
00237 int level;
00238
00239 } JSONObjectEncoder;
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261 EXPORTFUNCTION char *JSON_EncodeObject(JSOBJ obj, JSONObjectEncoder *enc, char *buffer, size_t cbBuffer);
00262
00263
00264
00265 typedef struct __JSONObjectDecoder
00266 {
00267 JSOBJ (*newString)(wchar_t *start, wchar_t *end);
00268 void (*objectAddKey)(JSOBJ obj, JSOBJ name, JSOBJ value);
00269 void (*arrayAddItem)(JSOBJ obj, JSOBJ value);
00270 JSOBJ (*newTrue)(void);
00271 JSOBJ (*newFalse)(void);
00272 JSOBJ (*newNull)(void);
00273 JSOBJ (*newObject)(void);
00274 JSOBJ (*newArray)(void);
00275 JSOBJ (*newInt)(JSINT32 value);
00276 JSOBJ (*newLong)(JSINT64 value);
00277 JSOBJ (*newDouble)(double value);
00278 void (*releaseObject)(JSOBJ obj);
00279 JSPFN_MALLOC malloc;
00280 JSPFN_FREE free;
00281 JSPFN_REALLOC realloc;
00282
00283 char *errorStr;
00284 char *errorOffset;
00285
00286
00287
00288 } JSONObjectDecoder;
00289
00290 EXPORTFUNCTION JSOBJ JSON_DecodeObject(JSONObjectDecoder *dec, const char *buffer, size_t cbBuffer);
00291
00292 #endif