00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef cJSON__h
00024 #define cJSON__h
00025
00026 #ifdef __cplusplus
00027 extern "C"
00028 {
00029 #endif
00030
00031
00032 #define cJSON_False 0
00033 #define cJSON_True 1
00034 #define cJSON_NULL 2
00035 #define cJSON_Number 3
00036 #define cJSON_String 4
00037 #define cJSON_Array 5
00038 #define cJSON_Object 6
00039
00040 #define cJSON_IsReference 256
00041 #define cJSON_StringIsConst 512
00042
00043
00044 typedef struct cJSON {
00045 struct cJSON *next,*prev;
00046 struct cJSON *child;
00047
00048 int type;
00049
00050 char *valuestring;
00051 int valueint;
00052 double valuedouble;
00053
00054 char *string;
00055 } cJSON;
00056
00057 typedef struct cJSON_Hooks {
00058 void *(*malloc_fn)(size_t sz);
00059 void (*free_fn)(void *ptr);
00060 } cJSON_Hooks;
00061
00062
00063 extern void cJSON_InitHooks(cJSON_Hooks* hooks);
00064
00065
00066
00067 extern cJSON *cJSON_Parse(const char *value);
00068
00069 extern char *cJSON_Print(cJSON *item);
00070
00071 extern char *cJSON_PrintUnformatted(cJSON *item);
00072
00073 extern char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt);
00074
00075 extern void cJSON_Delete(cJSON *c);
00076
00077
00078 extern int cJSON_GetArraySize(cJSON *array);
00079
00080 extern cJSON *cJSON_GetArrayItem(cJSON *array,int item);
00081
00082 extern cJSON *cJSON_GetObjectItem(cJSON *object,const char *string);
00083
00084
00085 extern const char *cJSON_GetErrorPtr(void);
00086
00087
00088 extern cJSON *cJSON_CreateNull(void);
00089 extern cJSON *cJSON_CreateTrue(void);
00090 extern cJSON *cJSON_CreateFalse(void);
00091 extern cJSON *cJSON_CreateBool(int b);
00092 extern cJSON *cJSON_CreateNumber(double num);
00093 extern cJSON *cJSON_CreateString(const char *string);
00094 extern cJSON *cJSON_CreateArray(void);
00095 extern cJSON *cJSON_CreateObject(void);
00096
00097
00098 extern cJSON *cJSON_CreateIntArray(const int *numbers,int count);
00099 extern cJSON *cJSON_CreateFloatArray(const float *numbers,int count);
00100 extern cJSON *cJSON_CreateDoubleArray(const double *numbers,int count);
00101 extern cJSON *cJSON_CreateStringArray(const char **strings,int count);
00102
00103
00104 extern void cJSON_AddItemToArray(cJSON *array, cJSON *item);
00105 extern void cJSON_AddItemToObject(cJSON *object,const char *string,cJSON *item);
00106 extern void cJSON_AddItemToObjectCS(cJSON *object,const char *string,cJSON *item);
00107
00108 extern void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
00109 extern void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item);
00110
00111
00112 extern cJSON *cJSON_DetachItemFromArray(cJSON *array,int which);
00113 extern void cJSON_DeleteItemFromArray(cJSON *array,int which);
00114 extern cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string);
00115 extern void cJSON_DeleteItemFromObject(cJSON *object,const char *string);
00116
00117
00118 extern void cJSON_InsertItemInArray(cJSON *array,int which,cJSON *newitem);
00119 extern void cJSON_ReplaceItemInArray(cJSON *array,int which,cJSON *newitem);
00120 extern void cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
00121
00122
00123 extern cJSON *cJSON_Duplicate(cJSON *item,int recurse);
00124
00125
00126
00127
00128
00129 extern cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_end,int require_null_terminated);
00130
00131 extern void cJSON_Minify(char *json);
00132
00133
00134 #define cJSON_AddNullToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateNull())
00135 #define cJSON_AddTrueToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateTrue())
00136 #define cJSON_AddFalseToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateFalse())
00137 #define cJSON_AddBoolToObject(object,name,b) cJSON_AddItemToObject(object, name, cJSON_CreateBool(b))
00138 #define cJSON_AddNumberToObject(object,name,n) cJSON_AddItemToObject(object, name, cJSON_CreateNumber(n))
00139 #define cJSON_AddStringToObject(object,name,s) cJSON_AddItemToObject(object, name, cJSON_CreateString(s))
00140
00141
00142 #define cJSON_SetIntValue(object,val) ((object)?(object)->valueint=(object)->valuedouble=(val):(val))
00143 #define cJSON_SetNumberValue(object,val) ((object)?(object)->valueint=(object)->valuedouble=(val):(val))
00144
00145 #ifdef __cplusplus
00146 }
00147 #endif
00148
00149 #endif