sxe.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Marcus Boerger <helly@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. # include "config.h"
  20. #endif
  21. #include "php.h"
  22. #include "php_ini.h"
  23. #include "ext/standard/info.h"
  24. #include "zend_interfaces.h"
  25. #include "php_simplexml.h"
  26. #include "ext/spl/php_spl.h"
  27. #include "ext/spl/spl_iterators.h"
  28. #include "sxe.h"
  29. PHP_SXE_API zend_class_entry *ce_SimpleXMLIterator = NULL;
  30. PHP_SXE_API zend_class_entry *ce_SimpleXMLElement;
  31. #include "php_simplexml_exports.h"
  32. /* {{{ proto void SimpleXMLIterator::rewind()
  33. Rewind to first element */
  34. PHP_METHOD(ce_SimpleXMLIterator, rewind)
  35. {
  36. if (zend_parse_parameters_none() == FAILURE) {
  37. return;
  38. }
  39. php_sxe_rewind_iterator(Z_SXEOBJ_P(getThis()));
  40. }
  41. /* }}} */
  42. /* {{{ proto bool SimpleXMLIterator::valid()
  43. Check whether iteration is valid */
  44. PHP_METHOD(ce_SimpleXMLIterator, valid)
  45. {
  46. php_sxe_object *sxe = Z_SXEOBJ_P(getThis());
  47. if (zend_parse_parameters_none() == FAILURE) {
  48. return;
  49. }
  50. RETURN_BOOL(!Z_ISUNDEF(sxe->iter.data));
  51. }
  52. /* }}} */
  53. /* {{{ proto SimpleXMLIterator SimpleXMLIterator::current()
  54. Get current element */
  55. PHP_METHOD(ce_SimpleXMLIterator, current)
  56. {
  57. php_sxe_object *sxe = Z_SXEOBJ_P(getThis());
  58. zval *data;
  59. if (zend_parse_parameters_none() == FAILURE) {
  60. return;
  61. }
  62. if (Z_ISUNDEF(sxe->iter.data)) {
  63. return; /* return NULL */
  64. }
  65. data = &sxe->iter.data;
  66. ZVAL_COPY_DEREF(return_value, data);
  67. }
  68. /* }}} */
  69. /* {{{ proto string SimpleXMLIterator::key()
  70. Get name of current child element */
  71. PHP_METHOD(ce_SimpleXMLIterator, key)
  72. {
  73. xmlNodePtr curnode;
  74. php_sxe_object *intern;
  75. php_sxe_object *sxe = Z_SXEOBJ_P(getThis());
  76. if (zend_parse_parameters_none() == FAILURE) {
  77. return;
  78. }
  79. if (Z_ISUNDEF(sxe->iter.data)) {
  80. RETURN_FALSE;
  81. }
  82. intern = Z_SXEOBJ_P(&sxe->iter.data);
  83. if (intern != NULL && intern->node != NULL) {
  84. curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node;
  85. RETURN_STRINGL((char*)curnode->name, xmlStrlen(curnode->name));
  86. }
  87. RETURN_FALSE;
  88. }
  89. /* }}} */
  90. /* {{{ proto void SimpleXMLIterator::next()
  91. Move to next element */
  92. PHP_METHOD(ce_SimpleXMLIterator, next)
  93. {
  94. if (zend_parse_parameters_none() == FAILURE) {
  95. return;
  96. }
  97. php_sxe_move_forward_iterator(Z_SXEOBJ_P(getThis()));
  98. }
  99. /* }}} */
  100. /* {{{ proto bool SimpleXMLIterator::hasChildren()
  101. Check whether element has children (elements) */
  102. PHP_METHOD(ce_SimpleXMLIterator, hasChildren)
  103. {
  104. php_sxe_object *sxe = Z_SXEOBJ_P(getThis());
  105. php_sxe_object *child;
  106. xmlNodePtr node;
  107. if (zend_parse_parameters_none() == FAILURE) {
  108. return;
  109. }
  110. if (Z_ISUNDEF(sxe->iter.data) || sxe->iter.type == SXE_ITER_ATTRLIST) {
  111. RETURN_FALSE;
  112. }
  113. child = Z_SXEOBJ_P(&sxe->iter.data);
  114. GET_NODE(child, node);
  115. if (node) {
  116. node = node->children;
  117. }
  118. while (node && node->type != XML_ELEMENT_NODE) {
  119. node = node->next;
  120. }
  121. RETURN_BOOL(node ? 1 : 0);
  122. }
  123. /* }}} */
  124. /* {{{ proto SimpleXMLIterator SimpleXMLIterator::getChildren()
  125. Get child element iterator */
  126. PHP_METHOD(ce_SimpleXMLIterator, getChildren)
  127. {
  128. php_sxe_object *sxe = Z_SXEOBJ_P(getThis());
  129. zval *data;
  130. if (zend_parse_parameters_none() == FAILURE) {
  131. return;
  132. }
  133. if (Z_ISUNDEF(sxe->iter.data) || sxe->iter.type == SXE_ITER_ATTRLIST) {
  134. return; /* return NULL */
  135. }
  136. data = &sxe->iter.data;
  137. ZVAL_COPY_DEREF(return_value, data);
  138. }
  139. /* {{{ arginfo */
  140. ZEND_BEGIN_ARG_INFO(arginfo_simplexmliterator__void, 0)
  141. ZEND_END_ARG_INFO()
  142. /* }}} */
  143. static const zend_function_entry funcs_SimpleXMLIterator[] = {
  144. PHP_ME(ce_SimpleXMLIterator, rewind, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  145. PHP_ME(ce_SimpleXMLIterator, valid, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  146. PHP_ME(ce_SimpleXMLIterator, current, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  147. PHP_ME(ce_SimpleXMLIterator, key, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  148. PHP_ME(ce_SimpleXMLIterator, next, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  149. PHP_ME(ce_SimpleXMLIterator, hasChildren, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  150. PHP_ME(ce_SimpleXMLIterator, getChildren, arginfo_simplexmliterator__void, ZEND_ACC_PUBLIC)
  151. PHP_FE_END
  152. };
  153. /* }}} */
  154. PHP_MINIT_FUNCTION(sxe) /* {{{ */
  155. {
  156. zend_class_entry *pce;
  157. zend_class_entry sxi;
  158. if ((pce = zend_hash_str_find_ptr(CG(class_table), "simplexmlelement", sizeof("SimpleXMLElement") - 1)) == NULL) {
  159. ce_SimpleXMLElement = NULL;
  160. ce_SimpleXMLIterator = NULL;
  161. return SUCCESS; /* SimpleXML must be initialized before */
  162. }
  163. ce_SimpleXMLElement = pce;
  164. INIT_CLASS_ENTRY_EX(sxi, "SimpleXMLIterator", sizeof("SimpleXMLIterator") - 1, funcs_SimpleXMLIterator);
  165. ce_SimpleXMLIterator = zend_register_internal_class_ex(&sxi, ce_SimpleXMLElement);
  166. ce_SimpleXMLIterator->create_object = ce_SimpleXMLElement->create_object;
  167. zend_class_implements(ce_SimpleXMLIterator, 1, spl_ce_RecursiveIterator);
  168. zend_class_implements(ce_SimpleXMLIterator, 1, zend_ce_countable);
  169. return SUCCESS;
  170. }
  171. /* }}} */
  172. /*
  173. * Local variables:
  174. * tab-width: 4
  175. * c-basic-offset: 4
  176. * End:
  177. * vim600: fdm=marker
  178. * vim: noet sw=4 ts=4
  179. */