* change shutdown order because of resource factory
[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_MH(http_update_persistent_handle_ident)
123 {
124 PHP_HTTP_G->persistent_handle.ident.h = zend_hash_func(new_value, PHP_HTTP_G->persistent_handle.ident.l = new_value_length+1);
125 return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
126 }
127
128 PHP_INI_BEGIN()
129 PHP_HTTP_INI_ENTRY("http.etag.mode", "md5", PHP_INI_ALL, OnUpdateString, env.etag_mode)
130 PHP_HTTP_INI_ENTRY("http.request_datashare.cookie", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.cookie)
131 PHP_HTTP_INI_ENTRY("http.request_datashare.dns", "1", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.dns)
132 PHP_HTTP_INI_ENTRY("http.request_datashare.ssl", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.ssl)
133 PHP_HTTP_INI_ENTRY("http.request_datashare.connect", "0", PHP_INI_SYSTEM, OnUpdateBool, request_datashare.connect)
134 PHP_HTTP_INI_ENTRY("http.persistent_handle.limit", "-1", PHP_INI_SYSTEM, OnUpdateLong, persistent_handle.limit)
135 PHP_HTTP_INI_ENTRY("http.persistent_handle.ident", "GLOBAL", PHP_INI_ALL, http_update_persistent_handle_ident, persistent_handle.ident.s)
136 PHP_INI_END()
137
138 PHP_MINIT_FUNCTION(http)
139 {
140 http_module_number = module_number;
141 ZEND_INIT_MODULE_GLOBALS(php_http, php_http_globals_init_once, NULL);
142 REGISTER_INI_ENTRIES();
143
144 if (0
145 || SUCCESS != PHP_MINIT_CALL(http_fluently_callable)
146 || SUCCESS != PHP_MINIT_CALL(http_object)
147 || SUCCESS != PHP_MINIT_CALL(http_exception)
148 || SUCCESS != PHP_MINIT_CALL(http_persistent_handle)
149 || SUCCESS != PHP_MINIT_CALL(http_cookie)
150 || SUCCESS != PHP_MINIT_CALL(http_encoding)
151 || SUCCESS != PHP_MINIT_CALL(http_filter)
152 || SUCCESS != PHP_MINIT_CALL(http_message)
153 || SUCCESS != PHP_MINIT_CALL(http_message_body)
154 || SUCCESS != PHP_MINIT_CALL(http_property_proxy)
155 || SUCCESS != PHP_MINIT_CALL(http_querystring)
156 || SUCCESS != PHP_MINIT_CALL(http_request_factory)
157 || SUCCESS != PHP_MINIT_CALL(http_request)
158 || SUCCESS != PHP_MINIT_CALL(http_curl)
159 || SUCCESS != PHP_MINIT_CALL(http_neon)
160 || SUCCESS != PHP_MINIT_CALL(http_request_datashare)
161 || SUCCESS != PHP_MINIT_CALL(http_request_method)
162 || SUCCESS != PHP_MINIT_CALL(http_request_pool)
163 || SUCCESS != PHP_MINIT_CALL(http_url)
164 || SUCCESS != PHP_MINIT_CALL(http_env)
165 ) {
166 return FAILURE;
167 }
168
169 return SUCCESS;
170 }
171
172
173
174 PHP_MSHUTDOWN_FUNCTION(http)
175 {
176 UNREGISTER_INI_ENTRIES();
177
178 if (0
179 || SUCCESS != PHP_MSHUTDOWN_CALL(http_message)
180 || SUCCESS != PHP_MSHUTDOWN_CALL(http_curl)
181 || SUCCESS != PHP_MSHUTDOWN_CALL(http_neon)
182 || SUCCESS != PHP_MSHUTDOWN_CALL(http_request_datashare)
183 || SUCCESS != PHP_MSHUTDOWN_CALL(http_request_factory)
184 || SUCCESS != PHP_MSHUTDOWN_CALL(http_persistent_handle)
185 ) {
186 return FAILURE;
187 }
188
189 return SUCCESS;
190 }
191
192 PHP_RINIT_FUNCTION(http)
193 {
194 if (0
195 || SUCCESS != PHP_RINIT_CALL(http_env)
196 || SUCCESS != PHP_RINIT_CALL(http_request_datashare)
197 || SUCCESS != PHP_RINIT_CALL(http_curl)
198 ) {
199 return FAILURE;
200 }
201
202 return SUCCESS;
203 }
204
205 PHP_RSHUTDOWN_FUNCTION(http)
206 {
207 if (0
208 || SUCCESS != PHP_RSHUTDOWN_CALL(http_env)
209 || SUCCESS != PHP_RSHUTDOWN_CALL(http_request_datashare)
210 ) {
211 return FAILURE;
212 }
213
214 return SUCCESS;
215 }
216
217 PHP_MINFO_FUNCTION(http)
218 {
219 php_info_print_table_start();
220 php_info_print_table_header(2, "HTTP Support", "enabled");
221 php_info_print_table_row(2, "Extension Version", PHP_HTTP_EXT_VERSION);
222 php_info_print_table_end();
223
224 php_info_print_table_start();
225 php_info_print_table_header(3, "Used Library", "Compiled", "Linked");
226 php_info_print_table_row(3, "libz", ZLIB_VERSION, zlibVersion());
227 #ifdef PHP_HTTP_HAVE_CURL
228 {
229 curl_version_info_data *cv = curl_version_info(CURLVERSION_NOW);
230 php_info_print_table_row(3, "libcurl", LIBCURL_VERSION, cv->version);
231 }
232 #else
233 php_info_print_table_row(3, "libcurl", "disabled", "disabled");
234 #endif
235 #ifdef PHP_HTTP_HAVE_NEON
236 {
237 char ne_v[16] = {0};
238 sscanf(ne_version_string(), "neon %15[^ :]", &ne_v[0]);
239 php_info_print_table_row(3, "libneon", PHP_HTTP_NEON_VERSION, ne_v);
240 }
241 #else
242 php_info_print_table_row(3, "libneon", "disabled", "disabled");
243 #endif
244
245 #ifdef PHP_HTTP_HAVE_EVENT
246 php_info_print_table_row(3, "libevent", PHP_HTTP_EVENT_VERSION, event_get_version());
247 #else
248 php_info_print_table_row(3, "libevent", "disabled", "disabled");
249 #endif
250 php_info_print_table_end();
251
252 php_info_print_table_start();
253 php_info_print_table_colspan_header(4, "Persistent Handles");
254 php_info_print_table_header(4, "Provider", "Ident", "Used", "Free");
255 {
256 HashTable *ht;
257 HashPosition pos1, pos2;
258 php_http_array_hashkey_t provider = php_http_array_hashkey_init(0), ident = php_http_array_hashkey_init(0);
259 zval **val, **sub, **zused, **zfree;
260
261 if ((ht = php_http_persistent_handle_statall(NULL TSRMLS_CC)) && zend_hash_num_elements(ht)) {
262 FOREACH_HASH_KEYVAL(pos1, ht, provider, val) {
263 if (zend_hash_num_elements(Z_ARRVAL_PP(val))) {
264 FOREACH_KEYVAL(pos2, *val, ident, sub) {
265 if ( SUCCESS == zend_hash_find(Z_ARRVAL_PP(sub), ZEND_STRS("used"), (void *) &zused) &&
266 SUCCESS == zend_hash_find(Z_ARRVAL_PP(sub), ZEND_STRS("free"), (void *) &zfree)) {
267 zval *used = php_http_ztyp(IS_STRING, *zused);
268 zval *free = php_http_ztyp(IS_STRING, *zfree);
269 php_info_print_table_row(4, provider.str, ident.str, Z_STRVAL_P(used), Z_STRVAL_P(free));
270 zval_ptr_dtor(&used);
271 zval_ptr_dtor(&free);
272 } else {
273 php_info_print_table_row(4, provider.str, ident.str, "0", "0");
274 }
275 }
276 } else {
277 php_info_print_table_row(4, provider.str, "N/A", "0", "0");
278 }
279 }
280 } else {
281 php_info_print_table_row(4, "N/A", "N/A", "0", "0");
282 }
283 if (ht) {
284 zend_hash_destroy(ht);
285 FREE_HASHTABLE(ht);
286 }
287 }
288 php_info_print_table_end();
289
290 DISPLAY_INI_ENTRIES();
291 }
292
293
294 /*
295 * Local variables:
296 * tab-width: 4
297 * c-basic-offset: 4
298 * End:
299 * vim600: noet sw=4 ts=4 fdm=marker
300 * vim<600: noet sw=4 ts=4
301 */
302