php_xsl.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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: Christian Stocker <chregu@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #include "php_ini.h"
  23. #include "ext/standard/info.h"
  24. #include "php_xsl.h"
  25. zend_class_entry *xsl_xsltprocessor_class_entry;
  26. static zend_object_handlers xsl_object_handlers;
  27. /* {{{ xsl_functions[]
  28. *
  29. * Every user visible function must have an entry in xsl_functions[].
  30. */
  31. const zend_function_entry xsl_functions[] = {
  32. PHP_FE_END
  33. };
  34. /* }}} */
  35. static const zend_module_dep xsl_deps[] = {
  36. ZEND_MOD_REQUIRED("libxml")
  37. ZEND_MOD_END
  38. };
  39. /* {{{ xsl_module_entry
  40. */
  41. zend_module_entry xsl_module_entry = {
  42. STANDARD_MODULE_HEADER_EX, NULL,
  43. xsl_deps,
  44. "xsl",
  45. xsl_functions,
  46. PHP_MINIT(xsl),
  47. PHP_MSHUTDOWN(xsl),
  48. NULL,
  49. NULL,
  50. PHP_MINFO(xsl),
  51. PHP_XSL_VERSION,
  52. STANDARD_MODULE_PROPERTIES
  53. };
  54. /* }}} */
  55. #ifdef COMPILE_DL_XSL
  56. ZEND_GET_MODULE(xsl)
  57. #endif
  58. /* {{{ xsl_objects_free_storage */
  59. void xsl_objects_free_storage(zend_object *object)
  60. {
  61. xsl_object *intern = php_xsl_fetch_object(object);
  62. zend_object_std_dtor(&intern->std);
  63. zend_hash_destroy(intern->parameter);
  64. FREE_HASHTABLE(intern->parameter);
  65. zend_hash_destroy(intern->registered_phpfunctions);
  66. FREE_HASHTABLE(intern->registered_phpfunctions);
  67. if (intern->node_list) {
  68. zend_hash_destroy(intern->node_list);
  69. FREE_HASHTABLE(intern->node_list);
  70. }
  71. if (intern->doc) {
  72. php_libxml_decrement_doc_ref(intern->doc);
  73. efree(intern->doc);
  74. }
  75. if (intern->ptr) {
  76. /* free wrapper */
  77. if (((xsltStylesheetPtr) intern->ptr)->_private != NULL) {
  78. ((xsltStylesheetPtr) intern->ptr)->_private = NULL;
  79. }
  80. xsltFreeStylesheet((xsltStylesheetPtr) intern->ptr);
  81. intern->ptr = NULL;
  82. }
  83. if (intern->profiling) {
  84. efree(intern->profiling);
  85. }
  86. }
  87. /* }}} */
  88. /* {{{ xsl_objects_new */
  89. zend_object *xsl_objects_new(zend_class_entry *class_type)
  90. {
  91. xsl_object *intern;
  92. intern = zend_object_alloc(sizeof(xsl_object), class_type);
  93. intern->securityPrefs = XSL_SECPREF_DEFAULT;
  94. zend_object_std_init(&intern->std, class_type);
  95. object_properties_init(&intern->std, class_type);
  96. intern->parameter = zend_new_array(0);
  97. intern->registered_phpfunctions = zend_new_array(0);
  98. intern->std.handlers = &xsl_object_handlers;
  99. return &intern->std;
  100. }
  101. /* }}} */
  102. /* {{{ PHP_MINIT_FUNCTION
  103. */
  104. PHP_MINIT_FUNCTION(xsl)
  105. {
  106. zend_class_entry ce;
  107. memcpy(&xsl_object_handlers, &std_object_handlers, sizeof(zend_object_handlers));
  108. xsl_object_handlers.offset = XtOffsetOf(xsl_object, std);
  109. xsl_object_handlers.clone_obj = NULL;
  110. xsl_object_handlers.free_obj = xsl_objects_free_storage;
  111. REGISTER_XSL_CLASS(ce, "XSLTProcessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltprocessor_class_entry);
  112. #if HAVE_XSL_EXSLT
  113. exsltRegisterAll();
  114. #endif
  115. xsltRegisterExtModuleFunction ((const xmlChar *) "functionString",
  116. (const xmlChar *) "http://php.net/xsl",
  117. xsl_ext_function_string_php);
  118. xsltRegisterExtModuleFunction ((const xmlChar *) "function",
  119. (const xmlChar *) "http://php.net/xsl",
  120. xsl_ext_function_object_php);
  121. xsltSetGenericErrorFunc(NULL, php_libxml_error_handler);
  122. REGISTER_LONG_CONSTANT("XSL_CLONE_AUTO", 0, CONST_CS | CONST_PERSISTENT);
  123. REGISTER_LONG_CONSTANT("XSL_CLONE_NEVER", -1, CONST_CS | CONST_PERSISTENT);
  124. REGISTER_LONG_CONSTANT("XSL_CLONE_ALWAYS", 1, CONST_CS | CONST_PERSISTENT);
  125. REGISTER_LONG_CONSTANT("XSL_SECPREF_NONE", XSL_SECPREF_NONE, CONST_CS | CONST_PERSISTENT);
  126. REGISTER_LONG_CONSTANT("XSL_SECPREF_READ_FILE", XSL_SECPREF_READ_FILE, CONST_CS | CONST_PERSISTENT);
  127. REGISTER_LONG_CONSTANT("XSL_SECPREF_WRITE_FILE", XSL_SECPREF_WRITE_FILE, CONST_CS | CONST_PERSISTENT);
  128. REGISTER_LONG_CONSTANT("XSL_SECPREF_CREATE_DIRECTORY", XSL_SECPREF_CREATE_DIRECTORY, CONST_CS | CONST_PERSISTENT);
  129. REGISTER_LONG_CONSTANT("XSL_SECPREF_READ_NETWORK", XSL_SECPREF_READ_NETWORK, CONST_CS | CONST_PERSISTENT);
  130. REGISTER_LONG_CONSTANT("XSL_SECPREF_WRITE_NETWORK", XSL_SECPREF_WRITE_NETWORK, CONST_CS | CONST_PERSISTENT);
  131. REGISTER_LONG_CONSTANT("XSL_SECPREF_DEFAULT", XSL_SECPREF_DEFAULT, CONST_CS | CONST_PERSISTENT);
  132. REGISTER_LONG_CONSTANT("LIBXSLT_VERSION", LIBXSLT_VERSION, CONST_CS | CONST_PERSISTENT);
  133. REGISTER_STRING_CONSTANT("LIBXSLT_DOTTED_VERSION", LIBXSLT_DOTTED_VERSION, CONST_CS | CONST_PERSISTENT);
  134. #if HAVE_XSL_EXSLT
  135. REGISTER_LONG_CONSTANT("LIBEXSLT_VERSION", LIBEXSLT_VERSION, CONST_CS | CONST_PERSISTENT);
  136. REGISTER_STRING_CONSTANT("LIBEXSLT_DOTTED_VERSION", LIBEXSLT_DOTTED_VERSION, CONST_CS | CONST_PERSISTENT);
  137. #endif
  138. return SUCCESS;
  139. }
  140. /* }}} */
  141. /* {{{ xsl_object_get_data */
  142. zval *xsl_object_get_data(void *obj)
  143. {
  144. zval *dom_wrapper;
  145. dom_wrapper = ((xsltStylesheetPtr) obj)->_private;
  146. return dom_wrapper;
  147. }
  148. /* }}} */
  149. /* {{{ xsl_object_set_data */
  150. static void xsl_object_set_data(void *obj, zval *wrapper)
  151. {
  152. ((xsltStylesheetPtr) obj)->_private = wrapper;
  153. }
  154. /* }}} */
  155. /* {{{ php_xsl_set_object */
  156. void php_xsl_set_object(zval *wrapper, void *obj)
  157. {
  158. xsl_object *object;
  159. object = Z_XSL_P(wrapper);
  160. object->ptr = obj;
  161. xsl_object_set_data(obj, wrapper);
  162. }
  163. /* }}} */
  164. /* {{{ php_xsl_create_object */
  165. void php_xsl_create_object(xsltStylesheetPtr obj, zval *wrapper_in, zval *return_value )
  166. {
  167. zval *wrapper;
  168. zend_class_entry *ce;
  169. if (!obj) {
  170. wrapper = wrapper_in;
  171. ZVAL_NULL(wrapper);
  172. return;
  173. }
  174. if ((wrapper = xsl_object_get_data((void *) obj))) {
  175. ZVAL_COPY(wrapper, wrapper_in);
  176. return;
  177. }
  178. if (!wrapper_in) {
  179. wrapper = return_value;
  180. } else {
  181. wrapper = wrapper_in;
  182. }
  183. ce = xsl_xsltprocessor_class_entry;
  184. if (!wrapper_in) {
  185. object_init_ex(wrapper, ce);
  186. }
  187. php_xsl_set_object(wrapper, (void *) obj);
  188. return;
  189. }
  190. /* }}} */
  191. /* {{{ PHP_MSHUTDOWN_FUNCTION
  192. */
  193. PHP_MSHUTDOWN_FUNCTION(xsl)
  194. {
  195. xsltUnregisterExtModuleFunction ((const xmlChar *) "functionString",
  196. (const xmlChar *) "http://php.net/xsl");
  197. xsltUnregisterExtModuleFunction ((const xmlChar *) "function",
  198. (const xmlChar *) "http://php.net/xsl");
  199. xsltSetGenericErrorFunc(NULL, NULL);
  200. xsltCleanupGlobals();
  201. return SUCCESS;
  202. }
  203. /* }}} */
  204. /* {{{ PHP_MINFO_FUNCTION
  205. */
  206. PHP_MINFO_FUNCTION(xsl)
  207. {
  208. php_info_print_table_start();
  209. {
  210. char buffer[128];
  211. int major, minor, subminor;
  212. php_info_print_table_row(2, "XSL", "enabled");
  213. major = xsltLibxsltVersion/10000;
  214. minor = (xsltLibxsltVersion - major * 10000) / 100;
  215. subminor = (xsltLibxsltVersion - major * 10000 - minor * 100);
  216. snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor);
  217. php_info_print_table_row(2, "libxslt Version", buffer);
  218. major = xsltLibxmlVersion/10000;
  219. minor = (xsltLibxmlVersion - major * 10000) / 100;
  220. subminor = (xsltLibxmlVersion - major * 10000 - minor * 100);
  221. snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor);
  222. php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer);
  223. }
  224. #if HAVE_XSL_EXSLT
  225. php_info_print_table_row(2, "EXSLT", "enabled");
  226. php_info_print_table_row(2, "libexslt Version", LIBEXSLT_DOTTED_VERSION);
  227. #endif
  228. php_info_print_table_end();
  229. }
  230. /* }}} */
  231. /*
  232. * Local variables:
  233. * tab-width: 4
  234. * c-basic-offset: 4
  235. * End:
  236. * vim600: noet sw=4 ts=4 fdm=marker
  237. * vim<600: noet sw=4 ts=4
  238. */