blob: cc61a92656d8d9e3d2ff6d619ffc720a2dce8520 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenaad1a882001-03-16 22:47:14 +000010 */
Eric Andersenaad1a882001-03-16 22:47:14 +000011#include "libbb.h"
12
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020013char* FAST_FUNC bb_get_chunk_from_file(FILE *file, int *end)
Eric Andersenaad1a882001-03-16 22:47:14 +000014{
Eric Andersenaad1a882001-03-16 22:47:14 +000015 int ch;
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020016 unsigned idx = 0;
Eric Andersenaad1a882001-03-16 22:47:14 +000017 char *linebuf = NULL;
Eric Andersenaad1a882001-03-16 22:47:14 +000018
Manuel Novoa III cad53642003-03-19 09:13:01 +000019 while ((ch = getc(file)) != EOF) {
Eric Andersenaad1a882001-03-16 22:47:14 +000020 /* grow the line buffer as necessary */
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020021 if (!(idx & 0xff))
22 linebuf = xrealloc(linebuf, idx + 0x100);
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000023 linebuf[idx++] = (char) ch;
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020024 if (ch == '\0')
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000025 break;
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020026 if (end && ch == '\n')
27 break;
Eric Andersenaad1a882001-03-16 22:47:14 +000028 }
Denys Vlasenkoa1a44832011-06-17 03:37:43 +020029 if (end)
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000030 *end = idx;
Manuel Novoa III cad53642003-03-19 09:13:01 +000031 if (linebuf) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +000032 // huh, does fgets discard prior data on error like this?
Denis Vlasenkoab24e182006-11-30 16:41:15 +000033 // I don't think so....
34 //if (ferror(file)) {
35 // free(linebuf);
36 // return NULL;
37 //}
Denis Vlasenkodeeed592008-07-08 05:14:36 +000038 linebuf = xrealloc(linebuf, idx + 1);
Denis Vlasenko8b22b072006-12-02 17:58:10 +000039 linebuf[idx] = '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 }
Eric Andersenaad1a882001-03-16 22:47:14 +000041 return linebuf;
42}
43
Denis Vlasenkob97c9842006-10-01 21:05:12 +000044/* Get line, including trailing \n if any */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000045char* FAST_FUNC xmalloc_fgets(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000046{
Rob Landley2b26fd52006-02-24 02:30:39 +000047 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000048
Rob Landley2b26fd52006-02-24 02:30:39 +000049 return bb_get_chunk_from_file(file, &i);
Manuel Novoa III cad53642003-03-19 09:13:01 +000050}
Denis Vlasenkob97c9842006-10-01 21:05:12 +000051/* Get line. Remove trailing \n */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000052char* FAST_FUNC xmalloc_fgetline(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 char *c = bb_get_chunk_from_file(file, &i);
56
57 if (i && c[--i] == '\n')
Denis Vlasenko9a7cef92006-12-20 02:46:48 +000058 c[i] = '\0';
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000059
Rob Landley2b26fd52006-02-24 02:30:39 +000060 return c;
Manuel Novoa III cad53642003-03-19 09:13:01 +000061}
Denis Vlasenko2132e022008-07-15 10:33:12 +000062
Denis Vlasenko5e476ba2008-07-15 21:29:44 +000063#if 0
Denis Vlasenko3fd15e12008-08-09 16:15:14 +000064/* GNUism getline() should be faster (not tested) than a loop with fgetc */
65
66/* Get line, including trailing \n if any */
67char* FAST_FUNC xmalloc_fgets(FILE *file)
68{
69 char *res_buf = NULL;
70 size_t res_sz;
71
72 if (getline(&res_buf, &res_sz, file) == -1) {
73 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
74 res_buf = NULL;
75 }
76//TODO: trimming to res_sz?
77 return res_buf;
78}
79/* Get line. Remove trailing \n */
80char* FAST_FUNC xmalloc_fgetline(FILE *file)
81{
82 char *res_buf = NULL;
83 size_t res_sz;
84
85 res_sz = getline(&res_buf, &res_sz, file);
86
87 if ((ssize_t)res_sz != -1) {
88 if (res_buf[res_sz - 1] == '\n')
89 res_buf[--res_sz] = '\0';
90//TODO: trimming to res_sz?
91 } else {
92 free(res_buf); /* uclibc allocates a buffer even on EOF. WTF? */
93 res_buf = NULL;
94 }
95 return res_buf;
96}
97
98#endif
99
100#if 0
Denis Vlasenko2132e022008-07-15 10:33:12 +0000101/* Faster routines (~twice as fast). +170 bytes. Unused as of 2008-07.
102 *
103 * NB: they stop at NUL byte too.
104 * Performance is important here. Think "grep 50gigabyte_file"...
Denis Vlasenko5e476ba2008-07-15 21:29:44 +0000105 * Ironically, grep can't use it because of NUL issue.
Denis Vlasenko2132e022008-07-15 10:33:12 +0000106 * We sorely need C lib to provide fgets which reports size!
Denis Vlasenko5e476ba2008-07-15 21:29:44 +0000107 *
108 * Update:
109 * Actually, uclibc and glibc have it. man getline. It's GNUism,
110 * but very useful one (if it's as fast as this code).
111 * TODO:
112 * - currently, sed and sort use bb_get_chunk_from_file and heavily
113 * depend on its "stop on \n or \0" behavior, and STILL they fail
114 * to handle all cases with embedded NULs correctly. So:
115 * - audit sed and sort; convert them to getline FIRST.
116 * - THEN ditch bb_get_chunk_from_file, replace it with getline.
117 * - provide getline implementation for non-GNU systems.
Denis Vlasenko2132e022008-07-15 10:33:12 +0000118 */
119
120static char* xmalloc_fgets_internal(FILE *file, int *sizep)
121{
122 int len;
123 int idx = 0;
124 char *linebuf = NULL;
125
126 while (1) {
127 char *r;
128
129 linebuf = xrealloc(linebuf, idx + 0x100);
130 r = fgets(&linebuf[idx], 0x100, file);
131 if (!r) {
132 /* need to terminate in case this is error
133 * (EOF puts NUL itself) */
134 linebuf[idx] = '\0';
135 break;
136 }
137 /* stupid. fgets knows the len, it should report it somehow */
138 len = strlen(&linebuf[idx]);
139 idx += len;
140 if (len != 0xff || linebuf[idx - 1] == '\n')
141 break;
142 }
143 *sizep = idx;
144 if (idx) {
145 /* xrealloc(linebuf, idx + 1) is up to caller */
146 return linebuf;
147 }
148 free(linebuf);
149 return NULL;
150}
151
152/* Get line, remove trailing \n */
153char* FAST_FUNC xmalloc_fgetline_fast(FILE *file)
154{
155 int sz;
156 char *r = xmalloc_fgets_internal(file, &sz);
157 if (r && r[sz - 1] == '\n')
158 r[--sz] = '\0';
159 return r; /* not xrealloc(r, sz + 1)! */
160}
161
Denis Vlasenko2132e022008-07-15 10:33:12 +0000162char* FAST_FUNC xmalloc_fgets(FILE *file)
163{
164 int sz;
165 return xmalloc_fgets_internal(file, &sz);
166}
167
168/* Get line, remove trailing \n */
169char* FAST_FUNC xmalloc_fgetline(FILE *file)
170{
171 int sz;
172 char *r = xmalloc_fgets_internal(file, &sz);
173 if (!r)
174 return r;
175 if (r[sz - 1] == '\n')
176 r[--sz] = '\0';
177 return xrealloc(r, sz + 1);
178}
179#endif