nodelist.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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: Christian Stocker <chregu@php.net> |
  16. | Rob Richards <rrichards@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #include "php.h"
  24. #if HAVE_LIBXML && HAVE_DOM
  25. #include "php_dom.h"
  26. /* {{{ arginfo */
  27. ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_nodelist_item, 0, 0, 1)
  28. ZEND_ARG_INFO(0, index)
  29. ZEND_END_ARG_INFO();
  30. /* }}} */
  31. /*
  32. * class DOMNodeList
  33. *
  34. * URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-536297177
  35. * Since:
  36. */
  37. const zend_function_entry php_dom_nodelist_class_functions[] = {
  38. PHP_FALIAS(item, dom_nodelist_item, arginfo_dom_nodelist_item)
  39. PHP_FE_END
  40. };
  41. /* {{{ length int
  42. readonly=yes
  43. URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-203510337
  44. Since:
  45. */
  46. int dom_nodelist_length_read(dom_object *obj, zval **retval TSRMLS_DC)
  47. {
  48. dom_nnodemap_object *objmap;
  49. xmlNodePtr nodep, curnode;
  50. int count = 0;
  51. HashTable *nodeht;
  52. objmap = (dom_nnodemap_object *)obj->ptr;
  53. if (objmap != NULL) {
  54. if (objmap->ht) {
  55. count = xmlHashSize(objmap->ht);
  56. } else {
  57. if (objmap->nodetype == DOM_NODESET) {
  58. nodeht = HASH_OF(objmap->baseobjptr);
  59. count = zend_hash_num_elements(nodeht);
  60. } else {
  61. nodep = dom_object_get_node(objmap->baseobj);
  62. if (nodep) {
  63. if (objmap->nodetype == XML_ATTRIBUTE_NODE || objmap->nodetype == XML_ELEMENT_NODE) {
  64. curnode = nodep->children;
  65. if (curnode) {
  66. count++;
  67. while (curnode->next != NULL) {
  68. count++;
  69. curnode = curnode->next;
  70. }
  71. }
  72. } else {
  73. if (nodep->type == XML_DOCUMENT_NODE || nodep->type == XML_HTML_DOCUMENT_NODE) {
  74. nodep = xmlDocGetRootElement((xmlDoc *) nodep);
  75. } else {
  76. nodep = nodep->children;
  77. }
  78. curnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, -1);
  79. }
  80. }
  81. }
  82. }
  83. }
  84. MAKE_STD_ZVAL(*retval);
  85. ZVAL_LONG(*retval, count);
  86. return SUCCESS;
  87. }
  88. /* }}} */
  89. /* {{{ proto DOMNode dom_nodelist_item(int index);
  90. URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136
  91. Since:
  92. */
  93. PHP_FUNCTION(dom_nodelist_item)
  94. {
  95. zval *id;
  96. long index;
  97. int ret;
  98. dom_object *intern;
  99. xmlNodePtr itemnode = NULL;
  100. dom_nnodemap_object *objmap;
  101. xmlNodePtr nodep, curnode;
  102. int count = 0;
  103. HashTable *nodeht;
  104. zval **entry;
  105. if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_nodelist_class_entry, &index) == FAILURE) {
  106. return;
  107. }
  108. if (index >= 0) {
  109. intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC);
  110. objmap = (dom_nnodemap_object *)intern->ptr;
  111. if (objmap != NULL) {
  112. if (objmap->ht) {
  113. if (objmap->nodetype == XML_ENTITY_NODE) {
  114. itemnode = php_dom_libxml_hash_iter(objmap->ht, index);
  115. } else {
  116. itemnode = php_dom_libxml_notation_iter(objmap->ht, index);
  117. }
  118. } else {
  119. if (objmap->nodetype == DOM_NODESET) {
  120. nodeht = HASH_OF(objmap->baseobjptr);
  121. if (zend_hash_index_find(nodeht, index, (void **) &entry)==SUCCESS) {
  122. *return_value = **entry;
  123. zval_copy_ctor(return_value);
  124. return;
  125. }
  126. } else if (objmap->baseobj) {
  127. nodep = dom_object_get_node(objmap->baseobj);
  128. if (nodep) {
  129. if (objmap->nodetype == XML_ATTRIBUTE_NODE || objmap->nodetype == XML_ELEMENT_NODE) {
  130. curnode = nodep->children;
  131. while (count < index && curnode != NULL) {
  132. count++;
  133. curnode = curnode->next;
  134. }
  135. itemnode = curnode;
  136. } else {
  137. if (nodep->type == XML_DOCUMENT_NODE || nodep->type == XML_HTML_DOCUMENT_NODE) {
  138. nodep = xmlDocGetRootElement((xmlDoc *) nodep);
  139. } else {
  140. nodep = nodep->children;
  141. }
  142. itemnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, index);
  143. }
  144. }
  145. }
  146. }
  147. }
  148. if (itemnode) {
  149. DOM_RET_OBJ(itemnode, &ret, objmap->baseobj);
  150. return;
  151. }
  152. }
  153. RETVAL_NULL();
  154. }
  155. /* }}} end dom_nodelist_item */
  156. #endif
  157. /*
  158. * Local variables:
  159. * tab-width: 4
  160. * c-basic-offset: 4
  161. * End:
  162. * vim600: noet sw=4 ts=4 fdm=marker
  163. * vim<600: noet sw=4 ts=4
  164. */