php_simplexml.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. | Author: Sterling Hughes <sterling@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_SIMPLEXML_H
  19. #define PHP_SIMPLEXML_H
  20. extern zend_module_entry simplexml_module_entry;
  21. #define phpext_simplexml_ptr &simplexml_module_entry
  22. #include "php_version.h"
  23. #define PHP_SIMPLEXML_VERSION PHP_VERSION
  24. #ifdef ZTS
  25. #include "TSRM.h"
  26. #endif
  27. #include "ext/libxml/php_libxml.h"
  28. #include <libxml/parser.h>
  29. #include <libxml/parserInternals.h>
  30. #include <libxml/tree.h>
  31. #include <libxml/uri.h>
  32. #include <libxml/xmlerror.h>
  33. #include <libxml/xinclude.h>
  34. #include <libxml/xpath.h>
  35. #include <libxml/xpathInternals.h>
  36. #include <libxml/xpointer.h>
  37. #include <libxml/xmlschemas.h>
  38. PHP_MINIT_FUNCTION(simplexml);
  39. PHP_MSHUTDOWN_FUNCTION(simplexml);
  40. PHP_MINFO_FUNCTION(simplexml);
  41. typedef enum {
  42. SXE_ITER_NONE = 0,
  43. SXE_ITER_ELEMENT = 1,
  44. SXE_ITER_CHILD = 2,
  45. SXE_ITER_ATTRLIST = 3
  46. } SXE_ITER;
  47. typedef struct {
  48. php_libxml_node_ptr *node;
  49. php_libxml_ref_obj *document;
  50. HashTable *properties;
  51. xmlXPathContextPtr xpath;
  52. struct {
  53. xmlChar *name;
  54. xmlChar *nsprefix;
  55. int isprefix;
  56. SXE_ITER type;
  57. zval data;
  58. } iter;
  59. zval tmp;
  60. zend_function *fptr_count;
  61. zend_object zo;
  62. } php_sxe_object;
  63. #ifdef ZTS
  64. #define SIMPLEXML_G(v) TSRMG(simplexml_globals_id, zend_simplexml_globals *, v)
  65. #else
  66. #define SIMPLEXML_G(v) (simplexml_globals.v)
  67. #endif
  68. #ifdef PHP_WIN32
  69. # ifdef PHP_SIMPLEXML_EXPORTS
  70. # define PHP_SXE_API __declspec(dllexport)
  71. # else
  72. # define PHP_SXE_API __declspec(dllimport)
  73. # endif
  74. #else
  75. # define PHP_SXE_API ZEND_API
  76. #endif
  77. PHP_SXE_API zend_class_entry *sxe_get_element_class_entry();
  78. #endif
  79. /*
  80. * Local variables:
  81. * tab-width: 4
  82. * c-basic-offset: 4
  83. * indent-tabs-mode: t
  84. * End:
  85. * vim600: fdm=marker
  86. * vim: noet sw=4 ts=4
  87. */