2006-05-10 07:53:23 +08:00
|
|
|
/*
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| 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 |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-02-01 09:49:15 +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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_globals.h"
|
|
|
|
#include "zend_variables.h"
|
|
|
|
#include "zend_API.h"
|
2014-02-12 22:08:11 +08:00
|
|
|
#include "zend_objects_API.h"
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2002-08-09 01:53:32 +08:00
|
|
|
ZEND_API void zend_objects_store_init(zend_objects_store *objects, zend_uint init_size)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
objects->object_buckets = (zend_object **) emalloc(init_size * sizeof(zend_object*));
|
2002-05-31 20:09:19 +08:00
|
|
|
objects->top = 1; /* Skip 0 so that handles are true */
|
|
|
|
objects->size = init_size;
|
|
|
|
objects->free_list_head = -1;
|
2014-02-10 14:04:30 +08:00
|
|
|
memset(&objects->object_buckets[0], 0, sizeof(zend_object*));
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2002-08-09 01:53:32 +08:00
|
|
|
ZEND_API void zend_objects_store_destroy(zend_objects_store *objects)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
|
|
|
efree(objects->object_buckets);
|
2005-09-28 02:07:41 +08:00
|
|
|
objects->object_buckets = NULL;
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2002-08-09 01:53:32 +08:00
|
|
|
ZEND_API void zend_objects_store_call_destructors(zend_objects_store *objects TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
|
|
|
zend_uint i = 1;
|
|
|
|
|
|
|
|
for (i = 1; i < objects->top ; i++) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj = objects->object_buckets[i];
|
|
|
|
|
|
|
|
if (IS_VALID(obj)) {
|
|
|
|
if (!(obj->gc.u.v.flags & IS_OBJ_DESTRUCTOR_CALLED)) {
|
|
|
|
obj->gc.u.v.flags |= IS_OBJ_DESTRUCTOR_CALLED;
|
|
|
|
obj->gc.refcount++;
|
|
|
|
obj->handlers->dtor_obj(obj TSRMLS_CC);
|
|
|
|
obj->gc.refcount--;
|
|
|
|
|
|
|
|
if (obj->gc.refcount == 0) {
|
|
|
|
gc_remove_zval_from_buffer((zend_refcounted*)obj TSRMLS_CC);
|
2004-05-24 04:33:09 +08:00
|
|
|
}
|
2004-02-04 20:17:57 +08:00
|
|
|
}
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-17 18:13:52 +08:00
|
|
|
ZEND_API void zend_objects_store_mark_destructed(zend_objects_store *objects TSRMLS_DC)
|
|
|
|
{
|
2006-11-23 16:07:05 +08:00
|
|
|
zend_uint i;
|
2004-09-17 18:13:52 +08:00
|
|
|
|
2006-11-23 16:07:05 +08:00
|
|
|
if (!objects->object_buckets) {
|
|
|
|
return;
|
|
|
|
}
|
2004-09-17 18:13:52 +08:00
|
|
|
for (i = 1; i < objects->top ; i++) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj = objects->object_buckets[i];
|
|
|
|
|
|
|
|
if (IS_VALID(obj)) {
|
|
|
|
obj->gc.u.v.flags |= IS_OBJ_DESTRUCTOR_CALLED;
|
2004-09-17 18:13:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-02-03 23:37:37 +08:00
|
|
|
|
2004-02-04 17:56:20 +08:00
|
|
|
ZEND_API void zend_objects_store_free_object_storage(zend_objects_store *objects TSRMLS_DC)
|
2004-02-03 23:37:37 +08:00
|
|
|
{
|
2004-02-04 17:56:20 +08:00
|
|
|
zend_uint i = 1;
|
|
|
|
|
|
|
|
for (i = 1; i < objects->top ; i++) {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj = objects->object_buckets[i];
|
2008-01-22 17:27:48 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
if (IS_VALID(obj)) {
|
|
|
|
gc_remove_zval_from_buffer((zend_refcounted*)obj TSRMLS_CC);
|
2014-02-12 22:08:11 +08:00
|
|
|
objects->object_buckets[i] = SET_INVALID(obj);
|
2014-02-10 14:04:30 +08:00
|
|
|
if (obj->handlers->free_obj) {
|
|
|
|
obj->handlers->free_obj(obj TSRMLS_CC);
|
2004-02-04 20:30:48 +08:00
|
|
|
}
|
2004-03-11 21:40:19 +08:00
|
|
|
/* Not adding to free list as we are shutting down anyway */
|
2004-02-04 17:56:20 +08:00
|
|
|
}
|
|
|
|
}
|
2004-02-03 23:37:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
/* Store objects API */
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_objects_store_put(zend_object *object TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
int handle;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
if (EG(objects_store).free_list_head != -1) {
|
|
|
|
handle = EG(objects_store).free_list_head;
|
2014-02-10 14:04:30 +08:00
|
|
|
EG(objects_store).free_list_head = GET_BUCKET_NUMBER(EG(objects_store).object_buckets[handle]);
|
2002-05-31 20:09:19 +08:00
|
|
|
} else {
|
|
|
|
if (EG(objects_store).top == EG(objects_store).size) {
|
|
|
|
EG(objects_store).size <<= 1;
|
2014-02-10 14:04:30 +08:00
|
|
|
EG(objects_store).object_buckets = (zend_object **) erealloc(EG(objects_store).object_buckets, EG(objects_store).size * sizeof(zend_object*));
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
handle = EG(objects_store).top++;
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
object->handle = handle;
|
|
|
|
EG(objects_store).object_buckets[handle] = object;
|
2006-05-10 07:53:23 +08:00
|
|
|
}
|
|
|
|
|
2014-02-12 22:08:11 +08:00
|
|
|
#define ZEND_OBJECTS_STORE_ADD_TO_FREE_LIST(handle) \
|
|
|
|
SET_BUCKET_NUMBER(EG(objects_store).object_buckets[handle], EG(objects_store).free_list_head); \
|
|
|
|
EG(objects_store).free_list_head = handle;
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-12 22:08:11 +08:00
|
|
|
ZEND_API void zend_objects_store_del(zend_object *object TSRMLS_DC) /* {{{ */
|
2006-05-10 07:53:23 +08:00
|
|
|
{
|
2004-03-11 21:40:19 +08:00
|
|
|
/* Make sure we hold a reference count during the destructor call
|
|
|
|
otherwise, when the destructor ends the storage might be freed
|
|
|
|
when the refcount reaches 0 a second time
|
2006-05-10 07:53:23 +08:00
|
|
|
*/
|
2014-02-12 22:08:11 +08:00
|
|
|
if (EG(objects_store).object_buckets &&
|
|
|
|
IS_VALID(EG(objects_store).object_buckets[object->handle])) {
|
|
|
|
if (object->gc.refcount == 0) {
|
|
|
|
int failure = 0;
|
|
|
|
|
|
|
|
if (!(object->gc.u.v.flags & IS_OBJ_DESTRUCTOR_CALLED)) {
|
|
|
|
object->gc.u.v.flags |= IS_OBJ_DESTRUCTOR_CALLED;
|
|
|
|
|
|
|
|
if (object->handlers->dtor_obj) {
|
|
|
|
object->gc.refcount++;
|
2006-05-31 20:59:31 +08:00
|
|
|
zend_try {
|
2014-02-12 22:08:11 +08:00
|
|
|
object->handlers->dtor_obj(object TSRMLS_CC);
|
2006-05-31 20:59:31 +08:00
|
|
|
} zend_catch {
|
|
|
|
failure = 1;
|
|
|
|
} zend_end_try();
|
2014-02-12 22:08:11 +08:00
|
|
|
object->gc.refcount--;
|
2004-03-11 21:40:19 +08:00
|
|
|
}
|
|
|
|
}
|
2009-02-11 17:58:23 +08:00
|
|
|
|
2014-02-12 22:08:11 +08:00
|
|
|
if (object->gc.refcount == 0) {
|
2014-02-10 14:04:30 +08:00
|
|
|
//??? GC_REMOVE_ZOBJ_FROM_BUFFER(obj);
|
2014-02-12 22:08:11 +08:00
|
|
|
if (object->handlers->free_obj) {
|
2006-05-31 20:59:31 +08:00
|
|
|
zend_try {
|
2014-02-12 22:08:11 +08:00
|
|
|
object->handlers->free_obj(object TSRMLS_CC);
|
2006-05-31 20:59:31 +08:00
|
|
|
} zend_catch {
|
|
|
|
failure = 1;
|
|
|
|
} zend_end_try();
|
2004-03-11 21:40:19 +08:00
|
|
|
}
|
2014-02-12 22:08:11 +08:00
|
|
|
ZEND_OBJECTS_STORE_ADD_TO_FREE_LIST(object->handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (failure) {
|
|
|
|
zend_bailout();
|
2004-02-26 05:39:59 +08:00
|
|
|
}
|
2014-02-12 22:08:11 +08:00
|
|
|
} else {
|
|
|
|
object->gc.refcount--;
|
2004-02-25 16:16:54 +08:00
|
|
|
}
|
2008-02-20 01:05:41 +08:00
|
|
|
}
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
2008-08-25 00:49:19 +08:00
|
|
|
/* }}} */
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
//???
|
|
|
|
#if 0
|
|
|
|
ZEND_API zend_object *zend_objects_store_clone_obj(zval *zobject TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object *obj, *new_object;
|
|
|
|
//??? struct _store_object *obj;
|
|
|
|
//??? zend_object_handle handle = Z_OBJ_HANDLE_P(zobject);
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
//??? obj = &EG(objects_store).object_buckets[handle].bucket.obj;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
//??? if (obj->clone == NULL) {
|
|
|
|
//??? zend_error(E_CORE_ERROR, "Trying to clone uncloneable object of class %s", Z_OBJCE_P(zobject)->name);
|
|
|
|
//??? }
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
obj = Z_OBJ_P(zobject);
|
|
|
|
new_object = obj->handlers->clone_obj(obj TSRMLS_CC);
|
2009-02-11 17:58:23 +08:00
|
|
|
obj = &EG(objects_store).object_buckets[handle].bucket.obj;
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2004-02-04 17:56:20 +08:00
|
|
|
retval.handle = zend_objects_store_put(new_object, obj->dtor, obj->free_storage, obj->clone TSRMLS_CC);
|
2002-05-31 20:09:19 +08:00
|
|
|
retval.handlers = Z_OBJ_HT_P(zobject);
|
2008-08-25 00:49:19 +08:00
|
|
|
EG(objects_store).object_buckets[handle].bucket.obj.handlers = retval.handlers;
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
return retval;
|
|
|
|
}
|
2014-02-10 14:04:30 +08:00
|
|
|
#endif
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2004-05-17 19:27:16 +08:00
|
|
|
/* zend_object_store_set_object:
|
|
|
|
* It is ONLY valid to call this function from within the constructor of an
|
|
|
|
* overloaded object. Its purpose is to set the object pointer for the object
|
|
|
|
* when you can't possibly know its value until you have parsed the arguments
|
|
|
|
* from the constructor function. You MUST NOT use this function for any other
|
|
|
|
* weird games, or call it at any other time after the object is constructed.
|
|
|
|
* */
|
2014-02-12 22:08:11 +08:00
|
|
|
ZEND_API void zend_object_store_set_object(zval *zobject, zend_object *object TSRMLS_DC)
|
2004-05-17 19:27:16 +08:00
|
|
|
{
|
2014-02-12 22:08:11 +08:00
|
|
|
EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(zobject)] = object;
|
2004-05-17 19:27:16 +08:00
|
|
|
}
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2004-07-26 01:25:44 +08:00
|
|
|
/* Called when the ctor was terminated by an exception */
|
|
|
|
ZEND_API void zend_object_store_ctor_failed(zval *zobject TSRMLS_DC)
|
|
|
|
{
|
2014-02-12 22:08:11 +08:00
|
|
|
zend_object *obj = Z_OBJ_P(zobject);
|
|
|
|
|
|
|
|
obj->gc.u.v.flags |= IS_OBJ_DESTRUCTOR_CALLED;
|
2004-07-26 01:25:44 +08:00
|
|
|
}
|
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
/* Proxy objects workings */
|
|
|
|
typedef struct _zend_proxy_object {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_object std;
|
|
|
|
zval object;
|
|
|
|
zval property;
|
2002-05-31 20:09:19 +08:00
|
|
|
} zend_proxy_object;
|
|
|
|
|
|
|
|
static zend_object_handlers zend_object_proxy_handlers;
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_objects_proxy_destroy(zend_object *object TSRMLS_DC)
|
2010-10-04 15:15:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-02-04 17:56:20 +08:00
|
|
|
ZEND_API void zend_objects_proxy_free_storage(zend_proxy_object *object TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
|
|
|
zval_ptr_dtor(&object->object);
|
|
|
|
zval_ptr_dtor(&object->property);
|
|
|
|
efree(object);
|
|
|
|
}
|
|
|
|
|
2002-08-09 01:53:32 +08:00
|
|
|
ZEND_API void zend_objects_proxy_clone(zend_proxy_object *object, zend_proxy_object **object_clone TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
|
|
|
*object_clone = emalloc(sizeof(zend_proxy_object));
|
|
|
|
(*object_clone)->object = object->object;
|
|
|
|
(*object_clone)->property = object->property;
|
2014-02-10 14:04:30 +08:00
|
|
|
Z_ADDREF_P(&(*object_clone)->property);
|
|
|
|
Z_ADDREF_P(&(*object_clone)->object);
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zend_object *zend_object_create_proxy(zval *object, zval *member TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_proxy_object *obj = emalloc(sizeof(zend_proxy_object));
|
|
|
|
|
|
|
|
obj->std.gc.refcount = 1;
|
|
|
|
obj->std.gc.u.v.type = IS_OBJECT;
|
|
|
|
obj->std.gc.u.v.buffer = 0;
|
|
|
|
obj->std.ce = NULL;
|
|
|
|
obj->std.properties = NULL;
|
|
|
|
obj->std.guards = NULL;
|
|
|
|
obj->std.handlers = &zend_object_proxy_handlers;
|
|
|
|
|
|
|
|
ZVAL_COPY(&obj->object, object);
|
|
|
|
ZVAL_DUP(&obj->property, member);
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
return (zend_object*)obj;
|
2002-05-31 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_object_proxy_set(zval *property, zval *value TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_proxy_object *probj = (zend_proxy_object*)Z_OBJ_P(property);
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
if (Z_OBJ_HT(probj->object) && Z_OBJ_HT(probj->object)->write_property) {
|
|
|
|
Z_OBJ_HT(probj->object)->write_property(&probj->object, &probj->property, value, 0 TSRMLS_CC);
|
2002-05-31 20:09:19 +08:00
|
|
|
} else {
|
|
|
|
zend_error(E_WARNING, "Cannot write property of object - no write handler defined");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-09 01:53:32 +08:00
|
|
|
ZEND_API zval* zend_object_proxy_get(zval *property TSRMLS_DC)
|
2002-05-31 20:09:19 +08:00
|
|
|
{
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_proxy_object *probj = (zend_proxy_object*)Z_OBJ_P(property);
|
2002-05-31 20:09:19 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
if (Z_OBJ_HT(probj->object) && Z_OBJ_HT(probj->object)->read_property) {
|
|
|
|
return Z_OBJ_HT(probj->object)->read_property(&probj->object, &probj->property, BP_VAR_R, 0 TSRMLS_CC);
|
2002-05-31 20:09:19 +08:00
|
|
|
} else {
|
|
|
|
zend_error(E_WARNING, "Cannot read property of object - no read handler defined");
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-21 08:35:15 +08:00
|
|
|
ZEND_API zend_object_handlers *zend_get_std_object_handlers(void)
|
2003-01-18 05:16:12 +08:00
|
|
|
{
|
|
|
|
return &std_object_handlers;
|
|
|
|
}
|
|
|
|
|
2002-05-31 20:09:19 +08:00
|
|
|
static zend_object_handlers zend_object_proxy_handlers = {
|
|
|
|
ZEND_OBJECTS_STORE_HANDLERS,
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2003-07-07 17:08:33 +08:00
|
|
|
NULL, /* read_property */
|
|
|
|
NULL, /* write_property */
|
2003-07-07 18:53:27 +08:00
|
|
|
NULL, /* read dimension */
|
2003-07-07 17:08:33 +08:00
|
|
|
NULL, /* write_dimension */
|
2003-10-05 15:52:28 +08:00
|
|
|
NULL, /* get_property_ptr_ptr */
|
2003-07-07 17:08:33 +08:00
|
|
|
zend_object_proxy_get, /* get */
|
|
|
|
zend_object_proxy_set, /* set */
|
|
|
|
NULL, /* has_property */
|
|
|
|
NULL, /* unset_property */
|
2003-11-11 00:14:44 +08:00
|
|
|
NULL, /* has_dimension */
|
|
|
|
NULL, /* unset_dimension */
|
2003-07-07 17:08:33 +08:00
|
|
|
NULL, /* get_properties */
|
|
|
|
NULL, /* get_method */
|
|
|
|
NULL, /* call_method */
|
|
|
|
NULL, /* get_constructor */
|
|
|
|
NULL, /* get_class_entry */
|
|
|
|
NULL, /* get_class_name */
|
2003-08-13 15:17:16 +08:00
|
|
|
NULL, /* compare_objects */
|
|
|
|
NULL, /* cast_object */
|
2004-05-04 23:03:28 +08:00
|
|
|
NULL, /* count_elements */
|
2002-05-31 20:09:19 +08:00
|
|
|
};
|
2003-02-01 09:49:15 +08:00
|
|
|
|
2003-07-07 17:08:33 +08:00
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|