xml_common.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. #ifndef PHP_XML_COMMON_H
  21. #define PHP_XML_COMMON_H
  22. #include "ext/libxml/php_libxml.h"
  23. typedef libxml_doc_props *dom_doc_propsptr;
  24. typedef struct _dom_object {
  25. zend_object std;
  26. void *ptr;
  27. php_libxml_ref_obj *document;
  28. HashTable *prop_handler;
  29. zend_object_handle handle;
  30. } dom_object;
  31. #ifdef PHP_WIN32
  32. # ifdef PHPAPI
  33. # undef PHPAPI
  34. # endif
  35. # ifdef DOM_EXPORTS
  36. # define PHPAPI __declspec(dllexport)
  37. # else
  38. # define PHPAPI __declspec(dllimport)
  39. # endif /* DOM_EXPORTS */
  40. #elif defined(__GNUC__) && __GNUC__ >= 4
  41. # ifdef PHPAPI
  42. # undef PHPAPI
  43. # endif
  44. # define PHPAPI __attribute__ ((visibility("default")))
  45. #endif /* PHP_WIN32 */
  46. #define PHP_DOM_EXPORT PHPAPI
  47. PHP_DOM_EXPORT extern zend_class_entry *dom_node_class_entry;
  48. PHP_DOM_EXPORT dom_object *php_dom_object_get_data(xmlNodePtr obj);
  49. PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval* return_value, dom_object *domobj TSRMLS_DC);
  50. PHP_DOM_EXPORT xmlNodePtr dom_object_get_node(dom_object *obj);
  51. #define DOM_XMLNS_NAMESPACE \
  52. (const xmlChar *) "http://www.w3.org/2000/xmlns/"
  53. #define NODE_GET_OBJ(__ptr, __id, __prtype, __intern) { \
  54. __intern = (php_libxml_node_object *)zend_object_store_get_object(__id TSRMLS_CC); \
  55. if (__intern->node == NULL || !(__ptr = (__prtype)__intern->node->node)) { \
  56. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\
  57. RETURN_NULL();\
  58. } \
  59. }
  60. #define DOC_GET_OBJ(__ptr, __id, __prtype, __intern) { \
  61. __intern = (php_libxml_node_object *)zend_object_store_get_object(__id TSRMLS_CC); \
  62. if (__intern->document != NULL) { \
  63. if (!(__ptr = (__prtype)__intern->document->ptr)) { \
  64. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\
  65. RETURN_NULL();\
  66. } \
  67. } \
  68. }
  69. #define DOM_RET_OBJ(obj, ret, domobject) \
  70. if (!php_dom_create_object(obj, ret, return_value, domobject TSRMLS_CC)) { \
  71. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot create required DOM object"); \
  72. RETURN_FALSE; \
  73. }
  74. #define DOM_GET_THIS(zval) \
  75. if (NULL == (zval = getThis())) { \
  76. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Underlying object missing"); \
  77. RETURN_FALSE; \
  78. }
  79. #define DOM_GET_THIS_OBJ(__ptr, __id, __prtype, __intern) \
  80. DOM_GET_THIS(__id); \
  81. DOM_GET_OBJ(__ptr, __id, __prtype, __intern);
  82. #endif
  83. /*
  84. * Local variables:
  85. * tab-width: 4
  86. * c-basic-offset: 4
  87. * End:
  88. * vim600: noet sw=4 ts=4 fdm=marker
  89. * vim<600: noet sw=4 ts=4
  90. */