json_valueiterator.inl 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. // included by json_value.cpp
  2. // everything is within Json namespace
  3. // //////////////////////////////////////////////////////////////////
  4. // //////////////////////////////////////////////////////////////////
  5. // //////////////////////////////////////////////////////////////////
  6. // class ValueIteratorBase
  7. // //////////////////////////////////////////////////////////////////
  8. // //////////////////////////////////////////////////////////////////
  9. // //////////////////////////////////////////////////////////////////
  10. ValueIteratorBase::ValueIteratorBase()
  11. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  12. : current_()
  13. , isNull_( true )
  14. {
  15. }
  16. #else
  17. : isArray_( true )
  18. , isNull_( true )
  19. {
  20. iterator_.array_ = ValueInternalArray::IteratorState();
  21. }
  22. #endif
  23. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  24. ValueIteratorBase::ValueIteratorBase( const Value::ObjectValues::iterator &current )
  25. : current_( current )
  26. , isNull_( false )
  27. {
  28. }
  29. #else
  30. ValueIteratorBase::ValueIteratorBase( const ValueInternalArray::IteratorState &state )
  31. : isArray_( true )
  32. {
  33. iterator_.array_ = state;
  34. }
  35. ValueIteratorBase::ValueIteratorBase( const ValueInternalMap::IteratorState &state )
  36. : isArray_( false )
  37. {
  38. iterator_.map_ = state;
  39. }
  40. #endif
  41. Value &
  42. ValueIteratorBase::deref() const
  43. {
  44. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  45. return current_->second;
  46. #else
  47. if ( isArray_ )
  48. return ValueInternalArray::dereference( iterator_.array_ );
  49. return ValueInternalMap::value( iterator_.map_ );
  50. #endif
  51. }
  52. void
  53. ValueIteratorBase::increment()
  54. {
  55. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  56. ++current_;
  57. #else
  58. if ( isArray_ )
  59. ValueInternalArray::increment( iterator_.array_ );
  60. ValueInternalMap::increment( iterator_.map_ );
  61. #endif
  62. }
  63. void
  64. ValueIteratorBase::decrement()
  65. {
  66. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  67. --current_;
  68. #else
  69. if ( isArray_ )
  70. ValueInternalArray::decrement( iterator_.array_ );
  71. ValueInternalMap::decrement( iterator_.map_ );
  72. #endif
  73. }
  74. ValueIteratorBase::difference_type
  75. ValueIteratorBase::computeDistance( const SelfType &other ) const
  76. {
  77. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  78. # ifdef JSON_USE_CPPTL_SMALLMAP
  79. return current_ - other.current_;
  80. # else
  81. // Iterator for null value are initialized using the default
  82. // constructor, which initialize current_ to the default
  83. // std::map::iterator. As begin() and end() are two instance
  84. // of the default std::map::iterator, they can not be compared.
  85. // To allow this, we handle this comparison specifically.
  86. if ( isNull_ && other.isNull_ )
  87. {
  88. return 0;
  89. }
  90. // Usage of std::distance is not portable (does not compile with Sun Studio 12 RogueWave STL,
  91. // which is the one used by default).
  92. // Using a portable hand-made version for non random iterator instead:
  93. // return difference_type( std::distance( current_, other.current_ ) );
  94. difference_type myDistance = 0;
  95. for ( Value::ObjectValues::iterator it = current_; it != other.current_; ++it )
  96. {
  97. ++myDistance;
  98. }
  99. return myDistance;
  100. # endif
  101. #else
  102. if ( isArray_ )
  103. return ValueInternalArray::distance( iterator_.array_, other.iterator_.array_ );
  104. return ValueInternalMap::distance( iterator_.map_, other.iterator_.map_ );
  105. #endif
  106. }
  107. bool
  108. ValueIteratorBase::isEqual( const SelfType &other ) const
  109. {
  110. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  111. if ( isNull_ )
  112. {
  113. return other.isNull_;
  114. }
  115. return current_ == other.current_;
  116. #else
  117. if ( isArray_ )
  118. return ValueInternalArray::equals( iterator_.array_, other.iterator_.array_ );
  119. return ValueInternalMap::equals( iterator_.map_, other.iterator_.map_ );
  120. #endif
  121. }
  122. void
  123. ValueIteratorBase::copy( const SelfType &other )
  124. {
  125. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  126. current_ = other.current_;
  127. #else
  128. if ( isArray_ )
  129. iterator_.array_ = other.iterator_.array_;
  130. iterator_.map_ = other.iterator_.map_;
  131. #endif
  132. }
  133. Value
  134. ValueIteratorBase::key() const
  135. {
  136. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  137. const Value::CZString czstring = (*current_).first;
  138. if ( czstring.c_str() )
  139. {
  140. if ( czstring.isStaticString() )
  141. return Value( StaticString( czstring.c_str() ) );
  142. return Value( czstring.c_str() );
  143. }
  144. return Value( czstring.index() );
  145. #else
  146. if ( isArray_ )
  147. return Value( ValueInternalArray::indexOf( iterator_.array_ ) );
  148. bool isStatic;
  149. const char *memberName = ValueInternalMap::key( iterator_.map_, isStatic );
  150. if ( isStatic )
  151. return Value( StaticString( memberName ) );
  152. return Value( memberName );
  153. #endif
  154. }
  155. UInt
  156. ValueIteratorBase::index() const
  157. {
  158. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  159. const Value::CZString czstring = (*current_).first;
  160. if ( !czstring.c_str() )
  161. return czstring.index();
  162. return Value::UInt( -1 );
  163. #else
  164. if ( isArray_ )
  165. return Value::UInt( ValueInternalArray::indexOf( iterator_.array_ ) );
  166. return Value::UInt( -1 );
  167. #endif
  168. }
  169. const char *
  170. ValueIteratorBase::memberName() const
  171. {
  172. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  173. const char *name = (*current_).first.c_str();
  174. return name ? name : "";
  175. #else
  176. if ( !isArray_ )
  177. return ValueInternalMap::key( iterator_.map_ );
  178. return "";
  179. #endif
  180. }
  181. // //////////////////////////////////////////////////////////////////
  182. // //////////////////////////////////////////////////////////////////
  183. // //////////////////////////////////////////////////////////////////
  184. // class ValueConstIterator
  185. // //////////////////////////////////////////////////////////////////
  186. // //////////////////////////////////////////////////////////////////
  187. // //////////////////////////////////////////////////////////////////
  188. ValueConstIterator::ValueConstIterator()
  189. {
  190. }
  191. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  192. ValueConstIterator::ValueConstIterator( const Value::ObjectValues::iterator &current )
  193. : ValueIteratorBase( current )
  194. {
  195. }
  196. #else
  197. ValueConstIterator::ValueConstIterator( const ValueInternalArray::IteratorState &state )
  198. : ValueIteratorBase( state )
  199. {
  200. }
  201. ValueConstIterator::ValueConstIterator( const ValueInternalMap::IteratorState &state )
  202. : ValueIteratorBase( state )
  203. {
  204. }
  205. #endif
  206. ValueConstIterator &
  207. ValueConstIterator::operator =( const ValueIteratorBase &other )
  208. {
  209. copy( other );
  210. return *this;
  211. }
  212. // //////////////////////////////////////////////////////////////////
  213. // //////////////////////////////////////////////////////////////////
  214. // //////////////////////////////////////////////////////////////////
  215. // class ValueIterator
  216. // //////////////////////////////////////////////////////////////////
  217. // //////////////////////////////////////////////////////////////////
  218. // //////////////////////////////////////////////////////////////////
  219. ValueIterator::ValueIterator()
  220. {
  221. }
  222. #ifndef JSON_VALUE_USE_INTERNAL_MAP
  223. ValueIterator::ValueIterator( const Value::ObjectValues::iterator &current )
  224. : ValueIteratorBase( current )
  225. {
  226. }
  227. #else
  228. ValueIterator::ValueIterator( const ValueInternalArray::IteratorState &state )
  229. : ValueIteratorBase( state )
  230. {
  231. }
  232. ValueIterator::ValueIterator( const ValueInternalMap::IteratorState &state )
  233. : ValueIteratorBase( state )
  234. {
  235. }
  236. #endif
  237. ValueIterator::ValueIterator( const ValueConstIterator &other )
  238. : ValueIteratorBase( other )
  239. {
  240. }
  241. ValueIterator::ValueIterator( const ValueIterator &other )
  242. : ValueIteratorBase( other )
  243. {
  244. }
  245. ValueIterator &
  246. ValueIterator::operator =( const SelfType &other )
  247. {
  248. copy( other );
  249. return *this;
  250. }