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