chiark / gitweb /
Infrastructure: Strip away crufty CVS $Id$ tags.
[mLib] / lbuf.c
CommitLineData
97f65b00 1/* -*-c-*-
97f65b00 2 *
3 * Block-to-line buffering
4 *
5 * (c) 1999 Straylight/Edgeware
6 */
7
d4efbcd9 8/*----- Licensing notice --------------------------------------------------*
97f65b00 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.
d4efbcd9 16 *
97f65b00 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.
d4efbcd9 21 *
97f65b00 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
97f65b00 28/*----- Header files ------------------------------------------------------*/
29
e03be5f4 30#include <assert.h>
97f65b00 31#include <stdio.h>
32#include <stdlib.h>
33#include <string.h>
34
e03be5f4 35#include "alloc.h"
36#include "arena.h"
97f65b00 37#include "lbuf.h"
38
39/*----- Main code ---------------------------------------------------------*/
40
41/* --- @lbuf_flush@ --- *
42 *
43 * Arguments: @lbuf *b@ = pointer to buffer block
44 * @char *p@ = pointer to where to start searching
45 * @size_t len@ = length of new material added
46 *
47 * Returns: ---
48 *
49 * Use: Flushes any complete lines in a line buffer. New material
50 * is assumed to have been added starting at @p@. If @p@ is
51 * null, then the scan starts at the beginning of the buffer,
52 * and the size of data already in the buffer is used in place
53 * of @len@.
54 *
55 * It is assumed that the buffer is initially enabled. You
56 * shouldn't be contributing data to a disabled buffer anyway.
57 * However, the buffer handler may at some point disable itself,
58 * and @lbuf_flush@ can cope with this eventuality. Any pending
59 * data is left at the start of the buffer and can be flushed
60 * out by calling @lbuf_flush(b, 0, 0)@ if the buffer is ever
61 * re-enabled.
62 */
63
64void lbuf_flush(lbuf *b, char *p, size_t len)
65{
66 char *l; /* Limit of data in buffer */
67 char *q; /* Roving pointer through string */
68 char *base; /* Base address of current line */
69 int cr; /* Carriage return state */
70
3fd896a4 71 if (b->f & LBUF_CLOSE) {
83c63e03 72 b->func(0, 0, b->p);
3fd896a4 73 return;
74 }
75
97f65b00 76 /* --- Initialize variables as necessary --- */
77
78 if (!p) {
79 p = b->buf;
80 cr = 0;
81 len = b->len;
82 } else
1ef7279c 83 cr = b->f & LBUF_CR;
97f65b00 84
85 l = p + len;
86
87 /* --- Clear @base@ if I'm discarding an overlong line --- */
88
e03be5f4 89 if (b->len == b->sz)
97f65b00 90 base = 0;
91 else
92 base = b->buf;
93
94 /* --- Now I march through the string --- */
95
96 for (q = p; q < l; q++) {
97
98 /* --- Quickly discard uninteresting characters --- */
99
83c63e03 100 switch (b->delim) {
101 case LBUF_CRLF:
102 case LBUF_STRICTCRLF:
103 if (*q != '\r' && *q != '\n') {
104 cr = 0;
105 continue;
106 }
107 if (*q == '\r') {
108 cr = 1;
109 continue;
110 }
111 if (!cr && b->delim == LBUF_STRICTCRLF)
112 continue;
113 break;
114 default:
115 if (*q != b->delim)
116 continue;
97f65b00 117 }
118
83c63e03 119 /* --- I have a positive ID on a delimiter --- *
97f65b00 120 *
121 * If I'm interested in this string, report it to my owner.
122 */
123
124 if (base) {
83c63e03 125 len = q - base;
97f65b00 126 if (cr)
83c63e03 127 len--; /* Exercise: why is this safe? */
128 base[len] = 0;
129 b->func(base, len, b->p);
1ef7279c 130 if (!(b->f & LBUF_ENABLE)) {
97f65b00 131 base = q + 1;
132 break;
133 }
134 }
135 base = q + 1;
136 cr = 0;
137 }
138
139 /* --- Sift through the aftermath --- */
140
141 if (base) {
83c63e03 142 len = l - base;
e03be5f4 143 if (len == b->sz) {
97f65b00 144 b->buf[len - 1] = 0;
83c63e03 145 b->func(base, len - 1, b->p);
97f65b00 146 } else if (base != b->buf)
147 memmove(b->buf, base, len);
148 b->len = len;
149 if (cr)
1ef7279c 150 b->f |= LBUF_CR;
97f65b00 151 else
1ef7279c 152 b->f &= ~LBUF_CR;
97f65b00 153 }
154}
155
156/* --- @lbuf_close@ --- *
157 *
158 * Arguments: @lbuf *b@ = pointer to buffer block
159 *
160 * Returns: ---
161 *
162 * Use: Empties the buffer of any data currently lurking in it, and
163 * informs the client that this has happened. It's assumed that
164 * the buffer is enabled: you shouldn't be reading close events
e03be5f4 165 * on disabled buffers. The buffer, if allocated, is freed.
97f65b00 166 */
167
168void lbuf_close(lbuf *b)
169{
e03be5f4 170 if (b->len && b->len != b->sz) {
97f65b00 171 b->buf[b->len] = 0;
83c63e03 172 b->func(b->buf, b->len, b->p);
97f65b00 173 }
e03be5f4 174 if (b->buf) {
175 x_free(b->a, b->buf);
176 b->buf = 0;
177 }
3fd896a4 178 b->f |= LBUF_CLOSE;
1ef7279c 179 if (b->f & LBUF_ENABLE)
83c63e03 180 b->func(0, 0, b->p);
97f65b00 181}
182
183/* --- @lbuf_free@ --- *
184 *
185 * Arguments: @lbuf *b@ = pointer to buffer block
186 * @char **p@ = output pointer to free space
187 *
188 * Returns: Free buffer size.
189 *
190 * Use: Returns the free portion of a line buffer. Data can then be
191 * written to this portion, and split out into lines by calling
e03be5f4 192 * @lbuf_flush@. A buffer is allocated if none currently
193 * exists.
97f65b00 194 */
195
196size_t lbuf_free(lbuf *b, char **p)
197{
198 /* --- There's a special case to consider --- *
199 *
200 * If a line from the file wouldn't fit in the buffer, I truncate it and
201 * return what would fit. The rest of the line ought to be discarded.
e03be5f4 202 * This condition is signalled by @len = b->sz@, and means that the entire
203 * buffer is OK to be trashed. In other cases, @len@ is the amount of
204 * space currently occupied in the buffer. This special case is the reason
205 * this routine exists.
97f65b00 206 */
207
e03be5f4 208 if (b->len != 0 && b->len != b->sz) {
97f65b00 209 *p = b->buf + b->len;
e03be5f4 210 return (b->sz - b->len);
97f65b00 211 } else {
e03be5f4 212 if (!b->buf)
213 b->buf = x_alloc(b->a, b->sz);
97f65b00 214 *p = b->buf;
e03be5f4 215 return (b->sz);
97f65b00 216 }
217}
218
219/* --- @lbuf_snarf@ --- *
220 *
221 * Arguments: @lbuf *b@ = pointer to buffer block
222 * @const void *p@ = pointer to input data buffer
223 * @size_t sz@ = size of data in input buffer
224 *
225 * Returns: ---
226 *
227 * Use: Snarfs the data from the input buffer and spits it out as
228 * lines. This interface ignores the complexities of dealing
229 * with disablement: you should be using @lbuf_free@ to
230 * contribute data if you want to cope with that.
231 */
232
233void lbuf_snarf(lbuf *b, const void *p, size_t sz)
234{
235 const char *pp = p;
e03be5f4 236 while (sz && (b->f & LBUF_ENABLE)) {
97f65b00 237 size_t bsz;
238 char *bp;
239
240 bsz = lbuf_free(b, &bp);
241 if (bsz > sz)
242 bsz = sz;
243 memcpy(bp, pp, bsz);
244 lbuf_flush(b, bp, bsz);
245 pp += bsz;
246 sz -= bsz;
247 }
248}
249
e03be5f4 250/* --- @lbuf_setsize@ --- *
251 *
252 * Arguments: @lbuf *b@ = pointer to buffer block
253 * @size_t sz@ = requested maximum line size
254 *
255 * Returns: ---
256 *
257 * Use: Modifies the size of the buffer associated with the block.
258 * It is an error to resize a buffer while it contains data.
259 */
260
261void lbuf_setsize(lbuf *b, size_t sz)
262{
263 if (b->buf)
264 assert(((void)"Buffer in use in lbuf_setsize",
265 b->len == 0 || b->len == b->sz));
266 if (b->buf)
267 x_free(b->a, b->buf);
268 b->sz = sz;
269 b->buf = 0;
270}
271
97f65b00 272/* --- @lbuf_init@ --- *
273 *
274 * Arguments: @lbuf *b@ = pointer to buffer block
83c63e03 275 * @lbuf_func *func@ = handler function
97f65b00 276 * @void *p@ = argument pointer for @func@
277 *
278 * Returns: ---
279 *
280 * Use: Initializes a line buffer block. Any recognized lines are
e03be5f4 281 * passed to @func@ for processing. No buffer is initially
282 * allocated; this is done when the buffer is actually required
283 * for the first time.
97f65b00 284 */
285
83c63e03 286void lbuf_init(lbuf *b, lbuf_func *func, void *p)
97f65b00 287{
288 b->func = func;
289 b->p = p;
290 b->len = 0;
1ef7279c 291 b->f = LBUF_ENABLE;
83c63e03 292 b->delim = LBUF_CRLF;
e03be5f4 293 b->buf = 0;
294 b->a = arena_global;
295 lbuf_setsize(b, 256);
296}
297
298/* --- @lbuf_destroy@ --- *
299 *
300 * Arguments: @lbuf *b@ = pointer to buffer block
301 *
302 * Returns: ---
303 *
304 * Use: Deallocates a line buffer and frees any resources it owned.
305 */
306
307void lbuf_destroy(lbuf *b)
308{
309 if (b->buf) {
310 x_free(b->a, b->buf);
311 b->buf = 0;
312 }
97f65b00 313}
314
315/*----- That's all, folks -------------------------------------------------*/