X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetline.c;h=896b6bbd84cb05326175d98a6f5af8a53c112708;hb=55da53d0db0c7a9fd82b2abc809560b3089df6a5;hp=18383b12c6261dd9b286b7470eed8f596b2c546c;hpb=ffffff66a7d7df20a527a3058e06aef31dc65ae5;p=gnulib.git diff --git a/lib/getline.c b/lib/getline.c index 18383b12c..896b6bbd8 100644 --- a/lib/getline.c +++ b/lib/getline.c @@ -23,126 +23,36 @@ # include #endif +/* Specification. */ #include "getline.h" -/* The `getdelim' function is only declared if the following symbol - is defined. */ -#ifndef _GNU_SOURCE -# define _GNU_SOURCE 1 -#endif - +#include #include + +/* Get ssize_t. */ #include #if defined __GNU_LIBRARY__ && HAVE_GETDELIM -int -getline (char **lineptr, size_t *n, FILE *stream) +ssize_t +getline (char **lineptr, size_t *linesize, FILE *stream) { - return getdelim (lineptr, n, '\n', stream); + return getdelim (lineptr, linesize, '\n', stream); } #else /* ! have getdelim */ -# if STDC_HEADERS -# include -# else -char *malloc (), *realloc (); -# endif - -#include "unlocked-io.h" - -/* Always add at least this many bytes when extending the buffer. */ -#define MIN_CHUNK 64 - -/* Read up to (and including) a delimiter DELIM1 from STREAM into *LINEPTR - + OFFSET (and NUL-terminate it). If DELIM2 is non-zero, then read up - and including the first occurrence of DELIM1 or DELIM2. *LINEPTR is - a pointer returned from malloc (or NULL), pointing to *N characters of - space. It is realloc'd as necessary. Return the number of characters - read (not including the NUL terminator), or -1 on error or EOF. */ - -static int -getdelim2 (char **lineptr, size_t *n, FILE *stream, int delim1, int delim2, - size_t offset) -{ - size_t nchars_avail; /* Allocated but unused chars in *LINEPTR. */ - char *read_pos; /* Where we're reading into *LINEPTR. */ - int ret; - - if (!lineptr || !n || !stream) - return -1; - - if (!*lineptr) - { - *n = MIN_CHUNK; - *lineptr = malloc (*n); - if (!*lineptr) - return -1; - } - - if (*n < offset) - return -1; - - nchars_avail = *n - offset; - read_pos = *lineptr + offset; - - for (;;) - { - register int c = getc (stream); - - /* We always want at least one char left in the buffer, since we - always (unless we get an error while reading the first char) - NUL-terminate the line buffer. */ - - if (nchars_avail < 2) - { - if (*n > MIN_CHUNK) - *n *= 2; - else - *n += MIN_CHUNK; - - nchars_avail = *n + *lineptr - read_pos; - *lineptr = realloc (*lineptr, *n); - if (!*lineptr) - return -1; - read_pos = *n - nchars_avail + *lineptr; - } - - if (c == EOF || ferror (stream)) - { - /* Return partial line, if any. */ - if (read_pos == *lineptr) - return -1; - else - break; - } - - *read_pos++ = c; - nchars_avail--; - - if (c == delim1 || (delim2 && c == delim2)) - /* Return the line. */ - break; - } - - /* Done - NUL terminate and return the number of chars read. */ - *read_pos = '\0'; - - ret = read_pos - (*lineptr + offset); - return ret; -} - +# include "getndelim2.h" -int -getline (char **lineptr, size_t *n, FILE *stream) +ssize_t +getline (char **lineptr, size_t *linesize, FILE *stream) { - return getdelim2 (lineptr, n, stream, '\n', 0, 0); + return getndelim2 (lineptr, linesize, (size_t)(-1), stream, '\n', 0, 0); } -int -getdelim (char **lineptr, size_t *n, int delimiter, FILE *stream) +ssize_t +getdelim (char **lineptr, size_t *linesize, int delimiter, FILE *stream) { - return getdelim2 (lineptr, n, stream, delimiter, 0, 0); + return getndelim2 (lineptr, linesize, (size_t)(-1), stream, delimiter, 0, 0); } #endif