- fix issues ifndef HTTP_HAVE_CURL
[m6w6/ext-http] / php_http_request_api.h
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifndef PHP_HTTP_REQUEST_API_H
19 #define PHP_HTTP_REQUEST_API_H
20
21 #define http_request_supports_ssl() _http_request_supports_ssl()
22 extern zend_bool _http_request_supports_ssl(void);
23
24
25 #ifdef HTTP_HAVE_CURL
26
27 #include "php_http_std_defs.h"
28 #include "php_http_request_method_api.h"
29
30 #include "phpstr/phpstr.h"
31
32 #ifdef PHP_WIN32
33 # include <winsock2.h>
34 #endif
35 #include <curl/curl.h>
36
37 extern PHP_MINIT_FUNCTION(http_request);
38 extern PHP_MSHUTDOWN_FUNCTION(http_request);
39
40 #define HTTP_REQUEST_BODY_CSTRING 1
41 #define HTTP_REQUEST_BODY_CURLPOST 2
42 #define HTTP_REQUEST_BODY_UPLOADFILE 3
43 typedef struct {
44 int type;
45 void *data;
46 size_t size;
47 } http_request_body;
48
49 typedef struct {
50 void ***tsrm_ctx;
51 void *data;
52 } http_request_callback_ctx;
53
54 typedef struct {
55 phpstr *response;
56 phpstr *request;
57 curl_infotype last_info;
58 } http_request_conv;
59
60 #define HTTP_REQUEST_CALLBACK_DATA(from, type, var) \
61 http_request_callback_ctx *__CTX = (http_request_callback_ctx *) (from); \
62 TSRMLS_FETCH_FROM_CTX(__CTX->tsrm_ctx); \
63 type (var) = (type) (__CTX->data)
64
65 #define http_request_callback_data(data) _http_request_callback_data_ex((data), 1 TSRMLS_CC)
66 #define http_request_callback_data_ex(data, copy) _http_request_callback_data_ex((data), (copy) TSRMLS_CC)
67 extern http_request_callback_ctx *_http_request_callback_data_ex(void *data, zend_bool cpy TSRMLS_DC);
68
69
70 #define COPY_STRING 1
71 #define COPY_SLIST 2
72 #define COPY_CONTEXT 3
73 #define COPY_CONV 4
74 #define http_request_data_copy(type, data) _http_request_data_copy((type), (data) TSRMLS_CC)
75 extern void *_http_request_data_copy(int type, void *data TSRMLS_DC);
76 #define http_request_data_free_string _http_request_data_free_string
77 extern void _http_request_data_free_string(void *string);
78 #define http_request_data_free_slist _http_request_data_free_slist
79 extern void _http_request_data_free_slist(void *list);
80 #define http_request_data_free_context _http_request_data_free_context
81 extern void _http_request_data_free_context(void *context);
82 #define http_request_data_free_conv _http_request_data_free_conv
83 extern void _http_request_data_free_conv(void *conv);
84
85 #define http_request_conv(ch, rs, rq) _http_request_conv((ch), (rs), (rq) TSRMLS_CC)
86 extern void _http_request_conv(CURL *ch, phpstr* response, phpstr *request TSRMLS_DC);
87
88 #define http_request_body_new() _http_request_body_new(TSRMLS_C)
89 PHP_HTTP_API http_request_body *_http_request_body_new(TSRMLS_D);
90
91 #define http_request_body_fill(b, fields, files) _http_request_body_fill((b), (fields), (files) TSRMLS_CC)
92 PHP_HTTP_API STATUS _http_request_body_fill(http_request_body *body, HashTable *fields, HashTable *files TSRMLS_DC);
93
94 #define http_request_body_dtor(b) _http_request_body_dtor((b) TSRMLS_CC)
95 PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC);
96
97 #define http_request_body_free(b) _http_request_body_free((b) TSRMLS_CC)
98 PHP_HTTP_API void _http_request_body_free(http_request_body *body TSRMLS_DC);
99
100 #define http_request_init(ch, meth, url, body, options) _http_request_init((ch), (meth), (url), (body), (options) TSRMLS_CC)
101 PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char *url, http_request_body *body, HashTable *options TSRMLS_DC);
102
103 #define http_request_exec(ch, i, response, request) _http_request_exec((ch), (i), (response), (request) TSRMLS_CC)
104 PHP_HTTP_API STATUS _http_request_exec(CURL *ch, HashTable *info, phpstr *response, phpstr *request TSRMLS_DC);
105
106 #define http_request_info(ch, i) _http_request_info((ch), (i) TSRMLS_CC)
107 PHP_HTTP_API void _http_request_info(CURL *ch, HashTable *info TSRMLS_DC);
108
109 #define http_request(meth, url, body, opt, info, resp) _http_request_ex(NULL, (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
110 #define http_request_ex(ch, meth, url, body, opt, info, resp) _http_request_ex((ch), (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
111 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);
112
113 #define http_get(u, o, i, r) _http_request_ex(NULL, HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
114 #define http_get_ex(c, u, o, i, r) _http_request_ex((c), HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
115
116 #define http_head(u, o, i, r) _http_request_ex(NULL, HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
117 #define http_head_ex(c, u, o, i, r) _http_request_ex((c), HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
118
119 #define http_post(u, b, o, i, r) _http_request_ex(NULL, HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
120 #define http_post_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
121
122 #define http_put(u, b, o, i, r) _http_request_ex(NULL, HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
123 #define http_put_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
124
125 #endif
126 #endif
127
128 /*
129 * Local variables:
130 * tab-width: 4
131 * c-basic-offset: 4
132 * End:
133 * vim600: noet sw=4 ts=4 fdm=marker
134 * vim<600: noet sw=4 ts=4
135 */
136