exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / linebuffer.c
blob3152772838842b6cef6055e94e6793ed8b422003
1 /* linebuffer.c -- read arbitrarily long lines
3 Copyright (C) 1986, 1991, 1998-1999, 2001, 2003-2004, 2006-2007, 2009-2024
4 Free Software Foundation, Inc.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* Written by Richard Stallman. */
21 #include <config.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include "linebuffer.h"
28 #include "xalloc.h"
30 #if USE_UNLOCKED_IO
31 # include "unlocked-io.h"
32 #endif
34 /* Initialize linebuffer LINEBUFFER for use. */
36 void
37 initbuffer (struct linebuffer *linebuffer)
39 memset (linebuffer, 0, sizeof *linebuffer);
42 struct linebuffer *
43 readlinebuffer (struct linebuffer *linebuffer, FILE *stream)
45 return readlinebuffer_delim (linebuffer, stream, '\n');
48 /* Read an arbitrarily long line of text from STREAM into LINEBUFFER.
49 Consider lines to be terminated by DELIMITER.
50 Keep the delimiter; append DELIMITER if it's the last line of a file
51 that ends in a character other than DELIMITER. Do not NUL-terminate.
52 Therefore the stream can contain NUL bytes, and the length
53 (including the delimiter) is returned in linebuffer->length.
54 Return NULL when stream is empty. Return NULL and set errno upon
55 error; callers can distinguish this case from the empty case by
56 invoking ferror (stream).
57 Otherwise, return LINEBUFFER. */
58 struct linebuffer *
59 readlinebuffer_delim (struct linebuffer *linebuffer, FILE *stream,
60 char delimiter)
62 int c;
63 char *buffer = linebuffer->buffer;
64 char *p = linebuffer->buffer;
65 char *end = buffer + linebuffer->size; /* Sentinel. */
67 if (feof (stream))
68 return NULL;
72 c = getc (stream);
73 if (c == EOF)
75 if (p == buffer || ferror (stream))
76 return NULL;
77 if (p[-1] == delimiter)
78 break;
79 c = delimiter;
81 if (p == end)
83 idx_t oldsize = linebuffer->size;
84 buffer = xpalloc (buffer, &linebuffer->size, 1, -1, 1);
85 p = buffer + oldsize;
86 linebuffer->buffer = buffer;
87 end = buffer + linebuffer->size;
89 *p++ = c;
91 while (c != delimiter);
93 linebuffer->length = p - buffer;
94 return linebuffer;
97 /* Free the buffer that was allocated for linebuffer LINEBUFFER. */
99 void
100 freebuffer (struct linebuffer *linebuffer)
102 free (linebuffer->buffer);