b3a249f1c47ae2185a59948d47ee5c4628fdb68c
[m6w6/ext-http] / missing.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-2010, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_MISSING
16 #define PHP_HTTP_MISSING
17
18 #include "php_version.h"
19
20 #if defined(PHP_VERSION_ID) && (PHP_VERSION_ID >= 50399)
21 # define ZEND_LITERAL_KEY_DC , const zend_literal *_zend_literal_key
22 # define ZEND_LITERAL_KEY_CC , _zend_literal_key
23 # define ZEND_LITERAL_NIL_CC , NULL
24 # define HTTP_CHECK_OPEN_BASEDIR(file, act) \
25 if ((PG(open_basedir) && *PG(open_basedir))) \
26 { \
27 const char *tmp = file; \
28 \
29 if (!strncasecmp(tmp, "file:", lenof("file:"))) { \
30 tmp += lenof("file:"); \
31 while ((tmp - (const char *)file < 7) && (*tmp == '/' || *tmp == '\\')) ++tmp; \
32 } \
33 \
34 if ( (tmp != file || !strstr(file, "://")) && \
35 (!*tmp || php_check_open_basedir(tmp TSRMLS_CC))) { \
36 act; \
37 } \
38 }
39
40 #else
41 # define ZEND_LITERAL_KEY_DC
42 # define ZEND_LITERAL_KEY_CC
43 # define HTTP_CHECK_OPEN_BASEDIR(file, act) \
44 if ((PG(open_basedir) && *PG(open_basedir)) || PG(safe_mode)) \
45 { \
46 const char *tmp = file; \
47 \
48 if (!strncasecmp(tmp, "file:", lenof("file:"))) { \
49 tmp += lenof("file:"); \
50 while ((tmp - (const char *)file < 7) && (*tmp == '/' || *tmp == '\\')) ++tmp; \
51 } \
52 \
53 if ( (tmp != file || !strstr(file, "://")) && \
54 (!*tmp || php_check_open_basedir(tmp TSRMLS_CC) || \
55 (PG(safe_mode) && !php_checkuid(tmp, "rb+", CHECKUID_CHECK_MODE_PARAM)))) { \
56 act; \
57 } \
58 }
59
60 #endif
61
62 #if (PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION >= 3)
63 # define HTTP_ZAPI_HASH_TSRMLS_CC TSRMLS_CC
64 # define HTTP_ZAPI_HASH_TSRMLS_DC TSRMLS_DC
65 # define HTTP_ZAPI_CONST_CAST(t) (const t)
66 # define GLOBAL_ERROR_HANDLING EG(error_handling)
67 # define GLOBAL_EXCEPTION_CLASS EG(exception_class)
68 # define IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp) TSRMLS_CC)
69 # define HTTP_STATIC_ARG_INFO
70 #else
71 # define HTTP_ZAPI_HASH_TSRMLS_CC
72 # define HTTP_ZAPI_HASH_TSRMLS_DC
73 # define HTTP_ZAPI_CONST_CAST(t) (t)
74 # define GLOBAL_ERROR_HANDLING PG(error_handling)
75 # define GLOBAL_EXCEPTION_CLASS PG(exception_class)
76 # define IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp))
77 # define HTTP_STATIC_ARG_INFO static
78 #endif
79
80 #if (PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION == 0)
81 # define WONKY
82 #endif
83
84 #ifndef pemalloc_rel
85 # define pemalloc_rel(size, persistent) ((persistent)?malloc(size):emalloc_rel(size))
86 #endif
87
88 #ifndef ZEND_ACC_DEPRECATED
89 # define ZEND_ACC_DEPRECATED 0
90 #endif
91
92 #if PHP_MAJOR_VERSION == 4 && PHP_MINOR_VERSION == 3 && PHP_RELEASE_VERSION < 10
93 # define php_url_parse_ex(u, l) php_url_parse(u)
94 #endif
95
96 #ifndef TSRMLS_FETCH_FROM_CTX
97 # ifdef ZTS
98 # define TSRMLS_FETCH_FROM_CTX(ctx) void ***tsrm_ls = (void ***) ctx
99 # else
100 # define TSRMLS_FETCH_FROM_CTX(ctx)
101 # endif
102 #endif
103
104 #ifndef TSRMLS_SET_CTX
105 # ifdef ZTS
106 # define TSRMLS_SET_CTX(ctx) ctx = (void ***) tsrm_ls
107 # else
108 # define TSRMLS_SET_CTX(ctx)
109 # endif
110 #endif
111
112 #ifndef ZVAL_ADDREF
113 # define ZVAL_ADDREF Z_ADDREF_P
114 #endif
115
116 #ifndef SEPARATE_ARG_IF_REF
117 #define SEPARATE_ARG_IF_REF(zv) \
118 if (PZVAL_IS_REF(zv)) { \
119 zval *ov = zv; \
120 ALLOC_INIT_ZVAL(zv); \
121 Z_TYPE_P(zv) = Z_TYPE_P(ov); \
122 zv->value = ov->value; \
123 zval_copy_ctor(zv); \
124 } else { \
125 ZVAL_ADDREF(zv); \
126 }
127 #endif
128
129 #ifndef ZVAL_ZVAL
130 #define ZVAL_ZVAL(z, zv, copy, dtor) { \
131 int is_ref, refcount; \
132 is_ref = (z)->is_ref; \
133 refcount = (z)->refcount; \
134 *(z) = *(zv); \
135 if (copy) { \
136 zval_copy_ctor(z); \
137 } \
138 if (dtor) { \
139 if (!copy) { \
140 ZVAL_NULL(zv); \
141 } \
142 zval_ptr_dtor(&zv); \
143 } \
144 (z)->is_ref = is_ref; \
145 (z)->refcount = refcount; \
146 }
147 #endif
148 #ifndef RETVAL_ZVAL
149 # define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor)
150 #endif
151 #ifndef RETURN_ZVAL
152 # define RETURN_ZVAL(zv, copy, dtor) { RETVAL_ZVAL(zv, copy, dtor); return; }
153 #endif
154
155 #ifndef ZEND_MN
156 # define ZEND_MN(name) ZEND_FN(name)
157 #endif
158
159 #ifdef WONKY
160 extern int zend_declare_property_double(zend_class_entry *ce, char *name, int name_length, double value, int access_type TSRMLS_DC);
161 extern void zend_update_property_double(zend_class_entry *scope, zval *object, char *name, int name_length, double value TSRMLS_DC);
162
163 extern int zend_declare_property_bool(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);
164 extern void zend_update_property_bool(zend_class_entry *scope, zval *object, char *name, int name_length, long value TSRMLS_DC);
165
166 extern void zend_update_property_stringl(zend_class_entry *scope, zval *object, char *name, int name_length, char *value, int value_len TSRMLS_DC);
167 #endif
168
169 #endif
170
171 /*
172 * Local variables:
173 * tab-width: 4
174 * c-basic-offset: 4
175 * End:
176 * vim600: noet sw=4 ts=4 fdm=marker
177 * vim<600: noet sw=4 ts=4
178 */
179