return FAILURE;
}
+#if PHP_VERSION_ID < 50399
if (!OG(ob_lock)) {
php_end_ob_buffers(0 TSRMLS_CC);
}
+#else
+ if (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_LOCKED) {
+ php_output_end_all(TSRMLS_C);
+ }
+#endif
if ((SUCCESS == sapi_send_headers(TSRMLS_C)) && body) {
PHPWRITE(body, strlen(body));
}
o->stream = s;
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_deflatestream_object, o);
ov.handlers = &http_deflatestream_object_handlers;
o->stream = s;
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_inflatestream_object, o);
ov.handlers = &http_inflatestream_object_handlers;
}
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ zend_object_std_init(&o->zo, ce TSRMLS_CC);
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_message_object, o);
ov.handlers = &http_message_object_handlers;
zval *headers;
getObjectEx(http_message_object, obj, object);
http_message *msg = obj->message;
+#if PHP_VERSION_ID < 50399
HashTable *props = OBJ_PROP(obj);
+#else
+ HashTable *props = zend_std_get_properties(object TSRMLS_CC);
+#endif
zval array, *parent;
INIT_ZARR(array, props);
*ptr = o;
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_querystring_object, o);
ov.handlers = &http_querystring_object_handlers;
*ptr = o;
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_request_object, o);
ov.handlers = &http_request_object_handlers;
*ptr = o;
}
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_requestdatashare_object, o);
ov.handlers = &http_requestdatashare_object_handlers;
static zval *_http_requestdatashare_object_read_prop(zval *object, zval *member, int type ZEND_LITERAL_KEY_DC TSRMLS_DC)
{
- if (type == BP_VAR_W && zend_hash_exists(&THIS_CE->default_properties, Z_STRVAL_P(member), Z_STRLEN_P(member)+1)) {
+ if (type == BP_VAR_W &&
+#if PHP_VERSION_ID < 50399
+ zend_hash_exists(&THIS_CE->default_properties, Z_STRVAL_P(member), Z_STRLEN_P(member)+1)
+#else
+ zend_get_property_info(THIS_CE, member, 1 TSRMLS_CC)
+#endif
+ ) {
zend_error(E_ERROR, "Cannot access HttpRequestDataShare default properties by reference or array key/index");
return NULL;
}
static void _http_requestdatashare_object_write_prop(zval *object, zval *member, zval *value ZEND_LITERAL_KEY_DC TSRMLS_DC)
{
+#if PHP_VERSION_ID < 50399
if (zend_hash_exists(&THIS_CE->default_properties, Z_STRVAL_P(member), Z_STRLEN_P(member)+1)) {
+#else
+ if (zend_get_property_info(THIS_CE, member, 1 TSRMLS_CC)) {
+#endif
int status;
getObjectEx(http_requestdatashare_object, obj, object);
http_request_pool_init(&o->pool);
+#if PHP_VERSION_ID < 50399
ALLOC_HASHTABLE(OBJ_PROP(o));
zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
+#else
+ object_properties_init(&o->zo, ce);
+#endif
ov.handle = putObject(http_requestpool_object, o);
ov.handlers = &http_requestpool_object_handlers;
/* we really only need to flush when throttling is enabled,
because we push the data as fast as possible anyway if not */
if (HTTP_G->send.throttle_delay >= HTTP_DIFFSEC) {
+#if PHP_VERSION_ID < 50399
if (OG(ob_nesting_level)) {
php_end_ob_buffer(1, 1 TSRMLS_CC);
}
if (!OG(implicit_flush)) {
sapi_flush(TSRMLS_C);
}
+#else
+ int ob_level;
+
+ if ((php_output_handler_hook(PHP_OUTPUT_HANDLER_HOOK_GET_LEVEL, &ob_level TSRMLS_CC) == SUCCESS) && ob_level > 0) {
+ php_output_discard(TSRMLS_C);
+ }
+
+ if (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_IMPLICITFLUSH) {
+ sapi_flush(TSRMLS_C);
+ }
+#endif
http_sleep(HTTP_G->send.throttle_delay);
}
}
# define getObject(t, o) getObjectEx(t, o, getThis())
# define getObjectEx(t, o, v) t * o = ((t *) zend_object_store_get_object(v TSRMLS_CC))
# define putObject(t, o) zend_objects_store_put(o, (zend_objects_store_dtor_t) zend_objects_destroy_object, (zend_objects_free_object_storage_t) _ ##t## _free, NULL TSRMLS_CC);
-# ifndef WONKY
-# define freeObject(o) \
- if (OBJ_GUARDS(o)) { \
- zend_hash_destroy(OBJ_GUARDS(o)); \
- FREE_HASHTABLE(OBJ_GUARDS(o)); \
- } \
- if (OBJ_PROP(o)) { \
- zend_hash_destroy(OBJ_PROP(o)); \
- FREE_HASHTABLE(OBJ_PROP(o)); \
- } \
+# define freeObject(o) \
+ zend_object_std_dtor(&o->zo TSRMLS_CC); \
efree(o);
-# else
-# define freeObject(o) \
- if (OBJ_PROP(o)) { \
- zend_hash_destroy(OBJ_PROP(o)); \
- FREE_HASHTABLE(OBJ_PROP(o)); \
- } \
- efree(o);
-# endif
# define OBJ_PROP(o) (o)->zo.properties
# define OBJ_GUARDS(o) (o)->zo.guards