2 * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
4 * This file is part of Jam - see jam.c for Copyright information.
7 * variable.c - handle jam multi-element variables
11 * var_defines() - load a bunch of variable=value settings
12 * var_string() - expand a string with variables in it
13 * var_get() - get value of a user defined symbol
14 * var_set() - set a variable in jam's user defined symbol table
15 * var_swap() - swap a variable's value with the given one
16 * var_done() - free variable tables
20 * var_enter() - make new var symbol table entry, returning var ptr
21 * var_dump() - dump a variable to stdout
23 * 04/13/94 (seiwald) - added shorthand L0 for null list pointer
24 * 08/23/94 (seiwald) - Support for '+=' (append to variable)
25 * 01/22/95 (seiwald) - split environment variables at blanks or :'s
26 * 05/10/95 (seiwald) - split path variables at SPLITPATH (not :)
27 * 09/11/00 (seiwald) - defunct var_list() removed
28 * 10/22/02 (seiwald) - list_new() now does its own newstr()/copystr()
29 * 11/04/02 (seiwald) - const-ing for string literals
40 static struct hash
*varhash
= NULL
;
44 * VARIABLE - a user defined multi-value variable
47 typedef struct _variable VARIABLE
;
55 * var_dump() - dump a variable to stdout
57 static void var_dump (const char *symbol
, LIST
*value
, const char *what
) {
58 printf("%s %s = ", what
, symbol
);
65 * var_enter() - make new var symbol table entry, returning var ptr
67 static VARIABLE
*var_enter (const char *symbol
) {
68 VARIABLE var
, *v
= &var
;
70 if (!varhash
) varhash
= hashinit(sizeof(VARIABLE
), "variables");
73 if (hashenter(varhash
, (HASHDATA
**)&v
)) v
->symbol
= newstr(symbol
); /* never freed */
81 void var_defines (const char **e
) {
84 /* just say "no": windows defines this in the env, but we don't want it to override our notion of OS */
85 if (!strcmp(*e
, "OS=Windows_NT")) continue;
86 /* Just say "no": on Unix, variables can contain function
87 * definitions. their value begins with "()"
89 if ((val
= strchr(*e
, '=')) && val
[1] == '(' && val
[2] == ')') continue;
90 if ((val
= strchr(*e
, '='))) {
95 /* split *PATH at :'s, not spaces */
97 if (!strncmp(val
-4, "PATH", 4) || !strncmp(val
-4, "Path", 4) || !strncmp(val
-4, "path", 4)) split
= SPLITPATH
;
100 for (pp
= val
+1; (p
= strchr(pp
, split
)); pp
= p
+1) {
103 if (len
>= sizeof(buf
)) len
= sizeof(buf
)-1;
104 strncpy(buf
, pp
, len
);
106 l
= list_new(l
, buf
, 0);
108 l
= list_new(l
, pp
, 0);
110 strncpy(buf
, *e
, val
-*e
);
112 var_set(buf
, l
, VAR_SET
);
121 int var_string (const char *in
, tKString
*out
, LOL
*lol
, char separator
) {
122 int osz
= kStringLen(out
), lwpos
;
128 /* copy white space */
130 while (isspace(*in
)) ++in
;
131 kStringAppendRange(out
, st
, in
);
133 lwpos
= kStringLen(out
);
134 /* copy non-white space, watching for variables */
136 while (*in
&& !isspace(*in
)) {
137 if (in
[0] == '$' && in
[1] == '(') ++dollar
;
140 kStringAppendRange(out
, st
, in
);
141 /* if a variable encountered, expand it and and embed the space-separated members of the list in the output */
143 LIST
*l
= var_expand(L0
, kStringCStr(out
)+lwpos
, kStringCStr(out
)+kStringLen(out
), lol
, 0), *hd
= l
;
144 kStringTruncate(out
, lwpos
);
146 kStringAppendCStr(out
, l
->string
);
147 /* separate with space */
148 if ((l
= list_next(l
)) != NULL
) kStringPushBack(out
, separator
);
153 return kStringLen(out
)-osz
;
160 LIST
*var_get (const char *symbol
) {
161 VARIABLE var
, *v
= &var
;
164 if (varhash
&& hashcheck(varhash
, (HASHDATA
**)&v
)) {
165 if (DEBUG_VARGET
) var_dump(v
->symbol
, v
->value
, "get");
175 void var_set (const char *symbol
, LIST
*value
, int flag
) {
176 VARIABLE
*v
= var_enter(symbol
);
178 if (DEBUG_VARSET
) var_dump(symbol
, value
, "set");
187 v
->value
= list_append(v
->value
, value
);
190 /* Remove all values */
191 v
->value
= list_removeall(v
->value
, value
);
195 /* Set only if unset */
196 if (!v
->value
) v
->value
= value
; else list_free(value
);
205 LIST
*var_swap (const char *symbol
, LIST
*value
) {
206 VARIABLE
*v
= var_enter(symbol
);
207 LIST
*oldvalue
= v
->value
;
209 if (DEBUG_VARSET
) var_dump(symbol
, value
, "set");
218 void var_done (void) {