chiark / gitweb /
@@@ so much mess
[mLib] / struct / dstr.h
1 /* -*-c-*-
2  *
3  * Handle dynamically growing strings
4  *
5  * (c) 1998 Straylight/Edgeware
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of the mLib utilities library.
11  *
12  * mLib is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU Library General Public License as
14  * published by the Free Software Foundation; either version 2 of the
15  * License, or (at your option) any later version.
16  *
17  * mLib is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU Library General Public License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License along with mLib; if not, write to the Free
24  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25  * MA 02111-1307, USA.
26  */
27
28 #ifndef MLIB_DSTR_H
29 #define MLIB_DSTR_H
30
31 #ifdef __cplusplus
32   extern "C" {
33 #endif
34
35 /*----- Rationale ---------------------------------------------------------*
36  *
37  * This file declares what is hopefully a fairly useful collection of
38  * primitive string handling functions.  The idea is that the strings
39  * allocate memory for themselves as required.  The @dstr@ routines don't
40  * assume any sort of terminator character, so arbitrary binary data can
41  * be stored in a dynamic string.  With luck, this should put a stop to
42  * any buffer overflow problems.
43  */
44
45 /*----- Header files ------------------------------------------------------*/
46
47 #include <stdarg.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51
52 #ifndef MLIB_ALLOC_H
53 #  include "alloc.h"
54 #endif
55
56 #ifndef MLIB_ARENA_H
57 #  include "arena.h"
58 #endif
59
60 #ifndef MLIB_MACROS_H
61 #  include "macros.h"
62 #endif
63
64 /*----- Data structures ---------------------------------------------------*/
65
66 typedef struct dstr {
67   char *buf;                            /* Pointer to string buffer */
68   size_t sz;                            /* Size of the buffer */
69   size_t len;                           /* Length of the string */
70   arena *a;                             /* Pointer to arena */
71 } dstr;
72
73 #define DSTR_INIT { 0, 0, 0, &arena_stdlib } /* How to initialize one */
74
75 extern const struct gprintf_ops dstr_printops;
76
77 /*----- Functions provided ------------------------------------------------*/
78
79 /* --- @dstr_create@ --- *
80  *
81  * Arguments:   @dstr *d@ = pointer to a dynamic string block
82  *
83  * Returns:     ---
84  *
85  * Use:         Initializes a dynamic string.
86  */
87
88 extern void dstr_create(dstr */*d*/);
89
90 #define DCREATE(d) do {                                                 \
91   dstr *_dd = (d);                                                      \
92   _dd->buf = 0;                                                         \
93   _dd->sz = 0;                                                          \
94   _dd->len = 0;                                                         \
95   _dd->a = &arena_stdlib;                                               \
96 } while (0)
97
98 /* --- @dstr_destroy@ --- *
99  *
100  * Arguments:   @dstr *d@ = pointer to a dynamic string block
101  *
102  * Returns:     ---
103  *
104  * Use:         Reclaims the space used by a dynamic string.
105  */
106
107 extern void dstr_destroy(dstr */*d*/);
108
109 #define DDESTROY(d) do {                                                \
110   dstr *_d = (d);                                                       \
111   if (_d->buf)                                                          \
112     x_free(_d->a, _d->buf);                                             \
113   DCREATE(_d);                                                          \
114 } while (0)
115
116 /* --- @dstr_reset@ --- *
117  *
118  * Arguments:   @dstr *d@ = pointer to a dynamic string block
119  *
120  * Returns:     ---
121  *
122  * Use:         Resets a string so that new data gets put at the beginning.
123  */
124
125 extern void dstr_reset(dstr */*d*/);
126
127 #define DRESET(d) ((d)->len = 0)
128
129 /* --- @dstr_ensure@ --- *
130  *
131  * Arguments:   @dstr *d@ = pointer to a dynamic string block
132  *              @size_t sz@ = amount of free space to ensure
133  *
134  * Returns:     ---
135  *
136  * Use:         Ensures that at least @sz@ bytes are available in the
137  *              given string.
138  */
139
140 extern void dstr_ensure(dstr */*d*/, size_t /*sz*/);
141
142 #define DENSURE(d, rq) do {                                             \
143   dstr *_dd = (d);                                                      \
144   size_t _rq = (rq);                                                    \
145   if (_dd->len + _rq > _dd->sz) dstr_ensure(_dd, _rq);                  \
146 } while (0)
147
148 /* --- @dstr_putc@ --- *
149  *
150  * Arguments:   @dstr *d@ = pointer to a dynamic string block
151  *              @int ch@ = character to append
152  *
153  * Returns:     ---
154  *
155  * Use:         Appends a character to a string.
156  */
157
158 extern void dstr_putc(dstr */*d*/, int /*ch*/);
159
160 #define DPUTC(d, ch) do {                                               \
161   dstr *_d = (d);                                                       \
162   DENSURE(_d, 1);                                                       \
163   *((unsigned char *)_d->buf + _d->len++) = (ch);                       \
164 } while (0)
165
166 /* --- @dstr_putz@ --- *
167  *
168  * Arguments:   @dstr *d@ = pointer to a dynamic string block
169  *
170  * Returns:     ---
171  *
172  * Use:         Appends a null byte to a string.  The null byte does not
173  *              contribute to the string's length, and will be overwritten
174  *              by subsequent `put' operations.
175  */
176
177 extern void dstr_putz(dstr */*d*/);
178
179 #define DPUTZ(d) do {                                                   \
180   dstr *_d = (d);                                                       \
181   DENSURE(_d, 1);                                                       \
182   _d->buf[_d->len] = 0;                                         \
183 } while (0)
184
185 /* --- @dstr_puts@ --- *
186  *
187  * Arguments:   @dstr *d@ = pointer to a dynamic string block
188  *              @const char *s@ = pointer to string to append
189  *
190  * Returns:     ---
191  *
192  * Use:         Appends a character string to a string.  A trailing null
193  *              byte is added, as for @dstr_putz@.
194  */
195
196 extern void dstr_puts(dstr */*d*/, const char */*s*/);
197
198 #define DPUTS(d, s) do {                                                \
199   dstr *_d = (d);                                                       \
200   const char *_s = (s);                                                 \
201   size_t _sz = strlen(_s);                                              \
202   DENSURE(_d, _sz + 1);                                                 \
203   memcpy(_d->buf + _d->len, _s, _sz + 1);                               \
204   _d->len += _sz;                                                       \
205 } while (0)
206
207 /* --- @dstr_vputf@ --- *
208  *
209  * Arguments:   @dstr *d@ = pointer to a dynamic string block
210  *              @const char *p@ = pointer to @printf@-style format string
211  *              @va_list *ap@ = argument handle
212  *
213  * Returns:     The number of characters written to the string.
214  *
215  * Use:         As for @dstr_putf@, but may be used as a back-end to user-
216  *              supplied functions with @printf@-style interfaces.
217  */
218
219 extern int dstr_vputf(dstr */*d*/, const char */*p*/, va_list */*ap*/);
220
221 /* --- @dstr_putf@ --- *
222  *
223  * Arguments:   @dstr *d@ = pointer to a dynamic string block
224  *              @const char *p@ = pointer to @printf@-style format string
225  *              @...@ = argument handle
226  *
227  * Returns:     The number of characters written to the string.
228  *
229  * Use:         Writes a piece of text to a dynamic string, doing @printf@-
230  *              style substitutions as it goes.  Intended to be robust if
231  *              faced with malicious arguments, but not if the format string
232  *              itself is malicious.
233  */
234
235 extern int PRINTF_LIKE(2, 3)
236   dstr_putf(dstr */*d*/, const char */*p*/, ...);
237
238 /* --- @dstr_putd@ --- *
239  *
240  * Arguments:   @dstr *d@ = pointer to a dynamic string block
241  *              @const dstr *s@ = pointer to a dynamic string to append
242  *
243  * Returns:     ---
244  *
245  * Use:         Appends a dynamic string to a string.  A trailing null
246  *              byte is added, as for @dstr_putz@.
247  */
248
249 extern void dstr_putd(dstr */*d*/, const dstr */*s*/);
250
251 #define DPUTD(d, s) do {                                                \
252   dstr *_d = (d);                                                       \
253   const dstr *_s = (s);                                                 \
254   DENSURE(_d, _s->len + 1);                                             \
255   memcpy(_d->buf + _d->len, _s->buf, _s->len);                          \
256   _d->len += _s->len;                                                   \
257   _d->buf[_d->len] = 0;                                                 \
258 } while (0)
259
260 /* --- @dstr_putm@ --- *
261  *
262  * Arguments:   @dstr *d@ = pointer to a dynamic string block
263  *              @const void *p@ = pointer to a block to append
264  *              @size_t sz@ = size of the block
265  *
266  * Returns:     Appends an arbitrary data block to a string.  No trailing
267  *              null is appended.
268  */
269
270 extern void dstr_putm(dstr */*d*/, const void */*p*/, size_t /*sz*/);
271
272 #define DPUTM(d, p, sz) do {                                            \
273   dstr *_d = (d);                                                       \
274   size_t _sz = (sz);                                                    \
275   DENSURE(_d, _sz);                                                     \
276   memcpy(_d->buf + _d->len, (p), _sz);                                  \
277   _d->len += _sz;                                                       \
278 } while (0)
279
280 /* --- @dstr_tidy@ --- *
281  *
282  * Arguments:   @dstr *d@ = pointer to a dynamic string block
283  *
284  * Returns:     ---
285  *
286  * Use:         Reduces the amount of memory used by a string.  A trailing
287  *              null byte is added, as for @dstr_putz@.
288  */
289
290 extern void dstr_tidy(dstr */*d*/);
291
292 /* --- @dstr_putline@ --- *
293  *
294  * Arguments:   @dstr *d@ = pointer to a dynamic string block
295  *              @FILE *fp@ = a stream to read from
296  *
297  * Returns:     The number of characters read into the buffer, or @EOF@ if
298  *              end-of-file was reached before any characters were read.
299  *
300  * Use:         Appends the next line from the given input stream to the
301  *              string.  A trailing newline is not added; a trailing null
302  *              byte is appended, as for @dstr_putz@.
303  */
304
305 extern int dstr_putline(dstr */*d*/, FILE */*fp*/);
306
307 /* --- @dstr_write@ --- *
308  *
309  * Arguments:   @dstr *d@ = pointer to a dynamic string block
310  *              @FILE *fp@ = a stream to write on
311  *
312  * Returns:     The number of bytes written (as for @fwrite@).
313  *
314  * Use:         Writes a dynamic string to a file.
315  */
316
317 extern size_t dstr_write(const dstr */*d*/, FILE */*fp*/);
318
319 #define DWRITE(d, fp) fwrite((d)->buf, 1, (d)->len, (fp))
320
321 /*----- That's all, folks -------------------------------------------------*/
322
323 #ifdef __cplusplus
324   }
325 #endif
326
327 #endif