Merge branch 'v2.6.x'
[m6w6/ext-http] / src / php_http_client.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
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 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14 #include "php_http_client.h"
15
16 #include "ext/spl/spl_observer.h"
17
18 /*
19 * array of name => php_http_client_driver_t*
20 */
21 static HashTable php_http_client_drivers;
22
23 static void php_http_client_driver_hash_dtor(zval *pData)
24 {
25 pefree(Z_PTR_P(pData), 1);
26 }
27
28 ZEND_RESULT_CODE php_http_client_driver_add(php_http_client_driver_t *driver)
29 {
30 return zend_hash_add_mem(&php_http_client_drivers, driver->driver_name, (void *) driver, sizeof(php_http_client_driver_t))
31 ? SUCCESS : FAILURE;
32 }
33
34 php_http_client_driver_t *php_http_client_driver_get(zend_string *name)
35 {
36 zval *ztmp;
37 php_http_client_driver_t *tmp;
38
39 if (name && (tmp = zend_hash_find_ptr(&php_http_client_drivers, name))) {
40 return tmp;
41 }
42 if ((ztmp = zend_hash_get_current_data(&php_http_client_drivers))) {
43 return Z_PTR_P(ztmp);
44 }
45 return NULL;
46 }
47
48 static int apply_driver_list(zval *p, void *arg)
49 {
50 php_http_client_driver_t *d = Z_PTR_P(p);
51 zval zname;
52
53 ZVAL_STR_COPY(&zname, d->driver_name);
54
55 zend_hash_next_index_insert(arg, &zname);
56 return ZEND_HASH_APPLY_KEEP;
57 }
58
59 void php_http_client_driver_list(HashTable *ht)
60 {
61 zend_hash_apply_with_argument(&php_http_client_drivers, apply_driver_list, ht);
62 }
63
64 static zend_class_entry *php_http_client_class_entry;
65 zend_class_entry *php_http_client_get_class_entry(void)
66 {
67 return php_http_client_class_entry;
68 }
69
70 void php_http_client_options_set_subr(zval *instance, char *key, size_t len, zval *opts, int overwrite)
71 {
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;
75
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));
80 }
81
82 if (overwrite) {
83 if (opts && zend_hash_num_elements(Z_ARRVAL_P(opts))) {
84 Z_ADDREF_P(opts);
85 zend_symtable_str_update(Z_ARRVAL(new_opts), key, len, opts);
86 } else {
87 zend_symtable_str_del(Z_ARRVAL(new_opts), key, len);
88 }
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);
92 } else {
93 Z_ADDREF_P(opts);
94 zend_symtable_str_update(Z_ARRVAL(new_opts), key, len, opts);
95 }
96 }
97
98 zend_update_property(this_ce, instance, ZEND_STRL("options"), &new_opts);
99 zval_ptr_dtor(&new_opts);
100 }
101 }
102
103 void php_http_client_options_set(zval *instance, zval *opts)
104 {
105 php_http_arrkey_t key;
106 zval new_opts;
107 zend_class_entry *this_ce = Z_OBJCE_P(instance);
108 zend_bool is_client = instanceof_function(this_ce, php_http_client_class_entry);
109
110 array_init(&new_opts);
111
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);
115 } else {
116 zval old_opts_tmp, *old_opts, add_opts, *opt;
117
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)
121 {
122 if (key.key) {
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);
131 }
132 } else {
133 Z_TRY_ADDREF_P(opt);
134 add_assoc_zval_ex(&add_opts, key.key->val, key.key->len, opt);
135 }
136 }
137 }
138 ZEND_HASH_FOREACH_END();
139
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));
143 }
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);
148 }
149 }
150
151 void php_http_client_options_get_subr(zval *instance, char *key, size_t len, zval *return_value)
152 {
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);
155
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);
158 }
159 }
160
161 static void queue_dtor(void *enqueued)
162 {
163 php_http_client_enqueue_t *e = enqueued;
164
165 if (e->dtor) {
166 e->dtor(e);
167 }
168 }
169
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)
171 {
172 php_http_client_t *free_h = NULL;
173
174 if (!h) {
175 free_h = h = emalloc(sizeof(*h));
176 }
177 memset(h, 0, sizeof(*h));
178
179 h->ops = ops;
180 if (rf) {
181 h->rf = rf;
182 } else if (ops->rsrc) {
183 h->rf = php_resource_factory_init(NULL, h->ops->rsrc, h, NULL);
184 }
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);
187
188 if (h->ops->init) {
189 if (!(h = h->ops->init(h, init_arg))) {
190 php_error_docref(NULL, E_WARNING, "Could not initialize client");
191 PTR_FREE(free_h);
192 }
193 }
194
195 return h;
196 }
197
198 php_http_client_t *php_http_client_copy(php_http_client_t *from, php_http_client_t *to)
199 {
200 if (from->ops->copy) {
201 return from->ops->copy(from, to);
202 }
203
204 return NULL;
205 }
206
207 void php_http_client_dtor(php_http_client_t *h)
208 {
209 php_http_client_reset(h);
210
211 if (h->ops->dtor) {
212 h->ops->dtor(h);
213 }
214 h->callback.debug.func = NULL;
215 h->callback.debug.arg = NULL;
216
217 php_resource_factory_free(&h->rf);
218 }
219
220 void php_http_client_free(php_http_client_t **h) {
221 if (*h) {
222 php_http_client_dtor(*h);
223 efree(*h);
224 *h = NULL;
225 }
226 }
227
228 ZEND_RESULT_CODE php_http_client_enqueue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
229 {
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");
233 return FAILURE;
234 }
235 return h->ops->enqueue(h, enqueue);
236 }
237
238 return FAILURE;
239 }
240
241 ZEND_RESULT_CODE php_http_client_dequeue(php_http_client_t *h, php_http_message_t *request)
242 {
243 if (h->ops->dequeue) {
244 php_http_client_enqueue_t *enqueue = php_http_client_enqueued(h, request, NULL);
245
246 if (!enqueue) {
247 php_error_docref(NULL, E_WARNING, "Failed to dequeue request; request not in queue");
248 return FAILURE;
249 }
250 return h->ops->dequeue(h, enqueue);
251 }
252 return FAILURE;
253 }
254
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)
256 {
257 zend_llist_element *el = NULL;
258
259 if (compare_func) {
260 for (el = h->requests.head; el; el = el->next) {
261 if (compare_func((php_http_client_enqueue_t *) el->data, compare_arg)) {
262 break;
263 }
264 }
265 } else {
266 for (el = h->requests.head; el; el = el->next) {
267 if (((php_http_client_enqueue_t *) el->data)->request == compare_arg) {
268 break;
269 }
270 }
271 }
272 return el ? (php_http_client_enqueue_t *) el->data : NULL;
273 }
274
275 ZEND_RESULT_CODE php_http_client_wait(php_http_client_t *h, struct timeval *custom_timeout)
276 {
277 if (h->ops->wait) {
278 return h->ops->wait(h, custom_timeout);
279 }
280
281 return FAILURE;
282 }
283
284 int php_http_client_once(php_http_client_t *h)
285 {
286 if (h->ops->once) {
287 return h->ops->once(h);
288 }
289
290 return FAILURE;
291 }
292
293 ZEND_RESULT_CODE php_http_client_exec(php_http_client_t *h)
294 {
295 if (h->ops->exec) {
296 return h->ops->exec(h);
297 }
298
299 return FAILURE;
300 }
301
302 void php_http_client_reset(php_http_client_t *h)
303 {
304 if (h->ops->reset) {
305 h->ops->reset(h);
306 }
307
308 zend_llist_clean(&h->requests);
309 zend_llist_clean(&h->responses);
310 }
311
312 ZEND_RESULT_CODE php_http_client_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg)
313 {
314 if (h->ops->setopt) {
315 return h->ops->setopt(h, opt, arg);
316 }
317
318 return FAILURE;
319 }
320
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)
322 {
323 if (h->ops->getopt) {
324 return h->ops->getopt(h, opt, arg, res_ptr);
325 }
326 return FAILURE;
327 }
328
329 static zend_object_handlers php_http_client_object_handlers;
330
331 void php_http_client_object_free(zend_object *object)
332 {
333 php_http_client_object_t *o = PHP_HTTP_OBJ(object, NULL);
334
335 PTR_FREE(o->gc);
336
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;
342 }
343 php_http_object_method_dtor(&o->notify);
344 php_http_object_method_free(&o->update);
345 zend_object_std_dtor(object);
346 }
347
348 php_http_client_object_t *php_http_client_object_new_ex(zend_class_entry *ce, php_http_client_t *client)
349 {
350 php_http_client_object_t *o;
351
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);
355
356 o->client = client;
357
358 o->zo.handlers = &php_http_client_object_handlers;
359
360 return o;
361 }
362
363 zend_object *php_http_client_object_new(zend_class_entry *ce)
364 {
365 return &php_http_client_object_new_ex(ce, NULL)->zo;
366 }
367
368 static HashTable *php_http_client_object_get_gc(zval *object, zval **table, int *n)
369 {
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;
374 zval *val;
375
376 *n = 0;
377 *table = obj->gc = erealloc(obj->gc, sizeof(zval) * count);
378
379 #if PHP_HTTP_HAVE_CURL
380 if (obj->client->ops == php_http_client_curl_get_ops()) {
381 php_http_client_curl_t *curl = obj->client->ctx;
382
383 if (curl->ev_ops == php_http_client_curl_user_ops_get()) {
384 php_http_client_curl_user_context_t *ctx = curl->ev_ctx;
385
386 ZVAL_COPY_VALUE(&obj->gc[(*n)++], &ctx->user);
387 }
388 }
389 #endif
390
391 if (obj->debug.fci.size > 0) {
392 ZVAL_COPY_VALUE(&obj->gc[(*n)++], &obj->debug.fci.function_name);
393 }
394
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);
398 }
399
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);
404 }
405
406 ZEND_HASH_FOREACH_VAL(props, val)
407 {
408 ZVAL_COPY_VALUE(&obj->gc[(*n)++], val);
409 }
410 ZEND_HASH_FOREACH_END();
411
412 return NULL;
413 }
414
415 static void handle_history(zval *zclient, php_http_message_t *request, php_http_message_t *response)
416 {
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);
422
423 ZVAL_OBJ(&new_hist, &obj->zo);
424
425 if (Z_TYPE_P(old_hist) == IS_OBJECT) {
426 php_http_message_object_prepend(&new_hist, old_hist, 1);
427 }
428
429 zend_update_property(php_http_client_class_entry, zclient, ZEND_STRL("history"), &new_hist);
430 zval_ptr_dtor(&new_hist);
431 }
432
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)
434 {
435 zend_bool dequeue = 0;
436 zval zclient;
437 php_http_message_t *msg;
438 php_http_client_progress_state_t *progress;
439
440 ZVAL_OBJ(&zclient, &((php_http_client_object_t*) arg)->zo);
441
442 if ((msg = *response)) {
443 php_http_message_object_t *msg_obj;
444 zval info, zresponse, zrequest, rec_hist_tmp;
445 HashTable *info_ht;
446
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);
449
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);
452 }
453
454 /* hard detach, redirects etc. are in the history */
455 php_http_message_free(&msg->parent);
456 *response = NULL;
457
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);
461
462 php_http_message_object_prepend(&zresponse, &zrequest, 1);
463
464 object_init(&info);
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);
469
470 zend_llist_add_element(&client->responses, &msg_obj);
471
472 if (e->closure.fci.size) {
473 zval retval;
474 zend_error_handling zeh;
475
476 ZVAL_UNDEF(&retval);
477 zend_fcall_info_argn(&e->closure.fci, 1, &zresponse);
478 zend_replace_error_handling(EH_NORMAL, NULL, &zeh);
479 zend_fcall_info_call(&e->closure.fci, &e->closure.fcc, &retval, NULL);
480 zend_restore_error_handling(&zeh);
481 zend_fcall_info_argn(&e->closure.fci, 0);
482
483 if (Z_TYPE(retval) == IS_TRUE) {
484 dequeue = 1;
485 }
486 zval_ptr_dtor(&retval);
487 }
488
489 zval_ptr_dtor(&zresponse);
490 zval_ptr_dtor(&zrequest);
491 }
492
493 if (SUCCESS == php_http_client_getopt(client, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, e->request, &progress)) {
494 progress->info = "finished";
495 progress->finished = 1;
496 client->callback.progress.func(client->callback.progress.arg, client, e, progress);
497 }
498
499 if (dequeue) {
500 php_http_client_dequeue(client, e->request);
501 }
502
503 return SUCCESS;
504 }
505
506 static void handle_progress(void *arg, php_http_client_t *client, php_http_client_enqueue_t *e, php_http_client_progress_state_t *progress)
507 {
508 zval zclient, args[2];
509 php_http_client_object_t *client_obj = arg;
510 zend_error_handling zeh;
511
512 ZVAL_OBJECT(&zclient, &client_obj->zo, 1);
513 ZVAL_OBJECT(&args[0], &((php_http_message_object_t *) e->opaque)->zo, 1);
514 object_init(&args[1]);
515 add_property_bool(&args[1], "started", progress->started);
516 add_property_bool(&args[1], "finished", progress->finished);
517 add_property_string(&args[1], "info", STR_PTR(progress->info));
518 add_property_double(&args[1], "dltotal", progress->dl.total);
519 add_property_double(&args[1], "dlnow", progress->dl.now);
520 add_property_double(&args[1], "ultotal", progress->ul.total);
521 add_property_double(&args[1], "ulnow", progress->ul.now);
522
523 zend_replace_error_handling(EH_NORMAL, NULL, &zeh);
524 php_http_object_method_call(&client_obj->notify, &zclient, NULL, 2, args);
525 zend_restore_error_handling(&zeh);
526
527 zval_ptr_dtor(&zclient);
528 zval_ptr_dtor(&args[0]);
529 zval_ptr_dtor(&args[1]);
530 }
531
532 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)
533 {
534 zval ztype, zdata, zreq, zclient;
535 php_http_client_object_t *client_obj = arg;
536 zend_error_handling zeh;
537
538 ZVAL_OBJECT(&zclient, &client_obj->zo, 1);
539 ZVAL_OBJECT(&zreq, &((php_http_message_object_t *) e->opaque)->zo, 1);
540 ZVAL_LONG(&ztype, type);
541 ZVAL_STRINGL(&zdata, data, size);
542
543 zend_replace_error_handling(EH_NORMAL, NULL, &zeh);
544 if (SUCCESS == zend_fcall_info_argn(&client_obj->debug.fci, 4, &zclient, &zreq, &ztype, &zdata)) {
545 zend_fcall_info_call(&client_obj->debug.fci, &client_obj->debug.fcc, NULL, NULL);
546 zend_fcall_info_args_clear(&client_obj->debug.fci, 0);
547 }
548 zend_restore_error_handling(&zeh);
549
550 zval_ptr_dtor(&zclient);
551 zval_ptr_dtor(&zreq);
552 zval_ptr_dtor(&ztype);
553 zval_ptr_dtor(&zdata);
554 }
555
556 static void response_dtor(void *data)
557 {
558 php_http_message_object_t *msg_obj = *(php_http_message_object_t **) data;
559
560 zend_object_release(&msg_obj->zo);
561 }
562
563 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_construct, 0, 0, 0)
564 ZEND_ARG_INFO(0, driver)
565 ZEND_ARG_INFO(0, persistent_handle_id)
566 ZEND_END_ARG_INFO();
567 static PHP_METHOD(HttpClient, __construct)
568 {
569 zend_string *driver_name = NULL, *persistent_handle_name = NULL;
570 php_http_client_driver_t *driver;
571 php_resource_factory_t *rf = NULL;
572 php_http_client_object_t *obj;
573 zval os;
574
575 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|S!S!", &driver_name, &persistent_handle_name), invalid_arg, return);
576
577 if (!zend_hash_num_elements(&php_http_client_drivers)) {
578 php_http_throw(unexpected_val, "No http\\Client drivers available", NULL);
579 return;
580 }
581 if (!(driver = php_http_client_driver_get(driver_name))) {
582 php_http_throw(unexpected_val, "Failed to locate \"%s\" client request handler", driver_name ? driver_name->val : "default");
583 return;
584 }
585
586 object_init_ex(&os, spl_ce_SplObjectStorage);
587 zend_update_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), &os);
588 zval_ptr_dtor(&os);
589
590 if (persistent_handle_name) {
591 php_persistent_handle_factory_t *pf;
592
593 if ((pf = php_persistent_handle_concede(NULL, driver->client_name, persistent_handle_name, NULL, NULL))) {
594 rf = php_persistent_handle_resource_factory_init(NULL, pf);
595 }
596 }
597
598 obj = PHP_HTTP_OBJ(NULL, getThis());
599
600 php_http_expect(obj->client = php_http_client_init(NULL, driver->client_ops, rf, NULL), runtime, return);
601
602 php_http_object_method_init(&obj->notify, getThis(), ZEND_STRL("notify"));
603
604 obj->client->callback.response.func = handle_response;
605 obj->client->callback.response.arg = obj;
606 obj->client->callback.progress.func = handle_progress;
607 obj->client->callback.progress.arg = obj;
608
609 obj->client->responses.dtor = response_dtor;
610 }
611
612 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_reset, 0, 0, 0)
613 ZEND_END_ARG_INFO();
614 static PHP_METHOD(HttpClient, reset)
615 {
616 php_http_client_object_t *obj;
617 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
618
619 obj = PHP_HTTP_OBJ(NULL, getThis());
620
621 obj->iterator = 0;
622 php_http_client_reset(obj->client);
623
624 RETVAL_ZVAL(getThis(), 1, 0);
625 }
626
627 static HashTable *combined_options(zval *client, zval *request)
628 {
629 HashTable *options;
630 unsigned num_options = 0;
631 zval z_roptions, z_options_tmp, *z_coptions = zend_read_property(php_http_client_class_entry, client, ZEND_STRL("options"), 0, &z_options_tmp);
632
633 if (Z_TYPE_P(z_coptions) == IS_ARRAY) {
634 num_options = zend_hash_num_elements(Z_ARRVAL_P(z_coptions));
635 }
636 ZVAL_UNDEF(&z_roptions);
637 zend_call_method_with_0_params(request, NULL, NULL, "getOptions", &z_roptions);
638 if (Z_TYPE(z_roptions) == IS_ARRAY) {
639 unsigned num = zend_hash_num_elements(Z_ARRVAL(z_roptions));
640 if (num > num_options) {
641 num_options = num;
642 }
643 }
644 ALLOC_HASHTABLE(options);
645 ZEND_INIT_SYMTABLE_EX(options, num_options, 0);
646 if (Z_TYPE_P(z_coptions) == IS_ARRAY) {
647 array_copy(Z_ARRVAL_P(z_coptions), options);
648 }
649 if (Z_TYPE(z_roptions) == IS_ARRAY) {
650 array_join(Z_ARRVAL(z_roptions), options, 0, 0);
651 }
652 zval_ptr_dtor(&z_roptions);
653
654 return options;
655 }
656
657 static void msg_queue_dtor(php_http_client_enqueue_t *e)
658 {
659 php_http_message_object_t *msg_obj = e->opaque;
660
661 zend_object_release(&msg_obj->zo);
662 zend_hash_destroy(e->options);
663 FREE_HASHTABLE(e->options);
664
665 if (e->closure.fci.size) {
666 zval_ptr_dtor(&e->closure.fci.function_name);
667 if (e->closure.fci.object) {
668 zend_object_release(e->closure.fci.object);
669 }
670 }
671 }
672
673 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enqueue, 0, 0, 1)
674 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
675 ZEND_ARG_INFO(0, callable)
676 ZEND_END_ARG_INFO();
677 static PHP_METHOD(HttpClient, enqueue)
678 {
679 zval *request;
680 zend_fcall_info fci = empty_fcall_info;
681 zend_fcall_info_cache fcc = empty_fcall_info_cache;
682 php_http_client_object_t *obj;
683 php_http_message_object_t *msg_obj;
684 php_http_client_enqueue_t q;
685
686 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);
687
688 obj = PHP_HTTP_OBJ(NULL, getThis());
689 msg_obj = PHP_HTTP_OBJ(NULL, request);
690
691 if (php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
692 php_http_throw(bad_method_call, "Failed to enqueue request; request already in queue", NULL);
693 return;
694 }
695
696 q.request = msg_obj->message;
697 q.options = combined_options(getThis(), request);
698 q.dtor = msg_queue_dtor;
699 q.opaque = msg_obj;
700 q.closure.fci = fci;
701 q.closure.fcc = fcc;
702
703 if (fci.size) {
704 Z_TRY_ADDREF(fci.function_name);
705 if (fci.object) {
706 ++GC_REFCOUNT(fci.object);
707 }
708 }
709
710 Z_ADDREF_P(request);
711
712 php_http_expect(SUCCESS == php_http_client_enqueue(obj->client, &q), runtime,
713 msg_queue_dtor(&q);
714 return;
715 );
716
717 RETVAL_ZVAL(getThis(), 1, 0);
718 }
719
720 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_dequeue, 0, 0, 1)
721 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
722 ZEND_END_ARG_INFO();
723 static PHP_METHOD(HttpClient, dequeue)
724 {
725 zval *request;
726 php_http_client_object_t *obj;
727 php_http_message_object_t *msg_obj;
728
729 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
730
731 obj = PHP_HTTP_OBJ(NULL, getThis());
732 msg_obj = PHP_HTTP_OBJ(NULL, request);
733
734 if (!php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
735 php_http_throw(bad_method_call, "Failed to dequeue request; request not in queue", NULL);
736 return;
737 }
738
739 php_http_expect(SUCCESS == php_http_client_dequeue(obj->client, msg_obj->message), runtime, return);
740
741 RETVAL_ZVAL(getThis(), 1, 0);
742 }
743
744 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_requeue, 0, 0, 1)
745 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
746 ZEND_ARG_INFO(0, callable)
747 ZEND_END_ARG_INFO();
748 static PHP_METHOD(HttpClient, requeue)
749 {
750 zval *request;
751 zend_fcall_info fci = empty_fcall_info;
752 zend_fcall_info_cache fcc = empty_fcall_info_cache;
753 php_http_client_object_t *obj;
754 php_http_message_object_t *msg_obj;
755 php_http_client_enqueue_t q;
756
757 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);
758
759 obj = PHP_HTTP_OBJ(NULL, getThis());
760 msg_obj = PHP_HTTP_OBJ(NULL, request);
761
762 if (php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
763 php_http_expect(SUCCESS == php_http_client_dequeue(obj->client, msg_obj->message), runtime, return);
764 }
765
766 q.request = msg_obj->message;
767 q.options = combined_options(getThis(), request);
768 q.dtor = msg_queue_dtor;
769 q.opaque = msg_obj;
770 q.closure.fci = fci;
771 q.closure.fcc = fcc;
772
773 if (fci.size) {
774 Z_TRY_ADDREF(fci.function_name);
775 if (fci.object) {
776 ++GC_REFCOUNT(fci.object);
777 }
778 }
779
780 Z_ADDREF_P(request);
781
782 php_http_expect(SUCCESS == php_http_client_enqueue(obj->client, &q), runtime,
783 msg_queue_dtor(&q);
784 return;
785 );
786
787 RETVAL_ZVAL(getThis(), 1, 0);
788 }
789
790 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_count, 0, 0, 0)
791 ZEND_END_ARG_INFO();
792 static PHP_METHOD(HttpClient, count)
793 {
794 zend_long count_mode = -1;
795
796 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &count_mode)) {
797 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
798
799 RETVAL_LONG(zend_llist_count(&obj->client->requests));
800 }
801 }
802
803 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getResponse, 0, 0, 0)
804 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 1)
805 ZEND_END_ARG_INFO();
806 static PHP_METHOD(HttpClient, getResponse)
807 {
808 zval *zrequest = NULL;
809 php_http_client_object_t *obj;
810
811 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|O", &zrequest, php_http_get_client_request_class_entry()), invalid_arg, return);
812
813 obj = PHP_HTTP_OBJ(NULL, getThis());
814
815 if (zrequest) {
816 /* lookup the response with the request */
817 zend_llist_element *el = NULL;
818 php_http_message_object_t *req_obj = PHP_HTTP_OBJ(NULL, zrequest);
819
820 for (el = obj->client->responses.head; el; el = el->next) {
821 php_http_message_object_t *response_obj = *(php_http_message_object_t **) el->data;
822
823 if (response_obj->message->parent == req_obj->message) {
824 RETURN_OBJECT(&response_obj->zo, 1);
825 }
826 }
827
828 /* not found for the request! */
829 php_http_throw(unexpected_val, "Could not find response for the request", NULL);
830 return;
831 }
832
833 /* pop off the last response */
834 if (obj->client->responses.tail) {
835 php_http_message_object_t *response_obj = *(php_http_message_object_t **) obj->client->responses.tail->data;
836
837 /* pop off and go */
838 if (response_obj) {
839 RETVAL_OBJECT(&response_obj->zo, 1);
840 zend_llist_remove_tail(&obj->client->responses);
841 }
842 }
843 }
844
845 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getHistory, 0, 0, 0)
846 ZEND_END_ARG_INFO();
847 static PHP_METHOD(HttpClient, getHistory)
848 {
849 zval zhistory_tmp, *zhistory;
850
851 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
852
853 zhistory = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("history"), 0, &zhistory_tmp);
854 RETVAL_ZVAL(zhistory, 1, 0);
855 }
856
857 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_send, 0, 0, 0)
858 ZEND_END_ARG_INFO();
859 static PHP_METHOD(HttpClient, send)
860 {
861 php_http_client_object_t *obj;
862
863 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
864
865 obj = PHP_HTTP_OBJ(NULL, getThis());
866
867 php_http_expect(SUCCESS == php_http_client_exec(obj->client), runtime, return);
868
869 RETVAL_ZVAL(getThis(), 1, 0);
870 }
871
872 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_once, 0, 0, 0)
873 ZEND_END_ARG_INFO();
874 static PHP_METHOD(HttpClient, once)
875 {
876 if (SUCCESS == zend_parse_parameters_none()) {
877 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
878
879 RETURN_BOOL(0 < php_http_client_once(obj->client));
880 }
881 }
882
883 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_wait, 0, 0, 0)
884 ZEND_ARG_INFO(0, timeout)
885 ZEND_END_ARG_INFO();
886 static PHP_METHOD(HttpClient, wait)
887 {
888 double timeout = 0;
889
890 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|d", &timeout)) {
891 struct timeval timeout_val;
892 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
893
894 timeout_val.tv_sec = (time_t) timeout;
895 timeout_val.tv_usec = PHP_HTTP_USEC(timeout) % PHP_HTTP_MCROSEC;
896
897 RETURN_BOOL(SUCCESS == php_http_client_wait(obj->client, timeout > 0 ? &timeout_val : NULL));
898 }
899 }
900
901 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_configure, 0, 0, 1)
902 ZEND_ARG_ARRAY_INFO(0, settings, 1)
903 ZEND_END_ARG_INFO();
904 static PHP_METHOD(HttpClient, configure)
905 {
906 HashTable *settings = NULL;
907 php_http_client_object_t *obj;
908
909 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|H!", &settings), invalid_arg, return);
910 obj = PHP_HTTP_OBJ(NULL, getThis());
911
912 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_CONFIGURATION, settings), unexpected_val, return);
913
914 RETVAL_ZVAL(getThis(), 1, 0);
915 }
916
917 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enablePipelining, 0, 0, 0)
918 ZEND_ARG_INFO(0, enable)
919 ZEND_END_ARG_INFO();
920 static PHP_METHOD(HttpClient, enablePipelining)
921 {
922 zend_bool enable = 1;
923 php_http_client_object_t *obj;
924
925 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable), invalid_arg, return);
926
927 obj = PHP_HTTP_OBJ(NULL, getThis());
928
929 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING, &enable), unexpected_val, return);
930
931 RETVAL_ZVAL(getThis(), 1, 0);
932 }
933
934 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enableEvents, 0, 0, 0)
935 ZEND_ARG_INFO(0, enable)
936 ZEND_END_ARG_INFO();
937 static PHP_METHOD(HttpClient, enableEvents)
938 {
939 zend_bool enable = 1;
940 php_http_client_object_t *obj;
941
942 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable), invalid_arg, return);
943
944 obj = PHP_HTTP_OBJ(NULL, getThis());
945
946 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_USE_EVENTS, &enable), unexpected_val, return);
947
948 RETVAL_ZVAL(getThis(), 1, 0);
949 }
950
951 struct notify_arg {
952 php_http_object_method_t *cb;
953 zval args[3];
954 int argc;
955 };
956
957 static int notify(zend_object_iterator *iter, void *puser)
958 {
959 zval *observer;
960 struct notify_arg *arg = puser;
961
962 if ((observer = iter->funcs->get_current_data(iter))) {
963 if (SUCCESS == php_http_object_method_call(arg->cb, observer, NULL, arg->argc, arg->args)) {
964 return ZEND_HASH_APPLY_KEEP;
965 }
966 }
967 return ZEND_HASH_APPLY_STOP;
968 }
969
970 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_notify, 0, 0, 0)
971 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 1)
972 ZEND_END_ARG_INFO();
973 static PHP_METHOD(HttpClient, notify)
974 {
975 zval *request = NULL, *zprogress = NULL, observers_tmp, *observers;
976 php_http_client_object_t *client_obj;
977 struct notify_arg arg = {NULL};
978
979 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|O!o!", &request, php_http_get_client_request_class_entry(), &zprogress), invalid_arg, return);
980
981 client_obj = PHP_HTTP_OBJ(NULL, getThis());
982 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
983
984 if (Z_TYPE_P(observers) != IS_OBJECT) {
985 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
986 return;
987 }
988
989 if (client_obj->update) {
990 arg.cb = client_obj->update;
991 ZVAL_COPY(&arg.args[0], getThis());
992 arg.argc = 1;
993
994 if (request) {
995 ZVAL_COPY(&arg.args[1], request);
996 arg.argc += 1;
997 }
998 if (zprogress) {
999 ZVAL_COPY(&arg.args[2], zprogress);
1000 arg.argc += 1;
1001 }
1002
1003 spl_iterator_apply(observers, notify, &arg);
1004
1005 zval_ptr_dtor(getThis());
1006 if (request) {
1007 zval_ptr_dtor(request);
1008 }
1009 if (zprogress) {
1010 zval_ptr_dtor(zprogress);
1011 }
1012 }
1013
1014 RETVAL_ZVAL(getThis(), 1, 0);
1015 }
1016
1017 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_attach, 0, 0, 1)
1018 ZEND_ARG_OBJ_INFO(0, observer, SplObserver, 0)
1019 ZEND_END_ARG_INFO();
1020 static PHP_METHOD(HttpClient, attach)
1021 {
1022 zval observers_tmp, *observers, *observer, retval;
1023 php_http_client_object_t *client_obj;
1024
1025 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer, spl_ce_SplObserver), invalid_arg, return);
1026
1027 client_obj = PHP_HTTP_OBJ(NULL, getThis());
1028 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
1029
1030 if (Z_TYPE_P(observers) != IS_OBJECT) {
1031 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
1032 return;
1033 }
1034
1035 if (!client_obj->update) {
1036 client_obj->update = php_http_object_method_init(NULL, observer, ZEND_STRL("update"));
1037 }
1038
1039 ZVAL_UNDEF(&retval);
1040 zend_call_method_with_1_params(observers, NULL, NULL, "attach", &retval, observer);
1041 zval_ptr_dtor(&retval);
1042
1043 RETVAL_ZVAL(getThis(), 1, 0);
1044 }
1045
1046 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_detach, 0, 0, 1)
1047 ZEND_ARG_OBJ_INFO(0, observer, SplObserver, 0)
1048 ZEND_END_ARG_INFO();
1049 static PHP_METHOD(HttpClient, detach)
1050 {
1051 zval observers_tmp, *observers, *observer, retval;
1052
1053 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer, spl_ce_SplObserver), invalid_arg, return);
1054
1055 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
1056
1057 if (Z_TYPE_P(observers) != IS_OBJECT) {
1058 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
1059 return;
1060 }
1061
1062 ZVAL_UNDEF(&retval);
1063 zend_call_method_with_1_params(observers, NULL, NULL, "detach", &retval, observer);
1064 zval_ptr_dtor(&retval);
1065
1066 RETVAL_ZVAL(getThis(), 1, 0);
1067 }
1068
1069 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getObservers, 0, 0, 0)
1070 ZEND_END_ARG_INFO();
1071 static PHP_METHOD(HttpClient, getObservers)
1072 {
1073 zval observers_tmp, *observers;
1074
1075 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
1076
1077 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
1078
1079 if (Z_TYPE_P(observers) != IS_OBJECT) {
1080 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
1081 return;
1082 }
1083
1084 RETVAL_ZVAL(observers, 1, 0);
1085 }
1086
1087 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getProgressInfo, 0, 0, 1)
1088 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
1089 ZEND_END_ARG_INFO();
1090 static PHP_METHOD(HttpClient, getProgressInfo)
1091 {
1092 zval *request;
1093 php_http_client_object_t *obj;
1094 php_http_message_object_t *req_obj;
1095 php_http_client_progress_state_t *progress;
1096
1097 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
1098
1099 obj = PHP_HTTP_OBJ(NULL, getThis());
1100 req_obj = PHP_HTTP_OBJ(NULL, request);
1101
1102 php_http_expect(SUCCESS == php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, req_obj->message, &progress), unexpected_val, return);
1103
1104 object_init(return_value);
1105 add_property_bool(return_value, "started", progress->started);
1106 add_property_bool(return_value, "finished", progress->finished);
1107 add_property_string(return_value, "info", STR_PTR(progress->info));
1108 add_property_double(return_value, "dltotal", progress->dl.total);
1109 add_property_double(return_value, "dlnow", progress->dl.now);
1110 add_property_double(return_value, "ultotal", progress->ul.total);
1111 add_property_double(return_value, "ulnow", progress->ul.now);
1112 }
1113
1114 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getTransferInfo, 0, 0, 1)
1115 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
1116 ZEND_END_ARG_INFO();
1117 static PHP_METHOD(HttpClient, getTransferInfo)
1118 {
1119 zval *request;
1120 HashTable *info;
1121 php_http_client_object_t *obj;
1122 php_http_message_object_t *req_obj;
1123
1124 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
1125
1126 obj = PHP_HTTP_OBJ(NULL, getThis());
1127 req_obj = PHP_HTTP_OBJ(NULL, request);
1128
1129 object_init(return_value);
1130 info = HASH_OF(return_value);
1131 php_http_expect(SUCCESS == php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_TRANSFER_INFO, req_obj->message, &info), unexpected_val, return);
1132 }
1133
1134 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setOptions, 0, 0, 0)
1135 ZEND_ARG_ARRAY_INFO(0, options, 1)
1136 ZEND_END_ARG_INFO();
1137 static PHP_METHOD(HttpClient, setOptions)
1138 {
1139 zval *opts = NULL;
1140
1141 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1142
1143 php_http_client_options_set(getThis(), opts);
1144
1145 RETVAL_ZVAL(getThis(), 1, 0);
1146 }
1147
1148 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getOptions, 0, 0, 0)
1149 ZEND_END_ARG_INFO();
1150 static PHP_METHOD(HttpClient, getOptions)
1151 {
1152 if (SUCCESS == zend_parse_parameters_none()) {
1153 zval options_tmp, *options = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("options"), 0, &options_tmp);
1154 RETVAL_ZVAL(options, 1, 0);
1155 }
1156 }
1157
1158 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setSslOptions, 0, 0, 0)
1159 ZEND_ARG_ARRAY_INFO(0, ssl_option, 1)
1160 ZEND_END_ARG_INFO();
1161 static PHP_METHOD(HttpClient, setSslOptions)
1162 {
1163 zval *opts = NULL;
1164
1165 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1166
1167 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts, 1);
1168
1169 RETVAL_ZVAL(getThis(), 1, 0);
1170 }
1171
1172 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addSslOptions, 0, 0, 0)
1173 ZEND_ARG_ARRAY_INFO(0, ssl_options, 1)
1174 ZEND_END_ARG_INFO();
1175 static PHP_METHOD(HttpClient, addSslOptions)
1176 {
1177 zval *opts = NULL;
1178
1179 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1180
1181 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts, 0);
1182
1183 RETVAL_ZVAL(getThis(), 1, 0);
1184 }
1185
1186 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getSslOptions, 0, 0, 0)
1187 ZEND_END_ARG_INFO();
1188 static PHP_METHOD(HttpClient, getSslOptions)
1189 {
1190 if (SUCCESS == zend_parse_parameters_none()) {
1191 php_http_client_options_get_subr(getThis(), ZEND_STRL("ssl"), return_value);
1192 }
1193 }
1194
1195 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setCookies, 0, 0, 0)
1196 ZEND_ARG_ARRAY_INFO(0, cookies, 1)
1197 ZEND_END_ARG_INFO();
1198 static PHP_METHOD(HttpClient, setCookies)
1199 {
1200 zval *opts = NULL;
1201
1202 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1203
1204 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts, 1);
1205
1206 RETVAL_ZVAL(getThis(), 1, 0);
1207 }
1208
1209 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addCookies, 0, 0, 0)
1210 ZEND_ARG_ARRAY_INFO(0, cookies, 1)
1211 ZEND_END_ARG_INFO();
1212 static PHP_METHOD(HttpClient, addCookies)
1213 {
1214 zval *opts = NULL;
1215
1216 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1217
1218 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts, 0);
1219
1220 RETVAL_ZVAL(getThis(), 1, 0);
1221 }
1222
1223 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getCookies, 0, 0, 0)
1224 ZEND_END_ARG_INFO();
1225 static PHP_METHOD(HttpClient, getCookies)
1226 {
1227 if (SUCCESS == zend_parse_parameters_none()) {
1228 php_http_client_options_get_subr(getThis(), ZEND_STRL("cookies"), return_value);
1229 }
1230 }
1231
1232 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableDrivers, 0, 0, 0)
1233 ZEND_END_ARG_INFO();
1234 static PHP_METHOD(HttpClient, getAvailableDrivers)
1235 {
1236 if (SUCCESS == zend_parse_parameters_none()) {
1237 array_init(return_value);
1238 php_http_client_driver_list(Z_ARRVAL_P(return_value));
1239 }
1240 }
1241
1242 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableOptions, 0, 0, 0)
1243 ZEND_END_ARG_INFO();
1244 static PHP_METHOD(HttpClient, getAvailableOptions)
1245 {
1246 if (SUCCESS == zend_parse_parameters_none()) {
1247 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
1248
1249 array_init(return_value);
1250 php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_AVAILABLE_OPTIONS, NULL, &Z_ARRVAL_P(return_value));
1251 }
1252 }
1253
1254 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableConfiguration, 0, 0, 0)
1255 ZEND_END_ARG_INFO();
1256 static PHP_METHOD(HttpClient, getAvailableConfiguration)
1257 {
1258 if (SUCCESS == zend_parse_parameters_none()) {
1259 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
1260
1261 array_init(return_value);
1262 php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_AVAILABLE_CONFIGURATION, NULL, &Z_ARRVAL_P(return_value));
1263 }
1264 }
1265
1266 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setDebug, 0, 0, 1)
1267 ZEND_ARG_TYPE_INFO(0, callback, IS_CALLABLE, 1)
1268 ZEND_END_ARG_INFO();
1269 static PHP_METHOD(HttpClient, setDebug)
1270 {
1271 zend_fcall_info fci;
1272 zend_fcall_info_cache fcc;
1273 php_http_client_object_t *client_obj;
1274
1275 fci.size = 0;
1276 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|f", &fci, &fcc), invalid_arg, return);
1277
1278 client_obj = PHP_HTTP_OBJ(NULL, getThis());
1279
1280 if (client_obj->debug.fci.size > 0) {
1281 zval_ptr_dtor(&client_obj->debug.fci.function_name);
1282 client_obj->debug.fci.size = 0;
1283 }
1284 if (fci.size > 0) {
1285 memcpy(&client_obj->debug.fci, &fci, sizeof(fci));
1286 memcpy(&client_obj->debug.fcc, &fcc, sizeof(fcc));
1287 Z_ADDREF_P(&fci.function_name);
1288 client_obj->client->callback.debug.func = handle_debug;
1289 client_obj->client->callback.debug.arg = client_obj;
1290 } else {
1291 client_obj->client->callback.debug.func = NULL;
1292 client_obj->client->callback.debug.arg = NULL;
1293 }
1294
1295 RETVAL_ZVAL(getThis(), 1, 0);
1296 }
1297
1298 static zend_function_entry php_http_client_methods[] = {
1299 PHP_ME(HttpClient, __construct, ai_HttpClient_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
1300 PHP_ME(HttpClient, reset, ai_HttpClient_reset, ZEND_ACC_PUBLIC)
1301 PHP_ME(HttpClient, enqueue, ai_HttpClient_enqueue, ZEND_ACC_PUBLIC)
1302 PHP_ME(HttpClient, dequeue, ai_HttpClient_dequeue, ZEND_ACC_PUBLIC)
1303 PHP_ME(HttpClient, requeue, ai_HttpClient_requeue, ZEND_ACC_PUBLIC)
1304 PHP_ME(HttpClient, count, ai_HttpClient_count, ZEND_ACC_PUBLIC)
1305 PHP_ME(HttpClient, send, ai_HttpClient_send, ZEND_ACC_PUBLIC)
1306 PHP_ME(HttpClient, once, ai_HttpClient_once, ZEND_ACC_PUBLIC)
1307 PHP_ME(HttpClient, wait, ai_HttpClient_wait, ZEND_ACC_PUBLIC)
1308 PHP_ME(HttpClient, getResponse, ai_HttpClient_getResponse, ZEND_ACC_PUBLIC)
1309 PHP_ME(HttpClient, getHistory, ai_HttpClient_getHistory, ZEND_ACC_PUBLIC)
1310 PHP_ME(HttpClient, configure, ai_HttpClient_configure, ZEND_ACC_PUBLIC)
1311 PHP_ME(HttpClient, enablePipelining, ai_HttpClient_enablePipelining, ZEND_ACC_PUBLIC|ZEND_ACC_DEPRECATED)
1312 PHP_ME(HttpClient, enableEvents, ai_HttpClient_enableEvents, ZEND_ACC_PUBLIC|ZEND_ACC_DEPRECATED)
1313 PHP_ME(HttpClient, notify, ai_HttpClient_notify, ZEND_ACC_PUBLIC)
1314 PHP_ME(HttpClient, attach, ai_HttpClient_attach, ZEND_ACC_PUBLIC)
1315 PHP_ME(HttpClient, detach, ai_HttpClient_detach, ZEND_ACC_PUBLIC)
1316 PHP_ME(HttpClient, getObservers, ai_HttpClient_getObservers, ZEND_ACC_PUBLIC)
1317 PHP_ME(HttpClient, getProgressInfo, ai_HttpClient_getProgressInfo, ZEND_ACC_PUBLIC)
1318 PHP_ME(HttpClient, getTransferInfo, ai_HttpClient_getTransferInfo, ZEND_ACC_PUBLIC)
1319 PHP_ME(HttpClient, setOptions, ai_HttpClient_setOptions, ZEND_ACC_PUBLIC)
1320 PHP_ME(HttpClient, getOptions, ai_HttpClient_getOptions, ZEND_ACC_PUBLIC)
1321 PHP_ME(HttpClient, setSslOptions, ai_HttpClient_setSslOptions, ZEND_ACC_PUBLIC)
1322 PHP_ME(HttpClient, addSslOptions, ai_HttpClient_addSslOptions, ZEND_ACC_PUBLIC)
1323 PHP_ME(HttpClient, getSslOptions, ai_HttpClient_getSslOptions, ZEND_ACC_PUBLIC)
1324 PHP_ME(HttpClient, setCookies, ai_HttpClient_setCookies, ZEND_ACC_PUBLIC)
1325 PHP_ME(HttpClient, addCookies, ai_HttpClient_addCookies, ZEND_ACC_PUBLIC)
1326 PHP_ME(HttpClient, getCookies, ai_HttpClient_getCookies, ZEND_ACC_PUBLIC)
1327 PHP_ME(HttpClient, getAvailableDrivers, ai_HttpClient_getAvailableDrivers, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
1328 PHP_ME(HttpClient, getAvailableOptions, ai_HttpClient_getAvailableOptions, ZEND_ACC_PUBLIC)
1329 PHP_ME(HttpClient, getAvailableConfiguration, ai_HttpClient_getAvailableConfiguration, ZEND_ACC_PUBLIC)
1330 PHP_ME(HttpClient, setDebug, ai_HttpClient_setDebug, ZEND_ACC_PUBLIC)
1331 EMPTY_FUNCTION_ENTRY
1332 };
1333
1334 PHP_MINIT_FUNCTION(http_client)
1335 {
1336 zend_class_entry ce = {0};
1337
1338 INIT_NS_CLASS_ENTRY(ce, "http", "Client", php_http_client_methods);
1339 php_http_client_class_entry = zend_register_internal_class_ex(&ce, NULL);
1340 php_http_client_class_entry->create_object = php_http_client_object_new;
1341 zend_class_implements(php_http_client_class_entry, 2, spl_ce_SplSubject, spl_ce_Countable);
1342 memcpy(&php_http_client_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
1343 php_http_client_object_handlers.offset = XtOffsetOf(php_http_client_object_t, zo);
1344 php_http_client_object_handlers.free_obj = php_http_client_object_free;
1345 php_http_client_object_handlers.clone_obj = NULL;
1346 php_http_client_object_handlers.get_gc = php_http_client_object_get_gc;
1347 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("observers"), ZEND_ACC_PRIVATE);
1348 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("options"), ZEND_ACC_PROTECTED);
1349 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("history"), ZEND_ACC_PROTECTED);
1350 zend_declare_property_bool(php_http_client_class_entry, ZEND_STRL("recordHistory"), 0, ZEND_ACC_PUBLIC);
1351
1352 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_INFO"), PHP_HTTP_CLIENT_DEBUG_INFO);
1353 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_IN"), PHP_HTTP_CLIENT_DEBUG_IN);
1354 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_OUT"), PHP_HTTP_CLIENT_DEBUG_OUT);
1355 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_HEADER"), PHP_HTTP_CLIENT_DEBUG_HEADER);
1356 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_BODY"), PHP_HTTP_CLIENT_DEBUG_BODY);
1357 zend_declare_class_constant_long(php_http_client_class_entry, ZEND_STRL("DEBUG_SSL"), PHP_HTTP_CLIENT_DEBUG_SSL);
1358
1359 zend_hash_init(&php_http_client_drivers, 2, NULL, php_http_client_driver_hash_dtor, 1);
1360
1361 return SUCCESS;
1362 }
1363
1364 PHP_MSHUTDOWN_FUNCTION(http_client)
1365 {
1366 zend_hash_destroy(&php_http_client_drivers);
1367 return SUCCESS;
1368 }
1369
1370 /*
1371 * Local variables:
1372 * tab-width: 4
1373 * c-basic-offset: 4
1374 * End:
1375 * vim600: noet sw=4 ts=4 fdm=marker
1376 * vim<600: noet sw=4 ts=4
1377 */