blob: 56761f941959112a02b21547f9e76f768e6a9229 [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
Eric Andersenaad1a882001-03-16 22:47:14 +000012#include "libbb.h"
13
Denis Vlasenkof7996f32007-01-11 17:20:00 +000014/* This function reads an entire line from a text file, up to a newline
Denis Vlasenkoabee3d02007-12-26 20:44:45 +000015 * or NUL byte, inclusive. It returns a malloc'ed char * which
16 * must be free'ed by the caller. If end is NULL '\n' isn't considered
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +000017 * end of line. If end isn't NULL, length of the chunk read is stored in it.
18 * Return NULL if EOF/error */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000019char* FAST_FUNC bb_get_chunk_from_file(FILE *file, int *end)
Eric Andersenaad1a882001-03-16 22:47:14 +000020{
Eric Andersenaad1a882001-03-16 22:47:14 +000021 int ch;
22 int idx = 0;
23 char *linebuf = NULL;
24 int linebufsz = 0;
25
Manuel Novoa III cad53642003-03-19 09:13:01 +000026 while ((ch = getc(file)) != EOF) {
Eric Andersenaad1a882001-03-16 22:47:14 +000027 /* grow the line buffer as necessary */
Denis Vlasenko8b22b072006-12-02 17:58:10 +000028 if (idx >= linebufsz) {
Denis Vlasenko51742f42007-04-12 00:32:05 +000029 linebufsz += 80;
30 linebuf = xrealloc(linebuf, linebufsz);
Manuel Novoa III cad53642003-03-19 09:13:01 +000031 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000032 linebuf[idx++] = (char) ch;
33 if (!ch || (end && ch == '\n'))
34 break;
Eric Andersenaad1a882001-03-16 22:47:14 +000035 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000036 if (end)
37 *end = idx;
Manuel Novoa III cad53642003-03-19 09:13:01 +000038 if (linebuf) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +000039 // huh, does fgets discard prior data on error like this?
Denis Vlasenkoab24e182006-11-30 16:41:15 +000040 // I don't think so....
41 //if (ferror(file)) {
42 // free(linebuf);
43 // return NULL;
44 //}
Denis Vlasenkodeeed592008-07-08 05:14:36 +000045 linebuf = xrealloc(linebuf, idx + 1);
Denis Vlasenko8b22b072006-12-02 17:58:10 +000046 linebuf[idx] = '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +000047 }
Eric Andersenaad1a882001-03-16 22:47:14 +000048 return linebuf;
49}
50
Denis Vlasenkob97c9842006-10-01 21:05:12 +000051/* Get line, including trailing \n if any */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000052char* FAST_FUNC xmalloc_fgets(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000053{
Rob Landley2b26fd52006-02-24 02:30:39 +000054 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000055
Rob Landley2b26fd52006-02-24 02:30:39 +000056 return bb_get_chunk_from_file(file, &i);
Manuel Novoa III cad53642003-03-19 09:13:01 +000057}
58
Denis Vlasenkob97c9842006-10-01 21:05:12 +000059/* Get line. Remove trailing \n */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000060char* FAST_FUNC xmalloc_fgetline(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000061{
Rob Landley2b26fd52006-02-24 02:30:39 +000062 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000063 char *c = bb_get_chunk_from_file(file, &i);
64
65 if (i && c[--i] == '\n')
Denis Vlasenko9a7cef92006-12-20 02:46:48 +000066 c[i] = '\0';
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000067
Rob Landley2b26fd52006-02-24 02:30:39 +000068 return c;
Manuel Novoa III cad53642003-03-19 09:13:01 +000069}
Denis Vlasenko2132e022008-07-15 10:33:12 +000070
Denis Vlasenko5e476ba2008-07-15 21:29:44 +000071#if 0
Denis Vlasenko2132e022008-07-15 10:33:12 +000072/* Faster routines (~twice as fast). +170 bytes. Unused as of 2008-07.
73 *
74 * NB: they stop at NUL byte too.
75 * Performance is important here. Think "grep 50gigabyte_file"...
Denis Vlasenko5e476ba2008-07-15 21:29:44 +000076 * Ironically, grep can't use it because of NUL issue.
Denis Vlasenko2132e022008-07-15 10:33:12 +000077 * We sorely need C lib to provide fgets which reports size!
Denis Vlasenko5e476ba2008-07-15 21:29:44 +000078 *
79 * Update:
80 * Actually, uclibc and glibc have it. man getline. It's GNUism,
81 * but very useful one (if it's as fast as this code).
82 * TODO:
83 * - currently, sed and sort use bb_get_chunk_from_file and heavily
84 * depend on its "stop on \n or \0" behavior, and STILL they fail
85 * to handle all cases with embedded NULs correctly. So:
86 * - audit sed and sort; convert them to getline FIRST.
87 * - THEN ditch bb_get_chunk_from_file, replace it with getline.
88 * - provide getline implementation for non-GNU systems.
Denis Vlasenko2132e022008-07-15 10:33:12 +000089 */
90
91static char* xmalloc_fgets_internal(FILE *file, int *sizep)
92{
93 int len;
94 int idx = 0;
95 char *linebuf = NULL;
96
97 while (1) {
98 char *r;
99
100 linebuf = xrealloc(linebuf, idx + 0x100);
101 r = fgets(&linebuf[idx], 0x100, file);
102 if (!r) {
103 /* need to terminate in case this is error
104 * (EOF puts NUL itself) */
105 linebuf[idx] = '\0';
106 break;
107 }
108 /* stupid. fgets knows the len, it should report it somehow */
109 len = strlen(&linebuf[idx]);
110 idx += len;
111 if (len != 0xff || linebuf[idx - 1] == '\n')
112 break;
113 }
114 *sizep = idx;
115 if (idx) {
116 /* xrealloc(linebuf, idx + 1) is up to caller */
117 return linebuf;
118 }
119 free(linebuf);
120 return NULL;
121}
122
123/* Get line, remove trailing \n */
124char* FAST_FUNC xmalloc_fgetline_fast(FILE *file)
125{
126 int sz;
127 char *r = xmalloc_fgets_internal(file, &sz);
128 if (r && r[sz - 1] == '\n')
129 r[--sz] = '\0';
130 return r; /* not xrealloc(r, sz + 1)! */
131}
132
Denis Vlasenko2132e022008-07-15 10:33:12 +0000133char* FAST_FUNC xmalloc_fgets(FILE *file)
134{
135 int sz;
136 return xmalloc_fgets_internal(file, &sz);
137}
138
139/* Get line, remove trailing \n */
140char* FAST_FUNC xmalloc_fgetline(FILE *file)
141{
142 int sz;
143 char *r = xmalloc_fgets_internal(file, &sz);
144 if (!r)
145 return r;
146 if (r[sz - 1] == '\n')
147 r[--sz] = '\0';
148 return xrealloc(r, sz + 1);
149}
150#endif