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_iterator.c 4.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /**
  2. *******************************************************************************
  3. * @file json_object_iterator.c
  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. * implementation corrects that by abstracting the
  13. * private json-c details.
  14. *
  15. *******************************************************************************
  16. */
  17. #include <stddef.h>
  18. #include "json.h"
  19. #include "json_object_private.h"
  20. #include "json_object_iterator.h"
  21. /**
  22. * How It Works
  23. *
  24. * For each JSON Object, json-c maintains a linked list of zero
  25. * or more lh_entry (link-hash entry) structures inside the
  26. * Object's link-hash table (lh_table).
  27. *
  28. * Each lh_entry structure on the JSON Object's linked list
  29. * represents a single name/value pair. The "next" field of the
  30. * last lh_entry in the list is set to NULL, which terminates
  31. * the list.
  32. *
  33. * We represent a valid iterator that refers to an actual
  34. * name/value pair via a pointer to the pair's lh_entry
  35. * structure set as the iterator's opaque_ field.
  36. *
  37. * We follow json-c's current pair list representation by
  38. * representing a valid "end" iterator (one that refers past the
  39. * last pair) with a NULL value in the iterator's opaque_ field.
  40. *
  41. * A JSON Object without any pairs in it will have the "head"
  42. * field of its lh_table structure set to NULL. For such an
  43. * object, json_object_iter_begin will return an iterator with
  44. * the opaque_ field set to NULL, which is equivalent to the
  45. * "end" iterator.
  46. *
  47. * When iterating, we simply update the iterator's opaque_ field
  48. * to point to the next lh_entry structure in the linked list.
  49. * opaque_ will become NULL once we iterate past the last pair
  50. * in the list, which makes the iterator equivalent to the "end"
  51. * iterator.
  52. */
  53. /// Our current representation of the "end" iterator;
  54. ///
  55. /// @note May not always be NULL
  56. static const void* kObjectEndIterValue = NULL;
  57. /**
  58. * ****************************************************************************
  59. */
  60. struct json_object_iterator
  61. json_object_iter_begin(struct json_object* obj)
  62. {
  63. struct json_object_iterator iter;
  64. struct lh_table* pTable;
  65. /// @note json_object_get_object will return NULL if passed NULL
  66. /// or a non-json_type_object instance
  67. pTable = json_object_get_object(obj);
  68. JASSERT(NULL != pTable);
  69. /// @note For a pair-less Object, head is NULL, which matches our
  70. /// definition of the "end" iterator
  71. iter.opaque_ = pTable->head;
  72. return iter;
  73. }
  74. /**
  75. * ****************************************************************************
  76. */
  77. struct json_object_iterator
  78. json_object_iter_end(const struct json_object* obj)
  79. {
  80. struct json_object_iterator iter;
  81. JASSERT(NULL != obj);
  82. JASSERT(json_object_is_type(obj, json_type_object));
  83. iter.opaque_ = kObjectEndIterValue;
  84. return iter;
  85. }
  86. /**
  87. * ****************************************************************************
  88. */
  89. void
  90. json_object_iter_next(struct json_object_iterator* iter)
  91. {
  92. JASSERT(NULL != iter);
  93. JASSERT(kObjectEndIterValue != iter->opaque_);
  94. iter->opaque_ = ((struct lh_entry *)iter->opaque_)->next;
  95. }
  96. /**
  97. * ****************************************************************************
  98. */
  99. const char*
  100. json_object_iter_peek_name(const struct json_object_iterator* iter)
  101. {
  102. JASSERT(NULL != iter);
  103. JASSERT(kObjectEndIterValue != iter->opaque_);
  104. return (const char*)(((struct lh_entry *)iter->opaque_)->k);
  105. }
  106. /**
  107. * ****************************************************************************
  108. */
  109. struct json_object*
  110. json_object_iter_peek_value(const struct json_object_iterator* iter)
  111. {
  112. JASSERT(NULL != iter);
  113. JASSERT(kObjectEndIterValue != iter->opaque_);
  114. return (struct json_object*)(((struct lh_entry *)iter->opaque_)->v);
  115. }
  116. /**
  117. * ****************************************************************************
  118. */
  119. json_bool
  120. json_object_iter_equal(const struct json_object_iterator* iter1,
  121. const struct json_object_iterator* iter2)
  122. {
  123. JASSERT(NULL != iter1);
  124. JASSERT(NULL != iter2);
  125. return (iter1->opaque_ == iter2->opaque_);
  126. }
  127. /**
  128. * ****************************************************************************
  129. */
  130. struct json_object_iterator
  131. json_object_iter_init_default(void)
  132. {
  133. struct json_object_iterator iter;
  134. /**
  135. * @note Make this a negative, invalid value, such that
  136. * accidental access to it would likely be trapped by the
  137. * hardware as an invalid address.
  138. */
  139. iter.opaque_ = NULL;
  140. return iter;
  141. }