blob: 1eb4af13c975990d73217ecae6f56bc20e0f6bf5 [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 Vlasenko8b22b072006-12-02 17:58:10 +000015 * or NUL byte, inclusive. It returns a malloc'ed char * which must be
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +000016 * 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 * Return NULL if EOF/error */
Manuel Novoa III cad53642003-03-19 09:13:01 +000019
Denis Vlasenko51742f42007-04-12 00:32:05 +000020char *bb_get_chunk_from_file(FILE *file, int *end)
Eric Andersenaad1a882001-03-16 22:47:14 +000021{
Eric Andersenaad1a882001-03-16 22:47:14 +000022 int ch;
23 int idx = 0;
24 char *linebuf = NULL;
25 int linebufsz = 0;
26
Manuel Novoa III cad53642003-03-19 09:13:01 +000027 while ((ch = getc(file)) != EOF) {
Eric Andersenaad1a882001-03-16 22:47:14 +000028 /* grow the line buffer as necessary */
Denis Vlasenko8b22b072006-12-02 17:58:10 +000029 if (idx >= linebufsz) {
Denis Vlasenko51742f42007-04-12 00:32:05 +000030 linebufsz += 80;
31 linebuf = xrealloc(linebuf, linebufsz);
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000033 linebuf[idx++] = (char) ch;
34 if (!ch || (end && ch == '\n'))
35 break;
Eric Andersenaad1a882001-03-16 22:47:14 +000036 }
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000037 if (end)
38 *end = idx;
Manuel Novoa III cad53642003-03-19 09:13:01 +000039 if (linebuf) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +000040 // huh, does fgets discard prior data on error like this?
Denis Vlasenkoab24e182006-11-30 16:41:15 +000041 // I don't think so....
42 //if (ferror(file)) {
43 // free(linebuf);
44 // return NULL;
45 //}
Denis Vlasenko372686b2006-10-12 22:42:33 +000046 linebuf = xrealloc(linebuf, idx+1);
Denis Vlasenko8b22b072006-12-02 17:58:10 +000047 linebuf[idx] = '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 }
Eric Andersenaad1a882001-03-16 22:47:14 +000049 return linebuf;
50}
51
Denis Vlasenkob97c9842006-10-01 21:05:12 +000052/* Get line, including trailing \n if any */
Denis Vlasenko51742f42007-04-12 00:32:05 +000053char *xmalloc_fgets(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000054{
Rob Landley2b26fd52006-02-24 02:30:39 +000055 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000056
Rob Landley2b26fd52006-02-24 02:30:39 +000057 return bb_get_chunk_from_file(file, &i);
Manuel Novoa III cad53642003-03-19 09:13:01 +000058}
59
Denis Vlasenkob97c9842006-10-01 21:05:12 +000060/* Get line. Remove trailing \n */
Denis Vlasenko51742f42007-04-12 00:32:05 +000061char *xmalloc_getline(FILE *file)
Manuel Novoa III cad53642003-03-19 09:13:01 +000062{
Rob Landley2b26fd52006-02-24 02:30:39 +000063 int i;
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000064 char *c = bb_get_chunk_from_file(file, &i);
65
66 if (i && c[--i] == '\n')
Denis Vlasenko9a7cef92006-12-20 02:46:48 +000067 c[i] = '\0';
Bernhard Reutner-Fischer2d1a6e72006-06-10 11:04:43 +000068
Rob Landley2b26fd52006-02-24 02:30:39 +000069 return c;
Manuel Novoa III cad53642003-03-19 09:13:01 +000070}