php_xml.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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: Stig Sæther Bakken <ssb@php.net> |
  16. | Thies C. Arntzen <thies@thieso.net> |
  17. | Sterling Hughes <sterling@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifndef PHP_XML_H
  21. #define PHP_XML_H
  22. #ifdef HAVE_XML
  23. extern zend_module_entry xml_module_entry;
  24. #define xml_module_ptr &xml_module_entry
  25. #include "php_version.h"
  26. #define PHP_XML_VERSION PHP_VERSION
  27. #else
  28. #define xml_module_ptr NULL
  29. #endif
  30. #ifdef HAVE_XML
  31. #include "expat_compat.h"
  32. #ifdef XML_UNICODE
  33. #error "UTF-16 Unicode support not implemented!"
  34. #endif
  35. ZEND_BEGIN_MODULE_GLOBALS(xml)
  36. XML_Char *default_encoding;
  37. ZEND_END_MODULE_GLOBALS(xml)
  38. typedef struct {
  39. int case_folding;
  40. XML_Parser parser;
  41. XML_Char *target_encoding;
  42. zval index;
  43. zval startElementHandler;
  44. zval endElementHandler;
  45. zval characterDataHandler;
  46. zval processingInstructionHandler;
  47. zval defaultHandler;
  48. zval unparsedEntityDeclHandler;
  49. zval notationDeclHandler;
  50. zval externalEntityRefHandler;
  51. zval unknownEncodingHandler;
  52. zval startNamespaceDeclHandler;
  53. zval endNamespaceDeclHandler;
  54. zend_function *startElementPtr;
  55. zend_function *endElementPtr;
  56. zend_function *characterDataPtr;
  57. zend_function *processingInstructionPtr;
  58. zend_function *defaultPtr;
  59. zend_function *unparsedEntityDeclPtr;
  60. zend_function *notationDeclPtr;
  61. zend_function *externalEntityRefPtr;
  62. zend_function *unknownEncodingPtr;
  63. zend_function *startNamespaceDeclPtr;
  64. zend_function *endNamespaceDeclPtr;
  65. zval object;
  66. zval data;
  67. zval info;
  68. int level;
  69. int toffset;
  70. int curtag;
  71. zval *ctag;
  72. char **ltags;
  73. int lastwasopen;
  74. int skipwhite;
  75. int isparsing;
  76. XML_Char *baseURI;
  77. } xml_parser;
  78. typedef struct {
  79. XML_Char *name;
  80. char (*decoding_function)(unsigned short);
  81. unsigned short (*encoding_function)(unsigned char);
  82. } xml_encoding;
  83. enum php_xml_option {
  84. PHP_XML_OPTION_CASE_FOLDING = 1,
  85. PHP_XML_OPTION_TARGET_ENCODING,
  86. PHP_XML_OPTION_SKIP_TAGSTART,
  87. PHP_XML_OPTION_SKIP_WHITE
  88. };
  89. /* for xml_parse_into_struct */
  90. #define XML_MAXLEVEL 255 /* XXX this should be dynamic */
  91. PHP_FUNCTION(xml_parser_create);
  92. PHP_FUNCTION(xml_parser_create_ns);
  93. PHP_FUNCTION(xml_set_object);
  94. PHP_FUNCTION(xml_set_element_handler);
  95. PHP_FUNCTION(xml_set_character_data_handler);
  96. PHP_FUNCTION(xml_set_processing_instruction_handler);
  97. PHP_FUNCTION(xml_set_default_handler);
  98. PHP_FUNCTION(xml_set_unparsed_entity_decl_handler);
  99. PHP_FUNCTION(xml_set_notation_decl_handler);
  100. PHP_FUNCTION(xml_set_external_entity_ref_handler);
  101. PHP_FUNCTION(xml_set_start_namespace_decl_handler);
  102. PHP_FUNCTION(xml_set_end_namespace_decl_handler);
  103. PHP_FUNCTION(xml_parse);
  104. PHP_FUNCTION(xml_get_error_code);
  105. PHP_FUNCTION(xml_error_string);
  106. PHP_FUNCTION(xml_get_current_line_number);
  107. PHP_FUNCTION(xml_get_current_column_number);
  108. PHP_FUNCTION(xml_get_current_byte_index);
  109. PHP_FUNCTION(xml_parser_free);
  110. PHP_FUNCTION(xml_parser_set_option);
  111. PHP_FUNCTION(xml_parser_get_option);
  112. PHP_FUNCTION(utf8_encode);
  113. PHP_FUNCTION(utf8_decode);
  114. PHP_FUNCTION(xml_parse_into_struct);
  115. PHP_XML_API char *_xml_zval_strdup(zval *);
  116. PHP_XML_API zend_string *xml_utf8_decode(const XML_Char *, size_t, const XML_Char *);
  117. PHP_XML_API zend_string *xml_utf8_encode(const char *, size_t, const XML_Char *);
  118. #endif /* HAVE_LIBEXPAT */
  119. #define phpext_xml_ptr xml_module_ptr
  120. #define XML(v) ZEND_MODULE_GLOBALS_ACCESSOR(xml, v)
  121. #if defined(ZTS) && defined(COMPILE_DL_XML)
  122. ZEND_TSRMLS_CACHE_EXTERN()
  123. #endif
  124. #endif /* PHP_XML_H */
  125. /*
  126. * Local variables:
  127. * tab-width: 4
  128. * c-basic-offset: 4
  129. * End:
  130. */