Changeset 1440
- Timestamp:
- Mar 30, 2008, 6:13:55 AM (17 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/kmk/Makefile.am ¶
r1439 r1440 126 126 -DCONFIG_WITH_EVALPLUS \ 127 127 -DCONFIG_WITH_MAKE_STATS \ 128 -DCONFIG_WITH_COMMANDS_FUNC \ 128 129 -DCONFIG_PRETTY_COMMAND_PRINTING \ 129 130 \ -
TabularUnified trunk/src/kmk/Makefile.kmk ¶
r1439 r1440 126 126 CONFIG_WITH_EVALPLUS \ 127 127 CONFIG_WITH_MAKE_STATS \ 128 CONFIG_WITH_COMMANDS_FUNC \ 128 129 CONFIG_PRETTY_COMMAND_PRINTING \ 129 130 \ -
TabularUnified trunk/src/kmk/commands.c ¶
r903 r1440 332 332 333 333 cmds->any_recurse = 0; 334 #ifdef CONFIG_WITH_COMMANDS_FUNC 335 cmds->lines_flags = xmalloc (nlines * sizeof (cmds->lines_flags[0])); 336 #else 334 337 cmds->lines_flags = xmalloc (nlines); 338 #endif 335 339 for (idx = 0; idx < nlines; ++idx) 336 340 { … … 338 342 339 343 for (p = lines[idx]; 344 #ifdef CONFIG_WITH_COMMANDS_FUNC 345 isblank ((unsigned char)*p) || *p == '-' || *p == '@' || *p == '+' || *p == '%'; 346 #else 340 347 isblank ((unsigned char)*p) || *p == '-' || *p == '@' || *p == '+'; 348 #endif 341 349 ++p) 342 350 switch (*p) … … 351 359 flags |= COMMANDS_NOERROR; 352 360 break; 361 #ifdef CONFIG_WITH_COMMANDS_FUNC 362 case '%': 363 flags |= COMMAND_GETTER_SKIP_IT; 364 break; 365 #endif 353 366 } 354 367 -
TabularUnified trunk/src/kmk/commands.h ¶
r903 r1440 26 26 unsigned int ncommand_lines;/* Number of command lines. */ 27 27 char **command_lines; /* Commands chopped up into lines. */ 28 #ifdef CONFIG_WITH_COMMANDS_FUNC 29 short *lines_flags; /* One set of flag bits for each line. */ 30 #else 28 31 char *lines_flags; /* One set of flag bits for each line. */ 32 #endif 29 33 int any_recurse; /* Nonzero if any `lines_recurse' elt has */ 30 34 /* the COMMANDS_RECURSE bit set. */ … … 42 46 # define COMMANDS_KMK_BUILTIN 128 /* kmk: kmk builtin command. */ 43 47 #endif 48 #ifdef CONFIG_WITH_COMMANDS_FUNC 49 # define COMMAND_GETTER_SKIP_IT 256 /* $(commands target) skips this: % */ 50 #endif 44 51 45 52 void execute_file_commands (struct file *file); -
TabularUnified trunk/src/kmk/expand.c ¶
r1107 r1440 506 506 507 507 508 #ifdef CONFIG_WITH_COMMANDS_FUNC 509 /* Expand LINE for FILE. Error messages refer to the file and line where 510 FILE's commands were found. Expansion uses FILE's variable set list. 511 512 Differs from variable_expand_for_file in that it takes a pointer to 513 where in the variable buffer to start outputting the expanded string. */ 514 515 char * 516 variable_expand_for_file_2 (char *o, const char *line, struct file *file) 517 { 518 char *result; 519 struct variable_set_list *save; 520 521 if (file == 0) 522 return variable_expand_string (o, line, (long)-1); 523 524 save = current_variable_set_list; 525 current_variable_set_list = file->variables; 526 if (file->cmds && file->cmds->fileinfo.filenm) 527 reading_file = &file->cmds->fileinfo; 528 else 529 reading_file = 0; 530 result = variable_expand_string (o, line, (long)-1); 531 current_variable_set_list = save; 532 reading_file = 0; 533 534 return result; 535 } 536 537 538 #endif /* CONFIG_WITH_COMMANDS_FUNC */ 508 539 /* Like allocated_variable_expand, but for += target-specific variables. 509 540 First recursively construct the variable value from its appended parts in -
TabularUnified trunk/src/kmk/function.c ¶
r1439 r1440 2355 2355 writing rules. */ 2356 2356 static char * 2357 func_xargs (char *o, char **argv, const char *funcname )2357 func_xargs (char *o, char **argv, const char *funcname UNUSED) 2358 2358 { 2359 2359 int argc; … … 2517 2517 if (!isblank (ch) 2518 2518 && ch != '@' 2519 #ifdef CONFIG_WITH_COMMANDS_FUNC 2520 && ch != '%' 2521 #endif 2519 2522 && ch != '+' 2520 2523 && ch != '-') … … 2532 2535 char *ne_retval, const char *funcname) 2533 2536 { 2534 /* give up at once if not comp-cmds. */ 2535 if (strcmp (funcname, "comp-cmds") != 0) 2537 /* give up at once if not comp-cmds or comp-cmds-ex. */ 2538 if (strcmp (funcname, "comp-cmds") != 0 2539 && strcmp (funcname, "comp-cmds-ex") != 0) 2536 2540 o = variable_buffer_output (o, ne_retval, strlen (ne_retval)); 2537 2541 else … … 2640 2644 2641 2645 comp-cmds will compare command by command, ignoring not only leading 2642 and trailing spaces on each line but also leading one leading '@' and '-'. 2646 and trailing spaces on each line but also leading one leading '@', 2647 '-', '+' and '%' 2643 2648 */ 2644 2649 static char * … … 2666 2671 /* ignore trailing and leading blanks */ 2667 2672 s1 = var1->value; 2673 e1 = s1 + var1->value_length; 2668 2674 while (isblank ((unsigned char) *s1)) 2669 2675 s1++; 2670 e1 = s1 + var1->value_length;2671 2676 while (e1 > s1 && isblank ((unsigned char) e1[-1])) 2672 2677 e1--; 2673 2678 2674 2679 s2 = var2->value; 2680 e2 = s2 + var2->value_length; 2675 2681 while (isblank ((unsigned char) *s2)) 2676 2682 s2++; 2677 e2 = s2 + var2->value_length;2678 2683 while (e2 > s2 && isblank ((unsigned char) e2[-1])) 2679 2684 e2--; … … 2762 2767 return o; 2763 2768 } 2769 2770 /* 2771 $(comp-cmds-ex cmds1,cmds2,not-equal-return) 2772 2773 Compares the two strings and return the string in the third argument 2774 if not equal. If equal, nothing is returned. 2775 2776 The comparision will be performed command by command, ignoring not 2777 only leading and trailing spaces on each line but also leading one 2778 leading '@', '-', '+' and '%'. 2779 */ 2780 static char * 2781 func_comp_cmds_ex (char *o, char **argv, const char *funcname) 2782 { 2783 const char *s1, *e1, *x1, *s2, *e2, *x2; 2784 char *a1 = NULL, *a2 = NULL; 2785 size_t l, l1, l2; 2786 2787 /* the simple cases */ 2788 s1 = argv[0]; 2789 s2 = argv[1]; 2790 if (s1 == s2) 2791 return variable_buffer_output (o, "", 0); /* eq */ 2792 l1 = strlen (argv[0]); 2793 l2 = strlen (argv[1]); 2794 2795 if ( l1 == l2 2796 && !memcmp (s1, s2, l1)) 2797 return variable_buffer_output (o, "", 0); /* eq */ 2798 2799 /* ignore trailing and leading blanks */ 2800 e1 = s1 + l1; 2801 while (isblank ((unsigned char) *s1)) 2802 s1++; 2803 while (e1 > s1 && isblank ((unsigned char) e1[-1])) 2804 e1--; 2805 2806 e2 = s2 + l1; 2807 while (isblank ((unsigned char) *s2)) 2808 s2++; 2809 while (e2 > s2 && isblank ((unsigned char) e2[-1])) 2810 e2--; 2811 2812 if (e1 - s1 != e2 - s2) 2813 return comp_vars_ne (o, s1, e1, s2, e2, argv[2], funcname); 2814 if (!memcmp (s1, s2, e1 - s1)) 2815 return variable_buffer_output (o, "", 0); /* eq */ 2816 return comp_vars_ne (o, s1, e1, s2, e2, argv[2], funcname); 2817 } 2764 2818 #endif 2765 2819 … … 2851 2905 fails. */ 2852 2906 static char * 2853 func_file_size (char *o, char **argv, const char *funcname )2907 func_file_size (char *o, char **argv, const char *funcname UNUSED) 2854 2908 { 2855 2909 struct stat st; … … 2924 2978 their full location if found. Prints nothing if not found. */ 2925 2979 static char * 2926 func_which (char *o, char **argv, const char *funcname )2980 func_which (char *o, char **argv, const char *funcname UNUSED) 2927 2981 { 2928 2982 const char *path; … … 3006 3060 /* Push an item (string without spaces). */ 3007 3061 static char * 3008 func_stack_push (char *o, char **argv, const char *funcname )3062 func_stack_push (char *o, char **argv, const char *funcname UNUSED) 3009 3063 { 3010 3064 do_variable_definition(NILF, argv[0], argv[1], o_file, f_append, 0 /* !target_var */); … … 3179 3233 /* Add two or more integer numbers. */ 3180 3234 static char * 3181 func_int_add (char *o, char **argv, const char *funcname )3235 func_int_add (char *o, char **argv, const char *funcname UNUSED) 3182 3236 { 3183 3237 math_int num; … … 3193 3247 /* Subtract two or more integer numbers. */ 3194 3248 static char * 3195 func_int_sub (char *o, char **argv, const char *funcname )3249 func_int_sub (char *o, char **argv, const char *funcname UNUSED) 3196 3250 { 3197 3251 math_int num; … … 3207 3261 /* Multiply two or more integer numbers. */ 3208 3262 static char * 3209 func_int_mul (char *o, char **argv, const char *funcname )3263 func_int_mul (char *o, char **argv, const char *funcname UNUSED) 3210 3264 { 3211 3265 math_int num; … … 3221 3275 /* Divide an integer number by one or more divisors. */ 3222 3276 static char * 3223 func_int_div (char *o, char **argv, const char *funcname )3277 func_int_div (char *o, char **argv, const char *funcname UNUSED) 3224 3278 { 3225 3279 math_int num; … … 3245 3299 /* Divide and return the remainder. */ 3246 3300 static char * 3247 func_int_mod (char *o, char **argv, const char *funcname )3301 func_int_mod (char *o, char **argv, const char *funcname UNUSED) 3248 3302 { 3249 3303 math_int num; … … 3264 3318 /* 2-complement. */ 3265 3319 static char * 3266 func_int_not (char *o, char **argv, const char *funcname )3320 func_int_not (char *o, char **argv, const char *funcname UNUSED) 3267 3321 { 3268 3322 math_int num; … … 3276 3330 /* Bitwise AND (two or more numbers). */ 3277 3331 static char * 3278 func_int_and (char *o, char **argv, const char *funcname )3332 func_int_and (char *o, char **argv, const char *funcname UNUSED) 3279 3333 { 3280 3334 math_int num; … … 3290 3344 /* Bitwise OR (two or more numbers). */ 3291 3345 static char * 3292 func_int_or (char *o, char **argv, const char *funcname )3346 func_int_or (char *o, char **argv, const char *funcname UNUSED) 3293 3347 { 3294 3348 math_int num; … … 3304 3358 /* Bitwise XOR (two or more numbers). */ 3305 3359 static char * 3306 func_int_xor (char *o, char **argv, const char *funcname )3360 func_int_xor (char *o, char **argv, const char *funcname UNUSED) 3307 3361 { 3308 3362 math_int num; … … 3416 3470 the variable. */ 3417 3471 static char * 3418 func_os2_libpath (char *o, char **argv, const char *funcname )3472 func_os2_libpath (char *o, char **argv, const char *funcname UNUSED) 3419 3473 { 3420 3474 char buf[4096]; … … 3503 3557 /* Retrieve make statistics. */ 3504 3558 static char * 3505 func_make_stats (char *o, char **argv, const char *funcname )3559 func_make_stats (char *o, char **argv, const char *funcname UNUSED) 3506 3560 { 3507 3561 char buf[512]; … … 3551 3605 return o; 3552 3606 } 3553 #endif 3607 #endif /* CONFIG_WITH_MAKE_STATS */ 3608 3609 #ifdef CONFIG_WITH_COMMANDS_FUNC 3610 /* Gets all the commands for a target, separated by newlines. 3611 3612 This is useful when creating and checking target dependencies since 3613 it reduces the amount of work and the memory consuption. A new prefix 3614 character '%' has been introduced for skipping certain lines, like 3615 for instance the one calling this function and pushing to a dep file. 3616 Blank lines are also skipped. 3617 3618 The commands function takes exactly one argument, which is the name of 3619 the target which commands should be returned. 3620 3621 The commands-sc is identical to commands except that it uses a ';' to 3622 separate the commands. 3623 3624 The commands-usr is similar to commands except that it takes a 2nd 3625 argument that is used to separate the commands. */ 3626 char * 3627 func_commands (char *o, char **argv, const char *funcname) 3628 { 3629 struct file *file; 3630 static int recursive = 0; 3631 3632 if (recursive) 3633 return variable_buffer_output (o, "recursive", sizeof ("recursive") - 1); 3634 recursive = 1; 3635 3636 file = lookup_file (argv[0]); 3637 if (file) 3638 { 3639 int i, cmd_sep_len; 3640 struct commands *cmds = file->cmds; 3641 const char *cmd_sep; 3642 3643 if (!strcmp (funcname, "commands")) 3644 { 3645 cmd_sep = "\n"; 3646 cmd_sep_len = 1; 3647 } 3648 else if (!strcmp (funcname, "commands-sc")) 3649 { 3650 cmd_sep = ";"; 3651 cmd_sep_len = 1; 3652 } 3653 else /*if (!strcmp (funcname, "commands-usr"))*/ 3654 { 3655 cmd_sep = argv[1]; 3656 cmd_sep_len = strlen (cmd_sep); 3657 } 3658 3659 initialize_file_variables (file, 1 /* reading - FIXME: we don't know? */); 3660 set_file_variables (file); 3661 chop_commands (cmds); 3662 3663 for (i = 0; i < cmds->ncommand_lines; i++) 3664 { 3665 char *p; 3666 char *in, *out, *ref; 3667 3668 /* Skip it if it has a '%' prefix or is blank. */ 3669 if (cmds->lines_flags[i] & COMMAND_GETTER_SKIP_IT) 3670 continue; 3671 p = cmds->command_lines[i]; 3672 while (isblank ((unsigned char)*p)) 3673 p++; 3674 if (*p == '\0') 3675 continue; 3676 3677 /* --- copied from new_job() in job.c --- */ 3678 3679 /* Collapse backslash-newline combinations that are inside variable 3680 or function references. These are left alone by the parser so 3681 that they will appear in the echoing of commands (where they look 3682 nice); and collapsed by construct_command_argv when it tokenizes. 3683 But letting them survive inside function invocations loses because 3684 we don't want the functions to see them as part of the text. */ 3685 3686 /* IN points to where in the line we are scanning. 3687 OUT points to where in the line we are writing. 3688 When we collapse a backslash-newline combination, 3689 IN gets ahead of OUT. */ 3690 3691 in = out = p; 3692 while ((ref = strchr (in, '$')) != 0) 3693 { 3694 ++ref; /* Move past the $. */ 3695 3696 if (out != in) 3697 /* Copy the text between the end of the last chunk 3698 we processed (where IN points) and the new chunk 3699 we are about to process (where REF points). */ 3700 memmove (out, in, ref - in); 3701 3702 /* Move both pointers past the boring stuff. */ 3703 out += ref - in; 3704 in = ref; 3705 3706 if (*ref == '(' || *ref == '{') 3707 { 3708 char openparen = *ref; 3709 char closeparen = openparen == '(' ? ')' : '}'; 3710 int count; 3711 char *p; 3712 3713 *out++ = *in++; /* Copy OPENPAREN. */ 3714 /* IN now points past the opening paren or brace. 3715 Count parens or braces until it is matched. */ 3716 count = 0; 3717 while (*in != '\0') 3718 { 3719 if (*in == closeparen && --count < 0) 3720 break; 3721 else if (*in == '\\' && in[1] == '\n') 3722 { 3723 /* We have found a backslash-newline inside a 3724 variable or function reference. Eat it and 3725 any following whitespace. */ 3726 3727 int quoted = 0; 3728 for (p = in - 1; p > ref && *p == '\\'; --p) 3729 quoted = !quoted; 3730 3731 if (quoted) 3732 /* There were two or more backslashes, so this is 3733 not really a continuation line. We don't collapse 3734 the quoting backslashes here as is done in 3735 collapse_continuations, because the line will 3736 be collapsed again after expansion. */ 3737 *out++ = *in++; 3738 else 3739 { 3740 /* Skip the backslash, newline and 3741 any following whitespace. */ 3742 in = next_token (in + 2); 3743 3744 /* Discard any preceding whitespace that has 3745 already been written to the output. */ 3746 while (out > ref 3747 && isblank ((unsigned char)out[-1])) 3748 --out; 3749 3750 /* Replace it all with a single space. */ 3751 *out++ = ' '; 3752 } 3753 } 3754 else 3755 { 3756 if (*in == openparen) 3757 ++count; 3758 3759 *out++ = *in++; 3760 } 3761 } 3762 } 3763 } 3764 3765 /* There are no more references in this line to worry about. 3766 Copy the remaining uninteresting text to the output. */ 3767 if (out != in) 3768 strcpy (out, in); 3769 3770 /* --- copied from new_job() in job.c --- */ 3771 3772 /* Finally, expand the line. */ 3773 if (i) 3774 o = variable_buffer_output (o, cmd_sep, cmd_sep_len); 3775 o = variable_expand_for_file_2 (o, cmds->command_lines[i], file); 3776 3777 /* blank, if so, drop it. */ 3778 p = o; 3779 while (isblank ((unsigned char)*o)) 3780 o++; 3781 if (o != '\0') 3782 o = strchr (o, '\0'); 3783 else 3784 o = p - cmd_sep_len; 3785 } 3786 } 3787 /* else FIXME: bitch about it? */ 3788 3789 recursive = 0; 3790 return o; 3791 } 3792 #endif /* CONFIG_WITH_COMMANDS_FUNC */ 3554 3793 3555 3794 /* Lookup table for builtin functions. … … 3633 3872 { STRING_SIZE_TUPLE("comp-vars"), 3, 3, 1, func_comp_vars}, 3634 3873 { STRING_SIZE_TUPLE("comp-cmds"), 3, 3, 1, func_comp_vars}, 3874 { STRING_SIZE_TUPLE("comp-cmds-ex"), 3, 3, 1, func_comp_cmds_ex}, 3635 3875 #endif 3636 3876 #ifdef CONFIG_WITH_DATE … … 3676 3916 { STRING_SIZE_TUPLE("make-stats"), 0, ~0, 0, func_make_stats}, 3677 3917 #endif 3918 #ifdef CONFIG_WITH_COMMANDS_FUNC 3919 { STRING_SIZE_TUPLE("commands"), 1, 1, 1, func_commands}, 3920 { STRING_SIZE_TUPLE("commands-sc"), 1, 1, 1, func_commands}, 3921 { STRING_SIZE_TUPLE("commands-usr"), 2, 2, 1, func_commands}, 3922 #endif 3678 3923 #ifdef KMK_HELPERS 3679 3924 { STRING_SIZE_TUPLE("kb-src-tool"), 1, 1, 0, func_kbuild_source_tool}, -
TabularUnified trunk/src/kmk/job.c ¶
r1376 r1440 1056 1056 else if (*p == '-') 1057 1057 child->noerror = 1; 1058 #ifdef CONFIG_WITH_COMMANDS_FUNC 1059 else if (*p == '%') 1060 flags |= COMMAND_GETTER_SKIP_IT; 1061 #endif 1058 1062 else if (!isblank ((unsigned char)*p)) 1059 1063 #ifndef CONFIG_WITH_KMK_BUILTIN -
TabularUnified trunk/src/kmk/kmkbuiltin/append.c ¶
r1183 r1440 42 42 { 43 43 fprintf(pf, 44 "usage: %s [- nv] file [string ...]\n"44 "usage: %s [-cnv] file [string ...]\n" 45 45 " or: %s --version\n" 46 46 " or: %s --help\n", … … 61 61 #ifndef kmk_builtin_append 62 62 int fVariables = 0; 63 int fCommands = 0; 63 64 #endif 64 65 … … 82 83 switch (*psz) 83 84 { 85 case 'c': 86 #ifndef kmk_builtin_append 87 fCommands = 1; 88 break; 89 #else 90 errx(1, "Option '-c' isn't supported in external mode."); 91 return usage(stderr); 92 #endif 84 93 case 'n': 85 94 fNewLine = 1; … … 134 143 fputc(fNewLine ? '\n' : ' ', pFile); 135 144 #ifndef kmk_builtin_append 136 if (fVariables) 145 if (fCommands) 146 { 147 char *pszOldBuf; 148 unsigned cchOldBuf; 149 char *pchEnd; 150 151 install_variable_buffer(&pszOldBuf, &cchOldBuf); 152 153 pchEnd = func_commands(variable_buffer, &argv[i], "commands"); 154 fwrite(variable_buffer, 1, pchEnd - variable_buffer, pFile); 155 156 restore_variable_buffer(pszOldBuf, cchOldBuf); 157 } 158 else if (fVariables) 137 159 { 138 160 struct variable *pVar = lookup_variable(psz, cch); -
TabularUnified trunk/src/kmk/variable.c ¶
r1439 r1440 1046 1046 && defined (CONFIG_WITH_EVALPLUS) \ 1047 1047 && defined (CONFIG_WITH_MAKE_STATS) \ 1048 && defined (CONFIG_WITH_COMMANDS_FUNC) \ 1048 1049 && defined (KMK_HELPERS) 1049 1050 (void) define_variable ("KMK_FEATURES", 12, … … 1052 1053 " abspathex" 1053 1054 " toupper tolower" 1054 " comp-vars comp-cmds "1055 " comp-vars comp-cmds comp-cmds-ex" 1055 1056 " stack" 1056 1057 " math-int" … … 1064 1065 " evalctx evalval evalvalctx evalcall evalcall2" 1065 1066 " make-stats" 1067 " commands" 1066 1068 " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one " 1067 1069 , o_default, 0); … … 1079 1081 # endif 1080 1082 # if defined (CONFIG_WITH_VALUE_LENGTH) && defined(CONFIG_WITH_COMPARE) 1081 strcat (buf, " comp-vars comp-cmds ");1083 strcat (buf, " comp-vars comp-cmds comp-cmds-ex"); 1082 1084 # endif 1083 1085 # if defined (CONFIG_WITH_STACK) … … 1114 1116 strcat (buf, " make-stats"); 1115 1117 # endif 1118 # if defined (CONFIG_WITH_COMMANDS_FUNC) 1119 strcat (buf, " commands"); 1120 # endif 1116 1121 # if defined (KMK_HELPERS) 1117 1122 strcat (buf, " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one"); -
TabularUnified trunk/src/kmk/variable.h ¶
r1437 r1440 132 132 char *variable_expand (const char *line); 133 133 char *variable_expand_for_file (const char *line, struct file *file); 134 #ifdef CONFIG_WITH_COMMANDS_FUNC 135 char *variable_expand_for_file_2 (char *o, const char *line, struct file *file); 136 #endif 134 137 char *allocated_variable_expand_for_file (const char *line, struct file *file); 135 138 #define allocated_variable_expand(line) \ … … 153 156 const char *replace_percent); 154 157 char *patsubst_expand (char *o, const char *text, char *pattern, char *replace); 158 #ifdef CONFIG_WITH_COMMANDS_FUNC 159 char *func_commands (char *o, char **argv, const char *funcname); 160 #endif 155 161 156 162 /* expand.c */
Note:
See TracChangeset
for help on using the changeset viewer.