*** empty log message ***
[findutils.git] / lib / getline.c
blob2b3cf03504737f33007228ebc3276f48d5564711
1 /* getline.c -- Replacement for GNU C library function getline
3 Copyright (C) 1993 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19 /* Written by Jan Brittenson, bson@gnu.ai.mit.edu. */
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
25 #include <sys/types.h>
26 #include <stdio.h>
27 #define NDEBUG
28 #include <assert.h>
30 #if STDC_HEADERS
31 #include <stdlib.h>
32 #else
33 char *malloc (), *realloc ();
34 #endif
36 /* Always add at least this many bytes when extending the buffer. */
37 #define MIN_CHUNK 64
39 /* Read up to (and including) a TERMINATOR from STREAM into *LINEPTR
40 + OFFSET (and null-terminate it). *LINEPTR is a pointer returned from
41 malloc (or NULL), pointing to *N characters of space. It is realloc'd
42 as necessary. Return the number of characters read (not including the
43 null terminator), or -1 on error or EOF. */
45 int
46 getstr (lineptr, n, stream, terminator, offset)
47 char **lineptr;
48 size_t *n;
49 FILE *stream;
50 char terminator;
51 int offset;
53 int nchars_avail; /* Allocated but unused chars in *LINEPTR. */
54 char *read_pos; /* Where we're reading into *LINEPTR. */
55 int ret;
57 if (!lineptr || !n || !stream)
58 return -1;
60 if (!*lineptr)
62 *n = MIN_CHUNK;
63 *lineptr = malloc (*n);
64 if (!*lineptr)
65 return -1;
68 nchars_avail = *n - offset;
69 read_pos = *lineptr + offset;
71 for (;;)
73 register int c = getc (stream);
75 /* We always want at least one char left in the buffer, since we
76 always (unless we get an error while reading the first char)
77 NUL-terminate the line buffer. */
79 assert(*n - nchars_avail == read_pos - *lineptr);
80 if (nchars_avail < 1)
82 /* make sure that
83 * 1. nchars_avail is at least one
84 * 2. always make *n a multiple of MIN_CHUNK just larger
85 * than condition 1 requires
87 *n = ((read_pos - *lineptr + 1) + 1)/MIN_CHUNK * MIN_CHUNK;
88 nchars_avail = *n + *lineptr - read_pos;
89 *lineptr = realloc (*lineptr, *n);
90 if (!*lineptr)
91 return -1;
92 read_pos = *n - nchars_avail + *lineptr;
93 assert(*n - nchars_avail == read_pos - *lineptr);
96 if (c == EOF || ferror (stream))
98 /* Return partial line, if any. */
99 if (read_pos == *lineptr)
100 return -1;
101 else
102 break;
105 *read_pos++ = c;
106 nchars_avail--;
108 if (c == terminator)
109 /* Return the line. */
110 break;
113 /* Done - NUL terminate and return the number of chars read. */
114 *read_pos = '\0';
116 ret = read_pos - (*lineptr + offset);
117 return ret;
121 getline (lineptr, n, stream)
122 char **lineptr;
123 size_t *n;
124 FILE *stream;
126 return getstr (lineptr, n, stream, '\n', 0);