summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r--Zend/zend_exceptions.c135
1 files changed, 0 insertions, 135 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
deleted file mode 100644
index 161ceacece..0000000000
--- a/Zend/zend_exceptions.c
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- +----------------------------------------------------------------------+
- | Zend Engine |
- +----------------------------------------------------------------------+
- | Copyright (c) 1998-2003 Zend Technologies Ltd. (http://www.zend.com) |
- +----------------------------------------------------------------------+
- | This source file is subject to version 2.00 of the Zend license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available at through the world-wide-web at |
- | 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. |
- +----------------------------------------------------------------------+
- | Authors: Sterling Hughes <sterling@php.net> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#include "zend.h"
-#include "zend_API.h"
-
-zend_class_entry *default_exception_ptr;
-
-ZEND_FUNCTION(exception)
-{
- zval **message;
- zval **code;
- zval *tmp;
- zval *object;
- int argc = ZEND_NUM_ARGS();
-
- if (zend_get_parameters_ex(argc, &message, &code) == FAILURE) {
- ZEND_WRONG_PARAM_COUNT();
- }
-
- object = getThis();
-
- if (argc > 0) {
- convert_to_string_ex(message);
- zval_add_ref(message);
- zend_hash_update(Z_OBJPROP_P(object), "message", sizeof("message"), (void **) message, sizeof(zval *), NULL);
- }
-
- if (argc > 1) {
- convert_to_long_ex(code);
- zval_add_ref(code);
- zend_hash_update(Z_OBJPROP_P(object), "code", sizeof("code"), (void **) code, sizeof(zval *), NULL);
- }
-
- MAKE_STD_ZVAL(tmp);
- ZVAL_STRING(tmp, zend_get_executed_filename(TSRMLS_C), 1);
- zend_hash_update(Z_OBJPROP_P(object), "file", sizeof("file"), (void **) &tmp, sizeof(zval *), NULL);
- tmp = NULL;
-
- MAKE_STD_ZVAL(tmp);
- ZVAL_LONG(tmp, zend_get_executed_lineno(TSRMLS_C));
- zend_hash_update(Z_OBJPROP_P(object), "line", sizeof("line"), (void **) &tmp, sizeof(zval *), NULL);
-}
-
-#define DEFAULT_0_PARAMS \
- if (ZEND_NUM_ARGS() > 0) { \
- ZEND_WRONG_PARAM_COUNT(); \
- }
-
-static void _default_exception_get_entry(zval *object, char *name, int name_len, zval *return_value TSRMLS_DC)
-{
- zval **value;
-
- if (zend_hash_find(Z_OBJPROP_P(object), name, name_len, (void **) &value) == FAILURE) {
- RETURN_FALSE;
- }
-
- *return_value = **value;
- zval_copy_ctor(return_value);
-}
-
-ZEND_FUNCTION(getfile)
-{
- DEFAULT_0_PARAMS;
-
- _default_exception_get_entry(getThis(), "file", sizeof("file"), return_value TSRMLS_CC);
-}
-
-ZEND_FUNCTION(getline)
-{
- DEFAULT_0_PARAMS;
-
- _default_exception_get_entry(getThis(), "line", sizeof("line"), return_value TSRMLS_CC);
-}
-
-ZEND_FUNCTION(getmessage)
-{
- DEFAULT_0_PARAMS;
-
- _default_exception_get_entry(getThis(), "message", sizeof("message"), return_value TSRMLS_CC);
-}
-
-ZEND_FUNCTION(getcode)
-{
- DEFAULT_0_PARAMS;
-
- _default_exception_get_entry(getThis(), "code", sizeof("code"), return_value TSRMLS_CC);
-}
-
-static zend_function_entry default_exception_functions[] = {
- ZEND_FE(exception, NULL)
- ZEND_FE(getmessage, NULL)
- ZEND_FE(getcode, NULL)
- ZEND_FE(getfile, NULL)
- ZEND_FE(getline, NULL)
- {NULL, NULL, NULL}
-};
-
-static void zend_register_default_exception(TSRMLS_D)
-{
- zend_class_entry default_exception;
-
- INIT_CLASS_ENTRY(default_exception, "exception", default_exception_functions);
- default_exception_ptr = zend_register_internal_class(&default_exception TSRMLS_CC);
-}
-
-ZEND_API void zend_register_default_classes(TSRMLS_D)
-{
- zend_register_default_exception(TSRMLS_C);
-}
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * indent-tabs-mode: t
- * End:
- */