summaryrefslogtreecommitdiff
path: root/utility.c
diff options
context:
space:
mode:
authorMark Whitley2000-06-28 22:15:26 +0000
committerMark Whitley2000-06-28 22:15:26 +0000
commit1ca41775bbdc07cf67be79aebc566754c9c02855 (patch)
tree0ac134f0a80036aec272b04c3a057ea2ae055b20 /utility.c
parentd37218941c37795cc8e96ddb3312d83fb2269d5a (diff)
downloadbusybox-1ca41775bbdc07cf67be79aebc566754c9c02855.zip
busybox-1ca41775bbdc07cf67be79aebc566754c9c02855.tar.gz
Yanked out the cstring_alloc() and cstring_lineFromFile() functions from
utility.c and replaced them with get_line_from_file() from the new grep.c. Also changed declaration in internal.h and replaced instances of cstring_lineFromFile() in dc.c and sort.c with get_line_from_file(). Tested them and they worked fine.
Diffstat (limited to 'utility.c')
-rw-r--r--utility.c75
1 files changed, 27 insertions, 48 deletions
diff --git a/utility.c b/utility.c
index a45edde..de53dbd 100644
--- a/utility.c
+++ b/utility.c
@@ -1586,56 +1586,35 @@ extern int find_real_root_device_name(char* name)
}
#endif
-const unsigned int CSTRING_BUFFER_LENGTH = 1024;
-/* recursive parser that returns cstrings of arbitrary length
- * from a FILE*
- */
-static char *
-cstring_alloc(FILE* f, int depth)
-{
- char *cstring;
- char buffer[CSTRING_BUFFER_LENGTH];
- int target = CSTRING_BUFFER_LENGTH * depth;
- int c, i, len, size;
-
- /* fill buffer */
- i = 0;
- while ((c = fgetc(f)) != EOF) {
- buffer[i] = (char) c;
- if (buffer[i++] == 0x0a) { break; }
- if (i == CSTRING_BUFFER_LENGTH) { break; }
- }
- len = i;
-
- /* recurse or malloc? */
- if (len == CSTRING_BUFFER_LENGTH) {
- cstring = cstring_alloc(f, (depth + 1));
- } else {
- /* [special case] EOF */
- if ((depth | len) == 0) { return NULL; }
-
- /* malloc */
- size = target + len + 1;
- cstring = malloc(size);
- if (!cstring) { return NULL; }
- cstring[size - 1] = 0;
- }
-
- /* copy buffer */
- if (cstring) {
- memcpy(&cstring[target], buffer, len);
- }
- return cstring;
-}
+static const int GROWBY = 80; /* how large we will grow strings by */
-/*
- * wrapper around recursive cstring_alloc
- * it's the caller's responsibility to free the cstring
- */
-char *
-cstring_lineFromFile(FILE *f)
+/* get_line_from_file() - This function reads an entire line from a text file
+ * up to a newline. It returns a malloc'ed char * which must be stored and
+ * free'ed by the caller. */
+extern char *get_line_from_file(FILE *file)
{
- return cstring_alloc(f, 0);
+ int ch;
+ int idx = 0;
+ char *linebuf = NULL;
+ int linebufsz = 0;
+
+ while (1) {
+ ch = fgetc(file);
+ if (ch == EOF)
+ break;
+ /* grow the line buffer as necessary */
+ if (idx > linebufsz-1)
+ linebuf = realloc(linebuf, linebufsz += GROWBY);
+ linebuf[idx++] = (char)ch;
+ if ((char)ch == '\n')
+ break;
+ }
+
+ if (idx == 0)
+ return NULL;
+
+ linebuf[idx] = 0;
+ return linebuf;
}
/* END CODE */