cosmetix
[k8jam.git] / src / compile.c
blob690232291d21973051158dbc7befd8e1e1ab47b3
1 /*
2 * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6 /*
7 * compile.c - compile parsed jam statements
9 * External routines:
11 * compile_append() - append list results of two statements
12 * compile_break() - compile 'break/continue/return' rule
13 * compile_eval() - evaluate if to determine which leg to compile
14 * compile_foreach() - compile the "for x in y" statement
15 * compile_if() - compile 'if' rule
16 * compile_include() - support for 'include' - call include() on file
17 * compile_list() - expand and return a list
18 * compile_local() - declare (and set) local variables
19 * compile_null() - do nothing -- a stub for parsing
20 * compile_on() - run rule under influence of on-target variables
21 * compile_rule() - compile a single user defined rule
22 * compile_rules() - compile a chain of rules
23 * compile_set() - compile the "set variable" statement
24 * compile_setcomp() - support for `rule` - save parse tree
25 * compile_setexec() - support for `actions` - save execution string
26 * compile_settings() - compile the "on =" (set variable on exec) statement
27 * compile_switch() - compile 'switch' rule
29 * Internal routines:
31 * debug_compile() - printf with indent to show rule expansion.
32 * evaluate_rule() - execute a rule invocation
34 * 02/03/94 (seiwald) - Changed trace output to read "setting" instead of
35 * the awkward sounding "settings".
36 * 04/12/94 (seiwald) - Combined build_depends() with build_includes().
37 * 04/12/94 (seiwald) - actionlist() now just appends a single action.
38 * 04/13/94 (seiwald) - added shorthand L0 for null list pointer
39 * 05/13/94 (seiwald) - include files are now bound as targets, and thus
40 * can make use of $(SEARCH)
41 * 06/01/94 (seiwald) - new 'actions existing' does existing sources
42 * 08/23/94 (seiwald) - Support for '+=' (append to variable)
43 * 12/20/94 (seiwald) - NOTIME renamed NOTFILE.
44 * 01/22/95 (seiwald) - Exit rule.
45 * 02/02/95 (seiwald) - Always rule; LEAVES rule.
46 * 02/14/95 (seiwald) - NoUpdate rule.
47 * 01/20/00 (seiwald) - Upgraded from K&R to ANSI C
48 * 09/07/00 (seiwald) - stop crashing when a rule redefines itself
49 * 09/11/00 (seiwald) - new evaluate_rule() for headers().
50 * 09/11/00 (seiwald) - rules now return values, accessed via [ rule arg ... ]
51 * 09/12/00 (seiwald) - don't complain about rules invoked without targets
52 * 01/13/01 (seiwald) - fix case where rule is defined within another
53 * 01/10/01 (seiwald) - built-ins split out to builtin.c.
54 * 01/11/01 (seiwald) - optimize compile_rules() for tail recursion
55 * 01/21/01 (seiwald) - replace evaluate_if() with compile_eval()
56 * 01/24/01 (seiwald) - 'while' statement
57 * 03/23/01 (seiwald) - "[ on target rule ]" support
58 * 02/28/02 (seiwald) - merge EXEC_xxx flags in with RULE_xxx
59 * 03/02/02 (seiwald) - rules can be invoked via variable names
60 * 03/12/02 (seiwald) - &&,&,||,|,in now short-circuit again
61 * 03/25/02 (seiwald) - if ( "" a b ) one again returns true
62 * 06/21/02 (seiwald) - support for named parameters
63 * 10/22/02 (seiwald) - list_new() now does its own newstr()/copystr()
64 * 10/22/02 (seiwald) - working return/break/continue statements
65 * 11/04/02 (seiwald) - const-ing for string literals
66 * 11/18/02 (seiwald) - remove bogus search() in 'on' statement.
67 * 12/17/02 (seiwald) - new copysettings() to protect target-specific vars
69 #include "jam.h"
71 #include "lists.h"
72 #include "parse.h"
73 #include "compile.h"
74 #include "variable.h"
75 #include "expand.h"
76 #include "rules.h"
77 #include "newstr.h"
78 #include "search.h"
81 static const char *set_names[] = { "=", "+=", "-=", "?=" };
82 static void debug_compile (int which, const char *s);
83 int glob (const char *s, const char *c);
87 * compile_append() - append list results of two statements
89 * parse->left more compile_append() by left-recursion
90 * parse->right single rule
92 LIST *compile_append (PARSE *parse, LOL *args, int *jmp) {
93 /* Append right to left. */
94 return list_append(
95 (*parse->left->func)(parse->left, args, jmp),
96 (*parse->right->func)(parse->right, args, jmp)
102 * compile_break() - compile 'break/continue/return' rule
104 * parse->left results
105 * parse->num JMP_BREAK/CONTINUE/RETURN
107 LIST *compile_break (PARSE *parse, LOL *args, int *jmp) {
108 LIST *lv = (*parse->left->func)(parse->left, args, jmp);
109 *jmp = parse->num;
110 return lv;
115 * compile_eval() - evaluate if to determine which leg to compile
117 * Returns:
118 * list if expression true - compile 'then' clause
119 * L0 if expression false - compile 'else' clause
121 static int lcmp (LIST *t, LIST *s) {
122 int status = 0;
124 while (!status && (t || s)) {
125 const char *st = t?t->string:"";
126 const char *ss = s?s->string:"";
128 status = strcmp(st, ss);
129 t = t?list_next(t):t;
130 s = s?list_next(s):s;
132 return status;
136 LIST *compile_eval (PARSE *parse, LOL *args, int *jmp) {
137 LIST *ll, *lr, *s, *t;
138 int status = 0;
140 /* short circuit lr eval for &&, ||, and 'in' */
141 ll = (*parse->left->func)(parse->left, args, jmp);
142 lr = 0;
143 switch (parse->num) {
144 case EXPR_AND:
145 case EXPR_IN:
146 if (ll) goto eval;
147 break;
148 case EXPR_OR:
149 if (!ll) goto eval;
150 break;
151 default:
152 eval: lr = (*parse->right->func)(parse->right, args, jmp);
153 break;
155 /* now eval */
156 switch (parse->num) {
157 case EXPR_NOT:
158 if (!ll) status = 1;
159 break;
160 case EXPR_AND:
161 if (ll && lr) status = 1;
162 break;
163 case EXPR_OR:
164 if (ll || lr) status = 1;
165 break;
166 case EXPR_IN:
167 /* "a in b": make sure each of ll is equal to something in lr */
168 for (t = ll; t; t = list_next(t)) {
169 for (s = lr; s; s = list_next(s)) if (strcmp(t->string, s->string) == 0) break;
170 if (!s) break;
172 /* No more ll? success */
173 if (!t) status = 1;
174 break;
175 case EXPR_EXISTS:
176 if (lcmp(ll, L0) != 0) status = 1;
177 break;
178 case EXPR_EQUALS:
179 if (lcmp(ll, lr) == 0) status = 1;
180 break;
181 case EXPR_NOTEQ:
182 if (lcmp(ll, lr) != 0) status = 1;
183 break;
184 case EXPR_LESS:
185 if (lcmp(ll, lr) < 0) status = 1;
186 break;
187 case EXPR_LESSEQ:
188 if (lcmp(ll, lr) <= 0) status = 1;
189 break;
190 case EXPR_MORE:
191 if (lcmp(ll, lr) > 0) status = 1;
192 break;
193 case EXPR_MOREEQ:
194 if (lcmp(ll, lr) >= 0) status = 1;
195 break;
197 if (DEBUG_IF) {
198 debug_compile(0, "if");
199 list_print(ll);
200 printf("(%d) ", status);
201 list_print(lr);
202 printf("\n");
204 /* find something to return */
205 /* in odd circumstances (like "" = "") we'll have to return a new string */
206 if (!status) t = 0;
207 else if (ll) t = ll, ll = 0;
208 else if (lr) t = lr, lr = 0;
209 else t = list_new(L0, "1", 0);
210 if (ll) list_free(ll);
211 if (lr) list_free(lr);
212 return t;
217 * compile_foreach() - compile the "for x in y" statement
219 * Compile_foreach() resets the given variable name to each specified
220 * value, executing the commands enclosed in braces for each iteration.
222 * parse->string index variable
223 * parse->left variable values
224 * parse->right rule to compile
226 LIST *compile_foreach (PARSE *p, LOL *args, int *jmp) {
227 LIST *nv = (*p->left->func)(p->left, args, jmp);
228 LIST *result = 0;
229 LIST *l;
231 /* for each value for var */
232 for (l = nv; l && *jmp == JMP_NONE; l = list_next(l)) {
233 /* reset $(p->string) for each val */
234 var_set(p->string, list_new(L0, l->string, 1), VAR_SET);
235 /* keep only last result */
236 list_free(result);
237 result = (*p->right->func)(p->right, args, jmp);
238 /* continue loop? */
239 if (*jmp == JMP_CONTINUE) *jmp = JMP_NONE;
241 /* here by break/continue? */
242 if (*jmp == JMP_BREAK || *jmp == JMP_CONTINUE) *jmp = JMP_NONE;
243 list_free(nv);
244 /* returns result of last loop */
245 return result;
250 * compile_if() - compile 'if' rule
252 * parse->left condition tree
253 * parse->right then tree
254 * parse->third else tree
256 LIST *compile_if (PARSE *p, LOL *args, int *jmp) {
257 LIST *l = (*p->left->func)(p->left, args, jmp);
259 p = l?p->right:p->third;
260 list_free(l);
261 return (*p->func)(p, args, jmp);
266 * compile_include() - support for 'include' - call include() on file
268 * parse->left list of files to include (can only do 1)
270 LIST *compile_include (PARSE *parse, LOL *args, int *jmp) {
271 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
273 if (DEBUG_COMPILE) {
274 debug_compile(0, "include");
275 list_print(nt);
276 printf("\n");
278 if (nt) {
279 TARGET *t = bindtarget(nt->string);
280 /* bind the include file under the influence of "on-target" variables */
281 /* though they are targets, include files are not built with make() */
282 /* needn't copysettings(), as search sets no vars */
283 pushsettings(t->settings);
284 t->boundname = search(t->name, &t->time);
285 popsettings(t->settings);
286 /* don't parse missing file if NOCARE set */
287 if (t->time || !(t->flags & T_FLAG_NOCARE)) parse_file(t->boundname);
289 list_free(nt);
290 return L0;
295 * compile_list() - expand and return a list
297 * parse->string - character string to expand
299 LIST *compile_list (PARSE *parse, LOL *args, int *jmp) {
300 /* voodoo 1 means: s is a copyable string */
301 const char *s = parse->string;
302 return var_expand(L0, s, s+strlen(s), args, 1);
307 * compile_local() - declare (and set) local variables
309 * parse->left list of variables
310 * parse->right list of values
311 * parse->third rules to execute
313 LIST *compile_local (PARSE *parse, LOL *args, int *jmp) {
314 LIST *l;
315 SETTINGS *s = 0;
316 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
317 LIST *ns = (*parse->right->func)(parse->right, args, jmp);
318 LIST *result;
320 if (DEBUG_COMPILE) {
321 debug_compile(0, "local");
322 list_print(nt);
323 printf(" = ");
324 list_print(ns);
325 printf("\n");
327 /* initial value is ns */
328 for (l = nt; l; l = list_next(l)) s = addsettings(s, 0, l->string, list_copy((LIST *)0, ns));
329 list_free(ns);
330 list_free(nt);
331 /* note that callees of the current context get this "local" */
332 /* variable, making it not so much local as layered */
333 pushsettings(s);
334 result = (*parse->third->func)(parse->third, args, jmp);
335 popsettings(s);
336 freesettings(s);
337 return result;
342 * compile_null() - do nothing -- a stub for parsing
344 LIST *compile_null (PARSE *parse, LOL *args, int *jmp) {
345 return L0;
350 * compile_on() - run rule under influence of on-target variables
352 * parse->left target list; only first used
353 * parse->right rule to run
355 LIST *compile_on (PARSE *parse, LOL *args, int *jmp) {
356 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
357 LIST *result = 0;
359 if (DEBUG_COMPILE) {
360 debug_compile(0, "on");
361 list_print(nt);
362 printf("\n");
364 /* copy settings, so that 'on target var on target = val' doesn't set var globally */
365 if (nt) {
366 TARGET *t = bindtarget(nt->string);
367 SETTINGS *s = copysettings(t->settings);
369 pushsettings(s);
370 result = (*parse->right->func)(parse->right, args, jmp);
371 popsettings(s);
372 freesettings(s);
374 list_free(nt);
375 return result;
380 * compile_rule() - compile a single user defined rule
382 * parse->left list of rules to run
383 * parse->right parameters (list of lists) to rule, recursing left
385 * Wrapped around evaluate_rule() so that headers() can share it.
387 LIST *compile_rule (PARSE *parse, LOL *args, int *jmp) {
388 LOL nargs[1];
389 LIST *result = 0;
390 LIST *ll, *l;
391 PARSE *p;
393 /* list of rules to run -- normally 1! */
394 ll = (*parse->left->func)(parse->left, args, jmp);
395 /* build up the list of arg lists */
396 lol_init(nargs);
397 for (p = parse->right; p; p = p->left) lol_add(nargs, (*p->right->func)(p->right, args, jmp));
398 /* run rules, appending results from each */
399 for (l = ll; l; l = list_next(l)) result = evaluate_rule(l->string, nargs, result);
400 list_free(ll);
401 lol_free(nargs);
402 return result;
407 * evaluate_rule() - execute a rule invocation
409 LIST *evaluate_rule (const char *rulename, LOL *args, LIST *result) {
410 //#ifdef OPT_EXPAND_RULE_NAMES_EXT
411 RULE *rule;
412 char *expanded, *c;
413 int i;
414 tKString buf;
416 kStringNew(&buf);
417 if ((i = var_string(rulename, &buf, args, ' ')) < 0) {
418 kStringFree(&buf);
419 printf("Failed to expand rule %s -- expansion too long\n", rulename);
420 exit(EXITBAD);
422 expanded = kStringCStr(&buf);
423 while (expanded[0] == ' ') ++expanded;
424 while ((c = strrchr(expanded, ' '))) *c = '\0';
425 if (DEBUG_COMPILE) {
426 debug_compile(1, rulename);
427 if (strcmp(rulename, expanded)) printf("-> %s ", expanded);
428 lol_print(args);
429 printf("\n");
431 rule = bindrule(expanded);
432 kStringFree(&buf);
433 //#else
435 RULE *rule = bindrule(rulename);
437 if (DEBUG_COMPILE) {
438 debug_compile(1, rulename);
439 lol_print(args);
440 printf("\n");
443 //#endif
444 /* check traditional targets $(<) and sources $(>) */
445 if (!rule->actions && !rule->procedure) printf("warning: unknown rule %s\n", rule->name);
446 /* if this rule will be executed for updating the targets then construct the action for make() */
447 if (rule->actions) {
448 TARGETS *t;
449 ACTION *action;
451 /* the action is associated with this instance of this rule */
452 action = (ACTION *)malloc(sizeof(ACTION));
453 memset((char *)action, '\0', sizeof(*action));
454 action->rule = rule;
455 action->targets = targetlist((TARGETS *)0, lol_get(args, 0));
456 action->sources = targetlist((TARGETS *)0, lol_get(args, 1));
457 /* append this action to the actions of each target */
458 for (t = action->targets; t; t = t->next) t->target->actions = actionlist(t->target->actions, action);
460 /* now recursively compile any parse tree associated with this rule */
461 if (rule->procedure) {
462 PARSE *parse = rule->procedure;
463 SETTINGS *s = 0;
464 int jmp = JMP_NONE;
465 LIST *l;
466 int i;
468 /* build parameters as local vars */
469 for (l = rule->params, i = 0; l; l = l->next, i++) s = addsettings(s, 0, l->string, list_copy(L0, lol_get(args, i)));
470 /* run rule */
471 /* bring in local params */
472 /* refer/free to ensure rule not freed during use */
473 parse_refer(parse);
474 pushsettings(s);
475 result = list_append(result, (*parse->func)(parse, args, &jmp));
476 popsettings(s);
477 freesettings(s);
478 parse_free(parse);
480 if (DEBUG_COMPILE) debug_compile(-1, 0);
481 //#ifdef OPT_EXPAND_RULE_NAMES_EXT
482 kStringFree(&buf);
483 //#endif
484 return result;
489 * compile_rules() - compile a chain of rules
491 * parse->left single rule
492 * parse->right more compile_rules() by right-recursion
494 LIST *compile_rules (PARSE *parse, LOL *args, int *jmp) {
495 /* ignore result from first statement; return the 2nd */
496 /* optimize recursion on the right by looping */
497 LIST *result = 0;
499 while (*jmp == JMP_NONE && parse->func == compile_rules) {
500 list_free(result);
501 result = (*parse->left->func)(parse->left, args, jmp);
502 parse = parse->right;
504 if (*jmp == JMP_NONE) {
505 list_free(result);
506 result = (*parse->func)(parse, args, jmp);
508 return result;
513 * compile_set() - compile the "set variable" statement
515 * parse->left variable names
516 * parse->right variable values
517 * parse->num VAR_SET/APPEND/DEFAULT
519 LIST *compile_set (PARSE *parse, LOL *args, int *jmp) {
520 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
521 LIST *ns = (*parse->right->func)(parse->right, args, jmp);
522 LIST *l;
524 if (DEBUG_COMPILE) {
525 debug_compile(0, "set");
526 list_print(nt);
527 printf(" %s ", set_names[parse->num]);
528 list_print(ns);
529 printf("\n");
531 /* call var_set to set variable */
532 /* var_set keeps ns, so need to copy it */
533 for (l = nt; l; l = list_next(l)) var_set(l->string, list_copy(L0, ns), parse->num);
534 list_free(nt);
535 return ns;
540 * compile_setcomp() - support for `rule` - save parse tree
542 * parse->string rule name
543 * parse->left list of argument names
544 * parse->right rules for rule
546 LIST *compile_setcomp (PARSE *parse, LOL *args, int *jmp) {
547 RULE *rule = bindrule(parse->string);
548 LIST *params = 0;
549 PARSE *p;
551 /* build param list */
552 for (p = parse->left; p; p = p->left) params = list_new(params, p->string, 1);
553 if (DEBUG_COMPILE) {
554 debug_compile(0, "rule");
555 printf("%s ", parse->string);
556 list_print(params);
557 printf("\n");
559 /* free old one, if present */
560 if (rule->procedure) parse_free(rule->procedure);
561 if (rule->params) list_free(rule->params);
562 rule->procedure = parse->right;
563 rule->params = params;
564 /* we now own this parse tree */
565 /* don't let parse_free() release it */
566 parse_refer(parse->right);
567 return L0;
572 * compile_setexec() - support for `actions` - save execution string
574 * parse->string rule name
575 * parse->string1 OS command string
576 * parse->num flags
577 * parse->left `bind` variables
579 * Note that the parse flags (as defined in compile.h) are transfered
580 * directly to the rule flags (as defined in rules.h).
582 LIST *compile_setexec (PARSE *parse, LOL *args, int *jmp) {
583 RULE *rule = bindrule(parse->string);
584 LIST *bindlist = (*parse->left->func)(parse->left, args, jmp);
586 /* free old one, if present */
587 if (rule->actions) {
588 freestr(rule->actions);
589 list_free(rule->bindlist);
591 rule->actions = copystr(parse->string1);
592 rule->bindlist = bindlist;
593 rule->flags = parse->num;
594 return L0;
599 * compile_settings() - compile the "on =" (set variable on exec) statement
601 * parse->left variable names
602 * parse->right target name
603 * parse->third variable value
604 * parse->num VAR_SET/APPEND/DEFAULT
606 LIST *compile_settings (PARSE *parse, LOL *args, int *jmp) {
607 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
608 LIST *ns = (*parse->third->func)(parse->third, args, jmp);
609 LIST *targets = (*parse->right->func)(parse->right, args, jmp);
610 LIST *ts;
612 if (DEBUG_COMPILE) {
613 debug_compile(0, "set");
614 list_print(nt);
615 printf("on ");
616 list_print(targets);
617 printf(" %s ", set_names[parse->num]);
618 list_print(ns);
619 printf("\n");
621 /* call addsettings to save variable setting addsettings keeps ns, so need to copy it */
622 /* pass append flag to addsettings() */
623 for (ts = targets; ts; ts = list_next(ts)) {
624 TARGET *t = bindtarget(ts->string);
625 LIST *l;
627 for (l = nt; l; l = list_next(l)) {
628 t->settings = addsettings(t->settings, parse->num, l->string, list_copy((LIST *)0, ns));
631 list_free(nt);
632 list_free(targets);
633 return ns;
638 * compile_switch() - compile 'switch' rule
640 * parse->left switch value (only 1st used)
641 * parse->right cases
643 * cases->left 1st case
644 * cases->right next cases
646 * case->string argument to match
647 * case->left parse tree to execute
649 LIST *compile_switch (PARSE *parse, LOL *args, int *jmp) {
650 LIST *nt = (*parse->left->func)(parse->left, args, jmp);
651 LIST *result = 0;
653 if (DEBUG_COMPILE) {
654 debug_compile(0, "switch");
655 list_print(nt);
656 printf("\n");
658 /* step through cases */
659 for (parse = parse->right; parse; parse = parse->right) {
660 if (!glob( parse->left->string, nt?nt->string:"")) {
661 /* get and exec parse tree for this case */
662 parse = parse->left->left;
663 result = (*parse->func)(parse, args, jmp);
664 break;
667 list_free(nt);
668 return result;
673 * compile_while() - compile 'while' rule
675 * parse->left condition tree
676 * parse->right execution tree
678 LIST *compile_while (PARSE *p, LOL *args, int *jmp) {
679 LIST *result = 0;
680 LIST *l;
682 /* returns the value from the last execution of the block */
683 while ((*jmp == JMP_NONE ) && (l = (*p->left->func)(p->left, args, jmp))) {
684 /* always toss while's expression */
685 list_free(l);
686 /* keep only last result */
687 list_free(result);
688 result = (*p->right->func)(p->right, args, jmp);
689 /* continue loop? */
690 if (*jmp == JMP_CONTINUE) *jmp = JMP_NONE;
692 /* here by break/continue? */
693 if (*jmp == JMP_BREAK || *jmp == JMP_CONTINUE) *jmp = JMP_NONE;
694 /* returns result of last loop */
695 return result;
700 * debug_compile() - printf with indent to show rule expansion.
702 static void debug_compile (int which, const char *s) {
703 static int level = 0;
704 static char indent[36] = ">>>>|>>>>|>>>>|>>>>|>>>>|>>>>|>>>>|";
705 int i = ((1+level)*2)%35;
707 if (which >= 0) printf("%*.*s ", i, i, indent);
708 if (s) printf("%s ", s);
709 level += which;