json_object_iterator.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /**
  2. *******************************************************************************
  3. * @file json_object_iterator.h
  4. *
  5. * Copyright (c) 2009-2012 Hewlett-Packard Development Company, L.P.
  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. * @brief json-c forces clients to use its private data
  11. * structures for JSON Object iteration. This API
  12. * corrects that by abstracting the private json-c
  13. * details.
  14. *
  15. * API attributes: <br>
  16. * * Thread-safe: NO<br>
  17. * * Reentrant: NO
  18. *
  19. *******************************************************************************
  20. */
  21. #ifndef JSON_OBJECT_ITERATOR_H
  22. #define JSON_OBJECT_ITERATOR_H
  23. #include <stddef.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /**
  28. * Forward declaration for the opaque iterator information.
  29. */
  30. struct json_object_iter_info_;
  31. /**
  32. * The opaque iterator that references a name/value pair within
  33. * a JSON Object instance or the "end" iterator value.
  34. */
  35. struct json_object_iterator {
  36. const void* opaque_;
  37. };
  38. /**
  39. * forward declaration of json-c's JSON value instance structure
  40. */
  41. struct json_object;
  42. /**
  43. * Initializes an iterator structure to a "default" value that
  44. * is convenient for initializing an iterator variable to a
  45. * default state (e.g., initialization list in a class'
  46. * constructor).
  47. *
  48. * @code
  49. * struct json_object_iterator iter = json_object_iter_init_default();
  50. * MyClass() : iter_(json_object_iter_init_default())
  51. * @endcode
  52. *
  53. * @note The initialized value doesn't reference any specific
  54. * pair, is considered an invalid iterator, and MUST NOT
  55. * be passed to any json-c API that expects a valid
  56. * iterator.
  57. *
  58. * @note User and internal code MUST NOT make any assumptions
  59. * about and dependencies on the value of the "default"
  60. * iterator value.
  61. *
  62. * @return json_object_iterator
  63. */
  64. struct json_object_iterator
  65. json_object_iter_init_default(void);
  66. /** Retrieves an iterator to the first pair of the JSON Object.
  67. *
  68. * @warning Any modification of the underlying pair invalidates all
  69. * iterators to that pair.
  70. *
  71. * @param obj JSON Object instance (MUST be of type json_object)
  72. *
  73. * @return json_object_iterator If the JSON Object has at
  74. * least one pair, on return, the iterator refers
  75. * to the first pair. If the JSON Object doesn't
  76. * have any pairs, the returned iterator is
  77. * equivalent to the "end" iterator for the same
  78. * JSON Object instance.
  79. *
  80. * @code
  81. * struct json_object_iterator it;
  82. * struct json_object_iterator itEnd;
  83. * struct json_object* obj;
  84. *
  85. * obj = json_tokener_parse("{'first':'george', 'age':100}");
  86. * it = json_object_iter_begin(obj);
  87. * itEnd = json_object_iter_end(obj);
  88. *
  89. * while (!json_object_iter_equal(&it, &itEnd)) {
  90. * printf("%s\n",
  91. * json_object_iter_peek_name(&it));
  92. * json_object_iter_next(&it);
  93. * }
  94. *
  95. * @endcode
  96. */
  97. struct json_object_iterator
  98. json_object_iter_begin(struct json_object* obj);
  99. /** Retrieves the iterator that represents the position beyond the
  100. * last pair of the given JSON Object instance.
  101. *
  102. * @warning Do NOT write code that assumes that the "end"
  103. * iterator value is NULL, even if it is so in a
  104. * particular instance of the implementation.
  105. *
  106. * @note The reason we do not (and MUST NOT) provide
  107. * "json_object_iter_is_end(json_object_iterator* iter)"
  108. * type of API is because it would limit the underlying
  109. * representation of name/value containment (or force us
  110. * to add additional, otherwise unnecessary, fields to
  111. * the iterator structure). The "end" iterator and the
  112. * equality test method, on the other hand, permit us to
  113. * cleanly abstract pretty much any reasonable underlying
  114. * representation without burdening the iterator
  115. * structure with unnecessary data.
  116. *
  117. * @note For performance reasons, memorize the "end" iterator prior
  118. * to any loop.
  119. *
  120. * @param obj JSON Object instance (MUST be of type json_object)
  121. *
  122. * @return json_object_iterator On return, the iterator refers
  123. * to the "end" of the Object instance's pairs
  124. * (i.e., NOT the last pair, but "beyond the last
  125. * pair" value)
  126. */
  127. struct json_object_iterator
  128. json_object_iter_end(const struct json_object* obj);
  129. /** Returns an iterator to the next pair, if any
  130. *
  131. * @warning Any modification of the underlying pair
  132. * invalidates all iterators to that pair.
  133. *
  134. * @param iter [IN/OUT] Pointer to iterator that references a
  135. * name/value pair; MUST be a valid, non-end iterator.
  136. * WARNING: bad things will happen if invalid or "end"
  137. * iterator is passed. Upon return will contain the
  138. * reference to the next pair if there is one; if there
  139. * are no more pairs, will contain the "end" iterator
  140. * value, which may be compared against the return value
  141. * of json_object_iter_end() for the same JSON Object
  142. * instance.
  143. */
  144. void
  145. json_object_iter_next(struct json_object_iterator* iter);
  146. /** Returns a const pointer to the name of the pair referenced
  147. * by the given iterator.
  148. *
  149. * @param iter pointer to iterator that references a name/value
  150. * pair; MUST be a valid, non-end iterator.
  151. *
  152. * @warning bad things will happen if an invalid or
  153. * "end" iterator is passed.
  154. *
  155. * @return const char* Pointer to the name of the referenced
  156. * name/value pair. The name memory belongs to the
  157. * name/value pair, will be freed when the pair is
  158. * deleted or modified, and MUST NOT be modified or
  159. * freed by the user.
  160. */
  161. const char*
  162. json_object_iter_peek_name(const struct json_object_iterator* iter);
  163. /** Returns a pointer to the json-c instance representing the
  164. * value of the referenced name/value pair, without altering
  165. * the instance's reference count.
  166. *
  167. * @param iter pointer to iterator that references a name/value
  168. * pair; MUST be a valid, non-end iterator.
  169. *
  170. * @warning bad things will happen if invalid or
  171. * "end" iterator is passed.
  172. *
  173. * @return struct json_object* Pointer to the json-c value
  174. * instance of the referenced name/value pair; the
  175. * value's reference count is not changed by this
  176. * function: if you plan to hold on to this json-c node,
  177. * take a look at json_object_get() and
  178. * json_object_put(). IMPORTANT: json-c API represents
  179. * the JSON Null value as a NULL json_object instance
  180. * pointer.
  181. */
  182. struct json_object*
  183. json_object_iter_peek_value(const struct json_object_iterator* iter);
  184. /** Tests two iterators for equality. Typically used to test
  185. * for end of iteration by comparing an iterator to the
  186. * corresponding "end" iterator (that was derived from the same
  187. * JSON Object instance).
  188. *
  189. * @note The reason we do not (and MUST NOT) provide
  190. * "json_object_iter_is_end(json_object_iterator* iter)"
  191. * type of API is because it would limit the underlying
  192. * representation of name/value containment (or force us
  193. * to add additional, otherwise unnecessary, fields to
  194. * the iterator structure). The equality test method, on
  195. * the other hand, permits us to cleanly abstract pretty
  196. * much any reasonable underlying representation.
  197. *
  198. * @param iter1 Pointer to first valid, non-NULL iterator
  199. * @param iter2 POinter to second valid, non-NULL iterator
  200. *
  201. * @warning if a NULL iterator pointer or an uninitialized
  202. * or invalid iterator, or iterators derived from
  203. * different JSON Object instances are passed, bad things
  204. * will happen!
  205. *
  206. * @return json_bool non-zero if iterators are equal (i.e., both
  207. * reference the same name/value pair or are both at
  208. * "end"); zero if they are not equal.
  209. */
  210. json_bool
  211. json_object_iter_equal(const struct json_object_iterator* iter1,
  212. const struct json_object_iterator* iter2);
  213. #ifdef __cplusplus
  214. }
  215. #endif
  216. #endif /* JSON_OBJECT_ITERATOR_H */