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
00042
00043 typedef struct cJSON {
00044 struct cJSON *next,*prev;
00045 struct cJSON *child;
00046
00047 int type;
00048
00049 char *valuestring;
00050 int valueint;
00051 double valuedouble;
00052
00053 char *string;
00054 } cJSON;
00055
00056 typedef struct cJSON_Hooks {
00057 void *(*malloc_fn)(size_t sz);
00058 void (*free_fn)(void *ptr);
00059 } cJSON_Hooks;
00060
00061
00062 extern void cJSON_InitHooks(cJSON_Hooks* hooks);
00063
00064
00065
00066 extern cJSON *cJSON_Parse(const char *value);
00067
00068 extern char *cJSON_Print(cJSON *item);
00069
00070 extern char *cJSON_PrintUnformatted(cJSON *item);
00071
00072 extern void cJSON_Delete(cJSON *c);
00073
00074
00075 extern int cJSON_GetArraySize(cJSON *array);
00076
00077 extern cJSON *cJSON_GetArrayItem(cJSON *array,int item);
00078
00079 extern cJSON *cJSON_GetObjectItem(cJSON *object,const char *string);
00080
00081
00082 extern const char *cJSON_GetErrorPtr();
00083
00084
00085 extern cJSON *cJSON_CreateNull();
00086 extern cJSON *cJSON_CreateTrue();
00087 extern cJSON *cJSON_CreateFalse();
00088 extern cJSON *cJSON_CreateBool(int b);
00089 extern cJSON *cJSON_CreateNumber(double num);
00090 extern cJSON *cJSON_CreateString(const char *string);
00091 extern cJSON *cJSON_CreateArray();
00092 extern cJSON *cJSON_CreateObject();
00093
00094
00095 extern cJSON *cJSON_CreateIntArray(int *numbers,int count);
00096 extern cJSON *cJSON_CreateFloatArray(float *numbers,int count);
00097 extern cJSON *cJSON_CreateDoubleArray(double *numbers,int count);
00098 extern cJSON *cJSON_CreateStringArray(const char **strings,int count);
00099
00100
00101 extern void cJSON_AddItemToArray(cJSON *array, cJSON *item);
00102 extern void cJSON_AddItemToObject(cJSON *object,const char *string,cJSON *item);
00103
00104 extern void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
00105 extern void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item);
00106
00107
00108 extern cJSON *cJSON_DetachItemFromArray(cJSON *array,int which);
00109 extern void cJSON_DeleteItemFromArray(cJSON *array,int which);
00110 extern cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string);
00111 extern void cJSON_DeleteItemFromObject(cJSON *object,const char *string);
00112
00113
00114 extern void cJSON_ReplaceItemInArray(cJSON *array,int which,cJSON *newitem);
00115 extern void cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
00116
00117 #define cJSON_AddNullToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateNull())
00118 #define cJSON_AddTrueToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateTrue())
00119 #define cJSON_AddFalseToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateFalse())
00120 #define cJSON_AddNumberToObject(object,name,n) cJSON_AddItemToObject(object, name, cJSON_CreateNumber(n))
00121 #define cJSON_AddStringToObject(object,name,s) cJSON_AddItemToObject(object, name, cJSON_CreateString(s))
00122
00123 #ifdef __cplusplus
00124 }
00125 #endif
00126
00127 #endif