Fix for EINTR problems when using jobserver.
[make.git] / function.c
blob2c049ced8921fab785ce3a1dbbe0f162cafd2d52
1 /* Builtin function expansion for GNU Make.
2 Copyright (C) 1988,1989,1991-1997,1999 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include "make.h"
21 #include "filedef.h"
22 #include "variable.h"
23 #include "dep.h"
24 #include "job.h"
25 #include "commands.h"
26 #include "debug.h"
28 #ifdef _AMIGA
29 #include "amiga.h"
30 #endif
33 struct function_table_entry
35 const char *name;
36 unsigned char len;
37 unsigned char minimum_args;
38 unsigned char maximum_args;
39 char expand_args;
40 char *(*func_ptr) PARAMS ((char *output, char **argv, const char *fname));
44 /* Store into VARIABLE_BUFFER at O the result of scanning TEXT and replacing
45 each occurrence of SUBST with REPLACE. TEXT is null-terminated. SLEN is
46 the length of SUBST and RLEN is the length of REPLACE. If BY_WORD is
47 nonzero, substitutions are done only on matches which are complete
48 whitespace-delimited words. If SUFFIX_ONLY is nonzero, substitutions are
49 done only at the ends of whitespace-delimited words. */
51 char *
52 subst_expand (o, text, subst, replace, slen, rlen, by_word, suffix_only)
53 char *o;
54 char *text;
55 char *subst, *replace;
56 unsigned int slen, rlen;
57 int by_word, suffix_only;
59 register char *t = text;
60 register char *p;
62 if (slen == 0 && !by_word && !suffix_only)
64 /* The first occurrence of "" in any string is its end. */
65 o = variable_buffer_output (o, t, strlen (t));
66 if (rlen > 0)
67 o = variable_buffer_output (o, replace, rlen);
68 return o;
73 if ((by_word | suffix_only) && slen == 0)
74 /* When matching by words, the empty string should match
75 the end of each word, rather than the end of the whole text. */
76 p = end_of_token (next_token (t));
77 else
79 p = sindex (t, 0, subst, slen);
80 if (p == 0)
82 /* No more matches. Output everything left on the end. */
83 o = variable_buffer_output (o, t, strlen (t));
84 return o;
88 /* Output everything before this occurrence of the string to replace. */
89 if (p > t)
90 o = variable_buffer_output (o, t, p - t);
92 /* If we're substituting only by fully matched words,
93 or only at the ends of words, check that this case qualifies. */
94 if ((by_word
95 && ((p > t && !isblank ((unsigned char)p[-1]))
96 || (p[slen] != '\0' && !isblank ((unsigned char)p[slen]))))
97 || (suffix_only
98 && (p[slen] != '\0' && !isblank ((unsigned char)p[slen]))))
99 /* Struck out. Output the rest of the string that is
100 no longer to be replaced. */
101 o = variable_buffer_output (o, subst, slen);
102 else if (rlen > 0)
103 /* Output the replacement string. */
104 o = variable_buffer_output (o, replace, rlen);
106 /* Advance T past the string to be replaced. */
107 t = p + slen;
108 } while (*t != '\0');
110 return o;
114 /* Store into VARIABLE_BUFFER at O the result of scanning TEXT
115 and replacing strings matching PATTERN with REPLACE.
116 If PATTERN_PERCENT is not nil, PATTERN has already been
117 run through find_percent, and PATTERN_PERCENT is the result.
118 If REPLACE_PERCENT is not nil, REPLACE has already been
119 run through find_percent, and REPLACE_PERCENT is the result. */
121 char *
122 patsubst_expand (o, text, pattern, replace, pattern_percent, replace_percent)
123 char *o;
124 char *text;
125 register char *pattern, *replace;
126 register char *pattern_percent, *replace_percent;
128 unsigned int pattern_prepercent_len, pattern_postpercent_len;
129 unsigned int replace_prepercent_len, replace_postpercent_len = 0;
130 char *t;
131 unsigned int len;
132 int doneany = 0;
134 /* We call find_percent on REPLACE before checking PATTERN so that REPLACE
135 will be collapsed before we call subst_expand if PATTERN has no %. */
136 if (replace_percent == 0)
137 replace_percent = find_percent (replace);
138 if (replace_percent != 0)
140 /* Record the length of REPLACE before and after the % so
141 we don't have to compute these lengths more than once. */
142 replace_prepercent_len = replace_percent - replace;
143 replace_postpercent_len = strlen (replace_percent + 1);
145 else
146 /* We store the length of the replacement
147 so we only need to compute it once. */
148 replace_prepercent_len = strlen (replace);
150 if (pattern_percent == 0)
151 pattern_percent = find_percent (pattern);
152 if (pattern_percent == 0)
153 /* With no % in the pattern, this is just a simple substitution. */
154 return subst_expand (o, text, pattern, replace,
155 strlen (pattern), strlen (replace), 1, 0);
157 /* Record the length of PATTERN before and after the %
158 so we don't have to compute it more than once. */
159 pattern_prepercent_len = pattern_percent - pattern;
160 pattern_postpercent_len = strlen (pattern_percent + 1);
162 while ((t = find_next_token (&text, &len)) != 0)
164 int fail = 0;
166 /* Is it big enough to match? */
167 if (len < pattern_prepercent_len + pattern_postpercent_len)
168 fail = 1;
170 /* Does the prefix match? */
171 if (!fail && pattern_prepercent_len > 0
172 && (*t != *pattern
173 || t[pattern_prepercent_len - 1] != pattern_percent[-1]
174 || !strneq (t + 1, pattern + 1, pattern_prepercent_len - 1)))
175 fail = 1;
177 /* Does the suffix match? */
178 if (!fail && pattern_postpercent_len > 0
179 && (t[len - 1] != pattern_percent[pattern_postpercent_len]
180 || t[len - pattern_postpercent_len] != pattern_percent[1]
181 || !strneq (&t[len - pattern_postpercent_len],
182 &pattern_percent[1], pattern_postpercent_len - 1)))
183 fail = 1;
185 if (fail)
186 /* It didn't match. Output the string. */
187 o = variable_buffer_output (o, t, len);
188 else
190 /* It matched. Output the replacement. */
192 /* Output the part of the replacement before the %. */
193 o = variable_buffer_output (o, replace, replace_prepercent_len);
195 if (replace_percent != 0)
197 /* Output the part of the matched string that
198 matched the % in the pattern. */
199 o = variable_buffer_output (o, t + pattern_prepercent_len,
200 len - (pattern_prepercent_len
201 + pattern_postpercent_len));
202 /* Output the part of the replacement after the %. */
203 o = variable_buffer_output (o, replace_percent + 1,
204 replace_postpercent_len);
208 /* Output a space, but not if the replacement is "". */
209 if (fail || replace_prepercent_len > 0
210 || (replace_percent != 0 && len + replace_postpercent_len > 0))
212 o = variable_buffer_output (o, " ", 1);
213 doneany = 1;
216 if (doneany)
217 /* Kill the last space. */
218 --o;
220 return o;
224 /* Look up a function by name.
225 The table is currently small enough that it's not really worthwhile to use
226 a fancier lookup algorithm. If it gets larger, maybe...
229 static const struct function_table_entry *
230 lookup_function (table, s)
231 const struct function_table_entry *table;
232 const char *s;
234 int len = strlen (s);
236 for (; table->name != NULL; ++table)
237 if (table->len <= len
238 && (isblank ((unsigned char)s[table->len]) || s[table->len] == '\0')
239 && strneq (s, table->name, table->len))
240 return table;
242 return NULL;
246 /* Return 1 if PATTERN matches STR, 0 if not. */
249 pattern_matches (pattern, percent, str)
250 register char *pattern, *percent, *str;
252 unsigned int sfxlen, strlength;
254 if (percent == 0)
256 unsigned int len = strlen (pattern) + 1;
257 char *new_chars = (char *) alloca (len);
258 bcopy (pattern, new_chars, len);
259 pattern = new_chars;
260 percent = find_percent (pattern);
261 if (percent == 0)
262 return streq (pattern, str);
265 sfxlen = strlen (percent + 1);
266 strlength = strlen (str);
268 if (strlength < (percent - pattern) + sfxlen
269 || !strneq (pattern, str, percent - pattern))
270 return 0;
272 return !strcmp (percent + 1, str + (strlength - sfxlen));
276 /* Find the next comma or ENDPAREN (counting nested STARTPAREN and
277 ENDPARENtheses), starting at PTR before END. Return a pointer to
278 next character.
280 If no next argument is found, return NULL.
283 static char *
284 find_next_argument (startparen, endparen, ptr, end)
285 char startparen;
286 char endparen;
287 const char *ptr;
288 const char *end;
290 int count = 0;
292 for (; ptr < end; ++ptr)
293 if (*ptr == startparen)
294 ++count;
296 else if (*ptr == endparen)
298 --count;
299 if (count < 0)
300 return NULL;
303 else if (*ptr == ',' && !count)
304 return (char *)ptr;
306 /* We didn't find anything. */
307 return NULL;
311 /* Glob-expand LINE. The returned pointer is
312 only good until the next call to string_glob. */
314 static char *
315 string_glob (line)
316 char *line;
318 static char *result = 0;
319 static unsigned int length;
320 register struct nameseq *chain;
321 register unsigned int idx;
323 chain = multi_glob (parse_file_seq
324 (&line, '\0', sizeof (struct nameseq),
325 /* We do not want parse_file_seq to strip `./'s.
326 That would break examples like:
327 $(patsubst ./%.c,obj/%.o,$(wildcard ./?*.c)). */
329 sizeof (struct nameseq));
331 if (result == 0)
333 length = 100;
334 result = (char *) xmalloc (100);
337 idx = 0;
338 while (chain != 0)
340 register char *name = chain->name;
341 unsigned int len = strlen (name);
343 struct nameseq *next = chain->next;
344 free ((char *) chain);
345 chain = next;
347 /* multi_glob will pass names without globbing metacharacters
348 through as is, but we want only files that actually exist. */
349 if (file_exists_p (name))
351 if (idx + len + 1 > length)
353 length += (len + 1) * 2;
354 result = (char *) xrealloc (result, length);
356 bcopy (name, &result[idx], len);
357 idx += len;
358 result[idx++] = ' ';
361 free (name);
364 /* Kill the last space and terminate the string. */
365 if (idx == 0)
366 result[0] = '\0';
367 else
368 result[idx - 1] = '\0';
370 return result;
374 Builtin functions
377 static char *
378 func_patsubst (o, argv, funcname)
379 char *o;
380 char **argv;
381 const char *funcname;
383 o = patsubst_expand (o, argv[2], argv[0], argv[1], (char *) 0, (char *) 0);
384 return o;
388 static char *
389 func_join (o, argv, funcname)
390 char *o;
391 char **argv;
392 const char *funcname;
394 int doneany = 0;
396 /* Write each word of the first argument directly followed
397 by the corresponding word of the second argument.
398 If the two arguments have a different number of words,
399 the excess words are just output separated by blanks. */
400 register char *tp;
401 register char *pp;
402 char *list1_iterator = argv[0];
403 char *list2_iterator = argv[1];
406 unsigned int len1, len2;
408 tp = find_next_token (&list1_iterator, &len1);
409 if (tp != 0)
410 o = variable_buffer_output (o, tp, len1);
412 pp = find_next_token (&list2_iterator, &len2);
413 if (pp != 0)
414 o = variable_buffer_output (o, pp, len2);
416 if (tp != 0 || pp != 0)
418 o = variable_buffer_output (o, " ", 1);
419 doneany = 1;
422 while (tp != 0 || pp != 0);
423 if (doneany)
424 /* Kill the last blank. */
425 --o;
427 return o;
431 static char *
432 func_origin (o, argv, funcname)
433 char *o;
434 char **argv;
435 const char *funcname;
437 /* Expand the argument. */
438 register struct variable *v = lookup_variable (argv[0], strlen (argv[0]));
439 if (v == 0)
440 o = variable_buffer_output (o, "undefined", 9);
441 else
442 switch (v->origin)
444 default:
445 case o_invalid:
446 abort ();
447 break;
448 case o_default:
449 o = variable_buffer_output (o, "default", 7);
450 break;
451 case o_env:
452 o = variable_buffer_output (o, "environment", 11);
453 break;
454 case o_file:
455 o = variable_buffer_output (o, "file", 4);
456 break;
457 case o_env_override:
458 o = variable_buffer_output (o, "environment override", 20);
459 break;
460 case o_command:
461 o = variable_buffer_output (o, "command line", 12);
462 break;
463 case o_override:
464 o = variable_buffer_output (o, "override", 8);
465 break;
466 case o_automatic:
467 o = variable_buffer_output (o, "automatic", 9);
468 break;
471 return o;
474 #ifdef VMS
475 #define IS_PATHSEP(c) ((c) == ']')
476 #else
477 #if defined(__MSDOS__) || defined(WINDOWS32)
478 #define IS_PATHSEP(c) ((c) == '/' || (c) == '\\')
479 #else
480 #define IS_PATHSEP(c) ((c) == '/')
481 #endif
482 #endif
485 static char *
486 func_notdir_suffix (o, argv, funcname)
487 char *o;
488 char **argv;
489 const char *funcname;
491 /* Expand the argument. */
492 char *list_iterator = argv[0];
493 char *p2 =0;
494 int doneany =0;
495 unsigned int len=0;
497 int is_suffix = streq (funcname, "suffix");
498 int is_notdir = !is_suffix;
499 while ((p2 = find_next_token (&list_iterator, &len)) != 0)
501 char *p = p2 + len;
504 while (p >= p2 && (!is_suffix || *p != '.'))
506 if (IS_PATHSEP (*p))
507 break;
508 --p;
511 if (p >= p2)
513 if (is_notdir)
514 ++p;
515 else if (*p != '.')
516 continue;
517 o = variable_buffer_output (o, p, len - (p - p2));
519 #if defined(WINDOWS32) || defined(__MSDOS__)
520 /* Handle the case of "d:foo/bar". */
521 else if (streq (funcname, "notdir") && p2[0] && p2[1] == ':')
523 p = p2 + 2;
524 o = variable_buffer_output (o, p, len - (p - p2));
526 #endif
527 else if (is_notdir)
528 o = variable_buffer_output (o, p2, len);
530 if (is_notdir || p >= p2)
532 o = variable_buffer_output (o, " ", 1);
533 doneany = 1;
536 if (doneany)
537 /* Kill last space. */
538 --o;
541 return o;
546 static char *
547 func_basename_dir (o, argv, funcname)
548 char *o;
549 char **argv;
550 const char *funcname;
552 /* Expand the argument. */
553 char *p3 = argv[0];
554 char *p2=0;
555 int doneany=0;
556 unsigned int len=0;
557 char *p=0;
558 int is_basename= streq (funcname, "basename");
559 int is_dir= !is_basename;
561 while ((p2 = find_next_token (&p3, &len)) != 0)
563 p = p2 + len;
564 while (p >= p2 && (!is_basename || *p != '.'))
566 if (IS_PATHSEP (*p))
567 break;
568 --p;
571 if (p >= p2 && (is_dir))
572 o = variable_buffer_output (o, p2, ++p - p2);
573 else if (p >= p2 && (*p == '.'))
574 o = variable_buffer_output (o, p2, p - p2);
575 #if defined(WINDOWS32) || defined(__MSDOS__)
576 /* Handle the "d:foobar" case */
577 else if (p2[0] && p2[1] == ':' && is_dir)
578 o = variable_buffer_output (o, p2, 2);
579 #endif
580 else if (is_dir)
581 #ifdef VMS
582 o = variable_buffer_output (o, "[]", 2);
583 #else
584 #ifndef _AMIGA
585 o = variable_buffer_output (o, "./", 2);
586 #else
587 ; /* Just a nop... */
588 #endif /* AMIGA */
589 #endif /* !VMS */
590 else
591 /* The entire name is the basename. */
592 o = variable_buffer_output (o, p2, len);
594 o = variable_buffer_output (o, " ", 1);
595 doneany = 1;
597 if (doneany)
598 /* Kill last space. */
599 --o;
602 return o;
605 static char *
606 func_addsuffix_addprefix (o, argv, funcname)
607 char *o;
608 char **argv;
609 const char *funcname;
611 int fixlen = strlen (argv[0]);
612 char *list_iterator = argv[1];
613 int is_addprefix = streq (funcname, "addprefix");
614 int is_addsuffix = !is_addprefix;
616 int doneany = 0;
617 char *p;
618 unsigned int len;
620 while ((p = find_next_token (&list_iterator, &len)) != 0)
622 if (is_addprefix)
623 o = variable_buffer_output (o, argv[0], fixlen);
624 o = variable_buffer_output (o, p, len);
625 if (is_addsuffix)
626 o = variable_buffer_output (o, argv[0], fixlen);
627 o = variable_buffer_output (o, " ", 1);
628 doneany = 1;
631 if (doneany)
632 /* Kill last space. */
633 --o;
635 return o;
638 static char *
639 func_subst (o, argv, funcname)
640 char *o;
641 char **argv;
642 const char *funcname;
644 o = subst_expand (o, argv[2], argv[0], argv[1], strlen (argv[0]),
645 strlen (argv[1]), 0, 0);
647 return o;
651 static char *
652 func_firstword (o, argv, funcname)
653 char *o;
654 char **argv;
655 const char *funcname;
657 unsigned int i;
658 char *words = argv[0]; /* Use a temp variable for find_next_token */
659 char *p = find_next_token (&words, &i);
661 if (p != 0)
662 o = variable_buffer_output (o, p, i);
664 return o;
668 static char *
669 func_words (o, argv, funcname)
670 char *o;
671 char **argv;
672 const char *funcname;
674 int i = 0;
675 char *word_iterator = argv[0];
676 char buf[20];
678 while (find_next_token (&word_iterator, (unsigned int *) 0) != 0)
679 ++i;
681 sprintf (buf, "%d", i);
682 o = variable_buffer_output (o, buf, strlen (buf));
685 return o;
688 char *
689 strip_whitespace (begpp, endpp)
690 char **begpp;
691 char **endpp;
693 while (isspace ((unsigned char)**begpp) && *begpp <= *endpp)
694 (*begpp) ++;
695 while (isspace ((unsigned char)**endpp) && *endpp >= *begpp)
696 (*endpp) --;
697 return *begpp;
701 is_numeric (p)
702 char *p;
704 char *end = p + strlen (p) - 1;
705 char *beg = p;
706 strip_whitespace (&p, &end);
708 while (p <= end)
709 if (!ISDIGIT (*(p++))) /* ISDIGIT only evals its arg once: see make.h. */
710 return 0;
712 return (end - beg >= 0);
715 void
716 check_numeric (s, message)
717 char *s;
718 char *message;
720 if (!is_numeric (s))
721 fatal (reading_file, message);
726 static char *
727 func_word (o, argv, funcname)
728 char *o;
729 char **argv;
730 const char *funcname;
732 char *end_p=0;
733 int i=0;
734 char *p=0;
736 /* Check the first argument. */
737 check_numeric (argv[0], _("non-numeric first argument to `word' function"));
738 i = atoi (argv[0]);
740 if (i == 0)
741 fatal (reading_file, _("first argument to `word' function must be greater than 0"));
744 end_p = argv[1];
745 while ((p = find_next_token (&end_p, 0)) != 0)
746 if (--i == 0)
747 break;
749 if (i == 0)
750 o = variable_buffer_output (o, p, end_p - p);
752 return o;
755 static char *
756 func_wordlist (o, argv, funcname)
757 char *o;
758 char **argv;
759 const char *funcname;
761 int start, count;
763 /* Check the arguments. */
764 check_numeric (argv[0],
765 _("non-numeric first argument to `wordlist' function"));
766 check_numeric (argv[1],
767 _("non-numeric second argument to `wordlist' function"));
769 start = atoi (argv[0]);
770 count = atoi (argv[1]) - start + 1;
772 if (count > 0)
774 char *p;
775 char *end_p = argv[2];
777 /* Find the beginning of the "start"th word. */
778 while (((p = find_next_token (&end_p, 0)) != 0) && --start)
781 if (p)
783 /* Find the end of the "count"th word from start. */
784 while (--count && (find_next_token (&end_p, 0) != 0))
787 /* Return the stuff in the middle. */
788 o = variable_buffer_output (o, p, end_p - p);
792 return o;
795 static char*
796 func_findstring (o, argv, funcname)
797 char *o;
798 char **argv;
799 const char *funcname;
801 /* Find the first occurrence of the first string in the second. */
802 int i = strlen (argv[0]);
803 if (sindex (argv[1], 0, argv[0], i) != 0)
804 o = variable_buffer_output (o, argv[0], i);
806 return o;
809 static char *
810 func_foreach (o, argv, funcname)
811 char *o;
812 char **argv;
813 const char *funcname;
815 /* expand only the first two. */
816 char *varname = expand_argument (argv[0], NULL);
817 char *list = expand_argument (argv[1], NULL);
818 char *body = argv[2];
820 int doneany = 0;
821 char *list_iterator = list;
822 char *p;
823 unsigned int len;
824 register struct variable *var;
826 push_new_variable_scope ();
827 var = define_variable (varname, strlen (varname), "", o_automatic, 0);
829 /* loop through LIST, put the value in VAR and expand BODY */
830 while ((p = find_next_token (&list_iterator, &len)) != 0)
832 char *result = 0;
835 char save = p[len];
837 p[len] = '\0';
838 free (var->value);
839 var->value = (char *) xstrdup ((char*) p);
840 p[len] = save;
843 result = allocated_variable_expand (body);
845 o = variable_buffer_output (o, result, strlen (result));
846 o = variable_buffer_output (o, " ", 1);
847 doneany = 1;
848 free (result);
851 if (doneany)
852 /* Kill the last space. */
853 --o;
855 pop_variable_scope ();
856 free (varname);
857 free (list);
859 return o;
862 struct a_word
864 struct a_word *next;
865 char *str;
866 int matched;
869 static char *
870 func_filter_filterout (o, argv, funcname)
871 char *o;
872 char **argv;
873 const char *funcname;
875 struct a_word *wordhead = 0;
876 struct a_word *wordtail = 0;
878 int is_filter = streq (funcname, "filter");
879 char *patterns = argv[0];
880 char *word_iterator = argv[1];
882 char *p;
883 unsigned int len;
885 /* Chop ARGV[1] up into words and then run each pattern through. */
886 while ((p = find_next_token (&word_iterator, &len)) != 0)
888 struct a_word *w = (struct a_word *)alloca (sizeof (struct a_word));
889 if (wordhead == 0)
890 wordhead = w;
891 else
892 wordtail->next = w;
893 wordtail = w;
895 if (*word_iterator != '\0')
896 ++word_iterator;
897 p[len] = '\0';
898 w->str = p;
899 w->matched = 0;
902 if (wordhead != 0)
904 char *pat_iterator = patterns;
905 int doneany = 0;
906 struct a_word *wp;
908 wordtail->next = 0;
910 /* Run each pattern through the words, killing words. */
911 while ((p = find_next_token (&pat_iterator, &len)) != 0)
913 char *percent;
914 char save = p[len];
915 p[len] = '\0';
917 percent = find_percent (p);
918 for (wp = wordhead; wp != 0; wp = wp->next)
919 wp->matched |= (percent == 0 ? streq (p, wp->str)
920 : pattern_matches (p, percent, wp->str));
922 p[len] = save;
925 /* Output the words that matched (or didn't, for filter-out). */
926 for (wp = wordhead; wp != 0; wp = wp->next)
927 if (is_filter ? wp->matched : !wp->matched)
929 o = variable_buffer_output (o, wp->str, strlen (wp->str));
930 o = variable_buffer_output (o, " ", 1);
931 doneany = 1;
934 if (doneany)
935 /* Kill the last space. */
936 --o;
939 return o;
943 static char *
944 func_strip (o, argv, funcname)
945 char *o;
946 char **argv;
947 const char *funcname;
949 char *p = argv[0];
950 int doneany =0;
952 while (*p != '\0')
954 int i=0;
955 char *word_start=0;
957 while (isspace ((unsigned char)*p))
958 ++p;
959 word_start = p;
960 for (i=0; *p != '\0' && !isspace ((unsigned char)*p); ++p, ++i)
962 if (!i)
963 break;
964 o = variable_buffer_output (o, word_start, i);
965 o = variable_buffer_output (o, " ", 1);
966 doneany = 1;
969 if (doneany)
970 /* Kill the last space. */
971 --o;
972 return o;
976 Print a warning or fatal message.
978 static char *
979 func_error (o, argv, funcname)
980 char *o;
981 char **argv;
982 const char *funcname;
984 char **argvp;
985 char *msg, *p;
986 int len;
988 /* The arguments will be broken on commas. Rather than create yet
989 another special case where function arguments aren't broken up,
990 just create a format string that puts them back together. */
991 for (len=0, argvp=argv; *argvp != 0; ++argvp)
992 len += strlen (*argvp) + 2;
994 p = msg = alloca (len + 1);
996 for (argvp=argv; argvp[1] != 0; ++argvp)
998 strcpy (p, *argvp);
999 p += strlen (*argvp);
1000 *(p++) = ',';
1001 *(p++) = ' ';
1003 strcpy (p, *argvp);
1005 if (*funcname == 'e')
1006 fatal (reading_file, "%s", msg);
1008 /* The warning function expands to the empty string. */
1009 error (reading_file, "%s", msg);
1011 return o;
1016 chop argv[0] into words, and sort them.
1018 static char *
1019 func_sort (o, argv, funcname)
1020 char *o;
1021 char **argv;
1022 const char *funcname;
1024 char **words = 0;
1025 int nwords = 0;
1026 register int wordi = 0;
1028 /* Chop ARGV[0] into words and put them in WORDS. */
1029 char *t = argv[0];
1030 char *p;
1031 unsigned int len;
1032 int i;
1034 while ((p = find_next_token (&t, &len)) != 0)
1036 if (wordi >= nwords - 1)
1038 nwords = (2 * nwords) + 5;
1039 words = (char **) xrealloc ((char *) words,
1040 nwords * sizeof (char *));
1042 words[wordi++] = savestring (p, len);
1045 if (!wordi)
1046 return o;
1048 /* Now sort the list of words. */
1049 qsort ((char *) words, wordi, sizeof (char *), alpha_compare);
1051 /* Now write the sorted list. */
1052 for (i = 0; i < wordi; ++i)
1054 len = strlen (words[i]);
1055 if (i == wordi - 1 || strlen (words[i + 1]) != len
1056 || strcmp (words[i], words[i + 1]))
1058 o = variable_buffer_output (o, words[i], len);
1059 o = variable_buffer_output (o, " ", 1);
1061 free (words[i]);
1063 /* Kill the last space. */
1064 --o;
1066 free (words);
1068 return o;
1072 $(if condition,true-part[,false-part])
1074 CONDITION is false iff it evaluates to an empty string. White
1075 space before and after condition are stripped before evaluation.
1077 If CONDITION is true, then TRUE-PART is evaluated, otherwise FALSE-PART is
1078 evaluated (if it exists). Because only one of the two PARTs is evaluated,
1079 you can use $(if ...) to create side-effects (with $(shell ...), for
1080 example).
1083 static char *
1084 func_if (o, argv, funcname)
1085 char *o;
1086 char **argv;
1087 const char *funcname;
1089 char *begp = argv[0];
1090 char *endp = begp + strlen (argv[0]);
1091 int result = 0;
1093 /* Find the result of the condition: if we have a value, and it's not
1094 empty, the condition is true. If we don't have a value, or it's the
1095 empty string, then it's false. */
1097 strip_whitespace (&begp, &endp);
1099 if (begp < endp)
1101 char *expansion = expand_argument (begp, NULL);
1103 result = strlen (expansion);
1104 free (expansion);
1107 /* If the result is true (1) we want to eval the first argument, and if
1108 it's false (0) we want to eval the second. If the argument doesn't
1109 exist we do nothing, otherwise expand it and add to the buffer. */
1111 argv += 1 + !result;
1113 if (argv[0])
1115 char *expansion;
1117 expansion = expand_argument (argv[0], NULL);
1119 o = variable_buffer_output (o, expansion, strlen (expansion));
1121 free (expansion);
1124 return o;
1127 static char *
1128 func_wildcard (o, argv, funcname)
1129 char *o;
1130 char **argv;
1131 const char *funcname;
1134 #ifdef _AMIGA
1135 o = wildcard_expansion (argv[0], o);
1136 #else
1137 char *p = string_glob (argv[0]);
1138 o = variable_buffer_output (o, p, strlen (p));
1139 #endif
1140 return o;
1144 \r is replaced on UNIX as well. Is this desirable?
1146 void
1147 fold_newlines (buffer, length)
1148 char *buffer;
1149 int *length;
1151 char *dst = buffer;
1152 char *src = buffer;
1153 char *last_nonnl = buffer -1;
1154 src[*length] = 0;
1155 for (; *src != '\0'; ++src)
1157 if (src[0] == '\r' && src[1] == '\n')
1158 continue;
1159 if (*src == '\n')
1161 *dst++ = ' ';
1163 else
1165 last_nonnl = dst;
1166 *dst++ = *src;
1169 *(++last_nonnl) = '\0';
1170 *length = last_nonnl - buffer;
1175 int shell_function_pid = 0, shell_function_completed;
1178 #ifdef WINDOWS32
1179 /*untested*/
1181 #include <windows.h>
1182 #include <io.h>
1183 #include "sub_proc.h"
1186 void
1187 windows32_openpipe (int *pipedes, int *pid_p, char **command_argv, char **envp)
1189 SECURITY_ATTRIBUTES saAttr;
1190 HANDLE hIn;
1191 HANDLE hErr;
1192 HANDLE hChildOutRd;
1193 HANDLE hChildOutWr;
1194 HANDLE hProcess;
1197 saAttr.nLength = sizeof (SECURITY_ATTRIBUTES);
1198 saAttr.bInheritHandle = TRUE;
1199 saAttr.lpSecurityDescriptor = NULL;
1201 if (DuplicateHandle (GetCurrentProcess(),
1202 GetStdHandle(STD_INPUT_HANDLE),
1203 GetCurrentProcess(),
1204 &hIn,
1206 TRUE,
1207 DUPLICATE_SAME_ACCESS) == FALSE) {
1208 fatal (NILF, _("create_child_process: DuplicateHandle(In) failed (e=%d)\n"),
1209 GetLastError());
1212 if (DuplicateHandle(GetCurrentProcess(),
1213 GetStdHandle(STD_ERROR_HANDLE),
1214 GetCurrentProcess(),
1215 &hErr,
1217 TRUE,
1218 DUPLICATE_SAME_ACCESS) == FALSE) {
1219 fatal (NILF, _("create_child_process: DuplicateHandle(Err) failed (e=%d)\n"),
1220 GetLastError());
1223 if (!CreatePipe(&hChildOutRd, &hChildOutWr, &saAttr, 0))
1224 fatal (NILF, _("CreatePipe() failed (e=%d)\n"), GetLastError());
1226 hProcess = process_init_fd(hIn, hChildOutWr, hErr);
1228 if (!hProcess)
1229 fatal (NILF, _("windows32_openpipe (): process_init_fd() failed\n"));
1231 /* make sure that CreateProcess() has Path it needs */
1232 sync_Path_environment();
1234 if (!process_begin(hProcess, command_argv, envp, command_argv[0], NULL)) {
1235 /* register process for wait */
1236 process_register(hProcess);
1238 /* set the pid for returning to caller */
1239 *pid_p = (int) hProcess;
1241 /* set up to read data from child */
1242 pipedes[0] = _open_osfhandle((long) hChildOutRd, O_RDONLY);
1244 /* this will be closed almost right away */
1245 pipedes[1] = _open_osfhandle((long) hChildOutWr, O_APPEND);
1246 } else {
1247 /* reap/cleanup the failed process */
1248 process_cleanup(hProcess);
1250 /* close handles which were duplicated, they weren't used */
1251 CloseHandle(hIn);
1252 CloseHandle(hErr);
1254 /* close pipe handles, they won't be used */
1255 CloseHandle(hChildOutRd);
1256 CloseHandle(hChildOutWr);
1258 /* set status for return */
1259 pipedes[0] = pipedes[1] = -1;
1260 *pid_p = -1;
1263 #endif
1266 #ifdef __MSDOS__
1267 FILE *
1268 msdos_openpipe (int* pipedes, int *pidp, char *text)
1270 FILE *fpipe=0;
1271 /* MSDOS can't fork, but it has `popen'. */
1272 struct variable *sh = lookup_variable ("SHELL", 5);
1273 int e;
1274 extern int dos_command_running, dos_status;
1276 /* Make sure not to bother processing an empty line. */
1277 while (isblank ((unsigned char)*text))
1278 ++text;
1279 if (*text == '\0')
1280 return 0;
1282 if (sh)
1284 char buf[PATH_MAX + 7];
1285 /* This makes sure $SHELL value is used by $(shell), even
1286 though the target environment is not passed to it. */
1287 sprintf (buf, "SHELL=%s", sh->value);
1288 putenv (buf);
1291 e = errno;
1292 errno = 0;
1293 dos_command_running = 1;
1294 dos_status = 0;
1295 /* If dos_status becomes non-zero, it means the child process
1296 was interrupted by a signal, like SIGINT or SIGQUIT. See
1297 fatal_error_signal in commands.c. */
1298 fpipe = popen (text, "rt");
1299 dos_command_running = 0;
1300 if (!fpipe || dos_status)
1302 pipedes[0] = -1;
1303 *pidp = -1;
1304 if (dos_status)
1305 errno = EINTR;
1306 else if (errno == 0)
1307 errno = ENOMEM;
1308 shell_function_completed = -1;
1310 else
1312 pipedes[0] = fileno (fpipe);
1313 *pidp = 42; /* Yes, the Meaning of Life, the Universe, and Everything! */
1314 errno = e;
1315 shell_function_completed = 1;
1317 return fpipe;
1319 #endif
1322 Do shell spawning, with the naughty bits for different OSes.
1325 #ifdef VMS
1327 /* VMS can't do $(shell ...) */
1328 #define func_shell 0
1330 #else
1331 #ifndef _AMIGA
1332 static char *
1333 func_shell (o, argv, funcname)
1334 char *o;
1335 char **argv;
1336 const char *funcname;
1338 char* batch_filename = NULL;
1339 int i;
1341 #ifdef __MSDOS__
1342 FILE *fpipe;
1343 #endif
1344 char **command_argv;
1345 char *error_prefix;
1346 char **envp;
1347 int pipedes[2];
1348 int pid;
1350 #ifndef __MSDOS__
1351 /* Construct the argument list. */
1352 command_argv = construct_command_argv (argv[0],
1353 (char **) NULL, (struct file *) 0,
1354 &batch_filename);
1355 if (command_argv == 0)
1356 return o;
1357 #endif
1359 /* Using a target environment for `shell' loses in cases like:
1360 export var = $(shell echo foobie)
1361 because target_environment hits a loop trying to expand $(var)
1362 to put it in the environment. This is even more confusing when
1363 var was not explicitly exported, but just appeared in the
1364 calling environment. */
1366 envp = environ;
1368 /* For error messages. */
1369 if (reading_file != 0)
1371 error_prefix = (char *) alloca (strlen (reading_file->filenm)+11+4);
1372 sprintf (error_prefix,
1373 "%s:%lu: ", reading_file->filenm, reading_file->lineno);
1375 else
1376 error_prefix = "";
1378 #ifdef WINDOWS32
1379 windows32_openpipe (pipedes, &pid, command_argv, envp);
1381 if (pipedes[0] < 0) {
1382 /* open of the pipe failed, mark as failed execution */
1383 shell_function_completed = -1;
1385 return o;
1386 } else
1387 #else /* WINDOWS32 */
1389 # ifdef __MSDOS__
1390 fpipe = msdos_openpipe (pipedes, &pid, argv[0]);
1391 if (pipedes[0] < 0)
1393 perror_with_name (error_prefix, "pipe");
1394 return o;
1396 # else
1397 if (pipe (pipedes) < 0)
1399 perror_with_name (error_prefix, "pipe");
1400 return o;
1403 pid = vfork ();
1404 if (pid < 0)
1405 perror_with_name (error_prefix, "fork");
1406 else if (pid == 0)
1407 child_execute_job (0, pipedes[1], command_argv, envp);
1408 else
1409 # endif /* ! __MSDOS__ */
1411 #endif /* WINDOWS32 */
1413 /* We are the parent. */
1415 char *buffer;
1416 unsigned int maxlen;
1417 int cc;
1419 /* Record the PID for reap_children. */
1420 shell_function_pid = pid;
1421 #ifndef __MSDOS__
1422 shell_function_completed = 0;
1424 /* Free the storage only the child needed. */
1425 free (command_argv[0]);
1426 free ((char *) command_argv);
1428 /* Close the write side of the pipe. */
1429 (void) close (pipedes[1]);
1430 #endif
1432 /* Set up and read from the pipe. */
1434 maxlen = 200;
1435 buffer = (char *) xmalloc (maxlen + 1);
1437 /* Read from the pipe until it gets EOF. */
1438 for (i = 0; ; i += cc)
1440 if (i == maxlen)
1442 maxlen += 512;
1443 buffer = (char *) xrealloc (buffer, maxlen + 1);
1446 cc = read (pipedes[0], &buffer[i], maxlen - i);
1447 if (cc <= 0)
1448 break;
1450 buffer[i] = '\0';
1452 /* Close the read side of the pipe. */
1453 #ifdef __MSDOS__
1454 if (fpipe)
1455 (void) pclose (fpipe);
1456 #else
1457 (void) close (pipedes[0]);
1458 #endif
1460 /* Loop until child_handler sets shell_function_completed
1461 to the status of our child shell. */
1462 while (shell_function_completed == 0)
1463 reap_children (1, 0);
1465 if (batch_filename) {
1466 DB (DB_VERBOSE, (_("Cleaning up temporary batch file %s\n"),
1467 batch_filename));
1468 remove (batch_filename);
1469 free (batch_filename);
1471 shell_function_pid = 0;
1473 /* The child_handler function will set shell_function_completed
1474 to 1 when the child dies normally, or to -1 if it
1475 dies with status 127, which is most likely an exec fail. */
1477 if (shell_function_completed == -1)
1479 /* This most likely means that the execvp failed,
1480 so we should just write out the error message
1481 that came in over the pipe from the child. */
1482 fputs (buffer, stderr);
1483 fflush (stderr);
1485 else
1487 /* The child finished normally. Replace all
1488 newlines in its output with spaces, and put
1489 that in the variable output buffer. */
1490 fold_newlines (buffer, &i);
1491 o = variable_buffer_output (o, buffer, i);
1494 free (buffer);
1497 return o;
1500 #else /* _AMIGA */
1502 /* Do the Amiga version of func_shell. */
1504 static char *
1505 func_shell (char *o, char **argv, const char *funcname)
1507 /* Amiga can't fork nor spawn, but I can start a program with
1508 redirection of my choice. However, this means that we
1509 don't have an opportunity to reopen stdout to trap it. Thus,
1510 we save our own stdout onto a new descriptor and dup a temp
1511 file's descriptor onto our stdout temporarily. After we
1512 spawn the shell program, we dup our own stdout back to the
1513 stdout descriptor. The buffer reading is the same as above,
1514 except that we're now reading from a file. */
1516 #include <dos/dos.h>
1517 #include <proto/dos.h>
1519 BPTR child_stdout;
1520 char tmp_output[FILENAME_MAX];
1521 unsigned int maxlen = 200;
1522 int cc, i;
1523 char * buffer, * ptr;
1524 char ** aptr;
1525 int len = 0;
1526 char* batch_filename = NULL;
1528 /* Construct the argument list. */
1529 command_argv = construct_command_argv (argv[0], (char **) NULL,
1530 (struct file *) 0, &batch_filename);
1531 if (command_argv == 0)
1532 return o;
1534 /* Note the mktemp() is a security hole, but this only runs on Amiga.
1535 Ideally we would use main.c:open_tmpfile(), but this uses a special
1536 Open(), not fopen(), and I'm not familiar enough with the code to mess
1537 with it. */
1538 strcpy (tmp_output, "t:MakeshXXXXXXXX");
1539 mktemp (tmp_output);
1540 child_stdout = Open (tmp_output, MODE_NEWFILE);
1542 for (aptr=command_argv; *aptr; aptr++)
1543 len += strlen (*aptr) + 1;
1545 buffer = xmalloc (len + 1);
1546 ptr = buffer;
1548 for (aptr=command_argv; *aptr; aptr++)
1550 strcpy (ptr, *aptr);
1551 ptr += strlen (ptr) + 1;
1552 *ptr ++ = ' ';
1553 *ptr = 0;
1556 ptr[-1] = '\n';
1558 Execute (buffer, NULL, child_stdout);
1559 free (buffer);
1561 Close (child_stdout);
1563 child_stdout = Open (tmp_output, MODE_OLDFILE);
1565 buffer = xmalloc (maxlen);
1566 i = 0;
1569 if (i == maxlen)
1571 maxlen += 512;
1572 buffer = (char *) xrealloc (buffer, maxlen + 1);
1575 cc = Read (child_stdout, &buffer[i], maxlen - i);
1576 if (cc > 0)
1577 i += cc;
1578 } while (cc > 0);
1580 Close (child_stdout);
1582 fold_newlines (buffer, &i);
1583 o = variable_buffer_output (o, buffer, i);
1584 free (buffer);
1585 return o;
1587 #endif /* _AMIGA */
1588 #endif /* !VMS */
1590 #ifdef EXPERIMENTAL
1593 equality. Return is string-boolean, ie, the empty string is false.
1595 static char *
1596 func_eq (char* o, char **argv, char *funcname)
1598 int result = ! strcmp (argv[0], argv[1]);
1599 o = variable_buffer_output (o, result ? "1" : "", result);
1600 return o;
1605 string-boolean not operator.
1607 static char *
1608 func_not (char* o, char **argv, char *funcname)
1610 char * s = argv[0];
1611 int result = 0;
1612 while (isspace ((unsigned char)*s))
1613 s++;
1614 result = ! (*s);
1615 o = variable_buffer_output (o, result ? "1" : "", result);
1616 return o;
1618 #endif
1621 #define STRING_SIZE_TUPLE(_s) (_s), (sizeof (_s)-1)
1623 /* Lookup table for builtin functions.
1625 This doesn't have to be sorted; we use a straight lookup. We might gain
1626 some efficiency by moving most often used functions to the start of the
1627 table.
1629 If MAXIMUM_ARGS is 0, that means there is no maximum and all
1630 comma-separated values are treated as arguments.
1632 EXPAND_ARGS means that all arguments should be expanded before invocation.
1633 Functions that do namespace tricks (foreach) don't automatically expand. */
1635 static char *func_call PARAMS ((char *o, char **argv, const char *funcname));
1638 static struct function_table_entry function_table[] =
1640 /* Name/size */ /* MIN MAX EXP? Function */
1641 { STRING_SIZE_TUPLE("addprefix"), 2, 2, 1, func_addsuffix_addprefix},
1642 { STRING_SIZE_TUPLE("addsuffix"), 2, 2, 1, func_addsuffix_addprefix},
1643 { STRING_SIZE_TUPLE("basename"), 0, 1, 1, func_basename_dir},
1644 { STRING_SIZE_TUPLE("dir"), 0, 1, 1, func_basename_dir},
1645 { STRING_SIZE_TUPLE("notdir"), 0, 1, 1, func_notdir_suffix},
1646 { STRING_SIZE_TUPLE("subst"), 3, 3, 1, func_subst},
1647 { STRING_SIZE_TUPLE("suffix"), 0, 1, 1, func_notdir_suffix},
1648 { STRING_SIZE_TUPLE("filter"), 2, 2, 1, func_filter_filterout},
1649 { STRING_SIZE_TUPLE("filter-out"), 2, 2, 1, func_filter_filterout},
1650 { STRING_SIZE_TUPLE("findstring"), 2, 2, 1, func_findstring},
1651 { STRING_SIZE_TUPLE("firstword"), 0, 1, 1, func_firstword},
1652 { STRING_SIZE_TUPLE("join"), 2, 2, 1, func_join},
1653 { STRING_SIZE_TUPLE("patsubst"), 3, 3, 1, func_patsubst},
1654 { STRING_SIZE_TUPLE("shell"), 0, 1, 1, func_shell},
1655 { STRING_SIZE_TUPLE("sort"), 0, 1, 1, func_sort},
1656 { STRING_SIZE_TUPLE("strip"), 0, 1, 1, func_strip},
1657 { STRING_SIZE_TUPLE("wildcard"), 0, 1, 1, func_wildcard},
1658 { STRING_SIZE_TUPLE("word"), 2, 2, 1, func_word},
1659 { STRING_SIZE_TUPLE("wordlist"), 3, 3, 1, func_wordlist},
1660 { STRING_SIZE_TUPLE("words"), 0, 1, 1, func_words},
1661 { STRING_SIZE_TUPLE("origin"), 0, 1, 1, func_origin},
1662 { STRING_SIZE_TUPLE("foreach"), 3, 3, 0, func_foreach},
1663 { STRING_SIZE_TUPLE("call"), 1, 0, 1, func_call},
1664 { STRING_SIZE_TUPLE("error"), 0, 1, 1, func_error},
1665 { STRING_SIZE_TUPLE("warning"), 0, 1, 1, func_error},
1666 { STRING_SIZE_TUPLE("if"), 2, 3, 0, func_if},
1667 #ifdef EXPERIMENTAL
1668 { STRING_SIZE_TUPLE("eq"), 2, 2, 1, func_eq},
1669 { STRING_SIZE_TUPLE("not"), 0, 1, 1, func_not},
1670 #endif
1671 { 0 }
1675 /* These must come after the definition of function_table[]. */
1677 static char *
1678 expand_builtin_function (o, argc, argv, entry_p)
1679 char *o;
1680 int argc;
1681 char **argv;
1682 struct function_table_entry *entry_p;
1684 if (argc < entry_p->minimum_args)
1685 fatal (reading_file,
1686 _("Insufficient number of arguments (%d) to function `%s'"),
1687 argc, entry_p->name);
1689 /* I suppose technically some function could do something with no
1690 arguments, but so far none do, so just test it for all functions here
1691 rather than in each one. We can change it later if necessary. */
1693 if (!argc)
1694 return o;
1696 if (!entry_p->func_ptr)
1697 fatal (reading_file, _("Unimplemented on this platform: function `%s'"),
1698 entry_p->name);
1700 return entry_p->func_ptr (o, argv, entry_p->name);
1703 /* Check for a function invocation in *STRINGP. *STRINGP points at the
1704 opening ( or { and is not null-terminated. If a function invocation
1705 is found, expand it into the buffer at *OP, updating *OP, incrementing
1706 *STRINGP past the reference and returning nonzero. If not, return zero. */
1709 handle_function (op, stringp)
1710 char **op;
1711 char **stringp;
1713 const struct function_table_entry *entry_p;
1714 char openparen = (*stringp)[0];
1715 char closeparen = openparen == '(' ? ')' : '}';
1716 char *beg;
1717 char *end;
1718 int count = 0;
1719 register char *p;
1720 char **argv, **argvp;
1721 int nargs;
1723 beg = *stringp + 1;
1725 entry_p = lookup_function (function_table, beg);
1727 if (!entry_p)
1728 return 0;
1730 /* We found a builtin function. Find the beginning of its arguments (skip
1731 whitespace after the name). */
1733 beg = next_token (beg + entry_p->len);
1735 /* Find the end of the function invocation, counting nested use of
1736 whichever kind of parens we use. Since we're looking, count commas
1737 to get a rough estimate of how many arguments we might have. The
1738 count might be high, but it'll never be low. */
1740 for (nargs=1, end=beg; *end != '\0'; ++end)
1741 if (*end == ',')
1742 ++nargs;
1743 else if (*end == openparen)
1744 ++count;
1745 else if (*end == closeparen && --count < 0)
1746 break;
1748 if (count >= 0)
1749 fatal (reading_file,
1750 _("unterminated call to function `%s': missing `%c'"),
1751 entry_p->name, closeparen);
1753 *stringp = end;
1755 /* Get some memory to store the arg pointers. */
1756 argvp = argv = (char **) alloca (sizeof (char *) * (nargs + 2));
1758 /* Chop the string into arguments, then a nul. As soon as we hit
1759 MAXIMUM_ARGS (if it's >0) assume the rest of the string is part of the
1760 last argument.
1762 If we're expanding, store pointers to the expansion of each one. If
1763 not, make a duplicate of the string and point into that, nul-terminating
1764 each argument. */
1766 if (!entry_p->expand_args)
1768 int len = end - beg;
1770 p = xmalloc (len+1);
1771 memcpy (p, beg, len);
1772 p[len] = '\0';
1773 beg = p;
1774 end = beg + len;
1777 for (p=beg, nargs=0; p <= end; ++argvp)
1779 char *next;
1781 ++nargs;
1783 if (nargs == entry_p->maximum_args
1784 || (! (next = find_next_argument (openparen, closeparen, p, end))))
1785 next = end;
1787 if (entry_p->expand_args)
1788 *argvp = expand_argument (p, next);
1789 else
1791 *argvp = p;
1792 *next = '\0';
1795 p = next + 1;
1797 *argvp = NULL;
1799 /* Finally! Run the function... */
1800 *op = expand_builtin_function (*op, nargs, argv, entry_p);
1802 /* Free memory. */
1803 if (entry_p->expand_args)
1804 for (argvp=argv; *argvp != 0; ++argvp)
1805 free (*argvp);
1806 else
1807 free (beg);
1809 return 1;
1813 /* User-defined functions. Expand the first argument as either a builtin
1814 function or a make variable, in the context of the rest of the arguments
1815 assigned to $1, $2, ... $N. $0 is the name of the function. */
1817 static char *
1818 func_call (o, argv, funcname)
1819 char *o;
1820 char **argv;
1821 const char *funcname;
1823 char *fname;
1824 char *cp;
1825 int flen;
1826 char *body;
1827 int i;
1828 const struct function_table_entry *entry_p;
1830 /* There is no way to define a variable with a space in the name, so strip
1831 leading and trailing whitespace as a favor to the user. */
1832 fname = argv[0];
1833 while (*fname != '\0' && isspace ((unsigned char)*fname))
1834 ++fname;
1836 cp = fname + strlen (fname) - 1;
1837 while (cp > fname && isspace ((unsigned char)*cp))
1838 --cp;
1839 cp[1] = '\0';
1841 /* Calling nothing is a no-op */
1842 if (*fname == '\0')
1843 return o;
1845 /* Are we invoking a builtin function? */
1847 entry_p = lookup_function (function_table, fname);
1849 if (entry_p)
1851 /* How many arguments do we have? */
1852 for (i=0; argv[i+1]; ++i)
1855 return expand_builtin_function (o, i, argv+1, entry_p);
1858 /* Not a builtin, so the first argument is the name of a variable to be
1859 expanded and interpreted as a function. Create the variable
1860 reference. */
1861 flen = strlen (fname);
1863 body = alloca (flen + 4);
1864 body[0] = '$';
1865 body[1] = '(';
1866 memcpy (body + 2, fname, flen);
1867 body[flen+2] = ')';
1868 body[flen+3] = '\0';
1870 /* Set up arguments $(1) .. $(N). $(0) is the function name. */
1872 push_new_variable_scope ();
1874 for (i=0; *argv; ++i, ++argv)
1876 char num[11];
1878 sprintf (num, "%d", i);
1879 define_variable (num, strlen (num), *argv, o_automatic, 1);
1882 /* Expand the body in the context of the arguments, adding the result to
1883 the variable buffer. */
1885 o = variable_expand_string (o, body, flen+3);
1887 pop_variable_scope ();
1889 return o + strlen (o);