X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_request_api.h;h=437fc90045130dc58830aca89fe49b36ff39f9f7;hp=25b22327672cb41ea57c9707cf37c3f4c4644346;hb=2b3353e31dd2ca3e06b714688c651c38b3958c44;hpb=76a1064dde808801f4988df89521a323661742aa diff --git a/php_http_request_api.h b/php_http_request_api.h index 25b2232..437fc90 100644 --- a/php_http_request_api.h +++ b/php_http_request_api.h @@ -17,6 +17,7 @@ #ifndef PHP_HTTP_REQUEST_API_H #define PHP_HTTP_REQUEST_API_H +#ifdef HTTP_HAVE_CURL #include "php_http_std_defs.h" #include "phpstr/phpstr.h" @@ -69,7 +70,6 @@ typedef enum { #define HTTP_REQUEST_BODY_CSTRING 1 #define HTTP_REQUEST_BODY_CURLPOST 2 #define HTTP_REQUEST_BODY_UPLOADFILE 3 -#define HTTP_REQUEST_BODY_UPLOADDATA 4 typedef struct { int type; void *data; @@ -77,14 +77,33 @@ typedef struct { } http_request_body; typedef struct { - CURLM *ch; - zend_llist handles; - zend_llist bodies; - int unfinished; -} http_request_pool; + void ***tsrm_ctx; + void *data; +} http_curl_callback_ctx; -#define http_request_copystr(s) _http_request_copystr((s) TSRMLS_CC) -PHP_HTTP_API char *_http_request_copystr(const char *string TSRMLS_DC); +typedef struct { + phpstr *response; + phpstr *request; + curl_infotype last_info; +} http_curl_conv; + +#define COPY_STRING 1 +#define COPY_SLIST 2 +#define COPY_CONTEXT 3 +#define COPY_CONV 4 +#define http_request_data_copy(type, data) _http_request_data_copy((type), (data) TSRMLS_CC) +extern void *_http_request_data_copy(int type, void *data TSRMLS_DC); +#define http_request_data_free_string _http_request_data_free_string +extern void _http_request_data_free_string(void *string); +#define http_request_data_free_slist _http_request_data_free_slist +extern void _http_request_data_free_slist(void *list); +#define http_request_data_free_context _http_request_data_free_context +extern void _http_request_data_free_context(void *context); +#define http_request_data_free_conv _http_request_data_free_conv +extern void _http_request_data_free_conv(void *conv); + +#define http_request_conv(ch, rs, rq) _http_request_conv((ch), (rs), (rq) TSRMLS_CC) +extern void _http_request_conv(CURL *ch, phpstr* response, phpstr *request TSRMLS_DC); #define http_request_method_name(m) _http_request_method_name((m) TSRMLS_CC) PHP_HTTP_API const char *_http_request_method_name(http_request_method m TSRMLS_DC); @@ -110,30 +129,18 @@ PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC); #define http_request_body_free(b) _http_request_body_free((b) TSRMLS_CC) PHP_HTTP_API void _http_request_body_free(http_request_body *body TSRMLS_DC); -#define http_request_pool_init(p) _http_request_pool_init((p) TSRMLS_CC) -PHP_HTTP_API http_request_pool *_http_request_pool_init(http_request_pool *pool TSRMLS_DC); - -#define http_request_pool_attach(p, r) _http_request_pool_attach((p), (r) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_pool_attach(http_request_pool *pool, zval *request TSRMLS_DC); - -#define http_request_pool_detach(p, r) _http_request_pool_detach((p), (r) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_pool_detach(http_request_pool *pool, zval *request TSRMLS_DC); +#define http_request_init(ch, meth, url, body, options) _http_request_init((ch), (meth), (url), (body), (options) TSRMLS_CC) +PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char *url, http_request_body *body, HashTable *options TSRMLS_DC); -#define http_request_pool_send(p) _http_request_pool_send((p) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_pool_send(http_request_pool *pool TSRMLS_DC); - -#define http_request_init(ch, meth, url, body, options, response) _http_request_init((ch), (meth), (url), (body), (options), (response) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, const char *url, http_request_body *body, HashTable *options, phpstr *response TSRMLS_DC); - -#define http_request_exec(ch, i) _http_request_exec((ch), (i) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_exec(CURL *ch, HashTable *info TSRMLS_DC); +#define http_request_exec(ch, i, response, request) _http_request_exec((ch), (i), (response), (request) TSRMLS_CC) +PHP_HTTP_API STATUS _http_request_exec(CURL *ch, HashTable *info, phpstr *response, phpstr *request TSRMLS_DC); #define http_request_info(ch, i) _http_request_info((ch), (i) TSRMLS_CC) PHP_HTTP_API void _http_request_info(CURL *ch, HashTable *info TSRMLS_DC); #define http_request(meth, url, body, opt, info, resp) _http_request_ex(NULL, (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC) #define http_request_ex(ch, meth, url, body, opt, info, resp) _http_request_ex((ch), (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC) -PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, const char *URL, http_request_body *body, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC); +PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, char *URL, http_request_body *body, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC); #define http_get(u, o, i, r) _http_request_ex(NULL, HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC) #define http_get_ex(c, u, o, i, r) _http_request_ex((c), HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC) @@ -147,6 +154,7 @@ PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, const c #define http_put(u, b, o, i, r) _http_request_ex(NULL, HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC) #define http_put_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC) +#endif #endif /*