2 +--------------------------------------------------------------------+
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
13 #include "php_http_api.h"
14 #include "php_http_client.h"
16 #include "ext/spl/spl_observer.h"
19 * array of name => php_http_client_driver_t*
21 static HashTable php_http_client_drivers
;
23 static void php_http_client_driver_hash_dtor(zval
*pData
)
25 pefree(Z_PTR_P(pData
), 1);
28 ZEND_RESULT_CODE
php_http_client_driver_add(php_http_client_driver_t
*driver
)
30 return zend_hash_add_mem(&php_http_client_drivers
, driver
->driver_name
, (void *) driver
, sizeof(php_http_client_driver_t
))
34 php_http_client_driver_t
*php_http_client_driver_get(zend_string
*name
)
37 php_http_client_driver_t
*tmp
;
39 if (name
&& (tmp
= zend_hash_find_ptr(&php_http_client_drivers
, name
))) {
42 if ((ztmp
= zend_hash_get_current_data(&php_http_client_drivers
))) {
48 static int apply_driver_list(zval
*p
, void *arg
)
50 php_http_client_driver_t
*d
= Z_PTR_P(p
);
53 ZVAL_STR_COPY(&zname
, d
->driver_name
);
55 zend_hash_next_index_insert(arg
, &zname
);
56 return ZEND_HASH_APPLY_KEEP
;
59 void php_http_client_driver_list(HashTable
*ht
)
61 zend_hash_apply_with_argument(&php_http_client_drivers
, apply_driver_list
, ht
);
64 static zend_class_entry
*php_http_client_class_entry
;
65 zend_class_entry
*php_http_client_get_class_entry(void)
67 return php_http_client_class_entry
;
70 void php_http_client_options_set_subr(zval
*instance
, char *key
, size_t len
, zval
*opts
, int overwrite
)
72 if (overwrite
|| (opts
&& zend_hash_num_elements(Z_ARRVAL_P(opts
)))) {
73 zend_class_entry
*this_ce
= Z_OBJCE_P(instance
);
74 zval old_opts_tmp
, *old_opts
, new_opts
, *entry
= NULL
;
76 array_init(&new_opts
);
77 old_opts
= zend_read_property(this_ce
, instance
, ZEND_STRL("options"), 0, &old_opts_tmp
);
78 if (Z_TYPE_P(old_opts
) == IS_ARRAY
) {
79 array_copy(Z_ARRVAL_P(old_opts
), Z_ARRVAL(new_opts
));
83 if (opts
&& zend_hash_num_elements(Z_ARRVAL_P(opts
))) {
85 zend_symtable_str_update(Z_ARRVAL(new_opts
), key
, len
, opts
);
87 zend_symtable_str_del(Z_ARRVAL(new_opts
), key
, len
);
89 } else if (opts
&& zend_hash_num_elements(Z_ARRVAL_P(opts
))) {
90 if ((entry
= zend_symtable_str_find(Z_ARRVAL(new_opts
), key
, len
))) {
91 array_join(Z_ARRVAL_P(opts
), Z_ARRVAL_P(entry
), 0, 0);
94 zend_symtable_str_update(Z_ARRVAL(new_opts
), key
, len
, opts
);
98 zend_update_property(this_ce
, instance
, ZEND_STRL("options"), &new_opts
);
99 zval_ptr_dtor(&new_opts
);
103 void php_http_client_options_set(zval
*instance
, zval
*opts
)
105 php_http_arrkey_t key
;
107 zend_class_entry
*this_ce
= Z_OBJCE_P(instance
);
108 zend_bool is_client
= instanceof_function(this_ce
, php_http_client_class_entry
);
110 array_init(&new_opts
);
112 if (!opts
|| !zend_hash_num_elements(Z_ARRVAL_P(opts
))) {
113 zend_update_property(this_ce
, instance
, ZEND_STRL("options"), &new_opts
);
114 zval_ptr_dtor(&new_opts
);
116 zval old_opts_tmp
, *old_opts
, add_opts
, *opt
;
118 array_init(&add_opts
);
119 /* some options need extra attention -- thus cannot use array_merge() directly */
120 ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(opts
), key
.h
, key
.key
, opt
)
123 if (Z_TYPE_P(opt
) == IS_ARRAY
&& (zend_string_equals_literal(key
.key
, "ssl") || zend_string_equals_literal(key
.key
, "cookies"))) {
124 php_http_client_options_set_subr(instance
, key
.key
->val
, key
.key
->len
, opt
, 0);
125 } else if (is_client
&& (zend_string_equals_literal(key
.key
, "recordHistory") || zend_string_equals_literal(key
.key
, "responseMessageClass"))) {
126 zend_update_property(this_ce
, instance
, key
.key
->val
, key
.key
->len
, opt
);
127 } else if (Z_TYPE_P(opt
) == IS_NULL
) {
128 old_opts
= zend_read_property(this_ce
, instance
, ZEND_STRL("options"), 0, &old_opts_tmp
);
129 if (Z_TYPE_P(old_opts
) == IS_ARRAY
) {
130 zend_symtable_del(Z_ARRVAL_P(old_opts
), key
.key
);
134 add_assoc_zval_ex(&add_opts
, key
.key
->val
, key
.key
->len
, opt
);
138 ZEND_HASH_FOREACH_END();
140 old_opts
= zend_read_property(this_ce
, instance
, ZEND_STRL("options"), 0, &old_opts_tmp
);
141 if (Z_TYPE_P(old_opts
) == IS_ARRAY
) {
142 array_copy(Z_ARRVAL_P(old_opts
), Z_ARRVAL(new_opts
));
144 array_join(Z_ARRVAL(add_opts
), Z_ARRVAL(new_opts
), 0, 0);
145 zend_update_property(this_ce
, instance
, ZEND_STRL("options"), &new_opts
);
146 zval_ptr_dtor(&new_opts
);
147 zval_ptr_dtor(&add_opts
);
151 void php_http_client_options_get_subr(zval
*instance
, char *key
, size_t len
, zval
*return_value
)
153 zend_class_entry
*this_ce
= Z_OBJCE_P(instance
);
154 zval
*options
, opts_tmp
, *opts
= zend_read_property(this_ce
, instance
, ZEND_STRL("options"), 0, &opts_tmp
);
156 if ((Z_TYPE_P(opts
) == IS_ARRAY
) && (options
= zend_symtable_str_find(Z_ARRVAL_P(opts
), key
, len
))) {
157 RETVAL_ZVAL(options
, 1, 0);
161 static void queue_dtor(void *enqueued
)
163 php_http_client_enqueue_t
*e
= enqueued
;
170 php_http_client_t
*php_http_client_init(php_http_client_t
*h
, php_http_client_ops_t
*ops
, php_resource_factory_t
*rf
, void *init_arg
)
172 php_http_client_t
*free_h
= NULL
;
175 free_h
= h
= emalloc(sizeof(*h
));
177 memset(h
, 0, sizeof(*h
));
182 } else if (ops
->rsrc
) {
183 h
->rf
= php_resource_factory_init(NULL
, h
->ops
->rsrc
, h
, NULL
);
185 zend_llist_init(&h
->requests
, sizeof(php_http_client_enqueue_t
), queue_dtor
, 0);
186 zend_llist_init(&h
->responses
, sizeof(void *), NULL
, 0);
189 if (!(h
= h
->ops
->init(h
, init_arg
))) {
190 php_error_docref(NULL
, E_WARNING
, "Could not initialize client");
198 php_http_client_t
*php_http_client_copy(php_http_client_t
*from
, php_http_client_t
*to
)
200 if (from
->ops
->copy
) {
201 return from
->ops
->copy(from
, to
);
207 void php_http_client_dtor(php_http_client_t
*h
)
209 php_http_client_reset(h
);
214 h
->callback
.debug
.func
= NULL
;
215 h
->callback
.debug
.arg
= NULL
;
217 php_resource_factory_free(&h
->rf
);
220 void php_http_client_free(php_http_client_t
**h
) {
222 php_http_client_dtor(*h
);
228 ZEND_RESULT_CODE
php_http_client_enqueue(php_http_client_t
*h
, php_http_client_enqueue_t
*enqueue
)
230 if (h
->ops
->enqueue
) {
231 if (php_http_client_enqueued(h
, enqueue
->request
, NULL
)) {
232 php_error_docref(NULL
, E_WARNING
, "Failed to enqueue request; request already in queue");
235 return h
->ops
->enqueue(h
, enqueue
);
241 ZEND_RESULT_CODE
php_http_client_dequeue(php_http_client_t
*h
, php_http_message_t
*request
)
243 if (h
->ops
->dequeue
) {
244 php_http_client_enqueue_t
*enqueue
= php_http_client_enqueued(h
, request
, NULL
);
247 php_error_docref(NULL
, E_WARNING
, "Failed to dequeue request; request not in queue");
250 return h
->ops
->dequeue(h
, enqueue
);
255 php_http_client_enqueue_t
*php_http_client_enqueued(php_http_client_t
*h
, void *compare_arg
, php_http_client_enqueue_cmp_func_t compare_func
)
257 zend_llist_element
*el
= NULL
;
260 for (el
= h
->requests
.head
; el
; el
= el
->next
) {
261 if (compare_func((php_http_client_enqueue_t
*) el
->data
, compare_arg
)) {
266 for (el
= h
->requests
.head
; el
; el
= el
->next
) {
267 if (((php_http_client_enqueue_t
*) el
->data
)->request
== compare_arg
) {
272 return el
? (php_http_client_enqueue_t
*) el
->data
: NULL
;
275 ZEND_RESULT_CODE
php_http_client_wait(php_http_client_t
*h
, struct timeval
*custom_timeout
)
278 return h
->ops
->wait(h
, custom_timeout
);
284 int php_http_client_once(php_http_client_t
*h
)
287 return h
->ops
->once(h
);
293 ZEND_RESULT_CODE
php_http_client_exec(php_http_client_t
*h
)
296 return h
->ops
->exec(h
);
302 void php_http_client_reset(php_http_client_t
*h
)
308 zend_llist_clean(&h
->requests
);
309 zend_llist_clean(&h
->responses
);
312 ZEND_RESULT_CODE
php_http_client_setopt(php_http_client_t
*h
, php_http_client_setopt_opt_t opt
, void *arg
)
314 if (h
->ops
->setopt
) {
315 return h
->ops
->setopt(h
, opt
, arg
);
321 ZEND_RESULT_CODE
php_http_client_getopt(php_http_client_t
*h
, php_http_client_getopt_opt_t opt
, void *arg
, void *res_ptr
)
323 if (h
->ops
->getopt
) {
324 return h
->ops
->getopt(h
, opt
, arg
, res_ptr
);
329 static zend_object_handlers php_http_client_object_handlers
;
331 void php_http_client_object_free(zend_object
*object
)
333 php_http_client_object_t
*o
= PHP_HTTP_OBJ(object
, NULL
);
337 php_http_client_free(&o
->client
);
338 if (o
->debug
.fci
.size
> 0) {
339 zend_fcall_info_args_clear(&o
->debug
.fci
, 1);
340 zval_ptr_dtor(&o
->debug
.fci
.function_name
);
341 o
->debug
.fci
.size
= 0;
343 php_http_object_method_dtor(&o
->notify
);
344 php_http_object_method_free(&o
->update
);
345 zend_object_std_dtor(object
);
348 php_http_client_object_t
*php_http_client_object_new_ex(zend_class_entry
*ce
, php_http_client_t
*client
)
350 php_http_client_object_t
*o
;
352 o
= ecalloc(1, sizeof(*o
) + zend_object_properties_size(ce
));
353 zend_object_std_init(&o
->zo
, ce
);
354 object_properties_init(&o
->zo
, ce
);
358 o
->zo
.handlers
= &php_http_client_object_handlers
;
363 zend_object
*php_http_client_object_new(zend_class_entry
*ce
)
365 return &php_http_client_object_new_ex(ce
, NULL
)->zo
;
368 static HashTable
*php_http_client_object_get_gc(zval
*object
, zval
**table
, int *n
)
370 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, object
);
371 zend_llist_element
*el
= NULL
;
372 HashTable
*props
= Z_OBJPROP_P(object
);
373 uint32_t count
= zend_hash_num_elements(props
) + zend_llist_count(&obj
->client
->responses
) + zend_llist_count(&obj
->client
->requests
) + 2;
377 *table
= obj
->gc
= erealloc(obj
->gc
, sizeof(zval
) * count
);
379 #if PHP_HTTP_HAVE_LIBCURL
380 if (obj
->client
->ops
== php_http_client_curl_get_ops()) {
381 php_http_client_curl_t
*curl
= obj
->client
->ctx
;
383 if (curl
->ev_ops
== php_http_client_curl_user_ops_get()) {
384 php_http_client_curl_user_context_t
*ctx
= curl
->ev_ctx
;
386 ZVAL_COPY_VALUE(&obj
->gc
[(*n
)++], &ctx
->user
);
391 if (obj
->debug
.fci
.size
> 0) {
392 ZVAL_COPY_VALUE(&obj
->gc
[(*n
)++], &obj
->debug
.fci
.function_name
);
395 for (el
= obj
->client
->responses
.head
; el
; el
= el
->next
) {
396 php_http_message_object_t
*response_obj
= *(php_http_message_object_t
**) el
->data
;
397 ZVAL_OBJ(&obj
->gc
[(*n
)++], &response_obj
->zo
);
400 for (el
= obj
->client
->requests
.head
; el
; el
= el
->next
) {
401 php_http_client_enqueue_t
*q
= (php_http_client_enqueue_t
*) el
->data
;
402 php_http_message_object_t
*request_obj
= q
->opaque
; /* FIXME */
403 ZVAL_OBJ(&obj
->gc
[(*n
)++], &request_obj
->zo
);
406 ZEND_HASH_FOREACH_VAL(props
, val
)
408 ZVAL_COPY_VALUE(&obj
->gc
[(*n
)++], val
);
410 ZEND_HASH_FOREACH_END();
415 static void handle_history(zval
*zclient
, php_http_message_t
*request
, php_http_message_t
*response
)
417 zval new_hist
, old_hist_tmp
, *old_hist
= zend_read_property(php_http_client_class_entry
, zclient
, ZEND_STRL("history"), 0, &old_hist_tmp
);
418 php_http_message_t
*req_copy
= php_http_message_copy(request
, NULL
);
419 php_http_message_t
*res_copy
= php_http_message_copy(response
, NULL
);
420 php_http_message_t
*zipped
= php_http_message_zip(res_copy
, req_copy
);
421 php_http_message_object_t
*obj
= php_http_message_object_new_ex(php_http_message_get_class_entry(), zipped
);
423 ZVAL_OBJ(&new_hist
, &obj
->zo
);
425 if (Z_TYPE_P(old_hist
) == IS_OBJECT
) {
426 php_http_message_object_prepend(&new_hist
, old_hist
, 1);
429 zend_update_property(php_http_client_class_entry
, zclient
, ZEND_STRL("history"), &new_hist
);
430 zval_ptr_dtor(&new_hist
);
433 static ZEND_RESULT_CODE
handle_response(void *arg
, php_http_client_t
*client
, php_http_client_enqueue_t
*e
, php_http_message_t
**response
)
435 zend_bool dequeue
= 0;
437 php_http_message_t
*msg
;
438 php_http_client_progress_state_t
*progress
;
440 ZVAL_OBJ(&zclient
, &((php_http_client_object_t
*) arg
)->zo
);
442 if ((msg
= *response
)) {
443 php_http_message_object_t
*msg_obj
;
444 zval info
, zresponse
, zrequest
, rec_hist_tmp
;
447 /* ensure the message is of type response (could be uninitialized in case of early error, like DNS) */
448 php_http_message_set_type(msg
, PHP_HTTP_RESPONSE
);
450 if (zend_is_true(zend_read_property(php_http_client_class_entry
, &zclient
, ZEND_STRL("recordHistory"), 0, &rec_hist_tmp
))) {
451 handle_history(&zclient
, e
->request
, *response
);
454 /* hard detach, redirects etc. are in the history */
455 php_http_message_free(&msg
->parent
);
458 msg_obj
= php_http_message_object_new_ex(php_http_get_client_response_class_entry(), msg
);
459 ZVAL_OBJECT(&zresponse
, &msg_obj
->zo
, 1);
460 ZVAL_OBJECT(&zrequest
, &((php_http_message_object_t
*) e
->opaque
)->zo
, 1);
462 php_http_message_object_prepend(&zresponse
, &zrequest
, 1);
465 info_ht
= HASH_OF(&info
);
466 php_http_client_getopt(client
, PHP_HTTP_CLIENT_OPT_TRANSFER_INFO
, e
->request
, &info_ht
);
467 zend_update_property(php_http_get_client_response_class_entry(), &zresponse
, ZEND_STRL("transferInfo"), &info
);
468 zval_ptr_dtor(&info
);
470 zend_llist_add_element(&client
->responses
, &msg_obj
);
472 if (e
->closure
.fci
.size
) {
474 zend_error_handling zeh
;
477 zend_fcall_info_argn(&e
->closure
.fci
, 1, &zresponse
);
478 zend_replace_error_handling(EH_NORMAL
, NULL
, &zeh
);
479 ++client
->callback
.depth
;
480 zend_fcall_info_call(&e
->closure
.fci
, &e
->closure
.fcc
, &retval
, NULL
);
481 --client
->callback
.depth
;
482 zend_restore_error_handling(&zeh
);
483 zend_fcall_info_argn(&e
->closure
.fci
, 0);
485 if (Z_TYPE(retval
) == IS_TRUE
) {
488 zval_ptr_dtor(&retval
);
491 zval_ptr_dtor(&zresponse
);
492 zval_ptr_dtor(&zrequest
);
495 if (SUCCESS
== php_http_client_getopt(client
, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO
, e
->request
, &progress
)) {
496 progress
->info
= "finished";
497 progress
->finished
= 1;
498 client
->callback
.progress
.func(client
->callback
.progress
.arg
, client
, e
, progress
);
502 php_http_client_dequeue(client
, e
->request
);
508 static void handle_progress(void *arg
, php_http_client_t
*client
, php_http_client_enqueue_t
*e
, php_http_client_progress_state_t
*progress
)
510 zval zclient
, args
[2];
511 php_http_client_object_t
*client_obj
= arg
;
512 zend_error_handling zeh
;
514 ZVAL_OBJECT(&zclient
, &client_obj
->zo
, 1);
515 ZVAL_OBJECT(&args
[0], &((php_http_message_object_t
*) e
->opaque
)->zo
, 1);
516 object_init(&args
[1]);
517 add_property_bool(&args
[1], "started", progress
->started
);
518 add_property_bool(&args
[1], "finished", progress
->finished
);
519 add_property_string(&args
[1], "info", STR_PTR(progress
->info
));
520 add_property_double(&args
[1], "dltotal", progress
->dl
.total
);
521 add_property_double(&args
[1], "dlnow", progress
->dl
.now
);
522 add_property_double(&args
[1], "ultotal", progress
->ul
.total
);
523 add_property_double(&args
[1], "ulnow", progress
->ul
.now
);
525 zend_replace_error_handling(EH_NORMAL
, NULL
, &zeh
);
526 ++client
->callback
.depth
;
527 php_http_object_method_call(&client_obj
->notify
, &zclient
, NULL
, 2, args
);
528 --client
->callback
.depth
;
529 zend_restore_error_handling(&zeh
);
531 zval_ptr_dtor(&zclient
);
532 zval_ptr_dtor(&args
[0]);
533 zval_ptr_dtor(&args
[1]);
536 static void handle_debug(void *arg
, php_http_client_t
*client
, php_http_client_enqueue_t
*e
, unsigned type
, const char *data
, size_t size
)
538 zval ztype
, zdata
, zreq
, zclient
;
539 php_http_client_object_t
*client_obj
= arg
;
540 zend_error_handling zeh
;
542 ZVAL_OBJECT(&zclient
, &client_obj
->zo
, 1);
543 ZVAL_OBJECT(&zreq
, &((php_http_message_object_t
*) e
->opaque
)->zo
, 1);
544 ZVAL_LONG(&ztype
, type
);
545 ZVAL_STRINGL(&zdata
, data
, size
);
547 zend_replace_error_handling(EH_NORMAL
, NULL
, &zeh
);
548 if (SUCCESS
== zend_fcall_info_argn(&client_obj
->debug
.fci
, 4, &zclient
, &zreq
, &ztype
, &zdata
)) {
549 ++client
->callback
.depth
;
550 zend_fcall_info_call(&client_obj
->debug
.fci
, &client_obj
->debug
.fcc
, NULL
, NULL
);
551 --client
->callback
.depth
;
552 zend_fcall_info_args_clear(&client_obj
->debug
.fci
, 0);
554 zend_restore_error_handling(&zeh
);
556 zval_ptr_dtor(&zclient
);
557 zval_ptr_dtor(&zreq
);
558 zval_ptr_dtor(&ztype
);
559 zval_ptr_dtor(&zdata
);
562 static void response_dtor(void *data
)
564 php_http_message_object_t
*msg_obj
= *(php_http_message_object_t
**) data
;
566 zend_object_release(&msg_obj
->zo
);
569 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_construct
, 0, 0, 0)
570 ZEND_ARG_INFO(0, driver
)
571 ZEND_ARG_INFO(0, persistent_handle_id
)
573 static PHP_METHOD(HttpClient
, __construct
)
575 zend_string
*driver_name
= NULL
, *persistent_handle_name
= NULL
;
576 php_http_client_driver_t
*driver
;
577 php_resource_factory_t
*rf
= NULL
;
578 php_http_client_object_t
*obj
;
581 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|S!S!", &driver_name
, &persistent_handle_name
), invalid_arg
, return);
583 if (!zend_hash_num_elements(&php_http_client_drivers
)) {
584 php_http_throw(unexpected_val
, "No http\\Client drivers available", NULL
);
587 if (!(driver
= php_http_client_driver_get(driver_name
))) {
588 php_http_throw(unexpected_val
, "Failed to locate \"%s\" client request handler", driver_name
? driver_name
->val
: "default");
592 object_init_ex(&os
, spl_ce_SplObjectStorage
);
593 zend_update_property(php_http_client_class_entry
, getThis(), ZEND_STRL("observers"), &os
);
596 if (persistent_handle_name
) {
597 php_persistent_handle_factory_t
*pf
;
599 if ((pf
= php_persistent_handle_concede(NULL
, driver
->client_name
, persistent_handle_name
, NULL
, NULL
))) {
600 rf
= php_persistent_handle_resource_factory_init(NULL
, pf
);
604 obj
= PHP_HTTP_OBJ(NULL
, getThis());
606 php_http_expect(obj
->client
= php_http_client_init(NULL
, driver
->client_ops
, rf
, NULL
), runtime
, return);
608 php_http_object_method_init(&obj
->notify
, getThis(), ZEND_STRL("notify"));
610 obj
->client
->callback
.response
.func
= handle_response
;
611 obj
->client
->callback
.response
.arg
= obj
;
612 obj
->client
->callback
.progress
.func
= handle_progress
;
613 obj
->client
->callback
.progress
.arg
= obj
;
615 obj
->client
->responses
.dtor
= response_dtor
;
618 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_reset
, 0, 0, 0)
620 static PHP_METHOD(HttpClient
, reset
)
622 php_http_client_object_t
*obj
;
623 php_http_expect(SUCCESS
== zend_parse_parameters_none(), invalid_arg
, return);
625 obj
= PHP_HTTP_OBJ(NULL
, getThis());
628 php_http_client_reset(obj
->client
);
630 RETVAL_ZVAL(getThis(), 1, 0);
633 static HashTable
*combined_options(zval
*client
, zval
*request
)
636 unsigned num_options
= 0;
637 zval z_roptions
, z_options_tmp
, *z_coptions
= zend_read_property(php_http_client_class_entry
, client
, ZEND_STRL("options"), 0, &z_options_tmp
);
639 if (Z_TYPE_P(z_coptions
) == IS_ARRAY
) {
640 num_options
= zend_hash_num_elements(Z_ARRVAL_P(z_coptions
));
642 ZVAL_UNDEF(&z_roptions
);
643 zend_call_method_with_0_params(request
, NULL
, NULL
, "getOptions", &z_roptions
);
644 if (Z_TYPE(z_roptions
) == IS_ARRAY
) {
645 unsigned num
= zend_hash_num_elements(Z_ARRVAL(z_roptions
));
646 if (num
> num_options
) {
650 ALLOC_HASHTABLE(options
);
651 ZEND_INIT_SYMTABLE_EX(options
, num_options
, 0);
652 if (Z_TYPE_P(z_coptions
) == IS_ARRAY
) {
653 array_copy(Z_ARRVAL_P(z_coptions
), options
);
655 if (Z_TYPE(z_roptions
) == IS_ARRAY
) {
656 array_join(Z_ARRVAL(z_roptions
), options
, 0, 0);
658 zval_ptr_dtor(&z_roptions
);
663 static void msg_queue_dtor(php_http_client_enqueue_t
*e
)
665 php_http_message_object_t
*msg_obj
= e
->opaque
;
667 zend_object_release(&msg_obj
->zo
);
668 zend_hash_destroy(e
->options
);
669 FREE_HASHTABLE(e
->options
);
671 if (e
->closure
.fci
.size
) {
672 zval_ptr_dtor(&e
->closure
.fci
.function_name
);
673 if (e
->closure
.fci
.object
) {
674 zend_object_release(e
->closure
.fci
.object
);
679 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enqueue
, 0, 0, 1)
680 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 0)
681 ZEND_ARG_INFO(0, callable
)
683 static PHP_METHOD(HttpClient
, enqueue
)
686 zend_fcall_info fci
= empty_fcall_info
;
687 zend_fcall_info_cache fcc
= empty_fcall_info_cache
;
688 php_http_client_object_t
*obj
;
689 php_http_message_object_t
*msg_obj
;
690 php_http_client_enqueue_t q
;
692 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O|f", &request
, php_http_get_client_request_class_entry(), &fci
, &fcc
), invalid_arg
, return);
694 obj
= PHP_HTTP_OBJ(NULL
, getThis());
695 msg_obj
= PHP_HTTP_OBJ(NULL
, request
);
697 if (php_http_client_enqueued(obj
->client
, msg_obj
->message
, NULL
)) {
698 php_http_throw(bad_method_call
, "Failed to enqueue request; request already in queue", NULL
);
702 q
.request
= msg_obj
->message
;
703 q
.options
= combined_options(getThis(), request
);
704 q
.dtor
= msg_queue_dtor
;
710 Z_TRY_ADDREF(fci
.function_name
);
712 ++GC_REFCOUNT(fci
.object
);
718 php_http_expect(SUCCESS
== php_http_client_enqueue(obj
->client
, &q
), runtime
,
723 RETVAL_ZVAL(getThis(), 1, 0);
726 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_dequeue
, 0, 0, 1)
727 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 0)
729 static PHP_METHOD(HttpClient
, dequeue
)
732 php_http_client_object_t
*obj
;
733 php_http_message_object_t
*msg_obj
;
735 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request
, php_http_get_client_request_class_entry()), invalid_arg
, return);
737 obj
= PHP_HTTP_OBJ(NULL
, getThis());
738 msg_obj
= PHP_HTTP_OBJ(NULL
, request
);
740 if (!php_http_client_enqueued(obj
->client
, msg_obj
->message
, NULL
)) {
741 php_http_throw(bad_method_call
, "Failed to dequeue request; request not in queue", NULL
);
745 php_http_expect(SUCCESS
== php_http_client_dequeue(obj
->client
, msg_obj
->message
), runtime
, return);
747 RETVAL_ZVAL(getThis(), 1, 0);
750 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_requeue
, 0, 0, 1)
751 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 0)
752 ZEND_ARG_INFO(0, callable
)
754 static PHP_METHOD(HttpClient
, requeue
)
757 zend_fcall_info fci
= empty_fcall_info
;
758 zend_fcall_info_cache fcc
= empty_fcall_info_cache
;
759 php_http_client_object_t
*obj
;
760 php_http_message_object_t
*msg_obj
;
761 php_http_client_enqueue_t q
;
763 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O|f", &request
, php_http_get_client_request_class_entry(), &fci
, &fcc
), invalid_arg
, return);
765 obj
= PHP_HTTP_OBJ(NULL
, getThis());
766 msg_obj
= PHP_HTTP_OBJ(NULL
, request
);
768 if (php_http_client_enqueued(obj
->client
, msg_obj
->message
, NULL
)) {
769 php_http_expect(SUCCESS
== php_http_client_dequeue(obj
->client
, msg_obj
->message
), runtime
, return);
772 q
.request
= msg_obj
->message
;
773 q
.options
= combined_options(getThis(), request
);
774 q
.dtor
= msg_queue_dtor
;
780 Z_TRY_ADDREF(fci
.function_name
);
782 ++GC_REFCOUNT(fci
.object
);
788 php_http_expect(SUCCESS
== php_http_client_enqueue(obj
->client
, &q
), runtime
,
793 RETVAL_ZVAL(getThis(), 1, 0);
796 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_count
, 0, 0, 0)
798 static PHP_METHOD(HttpClient
, count
)
800 zend_long count_mode
= -1;
802 if (SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &count_mode
)) {
803 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, getThis());
805 RETVAL_LONG(zend_llist_count(&obj
->client
->requests
));
809 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getResponse
, 0, 0, 0)
810 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 1)
812 static PHP_METHOD(HttpClient
, getResponse
)
814 zval
*zrequest
= NULL
;
815 php_http_client_object_t
*obj
;
817 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|O", &zrequest
, php_http_get_client_request_class_entry()), invalid_arg
, return);
819 obj
= PHP_HTTP_OBJ(NULL
, getThis());
822 /* lookup the response with the request */
823 zend_llist_element
*el
= NULL
;
824 php_http_message_object_t
*req_obj
= PHP_HTTP_OBJ(NULL
, zrequest
);
826 for (el
= obj
->client
->responses
.head
; el
; el
= el
->next
) {
827 php_http_message_object_t
*response_obj
= *(php_http_message_object_t
**) el
->data
;
829 if (response_obj
->message
->parent
== req_obj
->message
) {
830 RETURN_OBJECT(&response_obj
->zo
, 1);
834 /* not found for the request! */
835 php_http_throw(unexpected_val
, "Could not find response for the request", NULL
);
839 /* pop off the last response */
840 if (obj
->client
->responses
.tail
) {
841 php_http_message_object_t
*response_obj
= *(php_http_message_object_t
**) obj
->client
->responses
.tail
->data
;
845 RETVAL_OBJECT(&response_obj
->zo
, 1);
846 zend_llist_remove_tail(&obj
->client
->responses
);
851 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getHistory
, 0, 0, 0)
853 static PHP_METHOD(HttpClient
, getHistory
)
855 zval zhistory_tmp
, *zhistory
;
857 php_http_expect(SUCCESS
== zend_parse_parameters_none(), invalid_arg
, return);
859 zhistory
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("history"), 0, &zhistory_tmp
);
860 RETVAL_ZVAL(zhistory
, 1, 0);
863 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_send
, 0, 0, 0)
865 static PHP_METHOD(HttpClient
, send
)
867 php_http_client_object_t
*obj
;
869 php_http_expect(SUCCESS
== zend_parse_parameters_none(), invalid_arg
, return);
871 obj
= PHP_HTTP_OBJ(NULL
, getThis());
873 php_http_expect(SUCCESS
== php_http_client_exec(obj
->client
), runtime
, return);
875 RETVAL_ZVAL(getThis(), 1, 0);
878 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_once
, 0, 0, 0)
880 static PHP_METHOD(HttpClient
, once
)
882 if (SUCCESS
== zend_parse_parameters_none()) {
883 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, getThis());
885 RETURN_BOOL(0 < php_http_client_once(obj
->client
));
889 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_wait
, 0, 0, 0)
890 ZEND_ARG_INFO(0, timeout
)
892 static PHP_METHOD(HttpClient
, wait
)
896 if (SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|d", &timeout
)) {
897 struct timeval timeout_val
;
898 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, getThis());
900 timeout_val
.tv_sec
= (time_t) timeout
;
901 timeout_val
.tv_usec
= PHP_HTTP_USEC(timeout
) % PHP_HTTP_MCROSEC
;
903 RETURN_BOOL(SUCCESS
== php_http_client_wait(obj
->client
, timeout
> 0 ? &timeout_val
: NULL
));
907 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_configure
, 0, 0, 1)
908 ZEND_ARG_ARRAY_INFO(0, settings
, 1)
910 static PHP_METHOD(HttpClient
, configure
)
912 HashTable
*settings
= NULL
;
913 php_http_client_object_t
*obj
;
915 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|H!", &settings
), invalid_arg
, return);
916 obj
= PHP_HTTP_OBJ(NULL
, getThis());
918 php_http_expect(SUCCESS
== php_http_client_setopt(obj
->client
, PHP_HTTP_CLIENT_OPT_CONFIGURATION
, settings
), unexpected_val
, return);
920 RETVAL_ZVAL(getThis(), 1, 0);
923 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enablePipelining
, 0, 0, 0)
924 ZEND_ARG_INFO(0, enable
)
926 static PHP_METHOD(HttpClient
, enablePipelining
)
928 zend_bool enable
= 1;
929 php_http_client_object_t
*obj
;
931 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable
), invalid_arg
, return);
933 obj
= PHP_HTTP_OBJ(NULL
, getThis());
935 php_http_expect(SUCCESS
== php_http_client_setopt(obj
->client
, PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING
, &enable
), unexpected_val
, return);
937 RETVAL_ZVAL(getThis(), 1, 0);
940 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enableEvents
, 0, 0, 0)
941 ZEND_ARG_INFO(0, enable
)
943 static PHP_METHOD(HttpClient
, enableEvents
)
945 zend_bool enable
= 1;
946 php_http_client_object_t
*obj
;
948 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable
), invalid_arg
, return);
950 obj
= PHP_HTTP_OBJ(NULL
, getThis());
952 php_http_expect(SUCCESS
== php_http_client_setopt(obj
->client
, PHP_HTTP_CLIENT_OPT_USE_EVENTS
, &enable
), unexpected_val
, return);
954 RETVAL_ZVAL(getThis(), 1, 0);
958 php_http_object_method_t
*cb
;
963 static int notify(zend_object_iterator
*iter
, void *puser
)
966 struct notify_arg
*arg
= puser
;
968 if ((observer
= iter
->funcs
->get_current_data(iter
))) {
969 if (SUCCESS
== php_http_object_method_call(arg
->cb
, observer
, NULL
, arg
->argc
, arg
->args
)) {
970 return ZEND_HASH_APPLY_KEEP
;
973 return ZEND_HASH_APPLY_STOP
;
976 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_notify
, 0, 0, 0)
977 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 1)
979 static PHP_METHOD(HttpClient
, notify
)
981 zval
*request
= NULL
, *zprogress
= NULL
, observers_tmp
, *observers
;
982 php_http_client_object_t
*client_obj
;
983 struct notify_arg arg
= {NULL
};
985 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|O!o!", &request
, php_http_get_client_request_class_entry(), &zprogress
), invalid_arg
, return);
987 client_obj
= PHP_HTTP_OBJ(NULL
, getThis());
988 observers
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("observers"), 0, &observers_tmp
);
990 if (Z_TYPE_P(observers
) != IS_OBJECT
) {
991 php_http_throw(unexpected_val
, "Observer storage is corrupted", NULL
);
995 if (client_obj
->update
) {
996 arg
.cb
= client_obj
->update
;
997 ZVAL_COPY(&arg
.args
[0], getThis());
1001 ZVAL_COPY(&arg
.args
[1], request
);
1005 ZVAL_COPY(&arg
.args
[2], zprogress
);
1009 spl_iterator_apply(observers
, notify
, &arg
);
1011 zval_ptr_dtor(getThis());
1013 zval_ptr_dtor(request
);
1016 zval_ptr_dtor(zprogress
);
1020 RETVAL_ZVAL(getThis(), 1, 0);
1023 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_attach
, 0, 0, 1)
1024 ZEND_ARG_OBJ_INFO(0, observer
, SplObserver
, 0)
1025 ZEND_END_ARG_INFO();
1026 static PHP_METHOD(HttpClient
, attach
)
1028 zval observers_tmp
, *observers
, *observer
, retval
;
1029 php_http_client_object_t
*client_obj
;
1031 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer
, spl_ce_SplObserver
), invalid_arg
, return);
1033 client_obj
= PHP_HTTP_OBJ(NULL
, getThis());
1034 observers
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("observers"), 0, &observers_tmp
);
1036 if (Z_TYPE_P(observers
) != IS_OBJECT
) {
1037 php_http_throw(unexpected_val
, "Observer storage is corrupted", NULL
);
1041 if (!client_obj
->update
) {
1042 client_obj
->update
= php_http_object_method_init(NULL
, observer
, ZEND_STRL("update"));
1045 ZVAL_UNDEF(&retval
);
1046 zend_call_method_with_1_params(observers
, NULL
, NULL
, "attach", &retval
, observer
);
1047 zval_ptr_dtor(&retval
);
1049 RETVAL_ZVAL(getThis(), 1, 0);
1052 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_detach
, 0, 0, 1)
1053 ZEND_ARG_OBJ_INFO(0, observer
, SplObserver
, 0)
1054 ZEND_END_ARG_INFO();
1055 static PHP_METHOD(HttpClient
, detach
)
1057 zval observers_tmp
, *observers
, *observer
, retval
;
1059 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer
, spl_ce_SplObserver
), invalid_arg
, return);
1061 observers
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("observers"), 0, &observers_tmp
);
1063 if (Z_TYPE_P(observers
) != IS_OBJECT
) {
1064 php_http_throw(unexpected_val
, "Observer storage is corrupted", NULL
);
1068 ZVAL_UNDEF(&retval
);
1069 zend_call_method_with_1_params(observers
, NULL
, NULL
, "detach", &retval
, observer
);
1070 zval_ptr_dtor(&retval
);
1072 RETVAL_ZVAL(getThis(), 1, 0);
1075 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getObservers
, 0, 0, 0)
1076 ZEND_END_ARG_INFO();
1077 static PHP_METHOD(HttpClient
, getObservers
)
1079 zval observers_tmp
, *observers
;
1081 php_http_expect(SUCCESS
== zend_parse_parameters_none(), invalid_arg
, return);
1083 observers
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("observers"), 0, &observers_tmp
);
1085 if (Z_TYPE_P(observers
) != IS_OBJECT
) {
1086 php_http_throw(unexpected_val
, "Observer storage is corrupted", NULL
);
1090 RETVAL_ZVAL(observers
, 1, 0);
1093 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getProgressInfo
, 0, 0, 1)
1094 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 0)
1095 ZEND_END_ARG_INFO();
1096 static PHP_METHOD(HttpClient
, getProgressInfo
)
1099 php_http_client_object_t
*obj
;
1100 php_http_message_object_t
*req_obj
;
1101 php_http_client_progress_state_t
*progress
;
1103 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request
, php_http_get_client_request_class_entry()), invalid_arg
, return);
1105 obj
= PHP_HTTP_OBJ(NULL
, getThis());
1106 req_obj
= PHP_HTTP_OBJ(NULL
, request
);
1108 php_http_expect(SUCCESS
== php_http_client_getopt(obj
->client
, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO
, req_obj
->message
, &progress
), unexpected_val
, return);
1110 object_init(return_value
);
1111 add_property_bool(return_value
, "started", progress
->started
);
1112 add_property_bool(return_value
, "finished", progress
->finished
);
1113 add_property_string(return_value
, "info", STR_PTR(progress
->info
));
1114 add_property_double(return_value
, "dltotal", progress
->dl
.total
);
1115 add_property_double(return_value
, "dlnow", progress
->dl
.now
);
1116 add_property_double(return_value
, "ultotal", progress
->ul
.total
);
1117 add_property_double(return_value
, "ulnow", progress
->ul
.now
);
1120 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getTransferInfo
, 0, 0, 1)
1121 ZEND_ARG_OBJ_INFO(0, request
, http
\\Client
\\Request
, 0)
1122 ZEND_END_ARG_INFO();
1123 static PHP_METHOD(HttpClient
, getTransferInfo
)
1127 php_http_client_object_t
*obj
;
1128 php_http_message_object_t
*req_obj
;
1130 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request
, php_http_get_client_request_class_entry()), invalid_arg
, return);
1132 obj
= PHP_HTTP_OBJ(NULL
, getThis());
1133 req_obj
= PHP_HTTP_OBJ(NULL
, request
);
1135 object_init(return_value
);
1136 info
= HASH_OF(return_value
);
1137 php_http_expect(SUCCESS
== php_http_client_getopt(obj
->client
, PHP_HTTP_CLIENT_OPT_TRANSFER_INFO
, req_obj
->message
, &info
), unexpected_val
, return);
1140 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setOptions
, 0, 0, 0)
1141 ZEND_ARG_ARRAY_INFO(0, options
, 1)
1142 ZEND_END_ARG_INFO();
1143 static PHP_METHOD(HttpClient
, setOptions
)
1147 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts
), invalid_arg
, return);
1149 php_http_client_options_set(getThis(), opts
);
1151 RETVAL_ZVAL(getThis(), 1, 0);
1154 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getOptions
, 0, 0, 0)
1155 ZEND_END_ARG_INFO();
1156 static PHP_METHOD(HttpClient
, getOptions
)
1158 if (SUCCESS
== zend_parse_parameters_none()) {
1159 zval options_tmp
, *options
= zend_read_property(php_http_client_class_entry
, getThis(), ZEND_STRL("options"), 0, &options_tmp
);
1160 RETVAL_ZVAL(options
, 1, 0);
1164 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setSslOptions
, 0, 0, 0)
1165 ZEND_ARG_ARRAY_INFO(0, ssl_option
, 1)
1166 ZEND_END_ARG_INFO();
1167 static PHP_METHOD(HttpClient
, setSslOptions
)
1171 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts
), invalid_arg
, return);
1173 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts
, 1);
1175 RETVAL_ZVAL(getThis(), 1, 0);
1178 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addSslOptions
, 0, 0, 0)
1179 ZEND_ARG_ARRAY_INFO(0, ssl_options
, 1)
1180 ZEND_END_ARG_INFO();
1181 static PHP_METHOD(HttpClient
, addSslOptions
)
1185 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts
), invalid_arg
, return);
1187 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts
, 0);
1189 RETVAL_ZVAL(getThis(), 1, 0);
1192 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getSslOptions
, 0, 0, 0)
1193 ZEND_END_ARG_INFO();
1194 static PHP_METHOD(HttpClient
, getSslOptions
)
1196 if (SUCCESS
== zend_parse_parameters_none()) {
1197 php_http_client_options_get_subr(getThis(), ZEND_STRL("ssl"), return_value
);
1201 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setCookies
, 0, 0, 0)
1202 ZEND_ARG_ARRAY_INFO(0, cookies
, 1)
1203 ZEND_END_ARG_INFO();
1204 static PHP_METHOD(HttpClient
, setCookies
)
1208 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts
), invalid_arg
, return);
1210 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts
, 1);
1212 RETVAL_ZVAL(getThis(), 1, 0);
1215 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addCookies
, 0, 0, 0)
1216 ZEND_ARG_ARRAY_INFO(0, cookies
, 1)
1217 ZEND_END_ARG_INFO();
1218 static PHP_METHOD(HttpClient
, addCookies
)
1222 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts
), invalid_arg
, return);
1224 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts
, 0);
1226 RETVAL_ZVAL(getThis(), 1, 0);
1229 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getCookies
, 0, 0, 0)
1230 ZEND_END_ARG_INFO();
1231 static PHP_METHOD(HttpClient
, getCookies
)
1233 if (SUCCESS
== zend_parse_parameters_none()) {
1234 php_http_client_options_get_subr(getThis(), ZEND_STRL("cookies"), return_value
);
1238 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableDrivers
, 0, 0, 0)
1239 ZEND_END_ARG_INFO();
1240 static PHP_METHOD(HttpClient
, getAvailableDrivers
)
1242 if (SUCCESS
== zend_parse_parameters_none()) {
1243 array_init(return_value
);
1244 php_http_client_driver_list(Z_ARRVAL_P(return_value
));
1248 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableOptions
, 0, 0, 0)
1249 ZEND_END_ARG_INFO();
1250 static PHP_METHOD(HttpClient
, getAvailableOptions
)
1252 if (SUCCESS
== zend_parse_parameters_none()) {
1253 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, getThis());
1255 array_init(return_value
);
1256 php_http_client_getopt(obj
->client
, PHP_HTTP_CLIENT_OPT_AVAILABLE_OPTIONS
, NULL
, &Z_ARRVAL_P(return_value
));
1260 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableConfiguration
, 0, 0, 0)
1261 ZEND_END_ARG_INFO();
1262 static PHP_METHOD(HttpClient
, getAvailableConfiguration
)
1264 if (SUCCESS
== zend_parse_parameters_none()) {
1265 php_http_client_object_t
*obj
= PHP_HTTP_OBJ(NULL
, getThis());
1267 array_init(return_value
);
1268 php_http_client_getopt(obj
->client
, PHP_HTTP_CLIENT_OPT_AVAILABLE_CONFIGURATION
, NULL
, &Z_ARRVAL_P(return_value
));
1272 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setDebug
, 0, 0, 1)
1273 /* using IS_CALLABLE type hint would create a forwards compatibility break */
1274 ZEND_ARG_INFO(0, callback
)
1275 ZEND_END_ARG_INFO();
1276 static PHP_METHOD(HttpClient
, setDebug
)
1278 zend_fcall_info fci
;
1279 zend_fcall_info_cache fcc
;
1280 php_http_client_object_t
*client_obj
;
1283 php_http_expect(SUCCESS
== zend_parse_parameters(ZEND_NUM_ARGS(), "|f", &fci
, &fcc
), invalid_arg
, return);
1285 client_obj
= PHP_HTTP_OBJ(NULL
, getThis());
1287 if (client_obj
->debug
.fci
.size
> 0) {
1288 zval_ptr_dtor(&client_obj
->debug
.fci
.function_name
);
1289 client_obj
->debug
.fci
.size
= 0;
1292 memcpy(&client_obj
->debug
.fci
, &fci
, sizeof(fci
));
1293 memcpy(&client_obj
->debug
.fcc
, &fcc
, sizeof(fcc
));
1294 Z_ADDREF_P(&fci
.function_name
);
1295 client_obj
->client
->callback
.debug
.func
= handle_debug
;
1296 client_obj
->client
->callback
.debug
.arg
= client_obj
;
1298 client_obj
->client
->callback
.debug
.func
= NULL
;
1299 client_obj
->client
->callback
.debug
.arg
= NULL
;
1302 RETVAL_ZVAL(getThis(), 1, 0);
1305 static zend_function_entry php_http_client_methods
[] = {
1306 PHP_ME(HttpClient
, __construct
, ai_HttpClient_construct
, ZEND_ACC_PUBLIC
|ZEND_ACC_CTOR
)
1307 PHP_ME(HttpClient
, reset
, ai_HttpClient_reset
, ZEND_ACC_PUBLIC
)
1308 PHP_ME(HttpClient
, enqueue
, ai_HttpClient_enqueue
, ZEND_ACC_PUBLIC
)
1309 PHP_ME(HttpClient
, dequeue
, ai_HttpClient_dequeue
, ZEND_ACC_PUBLIC
)
1310 PHP_ME(HttpClient
, requeue
, ai_HttpClient_requeue
, ZEND_ACC_PUBLIC
)
1311 PHP_ME(HttpClient
, count
, ai_HttpClient_count
, ZEND_ACC_PUBLIC
)
1312 PHP_ME(HttpClient
, send
, ai_HttpClient_send
, ZEND_ACC_PUBLIC
)
1313 PHP_ME(HttpClient
, once
, ai_HttpClient_once
, ZEND_ACC_PUBLIC
)
1314 PHP_ME(HttpClient
, wait
, ai_HttpClient_wait
, ZEND_ACC_PUBLIC
)
1315 PHP_ME(HttpClient
, getResponse
, ai_HttpClient_getResponse
, ZEND_ACC_PUBLIC
)
1316 PHP_ME(HttpClient
, getHistory
, ai_HttpClient_getHistory
, ZEND_ACC_PUBLIC
)
1317 PHP_ME(HttpClient
, configure
, ai_HttpClient_configure
, ZEND_ACC_PUBLIC
)
1318 PHP_ME(HttpClient
, enablePipelining
, ai_HttpClient_enablePipelining
, ZEND_ACC_PUBLIC
|ZEND_ACC_DEPRECATED
)
1319 PHP_ME(HttpClient
, enableEvents
, ai_HttpClient_enableEvents
, ZEND_ACC_PUBLIC
|ZEND_ACC_DEPRECATED
)
1320 PHP_ME(HttpClient
, notify
, ai_HttpClient_notify
, ZEND_ACC_PUBLIC
)
1321 PHP_ME(HttpClient
, attach
, ai_HttpClient_attach
, ZEND_ACC_PUBLIC
)
1322 PHP_ME(HttpClient
, detach
, ai_HttpClient_detach
, ZEND_ACC_PUBLIC
)
1323 PHP_ME(HttpClient
, getObservers
, ai_HttpClient_getObservers
, ZEND_ACC_PUBLIC
)
1324 PHP_ME(HttpClient
, getProgressInfo
, ai_HttpClient_getProgressInfo
, ZEND_ACC_PUBLIC
)
1325 PHP_ME(HttpClient
, getTransferInfo
, ai_HttpClient_getTransferInfo
, ZEND_ACC_PUBLIC
)
1326 PHP_ME(HttpClient
, setOptions
, ai_HttpClient_setOptions
, ZEND_ACC_PUBLIC
)
1327 PHP_ME(HttpClient
, getOptions
, ai_HttpClient_getOptions
, ZEND_ACC_PUBLIC
)
1328 PHP_ME(HttpClient
, setSslOptions
, ai_HttpClient_setSslOptions
, ZEND_ACC_PUBLIC
)
1329 PHP_ME(HttpClient
, addSslOptions
, ai_HttpClient_addSslOptions
, ZEND_ACC_PUBLIC
)
1330 PHP_ME(HttpClient
, getSslOptions
, ai_HttpClient_getSslOptions
, ZEND_ACC_PUBLIC
)
1331 PHP_ME(HttpClient
, setCookies
, ai_HttpClient_setCookies
, ZEND_ACC_PUBLIC
)
1332 PHP_ME(HttpClient
, addCookies
, ai_HttpClient_addCookies
, ZEND_ACC_PUBLIC
)
1333 PHP_ME(HttpClient
, getCookies
, ai_HttpClient_getCookies
, ZEND_ACC_PUBLIC
)
1334 PHP_ME(HttpClient
, getAvailableDrivers
, ai_HttpClient_getAvailableDrivers
, ZEND_ACC_PUBLIC
|ZEND_ACC_STATIC
)
1335 PHP_ME(HttpClient
, getAvailableOptions
, ai_HttpClient_getAvailableOptions
, ZEND_ACC_PUBLIC
)
1336 PHP_ME(HttpClient
, getAvailableConfiguration
, ai_HttpClient_getAvailableConfiguration
, ZEND_ACC_PUBLIC
)
1337 PHP_ME(HttpClient
, setDebug
, ai_HttpClient_setDebug
, ZEND_ACC_PUBLIC
)
1338 EMPTY_FUNCTION_ENTRY
1341 PHP_MINIT_FUNCTION(http_client
)
1343 zend_class_entry ce
= {0};
1345 INIT_NS_CLASS_ENTRY(ce
, "http", "Client", php_http_client_methods
);
1346 php_http_client_class_entry
= zend_register_internal_class_ex(&ce
, NULL
);
1347 php_http_client_class_entry
->create_object
= php_http_client_object_new
;
1348 zend_class_implements(php_http_client_class_entry
, 2, spl_ce_SplSubject
, spl_ce_Countable
);
1349 memcpy(&php_http_client_object_handlers
, zend_get_std_object_handlers(), sizeof(zend_object_handlers
));
1350 php_http_client_object_handlers
.offset
= XtOffsetOf(php_http_client_object_t
, zo
);
1351 php_http_client_object_handlers
.free_obj
= php_http_client_object_free
;
1352 php_http_client_object_handlers
.clone_obj
= NULL
;
1353 php_http_client_object_handlers
.get_gc
= php_http_client_object_get_gc
;
1354 zend_declare_property_null(php_http_client_class_entry
, ZEND_STRL("observers"), ZEND_ACC_PRIVATE
);
1355 zend_declare_property_null(php_http_client_class_entry
, ZEND_STRL("options"), ZEND_ACC_PROTECTED
);
1356 zend_declare_property_null(php_http_client_class_entry
, ZEND_STRL("history"), ZEND_ACC_PROTECTED
);
1357 zend_declare_property_bool(php_http_client_class_entry
, ZEND_STRL("recordHistory"), 0, ZEND_ACC_PUBLIC
);
1359 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_INFO"), PHP_HTTP_CLIENT_DEBUG_INFO
);
1360 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_IN"), PHP_HTTP_CLIENT_DEBUG_IN
);
1361 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_OUT"), PHP_HTTP_CLIENT_DEBUG_OUT
);
1362 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_HEADER"), PHP_HTTP_CLIENT_DEBUG_HEADER
);
1363 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_BODY"), PHP_HTTP_CLIENT_DEBUG_BODY
);
1364 zend_declare_class_constant_long(php_http_client_class_entry
, ZEND_STRL("DEBUG_SSL"), PHP_HTTP_CLIENT_DEBUG_SSL
);
1366 zend_hash_init(&php_http_client_drivers
, 2, NULL
, php_http_client_driver_hash_dtor
, 1);
1371 PHP_MSHUTDOWN_FUNCTION(http_client
)
1373 zend_hash_destroy(&php_http_client_drivers
);
1382 * vim600: noet sw=4 ts=4 fdm=marker
1383 * vim<600: noet sw=4 ts=4