php_output.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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: Michael Wallner <mike@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_OUTPUT_H
  19. #define PHP_OUTPUT_H
  20. #define PHP_OUTPUT_NEWAPI 1
  21. /* handler ops */
  22. #define PHP_OUTPUT_HANDLER_WRITE 0x00 /* standard passthru */
  23. #define PHP_OUTPUT_HANDLER_START 0x01 /* start */
  24. #define PHP_OUTPUT_HANDLER_CLEAN 0x02 /* restart */
  25. #define PHP_OUTPUT_HANDLER_FLUSH 0x04 /* pass along as much as possible */
  26. #define PHP_OUTPUT_HANDLER_FINAL 0x08 /* finalize */
  27. #define PHP_OUTPUT_HANDLER_CONT PHP_OUTPUT_HANDLER_WRITE
  28. #define PHP_OUTPUT_HANDLER_END PHP_OUTPUT_HANDLER_FINAL
  29. /* handler types */
  30. #define PHP_OUTPUT_HANDLER_INTERNAL 0x0000
  31. #define PHP_OUTPUT_HANDLER_USER 0x0001
  32. /* handler ability flags */
  33. #define PHP_OUTPUT_HANDLER_CLEANABLE 0x0010
  34. #define PHP_OUTPUT_HANDLER_FLUSHABLE 0x0020
  35. #define PHP_OUTPUT_HANDLER_REMOVABLE 0x0040
  36. #define PHP_OUTPUT_HANDLER_STDFLAGS 0x0070
  37. /* handler status flags */
  38. #define PHP_OUTPUT_HANDLER_STARTED 0x1000
  39. #define PHP_OUTPUT_HANDLER_DISABLED 0x2000
  40. #define PHP_OUTPUT_HANDLER_PROCESSED 0x4000
  41. /* handler op return values */
  42. typedef enum _php_output_handler_status_t {
  43. PHP_OUTPUT_HANDLER_FAILURE,
  44. PHP_OUTPUT_HANDLER_SUCCESS,
  45. PHP_OUTPUT_HANDLER_NO_DATA
  46. } php_output_handler_status_t;
  47. /* php_output_stack_pop() flags */
  48. #define PHP_OUTPUT_POP_TRY 0x000
  49. #define PHP_OUTPUT_POP_FORCE 0x001
  50. #define PHP_OUTPUT_POP_DISCARD 0x010
  51. #define PHP_OUTPUT_POP_SILENT 0x100
  52. /* real global flags */
  53. #define PHP_OUTPUT_IMPLICITFLUSH 0x01
  54. #define PHP_OUTPUT_DISABLED 0x02
  55. #define PHP_OUTPUT_WRITTEN 0x04
  56. #define PHP_OUTPUT_SENT 0x08
  57. /* supplementary flags for php_output_get_status() */
  58. #define PHP_OUTPUT_ACTIVE 0x10
  59. #define PHP_OUTPUT_LOCKED 0x20
  60. /* output layer is ready to use */
  61. #define PHP_OUTPUT_ACTIVATED 0x100000
  62. /* handler hooks */
  63. typedef enum _php_output_handler_hook_t {
  64. PHP_OUTPUT_HANDLER_HOOK_GET_OPAQ,
  65. PHP_OUTPUT_HANDLER_HOOK_GET_FLAGS,
  66. PHP_OUTPUT_HANDLER_HOOK_GET_LEVEL,
  67. PHP_OUTPUT_HANDLER_HOOK_IMMUTABLE,
  68. PHP_OUTPUT_HANDLER_HOOK_DISABLE,
  69. /* unused */
  70. PHP_OUTPUT_HANDLER_HOOK_LAST
  71. } php_output_handler_hook_t;
  72. #define PHP_OUTPUT_HANDLER_INITBUF_SIZE(s) \
  73. ( ((s) > 1) ? \
  74. (s) + PHP_OUTPUT_HANDLER_ALIGNTO_SIZE - ((s) % (PHP_OUTPUT_HANDLER_ALIGNTO_SIZE)) : \
  75. PHP_OUTPUT_HANDLER_DEFAULT_SIZE \
  76. )
  77. #define PHP_OUTPUT_HANDLER_ALIGNTO_SIZE 0x1000
  78. #define PHP_OUTPUT_HANDLER_DEFAULT_SIZE 0x4000
  79. typedef struct _php_output_buffer {
  80. char *data;
  81. size_t size;
  82. size_t used;
  83. uint32_t free:1;
  84. uint32_t _reserved:31;
  85. } php_output_buffer;
  86. typedef struct _php_output_context {
  87. int op;
  88. php_output_buffer in;
  89. php_output_buffer out;
  90. } php_output_context;
  91. /* old-style, stateless callback */
  92. typedef void (*php_output_handler_func_t)(char *output, size_t output_len, char **handled_output, size_t *handled_output_len, int mode);
  93. /* new-style, opaque context callback */
  94. typedef int (*php_output_handler_context_func_t)(void **handler_context, php_output_context *output_context);
  95. /* output handler context dtor */
  96. typedef void (*php_output_handler_context_dtor_t)(void *opaq);
  97. /* conflict check callback */
  98. typedef int (*php_output_handler_conflict_check_t)(const char *handler_name, size_t handler_name_len);
  99. /* ctor for aliases */
  100. typedef struct _php_output_handler *(*php_output_handler_alias_ctor_t)(const char *handler_name, size_t handler_name_len, size_t chunk_size, int flags);
  101. typedef struct _php_output_handler_user_func_t {
  102. zend_fcall_info fci;
  103. zend_fcall_info_cache fcc;
  104. zval zoh;
  105. } php_output_handler_user_func_t;
  106. typedef struct _php_output_handler {
  107. zend_string *name;
  108. int flags;
  109. int level;
  110. size_t size;
  111. php_output_buffer buffer;
  112. void *opaq;
  113. void (*dtor)(void *opaq);
  114. union {
  115. php_output_handler_user_func_t *user;
  116. php_output_handler_context_func_t internal;
  117. } func;
  118. } php_output_handler;
  119. ZEND_BEGIN_MODULE_GLOBALS(output)
  120. zend_stack handlers;
  121. php_output_handler *active;
  122. php_output_handler *running;
  123. const char *output_start_filename;
  124. int output_start_lineno;
  125. int flags;
  126. ZEND_END_MODULE_GLOBALS(output)
  127. PHPAPI ZEND_EXTERN_MODULE_GLOBALS(output)
  128. /* there should not be a need to use OG() from outside of output.c */
  129. #ifdef ZTS
  130. # define OG(v) ZEND_TSRMG(output_globals_id, zend_output_globals *, v)
  131. #else
  132. # define OG(v) (output_globals.v)
  133. #endif
  134. /* convenience macros */
  135. #define PHPWRITE(str, str_len) php_output_write((str), (str_len))
  136. #define PHPWRITE_H(str, str_len) php_output_write_unbuffered((str), (str_len))
  137. #define PUTC(c) php_output_write((const char *) &(c), 1)
  138. #define PUTC_H(c) php_output_write_unbuffered((const char *) &(c), 1)
  139. #define PUTS(str) do { \
  140. const char *__str = (str); \
  141. php_output_write(__str, strlen(__str)); \
  142. } while (0)
  143. #define PUTS_H(str) do { \
  144. const char *__str = (str); \
  145. php_output_write_unbuffered(__str, strlen(__str)); \
  146. } while (0)
  147. BEGIN_EXTERN_C()
  148. extern const char php_output_default_handler_name[sizeof("default output handler")];
  149. extern const char php_output_devnull_handler_name[sizeof("null output handler")];
  150. #define php_output_tearup() \
  151. php_output_startup(); \
  152. php_output_activate()
  153. #define php_output_teardown() \
  154. php_output_end_all(); \
  155. php_output_deactivate(); \
  156. php_output_shutdown()
  157. /* MINIT */
  158. PHPAPI void php_output_startup(void);
  159. /* MSHUTDOWN */
  160. PHPAPI void php_output_shutdown(void);
  161. PHPAPI void php_output_register_constants(void);
  162. /* RINIT */
  163. PHPAPI int php_output_activate(void);
  164. /* RSHUTDOWN */
  165. PHPAPI void php_output_deactivate(void);
  166. PHPAPI void php_output_set_status(int status);
  167. PHPAPI int php_output_get_status(void);
  168. PHPAPI void php_output_set_implicit_flush(int flush);
  169. PHPAPI const char *php_output_get_start_filename(void);
  170. PHPAPI int php_output_get_start_lineno(void);
  171. PHPAPI size_t php_output_write_unbuffered(const char *str, size_t len);
  172. PHPAPI size_t php_output_write(const char *str, size_t len);
  173. PHPAPI int php_output_flush(void);
  174. PHPAPI void php_output_flush_all(void);
  175. PHPAPI int php_output_clean(void);
  176. PHPAPI void php_output_clean_all(void);
  177. PHPAPI int php_output_end(void);
  178. PHPAPI void php_output_end_all(void);
  179. PHPAPI int php_output_discard(void);
  180. PHPAPI void php_output_discard_all(void);
  181. PHPAPI int php_output_get_contents(zval *p);
  182. PHPAPI int php_output_get_length(zval *p);
  183. PHPAPI int php_output_get_level(void);
  184. PHPAPI php_output_handler* php_output_get_active_handler(void);
  185. PHPAPI int php_output_start_default(void);
  186. PHPAPI int php_output_start_devnull(void);
  187. PHPAPI int php_output_start_user(zval *output_handler, size_t chunk_size, int flags);
  188. PHPAPI int php_output_start_internal(const char *name, size_t name_len, php_output_handler_func_t output_handler, size_t chunk_size, int flags);
  189. PHPAPI php_output_handler *php_output_handler_create_user(zval *handler, size_t chunk_size, int flags);
  190. PHPAPI php_output_handler *php_output_handler_create_internal(const char *name, size_t name_len, php_output_handler_context_func_t handler, size_t chunk_size, int flags);
  191. PHPAPI void php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(void*));
  192. PHPAPI int php_output_handler_start(php_output_handler *handler);
  193. PHPAPI int php_output_handler_started(const char *name, size_t name_len);
  194. PHPAPI int php_output_handler_hook(php_output_handler_hook_t type, void *arg);
  195. PHPAPI void php_output_handler_dtor(php_output_handler *handler);
  196. PHPAPI void php_output_handler_free(php_output_handler **handler);
  197. PHPAPI int php_output_handler_conflict(const char *handler_new, size_t handler_new_len, const char *handler_set, size_t handler_set_len);
  198. PHPAPI int php_output_handler_conflict_register(const char *handler_name, size_t handler_name_len, php_output_handler_conflict_check_t check_func);
  199. PHPAPI int php_output_handler_reverse_conflict_register(const char *handler_name, size_t handler_name_len, php_output_handler_conflict_check_t check_func);
  200. PHPAPI php_output_handler_alias_ctor_t php_output_handler_alias(const char *handler_name, size_t handler_name_len);
  201. PHPAPI int php_output_handler_alias_register(const char *handler_name, size_t handler_name_len, php_output_handler_alias_ctor_t func);
  202. END_EXTERN_C()
  203. PHP_FUNCTION(ob_start);
  204. PHP_FUNCTION(ob_flush);
  205. PHP_FUNCTION(ob_clean);
  206. PHP_FUNCTION(ob_end_flush);
  207. PHP_FUNCTION(ob_end_clean);
  208. PHP_FUNCTION(ob_get_flush);
  209. PHP_FUNCTION(ob_get_clean);
  210. PHP_FUNCTION(ob_get_contents);
  211. PHP_FUNCTION(ob_get_length);
  212. PHP_FUNCTION(ob_get_level);
  213. PHP_FUNCTION(ob_get_status);
  214. PHP_FUNCTION(ob_implicit_flush);
  215. PHP_FUNCTION(ob_list_handlers);
  216. PHP_FUNCTION(output_add_rewrite_var);
  217. PHP_FUNCTION(output_reset_rewrite_vars);
  218. #endif
  219. /*
  220. * Local variables:
  221. * tab-width: 4
  222. * c-basic-offset: 4
  223. * End:
  224. * vim600: sw=4 ts=4 fdm=marker
  225. * vim<600: sw=4 ts=4
  226. */