1999-12-07 19:37:30 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP version 4.0 |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-01-01 09:32:05 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-12-07 19:37:30 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-02-20 07:41:32 +08:00
|
|
|
| This source file is subject to version 2.01 of the PHP license, |
|
1999-12-07 19:37:30 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-02-20 07:41:32 +08:00
|
|
|
| http://www.php.net/license/2_01.txt. |
|
1999-12-07 19:37:30 +08:00
|
|
|
| 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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Thies C. Arntzen (thies@digicol.de) |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* {{{ includes/startup/misc */
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_assert.h"
|
1999-12-07 21:08:17 +08:00
|
|
|
#include "php_ini.h"
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int active;
|
1999-12-07 21:08:17 +08:00
|
|
|
int bail;
|
1999-12-07 20:33:36 +08:00
|
|
|
int warning;
|
1999-12-08 00:45:46 +08:00
|
|
|
int quiet_eval;
|
|
|
|
char *default_callback;
|
1999-12-07 19:37:30 +08:00
|
|
|
char *callback;
|
|
|
|
} php_assert_globals;
|
|
|
|
|
|
|
|
#ifdef ZTS
|
1999-12-09 03:07:58 +08:00
|
|
|
#define ASSERTLS_D php_assert_globals *assert_globals
|
|
|
|
#define ASSERTLS_DC , ASSERTLS_D
|
|
|
|
#define ASSERTLS_C assert_globals
|
|
|
|
#define ASSERTLS_CC , ASSERTLS_CC
|
1999-12-07 19:37:30 +08:00
|
|
|
#define ASSERT(v) (assert_globals->v)
|
|
|
|
#define ASSERTLS_FETCH() php_assert_globals *assert_globals = ts_resource(assert_globals_id)
|
|
|
|
int assert_globals_id;
|
|
|
|
#else
|
1999-12-09 03:07:58 +08:00
|
|
|
#define ASSERTLS_D
|
|
|
|
#define ASSERTLS_DC
|
|
|
|
#define ASSERTLS_C
|
|
|
|
#define ASSERTLS_CC
|
1999-12-07 19:37:30 +08:00
|
|
|
#define ASSERT(v) (assert_globals.v)
|
|
|
|
#define ASSERTLS_FETCH()
|
|
|
|
php_assert_globals assert_globals;
|
|
|
|
#endif
|
|
|
|
|
1999-12-07 20:33:36 +08:00
|
|
|
#define SAFE_STRING(s) ((s)?(s):"")
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
#define ASSERT_ACTIVE 1
|
|
|
|
#define ASSERT_CALLBACK 2
|
1999-12-07 21:08:17 +08:00
|
|
|
#define ASSERT_BAIL 3
|
1999-12-07 20:33:36 +08:00
|
|
|
#define ASSERT_WARNING 4
|
1999-12-08 00:45:46 +08:00
|
|
|
#define ASSERT_QUIET_EVAL 5
|
1999-12-07 19:37:30 +08:00
|
|
|
|
1999-12-07 21:08:17 +08:00
|
|
|
PHP_INI_BEGIN()
|
2000-05-03 22:24:14 +08:00
|
|
|
STD_PHP_INI_ENTRY("assert.active", "1", PHP_INI_ALL, OnUpdateInt, active, php_assert_globals, assert_globals)
|
1999-12-08 00:45:46 +08:00
|
|
|
STD_PHP_INI_ENTRY("assert.bail", "0", PHP_INI_ALL, OnUpdateInt, bail, php_assert_globals, assert_globals)
|
|
|
|
STD_PHP_INI_ENTRY("assert.warning", "1", PHP_INI_ALL, OnUpdateInt, warning, php_assert_globals, assert_globals)
|
|
|
|
STD_PHP_INI_ENTRY("assert.callback", NULL, PHP_INI_ALL, OnUpdateString, default_callback, php_assert_globals, assert_globals)
|
|
|
|
STD_PHP_INI_ENTRY("assert.quiet_eval", "0", PHP_INI_ALL, OnUpdateInt, quiet_eval, php_assert_globals, assert_globals)
|
1999-12-07 21:08:17 +08:00
|
|
|
PHP_INI_END()
|
1999-12-07 19:37:30 +08:00
|
|
|
|
1999-12-09 03:07:58 +08:00
|
|
|
static void php_assert_init_globals(ASSERTLS_D)
|
1999-12-08 00:28:27 +08:00
|
|
|
{
|
1999-12-08 19:47:50 +08:00
|
|
|
ASSERT(callback) = 0;
|
1999-12-08 00:28:27 +08:00
|
|
|
}
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
PHP_MINIT_FUNCTION(assert)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
assert_globals_id = ts_allocate_id(sizeof(php_assert_globals), (ts_allocate_ctor) php_assert_init_globals, NULL);
|
1999-12-08 19:47:50 +08:00
|
|
|
#else
|
1999-12-09 03:07:58 +08:00
|
|
|
php_assert_init_globals(ASSERTLS_C);
|
1999-12-07 19:37:30 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-07 21:08:17 +08:00
|
|
|
REGISTER_INI_ENTRIES();
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
REGISTER_LONG_CONSTANT("ASSERT_ACTIVE", ASSERT_ACTIVE, CONST_CS|CONST_PERSISTENT);
|
|
|
|
REGISTER_LONG_CONSTANT("ASSERT_CALLBACK", ASSERT_CALLBACK, CONST_CS|CONST_PERSISTENT);
|
1999-12-07 21:08:17 +08:00
|
|
|
REGISTER_LONG_CONSTANT("ASSERT_BAIL", ASSERT_BAIL, CONST_CS|CONST_PERSISTENT);
|
1999-12-07 20:33:36 +08:00
|
|
|
REGISTER_LONG_CONSTANT("ASSERT_WARNING", ASSERT_WARNING, CONST_CS|CONST_PERSISTENT);
|
1999-12-08 00:45:46 +08:00
|
|
|
REGISTER_LONG_CONSTANT("ASSERT_QUIET_EVAL", ASSERT_QUIET_EVAL, CONST_CS|CONST_PERSISTENT);
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(assert)
|
|
|
|
{
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHP_RINIT_FUNCTION(assert)
|
|
|
|
{
|
1999-12-07 21:08:17 +08:00
|
|
|
ASSERTLS_FETCH();
|
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
if (ASSERT(callback)) {
|
|
|
|
efree(ASSERT(callback));
|
1999-12-07 21:33:37 +08:00
|
|
|
ASSERT(callback) = NULL;
|
|
|
|
}
|
1999-12-07 21:08:17 +08:00
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(assert)
|
|
|
|
{
|
1999-12-07 20:33:36 +08:00
|
|
|
ASSERTLS_FETCH();
|
1999-12-07 21:08:17 +08:00
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
if (ASSERT(callback)) {
|
|
|
|
efree(ASSERT(callback));
|
|
|
|
ASSERT(callback) = NULL;
|
|
|
|
}
|
1999-12-07 20:33:36 +08:00
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHP_MINFO_FUNCTION(assert)
|
|
|
|
{
|
1999-12-07 21:08:17 +08:00
|
|
|
DISPLAY_INI_ENTRIES();
|
1999-12-07 19:37:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
/* {{{ internal functions */
|
|
|
|
/* }}} */
|
1999-12-08 00:45:46 +08:00
|
|
|
/* {{{ proto int assert(string|bool assertion)
|
2000-02-24 22:43:53 +08:00
|
|
|
Checks if assertion is false */
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
PHP_FUNCTION(assert)
|
|
|
|
{
|
|
|
|
pval **assertion;
|
|
|
|
int val;
|
1999-12-07 20:33:36 +08:00
|
|
|
char *myeval = NULL;
|
1999-12-08 00:45:46 +08:00
|
|
|
char *cbfunc;
|
1999-12-07 20:33:36 +08:00
|
|
|
CLS_FETCH();
|
1999-12-07 19:37:30 +08:00
|
|
|
ASSERTLS_FETCH();
|
|
|
|
|
|
|
|
if (! ASSERT(active)) {
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
|
1999-12-19 06:40:35 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &assertion) == FAILURE) {
|
1999-12-07 19:37:30 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*assertion)->type == IS_STRING) {
|
|
|
|
zval retval;
|
1999-12-08 22:18:28 +08:00
|
|
|
int old_error_reporting = 0; /* shut up gcc! */
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
myeval = (*assertion)->value.str.val;
|
1999-12-08 00:45:46 +08:00
|
|
|
|
|
|
|
if (ASSERT(quiet_eval)) {
|
|
|
|
old_error_reporting = EG(error_reporting);
|
|
|
|
EG(error_reporting) = 0;
|
|
|
|
}
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
zend_eval_string(myeval, &retval CLS_CC ELS_CC);
|
1999-12-08 00:45:46 +08:00
|
|
|
|
|
|
|
if (ASSERT(quiet_eval)) {
|
|
|
|
EG(error_reporting) = old_error_reporting;
|
|
|
|
}
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
convert_to_boolean(&retval);
|
|
|
|
val = retval.value.lval;
|
|
|
|
} else {
|
|
|
|
convert_to_boolean_ex(assertion);
|
|
|
|
val = (*assertion)->value.lval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
1999-12-07 20:33:36 +08:00
|
|
|
|
|
|
|
if (ASSERT(callback)) {
|
1999-12-08 00:45:46 +08:00
|
|
|
cbfunc = ASSERT(callback);
|
|
|
|
} else if (ASSERT(default_callback)) {
|
|
|
|
cbfunc = ASSERT(default_callback);
|
|
|
|
} else {
|
|
|
|
cbfunc = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cbfunc) {
|
1999-12-07 20:33:36 +08:00
|
|
|
zval *args[5];
|
|
|
|
zval *retval;
|
|
|
|
int i;
|
|
|
|
uint lineno = zend_get_executed_lineno(ELS_C);
|
|
|
|
char *filename = zend_get_executed_filename(ELS_C);
|
|
|
|
/*
|
|
|
|
char *function = get_active_function_name();
|
|
|
|
*/
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(args[0]);
|
|
|
|
MAKE_STD_ZVAL(args[1]);
|
|
|
|
MAKE_STD_ZVAL(args[2]);
|
|
|
|
MAKE_STD_ZVAL(args[3]);
|
|
|
|
/*
|
|
|
|
MAKE_STD_ZVAL(args[4]);
|
|
|
|
*/
|
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
args[0]->type = IS_STRING; args[0]->value.str.val = estrdup(SAFE_STRING(cbfunc)); args[0]->value.str.len = strlen(args[0]->value.str.val);
|
|
|
|
args[1]->type = IS_STRING; args[1]->value.str.val = estrdup(SAFE_STRING(filename)); args[1]->value.str.len = strlen(args[1]->value.str.val);
|
1999-12-07 20:33:36 +08:00
|
|
|
args[2]->type = IS_LONG; args[2]->value.lval = lineno;
|
1999-12-08 00:45:46 +08:00
|
|
|
args[3]->type = IS_STRING; args[3]->value.str.val = estrdup(SAFE_STRING(myeval)); args[3]->value.str.len = strlen(args[3]->value.str.val);
|
1999-12-07 20:33:36 +08:00
|
|
|
/*
|
|
|
|
this is always "assert" so it's useless
|
|
|
|
args[4]->type = IS_STRING; args[4]->value.str.val = estrdup(SAFE_STRING(function)); args[4]->value.str.len = strlen(args[4]->value.str.val);
|
|
|
|
*/
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(retval);
|
|
|
|
retval->type = IS_BOOL;
|
|
|
|
retval->value.lval = 0;
|
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
/* XXX do we want to check for error here? */
|
1999-12-07 20:33:36 +08:00
|
|
|
call_user_function(CG(function_table), NULL, args[0], retval, 3, args+1);
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
zval_del_ref(&(args[i]));
|
|
|
|
}
|
|
|
|
zval_del_ref(&retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ASSERT(warning)) {
|
|
|
|
if (myeval) {
|
|
|
|
php_error(E_WARNING,"Assertion \"%s\" failed",myeval);
|
|
|
|
} else {
|
|
|
|
php_error(E_WARNING,"Assertion failed");
|
|
|
|
}
|
|
|
|
}
|
1999-12-07 19:37:30 +08:00
|
|
|
|
1999-12-07 21:08:17 +08:00
|
|
|
if (ASSERT(bail)) {
|
1999-12-07 19:37:30 +08:00
|
|
|
zend_bailout();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
2000-02-24 22:43:53 +08:00
|
|
|
/* {{{ proto mixed assert_options(int what, mixed value)
|
|
|
|
Set/get the various assert flags */
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
PHP_FUNCTION(assert_options)
|
|
|
|
{
|
|
|
|
pval **what,**value;
|
|
|
|
int oldint;
|
|
|
|
char *oldstr;
|
|
|
|
int ac = ARG_COUNT(ht);
|
|
|
|
ASSERTLS_FETCH();
|
|
|
|
|
1999-12-19 06:40:35 +08:00
|
|
|
if (ac < 1 || ac > 2 || zend_get_parameters_ex(ac, &what, &value) == FAILURE) {
|
1999-12-07 19:37:30 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long_ex(what);
|
|
|
|
|
|
|
|
switch ((*what)->value.lval) {
|
|
|
|
case ASSERT_ACTIVE:
|
|
|
|
oldint = ASSERT(active);
|
|
|
|
if (ac == 2) {
|
|
|
|
convert_to_long_ex(value);
|
|
|
|
ASSERT(active) = (*value)->value.lval;
|
|
|
|
}
|
|
|
|
RETURN_LONG(oldint);
|
|
|
|
break;
|
|
|
|
|
1999-12-07 21:08:17 +08:00
|
|
|
case ASSERT_BAIL:
|
|
|
|
oldint = ASSERT(bail);
|
1999-12-07 19:37:30 +08:00
|
|
|
if (ac == 2) {
|
|
|
|
convert_to_long_ex(value);
|
1999-12-07 21:08:17 +08:00
|
|
|
ASSERT(bail) = (*value)->value.lval;
|
1999-12-07 19:37:30 +08:00
|
|
|
}
|
|
|
|
RETURN_LONG(oldint);
|
|
|
|
break;
|
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
case ASSERT_QUIET_EVAL:
|
|
|
|
oldint = ASSERT(quiet_eval);
|
|
|
|
if (ac == 2) {
|
|
|
|
convert_to_long_ex(value);
|
|
|
|
ASSERT(quiet_eval) = (*value)->value.lval;
|
|
|
|
}
|
|
|
|
RETURN_LONG(oldint);
|
|
|
|
break;
|
|
|
|
|
1999-12-07 20:33:36 +08:00
|
|
|
case ASSERT_WARNING:
|
|
|
|
oldint = ASSERT(warning);
|
|
|
|
if (ac == 2) {
|
|
|
|
convert_to_long_ex(value);
|
|
|
|
ASSERT(warning) = (*value)->value.lval;
|
|
|
|
}
|
|
|
|
RETURN_LONG(oldint);
|
|
|
|
break;
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
case ASSERT_CALLBACK:
|
|
|
|
oldstr = ASSERT(callback);
|
1999-12-07 20:33:36 +08:00
|
|
|
RETVAL_STRING(SAFE_STRING(oldstr),1);
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
if (ac == 2) {
|
|
|
|
convert_to_string_ex(value);
|
|
|
|
ASSERT(callback) = estrndup((*value)->value.str.val,(*value)->value.str.len);
|
|
|
|
}
|
|
|
|
if (oldstr) {
|
|
|
|
efree(oldstr);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
php_error(E_WARNING,"Unknown value %d.",(*what)->value.lval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|