2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2006-02-24 08:00:39 +05:30
|
|
|
* Copyright (C) 2005, 2006 Rob Landley <rob@landley.net>
|
|
|
|
* Copyright (C) 2004 Erik Andersen <andersen@codepoet.org>
|
|
|
|
* Copyright (C) 2001 Matt Krai
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2006-02-24 08:00:39 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2007-01-11 22:50:00 +05:30
|
|
|
/* This function reads an entire line from a text file, up to a newline
|
2007-12-27 02:14:45 +05:30
|
|
|
* or NUL byte, inclusive. It returns a malloc'ed char * which
|
|
|
|
* must be free'ed by the caller. If end is NULL '\n' isn't considered
|
2007-01-18 04:46:16 +05:30
|
|
|
* end of line. If end isn't NULL, length of the chunk read is stored in it.
|
|
|
|
* Return NULL if EOF/error */
|
2007-04-12 06:02:05 +05:30
|
|
|
char *bb_get_chunk_from_file(FILE *file, int *end)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
int idx = 0;
|
|
|
|
char *linebuf = NULL;
|
|
|
|
int linebufsz = 0;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((ch = getc(file)) != EOF) {
|
2001-03-17 04:17:14 +05:30
|
|
|
/* grow the line buffer as necessary */
|
2006-12-02 23:28:10 +05:30
|
|
|
if (idx >= linebufsz) {
|
2007-04-12 06:02:05 +05:30
|
|
|
linebufsz += 80;
|
|
|
|
linebuf = xrealloc(linebuf, linebufsz);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2006-06-10 16:34:43 +05:30
|
|
|
linebuf[idx++] = (char) ch;
|
|
|
|
if (!ch || (end && ch == '\n'))
|
|
|
|
break;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
2006-06-10 16:34:43 +05:30
|
|
|
if (end)
|
|
|
|
*end = idx;
|
2003-03-19 14:43:01 +05:30
|
|
|
if (linebuf) {
|
2006-12-02 23:28:10 +05:30
|
|
|
// huh, does fgets discard prior data on error like this?
|
2006-11-30 22:11:15 +05:30
|
|
|
// I don't think so....
|
|
|
|
//if (ferror(file)) {
|
|
|
|
// free(linebuf);
|
|
|
|
// return NULL;
|
|
|
|
//}
|
2006-10-13 04:12:33 +05:30
|
|
|
linebuf = xrealloc(linebuf, idx+1);
|
2006-12-02 23:28:10 +05:30
|
|
|
linebuf[idx] = '\0';
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
return linebuf;
|
|
|
|
}
|
|
|
|
|
2006-10-02 02:35:12 +05:30
|
|
|
/* Get line, including trailing \n if any */
|
2007-04-12 06:02:05 +05:30
|
|
|
char *xmalloc_fgets(FILE *file)
|
2003-03-19 14:43:01 +05:30
|
|
|
{
|
2006-02-24 08:00:39 +05:30
|
|
|
int i;
|
2006-06-10 16:34:43 +05:30
|
|
|
|
2006-02-24 08:00:39 +05:30
|
|
|
return bb_get_chunk_from_file(file, &i);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
|
2006-10-02 02:35:12 +05:30
|
|
|
/* Get line. Remove trailing \n */
|
2008-03-27 01:34:27 +05:30
|
|
|
char *xmalloc_fgetline(FILE *file)
|
2003-03-19 14:43:01 +05:30
|
|
|
{
|
2006-02-24 08:00:39 +05:30
|
|
|
int i;
|
2006-06-10 16:34:43 +05:30
|
|
|
char *c = bb_get_chunk_from_file(file, &i);
|
|
|
|
|
|
|
|
if (i && c[--i] == '\n')
|
2006-12-20 08:16:48 +05:30
|
|
|
c[i] = '\0';
|
2006-06-10 16:34:43 +05:30
|
|
|
|
2006-02-24 08:00:39 +05:30
|
|
|
return c;
|
2005-01-24 12:30:02 +05:30
|
|
|
}
|