php_xml.h 4.5 KB

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