9e18e5464df99d55ede2ecc471a7d359c5b0ef0c
[m6w6/ext-http] / phpstr / phpstr.h
1
2 /* $Id$ */
3
4 #ifndef _PHPSTR_H_
5 #define _PHPSTR_H_
6
7 #include "php.h"
8
9 #ifndef PHPSTR_DEFAULT_SIZE
10 # define PHPSTR_DEFAULT_SIZE 256
11 #endif
12
13 #ifndef STR_SET
14 # define STR_SET(STR, SET) \
15 { \
16 STR_FREE(STR); \
17 STR = SET; \
18 }
19 #endif
20
21 #if defined(PHP_WIN32)
22 # if defined(PHPSTR_EXPORTS)
23 # define PHPSTR_API __declspec(dllexport)
24 # elif defined(COMPILE_DL_PHPSTR)
25 # define PHPSTR_API __declspec(dllimport)
26 # else
27 # define PHPSTR_API
28 # endif
29 #else
30 # define PHPSTR_API
31 #endif
32
33 #define PHPSTR(p) ((phpstr *) (p))
34 #define PHPSTR_VAL(p) (PHPSTR(p))->data
35 #define PHPSTR_LEN(p) (PHPSTR(p))->used
36
37 #define FREE_PHPSTR_PTR(STR) pefree(STR, STR->pmem)
38 #define FREE_PHPSTR_VAL(STR) phpstr_dtor(STR)
39 #define FREE_PHPSTR_ALL(STR) phpstr_free(&(STR))
40 #define FREE_PHPSTR(free, STR) \
41 switch (free) \
42 { \
43 case PHPSTR_FREE_NOT: break; \
44 case PHPSTR_FREE_PTR: pefree(STR, STR->pmem); break; \
45 case PHPSTR_FREE_VAL: phpstr_dtor(STR); break; \
46 case PHPSTR_FREE_ALL: \
47 { \
48 phpstr *PTR = (STR); \
49 phpstr_free(&PTR); \
50 } \
51 break; \
52 default: break; \
53 }
54
55 #define RETURN_PHPSTR_PTR(STR) RETURN_PHPSTR((STR), PHPSTR_FREE_PTR, 0)
56 #define RETURN_PHPSTR_VAL(STR) RETURN_PHPSTR((STR), PHPSTR_FREE_NOT, 0)
57 #define RETVAL_PHPSTR_PTR(STR) RETVAL_PHPSTR((STR), PHPSTR_FREE_PTR, 0)
58 #define RETVAL_PHPSTR_VAL(STR) RETVAL_PHPSTR((STR), PHPSTR_FREE_NOT, 0)
59 /* RETURN_PHPSTR(buf, PHPSTR_FREE_PTR, 0) */
60 #define RETURN_PHPSTR(STR, free, dup) \
61 RETVAL_PHPSTR((STR), (free), (dup)); \
62 return;
63
64 #define RETVAL_PHPSTR(STR, free, dup) \
65 phpstr_fix(STR); \
66 RETVAL_STRINGL((STR)->data, (STR)->used, (dup)); \
67 FREE_PHPSTR((free), (STR));
68
69 typedef struct {
70 size_t size;
71 char *data;
72 size_t used;
73 size_t free;
74 int pmem;
75 } phpstr;
76
77 typedef enum {
78 PHPSTR_FREE_NOT = 0,
79 PHPSTR_FREE_PTR, /* pefree() */
80 PHPSTR_FREE_VAL, /* phpstr_dtor() */
81 PHPSTR_FREE_ALL /* phpstr_free() */
82 } phpstr_free_t;
83
84 #define PHPSTR_ALL_FREE(STR) PHPSTR_FREE_ALL,(STR)
85 #define PHPSTR_PTR_FREE(STR) PHPSTR_FREE_PTR,(STR)
86 #define PHPSTR_VAL_FREE(STR) PHPSTR_FREE_VAL,(STR)
87 #define PHPSTR_NOT_FREE(STR) PHPSTR_FREE_NOT,(STR)
88
89 #define PHPSTR_INIT_PREALLOC 0x01
90 #define PHPSTR_INIT_PERSISTENT 0x02
91
92 /* create a new phpstr */
93 #define phpstr_new() phpstr_init(NULL)
94 #define phpstr_init(b) phpstr_init_ex(b, 0, 0)
95 #define phpstr_clone(phpstr_pointer) phpstr_init_ex(NULL, (phpstr_pointer)->size, (phpstr_pointer)->pmem ? PHPSTR_INIT_PERSISTENT:0)
96 PHPSTR_API phpstr *phpstr_init_ex(phpstr *buf, size_t chunk_size, int flags);
97
98 /* create a phpstr from a zval or c-string */
99 #define phpstr_from_zval(z) phpstr_from_string(Z_STRVAL(z), Z_STRLEN(z))
100 #define phpstr_from_zval_ex(b, z) phpstr_from_string_ex(b, Z_STRVAL(z), Z_STRLEN(z))
101 #define phpstr_from_string(s, l) phpstr_from_string_ex(NULL, (s), (l))
102 PHPSTR_API phpstr *phpstr_from_string_ex(phpstr *buf, const char *string, size_t length);
103
104 /* usually only called from within the internal functions */
105 #define phpstr_resize(b, s) phpstr_resize_ex((b), (s), 0)
106 PHPSTR_API size_t phpstr_resize_ex(phpstr *buf, size_t len, size_t override_size);
107
108 /* append data to the phpstr */
109 #define phpstr_appends(b, a) phpstr_append((b), (a), sizeof(a)-1)
110 #define phpstr_appendl(b, a) phpstr_append((b), (a), strlen(a))
111 PHPSTR_API size_t phpstr_append(phpstr *buf, const char *append, size_t append_len);
112 PHPSTR_API size_t phpstr_appendf(phpstr *buf, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
113
114 /* insert data at a specific position of the phpstr */
115 #define phpstr_inserts(b, i, o) phpstr_insert((b), (i), sizeof(i)-1, (o))
116 #define phpstr_insertl(b, i, o) phpstr_insert((b), (i), strlen(i), (o))
117 PHPSTR_API size_t phpstr_insert(phpstr *buf, const char *insert, size_t insert_len, size_t offset);
118 PHPSTR_API size_t phpstr_insertf(phpstr *buf, size_t offset, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
119
120 /* prepend data */
121 #define phpstr_prepends(b, p) phpstr_prepend((b), (p), sizeof(p)-1)
122 #define phpstr_prependl(b, p) phpstr_prepend((b), (p), strlen(p))
123 PHPSTR_API size_t phpstr_prepend(phpstr *buf, const char *prepend, size_t prepend_len);
124 PHPSTR_API size_t phpstr_prependf(phpstr *buf, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
125
126 /* get a zero-terminated string */
127 PHPSTR_API char *phpstr_data(const phpstr *buf, char **into, size_t *len);
128
129 /* get a part of the phpstr */
130 #define phpstr_mid(b, o, l) phpstr_sub((b), (o), (l))
131 #define phpstr_left(b, l) phpstr_sub((b), 0, (l))
132 PHPSTR_API phpstr *phpstr_right(const phpstr *buf, size_t length);
133 PHPSTR_API phpstr *phpstr_sub(const phpstr *buf, size_t offset, size_t len);
134
135 /* remove a substring */
136 PHPSTR_API size_t phpstr_cut(phpstr *buf, size_t offset, size_t length);
137
138 /* get a complete phpstr duplicate */
139 PHPSTR_API phpstr *phpstr_dup(const phpstr *buf);
140
141 /* merge several phpstr objects
142 use like:
143
144 phpstr *final = phpstr_merge(3,
145 PHPSTR_NOT_FREE(&keep),
146 PHPSTR_ALL_FREE(middle_ptr),
147 PHPSTR_VAL_FREE(&local);
148 */
149 PHPSTR_API phpstr *phpstr_merge(unsigned argc, ...);
150 PHPSTR_API phpstr *phpstr_merge_ex(phpstr *buf, unsigned argc, ...);
151 PHPSTR_API phpstr *phpstr_merge_va(phpstr *buf, unsigned argc, va_list argv);
152
153 /* sets a trailing NUL byte */
154 PHPSTR_API phpstr *phpstr_fix(phpstr *buf);
155
156 /* memcmp for phpstr objects */
157 PHPSTR_API int phpstr_cmp(phpstr *left, phpstr *right);
158
159 /* reset phpstr object */
160 PHPSTR_API void phpstr_reset(phpstr *buf);
161
162 /* free a phpstr objects contents */
163 PHPSTR_API void phpstr_dtor(phpstr *buf);
164
165 /* free a phpstr object completely */
166 PHPSTR_API void phpstr_free(phpstr **buf);
167
168 /* stores data in a phpstr until it reaches chunk_size */
169 PHPSTR_API size_t phpstr_chunk_buffer(phpstr **s, const char *data, size_t data_len, char **chunk, size_t chunk_size);
170
171 /* wrapper around phpstr_chunk_buffer, which passes available chunks to passthru() */
172 PHPSTR_API void phpstr_chunked_output(phpstr **s, const char *data, size_t data_len, size_t chunk_size, void (*passthru)(const char *, size_t TSRMLS_DC) TSRMLS_DC);
173
174 #endif
175
176
177 /*
178 * Local variables:
179 * tab-width: 4
180 * c-basic-offset: 4
181 * End:
182 * vim600: sw=4 ts=4 fdm=marker
183 * vim<600: sw=4 ts=4
184 */