2.2.0
[m6w6/ext-http] / php_http_buffer.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-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_BUFFER_H
14 #define PHP_HTTP_BUFFER_H
15
16 #ifndef PHP_HTTP_BUFFER_DEFAULT_SIZE
17 # define PHP_HTTP_BUFFER_DEFAULT_SIZE 256
18 #endif
19
20 #define PHP_HTTP_BUFFER_ERROR ((size_t) -1)
21 #define PHP_HTTP_BUFFER_NOMEM PHP_HTTP_BUFFER_ERROR
22 #define PHP_HTTP_BUFFER_PASS0 PHP_HTTP_BUFFER_ERROR
23
24 #ifndef PTR_FREE
25 # define PTR_FREE(PTR) \
26 { \
27 if (PTR) { \
28 efree(PTR); \
29 } \
30 }
31 #endif
32 #ifndef PTR_SET
33 # define PTR_SET(PTR, SET) \
34 { \
35 PTR_FREE(PTR); \
36 PTR = SET; \
37 }
38 #endif
39 #ifndef TSRMLS_D
40 # define TSRMLS_D
41 # define TSRMLS_DC
42 # define TSRMLS_CC
43 # define TSRMLS_C
44 #endif
45 #ifdef PHP_ATTRIBUTE_FORMAT
46 # define PHP_HTTP_BUFFER_ATTRIBUTE_FORMAT(f, a, b) PHP_ATTRIBUTE_FORMAT(f, a, b)
47 #else
48 # define PHP_HTTP_BUFFER_ATTRIBUTE_FORMAT(f, a, b)
49 #endif
50 #ifndef pemalloc
51 # define pemalloc(s,p) malloc(s)
52 # define pefree(x,p) free(x)
53 # define perealloc(x,s,p) realloc(x,s)
54 # define perealloc_recoverable perealloc
55 # define ecalloc calloc
56 static inline void *estrndup(void *p, size_t s)
57 {
58 char *r = (char *) malloc(s+1);
59 if (r) memcpy((void *) r, p, s), r[s] = '\0';
60 return (void *) r;
61 }
62 #endif
63
64 #if defined(PHP_WIN32)
65 # if defined(PHP_HTTP_BUFFER_EXPORTS)
66 # define PHP_HTTP_BUFFER_API __declspec(dllexport)
67 # elif defined(COMPILE_DL_PHP_HTTP_BUFFER)
68 # define PHP_HTTP_BUFFER_API __declspec(dllimport)
69 # else
70 # define PHP_HTTP_BUFFER_API
71 # endif
72 #else
73 # define PHP_HTTP_BUFFER_API
74 #endif
75
76 #define PHP_HTTP_BUFFER(p) ((php_http_buffer_t *) (p))
77
78 #define FREE_PHP_HTTP_BUFFER_PTR(STR) pefree(STR, STR->pmem)
79 #define FREE_PHP_HTTP_BUFFER_VAL(STR) php_http_buffer_dtor(STR)
80 #define FREE_PHP_HTTP_BUFFER_ALL(STR) php_http_buffer_free(&(STR))
81 #define FREE_PHP_HTTP_BUFFER(free, STR) \
82 switch (free) \
83 { \
84 case PHP_HTTP_BUFFER_FREE_NOT: \
85 break; \
86 case PHP_HTTP_BUFFER_FREE_PTR: \
87 pefree(STR, STR->pmem); break; \
88 break; \
89 case PHP_HTTP_BUFFER_FREE_VAL: \
90 php_http_buffer_dtor(STR); \
91 break; \
92 case PHP_HTTP_BUFFER_FREE_ALL: { \
93 php_http_buffer_t *PTR = (STR); \
94 php_http_buffer_free(&PTR); \
95 break; \
96 } \
97 default:\
98 break; \
99 }
100
101 #define RETURN_PHP_HTTP_BUFFER_PTR(STR) RETURN_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_PTR, 0)
102 #define RETURN_PHP_HTTP_BUFFER_VAL(STR) RETURN_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_NOT, 0)
103 #define RETURN_PHP_HTTP_BUFFER_DUP(STR) RETURN_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_NOT, 1)
104 #define RETVAL_PHP_HTTP_BUFFER_PTR(STR) RETVAL_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_PTR, 0)
105 #define RETVAL_PHP_HTTP_BUFFER_VAL(STR) RETVAL_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_NOT, 0)
106 #define RETVAL_PHP_HTTP_BUFFER_DUP(STR) RETVAL_PHP_HTTP_BUFFER((STR), PHP_HTTP_BUFFER_FREE_NOT, 1)
107 /* RETURN_PHP_HTTP_BUFFER(buf, PHP_HTTP_BUFFER_FREE_PTR, 0) */
108 #define RETURN_PHP_HTTP_BUFFER(STR, free, dup) \
109 RETVAL_PHP_HTTP_BUFFER((STR), (free), (dup)); \
110 return;
111
112 #define RETVAL_PHP_HTTP_BUFFER(STR, free, dup) \
113 php_http_buffer_fix(STR); \
114 RETVAL_STRINGL((STR)->data, (STR)->used, (dup)); \
115 FREE_PHP_HTTP_BUFFER((free), (STR));
116
117 typedef struct php_http_buffer {
118 char *data;
119 size_t used;
120 size_t free;
121 size_t size;
122 unsigned pmem:1;
123 unsigned reserved:31;
124 } php_http_buffer_t;
125
126 typedef enum php_http_buffer_free {
127 PHP_HTTP_BUFFER_FREE_NOT = 0,
128 PHP_HTTP_BUFFER_FREE_PTR, /* pefree() */
129 PHP_HTTP_BUFFER_FREE_VAL, /* php_http_buffer_dtor() */
130 PHP_HTTP_BUFFER_FREE_ALL /* php_http_buffer_free() */
131 } php_http_buffer_free_t;
132
133 #define PHP_HTTP_BUFFER_ALL_FREE(STR) PHP_HTTP_BUFFER_FREE_ALL,(STR)
134 #define PHP_HTTP_BUFFER_PTR_FREE(STR) PHP_HTTP_BUFFER_FREE_PTR,(STR)
135 #define PHP_HTTP_BUFFER_VAL_FREE(STR) PHP_HTTP_BUFFER_FREE_VAL,(STR)
136 #define PHP_HTTP_BUFFER_NOT_FREE(STR) PHP_HTTP_BUFFER_FREE_NOT,(STR)
137
138 #define PHP_HTTP_BUFFER_INIT_PREALLOC 0x01
139 #define PHP_HTTP_BUFFER_INIT_PERSISTENT 0x02
140
141 /* create a new php_http_buffer_t */
142 #define php_http_buffer_new() php_http_buffer_init(NULL)
143 #define php_http_buffer_init(b) php_http_buffer_init_ex(b, PHP_HTTP_BUFFER_DEFAULT_SIZE, 0)
144 #define php_http_buffer_clone(from, to) php_http_buffer_init_ex((to), (from)->size, (from)->pmem ? PHP_HTTP_BUFFER_INIT_PERSISTENT:0)
145 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_init_ex(php_http_buffer_t *buf, size_t chunk_size, int flags);
146
147 /* create a php_http_buffer_t from a zval or c-string */
148 #define php_http_buffer_from_zval(z) php_http_buffer_from_string(Z_STRVAL(z), Z_STRLEN(z))
149 #define php_http_buffer_from_zval_ex(b, z) php_http_buffer_from_string_ex(b, Z_STRVAL(z), Z_STRLEN(z))
150 #define php_http_buffer_from_string(s, l) php_http_buffer_from_string_ex(NULL, (s), (l))
151 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_from_string_ex(php_http_buffer_t *buf, const char *string, size_t length);
152
153 /* usually only called from within the internal functions */
154 #define php_http_buffer_resize(b, s) php_http_buffer_resize_ex((b), (s), 0, 0)
155 PHP_HTTP_BUFFER_API size_t php_http_buffer_resize_ex(php_http_buffer_t *buf, size_t len, size_t override_size, int allow_error);
156
157 PHP_HTTP_BUFFER_API char *php_http_buffer_account(php_http_buffer_t *buf, size_t to_account);
158
159 /* shrink memory chunk to actually used size (+1) */
160 PHP_HTTP_BUFFER_API size_t php_http_buffer_shrink(php_http_buffer_t *buf);
161
162 /* append data to the php_http_buffer_t */
163 #define php_http_buffer_appends(b, a) php_http_buffer_append((b), (a), sizeof(a)-1)
164 #define php_http_buffer_appendl(b, a) php_http_buffer_append((b), (a), strlen(a))
165 PHP_HTTP_BUFFER_API size_t php_http_buffer_append(php_http_buffer_t *buf, const char *append, size_t append_len);
166 PHP_HTTP_BUFFER_API size_t php_http_buffer_appendf(php_http_buffer_t *buf, const char *format, ...) PHP_HTTP_BUFFER_ATTRIBUTE_FORMAT(printf, 2, 3);
167
168 /* get a zero-terminated string */
169 PHP_HTTP_BUFFER_API char *php_http_buffer_data(const php_http_buffer_t *buf, char **into, size_t *len);
170
171 /* remove a substring */
172 PHP_HTTP_BUFFER_API size_t php_http_buffer_cut(php_http_buffer_t *buf, size_t offset, size_t length);
173
174 /* sets a trailing NUL byte */
175 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_fix(php_http_buffer_t *buf);
176
177 /* reset php_http_buffer_t object */
178 PHP_HTTP_BUFFER_API void php_http_buffer_reset(php_http_buffer_t *buf);
179
180 /* free a php_http_buffer_t objects contents */
181 PHP_HTTP_BUFFER_API void php_http_buffer_dtor(php_http_buffer_t *buf);
182
183 /* free a php_http_buffer_t object completely */
184 PHP_HTTP_BUFFER_API void php_http_buffer_free(php_http_buffer_t **buf);
185
186 /* stores data in a php_http_buffer_t until it reaches chunk_size */
187 PHP_HTTP_BUFFER_API size_t php_http_buffer_chunk_buffer(php_http_buffer_t **s, const char *data, size_t data_len, char **chunk, size_t chunk_size);
188
189 typedef size_t (*php_http_buffer_pass_func_t)(void *opaque, char *, size_t TSRMLS_DC);
190
191 PHP_HTTP_BUFFER_API ssize_t php_http_buffer_passthru(php_http_buffer_t **s, size_t chunk_size, php_http_buffer_pass_func_t passin, void *passin_arg, php_http_buffer_pass_func_t passon, void *passon_arg TSRMLS_DC);
192
193 /* wrapper around php_http_buffer_chunk_buffer, which passes available chunks to passthru() */
194 PHP_HTTP_BUFFER_API size_t php_http_buffer_chunked_output(php_http_buffer_t **s, const char *data, size_t data_len, size_t chunk_size, php_http_buffer_pass_func_t passout, void *opaque TSRMLS_DC);
195
196 /* write chunks directly into php_http_buffer_t buffer */
197 PHP_HTTP_BUFFER_API size_t php_http_buffer_chunked_input(php_http_buffer_t **s, size_t chunk_size, php_http_buffer_pass_func_t passin, void *opaque TSRMLS_DC);
198
199
200 # ifdef PHP_HTTP_BUFFER_EXTENDED
201
202 /* memcmp for php_http_buffer_t objects */
203 PHP_HTTP_BUFFER_API int php_http_buffer_cmp(php_http_buffer_t *left, php_http_buffer_t *right);
204
205 /* get a complete php_http_buffer_t duplicate */
206 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_copy(const php_http_buffer_t *from, php_http_buffer_t *to);
207
208 /* merge several php_http_buffer_t objects
209 use like:
210
211 php_http_buffer_t *final = php_http_buffer_merge(3,
212 PHP_HTTP_BUFFER_NOT_FREE(&keep),
213 PHP_HTTP_BUFFER_ALL_FREE(middle_ptr),
214 PHP_HTTP_BUFFER_VAL_FREE(&local);
215 */
216 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_merge(unsigned argc, ...);
217 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_merge_ex(php_http_buffer_t *buf, unsigned argc, ...);
218 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_merge_va(php_http_buffer_t *buf, unsigned argc, va_list argv);
219
220 /* insert data at a specific position of the php_http_buffer_t */
221 #define php_http_buffer_inserts(b, i, o) php_http_buffer_insert((b), (i), sizeof(i)-1, (o))
222 #define php_http_buffer_insertl(b, i, o) php_http_buffer_insert((b), (i), strlen(i), (o))
223 PHP_HTTP_BUFFER_API size_t php_http_buffer_insert(php_http_buffer_t *buf, const char *insert, size_t insert_len, size_t offset);
224 PHP_HTTP_BUFFER_API size_t php_http_buffer_insertf(php_http_buffer_t *buf, size_t offset, const char *format, ...) PHP_HTTP_BUFFER_ATTRIBUTE_FORMAT(printf, 3, 4);
225
226 /* prepend data */
227 #define php_http_buffer_prepends(b, p) php_http_buffer_prepend((b), (p), sizeof(p)-1)
228 #define php_http_buffer_prependl(b, p) php_http_buffer_prepend((b), (p), strlen(p))
229 PHP_HTTP_BUFFER_API size_t php_http_buffer_prepend(php_http_buffer_t *buf, const char *prepend, size_t prepend_len);
230 PHP_HTTP_BUFFER_API size_t php_http_buffer_prependf(php_http_buffer_t *buf, const char *format, ...) PHP_HTTP_BUFFER_ATTRIBUTE_FORMAT(printf, 2, 3);
231
232 /* get a part of the php_http_buffer_t */
233 #define php_http_buffer_mid(b, o, l) php_http_buffer_sub((b), (o), (l))
234 #define php_http_buffer_left(b, l) php_http_buffer_sub((b), 0, (l))
235 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_right(const php_http_buffer_t *buf, size_t length);
236 PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_sub(const php_http_buffer_t *buf, size_t offset, size_t len);
237
238 # endif /* PHP_HTTP_BUFFER_EXTENDED */
239
240 #endif /* PHP_HTTP_BUFFER_H */
241
242
243 /*
244 * Local variables:
245 * tab-width: 4
246 * c-basic-offset: 4
247 * End:
248 * vim600: sw=4 ts=4 fdm=marker
249 * vim<600: sw=4 ts=4
250 */