1999-12-07 19:37:30 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP version 4.0 |
|
|
|
|
+----------------------------------------------------------------------+
|
2001-02-26 14:11:02 +08:00
|
|
|
| Copyright (c) 1997-2001 The PHP Group |
|
1999-12-07 19:37:30 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-05-18 23:34:45 +08:00
|
|
|
| This source file is subject to version 2.02 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-05-18 23:34:45 +08:00
|
|
|
| http://www.php.net/license/2_02.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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-10-29 17:14:55 +08:00
|
|
|
| Author: Thies C. Arntzen (thies@thieso.net) |
|
1999-12-07 19:37:30 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $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 {
|
2000-05-13 14:05:24 +08:00
|
|
|
long active;
|
|
|
|
long bail;
|
|
|
|
long warning;
|
|
|
|
long quiet_eval;
|
2001-07-09 18:20:41 +08:00
|
|
|
zval *callback;
|
1999-12-07 19:37:30 +08:00
|
|
|
} 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):"")
|
|
|
|
|
2001-07-09 18:20:41 +08:00
|
|
|
enum {
|
|
|
|
ASSERT_ACTIVE=1,
|
|
|
|
ASSERT_CALLBACK,
|
|
|
|
ASSERT_BAIL,
|
|
|
|
ASSERT_WARNING,
|
|
|
|
ASSERT_QUIET_EVAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static PHP_INI_MH(OnChangeCallback)
|
|
|
|
{
|
|
|
|
ASSERTLS_FETCH();
|
|
|
|
|
|
|
|
if (ASSERT(callback)) {
|
|
|
|
zval_dtor(ASSERT(callback));
|
|
|
|
} else {
|
|
|
|
MAKE_STD_ZVAL(ASSERT(callback));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_value)
|
|
|
|
ZVAL_STRINGL(ASSERT(callback),new_value,new_value_length,1)
|
|
|
|
else
|
|
|
|
ZVAL_EMPTY_STRING(ASSERT(callback))
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
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)
|
2001-07-09 18:20:41 +08:00
|
|
|
PHP_INI_ENTRY ("assert.callback", NULL, PHP_INI_ALL, OnChangeCallback)
|
1999-12-08 00:45:46 +08:00
|
|
|
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
|
|
|
{
|
2001-07-09 18:20:41 +08:00
|
|
|
ASSERT(callback) = NULL;
|
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_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)) {
|
2001-07-09 18:20:41 +08:00
|
|
|
zval_ptr_dtor(&ASSERT(callback));
|
1999-12-08 00:45:46 +08:00
|
|
|
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)
|
|
|
|
{
|
2001-07-09 18:20:41 +08:00
|
|
|
zval **assertion;
|
1999-12-07 19:37:30 +08:00
|
|
|
int val;
|
1999-12-07 20:33:36 +08:00
|
|
|
char *myeval = NULL;
|
2000-09-13 04:48:33 +08:00
|
|
|
char *compiled_string_description;
|
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;
|
|
|
|
}
|
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 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
|
|
|
|
2001-07-09 17:04:19 +08:00
|
|
|
myeval = Z_STRVAL_PP(assertion);
|
1999-12-08 00:45:46 +08:00
|
|
|
|
|
|
|
if (ASSERT(quiet_eval)) {
|
|
|
|
old_error_reporting = EG(error_reporting);
|
|
|
|
EG(error_reporting) = 0;
|
|
|
|
}
|
|
|
|
|
2000-09-13 04:48:33 +08:00
|
|
|
compiled_string_description = zend_make_compiled_string_description("assert code");
|
|
|
|
if (zend_eval_string(myeval, &retval, compiled_string_description CLS_CC ELS_CC) == FAILURE) {
|
|
|
|
efree(compiled_string_description);
|
2000-05-07 01:57:34 +08:00
|
|
|
zend_error(E_ERROR, "Failure evaluating code:\n%s\n", myeval);
|
|
|
|
/* zend_error() does not return in this case. */
|
|
|
|
}
|
2000-09-13 04:48:33 +08:00
|
|
|
efree(compiled_string_description);
|
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);
|
2001-07-09 17:04:19 +08:00
|
|
|
val = Z_LVAL(retval);
|
1999-12-07 19:37:30 +08:00
|
|
|
} else {
|
|
|
|
convert_to_boolean_ex(assertion);
|
2001-07-09 17:04:19 +08:00
|
|
|
val = Z_LVAL_PP(assertion);
|
1999-12-07 19:37:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
1999-12-07 20:33:36 +08:00
|
|
|
|
|
|
|
if (ASSERT(callback)) {
|
2001-07-09 18:20:41 +08:00
|
|
|
zval *args[4];
|
1999-12-07 20:33:36 +08:00
|
|
|
zval *retval;
|
|
|
|
int i;
|
|
|
|
uint lineno = zend_get_executed_lineno(ELS_C);
|
|
|
|
char *filename = zend_get_executed_filename(ELS_C);
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(args[0]);
|
|
|
|
MAKE_STD_ZVAL(args[1]);
|
|
|
|
MAKE_STD_ZVAL(args[2]);
|
2001-07-09 18:20:41 +08:00
|
|
|
|
|
|
|
ZVAL_STRING(args[0],SAFE_STRING(filename),1);
|
|
|
|
ZVAL_LONG (args[1],lineno);
|
|
|
|
ZVAL_STRING(args[2],SAFE_STRING(myeval),1);
|
1999-12-07 20:33:36 +08:00
|
|
|
|
|
|
|
MAKE_STD_ZVAL(retval);
|
2001-07-09 17:04:19 +08:00
|
|
|
ZVAL_BOOL(retval,0);
|
1999-12-07 20:33:36 +08:00
|
|
|
|
1999-12-08 00:45:46 +08:00
|
|
|
/* XXX do we want to check for error here? */
|
2001-07-09 18:20:41 +08:00
|
|
|
call_user_function(CG(function_table), NULL, ASSERT(callback), retval, 3, args);
|
1999-12-07 20:33:36 +08:00
|
|
|
|
2001-07-09 18:20:41 +08:00
|
|
|
for (i = 0; i <= 2; i++) {
|
2001-02-28 04:16:35 +08:00
|
|
|
zval_ptr_dtor(&(args[i]));
|
1999-12-07 20:33:36 +08:00
|
|
|
}
|
2001-02-28 04:16:35 +08:00
|
|
|
zval_ptr_dtor(&retval);
|
1999-12-07 20:33:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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-08-16 20:47:09 +08:00
|
|
|
/* {{{ proto mixed assert_options(int what [, mixed value])
|
2000-02-24 22:43:53 +08:00
|
|
|
Set/get the various assert flags */
|
1999-12-07 19:37:30 +08:00
|
|
|
|
|
|
|
PHP_FUNCTION(assert_options)
|
|
|
|
{
|
|
|
|
pval **what,**value;
|
|
|
|
int oldint;
|
2000-06-06 03:47:54 +08:00
|
|
|
int ac = ZEND_NUM_ARGS();
|
1999-12-07 19:37:30 +08:00
|
|
|
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);
|
2001-07-09 17:04:19 +08:00
|
|
|
ASSERT(active) = Z_LVAL_PP(value);
|
1999-12-07 19:37:30 +08:00
|
|
|
}
|
|
|
|
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);
|
2001-07-09 17:04:19 +08:00
|
|
|
ASSERT(bail) = Z_LVAL_PP(value);
|
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);
|
2001-07-09 17:04:19 +08:00
|
|
|
ASSERT(quiet_eval) = Z_LVAL_PP(value);
|
1999-12-08 00:45:46 +08:00
|
|
|
}
|
|
|
|
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);
|
2001-07-09 17:04:19 +08:00
|
|
|
ASSERT(warning) = Z_LVAL_PP(value);
|
1999-12-07 20:33:36 +08:00
|
|
|
}
|
|
|
|
RETURN_LONG(oldint);
|
|
|
|
break;
|
|
|
|
|
1999-12-07 19:37:30 +08:00
|
|
|
case ASSERT_CALLBACK:
|
|
|
|
if (ac == 2) {
|
2001-07-09 18:20:41 +08:00
|
|
|
if (ASSERT(callback)) {
|
|
|
|
zval_ptr_dtor(&ASSERT(callback));
|
|
|
|
}
|
|
|
|
ASSERT(callback) = *value;
|
|
|
|
zval_add_ref(value);
|
1999-12-07 19:37:30 +08:00
|
|
|
}
|
2001-07-09 18:20:41 +08:00
|
|
|
RETURN_TRUE;
|
1999-12-07 19:37:30 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2001-07-09 17:04:19 +08:00
|
|
|
php_error(E_WARNING,"Unknown value %d.",Z_LVAL_PP(what));
|
1999-12-07 19:37:30 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2001-06-06 21:06:12 +08:00
|
|
|
* vim600: sw=4 ts=4 tw=78 fdm=marker
|
|
|
|
* vim<600: sw=4 ts=4 tw=78
|
1999-12-07 19:37:30 +08:00
|
|
|
*/
|