http\Env::parseParams()
[m6w6/ext-http] / php_http.c
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-2010, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id: http.c 300300 2010-06-09 07:29:35Z mike $ */
14
15 #include "php_http.h"
16
17 #include <zlib.h>
18 #ifdef PHP_HTTP_HAVE_CURL
19 # include <curl/curl.h>
20 # ifdef PHP_HTTP_HAVE_EVENT
21 # include <event.h>
22 # endif
23 #endif
24 #ifdef PHP_HTTP_HAVE_NEON
25 # include "neon/ne_utils.h"
26 #endif
27
28 #include <main/php_ini.h>
29 #include <ext/standard/info.h>
30 #include <Zend/zend_extensions.h>
31
32 ZEND_DECLARE_MODULE_GLOBALS(php_http);
33
34 #ifdef COMPILE_DL_HTTP
35 ZEND_GET_MODULE(http)
36 #endif
37
38 zend_function_entry http_functions[] = {
39 EMPTY_FUNCTION_ENTRY
40 };
41
42 PHP_MINIT_FUNCTION(http);
43 PHP_MSHUTDOWN_FUNCTION(http);
44 PHP_RINIT_FUNCTION(http);
45 PHP_RSHUTDOWN_FUNCTION(http);
46 PHP_MINFO_FUNCTION(http);
47
48 static zend_module_dep http_module_deps[] = {
49 ZEND_MOD_REQUIRED("spl")
50 #ifdef PHP_HTTP_HAVE_HASH
51 ZEND_MOD_REQUIRED("hash")
52 #endif
53 #ifdef PHP_HTTP_HAVE_ICONV
54 ZEND_MOD_REQUIRED("iconv")
55 #endif
56 #ifdef PHP_HTTP_HAVE_EVENT
57 ZEND_MOD_CONFLICTS("event")
58 #endif
59 {NULL, NULL, NULL, 0}
60 };
61
62 zend_module_entry http_module_entry = {
63 STANDARD_MODULE_HEADER_EX,
64 NULL,
65 http_module_deps,
66 "http",
67 http_functions,
68 PHP_MINIT(http),
69 PHP_MSHUTDOWN(http),
70 PHP_RINIT(http),
71 PHP_RSHUTDOWN(http),
72 PHP_MINFO(http),
73 PHP_HTTP_EXT_VERSION,
74 STANDARD_MODULE_PROPERTIES
75 };
76
77 int http_module_number;
78
79 #if PHP_DEBUG
80 void _dpf(int type, const char *data, size_t length)
81 {
82 static const char _sym[] = "><><><";
83 if (type) {
84 int nwp = 0;
85 for (fprintf(stderr, "%c ", _sym[type-1]); length--; data++) {
86 int ip = PHP_HTTP_IS_CTYPE(print, *data);
87 if (!ip && *data != '\r' && *data != '\n') nwp = 1;
88 fprintf(stderr, ip?"%c":"\\x%02x", (int) (*data & 0xff));
89 if (!nwp && *data == '\n' && length) {
90 fprintf(stderr, "\n%c ", _sym[type-1]);
91 }
92 }
93 fprintf(stderr, "\n");
94 } else {
95 fprintf(stderr, "# %.*s\n", (int) length, data);
96 }
97 }
98 #endif
99
100 static void php_http_globals_init_once(zend_php_http_globals *G)
101 {
102 memset(G, 0, sizeof(*G));
103 }
104
105 static inline void php_http_globals_init(zend_php_http_globals *G TSRMLS_DC)
106 {
107 }
108
109 static inline void php_http_globals_free(zend_php_http_globals *G TSRMLS_DC)
110 {
111 }
112
113 #if defined(ZTS) && defined(PHP_DEBUG)
114 #if ZTS && PHP_DEBUG
115 zend_php_http_globals *php_http_globals(void)
116 {
117 TSRMLS_FETCH();
118 return PHP_HTTP_G;
119 }
120 #endif
121 #endif
122 PHP_INI_BEGIN()
123 PHP_HTTP_INI_ENTRY("http.etag.mode", "md5", PHP_INI_ALL, OnUpdateString, env.etag_mode)
124 PHP_HTTP_INI_ENTRY("http.request_datashare.cookie", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.cookie)
125 PHP_HTTP_INI_ENTRY("http.request_datashare.dns", "1", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.dns)
126 PHP_HTTP_INI_ENTRY("http.request_datashare.ssl", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.ssl)
127 PHP_HTTP_INI_ENTRY("http.request_datashare.connect", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.connect)
128 PHP_HTTP_INI_ENTRY("http.persistent_handle.limit", "-1", PHP_INI_SYSTEM, OnUpdateLong, persistent_handle.limit)
129 PHP_INI_END()
130
131 PHP_MINIT_FUNCTION(http)
132 {
133 http_module_number = module_number;
134 ZEND_INIT_MODULE_GLOBALS(php_http, php_http_globals_init_once, NULL);
135 REGISTER_INI_ENTRIES();
136
137 if (0
138 || SUCCESS != PHP_MINIT_CALL(http_fluently_callable)
139 || SUCCESS != PHP_MINIT_CALL(http_object)
140 || SUCCESS != PHP_MINIT_CALL(http_exception)
141 || SUCCESS != PHP_MINIT_CALL(http_persistent_handle)
142 || SUCCESS != PHP_MINIT_CALL(http_cookie)
143 || SUCCESS != PHP_MINIT_CALL(http_encoding)
144 || SUCCESS != PHP_MINIT_CALL(http_filter)
145 || SUCCESS != PHP_MINIT_CALL(http_message)
146 || SUCCESS != PHP_MINIT_CALL(http_message_body)
147 || SUCCESS != PHP_MINIT_CALL(http_property_proxy)
148 || SUCCESS != PHP_MINIT_CALL(http_querystring)
149 || SUCCESS != PHP_MINIT_CALL(http_request_factory)
150 || SUCCESS != PHP_MINIT_CALL(http_request)
151 || SUCCESS != PHP_MINIT_CALL(http_curl)
152 || SUCCESS != PHP_MINIT_CALL(http_neon)
153 || SUCCESS != PHP_MINIT_CALL(http_request_datashare)
154 || SUCCESS != PHP_MINIT_CALL(http_request_method)
155 || SUCCESS != PHP_MINIT_CALL(http_request_pool)
156 || SUCCESS != PHP_MINIT_CALL(http_url)
157 || SUCCESS != PHP_MINIT_CALL(http_env)
158 || SUCCESS != PHP_MINIT_CALL(http_env_response)
159 ) {
160 return FAILURE;
161 }
162
163 return SUCCESS;
164 }
165
166
167
168 PHP_MSHUTDOWN_FUNCTION(http)
169 {
170 UNREGISTER_INI_ENTRIES();
171
172 if (0
173 || SUCCESS != PHP_MSHUTDOWN_CALL(http_message)
174 || SUCCESS != PHP_MSHUTDOWN_CALL(http_curl)
175 || SUCCESS != PHP_MSHUTDOWN_CALL(http_neon)
176 || SUCCESS != PHP_MSHUTDOWN_CALL(http_request_datashare)
177 || SUCCESS != PHP_MSHUTDOWN_CALL(http_request_factory)
178 || SUCCESS != PHP_MSHUTDOWN_CALL(http_persistent_handle)
179 ) {
180 return FAILURE;
181 }
182
183 return SUCCESS;
184 }
185
186 PHP_RINIT_FUNCTION(http)
187 {
188 if (0
189 || SUCCESS != PHP_RINIT_CALL(http_env)
190 || SUCCESS != PHP_RINIT_CALL(http_request_datashare)
191 || SUCCESS != PHP_RINIT_CALL(http_curl)
192 ) {
193 return FAILURE;
194 }
195
196 return SUCCESS;
197 }
198
199 PHP_RSHUTDOWN_FUNCTION(http)
200 {
201 if (0
202 || SUCCESS != PHP_RSHUTDOWN_CALL(http_env)
203 || SUCCESS != PHP_RSHUTDOWN_CALL(http_request_datashare)
204 ) {
205 return FAILURE;
206 }
207
208 return SUCCESS;
209 }
210
211 PHP_MINFO_FUNCTION(http)
212 {
213 php_info_print_table_start();
214 php_info_print_table_header(2, "HTTP Support", "enabled");
215 php_info_print_table_row(2, "Extension Version", PHP_HTTP_EXT_VERSION);
216 php_info_print_table_end();
217
218 php_info_print_table_start();
219 php_info_print_table_header(3, "Used Library", "Compiled", "Linked");
220 php_info_print_table_row(3, "libz", ZLIB_VERSION, zlibVersion());
221 #ifdef PHP_HTTP_HAVE_CURL
222 {
223 curl_version_info_data *cv = curl_version_info(CURLVERSION_NOW);
224 php_info_print_table_row(3, "libcurl", LIBCURL_VERSION, cv->version);
225 }
226 #else
227 php_info_print_table_row(3, "libcurl", "disabled", "disabled");
228 #endif
229 #ifdef PHP_HTTP_HAVE_NEON
230 {
231 char ne_v[16] = {0};
232 sscanf(ne_version_string(), "neon %15[^ :]", &ne_v[0]);
233 php_info_print_table_row(3, "libneon", PHP_HTTP_NEON_VERSION, ne_v);
234 }
235 #else
236 php_info_print_table_row(3, "libneon", "disabled", "disabled");
237 #endif
238
239 #ifdef PHP_HTTP_HAVE_EVENT
240 php_info_print_table_row(3, "libevent", PHP_HTTP_EVENT_VERSION, event_get_version());
241 #else
242 php_info_print_table_row(3, "libevent", "disabled", "disabled");
243 #endif
244 php_info_print_table_end();
245
246 php_info_print_table_start();
247 php_info_print_table_colspan_header(4, "Persistent Handles");
248 php_info_print_table_header(4, "Provider", "Ident", "Used", "Free");
249 {
250 HashTable *ht;
251 HashPosition pos1, pos2;
252 php_http_array_hashkey_t provider = php_http_array_hashkey_init(0), ident = php_http_array_hashkey_init(0);
253 zval **val, **sub, **zused, **zfree;
254
255 if ((ht = php_http_persistent_handle_statall(NULL TSRMLS_CC)) && zend_hash_num_elements(ht)) {
256 FOREACH_HASH_KEYVAL(pos1, ht, provider, val) {
257 if (zend_hash_num_elements(Z_ARRVAL_PP(val))) {
258 FOREACH_KEYVAL(pos2, *val, ident, sub) {
259 if ( SUCCESS == zend_hash_find(Z_ARRVAL_PP(sub), ZEND_STRS("used"), (void *) &zused) &&
260 SUCCESS == zend_hash_find(Z_ARRVAL_PP(sub), ZEND_STRS("free"), (void *) &zfree)) {
261 zval *used = php_http_ztyp(IS_STRING, *zused);
262 zval *free = php_http_ztyp(IS_STRING, *zfree);
263 php_info_print_table_row(4, provider.str, ident.str, Z_STRVAL_P(used), Z_STRVAL_P(free));
264 zval_ptr_dtor(&used);
265 zval_ptr_dtor(&free);
266 } else {
267 php_info_print_table_row(4, provider.str, ident.str, "0", "0");
268 }
269 }
270 } else {
271 php_info_print_table_row(4, provider.str, "N/A", "0", "0");
272 }
273 }
274 } else {
275 php_info_print_table_row(4, "N/A", "N/A", "0", "0");
276 }
277 if (ht) {
278 zend_hash_destroy(ht);
279 FREE_HASHTABLE(ht);
280 }
281 }
282 php_info_print_table_end();
283
284 DISPLAY_INI_ENTRIES();
285 }
286
287
288 /*
289 * Local variables:
290 * tab-width: 4
291 * c-basic-offset: 4
292 * End:
293 * vim600: noet sw=4 ts=4 fdm=marker
294 * vim<600: noet sw=4 ts=4
295 */
296