2003-03-23 12:32:24 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2017-01-02 23:30:12 +08:00
|
|
|
| Copyright (c) 1998-2017 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2003-03-23 14:57:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-03-23 12:32:24 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-02-12 18:38:14 +08:00
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
2003-08-24 03:48:52 +08:00
|
|
|
| Marcus Boerger <helly@php.net> |
|
2004-02-12 18:38:14 +08:00
|
|
|
| Sterling Hughes <sterling@php.net> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_API.h"
|
2003-08-29 04:35:54 +08:00
|
|
|
#include "zend_builtin_functions.h"
|
2003-10-23 04:04:48 +08:00
|
|
|
#include "zend_interfaces.h"
|
2004-07-16 06:21:36 +08:00
|
|
|
#include "zend_exceptions.h"
|
2008-01-22 03:39:55 +08:00
|
|
|
#include "zend_vm.h"
|
2010-04-24 21:32:30 +08:00
|
|
|
#include "zend_dtrace.h"
|
2014-09-21 06:21:41 +08:00
|
|
|
#include "zend_smart_str.h"
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-06-16 07:07:27 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_throwable;
|
2015-07-03 22:45:03 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_exception;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_error_exception;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_error;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_parse_error;
|
|
|
|
ZEND_API zend_class_entry *zend_ce_type_error;
|
2016-08-31 03:09:26 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_argument_count_error;
|
2015-07-03 02:47:44 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_arithmetic_error;
|
2015-07-02 07:54:08 +08:00
|
|
|
ZEND_API zend_class_entry *zend_ce_division_by_zero_error;
|
2015-06-16 07:07:27 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void (*zend_throw_exception_hook)(zval *ex);
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-07-03 09:57:53 +08:00
|
|
|
static zend_object_handlers default_exception_handlers;
|
|
|
|
|
2015-06-16 07:07:27 +08:00
|
|
|
/* {{{ zend_implement_throwable */
|
|
|
|
static int zend_implement_throwable(zend_class_entry *interface, zend_class_entry *class_type)
|
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
if (instanceof_function(class_type, zend_ce_exception) || instanceof_function(class_type, zend_ce_error)) {
|
2015-06-16 07:07:27 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
zend_error_noreturn(E_ERROR, "Class %s cannot implement interface %s, extend %s or %s instead",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(class_type->name),
|
|
|
|
ZSTR_VAL(interface->name),
|
2015-07-03 22:45:03 +08:00
|
|
|
ZSTR_VAL(zend_ce_exception->name),
|
|
|
|
ZSTR_VAL(zend_ce_error->name));
|
2015-06-16 07:07:27 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-11-21 23:14:12 +08:00
|
|
|
static inline zend_class_entry *i_get_exception_base(zval *object) /* {{{ */
|
2015-05-18 06:31:06 +08:00
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
return instanceof_function(Z_OBJCE_P(object), zend_ce_exception) ? zend_ce_exception : zend_ce_error;
|
2015-05-18 06:31:06 +08:00
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2015-05-18 06:31:06 +08:00
|
|
|
|
2015-11-21 23:14:12 +08:00
|
|
|
ZEND_API zend_class_entry *zend_get_exception_base(zval *object) /* {{{ */
|
2015-06-29 07:41:04 +08:00
|
|
|
{
|
|
|
|
return i_get_exception_base(object);
|
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2015-06-29 07:41:04 +08:00
|
|
|
|
2015-11-21 23:14:12 +08:00
|
|
|
void zend_exception_set_previous(zend_object *exception, zend_object *add_previous) /* {{{ */
|
2008-07-14 05:42:49 +08:00
|
|
|
{
|
2015-11-21 21:16:11 +08:00
|
|
|
zval *previous, *ancestor, *ex;
|
|
|
|
zval pv, zv, rv;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2008-07-14 05:42:49 +08:00
|
|
|
|
2008-08-14 18:24:52 +08:00
|
|
|
if (exception == add_previous || !add_previous || !exception) {
|
2008-07-14 05:42:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-11-21 21:16:11 +08:00
|
|
|
ZVAL_OBJ(&pv, add_previous);
|
|
|
|
if (!instanceof_function(Z_OBJCE(pv), zend_ce_throwable)) {
|
2015-06-15 11:43:11 +08:00
|
|
|
zend_error_noreturn(E_CORE_ERROR, "Previous exception must implement Throwable");
|
2008-07-14 05:42:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
ZVAL_OBJ(&zv, exception);
|
2015-11-21 21:16:11 +08:00
|
|
|
ex = &zv;
|
2014-02-10 14:04:30 +08:00
|
|
|
do {
|
2017-03-04 17:39:13 +08:00
|
|
|
ancestor = zend_read_property_ex(i_get_exception_base(&pv), &pv, ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2015-11-21 21:16:11 +08:00
|
|
|
while (Z_TYPE_P(ancestor) == IS_OBJECT) {
|
|
|
|
if (Z_OBJ_P(ancestor) == Z_OBJ_P(ex)) {
|
|
|
|
OBJ_RELEASE(add_previous);
|
|
|
|
return;
|
|
|
|
}
|
2017-03-04 17:39:13 +08:00
|
|
|
ancestor = zend_read_property_ex(i_get_exception_base(ancestor), ancestor, ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2015-11-21 21:16:11 +08:00
|
|
|
}
|
|
|
|
base_ce = i_get_exception_base(ex);
|
2017-03-04 17:39:13 +08:00
|
|
|
previous = zend_read_property_ex(base_ce, ex, ZSTR_KNOWN(ZEND_STR_PREVIOUS), 1, &rv);
|
2008-07-14 05:42:49 +08:00
|
|
|
if (Z_TYPE_P(previous) == IS_NULL) {
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, ex, ZSTR_KNOWN(ZEND_STR_PREVIOUS), &pv);
|
2014-04-02 18:34:44 +08:00
|
|
|
GC_REFCOUNT(add_previous)--;
|
2008-07-14 05:42:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-11-21 21:16:11 +08:00
|
|
|
ex = previous;
|
|
|
|
} while (Z_OBJ_P(ex) != add_previous);
|
2008-07-14 05:42:49 +08:00
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2008-07-14 05:42:49 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_exception_save(void) /* {{{ */
|
2008-08-14 18:24:52 +08:00
|
|
|
{
|
|
|
|
if (EG(prev_exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_set_previous(EG(exception), EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
}
|
|
|
|
if (EG(exception)) {
|
|
|
|
EG(prev_exception) = EG(exception);
|
|
|
|
}
|
|
|
|
EG(exception) = NULL;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_exception_restore(void) /* {{{ */
|
2008-08-14 18:24:52 +08:00
|
|
|
{
|
|
|
|
if (EG(prev_exception)) {
|
|
|
|
if (EG(exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_set_previous(EG(exception), EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
} else {
|
|
|
|
EG(exception) = EG(prev_exception);
|
|
|
|
}
|
|
|
|
EG(prev_exception) = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_exception_internal(zval *exception) /* {{{ */
|
2004-02-12 18:38:14 +08:00
|
|
|
{
|
2010-04-24 21:32:30 +08:00
|
|
|
#ifdef HAVE_DTRACE
|
|
|
|
if (DTRACE_EXCEPTION_THROWN_ENABLED()) {
|
2010-11-18 05:41:30 +08:00
|
|
|
if (exception != NULL) {
|
2015-06-30 18:59:27 +08:00
|
|
|
DTRACE_EXCEPTION_THROWN(ZSTR_VAL(Z_OBJ_P(exception)->ce->name));
|
2010-11-18 05:41:30 +08:00
|
|
|
} else {
|
|
|
|
DTRACE_EXCEPTION_THROWN(NULL);
|
|
|
|
}
|
2010-04-24 21:32:30 +08:00
|
|
|
}
|
2010-04-26 03:17:16 +08:00
|
|
|
#endif /* HAVE_DTRACE */
|
2010-04-24 21:32:30 +08:00
|
|
|
|
2004-02-12 18:38:14 +08:00
|
|
|
if (exception != NULL) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *previous = EG(exception);
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_set_previous(Z_OBJ_P(exception), EG(exception));
|
2014-02-10 14:04:30 +08:00
|
|
|
EG(exception) = Z_OBJ_P(exception);
|
2008-08-14 18:24:52 +08:00
|
|
|
if (previous) {
|
|
|
|
return;
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
|
|
|
if (!EG(current_execute_data)) {
|
2015-07-03 22:45:03 +08:00
|
|
|
if (exception && Z_OBJCE_P(exception) == zend_ce_parse_error) {
|
2015-03-09 20:57:15 +08:00
|
|
|
return;
|
|
|
|
}
|
2011-01-17 05:24:43 +08:00
|
|
|
if(EG(exception)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_exception_error(EG(exception), E_ERROR);
|
2011-01-17 05:24:43 +08:00
|
|
|
}
|
2015-04-02 19:19:52 +08:00
|
|
|
zend_error_noreturn(E_CORE_ERROR, "Exception thrown without a stack frame");
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
|
|
|
|
2004-04-13 23:19:21 +08:00
|
|
|
if (zend_throw_exception_hook) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception_hook(exception);
|
2004-04-13 23:19:21 +08:00
|
|
|
}
|
|
|
|
|
2014-07-07 19:50:44 +08:00
|
|
|
if (!EG(current_execute_data)->func ||
|
|
|
|
!ZEND_USER_CODE(EG(current_execute_data)->func->common.type) ||
|
2015-05-21 03:49:37 +08:00
|
|
|
EG(current_execute_data)->opline->opcode == ZEND_HANDLE_EXCEPTION) {
|
2004-02-12 18:38:14 +08:00
|
|
|
/* no need to rethrow the exception */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EG(opline_before_exception) = EG(current_execute_data)->opline;
|
2008-01-22 03:39:55 +08:00
|
|
|
EG(current_execute_data)->opline = EG(exception_op);
|
2004-02-12 18:38:14 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-02-12 18:38:14 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_clear_exception(void) /* {{{ */
|
2004-02-12 18:38:14 +08:00
|
|
|
{
|
2008-08-14 18:24:52 +08:00
|
|
|
if (EG(prev_exception)) {
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-02-14 21:48:45 +08:00
|
|
|
OBJ_RELEASE(EG(prev_exception));
|
2008-08-14 18:24:52 +08:00
|
|
|
EG(prev_exception) = NULL;
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
if (!EG(exception)) {
|
|
|
|
return;
|
|
|
|
}
|
2014-02-14 21:48:45 +08:00
|
|
|
OBJ_RELEASE(EG(exception));
|
2004-02-12 18:38:14 +08:00
|
|
|
EG(exception) = NULL;
|
2016-12-07 20:10:59 +08:00
|
|
|
if (EG(current_execute_data)) {
|
|
|
|
EG(current_execute_data)->opline = EG(opline_before_exception);
|
|
|
|
}
|
2004-02-12 18:38:14 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
EG(opline_before_exception) = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-02-12 18:38:14 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_object *zend_default_exception_new_ex(zend_class_entry *class_type, int skip_top_traces) /* {{{ */
|
2003-08-24 03:41:22 +08:00
|
|
|
{
|
2016-05-12 18:47:22 +08:00
|
|
|
zval obj, tmp;
|
2003-08-24 03:41:22 +08:00
|
|
|
zend_object *object;
|
2014-02-10 14:04:30 +08:00
|
|
|
zval trace;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2015-05-18 11:09:09 +08:00
|
|
|
zend_string *filename;
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
Z_OBJ(obj) = object = zend_objects_new(class_type);
|
2006-05-10 07:53:23 +08:00
|
|
|
Z_OBJ_HT(obj) = &default_exception_handlers;
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2010-05-24 22:11:39 +08:00
|
|
|
object_properties_init(object, class_type);
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2015-03-09 20:57:15 +08:00
|
|
|
if (EG(current_execute_data)) {
|
|
|
|
zend_fetch_debug_backtrace(&trace, skip_top_traces, 0, 0);
|
|
|
|
} else {
|
|
|
|
array_init(&trace);
|
|
|
|
}
|
2014-02-21 20:14:42 +08:00
|
|
|
Z_SET_REFCOUNT(trace, 0);
|
2015-08-05 07:14:24 +08:00
|
|
|
|
2015-06-29 07:41:04 +08:00
|
|
|
base_ce = i_get_exception_base(&obj);
|
2003-08-29 04:35:54 +08:00
|
|
|
|
2015-07-03 22:45:03 +08:00
|
|
|
if (EXPECTED(class_type != zend_ce_parse_error || !(filename = zend_get_compiled_filename()))) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STRING(&tmp, zend_get_executed_filename());
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
|
|
|
ZVAL_LONG(&tmp, zend_get_executed_lineno());
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2015-03-09 20:57:15 +08:00
|
|
|
} else {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, filename);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, zend_get_compiled_lineno());
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2015-03-09 20:57:15 +08:00
|
|
|
}
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_TRACE), &trace);
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
return object;
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 03:41:22 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_object *zend_default_exception_new(zend_class_entry *class_type) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2014-12-14 06:06:14 +08:00
|
|
|
return zend_default_exception_new_ex(class_type, 0);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_object *zend_error_exception_new(zend_class_entry *class_type) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2014-12-14 06:06:14 +08:00
|
|
|
return zend_default_exception_new_ex(class_type, 2);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto Exception|Error Exception|Error::__clone()
|
2004-07-20 17:24:22 +08:00
|
|
|
Clone the exception object */
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_COLD ZEND_METHOD(exception, __clone)
|
2003-10-26 03:07:09 +08:00
|
|
|
{
|
|
|
|
/* Should never be executable */
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception(NULL, "Cannot clone object using __clone()", 0);
|
2003-10-26 03:07:09 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto Exception|Error::__construct(string message, int code [, Throwable previous])
|
2004-07-20 17:24:22 +08:00
|
|
|
Exception constructor */
|
2003-08-24 19:25:08 +08:00
|
|
|
ZEND_METHOD(exception, __construct)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2014-02-21 20:14:42 +08:00
|
|
|
zend_string *message = NULL;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long code = 0;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval tmp, *object, *previous = NULL;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2014-02-21 20:14:42 +08:00
|
|
|
int argc = ZEND_NUM_ARGS();
|
2003-03-23 14:57:16 +08:00
|
|
|
|
2015-06-18 08:48:17 +08:00
|
|
|
object = getThis();
|
2015-06-29 07:41:04 +08:00
|
|
|
base_ce = i_get_exception_base(object);
|
2015-06-18 08:48:17 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc, "|SlO!", &message, &code, &previous, zend_ce_throwable) == FAILURE) {
|
2015-06-18 06:14:57 +08:00
|
|
|
zend_class_entry *ce;
|
|
|
|
|
2016-04-01 21:17:49 +08:00
|
|
|
if (Z_TYPE(EX(This)) == IS_OBJECT) {
|
|
|
|
ce = Z_OBJCE(EX(This));
|
|
|
|
} else if (Z_CE(EX(This))) {
|
|
|
|
ce = Z_CE(EX(This));
|
2015-06-18 06:14:57 +08:00
|
|
|
} else {
|
2015-06-18 08:48:17 +08:00
|
|
|
ce = base_ce;
|
2015-06-18 06:14:57 +08:00
|
|
|
}
|
2015-07-08 01:10:22 +08:00
|
|
|
zend_throw_error(NULL, "Wrong parameters for %s([string $message [, long $code [, Throwable $previous = NULL]]])", ZSTR_VAL(ce->name));
|
2015-04-02 19:19:52 +08:00
|
|
|
return;
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
|
|
|
|
2003-08-24 03:41:22 +08:00
|
|
|
if (message) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, message);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2003-08-24 03:41:22 +08:00
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2003-08-24 03:41:22 +08:00
|
|
|
}
|
2008-07-12 22:57:14 +08:00
|
|
|
|
|
|
|
if (previous) {
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_PREVIOUS), previous);
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2015-07-27 16:38:27 +08:00
|
|
|
/* {{{ proto Exception::__wakeup()
|
|
|
|
Exception unserialize checks */
|
2016-05-12 18:47:22 +08:00
|
|
|
#define CHECK_EXC_TYPE(id, type) \
|
2017-03-04 17:39:13 +08:00
|
|
|
pvalue = zend_read_property_ex(i_get_exception_base(object), (object), ZSTR_KNOWN(id), 1, &value); \
|
2016-07-12 11:51:20 +08:00
|
|
|
if (Z_TYPE_P(pvalue) != IS_NULL && Z_TYPE_P(pvalue) != type) { \
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_unset_property(i_get_exception_base(object), object, ZSTR_VAL(ZSTR_KNOWN(id)), ZSTR_LEN(ZSTR_KNOWN(id))); \
|
2015-07-27 16:38:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_METHOD(exception, __wakeup)
|
|
|
|
{
|
2015-08-05 14:41:00 +08:00
|
|
|
zval value, *pvalue;
|
2015-07-27 16:38:27 +08:00
|
|
|
zval *object = getThis();
|
2016-05-12 18:47:22 +08:00
|
|
|
CHECK_EXC_TYPE(ZEND_STR_MESSAGE, IS_STRING);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_STRING, IS_STRING);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_CODE, IS_LONG);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_FILE, IS_STRING);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_LINE, IS_LONG);
|
|
|
|
CHECK_EXC_TYPE(ZEND_STR_TRACE, IS_ARRAY);
|
2016-10-13 02:21:27 +08:00
|
|
|
pvalue = zend_read_property(i_get_exception_base(object), object, "previous", sizeof("previous")-1, 1, &value);
|
2016-10-13 02:09:24 +08:00
|
|
|
if (pvalue && Z_TYPE_P(pvalue) != IS_NULL && (Z_TYPE_P(pvalue) != IS_OBJECT ||
|
|
|
|
!instanceof_function(Z_OBJCE_P(pvalue), i_get_exception_base(object)) ||
|
|
|
|
pvalue == object)) {
|
2016-10-13 02:21:27 +08:00
|
|
|
zend_unset_property(i_get_exception_base(object), object, "previous", sizeof("previous")-1);
|
2016-10-13 02:09:24 +08:00
|
|
|
}
|
2015-07-27 16:38:27 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 11:43:11 +08:00
|
|
|
/* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Throwable previous]]])
|
2004-07-20 17:24:22 +08:00
|
|
|
ErrorException constructor */
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_METHOD(error_exception, __construct)
|
|
|
|
{
|
2004-07-25 15:05:48 +08:00
|
|
|
char *message = NULL, *filename = NULL;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long code = 0, severity = E_ERROR, lineno;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval tmp, *object, *previous = NULL;
|
2014-08-27 21:31:48 +08:00
|
|
|
int argc = ZEND_NUM_ARGS();
|
|
|
|
size_t message_len, filename_len;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc, "|sllslO!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, zend_ce_throwable) == FAILURE) {
|
2015-06-18 06:30:16 +08:00
|
|
|
zend_class_entry *ce;
|
|
|
|
|
2016-04-01 21:17:49 +08:00
|
|
|
if (Z_TYPE(EX(This)) == IS_OBJECT) {
|
|
|
|
ce = Z_OBJCE(EX(This));
|
|
|
|
} else if (Z_CE(EX(This))) {
|
|
|
|
ce = Z_CE(EX(This));
|
2015-06-18 06:30:16 +08:00
|
|
|
} else {
|
2015-07-03 22:45:03 +08:00
|
|
|
ce = zend_ce_error_exception;
|
2015-06-18 06:30:16 +08:00
|
|
|
}
|
2015-07-08 01:10:22 +08:00
|
|
|
zend_throw_error(NULL, "Wrong parameters for %s([string $message [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Throwable $previous = NULL]]]]]])", ZSTR_VAL(ce->name));
|
2015-04-02 19:19:52 +08:00
|
|
|
return;
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
object = getThis();
|
|
|
|
|
|
|
|
if (message) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STRING(&tmp, message);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
|
|
|
|
2008-07-12 22:57:14 +08:00
|
|
|
if (previous) {
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_PREVIOUS), previous);
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, severity);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2004-07-25 15:05:48 +08:00
|
|
|
if (argc >= 4) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STRING(&tmp, filename);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_FILE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2004-07-25 15:05:48 +08:00
|
|
|
if (argc < 5) {
|
2005-04-19 19:41:04 +08:00
|
|
|
lineno = 0; /* invalidate lineno */
|
2004-07-25 15:05:48 +08:00
|
|
|
}
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, lineno);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_exception, object, ZSTR_KNOWN(ZEND_STR_LINE), &tmp);
|
2004-07-25 15:05:48 +08:00
|
|
|
}
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
#define DEFAULT_0_PARAMS \
|
2008-03-11 06:02:41 +08:00
|
|
|
if (zend_parse_parameters_none() == FAILURE) { \
|
|
|
|
return; \
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
#define GET_PROPERTY(object, id) \
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_read_property_ex(i_get_exception_base(object), (object), ZSTR_KNOWN(id), 0, &rv)
|
2016-05-12 18:47:22 +08:00
|
|
|
#define GET_PROPERTY_SILENT(object, id) \
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_read_property_ex(i_get_exception_base(object), (object), ZSTR_KNOWN(id), 1, &rv)
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto string Exception|Error::getFile()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the file in which the exception occurred */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getFile)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_FILE));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto int Exception|Error::getLine()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the line in which the exception occurred */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getLine)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_LINE));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto string Exception|Error::getMessage()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the exception message */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getMessage)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_MESSAGE));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto int Exception|Error::getCode()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the exception code */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getCode)
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_CODE));
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto array Exception|Error::getTrace()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the stack trace for the location in which the exception occurred */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getTrace)
|
2003-08-29 07:43:56 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2003-08-29 07:43:56 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_TRACE));
|
2003-08-29 07:43:56 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-08-29 07:43:56 +08:00
|
|
|
|
2004-07-20 18:43:19 +08:00
|
|
|
/* {{{ proto int ErrorException::getSeverity()
|
2004-07-20 17:24:22 +08:00
|
|
|
Get the exception severity */
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_METHOD(error_exception, getSeverity)
|
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2004-07-16 06:21:36 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY(getThis(), ZEND_STR_SEVERITY));
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define TRACE_APPEND_KEY(key) do { \
|
2016-05-12 18:47:22 +08:00
|
|
|
tmp = zend_hash_find(ht, key); \
|
2014-02-19 12:13:43 +08:00
|
|
|
if (tmp) { \
|
|
|
|
if (Z_TYPE_P(tmp) != IS_STRING) { \
|
2016-05-12 18:47:22 +08:00
|
|
|
zend_error(E_WARNING, "Value for %s is no string", \
|
|
|
|
ZSTR_VAL(key)); \
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "[unknown]"); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} else { \
|
2016-05-12 18:47:22 +08:00
|
|
|
smart_str_appends(str, Z_STRVAL_P(tmp)); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void _build_trace_args(zval *arg, smart_str *str) /* {{{ */
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-10-07 02:14:30 +08:00
|
|
|
/* the trivial way would be to do
|
2014-02-21 00:39:58 +08:00
|
|
|
* convert_to_string_ex(arg);
|
2003-08-31 02:28:24 +08:00
|
|
|
* append it and kill the now tmp arg.
|
|
|
|
* but that could cause some E_NOTICE and also damn long lines.
|
|
|
|
*/
|
|
|
|
|
2014-03-27 17:39:09 +08:00
|
|
|
ZVAL_DEREF(arg);
|
2014-02-10 14:04:30 +08:00
|
|
|
switch (Z_TYPE_P(arg)) {
|
2003-08-31 02:28:24 +08:00
|
|
|
case IS_NULL:
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "NULL, ");
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
2014-09-21 06:21:41 +08:00
|
|
|
case IS_STRING:
|
|
|
|
smart_str_appendc(str, '\'');
|
|
|
|
smart_str_append_escaped(str, Z_STRVAL_P(arg), MIN(Z_STRLEN_P(arg), 15));
|
2014-08-26 01:24:55 +08:00
|
|
|
if (Z_STRLEN_P(arg) > 15) {
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "...', ");
|
2003-08-31 02:28:24 +08:00
|
|
|
} else {
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "', ");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
break;
|
2014-04-30 22:32:42 +08:00
|
|
|
case IS_FALSE:
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "false, ");
|
2014-04-30 22:32:42 +08:00
|
|
|
break;
|
|
|
|
case IS_TRUE:
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "true, ");
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
2014-09-21 06:21:41 +08:00
|
|
|
case IS_RESOURCE:
|
|
|
|
smart_str_appends(str, "Resource id #");
|
|
|
|
smart_str_append_long(str, Z_RES_HANDLE_P(arg));
|
|
|
|
smart_str_appends(str, ", ");
|
2014-02-22 02:59:51 +08:00
|
|
|
break;
|
2014-09-21 06:21:41 +08:00
|
|
|
case IS_LONG:
|
|
|
|
smart_str_append_long(str, Z_LVAL_P(arg));
|
|
|
|
smart_str_appends(str, ", ");
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
|
|
|
case IS_DOUBLE: {
|
2017-02-07 19:40:10 +08:00
|
|
|
smart_str_append_printf(str, "%.*G", (int) EG(precision), Z_DVAL_P(arg));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, ", ");
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case IS_ARRAY:
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "Array, ");
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
2016-06-22 22:23:04 +08:00
|
|
|
case IS_OBJECT: {
|
|
|
|
zend_string *class_name = Z_OBJ_HANDLER_P(arg, get_class_name)(Z_OBJ_P(arg));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "Object(");
|
2016-06-22 22:23:04 +08:00
|
|
|
smart_str_appends(str, ZSTR_VAL(class_name));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "), ");
|
2016-07-14 23:29:59 +08:00
|
|
|
zend_string_release(class_name);
|
2003-08-31 02:28:24 +08:00
|
|
|
break;
|
2016-06-22 22:23:04 +08:00
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void _build_trace_string(smart_str *str, HashTable *ht, uint32_t num) /* {{{ */
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zval *file, *tmp;
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '#');
|
|
|
|
smart_str_append_long(str, num);
|
|
|
|
smart_str_appendc(str, ' ');
|
2012-12-14 05:39:35 +08:00
|
|
|
|
2017-03-04 17:39:13 +08:00
|
|
|
file = zend_hash_find(ht, ZSTR_KNOWN(ZEND_STR_FILE));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (file) {
|
|
|
|
if (Z_TYPE_P(file) != IS_STRING) {
|
2012-12-14 05:39:35 +08:00
|
|
|
zend_error(E_WARNING, "Function name is no string");
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "[unknown function]");
|
2012-12-14 05:39:35 +08:00
|
|
|
} else{
|
2014-09-21 06:21:41 +08:00
|
|
|
zend_long line;
|
2017-03-04 17:39:13 +08:00
|
|
|
tmp = zend_hash_find(ht, ZSTR_KNOWN(ZEND_STR_LINE));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (tmp) {
|
2014-08-26 01:24:55 +08:00
|
|
|
if (Z_TYPE_P(tmp) == IS_LONG) {
|
|
|
|
line = Z_LVAL_P(tmp);
|
2012-12-14 05:39:35 +08:00
|
|
|
} else {
|
|
|
|
zend_error(E_WARNING, "Line is no long");
|
|
|
|
line = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
line = 0;
|
|
|
|
}
|
2014-09-22 02:47:07 +08:00
|
|
|
smart_str_append(str, Z_STR_P(file));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '(');
|
|
|
|
smart_str_append_long(str, line);
|
|
|
|
smart_str_appends(str, "): ");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, "[internal function]: ");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2017-03-04 17:39:13 +08:00
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_CLASS));
|
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_TYPE));
|
|
|
|
TRACE_APPEND_KEY(ZSTR_KNOWN(ZEND_STR_FUNCTION));
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(str, '(');
|
2017-03-04 17:39:13 +08:00
|
|
|
tmp = zend_hash_find(ht, ZSTR_KNOWN(ZEND_STR_ARGS));
|
2014-02-10 14:04:30 +08:00
|
|
|
if (tmp) {
|
|
|
|
if (Z_TYPE_P(tmp) == IS_ARRAY) {
|
2015-06-30 18:59:27 +08:00
|
|
|
size_t last_len = ZSTR_LEN(str->s);
|
2014-05-28 22:45:01 +08:00
|
|
|
zval *arg;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-05-28 22:45:01 +08:00
|
|
|
ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(tmp), arg) {
|
2014-12-14 06:06:14 +08:00
|
|
|
_build_trace_args(arg, str);
|
2014-05-28 22:45:01 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
if (last_len != ZSTR_LEN(str->s)) {
|
|
|
|
ZSTR_LEN(str->s) -= 2; /* remove last ', ' */
|
2012-12-14 05:39:35 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_error(E_WARNING, "args element is no array");
|
2003-09-02 05:40:58 +08:00
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appends(str, ")\n");
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-20 17:24:22 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto string Exception|Error::getTraceAsString()
|
2004-07-20 17:24:22 +08:00
|
|
|
Obtain the backtrace for the exception as a string (instead of an array) */
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_METHOD(exception, getTraceAsString)
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval *trace, *frame, rv;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_ulong index;
|
2015-05-18 06:31:06 +08:00
|
|
|
zval *object;
|
|
|
|
zend_class_entry *base_ce;
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str str = {0};
|
|
|
|
uint32_t num = 0;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2009-05-11 22:14:52 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
2015-07-27 08:09:34 +08:00
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
object = getThis();
|
2015-06-29 07:41:04 +08:00
|
|
|
base_ce = i_get_exception_base(object);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2017-03-04 17:39:13 +08:00
|
|
|
trace = zend_read_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_TRACE), 1, &rv);
|
2015-04-14 19:32:01 +08:00
|
|
|
if (Z_TYPE_P(trace) != IS_ARRAY) {
|
2015-04-06 08:30:59 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2014-08-26 05:05:05 +08:00
|
|
|
ZEND_HASH_FOREACH_NUM_KEY_VAL(Z_ARRVAL_P(trace), index, frame) {
|
2014-09-21 06:21:41 +08:00
|
|
|
if (Z_TYPE_P(frame) != IS_ARRAY) {
|
2016-06-21 21:00:37 +08:00
|
|
|
zend_error(E_WARNING, "Expected array for frame " ZEND_ULONG_FMT, index);
|
2014-09-21 06:21:41 +08:00
|
|
|
continue;
|
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
_build_trace_string(&str, Z_ARRVAL_P(frame), num++);
|
2014-09-21 06:21:41 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
2014-02-19 12:13:43 +08:00
|
|
|
|
2014-09-21 06:21:41 +08:00
|
|
|
smart_str_appendc(&str, '#');
|
|
|
|
smart_str_append_long(&str, num);
|
|
|
|
smart_str_appends(&str, " {main}");
|
|
|
|
smart_str_0(&str);
|
2003-09-02 04:54:48 +08:00
|
|
|
|
2015-01-03 17:22:58 +08:00
|
|
|
RETURN_NEW_STR(str.s);
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto Throwable Exception|Error::getPrevious()
|
|
|
|
Return previous Throwable or NULL. */
|
2008-07-12 22:57:14 +08:00
|
|
|
ZEND_METHOD(exception, getPrevious)
|
|
|
|
{
|
2015-01-22 16:50:42 +08:00
|
|
|
zval rv;
|
|
|
|
|
2009-05-11 22:14:52 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_COPY(return_value, GET_PROPERTY_SILENT(getThis(), ZEND_STR_PREVIOUS));
|
2014-05-10 00:21:49 +08:00
|
|
|
} /* }}} */
|
2008-07-12 22:57:14 +08:00
|
|
|
|
2015-06-15 14:36:49 +08:00
|
|
|
/* {{{ proto string Exception|Error::__toString()
|
2004-07-20 17:24:22 +08:00
|
|
|
Obtain the string representation of the Exception object */
|
2003-10-23 03:00:42 +08:00
|
|
|
ZEND_METHOD(exception, __toString)
|
2003-08-31 02:28:24 +08:00
|
|
|
{
|
2014-10-07 02:14:30 +08:00
|
|
|
zval trace, *exception;
|
2015-05-18 06:31:06 +08:00
|
|
|
zend_class_entry *base_ce;
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *str;
|
2003-08-31 02:28:24 +08:00
|
|
|
zend_fcall_info fci;
|
2016-05-12 18:47:22 +08:00
|
|
|
zval rv, tmp;
|
2016-04-29 19:44:56 +08:00
|
|
|
zend_string *fname;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2009-05-11 22:14:52 +08:00
|
|
|
DEFAULT_0_PARAMS;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2015-06-29 21:44:54 +08:00
|
|
|
str = ZSTR_EMPTY_ALLOC();
|
2004-02-11 00:08:01 +08:00
|
|
|
|
2008-07-12 22:57:14 +08:00
|
|
|
exception = getThis();
|
2016-04-29 19:44:56 +08:00
|
|
|
fname = zend_string_init("gettraceasstring", sizeof("gettraceasstring")-1, 0);
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2015-08-05 14:41:00 +08:00
|
|
|
while (exception && Z_TYPE_P(exception) == IS_OBJECT && instanceof_function(Z_OBJCE_P(exception), zend_ce_throwable)) {
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *prev_str = str;
|
2016-05-12 18:47:22 +08:00
|
|
|
zend_string *message = zval_get_string(GET_PROPERTY(exception, ZEND_STR_MESSAGE));
|
|
|
|
zend_string *file = zval_get_string(GET_PROPERTY(exception, ZEND_STR_FILE));
|
|
|
|
zend_long line = zval_get_long(GET_PROPERTY(exception, ZEND_STR_LINE));
|
2008-07-12 22:57:14 +08:00
|
|
|
|
|
|
|
fci.size = sizeof(fci);
|
2016-04-29 19:44:56 +08:00
|
|
|
ZVAL_STR(&fci.function_name, fname);
|
2014-03-28 06:11:22 +08:00
|
|
|
fci.object = Z_OBJ_P(exception);
|
2014-02-14 21:48:45 +08:00
|
|
|
fci.retval = &trace;
|
2008-07-12 22:57:14 +08:00
|
|
|
fci.param_count = 0;
|
|
|
|
fci.params = NULL;
|
|
|
|
fci.no_separation = 1;
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_call_function(&fci, NULL);
|
2008-07-12 22:57:14 +08:00
|
|
|
|
2014-02-14 21:48:45 +08:00
|
|
|
if (Z_TYPE(trace) != IS_STRING) {
|
|
|
|
zval_ptr_dtor(&trace);
|
|
|
|
ZVAL_UNDEF(&trace);
|
|
|
|
}
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2016-08-31 03:09:26 +08:00
|
|
|
if ((Z_OBJCE_P(exception) == zend_ce_type_error || Z_OBJCE_P(exception) == zend_ce_argument_count_error) && strstr(ZSTR_VAL(message), ", called in ")) {
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_string *real_message = zend_strpprintf(0, "%s and defined", ZSTR_VAL(message));
|
2015-05-18 00:59:34 +08:00
|
|
|
zend_string_release(message);
|
|
|
|
message = real_message;
|
|
|
|
}
|
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
if (ZSTR_LEN(message) > 0) {
|
2015-05-18 00:35:18 +08:00
|
|
|
str = zend_strpprintf(0, "%s: %s in %s:" ZEND_LONG_FMT
|
2014-10-07 02:14:30 +08:00
|
|
|
"\nStack trace:\n%s%s%s",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE_P(exception)->name), ZSTR_VAL(message), ZSTR_VAL(file), line,
|
2014-08-26 01:24:55 +08:00
|
|
|
(Z_TYPE(trace) == IS_STRING && Z_STRLEN(trace)) ? Z_STRVAL(trace) : "#0 {main}\n",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_LEN(prev_str) ? "\n\nNext " : "", ZSTR_VAL(prev_str));
|
2008-07-12 22:57:14 +08:00
|
|
|
} else {
|
2015-05-18 00:35:18 +08:00
|
|
|
str = zend_strpprintf(0, "%s in %s:" ZEND_LONG_FMT
|
2014-10-07 02:14:30 +08:00
|
|
|
"\nStack trace:\n%s%s%s",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE_P(exception)->name), ZSTR_VAL(file), line,
|
2014-08-26 01:24:55 +08:00
|
|
|
(Z_TYPE(trace) == IS_STRING && Z_STRLEN(trace)) ? Z_STRVAL(trace) : "#0 {main}\n",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_LEN(prev_str) ? "\n\nNext " : "", ZSTR_VAL(prev_str));
|
2008-07-12 22:57:14 +08:00
|
|
|
}
|
2010-08-16 16:11:08 +08:00
|
|
|
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string_release(prev_str);
|
|
|
|
zend_string_release(message);
|
|
|
|
zend_string_release(file);
|
2014-02-14 21:48:45 +08:00
|
|
|
zval_ptr_dtor(&trace);
|
2010-08-16 16:11:08 +08:00
|
|
|
|
2016-10-13 02:09:24 +08:00
|
|
|
Z_OBJPROP_P(exception)->u.v.nApplyCount++;
|
2016-05-12 18:47:22 +08:00
|
|
|
exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS);
|
2016-10-13 02:09:24 +08:00
|
|
|
if (exception && Z_TYPE_P(exception) == IS_OBJECT && Z_OBJPROP_P(exception)->u.v.nApplyCount > 0) {
|
2016-10-22 14:50:21 +08:00
|
|
|
break;
|
2016-10-13 02:09:24 +08:00
|
|
|
}
|
2004-01-03 03:27:02 +08:00
|
|
|
}
|
2016-04-29 19:44:56 +08:00
|
|
|
zend_string_release(fname);
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2016-10-22 14:50:21 +08:00
|
|
|
exception = getThis();
|
2016-10-13 02:09:24 +08:00
|
|
|
/* Reset apply counts */
|
|
|
|
while (exception && Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(exception)) && instanceof_function(Z_OBJCE_P(exception), base_ce)) {
|
2016-10-22 14:50:21 +08:00
|
|
|
if (Z_OBJPROP_P(exception)->u.v.nApplyCount) {
|
2016-10-13 02:09:24 +08:00
|
|
|
Z_OBJPROP_P(exception)->u.v.nApplyCount--;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
exception = GET_PROPERTY(exception, ZEND_STR_PREVIOUS);
|
|
|
|
}
|
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
exception = getThis();
|
2015-06-29 07:41:04 +08:00
|
|
|
base_ce = i_get_exception_base(exception);
|
2015-05-18 06:31:06 +08:00
|
|
|
|
2003-08-31 02:28:24 +08:00
|
|
|
/* We store the result in the private property string so we can access
|
|
|
|
* the result in uncaught exception handlers without memleaks. */
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STR(&tmp, str);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(base_ce, exception, ZSTR_KNOWN(ZEND_STR_STRING), &tmp);
|
2004-02-11 00:08:01 +08:00
|
|
|
|
2014-05-10 00:21:49 +08:00
|
|
|
RETURN_STR(str);
|
2003-08-31 02:28:24 +08:00
|
|
|
}
|
2004-07-20 17:24:22 +08:00
|
|
|
/* }}} */
|
2003-08-31 02:28:24 +08:00
|
|
|
|
2015-06-16 07:07:27 +08:00
|
|
|
/** {{{ Throwable method definition */
|
|
|
|
const zend_function_entry zend_funcs_throwable[] = {
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getMessage, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getCode, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getFile, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getLine, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getTrace, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getPrevious, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, getTraceAsString, NULL)
|
|
|
|
ZEND_ABSTRACT_ME(throwable, __toString, NULL)
|
|
|
|
ZEND_FE_END
|
|
|
|
};
|
|
|
|
/* }}} */
|
|
|
|
|
2007-01-18 20:20:15 +08:00
|
|
|
/* {{{ internal structs */
|
2003-08-30 19:33:41 +08:00
|
|
|
/* All functions that may be used in uncaught exception handlers must be final
|
|
|
|
* and must not throw exceptions. Otherwise we would need a facility to handle
|
2006-05-10 07:53:23 +08:00
|
|
|
* such exceptions in that handler.
|
2003-09-02 04:02:47 +08:00
|
|
|
* Also all getXY() methods are final because thy serve as read only access to
|
2006-05-10 07:53:23 +08:00
|
|
|
* their corresponding properties, no more, no less. If after all you need to
|
2003-10-23 03:00:42 +08:00
|
|
|
* override somthing then it is method __toString().
|
2003-09-02 04:02:47 +08:00
|
|
|
* And never try to change the state of exceptions and never implement anything
|
|
|
|
* that gives the user anything to accomplish this.
|
2003-08-30 19:33:41 +08:00
|
|
|
*/
|
2006-06-14 04:57:35 +08:00
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_exception___construct, 0, 0, 0)
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_ARG_INFO(0, message)
|
|
|
|
ZEND_ARG_INFO(0, code)
|
2008-07-12 22:59:46 +08:00
|
|
|
ZEND_ARG_INFO(0, previous)
|
2007-05-31 00:32:02 +08:00
|
|
|
ZEND_END_ARG_INFO()
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-12-13 02:57:34 +08:00
|
|
|
static const zend_function_entry default_exception_functions[] = {
|
2003-10-26 03:07:09 +08:00
|
|
|
ZEND_ME(exception, __clone, NULL, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
|
2004-07-28 00:21:56 +08:00
|
|
|
ZEND_ME(exception, __construct, arginfo_exception___construct, ZEND_ACC_PUBLIC)
|
2015-08-05 07:13:26 +08:00
|
|
|
ZEND_ME(exception, __wakeup, NULL, ZEND_ACC_PUBLIC)
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_ME(exception, getMessage, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
|
|
|
ZEND_ME(exception, getCode, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
|
|
|
ZEND_ME(exception, getFile, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
|
|
|
ZEND_ME(exception, getLine, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
|
|
|
ZEND_ME(exception, getTrace, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
2008-07-12 22:57:14 +08:00
|
|
|
ZEND_ME(exception, getPrevious, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
2003-09-17 18:15:00 +08:00
|
|
|
ZEND_ME(exception, getTraceAsString, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
2003-10-23 03:00:42 +08:00
|
|
|
ZEND_ME(exception, __toString, NULL, 0)
|
2014-12-13 02:57:34 +08:00
|
|
|
ZEND_FE_END
|
2003-03-23 12:32:24 +08:00
|
|
|
};
|
|
|
|
|
2006-06-14 04:57:35 +08:00
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 0)
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_ARG_INFO(0, message)
|
|
|
|
ZEND_ARG_INFO(0, code)
|
|
|
|
ZEND_ARG_INFO(0, severity)
|
2004-07-25 15:05:48 +08:00
|
|
|
ZEND_ARG_INFO(0, filename)
|
|
|
|
ZEND_ARG_INFO(0, lineno)
|
2008-07-12 22:57:14 +08:00
|
|
|
ZEND_ARG_INFO(0, previous)
|
2007-05-31 00:32:02 +08:00
|
|
|
ZEND_END_ARG_INFO()
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
static const zend_function_entry error_exception_functions[] = {
|
2004-07-28 00:21:56 +08:00
|
|
|
ZEND_ME(error_exception, __construct, arginfo_error_exception___construct, ZEND_ACC_PUBLIC)
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_ME(error_exception, getSeverity, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
2014-12-13 02:57:34 +08:00
|
|
|
ZEND_FE_END
|
2004-07-16 06:21:36 +08:00
|
|
|
};
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void zend_register_default_exception(void) /* {{{ */
|
2003-03-23 12:32:24 +08:00
|
|
|
{
|
2003-08-30 19:40:37 +08:00
|
|
|
zend_class_entry ce;
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-06-18 02:46:27 +08:00
|
|
|
REGISTER_MAGIC_INTERFACE(throwable, Throwable);
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-06-15 11:43:11 +08:00
|
|
|
memcpy(&default_exception_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
|
|
|
|
default_exception_handlers.clone_obj = NULL;
|
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "Exception", default_exception_functions);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_exception = zend_register_internal_class_ex(&ce, NULL);
|
|
|
|
zend_ce_exception->create_object = zend_default_exception_new;
|
|
|
|
zend_class_implements(zend_ce_exception, 1, zend_ce_throwable);
|
|
|
|
|
|
|
|
zend_declare_property_string(zend_ce_exception, "message", sizeof("message")-1, "", ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_string(zend_ce_exception, "string", sizeof("string")-1, "", ZEND_ACC_PRIVATE);
|
|
|
|
zend_declare_property_long(zend_ce_exception, "code", sizeof("code")-1, 0, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_exception, "file", sizeof("file")-1, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_exception, "line", sizeof("line")-1, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_exception, "trace", sizeof("trace")-1, ZEND_ACC_PRIVATE);
|
|
|
|
zend_declare_property_null(zend_ce_exception, "previous", sizeof("previous")-1, ZEND_ACC_PRIVATE);
|
2004-07-16 06:21:36 +08:00
|
|
|
|
|
|
|
INIT_CLASS_ENTRY(ce, "ErrorException", error_exception_functions);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_error_exception = zend_register_internal_class_ex(&ce, zend_ce_exception);
|
|
|
|
zend_ce_error_exception->create_object = zend_error_exception_new;
|
|
|
|
zend_declare_property_long(zend_ce_error_exception, "severity", sizeof("severity")-1, E_ERROR, ZEND_ACC_PROTECTED);
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "Error", default_exception_functions);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_error = zend_register_internal_class_ex(&ce, NULL);
|
|
|
|
zend_ce_error->create_object = zend_default_exception_new;
|
|
|
|
zend_class_implements(zend_ce_error, 1, zend_ce_throwable);
|
|
|
|
|
|
|
|
zend_declare_property_string(zend_ce_error, "message", sizeof("message")-1, "", ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_string(zend_ce_error, "string", sizeof("string")-1, "", ZEND_ACC_PRIVATE);
|
|
|
|
zend_declare_property_long(zend_ce_error, "code", sizeof("code")-1, 0, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_error, "file", sizeof("file")-1, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_error, "line", sizeof("line")-1, ZEND_ACC_PROTECTED);
|
|
|
|
zend_declare_property_null(zend_ce_error, "trace", sizeof("trace")-1, ZEND_ACC_PRIVATE);
|
|
|
|
zend_declare_property_null(zend_ce_error, "previous", sizeof("previous")-1, ZEND_ACC_PRIVATE);
|
2015-03-19 00:23:09 +08:00
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "ParseError", NULL);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_parse_error = zend_register_internal_class_ex(&ce, zend_ce_error);
|
|
|
|
zend_ce_parse_error->create_object = zend_default_exception_new;
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "TypeError", NULL);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_type_error = zend_register_internal_class_ex(&ce, zend_ce_error);
|
|
|
|
zend_ce_type_error->create_object = zend_default_exception_new;
|
2015-07-02 07:54:08 +08:00
|
|
|
|
2016-08-31 03:09:26 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "ArgumentCountError", NULL);
|
|
|
|
zend_ce_argument_count_error = zend_register_internal_class_ex(&ce, zend_ce_type_error);
|
|
|
|
zend_ce_argument_count_error->create_object = zend_default_exception_new;
|
|
|
|
|
2015-07-03 02:47:44 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "ArithmeticError", NULL);
|
2015-07-03 22:45:03 +08:00
|
|
|
zend_ce_arithmetic_error = zend_register_internal_class_ex(&ce, zend_ce_error);
|
2015-07-03 02:47:44 +08:00
|
|
|
zend_ce_arithmetic_error->create_object = zend_default_exception_new;
|
|
|
|
|
2015-07-02 07:54:08 +08:00
|
|
|
INIT_CLASS_ENTRY(ce, "DivisionByZeroError", NULL);
|
2015-07-03 02:47:44 +08:00
|
|
|
zend_ce_division_by_zero_error = zend_register_internal_class_ex(&ce, zend_ce_arithmetic_error);
|
2015-07-02 07:54:08 +08:00
|
|
|
zend_ce_division_by_zero_error->create_object = zend_default_exception_new;
|
2003-03-23 12:32:24 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-03-23 12:32:24 +08:00
|
|
|
|
2015-07-03 22:45:03 +08:00
|
|
|
/* {{{ Deprecated - Use zend_ce_exception directly instead */
|
2015-08-05 07:14:24 +08:00
|
|
|
ZEND_API zend_class_entry *zend_exception_get_default(void)
|
2015-03-09 20:57:15 +08:00
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
return zend_ce_exception;
|
2015-03-09 20:57:15 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-07-03 22:45:03 +08:00
|
|
|
/* {{{ Deprecated - Use zend_ce_error_exception directly instead */
|
2015-07-03 09:57:53 +08:00
|
|
|
ZEND_API zend_class_entry *zend_get_error_exception(void)
|
2015-03-19 00:23:09 +08:00
|
|
|
{
|
2015-07-03 22:45:03 +08:00
|
|
|
return zend_ce_error_exception;
|
2015-03-19 00:23:09 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2016-05-12 18:47:22 +08:00
|
|
|
zval ex, tmp;
|
2003-08-29 06:56:41 +08:00
|
|
|
|
|
|
|
if (exception_ce) {
|
2015-05-18 06:31:06 +08:00
|
|
|
if (!instanceof_function(exception_ce, zend_ce_throwable)) {
|
|
|
|
zend_error(E_NOTICE, "Exceptions must implement Throwable");
|
2015-07-03 22:45:03 +08:00
|
|
|
exception_ce = zend_ce_exception;
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-03 22:45:03 +08:00
|
|
|
exception_ce = zend_ce_exception;
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
object_init_ex(&ex, exception_ce);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-08-29 06:56:41 +08:00
|
|
|
|
|
|
|
if (message) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_STRING(&tmp, message);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_MESSAGE), &tmp);
|
2016-05-12 18:47:22 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
|
|
|
if (code) {
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, code);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception_internal(&ex);
|
2014-02-10 14:04:30 +08:00
|
|
|
return Z_OBJ(ex);
|
2003-08-29 06:56:41 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-29 06:56:41 +08:00
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code, const char *format, ...) /* {{{ */
|
2003-08-22 07:32:13 +08:00
|
|
|
{
|
2004-07-16 06:21:36 +08:00
|
|
|
va_list arg;
|
|
|
|
char *message;
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj;
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
va_start(arg, format);
|
2004-07-16 06:21:36 +08:00
|
|
|
zend_vspprintf(&message, 0, format, arg);
|
|
|
|
va_end(arg);
|
2014-12-14 06:06:14 +08:00
|
|
|
obj = zend_throw_exception(exception_ce, message, code);
|
2004-09-28 06:06:10 +08:00
|
|
|
efree(message);
|
2014-02-10 14:04:30 +08:00
|
|
|
return obj;
|
2003-08-22 07:32:13 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-22 07:32:13 +08:00
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *message, zend_long code, int severity) /* {{{ */
|
2004-07-16 06:21:36 +08:00
|
|
|
{
|
2016-05-12 18:47:22 +08:00
|
|
|
zval ex, tmp;
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_object *obj = zend_throw_exception(exception_ce, message, code);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZVAL_OBJ(&ex, obj);
|
2016-05-12 18:47:22 +08:00
|
|
|
ZVAL_LONG(&tmp, severity);
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(zend_ce_error_exception, &ex, ZSTR_KNOWN(ZEND_STR_SEVERITY), &tmp);
|
2014-02-10 14:04:30 +08:00
|
|
|
return obj;
|
2004-07-16 06:21:36 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-07-16 06:21:36 +08:00
|
|
|
|
2016-11-26 22:18:42 +08:00
|
|
|
static void zend_error_va(int type, const char *file, uint32_t lineno, const char *format, ...) /* {{{ */
|
2003-08-24 21:10:03 +08:00
|
|
|
{
|
|
|
|
va_list args;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-08-24 21:10:03 +08:00
|
|
|
va_start(args, format);
|
2003-09-11 18:26:47 +08:00
|
|
|
zend_error_cb(type, file, lineno, format, args);
|
2003-08-24 21:10:03 +08:00
|
|
|
va_end(args);
|
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 21:10:03 +08:00
|
|
|
|
2016-11-26 22:18:42 +08:00
|
|
|
static void zend_error_helper(int type, const char *filename, const uint32_t lineno, const char *format, ...) /* {{{ */
|
2015-03-09 20:57:15 +08:00
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, format);
|
|
|
|
zend_error_cb(type, filename, lineno, format, va);
|
|
|
|
va_end(va);
|
|
|
|
}
|
2015-11-21 23:14:12 +08:00
|
|
|
/* }}} */
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2009-01-02 21:14:49 +08:00
|
|
|
/* This function doesn't return if it uses E_ERROR */
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_exception_error(zend_object *ex, int severity) /* {{{ */
|
2003-08-24 21:10:03 +08:00
|
|
|
{
|
2015-03-09 20:57:15 +08:00
|
|
|
zval exception, rv;
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_class_entry *ce_exception;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZVAL_OBJ(&exception, ex);
|
|
|
|
ce_exception = Z_OBJCE(exception);
|
2015-03-09 20:57:15 +08:00
|
|
|
EG(exception) = NULL;
|
2015-07-03 22:45:03 +08:00
|
|
|
if (ce_exception == zend_ce_parse_error) {
|
2016-05-12 18:47:22 +08:00
|
|
|
zend_string *message = zval_get_string(GET_PROPERTY(&exception, ZEND_STR_MESSAGE));
|
|
|
|
zend_string *file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE));
|
|
|
|
zend_long line = zval_get_long(GET_PROPERTY_SILENT(&exception, ZEND_STR_LINE));
|
2015-03-09 20:57:15 +08:00
|
|
|
|
2015-07-08 05:54:39 +08:00
|
|
|
zend_error_helper(E_PARSE, ZSTR_VAL(file), line, "%s", ZSTR_VAL(message));
|
2015-03-19 04:38:51 +08:00
|
|
|
|
2015-03-09 20:57:15 +08:00
|
|
|
zend_string_release(file);
|
|
|
|
zend_string_release(message);
|
2015-06-16 06:35:24 +08:00
|
|
|
} else if (instanceof_function(ce_exception, zend_ce_throwable)) {
|
2015-01-22 16:50:42 +08:00
|
|
|
zval tmp, rv;
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string *str, *file = NULL;
|
|
|
|
zend_long line = 0;
|
2003-08-31 02:58:40 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_call_method_with_0_params(&exception, ce_exception, NULL, "__tostring", &tmp);
|
2003-12-07 02:12:26 +08:00
|
|
|
if (!EG(exception)) {
|
2014-02-10 14:04:30 +08:00
|
|
|
if (Z_TYPE(tmp) != IS_STRING) {
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_error(E_WARNING, "%s::__toString() must return a string", ZSTR_VAL(ce_exception->name));
|
2003-12-07 02:12:26 +08:00
|
|
|
} else {
|
2017-03-04 17:39:13 +08:00
|
|
|
zend_update_property_ex(i_get_exception_base(&exception), &exception, ZSTR_KNOWN(ZEND_STR_STRING), &tmp);
|
2003-12-07 02:12:26 +08:00
|
|
|
}
|
2003-12-05 09:44:45 +08:00
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
zval_ptr_dtor(&tmp);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-11-30 01:03:45 +08:00
|
|
|
if (EG(exception)) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zval zv;
|
|
|
|
|
|
|
|
ZVAL_OBJ(&zv, EG(exception));
|
2003-11-30 01:03:45 +08:00
|
|
|
/* do the best we can to inform about the inner exception */
|
2015-07-03 22:45:03 +08:00
|
|
|
if (instanceof_function(ce_exception, zend_ce_exception) || instanceof_function(ce_exception, zend_ce_error)) {
|
2016-05-12 18:47:22 +08:00
|
|
|
file = zval_get_string(GET_PROPERTY_SILENT(&zv, ZEND_STR_FILE));
|
|
|
|
line = zval_get_long(GET_PROPERTY_SILENT(&zv, ZEND_STR_LINE));
|
2014-10-07 02:14:30 +08:00
|
|
|
}
|
2013-05-12 20:00:32 +08:00
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_error_va(E_WARNING, (file && ZSTR_LEN(file) > 0) ? ZSTR_VAL(file) : NULL, line,
|
2014-10-07 02:14:30 +08:00
|
|
|
"Uncaught %s in exception handling during call to %s::__tostring()",
|
2015-06-30 18:59:27 +08:00
|
|
|
ZSTR_VAL(Z_OBJCE(zv)->name), ZSTR_VAL(ce_exception->name));
|
2014-10-07 02:14:30 +08:00
|
|
|
|
|
|
|
if (file) {
|
|
|
|
zend_string_release(file);
|
2003-11-30 01:03:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-12 18:47:22 +08:00
|
|
|
str = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_STRING));
|
|
|
|
file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE));
|
|
|
|
line = zval_get_long(GET_PROPERTY_SILENT(&exception, ZEND_STR_LINE));
|
2003-11-30 01:03:45 +08:00
|
|
|
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_error_va(severity, (file && ZSTR_LEN(file) > 0) ? ZSTR_VAL(file) : NULL, line,
|
2015-08-18 19:59:37 +08:00
|
|
|
"Uncaught %s\n thrown", ZSTR_VAL(str));
|
2013-05-12 20:00:32 +08:00
|
|
|
|
2014-10-07 02:14:30 +08:00
|
|
|
zend_string_release(str);
|
|
|
|
zend_string_release(file);
|
2003-08-24 21:10:03 +08:00
|
|
|
} else {
|
2015-06-30 18:59:27 +08:00
|
|
|
zend_error(severity, "Uncaught exception '%s'", ZSTR_VAL(ce_exception->name));
|
2003-08-24 21:10:03 +08:00
|
|
|
}
|
2015-05-16 04:42:19 +08:00
|
|
|
|
|
|
|
OBJ_RELEASE(ex);
|
2003-08-24 21:10:03 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2003-08-24 21:10:03 +08:00
|
|
|
|
2015-08-19 19:40:56 +08:00
|
|
|
ZEND_API ZEND_COLD void zend_throw_exception_object(zval *exception) /* {{{ */
|
2004-02-12 18:24:40 +08:00
|
|
|
{
|
|
|
|
zend_class_entry *exception_ce;
|
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
if (exception == NULL || Z_TYPE_P(exception) != IS_OBJECT) {
|
2015-04-02 19:19:52 +08:00
|
|
|
zend_error_noreturn(E_CORE_ERROR, "Need to supply an object when throwing an exception");
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
exception_ce = Z_OBJCE_P(exception);
|
|
|
|
|
2015-05-18 06:31:06 +08:00
|
|
|
if (!exception_ce || !instanceof_function(exception_ce, zend_ce_throwable)) {
|
2015-07-08 01:10:22 +08:00
|
|
|
zend_throw_error(NULL, "Cannot throw objects that do not implement Throwable");
|
2016-07-14 05:35:53 +08:00
|
|
|
zval_ptr_dtor(exception);
|
2015-04-02 19:19:52 +08:00
|
|
|
return;
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_throw_exception_internal(exception);
|
2004-02-12 18:24:40 +08:00
|
|
|
}
|
2007-01-18 20:20:15 +08:00
|
|
|
/* }}} */
|
2004-02-12 18:24:40 +08:00
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|