From 28a4cb5fc214e2c65085e9cd93b3485123aecb06 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Mon, 24 Mar 2025 01:50:50 +0000 Subject: [PATCH] Added $(shell xxx) support --- read.c | 6 ++++ variable.c | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 93 insertions(+), 3 deletions(-) diff --git a/read.c b/read.c index 673a51f..0932c3d 100644 --- a/read.c +++ b/read.c @@ -883,6 +883,7 @@ int read_makefile (const char *filename) { void read_memory_makefile (const char *filename, unsigned long line_no, char *memory) { + struct if_stack *saved_if_stack; struct linebuf lbuf; lbuf.size = 256; @@ -894,8 +895,13 @@ void read_memory_makefile (const char *filename, unsigned long line_no, char *me lbuf.filename = filename; lbuf.line_no = line_no; + saved_if_stack = cur_if_stack; + cur_if_stack = 0; + read_lbuf (&lbuf, 1); free (lbuf.start); + + cur_if_stack = saved_if_stack; } diff --git a/variable.c b/variable.c index a1c6559..8fc50a7 100644 --- a/variable.c +++ b/variable.c @@ -13,6 +13,15 @@ #include #include +struct linebuf { + + char *start; + unsigned long size; + + FILE *f; + +}; + struct builtin_function { const char *name; @@ -27,18 +36,83 @@ static char *func_eval (const char *filename, unsigned long line_no, char *input } +static void read_line (struct linebuf *lbuf) { + + char *end = lbuf->start + lbuf->size; + char *p = lbuf->start; + + while (fgets (p, end - p, lbuf->f)) { + + size_t offset; + + p += strlen (p); + offset = p - lbuf->start; + + if (p[-1] == '\n') { + + p--; + + if (p[-1] == '\r') { + p[-1] = ' '; + } + + } + + if (end - p >= 80) { + continue; + } + + lbuf->size *= 2; + lbuf->start = xrealloc (lbuf->start, lbuf->size); + + p = lbuf->start + offset; + end = lbuf->start + lbuf->size; + + } + +} + static char *func_error (const char *filename, unsigned long line_no, char *input) { - fprintf (stderr, "%s: %s: %lu: %s\n", program_name, filename, line_no, input); + fprintf (stderr, "%s: %s: %lu: *** %s. Stop.\n", program_name, filename, line_no, input); exit (EXIT_FAILURE); } +static char *func_shell (const char *filename, unsigned long line_no, char *input) { + + struct linebuf lbuf; + FILE *fp; + + if (!*input) { + + fprintf (stderr, "%s: %s: %lu: empty call\n", program_name, filename, line_no); + return 0; + + } + + if (!(fp = popen (input, "rb"))) { + return 0; + } + + lbuf.size = 256; + + lbuf.start = xmalloc (lbuf.size); + lbuf.f = fp; + + read_line (&lbuf); + pclose(fp); + + return lbuf.start; + +} + static struct builtin_function builtin_functions[] ={ - { "eval", &func_eval }, { "error", &func_error }, + { "shell", &func_shell }, + { "eval", &func_eval }, { 0, 0 } }; @@ -238,7 +312,17 @@ char *variable_expand_line (const char *filename, unsigned long line_no, char *l q++; } - alloc_replacement = func->func (filename, line_no, q); + if ((alloc_replacement = func->func (filename, line_no, q))) { + + new = xmalloc (pos + strlen (alloc_replacement) + 1); + + memcpy (new, line, pos); + memcpy (new + pos, alloc_replacement, strlen (alloc_replacement)); + + free (alloc_replacement); + return new; + + } } else if ((q = strchr (content, '='))) { -- 2.34.1