resourcebundle_iterator.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Hans-Peter Oeri (University of St.Gallen) <hp@oeri.ch> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #include <php.h>
  17. #include <zend.h>
  18. #include <zend_API.h>
  19. #include "resourcebundle/resourcebundle.h"
  20. #include "resourcebundle/resourcebundle_class.h"
  21. #include "resourcebundle/resourcebundle_iterator.h"
  22. /*
  23. * Although libicu offers iterator functions, they are not used here: libicu does iterate
  24. * irrespective of array indices. Those cannot be recreated afterwards. Arrays as well as tables
  25. * can however be accessed by numerical index, with table keys readable ex post.
  26. */
  27. /* {{{ resourcebundle_iterator_read */
  28. static void resourcebundle_iterator_read( ResourceBundle_iterator *iterator )
  29. {
  30. UErrorCode icuerror = U_ZERO_ERROR;
  31. ResourceBundle_object *rb = iterator->subject;
  32. rb->child = ures_getByIndex( rb->me, iterator->i, rb->child, &icuerror );
  33. if (U_SUCCESS(icuerror)) {
  34. /* ATTN: key extraction must be the first thing to do... rb->child might be reset in read! */
  35. if (iterator->is_table) {
  36. iterator->currentkey = estrdup( ures_getKey( rb->child ) );
  37. }
  38. resourcebundle_extract_value( &iterator->current, rb );
  39. }
  40. else {
  41. // zend_throw_exception( spl_ce_OutOfRangeException, "Running past end of ResourceBundle", 0);
  42. ZVAL_UNDEF(&iterator->current);
  43. }
  44. }
  45. /* }}} */
  46. /* {{{ resourcebundle_iterator_invalidate */
  47. static void resourcebundle_iterator_invalidate( zend_object_iterator *iter )
  48. {
  49. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  50. if (!Z_ISUNDEF(iterator->current)) {
  51. zval_ptr_dtor( &iterator->current );
  52. ZVAL_UNDEF(&iterator->current);
  53. }
  54. if (iterator->currentkey) {
  55. efree( iterator->currentkey );
  56. iterator->currentkey = NULL;
  57. }
  58. }
  59. /* }}} */
  60. /* {{{ resourcebundle_iterator_dtor */
  61. static void resourcebundle_iterator_dtor( zend_object_iterator *iter )
  62. {
  63. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  64. zval *object = &iterator->intern.data;
  65. resourcebundle_iterator_invalidate( iter );
  66. zval_ptr_dtor(object);
  67. }
  68. /* }}} */
  69. /* {{{ resourcebundle_iterator_has_more */
  70. static int resourcebundle_iterator_has_more( zend_object_iterator *iter )
  71. {
  72. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  73. return (iterator->i < iterator->length) ? SUCCESS : FAILURE;
  74. }
  75. /* }}} */
  76. /* {{{ resourcebundle_iterator_current */
  77. static zval *resourcebundle_iterator_current( zend_object_iterator *iter )
  78. {
  79. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  80. if (Z_ISUNDEF(iterator->current)) {
  81. resourcebundle_iterator_read( iterator);
  82. }
  83. return &iterator->current;
  84. }
  85. /* }}} */
  86. /* {{{ resourcebundle_iterator_key */
  87. static void resourcebundle_iterator_key( zend_object_iterator *iter, zval *key )
  88. {
  89. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  90. if (Z_ISUNDEF(iterator->current)) {
  91. resourcebundle_iterator_read( iterator);
  92. }
  93. if (iterator->is_table) {
  94. ZVAL_STRING(key, iterator->currentkey);
  95. } else {
  96. ZVAL_LONG(key, iterator->i);
  97. }
  98. }
  99. /* }}} */
  100. /* {{{ resourcebundle_iterator_step */
  101. static void resourcebundle_iterator_step( zend_object_iterator *iter )
  102. {
  103. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  104. iterator->i++;
  105. resourcebundle_iterator_invalidate( iter );
  106. }
  107. /* }}} */
  108. /* {{{ resourcebundle_iterator_has_reset */
  109. static void resourcebundle_iterator_reset( zend_object_iterator *iter )
  110. {
  111. ResourceBundle_iterator *iterator = (ResourceBundle_iterator *) iter;
  112. iterator->i = 0;
  113. resourcebundle_iterator_invalidate( iter );
  114. }
  115. /* }}} */
  116. /* {{{ resourcebundle_iterator_funcs */
  117. static const zend_object_iterator_funcs resourcebundle_iterator_funcs = {
  118. resourcebundle_iterator_dtor,
  119. resourcebundle_iterator_has_more,
  120. resourcebundle_iterator_current,
  121. resourcebundle_iterator_key,
  122. resourcebundle_iterator_step,
  123. resourcebundle_iterator_reset,
  124. resourcebundle_iterator_invalidate
  125. };
  126. /* }}} */
  127. /* {{{ resourcebundle_get_iterator */
  128. zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *object, int byref )
  129. {
  130. ResourceBundle_object *rb = Z_INTL_RESOURCEBUNDLE_P(object );
  131. ResourceBundle_iterator *iterator = emalloc( sizeof( ResourceBundle_iterator ) );
  132. if (byref) {
  133. php_error( E_ERROR, "ResourceBundle does not support writable iterators" );
  134. }
  135. zend_iterator_init(&iterator->intern);
  136. ZVAL_COPY(&iterator->intern.data, object);
  137. iterator->intern.funcs = &resourcebundle_iterator_funcs;
  138. iterator->subject = rb;
  139. /* The iterated rb can only be either URES_TABLE or URES_ARRAY
  140. * All other types are returned as php primitives!
  141. */
  142. iterator->is_table = (ures_getType( rb->me ) == URES_TABLE);
  143. iterator->length = ures_getSize( rb->me );
  144. ZVAL_UNDEF(&iterator->current);
  145. iterator->currentkey = NULL;
  146. iterator->i = 0;
  147. return (zend_object_iterator *) iterator;
  148. }
  149. /* }}} */
  150. /*
  151. * Local variables:
  152. * tab-width: 4
  153. * c-basic-offset: 4
  154. * End:
  155. * vim600: noet sw=4 ts=4 fdm=marker
  156. * vim<600: noet sw=4 ts=4
  157. */