- proper type checking, thanks Sara
[m6w6/ext-http] / php_http_request_api.h
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-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_REQUEST_API_H
16 #define PHP_HTTP_REQUEST_API_H
17
18 #ifdef HTTP_HAVE_CURL
19
20 #include "php_http_request_method_api.h"
21
22 extern PHP_MINIT_FUNCTION(http_request);
23 extern PHP_MSHUTDOWN_FUNCTION(http_request);
24
25 #define HTTP_REQUEST_BODY_CSTRING 1
26 #define HTTP_REQUEST_BODY_CURLPOST 2
27 #define HTTP_REQUEST_BODY_UPLOADFILE 3
28 typedef struct {
29 int type;
30 void *data;
31 size_t size;
32 } http_request_body;
33
34 typedef struct {
35 void ***tsrm_ctx;
36 void *data;
37 } http_request_callback_ctx;
38
39 typedef struct {
40 phpstr *response;
41 phpstr *request;
42 curl_infotype last_info;
43 } http_request_conv;
44
45 #define HTTP_REQUEST_CALLBACK_DATA(from, type, var) \
46 http_request_callback_ctx *__CTX = (http_request_callback_ctx *) (from); \
47 TSRMLS_FETCH_FROM_CTX(__CTX->tsrm_ctx); \
48 type (var) = (type) (__CTX->data)
49
50 #define http_request_callback_data(data) _http_request_callback_data_ex((data), 1 TSRMLS_CC)
51 #define http_request_callback_data_ex(data, copy) _http_request_callback_data_ex((data), (copy) TSRMLS_CC)
52 extern http_request_callback_ctx *_http_request_callback_data_ex(void *data, zend_bool cpy TSRMLS_DC);
53
54
55 #define COPY_STRING 1
56 #define COPY_SLIST 2
57 #define COPY_CONTEXT 3
58 #define COPY_CONV 4
59 #define http_request_data_copy(type, data) _http_request_data_copy((type), (data) TSRMLS_CC)
60 extern void *_http_request_data_copy(int type, void *data TSRMLS_DC);
61 #define http_request_data_free_string _http_request_data_free_string
62 extern void _http_request_data_free_string(void *string);
63 #define http_request_data_free_slist _http_request_data_free_slist
64 extern void _http_request_data_free_slist(void *list);
65 #define http_request_data_free_context _http_request_data_free_context
66 extern void _http_request_data_free_context(void *context);
67 #define http_request_data_free_conv _http_request_data_free_conv
68 extern void _http_request_data_free_conv(void *conv);
69
70 #define http_request_conv(ch, rs, rq) _http_request_conv((ch), (rs), (rq) TSRMLS_CC)
71 extern void _http_request_conv(CURL *ch, phpstr* response, phpstr *request TSRMLS_DC);
72
73 #define http_request_body_new() _http_request_body_new(TSRMLS_C)
74 PHP_HTTP_API http_request_body *_http_request_body_new(TSRMLS_D);
75
76 #define http_request_body_fill(b, fields, files) _http_request_body_fill((b), (fields), (files) TSRMLS_CC)
77 PHP_HTTP_API STATUS _http_request_body_fill(http_request_body *body, HashTable *fields, HashTable *files TSRMLS_DC);
78
79 #define http_request_body_dtor(b) _http_request_body_dtor((b) TSRMLS_CC)
80 PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC);
81
82 #define http_request_body_free(b) _http_request_body_free((b) TSRMLS_CC)
83 PHP_HTTP_API void _http_request_body_free(http_request_body **body TSRMLS_DC);
84
85 #define http_request_init(ch, meth, url, body, options) _http_request_init((ch), (meth), (url), (body), (options) TSRMLS_CC)
86 PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char *url, http_request_body *body, HashTable *options TSRMLS_DC);
87
88 #define http_request_exec(ch, i, response, request) _http_request_exec((ch), (i), (response), (request) TSRMLS_CC)
89 PHP_HTTP_API STATUS _http_request_exec(CURL *ch, HashTable *info, phpstr *response, phpstr *request TSRMLS_DC);
90
91 #define http_request_info(ch, i) _http_request_info((ch), (i) TSRMLS_CC)
92 PHP_HTTP_API void _http_request_info(CURL *ch, HashTable *info TSRMLS_DC);
93
94 #define http_request(meth, url, body, opt, info, resp) _http_request_ex(NULL, (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
95 #define http_request_ex(ch, meth, url, body, opt, info, resp) _http_request_ex((ch), (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
96 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);
97
98 #define http_get(u, o, i, r) _http_request_ex(NULL, HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
99 #define http_get_ex(c, u, o, i, r) _http_request_ex((c), HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
100
101 #define http_head(u, o, i, r) _http_request_ex(NULL, HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
102 #define http_head_ex(c, u, o, i, r) _http_request_ex((c), HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
103
104 #define http_post(u, b, o, i, r) _http_request_ex(NULL, HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
105 #define http_post_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
106
107 #define http_put(u, b, o, i, r) _http_request_ex(NULL, HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
108 #define http_put_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
109
110 #endif
111 #endif
112
113 /*
114 * Local variables:
115 * tab-width: 4
116 * c-basic-offset: 4
117 * End:
118 * vim600: noet sw=4 ts=4 fdm=marker
119 * vim<600: noet sw=4 ts=4
120 */
121