1 /* vi: set sw=4 ts=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
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
12 /* for getline() [GNUism]
19 /* This function reads an entire line from a text file, up to a newline
20 * or NUL byte, inclusive. It returns a malloc'ed char * which
21 * must be free'ed by the caller. If end is NULL '\n' isn't considered
22 * end of line. If end isn't NULL, length of the chunk is stored in it.
23 * If lineno is not NULL, *lineno is incremented for each line,
24 * and also trailing '\' is recognized as line continuation.
26 * Returns NULL if EOF/error. */
27 char* FAST_FUNC bb_get_chunk_with_continuation(FILE *file, int *end, int *lineno)
34 while ((ch = getc(file)) != EOF) {
35 /* grow the line buffer as necessary */
36 if (idx >= linebufsz) {
38 linebuf = xrealloc(linebuf, linebufsz);
40 linebuf[idx++] = (char) ch;
43 if (end && ch == '\n') {
47 if (idx < 2 || linebuf[idx-2] != '\\')
55 // huh, does fgets discard prior data on error like this?
56 // I don't think so....
61 linebuf = xrealloc(linebuf, idx + 1);
67 char* FAST_FUNC bb_get_chunk_from_file(FILE *file, int *end)
69 return bb_get_chunk_with_continuation(file, end, NULL);
72 /* Get line, including trailing \n if any */
73 char* FAST_FUNC xmalloc_fgets(FILE *file)
77 return bb_get_chunk_from_file(file, &i);
79 /* Get line. Remove trailing \n */
80 char* FAST_FUNC xmalloc_fgetline(FILE *file)
83 char *c = bb_get_chunk_from_file(file, &i);
85 if (i && c[--i] == '\n')
92 /* GNUism getline() should be faster (not tested) than a loop with fgetc */
94 /* Get line, including trailing \n if any */
95 char* FAST_FUNC xmalloc_fgets(FILE *file)
100 if (getline(&res_buf, &res_sz, file) == -1) {
101 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
104 //TODO: trimming to res_sz?
107 /* Get line. Remove trailing \n */
108 char* FAST_FUNC xmalloc_fgetline(FILE *file)
110 char *res_buf = NULL;
113 res_sz = getline(&res_buf, &res_sz, file);
115 if ((ssize_t)res_sz != -1) {
116 if (res_buf[res_sz - 1] == '\n')
117 res_buf[--res_sz] = '\0';
118 //TODO: trimming to res_sz?
120 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
129 /* Faster routines (~twice as fast). +170 bytes. Unused as of 2008-07.
131 * NB: they stop at NUL byte too.
132 * Performance is important here. Think "grep 50gigabyte_file"...
133 * Ironically, grep can't use it because of NUL issue.
134 * We sorely need C lib to provide fgets which reports size!
137 * Actually, uclibc and glibc have it. man getline. It's GNUism,
138 * but very useful one (if it's as fast as this code).
140 * - currently, sed and sort use bb_get_chunk_from_file and heavily
141 * depend on its "stop on \n or \0" behavior, and STILL they fail
142 * to handle all cases with embedded NULs correctly. So:
143 * - audit sed and sort; convert them to getline FIRST.
144 * - THEN ditch bb_get_chunk_from_file, replace it with getline.
145 * - provide getline implementation for non-GNU systems.
148 static char* xmalloc_fgets_internal(FILE *file, int *sizep)
152 char *linebuf = NULL;
157 linebuf = xrealloc(linebuf, idx + 0x100);
158 r = fgets(&linebuf[idx], 0x100, file);
160 /* need to terminate in case this is error
161 * (EOF puts NUL itself) */
165 /* stupid. fgets knows the len, it should report it somehow */
166 len = strlen(&linebuf[idx]);
168 if (len != 0xff || linebuf[idx - 1] == '\n')
173 /* xrealloc(linebuf, idx + 1) is up to caller */
180 /* Get line, remove trailing \n */
181 char* FAST_FUNC xmalloc_fgetline_fast(FILE *file)
184 char *r = xmalloc_fgets_internal(file, &sz);
185 if (r && r[sz - 1] == '\n')
187 return r; /* not xrealloc(r, sz + 1)! */
190 char* FAST_FUNC xmalloc_fgets(FILE *file)
193 return xmalloc_fgets_internal(file, &sz);
196 /* Get line, remove trailing \n */
197 char* FAST_FUNC xmalloc_fgetline(FILE *file)
200 char *r = xmalloc_fgets_internal(file, &sz);
203 if (r[sz - 1] == '\n')
205 return xrealloc(r, sz + 1);