mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
74a0f6c8ab
# The default behaviour is to copy all properties with all current values # from the old object. But if __clone is overwritten then only the default # properties are cloned with their correct default values. So we keep # the type system intact and also allow real __clone overwriting now.
169 lines
5.9 KiB
C
169 lines
5.9 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| 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 through the world-wide-web at the following url: |
|
|
| 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: Andi Gutmans <andi@zend.com> |
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
#include "zend.h"
|
|
#include "zend_globals.h"
|
|
#include "zend_variables.h"
|
|
#include "zend_API.h"
|
|
|
|
static inline void zend_objects_call_destructor(zend_object *object, zend_object_handle handle TSRMLS_DC)
|
|
{
|
|
zend_function *destructor = object->ce->destructor;
|
|
|
|
if (destructor) {
|
|
zval *obj;
|
|
zval *destructor_func_name;
|
|
zval *retval_ptr;
|
|
HashTable symbol_table;
|
|
|
|
MAKE_STD_ZVAL(obj);
|
|
obj->type = IS_OBJECT;
|
|
obj->value.obj.handle = handle;
|
|
obj->value.obj.handlers = &std_object_handlers;
|
|
zval_copy_ctor(obj);
|
|
|
|
/* FIXME: Optimize this so that we use the old_object->ce->destructor function pointer instead of the name */
|
|
MAKE_STD_ZVAL(destructor_func_name);
|
|
destructor_func_name->type = IS_STRING;
|
|
destructor_func_name->value.str.val = estrndup("__destruct", sizeof("__destruct")-1);
|
|
destructor_func_name->value.str.len = sizeof("__destruct")-1;
|
|
|
|
if (destructor->op_array.fn_flags & ZEND_ACC_PRIVATE) {
|
|
/* Ensure that if we're calling a private function, we're allowed to do so.
|
|
*/
|
|
if (object->ce != EG(scope)) {
|
|
zend_error(E_ERROR, "Call to private destructor from context '%s'", EG(scope) ? EG(scope)->name : "");
|
|
}
|
|
} else if ((destructor->common.fn_flags & ZEND_ACC_PROTECTED)) {
|
|
/* Ensure that if we're calling a protected function, we're allowed to do so.
|
|
*/
|
|
if (!zend_check_protected(destructor->common.scope, EG(scope))) {
|
|
zend_error(E_ERROR, "Call to protected destructor from context '%s'", EG(scope) ? EG(scope)->name : "");
|
|
}
|
|
}
|
|
|
|
ZEND_INIT_SYMTABLE(&symbol_table);
|
|
|
|
call_user_function_ex(NULL, &obj, destructor_func_name, &retval_ptr, 0, NULL, 0, &symbol_table TSRMLS_CC);
|
|
|
|
zend_hash_destroy(&symbol_table);
|
|
zval_ptr_dtor(&obj);
|
|
zval_ptr_dtor(&destructor_func_name);
|
|
if (retval_ptr) {
|
|
zval_ptr_dtor(&retval_ptr);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
ZEND_API void zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC)
|
|
{
|
|
zend_objects_call_destructor(object, handle TSRMLS_CC);
|
|
/* Nuke the object */
|
|
zend_hash_destroy(object->properties);
|
|
FREE_HASHTABLE(object->properties);
|
|
efree(object);
|
|
}
|
|
|
|
ZEND_API zend_object_value zend_objects_new(zend_object **object, zend_class_entry *class_type TSRMLS_DC)
|
|
{
|
|
zend_object_value retval;
|
|
|
|
*object = emalloc(sizeof(zend_object));
|
|
(*object)->ce = class_type;
|
|
retval.handle = zend_objects_store_put(*object, (zend_objects_store_dtor_t) zend_objects_destroy_object, NULL TSRMLS_CC);
|
|
retval.handlers = &std_object_handlers;
|
|
(*object)->in_get = 0;
|
|
(*object)->in_set = 0;
|
|
return retval;
|
|
}
|
|
|
|
ZEND_API zend_object *zend_objects_get_address(zval *zobject TSRMLS_DC)
|
|
{
|
|
return (zend_object *)zend_object_store_get_object(zobject TSRMLS_CC);
|
|
}
|
|
|
|
ZEND_API zend_object_value zend_objects_clone_obj(zval *zobject TSRMLS_DC)
|
|
{
|
|
zend_object_value retval;
|
|
zend_object *old_object;
|
|
zend_object *new_object;
|
|
zend_object_handle handle = Z_OBJ_HANDLE_P(zobject);
|
|
|
|
/* assume that create isn't overwritten, so when clone depends on the
|
|
* overwritten one then it must itself be overwritten */
|
|
old_object = zend_objects_get_address(zobject TSRMLS_CC);
|
|
retval = zend_objects_new(&new_object, old_object->ce TSRMLS_CC);
|
|
|
|
ALLOC_HASHTABLE(new_object->properties);
|
|
zend_hash_init(new_object->properties, 0, NULL, ZVAL_PTR_DTOR, 0);
|
|
|
|
if (old_object->ce->clone) {
|
|
zval *old_obj;
|
|
zval *new_obj;
|
|
zval *clone_func_name;
|
|
zval *retval_ptr;
|
|
HashTable symbol_table;
|
|
zend_class_entry *ce = old_object->ce;
|
|
|
|
zend_hash_copy(new_object->properties, &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
|
|
|
|
MAKE_STD_ZVAL(new_obj);
|
|
new_obj->type = IS_OBJECT;
|
|
new_obj->value.obj = retval;
|
|
zval_copy_ctor(new_obj);
|
|
|
|
MAKE_STD_ZVAL(old_obj);
|
|
old_obj->type = IS_OBJECT;
|
|
old_obj->value.obj.handle = handle;
|
|
old_obj->value.obj.handlers = &std_object_handlers; /* If we reached here than the handlers are standrd */
|
|
zval_copy_ctor(old_obj);
|
|
|
|
/* FIXME: Optimize this so that we use the old_object->ce->clone function pointer instead of the name */
|
|
MAKE_STD_ZVAL(clone_func_name);
|
|
clone_func_name->type = IS_STRING;
|
|
clone_func_name->value.str.val = estrndup("__clone", sizeof("__clone")-1);
|
|
clone_func_name->value.str.len = sizeof("__clone")-1;
|
|
|
|
ZEND_INIT_SYMTABLE(&symbol_table);
|
|
ZEND_SET_SYMBOL(&symbol_table, "that", old_obj);
|
|
|
|
call_user_function_ex(NULL, &new_obj, clone_func_name, &retval_ptr, 0, NULL, 0, &symbol_table TSRMLS_CC);
|
|
|
|
zend_hash_destroy(&symbol_table);
|
|
zval_ptr_dtor(&new_obj);
|
|
zval_ptr_dtor(&clone_func_name);
|
|
zval_ptr_dtor(&retval_ptr);
|
|
} else {
|
|
zend_hash_copy(new_object->properties, old_object->properties, (copy_ctor_func_t) zval_add_ref, (void *) NULL /* Not used anymore */, sizeof(zval *));
|
|
}
|
|
|
|
return retval;
|
|
}
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* indent-tabs-mode: t
|
|
* End:
|
|
*/
|