1991-09-13 23:39:37 +00:00
|
|
|
|
/* Variable expansion functions for GNU Make.
|
1995-01-15 15:32:37 +00:00
|
|
|
|
Copyright (C) 1988, 89, 91, 92, 93, 95 Free Software Foundation, Inc.
|
1991-09-13 23:39:37 +00:00
|
|
|
|
This file is part of GNU Make.
|
|
|
|
|
|
|
|
|
|
GNU Make is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
GNU Make is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU Make; see the file COPYING. If not, write to
|
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
|
|
#include "make.h"
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#include "filedef.h"
|
|
|
|
|
#include "job.h"
|
1991-09-13 23:39:37 +00:00
|
|
|
|
#include "commands.h"
|
|
|
|
|
#include "variable.h"
|
|
|
|
|
|
1992-06-11 02:27:09 +00:00
|
|
|
|
/* The next two describe the variable output buffer.
|
|
|
|
|
This buffer is used to hold the variable-expansion of a line of the
|
|
|
|
|
makefile. It is made bigger with realloc whenever it is too small.
|
|
|
|
|
variable_buffer_length is the size currently allocated.
|
|
|
|
|
variable_buffer is the address of the buffer. */
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1992-06-11 02:27:09 +00:00
|
|
|
|
static unsigned int variable_buffer_length;
|
|
|
|
|
static char *variable_buffer;
|
|
|
|
|
|
|
|
|
|
/* Subroutine of variable_expand and friends:
|
|
|
|
|
The text to add is LENGTH chars starting at STRING to the variable_buffer.
|
|
|
|
|
The text is added to the buffer at PTR, and the updated pointer into
|
|
|
|
|
the buffer is returned as the value. Thus, the value returned by
|
|
|
|
|
each call to variable_buffer_output should be the first argument to
|
|
|
|
|
the following call. */
|
|
|
|
|
|
1992-06-12 00:29:21 +00:00
|
|
|
|
char *
|
1992-06-11 02:27:09 +00:00
|
|
|
|
variable_buffer_output (ptr, string, length)
|
|
|
|
|
char *ptr, *string;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
{
|
|
|
|
|
register unsigned int newlen = length + (ptr - variable_buffer);
|
|
|
|
|
|
|
|
|
|
if (newlen > variable_buffer_length)
|
|
|
|
|
{
|
|
|
|
|
unsigned int offset = ptr - variable_buffer;
|
1992-06-16 23:43:29 +00:00
|
|
|
|
variable_buffer_length = (newlen + 100 > 2 * variable_buffer_length
|
|
|
|
|
? newlen + 100
|
|
|
|
|
: 2 * variable_buffer_length);
|
1992-06-11 02:27:09 +00:00
|
|
|
|
variable_buffer = (char *) xrealloc (variable_buffer,
|
|
|
|
|
variable_buffer_length);
|
|
|
|
|
ptr = variable_buffer + offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bcopy (string, ptr, length);
|
|
|
|
|
return ptr + length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return a pointer to the beginning of the variable buffer. */
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
initialize_variable_output ()
|
|
|
|
|
{
|
|
|
|
|
/* If we don't have a variable output buffer yet, get one. */
|
|
|
|
|
|
|
|
|
|
if (variable_buffer == 0)
|
|
|
|
|
{
|
|
|
|
|
variable_buffer_length = 200;
|
|
|
|
|
variable_buffer = (char *) xmalloc (variable_buffer_length);
|
|
|
|
|
variable_buffer[0] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return variable_buffer;
|
|
|
|
|
}
|
|
|
|
|
|
1991-09-13 23:39:37 +00:00
|
|
|
|
/* Recursively expand V. The returned string is malloc'd. */
|
|
|
|
|
|
1992-12-22 23:44:03 +00:00
|
|
|
|
char *
|
1991-09-13 23:39:37 +00:00
|
|
|
|
recursively_expand (v)
|
|
|
|
|
register struct variable *v;
|
|
|
|
|
{
|
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
|
|
if (v->expanding)
|
|
|
|
|
{
|
|
|
|
|
/* Expanding V causes infinite recursion. Lose. */
|
|
|
|
|
if (reading_filename == 0)
|
|
|
|
|
fatal ("Recursive variable `%s' references itself (eventually)",
|
|
|
|
|
v->name);
|
|
|
|
|
else
|
|
|
|
|
makefile_fatal
|
|
|
|
|
(reading_filename, *reading_lineno_ptr,
|
|
|
|
|
"Recursive variable `%s' references itself (eventually)",
|
|
|
|
|
v->name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v->expanding = 1;
|
|
|
|
|
value = allocated_variable_expand (v->value);
|
|
|
|
|
v->expanding = 0;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
1993-05-06 21:14:33 +00:00
|
|
|
|
|
1993-06-25 19:20:36 +00:00
|
|
|
|
/* Warn that NAME is an undefined variable. */
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
__inline
|
|
|
|
|
#endif
|
|
|
|
|
static void
|
|
|
|
|
warn_undefined (name, length)
|
|
|
|
|
char *name;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
{
|
|
|
|
|
if (warn_undefined_variables_flag)
|
|
|
|
|
{
|
|
|
|
|
static const char warnmsg[] = "warning: undefined variable `%.*s'";
|
|
|
|
|
if (reading_filename != 0)
|
|
|
|
|
makefile_error (reading_filename, *reading_lineno_ptr,
|
|
|
|
|
warnmsg, length, name);
|
|
|
|
|
else
|
|
|
|
|
error (warnmsg, length, name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expand a simple reference to variable NAME, which is LENGTH chars long. */
|
1993-05-06 21:14:33 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
__inline
|
|
|
|
|
#endif
|
|
|
|
|
static char *
|
|
|
|
|
reference_variable (o, name, length)
|
|
|
|
|
char *o;
|
|
|
|
|
char *name;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
{
|
|
|
|
|
register struct variable *v = lookup_variable (name, length);
|
|
|
|
|
|
1993-06-25 19:20:36 +00:00
|
|
|
|
if (v == 0)
|
|
|
|
|
warn_undefined (name, length);
|
|
|
|
|
|
1993-05-06 21:14:33 +00:00
|
|
|
|
if (v != 0 && *v->value != '\0')
|
|
|
|
|
{
|
|
|
|
|
char *value = (v->recursive ? recursively_expand (v) : v->value);
|
|
|
|
|
o = variable_buffer_output (o, value, strlen (value));
|
|
|
|
|
if (v->recursive)
|
|
|
|
|
free (value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
}
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
/* Scan LINE for variable references and expansion-function calls.
|
|
|
|
|
Build in `variable_buffer' the result of expanding the references and calls.
|
|
|
|
|
Return the address of the resulting string, which is null-terminated
|
|
|
|
|
and is valid only until the next time this function is called. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
variable_expand (line)
|
|
|
|
|
register char *line;
|
|
|
|
|
{
|
|
|
|
|
register struct variable *v;
|
|
|
|
|
register char *p, *o, *p1;
|
|
|
|
|
|
|
|
|
|
p = line;
|
|
|
|
|
o = initialize_variable_output ();
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
/* Copy all following uninteresting chars all at once to the
|
|
|
|
|
variable output buffer, and skip them. Uninteresting chars end
|
|
|
|
|
at the next $ or the end of the input. */
|
|
|
|
|
|
|
|
|
|
p1 = index (p, '$');
|
|
|
|
|
|
|
|
|
|
o = variable_buffer_output (o, p, p1 != 0 ? p1 - p : strlen (p) + 1);
|
|
|
|
|
|
|
|
|
|
if (p1 == 0)
|
|
|
|
|
break;
|
|
|
|
|
p = p1 + 1;
|
|
|
|
|
|
|
|
|
|
/* Dispatch on the char that follows the $. */
|
|
|
|
|
|
|
|
|
|
switch (*p)
|
|
|
|
|
{
|
|
|
|
|
case '$':
|
|
|
|
|
/* $$ seen means output one $ to the variable output buffer. */
|
|
|
|
|
o = variable_buffer_output (o, p, 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '(':
|
|
|
|
|
case '{':
|
|
|
|
|
/* $(...) or ${...} is the general case of substitution. */
|
|
|
|
|
{
|
|
|
|
|
char openparen = *p;
|
|
|
|
|
char closeparen = (openparen == '(') ? ')' : '}';
|
|
|
|
|
register char *beg = p + 1;
|
1995-01-15 15:32:37 +00:00
|
|
|
|
int free_beg = 0;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
char *op, *begp;
|
1995-01-15 15:32:37 +00:00
|
|
|
|
char *end, *colon;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
op = o;
|
|
|
|
|
begp = p;
|
|
|
|
|
if (handle_function (&op, &begp))
|
|
|
|
|
{
|
|
|
|
|
o = op;
|
|
|
|
|
p = begp;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Is there a variable reference inside the parens or braces?
|
|
|
|
|
If so, expand it before expanding the entire reference. */
|
|
|
|
|
|
1995-01-15 15:32:37 +00:00
|
|
|
|
end = index (beg, closeparen);
|
|
|
|
|
if (end == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Unterminated variable reference. */
|
|
|
|
|
if (reading_filename != 0)
|
|
|
|
|
makefile_fatal (reading_filename, *reading_lineno_ptr,
|
|
|
|
|
"unterminated variable reference");
|
|
|
|
|
else
|
|
|
|
|
fatal ("unterminated variable reference");
|
|
|
|
|
}
|
|
|
|
|
p1 = lindex (beg, end, '$');
|
1991-09-13 23:39:37 +00:00
|
|
|
|
if (p1 != 0)
|
|
|
|
|
{
|
|
|
|
|
/* BEG now points past the opening paren or brace.
|
|
|
|
|
Count parens or braces until it is matched. */
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (p = beg; *p != '\0'; ++p)
|
|
|
|
|
{
|
|
|
|
|
if (*p == openparen)
|
|
|
|
|
++count;
|
|
|
|
|
else if (*p == closeparen && --count < 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
1993-02-03 20:59:22 +00:00
|
|
|
|
/* If COUNT is >= 0, there were unmatched opening parens
|
1991-09-13 23:39:37 +00:00
|
|
|
|
or braces, so we go to the simple case of a variable name
|
|
|
|
|
such as `$($(a)'. */
|
|
|
|
|
if (count < 0)
|
|
|
|
|
{
|
1995-01-15 15:32:37 +00:00
|
|
|
|
beg = expand_argument (beg, p); /* Expand the name. */
|
|
|
|
|
free_beg = 1; /* Remember to free BEG when finished. */
|
|
|
|
|
end = index (beg, '\0');
|
1991-09-13 23:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1995-01-15 15:32:37 +00:00
|
|
|
|
else
|
|
|
|
|
/* Advance P to the end of this reference. After we are
|
|
|
|
|
finished expanding this one, P will be incremented to
|
|
|
|
|
continue the scan. */
|
|
|
|
|
p = end;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
/* This is not a reference to a built-in function and
|
1995-01-15 15:32:37 +00:00
|
|
|
|
any variable references inside are now expanded.
|
|
|
|
|
Is the resultant text a substitution reference? */
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1995-01-15 16:33:35 +00:00
|
|
|
|
colon = lindex (beg, end, ':');
|
1995-01-15 15:32:37 +00:00
|
|
|
|
if (colon != 0)
|
1991-09-13 23:39:37 +00:00
|
|
|
|
{
|
1995-01-15 15:32:37 +00:00
|
|
|
|
/* This looks like a substitution reference: $(FOO:A=B). */
|
1993-05-06 21:14:33 +00:00
|
|
|
|
char *subst_beg, *subst_end, *replace_beg, *replace_end;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1993-05-06 21:14:33 +00:00
|
|
|
|
subst_beg = colon + 1;
|
1995-01-15 15:32:37 +00:00
|
|
|
|
subst_end = index (subst_beg, '=');
|
|
|
|
|
if (subst_end == 0)
|
|
|
|
|
/* There is no = in sight. Punt on the substitution
|
|
|
|
|
reference and treat this as a variable name containing
|
|
|
|
|
a colon, in the code below. */
|
|
|
|
|
colon = 0;
|
|
|
|
|
else
|
1991-09-13 23:39:37 +00:00
|
|
|
|
{
|
1995-01-15 15:32:37 +00:00
|
|
|
|
replace_beg = subst_end + 1;
|
|
|
|
|
replace_end = end;
|
1993-05-06 21:14:33 +00:00
|
|
|
|
|
1995-01-15 15:32:37 +00:00
|
|
|
|
/* Extract the variable name before the colon
|
|
|
|
|
and look up that variable. */
|
|
|
|
|
v = lookup_variable (beg, colon - beg);
|
|
|
|
|
if (v == 0)
|
|
|
|
|
warn_undefined (beg, colon - beg);
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1995-01-15 15:32:37 +00:00
|
|
|
|
if (v != 0 && *v->value != '\0')
|
|
|
|
|
{
|
|
|
|
|
char *value = (v->recursive ? recursively_expand (v)
|
|
|
|
|
: v->value);
|
|
|
|
|
char *pattern, *percent;
|
|
|
|
|
if (free_beg)
|
|
|
|
|
{
|
|
|
|
|
*subst_end = '\0';
|
|
|
|
|
pattern = subst_beg;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1995-02-06 22:36:43 +00:00
|
|
|
|
pattern = (char *) alloca (subst_end - subst_beg
|
|
|
|
|
+ 1);
|
1995-01-15 15:32:37 +00:00
|
|
|
|
bcopy (subst_beg, pattern, subst_end - subst_beg);
|
|
|
|
|
pattern[subst_end - subst_beg] = '\0';
|
|
|
|
|
}
|
|
|
|
|
percent = find_percent (pattern);
|
|
|
|
|
if (percent != 0)
|
|
|
|
|
{
|
|
|
|
|
char *replace;
|
|
|
|
|
if (free_beg)
|
|
|
|
|
{
|
|
|
|
|
*replace_end = '\0';
|
|
|
|
|
replace = replace_beg;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1995-02-06 22:36:43 +00:00
|
|
|
|
replace = (char *) alloca (replace_end
|
|
|
|
|
- replace_beg
|
|
|
|
|
+ 1);
|
1995-01-15 15:32:37 +00:00
|
|
|
|
bcopy (replace_beg, replace,
|
|
|
|
|
replace_end - replace_beg);
|
|
|
|
|
replace[replace_end - replace_beg] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
o = patsubst_expand (o, value, pattern, replace,
|
|
|
|
|
percent, (char *) 0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
o = subst_expand (o, value,
|
|
|
|
|
pattern, replace_beg,
|
|
|
|
|
strlen (pattern),
|
|
|
|
|
end - replace_beg,
|
|
|
|
|
0, 1);
|
|
|
|
|
if (v->recursive)
|
|
|
|
|
free (value);
|
|
|
|
|
}
|
1991-09-13 23:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1995-01-15 15:32:37 +00:00
|
|
|
|
if (colon == 0)
|
|
|
|
|
/* This is an ordinary variable reference.
|
|
|
|
|
Look up the value of the variable. */
|
1993-05-06 21:14:33 +00:00
|
|
|
|
o = reference_variable (o, beg, end - beg);
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1995-01-15 15:32:37 +00:00
|
|
|
|
if (free_beg)
|
|
|
|
|
free (beg);
|
1991-09-13 23:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '\0':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (isblank (p[-1]))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* A $ followed by a random char is a variable reference:
|
|
|
|
|
$a is equivalent to $(a). */
|
|
|
|
|
{
|
|
|
|
|
/* We could do the expanding here, but this way
|
|
|
|
|
avoids code repetition at a small performance cost. */
|
|
|
|
|
char name[5];
|
|
|
|
|
name[0] = '$';
|
|
|
|
|
name[1] = '(';
|
|
|
|
|
name[2] = *p;
|
|
|
|
|
name[3] = ')';
|
|
|
|
|
name[4] = '\0';
|
|
|
|
|
p1 = allocated_variable_expand (name);
|
|
|
|
|
o = variable_buffer_output (o, p1, strlen (p1));
|
|
|
|
|
free (p1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*p == '\0')
|
|
|
|
|
break;
|
|
|
|
|
else
|
|
|
|
|
++p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(void) variable_buffer_output (o, "", 1);
|
|
|
|
|
return initialize_variable_output ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expand an argument for an expansion function.
|
|
|
|
|
The text starting at STR and ending at END is variable-expanded
|
|
|
|
|
into a null-terminated string that is returned as the value.
|
|
|
|
|
This is done without clobbering `variable_buffer' or the current
|
|
|
|
|
variable-expansion that is in progress. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
expand_argument (str, end)
|
|
|
|
|
char *str, *end;
|
|
|
|
|
{
|
1993-05-06 21:14:33 +00:00
|
|
|
|
char *tmp;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1993-05-06 21:14:33 +00:00
|
|
|
|
if (*end == '\0')
|
|
|
|
|
tmp = str;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
tmp = (char *) alloca (end - str + 1);
|
|
|
|
|
bcopy (str, tmp, end - str);
|
|
|
|
|
tmp[end - str] = '\0';
|
|
|
|
|
}
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
1993-05-06 21:14:33 +00:00
|
|
|
|
return allocated_variable_expand (tmp);
|
1991-09-13 23:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expand LINE for FILE. Error messages refer to the file and line where
|
|
|
|
|
FILE's commands were found. Expansion uses FILE's variable set list. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
variable_expand_for_file (line, file)
|
|
|
|
|
char *line;
|
|
|
|
|
register struct file *file;
|
|
|
|
|
{
|
|
|
|
|
char *result;
|
|
|
|
|
struct variable_set_list *save;
|
|
|
|
|
|
|
|
|
|
if (file == 0)
|
|
|
|
|
return variable_expand (line);
|
|
|
|
|
|
|
|
|
|
save = current_variable_set_list;
|
|
|
|
|
current_variable_set_list = file->variables;
|
|
|
|
|
reading_filename = file->cmds->filename;
|
|
|
|
|
reading_lineno_ptr = &file->cmds->lineno;
|
|
|
|
|
result = variable_expand (line);
|
|
|
|
|
current_variable_set_list = save;
|
|
|
|
|
reading_filename = 0;
|
|
|
|
|
reading_lineno_ptr = 0;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1992-06-11 02:27:09 +00:00
|
|
|
|
/* Like variable_expand_for_file, but the returned string is malloc'd.
|
|
|
|
|
This function is called a lot. It wants to be efficient. */
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
allocated_variable_expand_for_file (line, file)
|
|
|
|
|
char *line;
|
|
|
|
|
struct file *file;
|
|
|
|
|
{
|
|
|
|
|
char *value;
|
|
|
|
|
|
1992-06-11 02:27:09 +00:00
|
|
|
|
char *obuf = variable_buffer;
|
|
|
|
|
unsigned int olen = variable_buffer_length;
|
|
|
|
|
|
|
|
|
|
variable_buffer = 0;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
value = variable_expand_for_file (line, file);
|
|
|
|
|
|
1992-06-11 02:27:09 +00:00
|
|
|
|
#if 0
|
|
|
|
|
/* Waste a little memory and save time. */
|
|
|
|
|
value = xrealloc (value, strlen (value))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
variable_buffer = obuf;
|
|
|
|
|
variable_buffer_length = olen;
|
1991-09-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|