php_simplexml_exports.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. | Marcus Boerger <helly@php.net> |
  17. | Rob Richards <rrichards@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifndef PHP_SIMPLEXML_EXPORTS_H
  21. #define PHP_SIMPLEXML_EXPORTS_H
  22. #include "php_simplexml.h"
  23. #define SKIP_TEXT(__p) \
  24. if ((__p)->type == XML_TEXT_NODE) { \
  25. goto next_iter; \
  26. }
  27. #define GET_NODE(__s, __n) { \
  28. if ((__s)->node && (__s)->node->node) { \
  29. __n = (__s)->node->node; \
  30. } else { \
  31. __n = NULL; \
  32. php_error_docref(NULL, E_WARNING, "Node no longer exists"); \
  33. } \
  34. }
  35. PHP_SXE_API zend_object *sxe_object_new(zend_class_entry *ce);
  36. static inline php_sxe_object *php_sxe_fetch_object(zend_object *obj) /* {{{ */ {
  37. return (php_sxe_object *)((char*)(obj) - XtOffsetOf(php_sxe_object, zo));
  38. }
  39. /* }}} */
  40. #define Z_SXEOBJ_P(zv) php_sxe_fetch_object(Z_OBJ_P((zv)))
  41. typedef struct {
  42. zend_object_iterator intern;
  43. php_sxe_object *sxe;
  44. } php_sxe_iterator;
  45. PHP_SXE_API void php_sxe_rewind_iterator(php_sxe_object *sxe);
  46. PHP_SXE_API void php_sxe_move_forward_iterator(php_sxe_object *sxe);
  47. #endif /* PHP_SIMPLEXML_EXPORTS_H */
  48. /**
  49. * Local Variables:
  50. * c-basic-offset: 4
  51. * tab-width: 4
  52. * indent-tabs-mode: t
  53. * End:
  54. * vim600: fdm=marker
  55. * vim: noet sw=4 ts=4
  56. */