X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_client_datashare.c;h=c339c2084bf4e4168b56ee55ba7a4ea6e82036a9;hp=69661c73ca366ed4f17d381226ee2d02e501e167;hb=8191c55421fb6ecc86185608a8b0510da1525e1e;hpb=bfa5d473bdfb59fd39f04c2b8fb77ea4a7e9421b diff --git a/php_http_client_datashare.c b/php_http_client_datashare.c index 69661c7..c339c20 100644 --- a/php_http_client_datashare.c +++ b/php_http_client_datashare.c @@ -226,6 +226,30 @@ void php_http_client_datashare_object_free(void *object TSRMLS_DC) efree(o); } +static zval *php_http_client_datashare_object_read_prop(zval *object, zval *member, int type PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC) +{ + zend_property_info *pi; + + if ((pi = zend_get_property_info(php_http_client_datashare_class_entry, member, 1 TSRMLS_CC))) { + if (type != BP_VAR_R) { + zval *zproxy; + php_property_proxy_t *proxy; + + proxy = php_property_proxy_init(object, pi->name, pi->name_length TSRMLS_CC); + + MAKE_STD_ZVAL(zproxy); +#ifdef Z_SET_REFCOUNT_P + Z_SET_REFCOUNT_P(zproxy, 0); +#else + zproxy->refcount = 0; +#endif + ZVAL_OBJVAL(zproxy, php_property_proxy_object_new_ex(php_property_proxy_get_class_entry(), proxy, NULL TSRMLS_CC), 0); + return zproxy; + } + } + return zend_get_std_object_handlers()->read_property(object, member, type PHP_HTTP_ZEND_LITERAL_CC TSRMLS_CC); +} + static void php_http_client_datashare_object_write_prop(zval *object, zval *member, zval *value PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC) { zend_property_info *pi; @@ -253,18 +277,6 @@ static void php_http_client_datashare_object_write_prop(zval *object, zval *memb zend_get_std_object_handlers()->write_property(object, member, value PHP_HTTP_ZEND_LITERAL_CC TSRMLS_CC); } -static zval **php_http_client_datashare_object_get_prop_ptr(zval *object, zval *member PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC) -{ - zend_property_info *pi; - - if ((pi = zend_get_property_info(php_http_client_datashare_class_entry, member, 1 TSRMLS_CC))) { - return &php_http_property_proxy_init(NULL, object, member, NULL TSRMLS_CC)->myself; - } - - return zend_get_std_object_handlers()->get_property_ptr_ptr(object, member PHP_HTTP_ZEND_LITERAL_CC TSRMLS_CC); -} - - PHP_METHOD(HttpClientDataShare, __destruct) { php_http_client_datashare_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC); @@ -334,8 +346,9 @@ PHP_MINIT_FUNCTION(http_client_datashare) php_http_client_datashare_class_entry->create_object = php_http_client_datashare_object_new; memcpy(&php_http_client_datashare_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers)); php_http_client_datashare_object_handlers.clone_obj = NULL; + php_http_client_datashare_object_handlers.read_property = php_http_client_datashare_object_read_prop; php_http_client_datashare_object_handlers.write_property = php_http_client_datashare_object_write_prop; - php_http_client_datashare_object_handlers.get_property_ptr_ptr = php_http_client_datashare_object_get_prop_ptr; + php_http_client_datashare_object_handlers.get_property_ptr_ptr = NULL; zend_class_implements(php_http_client_datashare_class_entry TSRMLS_CC, 1, spl_ce_Countable);