1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 15:38:49 +02:00

Add get_class_name handler so that the current var_dump implementation does not segfault.

Add a generic rpc_object_from_data() function for generating rpc objects from C code (as discussed with Harald).
This commit is contained in:
Wez Furlong
2003-02-09 21:37:41 +00:00
parent 47922a6996
commit 9ef5cc7ef9
2 changed files with 58 additions and 3 deletions
+2
View File
@@ -128,5 +128,7 @@ typedef struct _rpc_proxy {
} rpc_proxy;
ZEND_API rpc_register_layer(rpc_handler_entry *entry TSRMLS_DC);
ZEND_API zval* _rpc_object_from_data(zval *z, zend_class_entry *ce, void *data, rpc_class_hash *class_hash TSRMLS_DC);
#define rpc_object_from_data(z, layer, data, class_hash) _rpc_object_from_data((z), layer##_class_entry, (data), (class_hash) TSRMLS_CC)
#endif /* HANDLER_H */
+56 -3
View File
@@ -48,6 +48,7 @@ static HashTable* rpc_get_properties(zval * TSRMLS_DC);
static union _zend_function* rpc_get_method(zval *, char *, int TSRMLS_DC);
static union _zend_function* rpc_get_constructor(zval * TSRMLS_DC);
static zend_class_entry* rpc_get_class_entry(zval * TSRMLS_DC);
static int rpc_get_class_name(zval *object, char **class_name, zend_uint *class_name_len, int parent TSRMLS_DC);
static int rpc_compare(zval *, zval * TSRMLS_DC);
/**/
@@ -74,7 +75,7 @@ static zend_object_handlers rpc_handlers = {
NULL,
rpc_get_constructor,
rpc_get_class_entry,
NULL,
rpc_get_class_name,
rpc_compare
};
@@ -409,6 +410,19 @@ static zend_class_entry* rpc_get_class_entry(zval *object TSRMLS_DC)
return intern->ce;
}
static int rpc_get_class_name(zval *object, char **class_name, zend_uint *class_name_len, int parent TSRMLS_DC)
{
GET_INTERNAL(intern);
if (parent) {
return FAILURE;
} else {
*class_name = intern->ce->name;
*class_name_len = intern->ce->name_length;
return SUCCESS;
}
}
static int rpc_compare(zval *object1, zval *object2 TSRMLS_DC)
{
/* FIXME */
@@ -581,7 +595,7 @@ ZEND_API ZEND_FUNCTION(rpc_load)
retval = SUCCESS;
} else {
/* call the rpc ctor */
retval = RPC_HT(intern)->rpc_ctor(*(rpc_string *)(class_hash), &(intern->data), num_args, args);
retval = RPC_HT(intern)->rpc_ctor(class_hash->name, &(intern->data), num_args, args);
}
} else {
/* disable caching from now on */
@@ -788,7 +802,7 @@ ZEND_API zend_object_value rpc_objects_new(zend_class_entry *class_type TSRMLS_D
zov->handlers = &rpc_handlers;
/* set up the internal representation of our rpc instance */
intern = (rpc_internal *) pemalloc(sizeof(rpc_internal), TRUE);
intern = (rpc_internal *) pecalloc(1, sizeof(rpc_internal), TRUE);
intern->ce = class_type;
intern->data = NULL;
@@ -869,6 +883,45 @@ static void rpc_internal_set(rpc_internal *intern, char *property, zend_uint pro
}
}
ZEND_API zval* _rpc_object_from_data(zval *z, zend_class_entry *ce, void *data, rpc_class_hash *class_hash TSRMLS_DC)
{
rpc_internal *intern;
if (z == NULL) {
ALLOC_ZVAL(z);
}
Z_TYPE_P(z) = IS_OBJECT;
z->value.obj = rpc_objects_new(ce TSRMLS_CC);
if (GET_INTERNAL_EX(intern, z) != SUCCESS) {
/* TODO: exception */
return NULL;
}
intern->data = data;
if (class_hash == NULL) {
class_hash = pemalloc(sizeof(rpc_class_hash), TRUE);
if (class_hash == NULL) {
/* TODO: exception */
return NULL;
}
/* set up the cache */
zend_ts_hash_init(&(class_hash->methods), 0, NULL, rpc_string_dtor, TRUE);
zend_ts_hash_init(&(class_hash->properties), 0, NULL, rpc_string_dtor, TRUE);
class_hash->handlers = intern->handlers;
class_hash->singleton = FALSE;
class_hash->poolable = FALSE;
class_hash->data = NULL;
}
RPC_CLASS(intern) = class_hash;
return z;
}
/*
* Local variables: