php-src/ext/standard/incomplete_class.c

170 lines
5.2 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
2014-09-19 16:33:14 +00:00
| PHP Version 7 |
+----------------------------------------------------------------------+
2015-01-15 15:27:30 +00:00
| Copyright (c) 1997-2015 The PHP Group |
+----------------------------------------------------------------------+
2006-01-01 12:51:34 +00:00
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2006-01-01 12:51:34 +00:00
| http://www.php.net/license/3_01.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. |
+----------------------------------------------------------------------+
| Author: Sascha Schumann <sascha@schumann.cx> |
+----------------------------------------------------------------------+
2007-11-06 10:53:01 +00:00
*/
/* $Id$ */
#include "php.h"
#include "basic_functions.h"
#include "php_incomplete_class.h"
#define INCOMPLETE_CLASS_MSG \
"The script tried to execute a method or " \
"access a property of an incomplete object. " \
2004-09-05 17:37:57 +00:00
"Please ensure that the class definition \"%s\" of the object " \
"you are trying to operate on was loaded _before_ " \
2004-09-05 17:37:57 +00:00
"unserialize() gets called or provide a __autoload() function " \
"to load the class definition "
static zend_object_handlers php_incomplete_object_handlers;
/* {{{ incomplete_class_message
*/
2014-12-13 22:06:14 +00:00
static void incomplete_class_message(zval *object, int error_type)
{
zend_string *class_name;
class_name = php_lookup_class_name(object);
if (class_name) {
php_error_docref(NULL, error_type, INCOMPLETE_CLASS_MSG, ZSTR_VAL(class_name));
2014-08-25 17:24:55 +00:00
zend_string_release(class_name);
2014-02-25 10:14:22 +00:00
} else {
2014-12-13 22:06:14 +00:00
php_error_docref(NULL, error_type, INCOMPLETE_CLASS_MSG, "unknown");
2007-02-01 14:07:43 +00:00
}
}
/* }}} */
2014-12-13 22:06:14 +00:00
static zval *incomplete_class_get_property(zval *object, zval *member, int type, void **cache_slot, zval *rv) /* {{{ */
{
2014-12-13 22:06:14 +00:00
incomplete_class_message(object, E_NOTICE);
2007-11-06 10:53:01 +00:00
if (type == BP_VAR_W || type == BP_VAR_RW) {
return &EG(error_zval);
} else {
return &EG(uninitialized_zval);
}
}
2007-11-06 10:53:01 +00:00
/* }}} */
2014-12-13 22:06:14 +00:00
static void incomplete_class_write_property(zval *object, zval *member, zval *value, void **cache_slot) /* {{{ */
{
2014-12-13 22:06:14 +00:00
incomplete_class_message(object, E_NOTICE);
}
2007-11-06 10:53:01 +00:00
/* }}} */
2014-12-13 22:06:14 +00:00
static zval *incomplete_class_get_property_ptr_ptr(zval *object, zval *member, int type, void **cache_slot) /* {{{ */
{
2014-12-13 22:06:14 +00:00
incomplete_class_message(object, E_NOTICE);
return &EG(error_zval);
}
2007-11-06 10:53:01 +00:00
/* }}} */
2014-12-13 22:06:14 +00:00
static void incomplete_class_unset_property(zval *object, zval *member, void **cache_slot) /* {{{ */
{
2014-12-13 22:06:14 +00:00
incomplete_class_message(object, E_NOTICE);
}
2007-11-06 10:53:01 +00:00
/* }}} */
2014-12-13 22:06:14 +00:00
static int incomplete_class_has_property(zval *object, zval *member, int check_empty, void **cache_slot) /* {{{ */
{
2014-12-13 22:06:14 +00:00
incomplete_class_message(object, E_NOTICE);
return 0;
}
2007-11-06 10:53:01 +00:00
/* }}} */
2014-12-13 22:06:14 +00:00
static union _zend_function *incomplete_class_get_method(zend_object **object, zend_string *method, const zval *key) /* {{{ */
2007-11-06 10:53:01 +00:00
{
zval zobject;
ZVAL_OBJ(&zobject, *object);
2014-12-13 22:06:14 +00:00
incomplete_class_message(&zobject, E_ERROR);
return NULL;
}
2007-11-06 10:53:01 +00:00
/* }}} */
/* {{{ php_create_incomplete_class
*/
2014-12-13 22:06:14 +00:00
static zend_object *php_create_incomplete_object(zend_class_entry *class_type)
2007-11-06 10:53:01 +00:00
{
zend_object *object;
2014-12-13 22:06:14 +00:00
object = zend_objects_new( class_type);
object->handlers = &php_incomplete_object_handlers;
object_properties_init(object, class_type);
return object;
2003-08-05 09:06:02 +00:00
}
2014-12-13 22:06:14 +00:00
PHPAPI zend_class_entry *php_create_incomplete_class(void)
{
zend_class_entry incomplete_class;
INIT_CLASS_ENTRY(incomplete_class, INCOMPLETE_CLASS, NULL);
incomplete_class.create_object = php_create_incomplete_object;
memcpy(&php_incomplete_object_handlers, &std_object_handlers, sizeof(zend_object_handlers));
php_incomplete_object_handlers.read_property = incomplete_class_get_property;
php_incomplete_object_handlers.has_property = incomplete_class_has_property;
php_incomplete_object_handlers.unset_property = incomplete_class_unset_property;
php_incomplete_object_handlers.write_property = incomplete_class_write_property;
php_incomplete_object_handlers.get_property_ptr_ptr = incomplete_class_get_property_ptr_ptr;
php_incomplete_object_handlers.get_method = incomplete_class_get_method;
2014-12-13 22:06:14 +00:00
return zend_register_internal_class(&incomplete_class);
}
/* }}} */
/* {{{ php_lookup_class_name
*/
PHPAPI zend_string *php_lookup_class_name(zval *object)
{
zval *val;
2001-07-28 18:40:18 +00:00
HashTable *object_properties;
2001-07-28 18:40:18 +00:00
object_properties = Z_OBJPROP_P(object);
if ((val = zend_hash_str_find(object_properties, MAGIC_MEMBER, sizeof(MAGIC_MEMBER)-1)) != NULL && Z_TYPE_P(val) == IS_STRING) {
2014-08-25 17:24:55 +00:00
return zend_string_copy(Z_STR_P(val));
}
return NULL;
}
/* }}} */
/* {{{ php_store_class_name
*/
PHPAPI void php_store_class_name(zval *object, const char *name, size_t len)
{
zval val;
ZVAL_STRINGL(&val, name, len);
zend_hash_str_update(Z_OBJPROP_P(object), MAGIC_MEMBER, sizeof(MAGIC_MEMBER)-1, &val);
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
*/