123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "php.h"
- #if HAVE_CURL
- #include "php_curl.h"
- #include <curl/curl.h>
- #include <curl/multi.h>
- #ifdef HAVE_SYS_SELECT_H
- #include <sys/select.h>
- #endif
- #ifdef HAVE_SYS_TIME_H
- #include <sys/time.h>
- #endif
- #ifdef HAVE_SYS_TYPES_H
- #include <sys/types.h>
- #endif
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- PHP_FUNCTION(curl_multi_init)
- {
- php_curlm *mh;
-
- if (zend_parse_parameters_none() == FAILURE) {
- return;
- }
- mh = ecalloc(1, sizeof(php_curlm));
- mh->multi = curl_multi_init();
- zend_llist_init(&mh->easyh, sizeof(zval), _php_curl_multi_cleanup_list, 0);
- ZEND_REGISTER_RESOURCE(return_value, mh, le_curl_multi_handle);
- }
- PHP_FUNCTION(curl_multi_add_handle)
- {
- zval *z_mh;
- zval *z_ch;
- php_curlm *mh;
- php_curl *ch;
- zval tmp_val;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr", &z_mh, &z_ch) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- ZEND_FETCH_RESOURCE(ch, php_curl *, &z_ch, -1, le_curl_name, le_curl);
- _php_curl_cleanup_handle(ch);
-
- tmp_val = *z_ch;
- zval_copy_ctor(&tmp_val);
- zend_llist_add_element(&mh->easyh, &tmp_val);
- RETURN_LONG((long) curl_multi_add_handle(mh->multi, ch->cp));
- }
- void _php_curl_multi_cleanup_list(void *data)
- {
- zval *z_ch = (zval *)data;
- php_curl *ch;
- TSRMLS_FETCH();
- if (!z_ch) {
- return;
- }
-
- ch = (php_curl *) zend_fetch_resource(&z_ch TSRMLS_CC, -1, le_curl_name, NULL, 1, le_curl);
- if (!ch) {
- return;
- }
- zend_list_delete(Z_LVAL_P(z_ch));
- }
- static int curl_compare_resources( zval *z1, zval **z2 )
- {
- return (Z_TYPE_P( z1 ) == Z_TYPE_PP( z2 ) &&
- Z_TYPE_P( z1 ) == IS_RESOURCE &&
- Z_LVAL_P( z1 ) == Z_LVAL_PP( z2 ) );
- }
- PHP_FUNCTION(curl_multi_remove_handle)
- {
- zval *z_mh;
- zval *z_ch;
- php_curlm *mh;
- php_curl *ch;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr", &z_mh, &z_ch) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- ZEND_FETCH_RESOURCE(ch, php_curl *, &z_ch, -1, le_curl_name, le_curl);
- RETVAL_LONG((long) curl_multi_remove_handle(mh->multi, ch->cp));
- zend_llist_del_element( &mh->easyh, &z_ch,
- (int (*)(void *, void *)) curl_compare_resources );
- }
- static void _make_timeval_struct(struct timeval *to, double timeout)
- {
- unsigned long conv;
- conv = (unsigned long) (timeout * 1000000.0);
- to->tv_sec = conv / 1000000;
- to->tv_usec = conv % 1000000;
- }
- PHP_FUNCTION(curl_multi_select)
- {
- zval *z_mh;
- php_curlm *mh;
- fd_set readfds;
- fd_set writefds;
- fd_set exceptfds;
- int maxfd;
- double timeout = 1.0;
- struct timeval to;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|d", &z_mh, &timeout) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- _make_timeval_struct(&to, timeout);
-
- FD_ZERO(&readfds);
- FD_ZERO(&writefds);
- FD_ZERO(&exceptfds);
- curl_multi_fdset(mh->multi, &readfds, &writefds, &exceptfds, &maxfd);
- if (maxfd == -1) {
- RETURN_LONG(-1);
- }
- RETURN_LONG(select(maxfd + 1, &readfds, &writefds, &exceptfds, &to));
- }
- PHP_FUNCTION(curl_multi_exec)
- {
- zval *z_mh;
- zval *z_still_running;
- php_curlm *mh;
- int still_running;
- int result;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rz", &z_mh, &z_still_running) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- {
- zend_llist_position pos;
- php_curl *ch;
- zval *pz_ch;
- for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
- pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
- ZEND_FETCH_RESOURCE(ch, php_curl *, &pz_ch, -1, le_curl_name, le_curl);
- _php_curl_verify_handlers(ch, 1 TSRMLS_CC);
- }
- }
- convert_to_long_ex(&z_still_running);
- still_running = Z_LVAL_P(z_still_running);
- result = curl_multi_perform(mh->multi, &still_running);
- ZVAL_LONG(z_still_running, still_running);
- RETURN_LONG(result);
- }
- PHP_FUNCTION(curl_multi_getcontent)
- {
- zval *z_ch;
- php_curl *ch;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &z_ch) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(ch, php_curl *, &z_ch, -1, le_curl_name, le_curl);
- if (ch->handlers->write->method == PHP_CURL_RETURN) {
- if (ch->handlers->write->buf.len == 0) {
- RETURN_EMPTY_STRING();
- }
- smart_str_0(&ch->handlers->write->buf);
- RETURN_STRINGL(ch->handlers->write->buf.c, ch->handlers->write->buf.len, 1);
- }
- RETURN_NULL();
- }
- PHP_FUNCTION(curl_multi_info_read)
- {
- zval *z_mh;
- php_curlm *mh;
- CURLMsg *tmp_msg;
- int queued_msgs;
- zval *zmsgs_in_queue = NULL;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|z", &z_mh, &zmsgs_in_queue) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- tmp_msg = curl_multi_info_read(mh->multi, &queued_msgs);
- if (tmp_msg == NULL) {
- RETURN_FALSE;
- }
- if (zmsgs_in_queue) {
- zval_dtor(zmsgs_in_queue);
- ZVAL_LONG(zmsgs_in_queue, queued_msgs);
- }
- array_init(return_value);
- add_assoc_long(return_value, "msg", tmp_msg->msg);
- add_assoc_long(return_value, "result", tmp_msg->data.result);
-
- {
- zend_llist_position pos;
- php_curl *ch;
- zval *pz_ch;
-
- for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
- pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
- ZEND_FETCH_RESOURCE(ch, php_curl *, &pz_ch, -1, le_curl_name, le_curl);
- if (ch->cp == tmp_msg->easy_handle) {
-
- zend_list_addref( Z_RESVAL_P( pz_ch ) );
-
- add_assoc_resource(return_value, "handle", Z_RESVAL_P(pz_ch));
- break;
- }
- }
- }
- }
- PHP_FUNCTION(curl_multi_close)
- {
- zval *z_mh;
- php_curlm *mh;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &z_mh) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- zend_list_delete(Z_LVAL_P(z_mh));
- }
- void _php_curl_multi_close(zend_rsrc_list_entry *rsrc TSRMLS_DC)
- {
- php_curlm *mh = (php_curlm *) rsrc->ptr;
- if (mh) {
- zend_llist_position pos;
- php_curl *ch;
- zval *pz_ch;
- for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
- pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
- ch = (php_curl *) zend_fetch_resource(&pz_ch TSRMLS_CC, -1, le_curl_name, NULL, 1, le_curl);
- _php_curl_verify_handlers(ch, 0 TSRMLS_CC);
- }
- curl_multi_cleanup(mh->multi);
- zend_llist_clean(&mh->easyh);
- efree(mh);
- rsrc->ptr = NULL;
- }
- }
- #if LIBCURL_VERSION_NUM >= 0x070c00
- PHP_FUNCTION(curl_multi_strerror)
- {
- long code;
- const char *str;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &code) == FAILURE) {
- return;
- }
- str = curl_multi_strerror(code);
- if (str) {
- RETURN_STRING(str, 1);
- } else {
- RETURN_NULL();
- }
- }
- #endif
- #if LIBCURL_VERSION_NUM >= 0x070f04
- static int _php_curl_multi_setopt(php_curlm *mh, long option, zval **zvalue, zval *return_value TSRMLS_DC)
- {
- CURLMcode error = CURLM_OK;
- switch (option) {
- #if LIBCURL_VERSION_NUM >= 0x071000
- case CURLMOPT_PIPELINING:
- #endif
- #if LIBCURL_VERSION_NUM >= 0x071003
- case CURLMOPT_MAXCONNECTS:
- #endif
- convert_to_long_ex(zvalue);
- error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue));
- break;
- default:
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid curl multi configuration option");
- error = CURLM_UNKNOWN_OPTION;
- break;
- }
- if (error != CURLM_OK) {
- return 1;
- } else {
- return 0;
- }
- }
- PHP_FUNCTION(curl_multi_setopt)
- {
- zval *z_mh, **zvalue;
- long options;
- php_curlm *mh;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlZ", &z_mh, &options, &zvalue) == FAILURE) {
- return;
- }
- ZEND_FETCH_RESOURCE(mh, php_curlm *, &z_mh, -1, le_curl_multi_handle_name, le_curl_multi_handle);
- if (!_php_curl_multi_setopt(mh, options, zvalue, return_value TSRMLS_CC)) {
- RETURN_TRUE;
- } else {
- RETURN_FALSE;
- }
- }
- #endif
- #endif
|