Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 3 | * Utility routines. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) many different people. |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 6 | * If you wrote this, please acknowledge your work. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 7 | * |
"Robert P. J. Day" | 5d8843e | 2006-07-10 11:41:19 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
| 12 | |
| 13 | /* Read up to (and including) TERMINATING_STRING from FILE and return it. |
| 14 | * Return NULL on EOF. */ |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 15 | |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 16 | char *xmalloc_fgets_str(FILE *file, const char *terminating_string) |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 17 | { |
| 18 | char *linebuf = NULL; |
| 19 | const int term_length = strlen(terminating_string); |
| 20 | int end_string_offset; |
| 21 | int linebufsz = 0; |
| 22 | int idx = 0; |
| 23 | int ch; |
| 24 | |
| 25 | while (1) { |
| 26 | ch = fgetc(file); |
| 27 | if (ch == EOF) { |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 28 | free(linebuf); |
| 29 | return NULL; |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | /* grow the line buffer as necessary */ |
| 33 | while (idx > linebufsz - 2) { |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 34 | linebufsz += 200; |
| 35 | linebuf = xrealloc(linebuf, linebufsz); |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | linebuf[idx] = ch; |
| 39 | idx++; |
| 40 | |
| 41 | /* Check for terminating string */ |
| 42 | end_string_offset = idx - term_length; |
Denis Vlasenko | a6dbb08 | 2006-10-12 19:29:44 +0000 | [diff] [blame] | 43 | if (end_string_offset > 0 |
| 44 | && memcmp(&linebuf[end_string_offset], terminating_string, term_length) == 0 |
| 45 | ) { |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 46 | idx -= term_length; |
| 47 | break; |
| 48 | } |
| 49 | } |
Denis Vlasenko | a6dbb08 | 2006-10-12 19:29:44 +0000 | [diff] [blame] | 50 | linebuf = xrealloc(linebuf, idx + 1); |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 51 | linebuf[idx] = '\0'; |
Denis Vlasenko | a6dbb08 | 2006-10-12 19:29:44 +0000 | [diff] [blame] | 52 | return linebuf; |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 53 | } |