passwd: rework:
[platform/upstream/busybox.git] / libbb / get_line_from_file.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 2005, 2006 Rob Landley <rob@landley.net>
6  * Copyright (C) 2004 Erik Andersen <andersen@codepoet.org>
7  * Copyright (C) 2001 Matt Krai
8  *
9  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10  */
11
12 #include "libbb.h"
13
14 /* This function reads an entire line from a text file,
15  * up to a newline or NUL byte.  It returns a malloc'ed char * which must be
16  * stored and free'ed  by the caller.  If end is null '\n' isn't considered
17  * end of line.  If end isn't null, length of the chunk read is stored in it. */
18
19 char *bb_get_chunk_from_file(FILE * file, int *end)
20 {
21         int ch;
22         int idx = 0;
23         char *linebuf = NULL;
24         int linebufsz = 0;
25
26         while ((ch = getc(file)) != EOF) {
27                 /* grow the line buffer as necessary */
28                 if (idx > linebufsz - 2) {
29                         linebuf = xrealloc(linebuf, linebufsz += 80);
30                 }
31                 linebuf[idx++] = (char) ch;
32                 if (!ch || (end && ch == '\n'))
33                         break;
34         }
35         if (end)
36                 *end = idx;
37         if (linebuf) {
38                 // huh, is fgets discards prior data on error like this?
39                 // I don't think so....
40                 //if (ferror(file)) {
41                 //      free(linebuf);
42                 //      return NULL;
43                 //}
44                 linebuf = xrealloc(linebuf, idx+1);
45                 linebuf[idx] = 0;
46         }
47         return linebuf;
48 }
49
50 /* Get line, including trailing \n if any */
51 char *xmalloc_fgets(FILE * file)
52 {
53         int i;
54
55         return bb_get_chunk_from_file(file, &i);
56 }
57
58 /* Get line.  Remove trailing \n */
59 char *xmalloc_getline(FILE * file)
60 {
61         int i;
62         char *c = bb_get_chunk_from_file(file, &i);
63
64         if (i && c[--i] == '\n')
65                 c[i] = 0;
66
67         return c;
68 }