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.6 kB

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