You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_object.h 12 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /*
  2. * $Id: json_object.h,v 1.12 2006/01/30 23:07:57 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. */
  11. #ifndef _json_object_h_
  12. #define _json_object_h_
  13. #include "json_inttypes.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #define JSON_OBJECT_DEF_HASH_ENTRIES 16
  18. #undef FALSE
  19. #define FALSE ((boolean)0)
  20. #undef TRUE
  21. #define TRUE ((boolean)1)
  22. extern const char *json_number_chars;
  23. extern const char *json_hex_chars;
  24. /* CAW: added for ANSI C iteration correctness */
  25. struct json_object_iter
  26. {
  27. char *key;
  28. struct json_object *val;
  29. struct lh_entry *entry;
  30. };
  31. /* forward structure definitions */
  32. typedef int boolean;
  33. typedef struct printbuf printbuf;
  34. typedef struct lh_table lh_table;
  35. typedef struct array_list array_list;
  36. typedef struct json_object json_object;
  37. typedef struct json_object_iter json_object_iter;
  38. typedef struct json_tokener json_tokener;
  39. /* supported object types */
  40. typedef enum json_type {
  41. /* If you change this, be sure to update json_type_to_name() too */
  42. json_type_null,
  43. json_type_boolean,
  44. json_type_double,
  45. json_type_int,
  46. json_type_object,
  47. json_type_array,
  48. json_type_string,
  49. } json_type;
  50. /* reference counting functions */
  51. /**
  52. * Increment the reference count of json_object
  53. * @param obj the json_object instance
  54. */
  55. extern struct json_object* json_object_get(struct json_object *obj);
  56. /**
  57. * Decrement the reference count of json_object and free if it reaches zero
  58. * @param obj the json_object instance
  59. */
  60. extern void json_object_put(struct json_object *obj);
  61. /**
  62. * Check if the json_object is of a given type
  63. * @param obj the json_object instance
  64. * @param type one of:
  65. json_type_boolean,
  66. json_type_double,
  67. json_type_int,
  68. json_type_object,
  69. json_type_array,
  70. json_type_string,
  71. */
  72. extern int json_object_is_type(struct json_object *obj, enum json_type type);
  73. /**
  74. * Get the type of the json_object
  75. * @param obj the json_object instance
  76. * @returns type being one of:
  77. json_type_boolean,
  78. json_type_double,
  79. json_type_int,
  80. json_type_object,
  81. json_type_array,
  82. json_type_string,
  83. */
  84. extern enum json_type json_object_get_type(struct json_object *obj);
  85. /** Stringify object to json format
  86. * @param obj the json_object instance
  87. * @returns a string in JSON format
  88. */
  89. extern const char* json_object_to_json_string(struct json_object *obj);
  90. /* object type methods */
  91. /** Create a new empty object
  92. * @returns a json_object of type json_type_object
  93. */
  94. extern struct json_object* json_object_new_object(void);
  95. /** Get the hashtable of a json_object of type json_type_object
  96. * @param obj the json_object instance
  97. * @returns a linkhash
  98. */
  99. extern struct lh_table* json_object_get_object(struct json_object *obj);
  100. /** Add an object field to a json_object of type json_type_object
  101. *
  102. * The reference count will *not* be incremented. This is to make adding
  103. * fields to objects in code more compact. If you want to retain a reference
  104. * to an added object you must wrap the passed object with json_object_get
  105. *
  106. * @param obj the json_object instance
  107. * @param key the object field name (a private copy will be duplicated)
  108. * @param val a json_object or NULL member to associate with the given field
  109. */
  110. extern void json_object_object_add(struct json_object* obj, const char *key,
  111. struct json_object *val);
  112. /** Get the json_object associate with a given object field
  113. * @param obj the json_object instance
  114. * @param key the object field name
  115. * @returns the json_object associated with the given field name
  116. */
  117. extern struct json_object* json_object_object_get(struct json_object* obj,
  118. const char *key);
  119. /** Delete the given json_object field
  120. *
  121. * The reference count will be decremented for the deleted object
  122. *
  123. * @param obj the json_object instance
  124. * @param key the object field name
  125. */
  126. extern void json_object_object_del(struct json_object* obj, const char *key);
  127. /** Iterate through all keys and values of an object
  128. * @param obj the json_object instance
  129. * @param key the local name for the char* key variable defined in the body
  130. * @param val the local name for the json_object* object variable defined in the body
  131. */
  132. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  133. # define json_object_object_foreach(obj,key,val) \
  134. char *key; struct json_object *val; \
  135. for(struct lh_entry *entry = json_object_get_object(obj)->head; ({ if(entry) { key = (char*)entry->k; val = (struct json_object*)entry->v; } ; entry; }); entry = entry->next )
  136. #else /* ANSI C or MSC */
  137. # define json_object_object_foreach(obj,key,val) \
  138. char *key; struct json_object *val; struct lh_entry *entry; \
  139. for(entry = json_object_get_object(obj)->head; (entry ? (key = (char*)entry->k, val = (struct json_object*)entry->v, entry) : 0); entry = entry->next)
  140. #endif /* defined(__GNUC__) && !defined(__STRICT_ANSI__) */
  141. /** Iterate through all keys and values of an object (ANSI C Safe)
  142. * @param obj the json_object instance
  143. * @param iter the object iterator
  144. */
  145. #define json_object_object_foreachC(obj,iter) \
  146. for(iter.entry = json_object_get_object(obj)->head; (iter.entry ? (iter.key = (char*)iter.entry->k, iter.val = (struct json_object*)iter.entry->v, iter.entry) : 0); iter.entry = iter.entry->next)
  147. /* Array type methods */
  148. /** Create a new empty json_object of type json_type_array
  149. * @returns a json_object of type json_type_array
  150. */
  151. extern struct json_object* json_object_new_array(void);
  152. /** Get the arraylist of a json_object of type json_type_array
  153. * @param obj the json_object instance
  154. * @returns an arraylist
  155. */
  156. extern struct array_list* json_object_get_array(struct json_object *obj);
  157. /** Get the length of a json_object of type json_type_array
  158. * @param obj the json_object instance
  159. * @returns an int
  160. */
  161. extern int json_object_array_length(struct json_object *obj);
  162. /** Sorts the elements of jso of type json_type_array
  163. *
  164. * Pointers to the json_object pointers will be passed as the two arguments
  165. * to @sort_fn
  166. *
  167. * @param obj the json_object instance
  168. * @param sort_fn a sorting function
  169. */
  170. extern void json_object_array_sort(struct json_object *jso, int(*sort_fn)(const void *, const void *));
  171. /** Add an element to the end of a json_object of type json_type_array
  172. *
  173. * The reference count will *not* be incremented. This is to make adding
  174. * fields to objects in code more compact. If you want to retain a reference
  175. * to an added object you must wrap the passed object with json_object_get
  176. *
  177. * @param obj the json_object instance
  178. * @param val the json_object to be added
  179. */
  180. extern int json_object_array_add(struct json_object *obj,
  181. struct json_object *val);
  182. /** Insert or replace an element at a specified index in an array (a json_object of type json_type_array)
  183. *
  184. * The reference count will *not* be incremented. This is to make adding
  185. * fields to objects in code more compact. If you want to retain a reference
  186. * to an added object you must wrap the passed object with json_object_get
  187. *
  188. * The reference count of a replaced object will be decremented.
  189. *
  190. * The array size will be automatically be expanded to the size of the
  191. * index if the index is larger than the current size.
  192. *
  193. * @param obj the json_object instance
  194. * @param idx the index to insert the element at
  195. * @param val the json_object to be added
  196. */
  197. extern int json_object_array_put_idx(struct json_object *obj, int idx,
  198. struct json_object *val);
  199. /** Get the element at specificed index of the array (a json_object of type json_type_array)
  200. * @param obj the json_object instance
  201. * @param idx the index to get the element at
  202. * @returns the json_object at the specified index (or NULL)
  203. */
  204. extern struct json_object* json_object_array_get_idx(struct json_object *obj,
  205. int idx);
  206. /* boolean type methods */
  207. /** Create a new empty json_object of type json_type_boolean
  208. * @param b a boolean TRUE or FALSE (0 or 1)
  209. * @returns a json_object of type json_type_boolean
  210. */
  211. extern struct json_object* json_object_new_boolean(boolean b);
  212. /** Get the boolean value of a json_object
  213. *
  214. * The type is coerced to a boolean if the passed object is not a boolean.
  215. * integer and double objects will return FALSE if there value is zero
  216. * or TRUE otherwise. If the passed object is a string it will return
  217. * TRUE if it has a non zero length. If any other object type is passed
  218. * TRUE will be returned if the object is not NULL.
  219. *
  220. * @param obj the json_object instance
  221. * @returns a boolean
  222. */
  223. extern boolean json_object_get_boolean(struct json_object *obj);
  224. /* int type methods */
  225. /** Create a new empty json_object of type json_type_int
  226. * Note that values are stored as 64-bit values internally.
  227. * To ensure the full range is maintained, use json_object_new_int64 instead.
  228. * @param i the integer
  229. * @returns a json_object of type json_type_int
  230. */
  231. extern struct json_object* json_object_new_int(int32_t i);
  232. /** Create a new empty json_object of type json_type_int
  233. * @param i the integer
  234. * @returns a json_object of type json_type_int
  235. */
  236. extern struct json_object* json_object_new_int64(int64_t i);
  237. /** Get the int value of a json_object
  238. *
  239. * The type is coerced to a int if the passed object is not a int.
  240. * double objects will return their integer conversion. Strings will be
  241. * parsed as an integer. If no conversion exists then 0 is returned.
  242. *
  243. * Note that integers are stored internally as 64-bit values.
  244. * If the value of too big or too small to fit into 32-bit, INT32_MAX or
  245. * INT32_MIN are returned, respectively.
  246. *
  247. * @param obj the json_object instance
  248. * @returns an int
  249. */
  250. extern int32_t json_object_get_int(struct json_object *obj);
  251. /** Get the int value of a json_object
  252. *
  253. * The type is coerced to a int64 if the passed object is not a int64.
  254. * double objects will return their int64 conversion. Strings will be
  255. * parsed as an int64. If no conversion exists then 0 is returned.
  256. *
  257. * @param obj the json_object instance
  258. * @returns an int64
  259. */
  260. extern int64_t json_object_get_int64(struct json_object *obj);
  261. /* double type methods */
  262. /** Create a new empty json_object of type json_type_double
  263. * @param d the double
  264. * @returns a json_object of type json_type_double
  265. */
  266. extern struct json_object* json_object_new_double(double d);
  267. /** Get the double value of a json_object
  268. *
  269. * The type is coerced to a double if the passed object is not a double.
  270. * integer objects will return their dboule conversion. Strings will be
  271. * parsed as a double. If no conversion exists then 0.0 is returned.
  272. *
  273. * @param obj the json_object instance
  274. * @returns an double
  275. */
  276. extern double json_object_get_double(struct json_object *obj);
  277. /* string type methods */
  278. /** Create a new empty json_object of type json_type_string
  279. *
  280. * A copy of the string is made and the memory is managed by the json_object
  281. *
  282. * @param s the string
  283. * @returns a json_object of type json_type_string
  284. */
  285. extern struct json_object* json_object_new_string(const char *s);
  286. extern struct json_object* json_object_new_string_len(const char *s, int len);
  287. /** Get the string value of a json_object
  288. *
  289. * If the passed object is not of type json_type_string then the JSON
  290. * representation of the object is returned.
  291. *
  292. * The returned string memory is managed by the json_object and will
  293. * be freed when the reference count of the json_object drops to zero.
  294. *
  295. * @param obj the json_object instance
  296. * @returns a string
  297. */
  298. extern const char* json_object_get_string(struct json_object *obj);
  299. /** Get the string length of a json_object
  300. *
  301. * If the passed object is not of type json_type_string then zero
  302. * will be returned.
  303. *
  304. * @param obj the json_object instance
  305. * @returns int
  306. */
  307. extern int json_object_get_string_len(struct json_object *obj);
  308. #ifdef __cplusplus
  309. }
  310. #endif
  311. #endif