blob: 3cb46d240fb9d2bb95aa41e532f01b9fb636b99f [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Rob Landley2b26fd52006-02-24 02:30:39 +00005 * Copyright (C) 2005, 2006 Rob Landley <rob@landley.net>
6 * Copyright (C) 2004 Erik Andersen <andersen@codepoet.org>
7 * Copyright (C) 2001 Matt Krai
Eric Andersenaad1a882001-03-16 22:47:14 +00008 *
Rob Landley2b26fd52006-02-24 02:30:39 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +000010 */
11
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000012/* for getline() [GNUism]
Denis Vlasenko3fd15e12008-08-09 16:15:14 +000013#ifndef _GNU_SOURCE
14#define _GNU_SOURCE 1
15#endif
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000016*/
Eric Andersenaad1a882001-03-16 22:47:14 +000017#include "libbb.h"
18
Denis Vlasenkof7996f32007-01-11 17:20:00 +000019/* This function reads an entire line from a text file, up to a newline
Denis Vlasenkoabee3d02007-12-26 20:44:45 +000020 * 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
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000022 * 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.
25 *
26 * Returns NULL if EOF/error. */
27char* FAST_FUNC bb_get_chunk_with_continuation(FILE *file, int *end, int *lineno)
Eric Andersenaad1a882001-03-16 22:47:14 +000028{
Eric Andersenaad1a882001-03-16 22:47:14 +000029 int ch;
30 int idx = 0;
31 char *linebuf = NULL;
32 int linebufsz = 0;
33
Manuel Novoa III cad53642003-03-19 09:13:01 +000034 while ((ch = getc(file)) != EOF) {
Eric Andersenaad1a882001-03-16 22:47:14 +000035 /* grow the line buffer as necessary */
Denis Vlasenko8b22b072006-12-02 17:58:10 +000036 if (idx >= linebufsz) {
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000037 linebufsz += 256;
Denis Vlasenko51742f42007-04-12 00:32:05 +000038 linebuf = xrealloc(linebuf, linebufsz);
Manuel Novoa III cad53642003-03-19 09:13:01 +000039 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000040 linebuf[idx++] = (char) ch;
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000041 if (!ch)
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000042 break;
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000043 if (end && ch == '\n') {
44 if (lineno == NULL)
45 break;
46 (*lineno)++;
47 if (idx < 2 || linebuf[idx-2] != '\\')
48 break;
49 idx -= 2;
50 }
Eric Andersenaad1a882001-03-16 22:47:14 +000051 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000052 if (end)
53 *end = idx;
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 if (linebuf) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +000055 // huh, does fgets discard prior data on error like this?
Denis Vlasenkoab24e182006-11-30 16:41:15 +000056 // I don't think so....
57 //if (ferror(file)) {
58 // free(linebuf);
59 // return NULL;
60 //}
Denis Vlasenkodeeed592008-07-08 05:14:36 +000061 linebuf = xrealloc(linebuf, idx + 1);
Denis Vlasenko8b22b072006-12-02 17:58:10 +000062 linebuf[idx] = '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 }
Eric Andersenaad1a882001-03-16 22:47:14 +000064 return linebuf;
65}
66
Denis Vlasenko69f4f9a2008-08-09 17:16:40 +000067char* FAST_FUNC bb_get_chunk_from_file(FILE *file, int *end)
68{
69 return bb_get_chunk_with_continuation(file, end, NULL);
70}
71
Denis Vlasenkob97c9842006-10-01 21:05:12 +000072/* Get line, including trailing \n if any */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000073char* FAST_FUNC xmalloc_fgets(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000074{
Rob Landley2b26fd52006-02-24 02:30:39 +000075 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000076
Rob Landley2b26fd52006-02-24 02:30:39 +000077 return bb_get_chunk_from_file(file, &i);
Manuel Novoa III cad53642003-03-19 09:13:01 +000078}
Denis Vlasenkob97c9842006-10-01 21:05:12 +000079/* Get line. Remove trailing \n */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000080char* FAST_FUNC xmalloc_fgetline(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000081{
Rob Landley2b26fd52006-02-24 02:30:39 +000082 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000083 char *c = bb_get_chunk_from_file(file, &i);
84
85 if (i && c[--i] == '\n')
Denis Vlasenko9a7cef92006-12-20 02:46:48 +000086 c[i] = '\0';
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000087
Rob Landley2b26fd52006-02-24 02:30:39 +000088 return c;
Manuel Novoa III cad53642003-03-19 09:13:01 +000089}
Denis Vlasenko2132e022008-07-15 10:33:12 +000090
Denis Vlasenko5e476ba2008-07-15 21:29:44 +000091#if 0
Denis Vlasenko3fd15e12008-08-09 16:15:14 +000092/* GNUism getline() should be faster (not tested) than a loop with fgetc */
93
94/* Get line, including trailing \n if any */
95char* FAST_FUNC xmalloc_fgets(FILE *file)
96{
97 char *res_buf = NULL;
98 size_t res_sz;
99
100 if (getline(&res_buf, &res_sz, file) == -1) {
101 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
102 res_buf = NULL;
103 }
104//TODO: trimming to res_sz?
105 return res_buf;
106}
107/* Get line. Remove trailing \n */
108char* FAST_FUNC xmalloc_fgetline(FILE *file)
109{
110 char *res_buf = NULL;
111 size_t res_sz;
112
113 res_sz = getline(&res_buf, &res_sz, file);
114
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?
119 } else {
120 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
121 res_buf = NULL;
122 }
123 return res_buf;
124}
125
126#endif
127
128#if 0
Denis Vlasenko2132e022008-07-15 10:33:12 +0000129/* Faster routines (~twice as fast). +170 bytes. Unused as of 2008-07.
130 *
131 * NB: they stop at NUL byte too.
132 * Performance is important here. Think "grep 50gigabyte_file"...
Denis Vlasenko5e476ba2008-07-15 21:29:44 +0000133 * Ironically, grep can't use it because of NUL issue.
Denis Vlasenko2132e022008-07-15 10:33:12 +0000134 * We sorely need C lib to provide fgets which reports size!
Denis Vlasenko5e476ba2008-07-15 21:29:44 +0000135 *
136 * Update:
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).
139 * TODO:
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.
Denis Vlasenko2132e022008-07-15 10:33:12 +0000146 */
147
148static char* xmalloc_fgets_internal(FILE *file, int *sizep)
149{
150 int len;
151 int idx = 0;
152 char *linebuf = NULL;
153
154 while (1) {
155 char *r;
156
157 linebuf = xrealloc(linebuf, idx + 0x100);
158 r = fgets(&linebuf[idx], 0x100, file);
159 if (!r) {
160 /* need to terminate in case this is error
161 * (EOF puts NUL itself) */
162 linebuf[idx] = '\0';
163 break;
164 }
165 /* stupid. fgets knows the len, it should report it somehow */
166 len = strlen(&linebuf[idx]);
167 idx += len;
168 if (len != 0xff || linebuf[idx - 1] == '\n')
169 break;
170 }
171 *sizep = idx;
172 if (idx) {
173 /* xrealloc(linebuf, idx + 1) is up to caller */
174 return linebuf;
175 }
176 free(linebuf);
177 return NULL;
178}
179
180/* Get line, remove trailing \n */
181char* FAST_FUNC xmalloc_fgetline_fast(FILE *file)
182{
183 int sz;
184 char *r = xmalloc_fgets_internal(file, &sz);
185 if (r && r[sz - 1] == '\n')
186 r[--sz] = '\0';
187 return r; /* not xrealloc(r, sz + 1)! */
188}
189
Denis Vlasenko2132e022008-07-15 10:33:12 +0000190char* FAST_FUNC xmalloc_fgets(FILE *file)
191{
192 int sz;
193 return xmalloc_fgets_internal(file, &sz);
194}
195
196/* Get line, remove trailing \n */
197char* FAST_FUNC xmalloc_fgetline(FILE *file)
198{
199 int sz;
200 char *r = xmalloc_fgets_internal(file, &sz);
201 if (!r)
202 return r;
203 if (r[sz - 1] == '\n')
204 r[--sz] = '\0';
205 return xrealloc(r, sz + 1);
206}
207#endif