3073ab4493f2115295a9efd82c812012a3ae7bbb
[m6w6/ext-http] / php_http_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_API_H
16 #define PHP_HTTP_API_H
17
18 #include "php_http_std_defs.h"
19 #include "php_http_send_api.h"
20
21 #define HTTP_SUPPORT 0x01L
22 #define HTTP_SUPPORT_REQUESTS 0x02L
23 #define HTTP_SUPPORT_MAGICMIME 0x04L
24 #define HTTP_SUPPORT_ENCODINGS 0x08L
25 #define HTTP_SUPPORT_SSLREQUESTS 0x20L
26
27 extern PHP_MINIT_FUNCTION(http_support);
28
29 #define http_support(f) _http_support(f)
30 PHP_HTTP_API long _http_support(long feature);
31
32 #define pretty_key(key, key_len, uctitle, xhyphen) _http_pretty_key(key, key_len, uctitle, xhyphen)
33 extern char *_http_pretty_key(char *key, size_t key_len, zend_bool uctitle, zend_bool xhyphen);
34
35 typedef void (*http_key_list_decode_t)(const char *encoded, size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC);
36 #define http_key_list_default_decoder _http_key_list_default_decoder
37 extern void _http_key_list_default_decoder(const char *encoded, size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC);
38
39 #define http_parse_cookie(l, i) _http_parse_key_list((l), (i), ';', http_key_list_default_decoder, 1 TSRMLS_CC)
40 #define http_parse_key_list(l, i, s, d, f) _http_parse_key_list((l), (i), (s), (d), (f) TSRMLS_CC)
41 extern STATUS _http_parse_key_list(const char *list, HashTable *items, char separator, http_key_list_decode_t decode, zend_bool first_entry_is_name_value_pair TSRMLS_DC);
42
43 #define http_error(type, code, string) _http_error_ex(type, code, "%s", string)
44 #define http_error_ex _http_error_ex
45 extern void _http_error_ex(long type TSRMLS_DC, long code, const char *format, ...);
46
47 #define HTTP_CHECK_CURL_INIT(ch, init, action) \
48 if ((!(ch)) && (!((ch) = init))) { \
49 http_error(HE_WARNING, HTTP_E_REQUEST, "Could not initialize curl"); \
50 action; \
51 }
52 #define HTTP_CHECK_CONTENT_TYPE(ct, action) \
53 if (!strchr((ct), '/')) { \
54 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, \
55 "Content type \"%s\" does not seem to contain a primary and a secondary part", (ct)); \
56 action; \
57 }
58 #define HTTP_CHECK_MESSAGE_TYPE_RESPONSE(msg, action) \
59 if (!HTTP_MSG_TYPE(RESPONSE, (msg))) { \
60 http_error(HE_NOTICE, HTTP_E_MESSAGE_TYPE, "HttpMessage is not of type HTTP_MSG_RESPONSE"); \
61 action; \
62 }
63 #define HTTP_CHECK_MESSAGE_TYPE_REQUEST(msg, action) \
64 if (!HTTP_MSG_TYPE(REQUEST, (msg))) { \
65 http_error(HE_NOTICE, HTTP_E_MESSAGE_TYPE, "HttpMessage is not of type HTTP_MSG_REQUEST"); \
66 action; \
67 }
68 #define HTTP_CHECK_GZIP_LEVEL(level, action) \
69 if (level < -1 || level > 9) { \
70 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Invalid compression level (-1 to 9): %d", level); \
71 action; \
72 }
73
74 #define HTTP_CHECK_HEADERS_SENT(action) \
75 if (SG(headers_sent) && !SG(request_info).no_headers) { \
76 char *output_start_filename = php_get_output_start_filename(TSRMLS_C); \
77 int output_start_lineno = php_get_output_start_lineno(TSRMLS_C); \
78 \
79 if (output_start_filename) { \
80 http_error_ex(HE_WARNING, HTTP_E_HEADER, "Cannot modify header information - headers already sent by (output started at %s:%d)", \
81 output_start_filename, output_start_lineno); \
82 } else { \
83 http_error(HE_WARNING, HTTP_E_HEADER, "Cannot modify header information - headers already sent"); \
84 } \
85 action; \
86 }
87
88
89 #define http_log(f, i, m) _http_log_ex((f), (i), (m) TSRMLS_CC)
90 extern void http_log_ex(char *file, const char *ident, const char *message TSRMLS_DC);
91
92 #define http_exit(s, h) http_exit_ex((s), (h), NULL, 1)
93 #define http_exit_ex(s, h, b, e) _http_exit_ex((s), (h), (b), (e) TSRMLS_CC)
94 extern STATUS _http_exit_ex(int status, char *header, char *body, zend_bool send_header TSRMLS_DC);
95
96 #define http_check_method(m) http_check_method_ex((m), HTTP_KNOWN_METHODS)
97 #define http_check_method_ex(m, a) _http_check_method_ex((m), (a))
98 extern STATUS _http_check_method_ex(const char *method, const char *methods);
99
100 #define HTTP_GSC(var, name, ret) HTTP_GSP(var, name, return ret)
101 #define HTTP_GSP(var, name, ret) \
102 if (!(var = _http_get_server_var_ex(name, strlen(name)+1, 1 TSRMLS_CC))) { \
103 ret; \
104 }
105 #define http_got_server_var(v) (NULL != _http_get_server_var_ex((v), sizeof(v), 1 TSRMLS_CC))
106 #define http_get_server_var(v) http_get_server_var_ex((v), sizeof(v))
107 #define http_get_server_var_ex(v, s) _http_get_server_var_ex((v), (s), 0 TSRMLS_CC)
108 PHP_HTTP_API zval *_http_get_server_var_ex(const char *key, size_t key_size, zend_bool check TSRMLS_DC);
109
110 #define http_get_request_body(b, l) _http_get_request_body_ex((b), (l), 1 TSRMLS_CC)
111 #define http_get_Request_body_ex(b, l, d) _http_get_request_body_ex((b), (l), (d) TSRMLS_CC)
112 PHP_HTTP_API STATUS _http_get_request_body_ex(char **body, size_t *length, zend_bool dup TSRMLS_DC);
113
114 #define http_guess_content_type(mf, mm, d, l, m) _http_guess_content_type((mf), (mm), (d), (l), (m) TSRMLS_CC)
115 PHP_HTTP_API char *_http_guess_content_type(const char *magic_file, long magic_mode, void *data_ptr, size_t data_len, http_send_mode mode TSRMLS_DC);
116
117
118 #define http_locate_body _http_locate_body
119 static inline const char *_http_locate_body(const char *message)
120 {
121 const char *cr = strstr(message, "\r\n\r\n");
122 const char *lf = strstr(message, "\n\n");
123
124 if (lf && cr) {
125 return MIN(lf + 2, cr + 4);
126 } else if (lf || cr) {
127 return MAX(lf + 2, cr + 4);
128 } else {
129 return NULL;
130 }
131 }
132
133 #define http_locate_eol _http_locate_eol
134 static inline const char *_http_locate_eol(const char *line, int *eol_len)
135 {
136 const char *eol = strpbrk(line, "\r\n");
137
138 if (eol_len) {
139 *eol_len = eol ? ((eol[0] == '\r' && eol[1] == '\n') ? 2 : 1) : 0;
140 }
141 return eol;
142 }
143
144 #define convert_to_type(t, z) _convert_to_type((t), (z))
145 static inline zval *_convert_to_type(int type, zval *z)
146 {
147 if (Z_TYPE_P(z) != type) {
148 switch (type)
149 {
150 case IS_NULL: convert_to_null(z); break;
151 case IS_BOOL: convert_to_boolean(z); break;
152 case IS_LONG: convert_to_long(z); break;
153 case IS_DOUBLE: convert_to_array(z); break;
154 case IS_STRING: convert_to_string(z); break;
155 case IS_ARRAY: convert_to_array(z); break;
156 case IS_OBJECT: convert_to_object(z); break;
157 }
158 }
159 return z;
160 }
161 #define convert_to_type_ex(t, z, p) _convert_to_type_ex((t), (z), (p))
162 static inline zval *_convert_to_type_ex(int type, zval *z, zval **p)
163 {
164 *p = z;
165 if (Z_TYPE_P(z) != type) {
166 switch (type)
167 {
168 case IS_NULL: convert_to_null_ex(&z); break;
169 case IS_BOOL: convert_to_boolean_ex(&z); break;
170 case IS_LONG: convert_to_long_ex(&z); break;
171 case IS_DOUBLE: convert_to_array_ex(&z); break;
172 case IS_STRING: convert_to_string_ex(&z); break;
173 case IS_ARRAY: convert_to_array_ex(&z); break;
174 case IS_OBJECT: convert_to_object_ex(&z); break;
175 }
176 }
177 if (*p == z) {
178 *p = NULL;
179 } else {
180 *p = z;
181 }
182 return z;
183 }
184
185
186 #endif
187
188 /*
189 * Local variables:
190 * tab-width: 4
191 * c-basic-offset: 4
192 * End:
193 * vim600: noet sw=4 ts=4 fdm=marker
194 * vim<600: noet sw=4 ts=4
195 */
196