followup on #44
[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
215 php_resource_factory_free(&h->rf);
216 }
217
218 void php_http_client_free(php_http_client_t **h) {
219 if (*h) {
220 php_http_client_dtor(*h);
221 efree(*h);
222 *h = NULL;
223 }
224 }
225
226 ZEND_RESULT_CODE php_http_client_enqueue(php_http_client_t *h, php_http_client_enqueue_t *enqueue)
227 {
228 if (h->ops->enqueue) {
229 if (php_http_client_enqueued(h, enqueue->request, NULL)) {
230 php_error_docref(NULL, E_WARNING, "Failed to enqueue request; request already in queue");
231 return FAILURE;
232 }
233 return h->ops->enqueue(h, enqueue);
234 }
235
236 return FAILURE;
237 }
238
239 ZEND_RESULT_CODE php_http_client_dequeue(php_http_client_t *h, php_http_message_t *request)
240 {
241 if (h->ops->dequeue) {
242 php_http_client_enqueue_t *enqueue = php_http_client_enqueued(h, request, NULL);
243
244 if (!enqueue) {
245 php_error_docref(NULL, E_WARNING, "Failed to dequeue request; request not in queue");
246 return FAILURE;
247 }
248 return h->ops->dequeue(h, enqueue);
249 }
250 return FAILURE;
251 }
252
253 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)
254 {
255 zend_llist_element *el = NULL;
256
257 if (compare_func) {
258 for (el = h->requests.head; el; el = el->next) {
259 if (compare_func((php_http_client_enqueue_t *) el->data, compare_arg)) {
260 break;
261 }
262 }
263 } else {
264 for (el = h->requests.head; el; el = el->next) {
265 if (((php_http_client_enqueue_t *) el->data)->request == compare_arg) {
266 break;
267 }
268 }
269 }
270 return el ? (php_http_client_enqueue_t *) el->data : NULL;
271 }
272
273 ZEND_RESULT_CODE php_http_client_wait(php_http_client_t *h, struct timeval *custom_timeout)
274 {
275 if (h->ops->wait) {
276 return h->ops->wait(h, custom_timeout);
277 }
278
279 return FAILURE;
280 }
281
282 int php_http_client_once(php_http_client_t *h)
283 {
284 if (h->ops->once) {
285 return h->ops->once(h);
286 }
287
288 return FAILURE;
289 }
290
291 ZEND_RESULT_CODE php_http_client_exec(php_http_client_t *h)
292 {
293 if (h->ops->exec) {
294 return h->ops->exec(h);
295 }
296
297 return FAILURE;
298 }
299
300 void php_http_client_reset(php_http_client_t *h)
301 {
302 if (h->ops->reset) {
303 h->ops->reset(h);
304 }
305
306 zend_llist_clean(&h->requests);
307 zend_llist_clean(&h->responses);
308 }
309
310 ZEND_RESULT_CODE php_http_client_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg)
311 {
312 if (h->ops->setopt) {
313 return h->ops->setopt(h, opt, arg);
314 }
315
316 return FAILURE;
317 }
318
319 ZEND_RESULT_CODE php_http_client_getopt(php_http_client_t *h, php_http_client_getopt_opt_t opt, void *arg, void *res_ptr)
320 {
321 if (h->ops->getopt) {
322 return h->ops->getopt(h, opt, arg, res_ptr);
323 }
324 return FAILURE;
325 }
326
327 static zend_object_handlers php_http_client_object_handlers;
328
329 void php_http_client_object_free(zend_object *object)
330 {
331 php_http_client_object_t *o = PHP_HTTP_OBJ(object, NULL);
332
333 PTR_FREE(o->gc);
334
335 php_http_client_free(&o->client);
336 php_http_object_method_dtor(&o->notify);
337 php_http_object_method_free(&o->update);
338 zend_object_std_dtor(object);
339 }
340
341 php_http_client_object_t *php_http_client_object_new_ex(zend_class_entry *ce, php_http_client_t *client)
342 {
343 php_http_client_object_t *o;
344
345 o = ecalloc(1, sizeof(*o) + zend_object_properties_size(ce));
346 zend_object_std_init(&o->zo, ce);
347 object_properties_init(&o->zo, ce);
348
349 o->client = client;
350
351 o->zo.handlers = &php_http_client_object_handlers;
352
353 return o;
354 }
355
356 zend_object *php_http_client_object_new(zend_class_entry *ce)
357 {
358 return &php_http_client_object_new_ex(ce, NULL)->zo;
359 }
360
361 static HashTable *php_http_client_object_get_gc(zval *object, zval **table, int *n)
362 {
363 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, object);
364 zend_llist_element *el = NULL;
365 HashTable *props = Z_OBJPROP_P(object);
366 uint32_t count = zend_hash_num_elements(props) + zend_llist_count(&obj->client->responses) + zend_llist_count(&obj->client->requests);
367 zval *val;
368
369 *n = 0;
370 *table = obj->gc = erealloc(obj->gc, sizeof(zval) * count);
371
372 for (el = obj->client->responses.head; el; el = el->next) {
373 php_http_message_object_t *response_obj = *(php_http_message_object_t **) el->data;
374 ZVAL_OBJ(&obj->gc[(*n)++], &response_obj->zo);
375 }
376
377 for (el = obj->client->requests.head; el; el = el->next) {
378 php_http_client_enqueue_t *q = *(php_http_client_enqueue_t **) el->data;
379 php_http_message_object_t *request_obj = q->opaque; /* FIXME */
380 ZVAL_OBJ(&obj->gc[(*n)++], &request_obj->zo);
381 }
382
383 ZEND_HASH_FOREACH_VAL(props, val)
384 {
385 ZVAL_COPY_VALUE(&obj->gc[(*n)++], val);
386 }
387 ZEND_HASH_FOREACH_END();
388
389 return NULL;
390 }
391
392 static void handle_history(zval *zclient, php_http_message_t *request, php_http_message_t *response)
393 {
394 zval new_hist, old_hist_tmp, *old_hist = zend_read_property(php_http_client_class_entry, zclient, ZEND_STRL("history"), 0, &old_hist_tmp);
395 php_http_message_t *req_copy = php_http_message_copy(request, NULL);
396 php_http_message_t *res_copy = php_http_message_copy(response, NULL);
397 php_http_message_t *zipped = php_http_message_zip(res_copy, req_copy);
398 php_http_message_object_t *obj = php_http_message_object_new_ex(php_http_message_get_class_entry(), zipped);
399
400 ZVAL_OBJ(&new_hist, &obj->zo);
401
402 if (Z_TYPE_P(old_hist) == IS_OBJECT) {
403 php_http_message_object_prepend(&new_hist, old_hist, 1);
404 }
405
406 zend_update_property(php_http_client_class_entry, zclient, ZEND_STRL("history"), &new_hist);
407 zval_ptr_dtor(&new_hist);
408 }
409
410 static ZEND_RESULT_CODE handle_response(void *arg, php_http_client_t *client, php_http_client_enqueue_t *e, php_http_message_t **response)
411 {
412 zend_bool dequeue = 0;
413 zval zclient;
414 php_http_message_t *msg;
415 php_http_client_progress_state_t *progress;
416
417 ZVAL_OBJ(&zclient, &((php_http_client_object_t*) arg)->zo);
418
419 if ((msg = *response)) {
420 php_http_message_object_t *msg_obj;
421 zval info, zresponse, zrequest, rec_hist_tmp;
422 HashTable *info_ht;
423
424 /* ensure the message is of type response (could be uninitialized in case of early error, like DNS) */
425 php_http_message_set_type(msg, PHP_HTTP_RESPONSE);
426
427 if (zend_is_true(zend_read_property(php_http_client_class_entry, &zclient, ZEND_STRL("recordHistory"), 0, &rec_hist_tmp))) {
428 handle_history(&zclient, e->request, *response);
429 }
430
431 /* hard detach, redirects etc. are in the history */
432 php_http_message_free(&msg->parent);
433 *response = NULL;
434
435 msg_obj = php_http_message_object_new_ex(php_http_get_client_response_class_entry(), msg);
436 ZVAL_OBJECT(&zresponse, &msg_obj->zo, 1);
437 ZVAL_OBJECT(&zrequest, &((php_http_message_object_t *) e->opaque)->zo, 1);
438
439 php_http_message_object_prepend(&zresponse, &zrequest, 1);
440
441 object_init(&info);
442 info_ht = HASH_OF(&info);
443 php_http_client_getopt(client, PHP_HTTP_CLIENT_OPT_TRANSFER_INFO, e->request, &info_ht);
444 zend_update_property(php_http_get_client_response_class_entry(), &zresponse, ZEND_STRL("transferInfo"), &info);
445 zval_ptr_dtor(&info);
446
447 zend_llist_add_element(&client->responses, &msg_obj);
448
449 if (e->closure.fci.size) {
450 zval retval;
451 zend_error_handling zeh;
452
453 ZVAL_UNDEF(&retval);
454 zend_fcall_info_argn(&e->closure.fci, 1, &zresponse);
455 zend_replace_error_handling(EH_NORMAL, NULL, &zeh);
456 zend_fcall_info_call(&e->closure.fci, &e->closure.fcc, &retval, NULL);
457 zend_restore_error_handling(&zeh);
458 zend_fcall_info_argn(&e->closure.fci, 0);
459
460 if (Z_TYPE(retval) == IS_TRUE) {
461 dequeue = 1;
462 }
463 zval_ptr_dtor(&retval);
464 }
465
466 zval_ptr_dtor(&zresponse);
467 zval_ptr_dtor(&zrequest);
468 }
469
470 if (SUCCESS == php_http_client_getopt(client, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, e->request, &progress)) {
471 progress->info = "finished";
472 progress->finished = 1;
473 client->callback.progress.func(client->callback.progress.arg, client, e, progress);
474 }
475
476 if (dequeue) {
477 php_http_client_dequeue(client, e->request);
478 }
479
480 return SUCCESS;
481 }
482
483 static void handle_progress(void *arg, php_http_client_t *client, php_http_client_enqueue_t *e, php_http_client_progress_state_t *progress)
484 {
485 zval zclient, args[2];
486 php_http_client_object_t *client_obj = arg;
487 zend_error_handling zeh;
488
489 ZVAL_OBJECT(&zclient, &client_obj->zo, 1);
490 ZVAL_OBJECT(&args[0], &((php_http_message_object_t *) e->opaque)->zo, 1);
491 object_init(&args[1]);
492 add_property_bool(&args[1], "started", progress->started);
493 add_property_bool(&args[1], "finished", progress->finished);
494 add_property_string(&args[1], "info", STR_PTR(progress->info));
495 add_property_double(&args[1], "dltotal", progress->dl.total);
496 add_property_double(&args[1], "dlnow", progress->dl.now);
497 add_property_double(&args[1], "ultotal", progress->ul.total);
498 add_property_double(&args[1], "ulnow", progress->ul.now);
499
500 zend_replace_error_handling(EH_NORMAL, NULL, &zeh);
501 php_http_object_method_call(&client_obj->notify, &zclient, NULL, 2, args);
502 zend_restore_error_handling(&zeh);
503
504 zval_ptr_dtor(&zclient);
505 zval_ptr_dtor(&args[0]);
506 zval_ptr_dtor(&args[1]);
507 }
508
509 static void response_dtor(void *data)
510 {
511 php_http_message_object_t *msg_obj = *(php_http_message_object_t **) data;
512
513 zend_object_release(&msg_obj->zo);
514 }
515
516 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_construct, 0, 0, 0)
517 ZEND_ARG_INFO(0, driver)
518 ZEND_ARG_INFO(0, persistent_handle_id)
519 ZEND_END_ARG_INFO();
520 static PHP_METHOD(HttpClient, __construct)
521 {
522 zend_string *driver_name = NULL, *persistent_handle_name = NULL;
523 php_http_client_driver_t *driver;
524 php_resource_factory_t *rf = NULL;
525 php_http_client_object_t *obj;
526 zval os;
527
528 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|S!S!", &driver_name, &persistent_handle_name), invalid_arg, return);
529
530 if (!zend_hash_num_elements(&php_http_client_drivers)) {
531 php_http_throw(unexpected_val, "No http\\Client drivers available", NULL);
532 return;
533 }
534 if (!(driver = php_http_client_driver_get(driver_name))) {
535 php_http_throw(unexpected_val, "Failed to locate \"%s\" client request handler", driver_name ? driver_name->val : "default");
536 return;
537 }
538
539 object_init_ex(&os, spl_ce_SplObjectStorage);
540 zend_update_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), &os);
541 zval_ptr_dtor(&os);
542
543 if (persistent_handle_name) {
544 php_persistent_handle_factory_t *pf;
545
546 if ((pf = php_persistent_handle_concede(NULL, driver->client_name, persistent_handle_name, NULL, NULL))) {
547 rf = php_persistent_handle_resource_factory_init(NULL, pf);
548 }
549 }
550
551 obj = PHP_HTTP_OBJ(NULL, getThis());
552
553 php_http_expect(obj->client = php_http_client_init(NULL, driver->client_ops, rf, NULL), runtime, return);
554
555 php_http_object_method_init(&obj->notify, getThis(), ZEND_STRL("notify"));
556
557 obj->client->callback.response.func = handle_response;
558 obj->client->callback.response.arg = obj;
559 obj->client->callback.progress.func = handle_progress;
560 obj->client->callback.progress.arg = obj;
561
562 obj->client->responses.dtor = response_dtor;
563 }
564
565 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_reset, 0, 0, 0)
566 ZEND_END_ARG_INFO();
567 static PHP_METHOD(HttpClient, reset)
568 {
569 php_http_client_object_t *obj;
570 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
571
572 obj = PHP_HTTP_OBJ(NULL, getThis());
573
574 obj->iterator = 0;
575 php_http_client_reset(obj->client);
576
577 RETVAL_ZVAL(getThis(), 1, 0);
578 }
579
580 static HashTable *combined_options(zval *client, zval *request)
581 {
582 HashTable *options;
583 unsigned num_options = 0;
584 zval z_roptions, z_options_tmp, *z_coptions = zend_read_property(php_http_client_class_entry, client, ZEND_STRL("options"), 0, &z_options_tmp);
585
586 if (Z_TYPE_P(z_coptions) == IS_ARRAY) {
587 num_options = zend_hash_num_elements(Z_ARRVAL_P(z_coptions));
588 }
589 ZVAL_UNDEF(&z_roptions);
590 zend_call_method_with_0_params(request, NULL, NULL, "getOptions", &z_roptions);
591 if (Z_TYPE(z_roptions) == IS_ARRAY) {
592 unsigned num = zend_hash_num_elements(Z_ARRVAL(z_roptions));
593 if (num > num_options) {
594 num_options = num;
595 }
596 }
597 ALLOC_HASHTABLE(options);
598 ZEND_INIT_SYMTABLE_EX(options, num_options, 0);
599 if (Z_TYPE_P(z_coptions) == IS_ARRAY) {
600 array_copy(Z_ARRVAL_P(z_coptions), options);
601 }
602 if (Z_TYPE(z_roptions) == IS_ARRAY) {
603 array_join(Z_ARRVAL(z_roptions), options, 0, 0);
604 }
605 zval_ptr_dtor(&z_roptions);
606
607 return options;
608 }
609
610 static void msg_queue_dtor(php_http_client_enqueue_t *e)
611 {
612 php_http_message_object_t *msg_obj = e->opaque;
613
614 zend_object_release(&msg_obj->zo);
615 zend_hash_destroy(e->options);
616 FREE_HASHTABLE(e->options);
617
618 if (e->closure.fci.size) {
619 zval_ptr_dtor(&e->closure.fci.function_name);
620 if (e->closure.fci.object) {
621 zend_object_release(e->closure.fci.object);
622 }
623 }
624 }
625
626 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enqueue, 0, 0, 1)
627 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
628 ZEND_ARG_INFO(0, callable)
629 ZEND_END_ARG_INFO();
630 static PHP_METHOD(HttpClient, enqueue)
631 {
632 zval *request;
633 zend_fcall_info fci = empty_fcall_info;
634 zend_fcall_info_cache fcc = empty_fcall_info_cache;
635 php_http_client_object_t *obj;
636 php_http_message_object_t *msg_obj;
637 php_http_client_enqueue_t q;
638
639 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);
640
641 obj = PHP_HTTP_OBJ(NULL, getThis());
642 msg_obj = PHP_HTTP_OBJ(NULL, request);
643
644 if (php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
645 php_http_throw(bad_method_call, "Failed to enqueue request; request already in queue", NULL);
646 return;
647 }
648
649 q.request = msg_obj->message;
650 q.options = combined_options(getThis(), request);
651 q.dtor = msg_queue_dtor;
652 q.opaque = msg_obj;
653 q.closure.fci = fci;
654 q.closure.fcc = fcc;
655
656 if (fci.size) {
657 Z_TRY_ADDREF(fci.function_name);
658 if (fci.object) {
659 ++GC_REFCOUNT(fci.object);
660 }
661 }
662
663 Z_ADDREF_P(request);
664
665 php_http_expect(SUCCESS == php_http_client_enqueue(obj->client, &q), runtime,
666 msg_queue_dtor(&q);
667 return;
668 );
669
670 RETVAL_ZVAL(getThis(), 1, 0);
671 }
672
673 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_dequeue, 0, 0, 1)
674 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
675 ZEND_END_ARG_INFO();
676 static PHP_METHOD(HttpClient, dequeue)
677 {
678 zval *request;
679 php_http_client_object_t *obj;
680 php_http_message_object_t *msg_obj;
681
682 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
683
684 obj = PHP_HTTP_OBJ(NULL, getThis());
685 msg_obj = PHP_HTTP_OBJ(NULL, request);
686
687 if (!php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
688 php_http_throw(bad_method_call, "Failed to dequeue request; request not in queue", NULL);
689 return;
690 }
691
692 php_http_expect(SUCCESS == php_http_client_dequeue(obj->client, msg_obj->message), runtime, return);
693
694 RETVAL_ZVAL(getThis(), 1, 0);
695 }
696
697 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_requeue, 0, 0, 1)
698 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
699 ZEND_ARG_INFO(0, callable)
700 ZEND_END_ARG_INFO();
701 static PHP_METHOD(HttpClient, requeue)
702 {
703 zval *request;
704 zend_fcall_info fci = empty_fcall_info;
705 zend_fcall_info_cache fcc = empty_fcall_info_cache;
706 php_http_client_object_t *obj;
707 php_http_message_object_t *msg_obj;
708 php_http_client_enqueue_t q;
709
710 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);
711
712 obj = PHP_HTTP_OBJ(NULL, getThis());
713 msg_obj = PHP_HTTP_OBJ(NULL, request);
714
715 if (php_http_client_enqueued(obj->client, msg_obj->message, NULL)) {
716 php_http_expect(SUCCESS == php_http_client_dequeue(obj->client, msg_obj->message), runtime, return);
717 }
718
719 q.request = msg_obj->message;
720 q.options = combined_options(getThis(), request);
721 q.dtor = msg_queue_dtor;
722 q.opaque = msg_obj;
723 q.closure.fci = fci;
724 q.closure.fcc = fcc;
725
726 if (fci.size) {
727 Z_TRY_ADDREF(fci.function_name);
728 if (fci.object) {
729 ++GC_REFCOUNT(fci.object);
730 }
731 }
732
733 Z_ADDREF_P(request);
734
735 php_http_expect(SUCCESS == php_http_client_enqueue(obj->client, &q), runtime,
736 msg_queue_dtor(&q);
737 return;
738 );
739
740 RETVAL_ZVAL(getThis(), 1, 0);
741 }
742
743 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_count, 0, 0, 0)
744 ZEND_END_ARG_INFO();
745 static PHP_METHOD(HttpClient, count)
746 {
747 zend_long count_mode = -1;
748
749 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &count_mode)) {
750 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
751
752 RETVAL_LONG(zend_llist_count(&obj->client->requests));
753 }
754 }
755
756 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getResponse, 0, 0, 0)
757 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 1)
758 ZEND_END_ARG_INFO();
759 static PHP_METHOD(HttpClient, getResponse)
760 {
761 zval *zrequest = NULL;
762 php_http_client_object_t *obj;
763
764 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|O", &zrequest, php_http_get_client_request_class_entry()), invalid_arg, return);
765
766 obj = PHP_HTTP_OBJ(NULL, getThis());
767
768 if (zrequest) {
769 /* lookup the response with the request */
770 zend_llist_element *el = NULL;
771 php_http_message_object_t *req_obj = PHP_HTTP_OBJ(NULL, zrequest);
772
773 for (el = obj->client->responses.head; el; el = el->next) {
774 php_http_message_object_t *response_obj = *(php_http_message_object_t **) el->data;
775
776 if (response_obj->message->parent == req_obj->message) {
777 RETURN_OBJECT(&response_obj->zo, 1);
778 }
779 }
780
781 /* not found for the request! */
782 php_http_throw(unexpected_val, "Could not find response for the request", NULL);
783 return;
784 }
785
786 /* pop off the last response */
787 if (obj->client->responses.tail) {
788 php_http_message_object_t *response_obj = *(php_http_message_object_t **) obj->client->responses.tail->data;
789
790 /* pop off and go */
791 if (response_obj) {
792 RETVAL_OBJECT(&response_obj->zo, 1);
793 zend_llist_remove_tail(&obj->client->responses);
794 }
795 }
796 }
797
798 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getHistory, 0, 0, 0)
799 ZEND_END_ARG_INFO();
800 static PHP_METHOD(HttpClient, getHistory)
801 {
802 zval zhistory_tmp, *zhistory;
803
804 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
805
806 zhistory = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("history"), 0, &zhistory_tmp);
807 RETVAL_ZVAL(zhistory, 1, 0);
808 }
809
810 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_send, 0, 0, 0)
811 ZEND_END_ARG_INFO();
812 static PHP_METHOD(HttpClient, send)
813 {
814 php_http_client_object_t *obj;
815
816 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
817
818 obj = PHP_HTTP_OBJ(NULL, getThis());
819
820 php_http_expect(SUCCESS == php_http_client_exec(obj->client), runtime, return);
821
822 RETVAL_ZVAL(getThis(), 1, 0);
823 }
824
825 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_once, 0, 0, 0)
826 ZEND_END_ARG_INFO();
827 static PHP_METHOD(HttpClient, once)
828 {
829 if (SUCCESS == zend_parse_parameters_none()) {
830 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
831
832 RETURN_BOOL(0 < php_http_client_once(obj->client));
833 }
834 }
835
836 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_wait, 0, 0, 0)
837 ZEND_ARG_INFO(0, timeout)
838 ZEND_END_ARG_INFO();
839 static PHP_METHOD(HttpClient, wait)
840 {
841 double timeout = 0;
842
843 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|d", &timeout)) {
844 struct timeval timeout_val;
845 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
846
847 timeout_val.tv_sec = (time_t) timeout;
848 timeout_val.tv_usec = PHP_HTTP_USEC(timeout) % PHP_HTTP_MCROSEC;
849
850 RETURN_BOOL(SUCCESS == php_http_client_wait(obj->client, timeout > 0 ? &timeout_val : NULL));
851 }
852 }
853
854 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_configure, 0, 0, 1)
855 ZEND_ARG_ARRAY_INFO(0, settings, 1)
856 ZEND_END_ARG_INFO();
857 static PHP_METHOD(HttpClient, configure)
858 {
859 HashTable *settings = NULL;
860 php_http_client_object_t *obj;
861
862 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|H!", &settings), invalid_arg, return);
863 obj = PHP_HTTP_OBJ(NULL, getThis());
864
865 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_CONFIGURATION, settings), unexpected_val, return);
866
867 RETVAL_ZVAL(getThis(), 1, 0);
868 }
869
870 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enablePipelining, 0, 0, 0)
871 ZEND_ARG_INFO(0, enable)
872 ZEND_END_ARG_INFO();
873 static PHP_METHOD(HttpClient, enablePipelining)
874 {
875 zend_bool enable = 1;
876 php_http_client_object_t *obj;
877
878 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable), invalid_arg, return);
879
880 obj = PHP_HTTP_OBJ(NULL, getThis());
881
882 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING, &enable), unexpected_val, return);
883
884 RETVAL_ZVAL(getThis(), 1, 0);
885 }
886
887 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_enableEvents, 0, 0, 0)
888 ZEND_ARG_INFO(0, enable)
889 ZEND_END_ARG_INFO();
890 static PHP_METHOD(HttpClient, enableEvents)
891 {
892 zend_bool enable = 1;
893 php_http_client_object_t *obj;
894
895 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable), invalid_arg, return);
896
897 obj = PHP_HTTP_OBJ(NULL, getThis());
898
899 php_http_expect(SUCCESS == php_http_client_setopt(obj->client, PHP_HTTP_CLIENT_OPT_USE_EVENTS, &enable), unexpected_val, return);
900
901 RETVAL_ZVAL(getThis(), 1, 0);
902 }
903
904 struct notify_arg {
905 php_http_object_method_t *cb;
906 zval args[3];
907 int argc;
908 };
909
910 static int notify(zend_object_iterator *iter, void *puser)
911 {
912 zval *observer;
913 struct notify_arg *arg = puser;
914
915 if ((observer = iter->funcs->get_current_data(iter))) {
916 if (SUCCESS == php_http_object_method_call(arg->cb, observer, NULL, arg->argc, arg->args)) {
917 return ZEND_HASH_APPLY_KEEP;
918 }
919 }
920 return ZEND_HASH_APPLY_STOP;
921 }
922
923 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_notify, 0, 0, 0)
924 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 1)
925 ZEND_END_ARG_INFO();
926 static PHP_METHOD(HttpClient, notify)
927 {
928 zval *request = NULL, *zprogress = NULL, observers_tmp, *observers;
929 php_http_client_object_t *client_obj;
930 struct notify_arg arg = {NULL};
931
932 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|O!o!", &request, php_http_get_client_request_class_entry(), &zprogress), invalid_arg, return);
933
934 client_obj = PHP_HTTP_OBJ(NULL, getThis());
935 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
936
937 if (Z_TYPE_P(observers) != IS_OBJECT) {
938 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
939 return;
940 }
941
942 if (client_obj->update) {
943 arg.cb = client_obj->update;
944 ZVAL_COPY(&arg.args[0], getThis());
945 arg.argc = 1;
946
947 if (request) {
948 ZVAL_COPY(&arg.args[1], request);
949 arg.argc += 1;
950 }
951 if (zprogress) {
952 ZVAL_COPY(&arg.args[2], zprogress);
953 arg.argc += 1;
954 }
955
956 spl_iterator_apply(observers, notify, &arg);
957
958 zval_ptr_dtor(getThis());
959 if (request) {
960 zval_ptr_dtor(request);
961 }
962 if (zprogress) {
963 zval_ptr_dtor(zprogress);
964 }
965 }
966
967 RETVAL_ZVAL(getThis(), 1, 0);
968 }
969
970 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_attach, 0, 0, 1)
971 ZEND_ARG_OBJ_INFO(0, observer, SplObserver, 0)
972 ZEND_END_ARG_INFO();
973 static PHP_METHOD(HttpClient, attach)
974 {
975 zval observers_tmp, *observers, *observer, retval;
976 php_http_client_object_t *client_obj;
977
978 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer, spl_ce_SplObserver), invalid_arg, return);
979
980 client_obj = PHP_HTTP_OBJ(NULL, getThis());
981 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
982
983 if (Z_TYPE_P(observers) != IS_OBJECT) {
984 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
985 return;
986 }
987
988 if (!client_obj->update) {
989 client_obj->update = php_http_object_method_init(NULL, observer, ZEND_STRL("update"));
990 }
991
992 ZVAL_UNDEF(&retval);
993 zend_call_method_with_1_params(observers, NULL, NULL, "attach", &retval, observer);
994 zval_ptr_dtor(&retval);
995
996 RETVAL_ZVAL(getThis(), 1, 0);
997 }
998
999 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_detach, 0, 0, 1)
1000 ZEND_ARG_OBJ_INFO(0, observer, SplObserver, 0)
1001 ZEND_END_ARG_INFO();
1002 static PHP_METHOD(HttpClient, detach)
1003 {
1004 zval observers_tmp, *observers, *observer, retval;
1005
1006 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &observer, spl_ce_SplObserver), invalid_arg, return);
1007
1008 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
1009
1010 if (Z_TYPE_P(observers) != IS_OBJECT) {
1011 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
1012 return;
1013 }
1014
1015 ZVAL_UNDEF(&retval);
1016 zend_call_method_with_1_params(observers, NULL, NULL, "detach", &retval, observer);
1017 zval_ptr_dtor(&retval);
1018
1019 RETVAL_ZVAL(getThis(), 1, 0);
1020 }
1021
1022 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getObservers, 0, 0, 0)
1023 ZEND_END_ARG_INFO();
1024 static PHP_METHOD(HttpClient, getObservers)
1025 {
1026 zval observers_tmp, *observers;
1027
1028 php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
1029
1030 observers = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("observers"), 0, &observers_tmp);
1031
1032 if (Z_TYPE_P(observers) != IS_OBJECT) {
1033 php_http_throw(unexpected_val, "Observer storage is corrupted", NULL);
1034 return;
1035 }
1036
1037 RETVAL_ZVAL(observers, 1, 0);
1038 }
1039
1040 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getProgressInfo, 0, 0, 1)
1041 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
1042 ZEND_END_ARG_INFO();
1043 static PHP_METHOD(HttpClient, getProgressInfo)
1044 {
1045 zval *request;
1046 php_http_client_object_t *obj;
1047 php_http_message_object_t *req_obj;
1048 php_http_client_progress_state_t *progress;
1049
1050 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
1051
1052 obj = PHP_HTTP_OBJ(NULL, getThis());
1053 req_obj = PHP_HTTP_OBJ(NULL, request);
1054
1055 php_http_expect(SUCCESS == php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, req_obj->message, &progress), unexpected_val, return);
1056
1057 object_init(return_value);
1058 add_property_bool(return_value, "started", progress->started);
1059 add_property_bool(return_value, "finished", progress->finished);
1060 add_property_string(return_value, "info", STR_PTR(progress->info));
1061 add_property_double(return_value, "dltotal", progress->dl.total);
1062 add_property_double(return_value, "dlnow", progress->dl.now);
1063 add_property_double(return_value, "ultotal", progress->ul.total);
1064 add_property_double(return_value, "ulnow", progress->ul.now);
1065 }
1066
1067 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getTransferInfo, 0, 0, 1)
1068 ZEND_ARG_OBJ_INFO(0, request, http\\Client\\Request, 0)
1069 ZEND_END_ARG_INFO();
1070 static PHP_METHOD(HttpClient, getTransferInfo)
1071 {
1072 zval *request;
1073 HashTable *info;
1074 php_http_client_object_t *obj;
1075 php_http_message_object_t *req_obj;
1076
1077 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &request, php_http_get_client_request_class_entry()), invalid_arg, return);
1078
1079 obj = PHP_HTTP_OBJ(NULL, getThis());
1080 req_obj = PHP_HTTP_OBJ(NULL, request);
1081
1082 object_init(return_value);
1083 info = HASH_OF(return_value);
1084 php_http_expect(SUCCESS == php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_TRANSFER_INFO, req_obj->message, &info), unexpected_val, return);
1085 }
1086
1087 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setOptions, 0, 0, 0)
1088 ZEND_ARG_ARRAY_INFO(0, options, 1)
1089 ZEND_END_ARG_INFO();
1090 static PHP_METHOD(HttpClient, setOptions)
1091 {
1092 zval *opts = NULL;
1093
1094 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1095
1096 php_http_client_options_set(getThis(), opts);
1097
1098 RETVAL_ZVAL(getThis(), 1, 0);
1099 }
1100
1101 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getOptions, 0, 0, 0)
1102 ZEND_END_ARG_INFO();
1103 static PHP_METHOD(HttpClient, getOptions)
1104 {
1105 if (SUCCESS == zend_parse_parameters_none()) {
1106 zval options_tmp, *options = zend_read_property(php_http_client_class_entry, getThis(), ZEND_STRL("options"), 0, &options_tmp);
1107 RETVAL_ZVAL(options, 1, 0);
1108 }
1109 }
1110
1111 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setSslOptions, 0, 0, 0)
1112 ZEND_ARG_ARRAY_INFO(0, ssl_option, 1)
1113 ZEND_END_ARG_INFO();
1114 static PHP_METHOD(HttpClient, setSslOptions)
1115 {
1116 zval *opts = NULL;
1117
1118 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1119
1120 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts, 1);
1121
1122 RETVAL_ZVAL(getThis(), 1, 0);
1123 }
1124
1125 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addSslOptions, 0, 0, 0)
1126 ZEND_ARG_ARRAY_INFO(0, ssl_options, 1)
1127 ZEND_END_ARG_INFO();
1128 static PHP_METHOD(HttpClient, addSslOptions)
1129 {
1130 zval *opts = NULL;
1131
1132 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1133
1134 php_http_client_options_set_subr(getThis(), ZEND_STRL("ssl"), opts, 0);
1135
1136 RETVAL_ZVAL(getThis(), 1, 0);
1137 }
1138
1139 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getSslOptions, 0, 0, 0)
1140 ZEND_END_ARG_INFO();
1141 static PHP_METHOD(HttpClient, getSslOptions)
1142 {
1143 if (SUCCESS == zend_parse_parameters_none()) {
1144 php_http_client_options_get_subr(getThis(), ZEND_STRL("ssl"), return_value);
1145 }
1146 }
1147
1148 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_setCookies, 0, 0, 0)
1149 ZEND_ARG_ARRAY_INFO(0, cookies, 1)
1150 ZEND_END_ARG_INFO();
1151 static PHP_METHOD(HttpClient, setCookies)
1152 {
1153 zval *opts = NULL;
1154
1155 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1156
1157 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts, 1);
1158
1159 RETVAL_ZVAL(getThis(), 1, 0);
1160 }
1161
1162 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_addCookies, 0, 0, 0)
1163 ZEND_ARG_ARRAY_INFO(0, cookies, 1)
1164 ZEND_END_ARG_INFO();
1165 static PHP_METHOD(HttpClient, addCookies)
1166 {
1167 zval *opts = NULL;
1168
1169 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|a!/", &opts), invalid_arg, return);
1170
1171 php_http_client_options_set_subr(getThis(), ZEND_STRL("cookies"), opts, 0);
1172
1173 RETVAL_ZVAL(getThis(), 1, 0);
1174 }
1175
1176 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getCookies, 0, 0, 0)
1177 ZEND_END_ARG_INFO();
1178 static PHP_METHOD(HttpClient, getCookies)
1179 {
1180 if (SUCCESS == zend_parse_parameters_none()) {
1181 php_http_client_options_get_subr(getThis(), ZEND_STRL("cookies"), return_value);
1182 }
1183 }
1184
1185 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableDrivers, 0, 0, 0)
1186 ZEND_END_ARG_INFO();
1187 static PHP_METHOD(HttpClient, getAvailableDrivers)
1188 {
1189 if (SUCCESS == zend_parse_parameters_none()) {
1190 array_init(return_value);
1191 php_http_client_driver_list(Z_ARRVAL_P(return_value));
1192 }
1193 }
1194
1195 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableOptions, 0, 0, 0)
1196 ZEND_END_ARG_INFO();
1197 static PHP_METHOD(HttpClient, getAvailableOptions)
1198 {
1199 if (SUCCESS == zend_parse_parameters_none()) {
1200 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
1201
1202 array_init(return_value);
1203 php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_AVAILABLE_OPTIONS, NULL, &Z_ARRVAL_P(return_value));
1204 }
1205 }
1206
1207 ZEND_BEGIN_ARG_INFO_EX(ai_HttpClient_getAvailableConfiguration, 0, 0, 0)
1208 ZEND_END_ARG_INFO();
1209 static PHP_METHOD(HttpClient, getAvailableConfiguration)
1210 {
1211 if (SUCCESS == zend_parse_parameters_none()) {
1212 php_http_client_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
1213
1214 array_init(return_value);
1215 php_http_client_getopt(obj->client, PHP_HTTP_CLIENT_OPT_AVAILABLE_CONFIGURATION, NULL, &Z_ARRVAL_P(return_value));
1216 }
1217 }
1218
1219 static zend_function_entry php_http_client_methods[] = {
1220 PHP_ME(HttpClient, __construct, ai_HttpClient_construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
1221 PHP_ME(HttpClient, reset, ai_HttpClient_reset, ZEND_ACC_PUBLIC)
1222 PHP_ME(HttpClient, enqueue, ai_HttpClient_enqueue, ZEND_ACC_PUBLIC)
1223 PHP_ME(HttpClient, dequeue, ai_HttpClient_dequeue, ZEND_ACC_PUBLIC)
1224 PHP_ME(HttpClient, requeue, ai_HttpClient_requeue, ZEND_ACC_PUBLIC)
1225 PHP_ME(HttpClient, count, ai_HttpClient_count, ZEND_ACC_PUBLIC)
1226 PHP_ME(HttpClient, send, ai_HttpClient_send, ZEND_ACC_PUBLIC)
1227 PHP_ME(HttpClient, once, ai_HttpClient_once, ZEND_ACC_PUBLIC)
1228 PHP_ME(HttpClient, wait, ai_HttpClient_wait, ZEND_ACC_PUBLIC)
1229 PHP_ME(HttpClient, getResponse, ai_HttpClient_getResponse, ZEND_ACC_PUBLIC)
1230 PHP_ME(HttpClient, getHistory, ai_HttpClient_getHistory, ZEND_ACC_PUBLIC)
1231 PHP_ME(HttpClient, configure, ai_HttpClient_configure, ZEND_ACC_PUBLIC)
1232 PHP_ME(HttpClient, enablePipelining, ai_HttpClient_enablePipelining, ZEND_ACC_PUBLIC|ZEND_ACC_DEPRECATED)
1233 PHP_ME(HttpClient, enableEvents, ai_HttpClient_enableEvents, ZEND_ACC_PUBLIC|ZEND_ACC_DEPRECATED)
1234 PHP_ME(HttpClient, notify, ai_HttpClient_notify, ZEND_ACC_PUBLIC)
1235 PHP_ME(HttpClient, attach, ai_HttpClient_attach, ZEND_ACC_PUBLIC)
1236 PHP_ME(HttpClient, detach, ai_HttpClient_detach, ZEND_ACC_PUBLIC)
1237 PHP_ME(HttpClient, getObservers, ai_HttpClient_getObservers, ZEND_ACC_PUBLIC)
1238 PHP_ME(HttpClient, getProgressInfo, ai_HttpClient_getProgressInfo, ZEND_ACC_PUBLIC)
1239 PHP_ME(HttpClient, getTransferInfo, ai_HttpClient_getTransferInfo, ZEND_ACC_PUBLIC)
1240 PHP_ME(HttpClient, setOptions, ai_HttpClient_setOptions, ZEND_ACC_PUBLIC)
1241 PHP_ME(HttpClient, getOptions, ai_HttpClient_getOptions, ZEND_ACC_PUBLIC)
1242 PHP_ME(HttpClient, setSslOptions, ai_HttpClient_setSslOptions, ZEND_ACC_PUBLIC)
1243 PHP_ME(HttpClient, addSslOptions, ai_HttpClient_addSslOptions, ZEND_ACC_PUBLIC)
1244 PHP_ME(HttpClient, getSslOptions, ai_HttpClient_getSslOptions, ZEND_ACC_PUBLIC)
1245 PHP_ME(HttpClient, setCookies, ai_HttpClient_setCookies, ZEND_ACC_PUBLIC)
1246 PHP_ME(HttpClient, addCookies, ai_HttpClient_addCookies, ZEND_ACC_PUBLIC)
1247 PHP_ME(HttpClient, getCookies, ai_HttpClient_getCookies, ZEND_ACC_PUBLIC)
1248 PHP_ME(HttpClient, getAvailableDrivers, ai_HttpClient_getAvailableDrivers, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
1249 PHP_ME(HttpClient, getAvailableOptions, ai_HttpClient_getAvailableOptions, ZEND_ACC_PUBLIC)
1250 PHP_ME(HttpClient, getAvailableConfiguration, ai_HttpClient_getAvailableConfiguration, ZEND_ACC_PUBLIC)
1251 EMPTY_FUNCTION_ENTRY
1252 };
1253
1254 PHP_MINIT_FUNCTION(http_client)
1255 {
1256 zend_class_entry ce = {0};
1257
1258 INIT_NS_CLASS_ENTRY(ce, "http", "Client", php_http_client_methods);
1259 php_http_client_class_entry = zend_register_internal_class_ex(&ce, NULL);
1260 php_http_client_class_entry->create_object = php_http_client_object_new;
1261 zend_class_implements(php_http_client_class_entry, 2, spl_ce_SplSubject, spl_ce_Countable);
1262 memcpy(&php_http_client_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
1263 php_http_client_object_handlers.offset = XtOffsetOf(php_http_client_object_t, zo);
1264 php_http_client_object_handlers.free_obj = php_http_client_object_free;
1265 php_http_client_object_handlers.clone_obj = NULL;
1266 php_http_client_object_handlers.get_gc = php_http_client_object_get_gc;
1267 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("observers"), ZEND_ACC_PRIVATE);
1268 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("options"), ZEND_ACC_PROTECTED);
1269 zend_declare_property_null(php_http_client_class_entry, ZEND_STRL("history"), ZEND_ACC_PROTECTED);
1270 zend_declare_property_bool(php_http_client_class_entry, ZEND_STRL("recordHistory"), 0, ZEND_ACC_PUBLIC);
1271
1272 zend_hash_init(&php_http_client_drivers, 2, NULL, php_http_client_driver_hash_dtor, 1);
1273
1274 return SUCCESS;
1275 }
1276
1277 PHP_MSHUTDOWN_FUNCTION(http_client)
1278 {
1279 zend_hash_destroy(&php_http_client_drivers);
1280 return SUCCESS;
1281 }
1282
1283 /*
1284 * Local variables:
1285 * tab-width: 4
1286 * c-basic-offset: 4
1287 * End:
1288 * vim600: noet sw=4 ts=4 fdm=marker
1289 * vim<600: noet sw=4 ts=4
1290 */