X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Flinebuffer.c;h=c12cdbd4a3bdfce95b4486dceb69153c425e3326;hb=5e6933eb225721fac1de4a8abf6c0da985ddaa6a;hp=d40168370865fc004781df47d4ecd1c5681cf3e0;hpb=1319257909cbe2697609dd622403d22253204168;p=gnulib.git diff --git a/lib/linebuffer.c b/lib/linebuffer.c index d40168370..c12cdbd4a 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -1,5 +1,7 @@ /* linebuffer.c -- read arbitrarily long lines - Copyright (C) 1986, 1991, 1998 Free Software Foundation, Inc. + + Copyright (C) 1986, 1991, 1998, 1999, 2001, 2003, 2004 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,8 +14,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Richard Stallman. */ @@ -22,75 +24,75 @@ #endif #include +#include +#include +#include #include "linebuffer.h" +#include "xalloc.h" -char *xmalloc (); -char *xrealloc (); -void free (); +#if USE_UNLOCKED_IO +# include "unlocked-io.h" +#endif /* Initialize linebuffer LINEBUFFER for use. */ void -initbuffer (linebuffer) - struct linebuffer *linebuffer; +initbuffer (struct linebuffer *linebuffer) { - linebuffer->length = 0; - linebuffer->size = 200; - linebuffer->buffer = (char *) xmalloc (linebuffer->size); + memset (linebuffer, 0, sizeof *linebuffer); } /* Read an arbitrarily long line of text from STREAM into LINEBUFFER. - Remove any newline. Does not null terminate. - Return zero upon error or upon end of file. + Keep the newline; append a newline if it's the last line of a file + that ends in a non-newline character. Do not null terminate. + Therefore the stream can contain NUL bytes, and the length + (including the newline) is returned in linebuffer->length. + Return NULL when stream is empty. Return NULL and set errno upon + error; callers can distinguish this case from the empty case by + invoking ferror (stream). Otherwise, return LINEBUFFER. */ - struct linebuffer * -readline (linebuffer, stream) - struct linebuffer *linebuffer; - FILE *stream; +readlinebuffer (struct linebuffer *linebuffer, FILE *stream) { int c; char *buffer = linebuffer->buffer; char *p = linebuffer->buffer; char *end = buffer + linebuffer->size; /* Sentinel. */ - if (feof (stream) || ferror (stream)) - { - linebuffer->length = 0; - return 0; - } + if (feof (stream)) + return NULL; - while (1) + do { c = getc (stream); + if (c == EOF) + { + if (p == buffer || ferror (stream)) + return NULL; + if (p[-1] == '\n') + break; + c = '\n'; + } if (p == end) { - linebuffer->size *= 2; - buffer = (char *) xrealloc (buffer, linebuffer->size); - p += buffer - linebuffer->buffer; + size_t oldsize = linebuffer->size; + buffer = x2realloc (buffer, &linebuffer->size); + p = buffer + oldsize; linebuffer->buffer = buffer; end = buffer + linebuffer->size; } - if (c == EOF || c == '\n') - break; *p++ = c; } + while (c != '\n'); - if (feof (stream) && p == buffer) - { - linebuffer->length = 0; - return 0; - } - linebuffer->length = p - linebuffer->buffer; + linebuffer->length = p - buffer; return linebuffer; } -/* Free linebuffer LINEBUFFER and its data, all allocated with malloc. */ +/* Free the buffer that was allocated for linebuffer LINEBUFFER. */ void -freebuffer (linebuffer) - struct linebuffer *linebuffer; +freebuffer (struct linebuffer *linebuffer) { free (linebuffer->buffer); - free (linebuffer); }