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

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