#ifndef _READ_H
#define _READ_H
+void read_memory_makefile (const char *filename, unsigned long line_no, char *memory);
int read_makefile (const char *filename);
struct nameseq {
struct variable *variable_change (char *name, char *value, enum variable_origin origin);
struct variable *variable_find (char *name);
-char *variable_expand_line (char *line);
+void parse_var_line (const char *filename, unsigned long line_no, char *line, enum variable_origin origin);
+char *variable_expand_line (const char *filename, unsigned long line_no, char *line);
-void parse_var_line (char *line, enum variable_origin origin);
void variables_init (void);
#endif /* _VARIABLE_H */
char *temp = xstrdup (arg);
- parse_var_line (temp, VAR_ORIGIN_COMMAND_LINE);
+ parse_var_line ("<command-line>", 1, temp, VAR_ORIGIN_COMMAND_LINE);
free (temp);
} else {
fprintf (stderr, "%s: %s: %lu: extraneous text after '%s' directive\n", program_name, lbuf->filename, line_no, ifneq ? "ifneq" : "ifeq");
}
- p = variable_expand_line (xstrdup (arg1));
- q = variable_expand_line (xstrdup (arg2));
+ p = variable_expand_line (lbuf->filename, line_no, xstrdup (arg1));
+ q = variable_expand_line (lbuf->filename, line_no, xstrdup (arg2));
if (after_else) {
cur_if_stack->prev_ignoring |= !cur_if_stack->ignoring;
}
- p = line = variable_expand_line (xstrdup (skip_whitespace (p)));
+ p = line = variable_expand_line (lbuf->filename, line_no, xstrdup (skip_whitespace (p)));
for (; isspace ((int) *p);) {
p++;
}
*q = '\0';
- p = line = variable_expand_line (xstrdup (p));
+ p = line = variable_expand_line (lbuf->filename, line_no, xstrdup (p));
while (1) {
saved_ch = *q;
*q = '\0';
- if ((ret = include_makefile (lbuf->filename, lbuf->line_no, p, bsd))) {
+ if ((ret = include_makefile (lbuf->filename, line_no, p, bsd))) {
return ret;
}
}
- if (strchr (p, '=')) {
+ if (*p == '$') {
+
+ variable_expand_line (lbuf->filename, line_no, p);
+ continue;
+
+ } else if (strchr (p, '=')) {
record_waiting_files ();
- parse_var_line (p, VAR_ORIGIN_FILE);
+ parse_var_line (lbuf->filename, line_no, p, VAR_ORIGIN_FILE);
continue;
}
}
remove_backslash_newlines (line);
- line = variable_expand_line (xstrdup (line));
+ line = variable_expand_line (lbuf->filename, line_no, xstrdup (line));
if (!(colon = strchr (line, ':'))) {
}
+void read_memory_makefile (const char *filename, unsigned long line_no, char *memory) {
+
+ struct linebuf lbuf;
+
+ lbuf.size = 256;
+ lbuf.f = 0;
+
+ lbuf.start = xmalloc (lbuf.size);
+ lbuf.memory = memory;
+
+ lbuf.filename = filename;
+ lbuf.line_no = line_no;
+
+ read_lbuf (&lbuf, 1);
+ free (lbuf.start);
+
+}
+
void *parse_nameseq (char *line, size_t size) {
struct nameseq *start = 0;
#include <xmake/hashtab.h>
#include <xmake/lib.h>
+#include <xmake/read.h>
#include <xmake/report.h>
#include <xmake/variable.h>
#include <xmake/xmake.h>
+struct builtin_function {
+
+ const char *name;
+ char *(*func) (const char *filename, unsigned long line_no, char *input);
+
+};
+
+static char *func_eval (const char *filename, unsigned long line_no, char *input) {
+
+ read_memory_makefile (filename, line_no, input);
+ return 0;
+
+}
+
+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);
+ exit (EXIT_FAILURE);
+
+}
+
+static struct builtin_function builtin_functions[] ={
+
+ { "eval", &func_eval },
+ { "error", &func_error },
+
+ { 0, 0 }
+
+};
+
+static struct hashtab hashtab_builtin = { 0 };
static struct hashtab hashtab_vars = { 0 };
+static struct builtin_function *find_builtin_function (const char *name) {
+
+ struct hashtab_name *key;
+
+ if ((key = hashtab_get_key (&hashtab_builtin, name))) {
+ return hashtab_get (&hashtab_builtin, key);
+ }
+
+ return 0;
+
+}
+
static char *variable_suffix_replace (char *body, const char *from_s, const char *to_s) {
char *new_body = xstrdup (body);
}
-char *variable_expand_line (char *line) {
+char *variable_expand_line (const char *filename, unsigned long line_no, char *line) {
size_t pos = 0;
struct variable *var = 0;
char *alloc_replacement = 0;
+ struct builtin_function *func;
+ char saved_ch;
+
if (line[pos + 1] == '$') {
p_after_variable = line + pos + 2;
q--;
p_after_variable = q + 1;
- content = variable_expand_line (xstrndup (body, q - body));
+ content = variable_expand_line (filename, line_no, xstrndup (body, q - body));
+
+ for (q = content; *q && !isspace ((int) *q);) {
+ q++;
+ }
+
+ saved_ch = *q;
+ *q = '\0';
+
+ func = find_builtin_function (content);
+ *q = saved_ch;
+
+ if (func) {
+
+ for (; isspace ((int) *q);) {
+ q++;
+ }
+
+ alloc_replacement = func->func (filename, line_no, q);
- if ((q = strchr (content, '='))) {
+ } else if ((q = strchr (content, '='))) {
char *colon = strchr (content, ':');
}
-void parse_var_line (char *line, enum variable_origin origin) {
+void parse_var_line (const char *filename, unsigned long line_no, char *line, enum variable_origin origin) {
enum {
VAR_ASSIGN,
;
}
- var_name = variable_expand_line (xstrndup (line, p - line));
+ var_name = variable_expand_line (filename, line_no, xstrndup (line, p - line));
if (*var_name == '\0') {
case VAR_FLAVOR_SIMPLY_EXPANDED:
- new_value = variable_expand_line (new_value);
+ new_value = variable_expand_line (filename, line_no, new_value);
break;
case VAR_FLAVOR_IMMEDIATELY_EXPANDED: {
size_t dollar_count;
char *temp, *p2;
- new_value = variable_expand_line (new_value);
+ new_value = variable_expand_line (filename, line_no, new_value);
for (dollar_count = 0, p = new_value; *p; p++) {
}
-void variables_init (void) {}
+void variables_init (void) {
+
+ struct builtin_function *builtin;
+ struct hashtab_name *key;
+
+ for (builtin = builtin_functions; builtin->name; builtin++) {
+
+ if (!(key = hashtab_alloc_name (builtin->name))) {
+ continue;
+ }
+
+ hashtab_put (&hashtab_builtin, key, builtin);
+
+ }
+
+}
char *new_cmds, *s;
*q = '\0';
- new_cmds = xstrdup (p);
+ new_cmds = xstrdup (p);
*q = '\n';
- new_cmds = variable_expand_line (new_cmds);
+ new_cmds = variable_expand_line ("<command-line>", 1, new_cmds);
s = new_cmds;
while (isspace ((int) *s) || *s == '-' || *s == '@') {
return 0;
}
- vpath = variable_expand_line (xstrdup (vpath_var->value));
+ vpath = variable_expand_line ("<command-line>", 1, xstrdup (vpath_var->value));
while (vpath && *vpath) {
path = xmalloc (len + 1);
sprintf (path, "CURDIR ?= %s", cwd);
- parse_var_line (path, VAR_ORIGIN_FILE);
+ parse_var_line ("<command-line>", 1, path, VAR_ORIGIN_FILE);
free (path);
len = strlen (".CURDIR") + 4 + strlen (cwd);
path = xmalloc (len + 1);
sprintf (path, ".CURDIR ?= %s", cwd);
- parse_var_line (path, VAR_ORIGIN_FILE);
+ parse_var_line ("<command-line>", 1, path, VAR_ORIGIN_FILE);
free (path);
/*variable_add (xstrdup ("CURDIR"), xstrdup (get_current_directory ()), VAR_ORIGIN_FILE);*/