php-src/main/output.c

549 lines
12 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
2001-02-26 06:11:02 +00:00
| Copyright (c) 1997-2001 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Zeev Suraski <zeev@zend.com> |
2000-10-29 09:14:55 +00:00
| Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#include "php.h"
#include "ext/standard/head.h"
#include "ext/session/php_session.h"
#include "basic_functions.h"
#include "SAPI.h"
/* output functions */
static int php_ub_body_write(const char *str, uint str_length);
static int php_ub_body_write_no_header(const char *str, uint str_length);
static int php_b_body_write(const char *str, uint str_length);
static void php_ob_init(uint initial_size, uint block_size, zval *output_handler, int chunk_size);
static void php_ob_append(const char *text, uint text_length);
1999-12-05 14:16:37 +00:00
#if 0
static void php_ob_prepend(const char *text, uint text_length);
1999-12-05 14:16:37 +00:00
#endif
#ifdef ZTS
int output_globals_id;
#else
php_output_globals output_globals;
#endif
static void php_output_init_globals(OLS_D)
{
1999-11-23 22:10:44 +00:00
OG(php_body_write) = NULL;
OG(php_header_write) = NULL;
OG(implicit_flush) = 0;
OG(output_start_filename) = NULL;
OG(output_start_lineno) = 0;
}
1999-11-23 03:10:46 +00:00
PHP_GINIT_FUNCTION(output)
{
#ifdef ZTS
output_globals_id = ts_allocate_id(sizeof(php_output_globals), (ts_allocate_ctor) php_output_init_globals, NULL);
#else
php_output_init_globals(OLS_C);
#endif
return SUCCESS;
}
/* Start output layer */
PHPAPI void php_output_startup()
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
1999-11-23 22:10:44 +00:00
OG(php_body_write) = php_ub_body_write;
OG(php_header_write) = sapi_module.ub_write;
OG(nesting_level) = 0;
2000-09-03 15:56:54 +00:00
OG(lock) = 0;
}
PHPAPI int php_body_write(const char *str, uint str_length)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
return OG(php_body_write)(str, str_length);
}
PHPAPI int php_header_write(const char *str, uint str_length)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
return OG(php_header_write)(str, str_length);
}
/* Start output buffering */
PHPAPI int php_start_ob_buffer(zval *output_handler, int chunk_size)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (OG(lock)) {
return FAILURE;
}
php_ob_init(40*1024, 10*1024, output_handler, chunk_size);
1999-11-23 22:10:44 +00:00
OG(php_body_write) = php_b_body_write;
return SUCCESS;
}
/* End output buffering (one level) */
PHPAPI void php_end_ob_buffer(int send_buffer)
{
char *final_buffer=NULL;
2000-09-03 15:58:50 +00:00
int final_buffer_length=0;
zval *alternate_buffer=NULL;
char *to_be_destroyed_buffer;
SLS_FETCH();
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (OG(nesting_level)==0) {
return;
}
if (OG(active_ob_buffer).output_handler) {
zval **params[1];
zval *orig_buffer;
CLS_FETCH();
ALLOC_INIT_ZVAL(orig_buffer);
orig_buffer->value.str.val = OG(active_ob_buffer).buffer;
orig_buffer->value.str.len = OG(active_ob_buffer).text_length;
orig_buffer->type = IS_STRING;
orig_buffer->refcount=2; /* don't let call_user_function() destroy our buffer */
params[0] = &orig_buffer;
OG(lock) = 1;
if (call_user_function_ex(CG(function_table), NULL, OG(active_ob_buffer).output_handler, &alternate_buffer, 1, params, 1, NULL)==SUCCESS) {
convert_to_string_ex(&alternate_buffer);
final_buffer = alternate_buffer->value.str.val;
final_buffer_length = alternate_buffer->value.str.len;
}
OG(lock) = 0;
zval_ptr_dtor(&OG(active_ob_buffer).output_handler);
if (orig_buffer->refcount==2) { /* free the zval */
FREE_ZVAL(orig_buffer);
} else {
orig_buffer->refcount--;
}
}
if (!final_buffer) {
final_buffer = OG(active_ob_buffer).buffer;
final_buffer_length = OG(active_ob_buffer).text_length;
}
if (OG(nesting_level)==1) { /* end buffering */
if (SG(headers_sent) && !SG(request_info).headers_only) {
OG(php_body_write) = php_ub_body_write_no_header;
} else {
OG(php_body_write) = php_ub_body_write;
}
}
to_be_destroyed_buffer = OG(active_ob_buffer).buffer;
if (OG(nesting_level)>1) { /* restore previous buffer */
php_ob_buffer *ob_buffer_p;
zend_stack_top(&OG(ob_buffers), (void **) &ob_buffer_p);
OG(active_ob_buffer) = *ob_buffer_p;
zend_stack_del_top(&OG(ob_buffers));
if (OG(nesting_level)==2) { /* destroy the stack */
zend_stack_destroy(&OG(ob_buffers));
}
}
if (send_buffer) {
OG(php_body_write)(final_buffer, final_buffer_length);
}
if (alternate_buffer) {
zval_ptr_dtor(&alternate_buffer);
}
efree(to_be_destroyed_buffer);
OG(nesting_level)--;
}
/* End output buffering (all buffers) */
PHPAPI void php_end_ob_buffers(int send_buffer)
{
OLS_FETCH();
while (OG(nesting_level)!=0) {
php_end_ob_buffer(send_buffer);
}
}
PHPAPI void php_start_implicit_flush()
{
OLS_FETCH();
php_end_ob_buffer(1); /* Switch out of output buffering if we're in it */
OG(implicit_flush)=1;
}
PHPAPI void php_end_implicit_flush()
{
OLS_FETCH();
OG(implicit_flush)=0;
}
/*
* Output buffering - implementation
*/
1999-12-05 14:16:37 +00:00
static inline void php_ob_allocate(void)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (OG(active_ob_buffer).size<OG(active_ob_buffer).text_length) {
while (OG(active_ob_buffer).size <= OG(active_ob_buffer).text_length) {
OG(active_ob_buffer).size+=OG(active_ob_buffer).block_size;
}
OG(active_ob_buffer).buffer = (char *) erealloc(OG(active_ob_buffer).buffer, OG(active_ob_buffer).size+1);
}
}
static void php_ob_init(uint initial_size, uint block_size, zval *output_handler, int chunk_size)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (OG(nesting_level)>0) {
if (OG(nesting_level)==1) { /* initialize stack */
zend_stack_init(&OG(ob_buffers));
}
zend_stack_push(&OG(ob_buffers), &OG(active_ob_buffer), sizeof(php_ob_buffer));
}
OG(nesting_level)++;
OG(active_ob_buffer).block_size = block_size;
OG(active_ob_buffer).size = initial_size;
OG(active_ob_buffer).buffer = (char *) emalloc(initial_size+1);
OG(active_ob_buffer).text_length = 0;
OG(active_ob_buffer).output_handler = output_handler;
OG(active_ob_buffer).chunk_size = chunk_size;
}
static void php_ob_append(const char *text, uint text_length)
{
char *target;
int original_ob_text_length;
int new_size;
1999-11-23 22:10:44 +00:00
OLS_FETCH();
original_ob_text_length=OG(active_ob_buffer).text_length;
new_size = OG(active_ob_buffer).text_length + text_length;
if (OG(active_ob_buffer).chunk_size
&& new_size > OG(active_ob_buffer).chunk_size) {
zval *output_handler = OG(active_ob_buffer).output_handler;
int chunk_size = OG(active_ob_buffer).chunk_size;
if (output_handler) {
output_handler->refcount++;
}
php_end_ob_buffer(1);
php_start_ob_buffer(output_handler, chunk_size);
php_ob_append(text, text_length);
return;
}
OG(active_ob_buffer).text_length = new_size;
php_ob_allocate();
target = OG(active_ob_buffer).buffer+original_ob_text_length;
memcpy(target, text, text_length);
target[text_length]=0;
}
1999-12-05 14:16:37 +00:00
#if 0
static void php_ob_prepend(const char *text, uint text_length)
{
char *p, *start;
1999-11-23 22:10:44 +00:00
OLS_FETCH();
OG(active_ob_buffer).text_length += text_length;
php_ob_allocate();
1999-11-23 22:10:44 +00:00
/* php_ob_allocate() may change OG(ob_buffer), so we can't initialize p&start earlier */
p = OG(ob_buffer)+OG(ob_text_length);
start = OG(ob_buffer);
while (--p>=start) {
p[text_length] = *p;
}
1999-11-23 22:10:44 +00:00
memcpy(OG(ob_buffer), text, text_length);
OG(ob_buffer)[OG(active_ob_buffer).text_length]=0;
}
1999-12-05 14:16:37 +00:00
#endif
/* Return the current output buffer */
int php_ob_get_buffer(pval *p)
{
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (OG(nesting_level)==0) {
return FAILURE;
}
p->type = IS_STRING;
p->value.str.val = estrndup(OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length);
p->value.str.len = OG(active_ob_buffer).text_length;
return SUCCESS;
}
/* Return the size of the current output buffer */
int php_ob_get_length(pval *p)
{
OLS_FETCH();
if (OG(nesting_level) == 0) {
return FAILURE;
}
p->type = IS_LONG;
p->value.lval = OG(active_ob_buffer).text_length;
return SUCCESS;
}
/*
* Wrapper functions - implementation
*/
/* buffered output function */
static int php_b_body_write(const char *str, uint str_length)
{
php_ob_append(str, str_length);
return str_length;
}
static int php_ub_body_write_no_header(const char *str, uint str_length)
{
char *newstr = NULL;
2000-10-26 18:10:57 +00:00
size_t new_length=0;
int result;
1999-11-23 22:10:44 +00:00
OLS_FETCH();
BLS_FETCH();
if (BG(use_trans_sid)) {
session_adapt_uris(str, str_length, &newstr, &new_length);
}
if (newstr) {
str = newstr;
str_length = new_length;
}
1999-11-23 22:10:44 +00:00
result = OG(php_header_write)(str, str_length);
if (OG(implicit_flush)) {
sapi_flush();
}
return result;
}
static int php_ub_body_write(const char *str, uint str_length)
{
int result = 0;
SLS_FETCH();
1999-11-23 22:10:44 +00:00
OLS_FETCH();
if (SG(request_info).headers_only) {
zend_bailout();
}
1999-12-17 19:51:39 +00:00
if (php_header()) {
if (zend_is_compiling()) {
CLS_FETCH();
OG(output_start_filename) = zend_get_compiled_filename(CLS_C);
OG(output_start_lineno) = zend_get_compiled_lineno(CLS_C);
} else if (zend_is_executing()) {
ELS_FETCH();
OG(output_start_filename) = zend_get_executed_filename(ELS_C);
OG(output_start_lineno) = zend_get_executed_lineno(ELS_C);
}
1999-11-23 22:10:44 +00:00
OG(php_body_write) = php_ub_body_write_no_header;
result = php_ub_body_write_no_header(str, str_length);
}
return result;
}
/*
* HEAD support
*/
2000-11-12 22:13:35 +00:00
/* {{{ proto void ob_start([ string user_function])
Turn on Output Buffering (specifying an optional output handler). */
PHP_FUNCTION(ob_start)
{
zval *output_handler;
int chunk_size=0;
switch (ZEND_NUM_ARGS()) {
case 0:
output_handler = NULL;
break;
case 1: {
zval **output_handler_p;
if (zend_get_parameters_ex(1, &output_handler_p)==FAILURE) {
RETURN_FALSE;
}
SEPARATE_ZVAL(output_handler_p);
output_handler = *output_handler_p;
output_handler->refcount++;
}
break;
case 2: {
zval **output_handler_p, **chunk_size_p;
if (zend_get_parameters_ex(2, &output_handler_p, &chunk_size_p)==FAILURE) {
RETURN_FALSE;
}
SEPARATE_ZVAL(output_handler_p);
output_handler = *output_handler_p;
output_handler->refcount++;
convert_to_long_ex(chunk_size_p);
chunk_size = Z_LVAL_PP(chunk_size_p);
}
break;
2000-09-03 15:58:50 +00:00
default:
ZEND_WRONG_PARAM_COUNT();
break;
}
if (php_start_ob_buffer(output_handler, chunk_size)==FAILURE) {
php_error(E_WARNING, "Cannot use output buffering in output buffering display handlers");
RETURN_FALSE;
}
RETURN_TRUE;
}
2000-04-18 19:18:47 +00:00
/* }}} */
2000-04-18 20:00:21 +00:00
/* {{{ proto void ob_end_flush(void)
2000-04-18 19:18:47 +00:00
Flush (send) the output buffer, and turn off output buffering */
PHP_FUNCTION(ob_end_flush)
{
php_end_ob_buffer(1);
}
2000-04-18 19:18:47 +00:00
/* }}} */
2000-04-18 20:00:21 +00:00
/* {{{ proto void ob_end_clean(void)
2000-04-18 19:18:47 +00:00
Clean (erase) the output buffer, and turn off output buffering */
PHP_FUNCTION(ob_end_clean)
{
php_end_ob_buffer(0);
}
2000-04-18 19:18:47 +00:00
/* }}} */
2000-05-23 23:13:02 +00:00
/* {{{ proto string ob_get_contents(void)
2000-04-18 19:18:47 +00:00
Return the contents of the output buffer */
PHP_FUNCTION(ob_get_contents)
{
if (php_ob_get_buffer(return_value)==FAILURE) {
RETURN_FALSE;
}
}
2000-04-18 19:18:47 +00:00
/* }}} */
/* {{{ proto string ob_get_length(void)
Return the length of the output buffer */
PHP_FUNCTION(ob_get_length)
{
if (php_ob_get_length(return_value)==FAILURE) {
RETURN_FALSE;
}
}
/* }}} */
2000-04-18 20:00:21 +00:00
/* {{{ proto void ob_implicit_flush([int flag])
Turn implicit flush on/off and is equivalent to calling flush() after every output call */
PHP_FUNCTION(ob_implicit_flush)
{
zval **zv_flag;
2000-01-15 17:23:18 +00:00
int flag;
switch(ZEND_NUM_ARGS()) {
case 0:
flag = 1;
break;
case 1:
if (zend_get_parameters_ex(1, &zv_flag)==FAILURE) {
RETURN_FALSE;
}
convert_to_long_ex(zv_flag);
flag = (*zv_flag)->value.lval;
break;
2000-01-15 17:23:18 +00:00
default:
WRONG_PARAM_COUNT;
break;
}
if (flag) {
php_start_implicit_flush();
} else {
php_end_implicit_flush();
}
}
2000-04-18 19:18:47 +00:00
/* }}} */
PHPAPI char *php_get_output_start_filename()
{
OLS_FETCH();
return OG(output_start_filename);
}
PHPAPI int php_get_output_start_lineno()
{
OLS_FETCH();
return OG(output_start_lineno);
}
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/