a3cb94f4083516e58fbe286d002b434ca39479a8
[m6w6/ext-http] / php_http.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-2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_EXT_HTTP_H
16 #define PHP_EXT_HTTP_H
17
18 #define PHP_EXT_HTTP_VERSION "0.22.0-dev"
19
20 #include "php.h"
21 #include "php_http_std_defs.h"
22 #include "phpstr/phpstr.h"
23 #include "missing.h"
24
25 #ifdef HTTP_WANT_NETDB
26 # ifdef PHP_WIN32
27 # define HTTP_HAVE_NETDB
28 # include <winsock2.h>
29 # elif defined(HAVE_NETDB_H)
30 # define HTTP_HAVE_NETDB
31 # include <netdb.h>
32 # endif
33 #endif
34
35 #if defined(HTTP_WANT_CURL) && defined(HTTP_HAVE_CURL)
36 # ifdef PHP_WIN32
37 # include <winsock2.h>
38 # define CURL_STATICLIB
39 # endif
40 # include <curl/curl.h>
41 #endif
42
43 #if defined(HTTP_WANT_MAGIC) && defined(HTTP_HAVE_MAGIC)
44 # if defined(PHP_WIN32) && !defined(USE_MAGIC_DLL) && !defined(USE_MAGIC_STATIC)
45 # define USE_MAGIC_STATIC
46 # endif
47 # include <magic.h>
48 #endif
49
50 #if defined(HTTP_WANT_ZLIB) && defined(HTTP_HAVE_ZLIB)
51 # include <zlib.h>
52 #endif
53
54 #include <ctype.h>
55
56 extern zend_module_entry http_module_entry;
57 #define phpext_http_ptr &http_module_entry
58
59 extern int http_module_number;
60
61 ZEND_BEGIN_MODULE_GLOBALS(http)
62
63 struct _http_globals_etag {
64 char *mode;
65 void *ctx;
66 zend_bool started;
67 } etag;
68
69 struct _http_globals_log {
70 char *cache;
71 char *redirect;
72 char *allowed_methods;
73 char *composite;
74 } log;
75
76 struct _http_globals_send {
77 double throttle_delay;
78 size_t buffer_size;
79 char *content_type;
80 char *unquoted_etag;
81 time_t last_modified;
82 struct _http_globals_send_deflate {
83 zend_bool start_auto;
84 long start_flags;
85 int encoding;
86 void *stream;
87 } deflate;
88 struct _http_globals_send_inflate {
89 zend_bool start_auto;
90 long start_flags;
91 void *stream;
92 } inflate;
93 } send;
94
95 struct _http_globals_request {
96 struct _http_globals_request_methods {
97 char *allowed;
98 struct _http_globals_request_methods_custom {
99 int count;
100 void *entries;
101 } custom;
102 } methods;
103 } request;
104
105 #ifdef ZEND_ENGINE_2
106 zend_bool only_exceptions;
107 #endif
108
109 zend_bool force_exit;
110
111 ZEND_END_MODULE_GLOBALS(http)
112
113 ZEND_EXTERN_MODULE_GLOBALS(http);
114
115 #ifdef ZTS
116 # include "TSRM.h"
117 # define HTTP_G(v) TSRMG(http_globals_id, zend_http_globals *, v)
118 # define HTTP_GLOBALS ((zend_http_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(http_globals_id)])
119 #else
120 # define HTTP_G(v) (http_globals.v)
121 # define HTTP_GLOBALS (&http_globals)
122 #endif
123 #define getGlobals(G) zend_http_globals *G = HTTP_GLOBALS
124
125 PHP_FUNCTION(http_test);
126 PHP_FUNCTION(http_date);
127 PHP_FUNCTION(http_build_url);
128 PHP_FUNCTION(http_negotiate_language);
129 PHP_FUNCTION(http_negotiate_charset);
130 PHP_FUNCTION(http_negotiate_content_type);
131 PHP_FUNCTION(http_redirect);
132 PHP_FUNCTION(http_throttle);
133 PHP_FUNCTION(http_send_status);
134 PHP_FUNCTION(http_send_last_modified);
135 PHP_FUNCTION(http_send_content_type);
136 PHP_FUNCTION(http_send_content_disposition);
137 PHP_FUNCTION(http_match_modified);
138 PHP_FUNCTION(http_match_etag);
139 PHP_FUNCTION(http_cache_last_modified);
140 PHP_FUNCTION(http_cache_etag);
141 PHP_FUNCTION(http_send_data);
142 PHP_FUNCTION(http_send_file);
143 PHP_FUNCTION(http_send_stream);
144 PHP_FUNCTION(http_chunked_decode);
145 PHP_FUNCTION(http_parse_message);
146 PHP_FUNCTION(http_parse_headers);
147 PHP_FUNCTION(http_parse_cookie);
148 PHP_FUNCTION(http_get_request_headers);
149 PHP_FUNCTION(http_get_request_body);
150 PHP_FUNCTION(http_match_request_header);
151 #ifdef HTTP_HAVE_CURL
152 PHP_FUNCTION(http_get);
153 PHP_FUNCTION(http_head);
154 PHP_FUNCTION(http_post_data);
155 PHP_FUNCTION(http_post_fields);
156 PHP_FUNCTION(http_put_file);
157 PHP_FUNCTION(http_put_stream);
158 #endif /* HTTP_HAVE_CURL */
159 PHP_FUNCTION(http_request_method_register);
160 PHP_FUNCTION(http_request_method_unregister);
161 PHP_FUNCTION(http_request_method_exists);
162 PHP_FUNCTION(http_request_method_name);
163 #ifndef ZEND_ENGINE_2
164 PHP_FUNCTION(http_build_query);
165 #endif /* ZEND_ENGINE_2 */
166 PHP_FUNCTION(ob_etaghandler);
167 #ifdef HTTP_HAVE_ZLIB
168 PHP_FUNCTION(http_deflate);
169 PHP_FUNCTION(http_inflate);
170 PHP_FUNCTION(ob_deflatehandler);
171 PHP_FUNCTION(ob_inflatehandler);
172 #endif
173 PHP_FUNCTION(http_support);
174
175 PHP_MINIT_FUNCTION(http);
176 PHP_MSHUTDOWN_FUNCTION(http);
177 PHP_RINIT_FUNCTION(http);
178 PHP_RSHUTDOWN_FUNCTION(http);
179 PHP_MINFO_FUNCTION(http);
180
181 #endif /* PHP_HTTP_H */
182
183 /*
184 * Local variables:
185 * tab-width: 4
186 * c-basic-offset: 4
187 * End:
188 * vim600: noet sw=4 ts=4 fdm=marker
189 * vim<600: noet sw=4 ts=4
190 */
191