var.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd #ifndef lint
40 1.1 cgd static char sccsid[] = "@(#)var.c 5.7 (Berkeley) 6/1/90";
41 1.1 cgd #endif /* not lint */
42 1.1 cgd
43 1.1 cgd /*-
44 1.1 cgd * var.c --
45 1.1 cgd * Variable-handling functions
46 1.1 cgd *
47 1.1 cgd * Interface:
48 1.1 cgd * Var_Set Set the value of a variable in the given
49 1.1 cgd * context. The variable is created if it doesn't
50 1.1 cgd * yet exist. The value and variable name need not
51 1.1 cgd * be preserved.
52 1.1 cgd *
53 1.1 cgd * Var_Append Append more characters to an existing variable
54 1.1 cgd * in the given context. The variable needn't
55 1.1 cgd * exist already -- it will be created if it doesn't.
56 1.1 cgd * A space is placed between the old value and the
57 1.1 cgd * new one.
58 1.1 cgd *
59 1.1 cgd * Var_Exists See if a variable exists.
60 1.1 cgd *
61 1.1 cgd * Var_Value Return the value of a variable in a context or
62 1.1 cgd * NULL if the variable is undefined.
63 1.1 cgd *
64 1.1 cgd * Var_Subst Substitute for all variables in a string using
65 1.1 cgd * the given context as the top-most one. If the
66 1.1 cgd * third argument is non-zero, Parse_Error is
67 1.1 cgd * called if any variables are undefined.
68 1.1 cgd *
69 1.1 cgd * Var_Parse Parse a variable expansion from a string and
70 1.1 cgd * return the result and the number of characters
71 1.1 cgd * consumed.
72 1.1 cgd *
73 1.1 cgd * Var_Delete Delete a variable in a context.
74 1.1 cgd *
75 1.1 cgd * Var_Init Initialize this module.
76 1.1 cgd *
77 1.1 cgd * Debugging:
78 1.1 cgd * Var_Dump Print out all variables defined in the given
79 1.1 cgd * context.
80 1.1 cgd *
81 1.1 cgd * XXX: There's a lot of duplication in these functions.
82 1.1 cgd */
83 1.1 cgd
84 1.1 cgd #include <ctype.h>
85 1.1 cgd #include "make.h"
86 1.1 cgd #include "buf.h"
87 1.1 cgd extern char *getenv();
88 1.1 cgd
89 1.1 cgd /*
90 1.1 cgd * This is a harmless return value for Var_Parse that can be used by Var_Subst
91 1.1 cgd * to determine if there was an error in parsing -- easier than returning
92 1.1 cgd * a flag, as things outside this module don't give a hoot.
93 1.1 cgd */
94 1.1 cgd char var_Error[] = "";
95 1.1 cgd
96 1.1 cgd /*
97 1.1 cgd * Similar to var_Error, but returned when the 'err' flag for Var_Parse is
98 1.1 cgd * set false. Why not just use a constant? Well, gcc likes to condense
99 1.1 cgd * identical string instances...
100 1.1 cgd */
101 1.1 cgd char varNoError[] = "";
102 1.1 cgd
103 1.1 cgd /*
104 1.1 cgd * Internally, variables are contained in four different contexts.
105 1.1 cgd * 1) the environment. They may not be changed. If an environment
106 1.1 cgd * variable is appended-to, the result is placed in the global
107 1.1 cgd * context.
108 1.1 cgd * 2) the global context. Variables set in the Makefile are located in
109 1.1 cgd * the global context. It is the penultimate context searched when
110 1.1 cgd * substituting.
111 1.1 cgd * 3) the command-line context. All variables set on the command line
112 1.1 cgd * are placed in this context. They are UNALTERABLE once placed here.
113 1.1 cgd * 4) the local context. Each target has associated with it a context
114 1.1 cgd * list. On this list are located the structures describing such
115 1.1 cgd * local variables as $(@) and $(*)
116 1.1 cgd * The four contexts are searched in the reverse order from which they are
117 1.1 cgd * listed.
118 1.1 cgd */
119 1.1 cgd GNode *VAR_GLOBAL; /* variables from the makefile */
120 1.1 cgd GNode *VAR_CMD; /* variables defined on the command-line */
121 1.1 cgd
122 1.1 cgd #define FIND_CMD 0x1 /* look in VAR_CMD when searching */
123 1.1 cgd #define FIND_GLOBAL 0x2 /* look in VAR_GLOBAL as well */
124 1.1 cgd #define FIND_ENV 0x4 /* look in the environment also */
125 1.1 cgd
126 1.1 cgd typedef struct Var {
127 1.1 cgd char *name; /* the variable's name */
128 1.1 cgd Buffer val; /* its value */
129 1.1 cgd int flags; /* miscellaneous status flags */
130 1.1 cgd #define VAR_IN_USE 1 /* Variable's value currently being used.
131 1.1 cgd * Used to avoid recursion */
132 1.1 cgd #define VAR_FROM_ENV 2 /* Variable comes from the environment */
133 1.1 cgd #define VAR_JUNK 4 /* Variable is a junk variable that
134 1.1 cgd * should be destroyed when done with
135 1.1 cgd * it. Used by Var_Parse for undefined,
136 1.1 cgd * modified variables */
137 1.1 cgd } Var;
138 1.1 cgd
139 1.1 cgd /*-
140 1.1 cgd *-----------------------------------------------------------------------
141 1.1 cgd * VarCmp --
142 1.1 cgd * See if the given variable matches the named one. Called from
143 1.1 cgd * Lst_Find when searching for a variable of a given name.
144 1.1 cgd *
145 1.1 cgd * Results:
146 1.1 cgd * 0 if they match. non-zero otherwise.
147 1.1 cgd *
148 1.1 cgd * Side Effects:
149 1.1 cgd * none
150 1.1 cgd *-----------------------------------------------------------------------
151 1.1 cgd */
152 1.1 cgd static int
153 1.1 cgd VarCmp (v, name)
154 1.1 cgd Var *v; /* VAR structure to compare */
155 1.1 cgd char *name; /* name to look for */
156 1.1 cgd {
157 1.1 cgd return (strcmp (name, v->name));
158 1.1 cgd }
159 1.1 cgd
160 1.1 cgd /*-
161 1.1 cgd *-----------------------------------------------------------------------
162 1.1 cgd * VarFind --
163 1.1 cgd * Find the given variable in the given context and any other contexts
164 1.1 cgd * indicated.
165 1.1 cgd *
166 1.1 cgd * Results:
167 1.1 cgd * A pointer to the structure describing the desired variable or
168 1.1 cgd * NIL if the variable does not exist.
169 1.1 cgd *
170 1.1 cgd * Side Effects:
171 1.1 cgd * None
172 1.1 cgd *-----------------------------------------------------------------------
173 1.1 cgd */
174 1.1 cgd static Var *
175 1.1 cgd VarFind (name, ctxt, flags)
176 1.1 cgd char *name; /* name to find */
177 1.1 cgd GNode *ctxt; /* context in which to find it */
178 1.1 cgd int flags; /* FIND_GLOBAL set means to look in the
179 1.1 cgd * VAR_GLOBAL context as well.
180 1.1 cgd * FIND_CMD set means to look in the VAR_CMD
181 1.1 cgd * context also.
182 1.1 cgd * FIND_ENV set means to look in the
183 1.1 cgd * environment */
184 1.1 cgd {
185 1.1 cgd LstNode var;
186 1.1 cgd Var *v;
187 1.1 cgd
188 1.1 cgd /*
189 1.1 cgd * If the variable name begins with a '.', it could very well be one of
190 1.1 cgd * the local ones. We check the name against all the local variables
191 1.1 cgd * and substitute the short version in for 'name' if it matches one of
192 1.1 cgd * them.
193 1.1 cgd */
194 1.1 cgd if (*name == '.' && isupper(name[1]))
195 1.1 cgd switch (name[1]) {
196 1.1 cgd case 'A':
197 1.1 cgd if (!strcmp(name, ".ALLSRC"))
198 1.1 cgd name = ALLSRC;
199 1.1 cgd if (!strcmp(name, ".ARCHIVE"))
200 1.1 cgd name = ARCHIVE;
201 1.1 cgd break;
202 1.1 cgd case 'I':
203 1.1 cgd if (!strcmp(name, ".IMPSRC"))
204 1.1 cgd name = IMPSRC;
205 1.1 cgd break;
206 1.1 cgd case 'M':
207 1.1 cgd if (!strcmp(name, ".MEMBER"))
208 1.1 cgd name = MEMBER;
209 1.1 cgd break;
210 1.1 cgd case 'O':
211 1.1 cgd if (!strcmp(name, ".OODATE"))
212 1.1 cgd name = OODATE;
213 1.1 cgd break;
214 1.1 cgd case 'P':
215 1.1 cgd if (!strcmp(name, ".PREFIX"))
216 1.1 cgd name = PREFIX;
217 1.1 cgd break;
218 1.1 cgd case 'T':
219 1.1 cgd if (!strcmp(name, ".TARGET"))
220 1.1 cgd name = TARGET;
221 1.1 cgd break;
222 1.1 cgd }
223 1.1 cgd /*
224 1.1 cgd * First look for the variable in the given context. If it's not there,
225 1.1 cgd * look for it in VAR_CMD, VAR_GLOBAL and the environment, in that order,
226 1.1 cgd * depending on the FIND_* flags in 'flags'
227 1.1 cgd */
228 1.1 cgd var = Lst_Find (ctxt->context, (ClientData)name, VarCmp);
229 1.1 cgd
230 1.1 cgd if ((var == NILLNODE) && (flags & FIND_CMD) && (ctxt != VAR_CMD)) {
231 1.1 cgd var = Lst_Find (VAR_CMD->context, (ClientData)name, VarCmp);
232 1.1 cgd }
233 1.1 cgd if (!checkEnvFirst && (var == NILLNODE) && (flags & FIND_GLOBAL) &&
234 1.1 cgd (ctxt != VAR_GLOBAL))
235 1.1 cgd {
236 1.1 cgd var = Lst_Find (VAR_GLOBAL->context, (ClientData)name, VarCmp);
237 1.1 cgd }
238 1.1 cgd if ((var == NILLNODE) && (flags & FIND_ENV)) {
239 1.1 cgd char *env;
240 1.1 cgd
241 1.1 cgd if ((env = getenv (name)) != NULL) {
242 1.1 cgd /*
243 1.1 cgd * If the variable is found in the environment, we only duplicate
244 1.1 cgd * its value (since eVarVal was allocated on the stack). The name
245 1.1 cgd * doesn't need duplication since it's always in the environment
246 1.1 cgd */
247 1.1 cgd int len;
248 1.1 cgd
249 1.1 cgd v = (Var *) emalloc(sizeof(Var));
250 1.1 cgd v->name = name;
251 1.1 cgd
252 1.1 cgd len = strlen(env);
253 1.1 cgd
254 1.1 cgd v->val = Buf_Init(len);
255 1.1 cgd Buf_AddBytes(v->val, len, (Byte *)env);
256 1.1 cgd
257 1.1 cgd v->flags = VAR_FROM_ENV;
258 1.1 cgd return (v);
259 1.1 cgd } else if (checkEnvFirst && (flags & FIND_GLOBAL) &&
260 1.1 cgd (ctxt != VAR_GLOBAL))
261 1.1 cgd {
262 1.1 cgd var = Lst_Find (VAR_GLOBAL->context, (ClientData)name, VarCmp);
263 1.1 cgd if (var == NILLNODE) {
264 1.1 cgd return ((Var *) NIL);
265 1.1 cgd } else {
266 1.1 cgd return ((Var *)Lst_Datum(var));
267 1.1 cgd }
268 1.1 cgd } else {
269 1.1 cgd return((Var *)NIL);
270 1.1 cgd }
271 1.1 cgd } else if (var == NILLNODE) {
272 1.1 cgd return ((Var *) NIL);
273 1.1 cgd } else {
274 1.1 cgd return ((Var *) Lst_Datum (var));
275 1.1 cgd }
276 1.1 cgd }
277 1.1 cgd
278 1.1 cgd /*-
279 1.1 cgd *-----------------------------------------------------------------------
280 1.1 cgd * VarAdd --
281 1.1 cgd * Add a new variable of name name and value val to the given context
282 1.1 cgd *
283 1.1 cgd * Results:
284 1.1 cgd * None
285 1.1 cgd *
286 1.1 cgd * Side Effects:
287 1.1 cgd * The new variable is placed at the front of the given context
288 1.1 cgd * The name and val arguments are duplicated so they may
289 1.1 cgd * safely be freed.
290 1.1 cgd *-----------------------------------------------------------------------
291 1.1 cgd */
292 1.1 cgd static
293 1.1 cgd VarAdd (name, val, ctxt)
294 1.1 cgd char *name; /* name of variable to add */
295 1.1 cgd char *val; /* value to set it to */
296 1.1 cgd GNode *ctxt; /* context in which to set it */
297 1.1 cgd {
298 1.1 cgd register Var *v;
299 1.1 cgd int len;
300 1.1 cgd
301 1.1 cgd v = (Var *) emalloc (sizeof (Var));
302 1.1 cgd
303 1.1 cgd v->name = strdup (name);
304 1.1 cgd
305 1.1 cgd len = strlen(val);
306 1.1 cgd v->val = Buf_Init(len+1);
307 1.1 cgd Buf_AddBytes(v->val, len, (Byte *)val);
308 1.1 cgd
309 1.1 cgd v->flags = 0;
310 1.1 cgd
311 1.1 cgd (void) Lst_AtFront (ctxt->context, (ClientData)v);
312 1.1 cgd if (DEBUG(VAR)) {
313 1.1 cgd printf("%s:%s = %s\n", ctxt->name, name, val);
314 1.1 cgd }
315 1.1 cgd }
316 1.1 cgd
317 1.1 cgd /*-
318 1.1 cgd *-----------------------------------------------------------------------
319 1.1 cgd * Var_Delete --
320 1.1 cgd * Remove a variable from a context.
321 1.1 cgd *
322 1.1 cgd * Results:
323 1.1 cgd * None.
324 1.1 cgd *
325 1.1 cgd * Side Effects:
326 1.1 cgd * The Var structure is removed and freed.
327 1.1 cgd *
328 1.1 cgd *-----------------------------------------------------------------------
329 1.1 cgd */
330 1.1 cgd void
331 1.1 cgd Var_Delete(name, ctxt)
332 1.1 cgd char *name;
333 1.1 cgd GNode *ctxt;
334 1.1 cgd {
335 1.1 cgd LstNode ln;
336 1.1 cgd
337 1.1 cgd if (DEBUG(VAR)) {
338 1.1 cgd printf("%s:delete %s\n", ctxt->name, name);
339 1.1 cgd }
340 1.1 cgd ln = Lst_Find(ctxt->context, (ClientData)name, VarCmp);
341 1.1 cgd if (ln != NILLNODE) {
342 1.1 cgd register Var *v;
343 1.1 cgd
344 1.1 cgd v = (Var *)Lst_Datum(ln);
345 1.1 cgd Lst_Remove(ctxt->context, ln);
346 1.1 cgd Buf_Destroy(v->val, TRUE);
347 1.1 cgd free(v->name);
348 1.1 cgd free((char *)v);
349 1.1 cgd }
350 1.1 cgd }
351 1.1 cgd
352 1.1 cgd /*-
353 1.1 cgd *-----------------------------------------------------------------------
354 1.1 cgd * Var_Set --
355 1.1 cgd * Set the variable name to the value val in the given context.
356 1.1 cgd *
357 1.1 cgd * Results:
358 1.1 cgd * None.
359 1.1 cgd *
360 1.1 cgd * Side Effects:
361 1.1 cgd * If the variable doesn't yet exist, a new record is created for it.
362 1.1 cgd * Else the old value is freed and the new one stuck in its place
363 1.1 cgd *
364 1.1 cgd * Notes:
365 1.1 cgd * The variable is searched for only in its context before being
366 1.1 cgd * created in that context. I.e. if the context is VAR_GLOBAL,
367 1.1 cgd * only VAR_GLOBAL->context is searched. Likewise if it is VAR_CMD, only
368 1.1 cgd * VAR_CMD->context is searched. This is done to avoid the literally
369 1.1 cgd * thousands of unnecessary strcmp's that used to be done to
370 1.1 cgd * set, say, $(@) or $(<).
371 1.1 cgd *-----------------------------------------------------------------------
372 1.1 cgd */
373 1.1 cgd void
374 1.1 cgd Var_Set (name, val, ctxt)
375 1.1 cgd char *name; /* name of variable to set */
376 1.1 cgd char *val; /* value to give to the variable */
377 1.1 cgd GNode *ctxt; /* context in which to set it */
378 1.1 cgd {
379 1.1 cgd register Var *v;
380 1.1 cgd
381 1.1 cgd /*
382 1.1 cgd * We only look for a variable in the given context since anything set
383 1.1 cgd * here will override anything in a lower context, so there's not much
384 1.1 cgd * point in searching them all just to save a bit of memory...
385 1.1 cgd */
386 1.1 cgd v = VarFind (name, ctxt, 0);
387 1.1 cgd if (v == (Var *) NIL) {
388 1.1 cgd VarAdd (name, val, ctxt);
389 1.1 cgd } else {
390 1.1 cgd Buf_Discard(v->val, Buf_Size(v->val));
391 1.1 cgd Buf_AddBytes(v->val, strlen(val), (Byte *)val);
392 1.1 cgd
393 1.1 cgd if (DEBUG(VAR)) {
394 1.1 cgd printf("%s:%s = %s\n", ctxt->name, name, val);
395 1.1 cgd }
396 1.1 cgd }
397 1.1 cgd /*
398 1.1 cgd * Any variables given on the command line are automatically exported
399 1.1 cgd * to the environment (as per POSIX standard)
400 1.1 cgd */
401 1.1 cgd if (ctxt == VAR_CMD) {
402 1.1 cgd setenv(name, val);
403 1.1 cgd }
404 1.1 cgd }
405 1.1 cgd
406 1.1 cgd /*-
407 1.1 cgd *-----------------------------------------------------------------------
408 1.1 cgd * Var_Append --
409 1.1 cgd * The variable of the given name has the given value appended to it in
410 1.1 cgd * the given context.
411 1.1 cgd *
412 1.1 cgd * Results:
413 1.1 cgd * None
414 1.1 cgd *
415 1.1 cgd * Side Effects:
416 1.1 cgd * If the variable doesn't exist, it is created. Else the strings
417 1.1 cgd * are concatenated (with a space in between).
418 1.1 cgd *
419 1.1 cgd * Notes:
420 1.1 cgd * Only if the variable is being sought in the global context is the
421 1.1 cgd * environment searched.
422 1.1 cgd * XXX: Knows its calling circumstances in that if called with ctxt
423 1.1 cgd * an actual target, it will only search that context since only
424 1.1 cgd * a local variable could be being appended to. This is actually
425 1.1 cgd * a big win and must be tolerated.
426 1.1 cgd *-----------------------------------------------------------------------
427 1.1 cgd */
428 1.1 cgd void
429 1.1 cgd Var_Append (name, val, ctxt)
430 1.1 cgd char *name; /* Name of variable to modify */
431 1.1 cgd char *val; /* String to append to it */
432 1.1 cgd GNode *ctxt; /* Context in which this should occur */
433 1.1 cgd {
434 1.1 cgd register Var *v;
435 1.1 cgd register char *cp;
436 1.1 cgd
437 1.1 cgd v = VarFind (name, ctxt, (ctxt == VAR_GLOBAL) ? FIND_ENV : 0);
438 1.1 cgd
439 1.1 cgd if (v == (Var *) NIL) {
440 1.1 cgd VarAdd (name, val, ctxt);
441 1.1 cgd } else {
442 1.1 cgd Buf_AddByte(v->val, (Byte)' ');
443 1.1 cgd Buf_AddBytes(v->val, strlen(val), (Byte *)val);
444 1.1 cgd
445 1.1 cgd if (DEBUG(VAR)) {
446 1.1 cgd printf("%s:%s = %s\n", ctxt->name, name,
447 1.1 cgd Buf_GetAll(v->val, (int *)NULL));
448 1.1 cgd }
449 1.1 cgd
450 1.1 cgd if (v->flags & VAR_FROM_ENV) {
451 1.1 cgd /*
452 1.1 cgd * If the original variable came from the environment, we
453 1.1 cgd * have to install it in the global context (we could place
454 1.1 cgd * it in the environment, but then we should provide a way to
455 1.1 cgd * export other variables...)
456 1.1 cgd */
457 1.1 cgd v->flags &= ~VAR_FROM_ENV;
458 1.1 cgd Lst_AtFront(ctxt->context, (ClientData)v);
459 1.1 cgd }
460 1.1 cgd }
461 1.1 cgd }
462 1.1 cgd
463 1.1 cgd /*-
464 1.1 cgd *-----------------------------------------------------------------------
465 1.1 cgd * Var_Exists --
466 1.1 cgd * See if the given variable exists.
467 1.1 cgd *
468 1.1 cgd * Results:
469 1.1 cgd * TRUE if it does, FALSE if it doesn't
470 1.1 cgd *
471 1.1 cgd * Side Effects:
472 1.1 cgd * None.
473 1.1 cgd *
474 1.1 cgd *-----------------------------------------------------------------------
475 1.1 cgd */
476 1.1 cgd Boolean
477 1.1 cgd Var_Exists(name, ctxt)
478 1.1 cgd char *name; /* Variable to find */
479 1.1 cgd GNode *ctxt; /* Context in which to start search */
480 1.1 cgd {
481 1.1 cgd Var *v;
482 1.1 cgd
483 1.1 cgd v = VarFind(name, ctxt, FIND_CMD|FIND_GLOBAL|FIND_ENV);
484 1.1 cgd
485 1.1 cgd if (v == (Var *)NIL) {
486 1.1 cgd return(FALSE);
487 1.1 cgd } else if (v->flags & VAR_FROM_ENV) {
488 1.1 cgd Buf_Destroy(v->val, TRUE);
489 1.1 cgd free((char *)v);
490 1.1 cgd }
491 1.1 cgd return(TRUE);
492 1.1 cgd }
493 1.1 cgd
494 1.1 cgd /*-
495 1.1 cgd *-----------------------------------------------------------------------
496 1.1 cgd * Var_Value --
497 1.1 cgd * Return the value of the named variable in the given context
498 1.1 cgd *
499 1.1 cgd * Results:
500 1.1 cgd * The value if the variable exists, NULL if it doesn't
501 1.1 cgd *
502 1.1 cgd * Side Effects:
503 1.1 cgd * None
504 1.1 cgd *-----------------------------------------------------------------------
505 1.1 cgd */
506 1.1 cgd char *
507 1.1 cgd Var_Value (name, ctxt)
508 1.1 cgd char *name; /* name to find */
509 1.1 cgd GNode *ctxt; /* context in which to search for it */
510 1.1 cgd {
511 1.1 cgd Var *v;
512 1.1 cgd
513 1.1 cgd v = VarFind (name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
514 1.1 cgd if (v != (Var *) NIL) {
515 1.1 cgd return ((char *)Buf_GetAll(v->val, (int *)NULL));
516 1.1 cgd } else {
517 1.1 cgd return ((char *) NULL);
518 1.1 cgd }
519 1.1 cgd }
520 1.1 cgd
521 1.1 cgd /*-
522 1.1 cgd *-----------------------------------------------------------------------
523 1.1 cgd * VarHead --
524 1.1 cgd * Remove the tail of the given word and place the result in the given
525 1.1 cgd * buffer.
526 1.1 cgd *
527 1.1 cgd * Results:
528 1.1 cgd * TRUE if characters were added to the buffer (a space needs to be
529 1.1 cgd * added to the buffer before the next word).
530 1.1 cgd *
531 1.1 cgd * Side Effects:
532 1.1 cgd * The trimmed word is added to the buffer.
533 1.1 cgd *
534 1.1 cgd *-----------------------------------------------------------------------
535 1.1 cgd */
536 1.1 cgd static Boolean
537 1.1 cgd VarHead (word, addSpace, buf)
538 1.1 cgd char *word; /* Word to trim */
539 1.1 cgd Boolean addSpace; /* True if need to add a space to the buffer
540 1.1 cgd * before sticking in the head */
541 1.1 cgd Buffer buf; /* Buffer in which to store it */
542 1.1 cgd {
543 1.1 cgd register char *slash;
544 1.1 cgd
545 1.1 cgd slash = rindex (word, '/');
546 1.1 cgd if (slash != (char *)NULL) {
547 1.1 cgd if (addSpace) {
548 1.1 cgd Buf_AddByte (buf, (Byte)' ');
549 1.1 cgd }
550 1.1 cgd *slash = '\0';
551 1.1 cgd Buf_AddBytes (buf, strlen (word), (Byte *)word);
552 1.1 cgd *slash = '/';
553 1.1 cgd return (TRUE);
554 1.1 cgd } else {
555 1.1 cgd /*
556 1.1 cgd * If no directory part, give . (q.v. the POSIX standard)
557 1.1 cgd */
558 1.1 cgd if (addSpace) {
559 1.1 cgd Buf_AddBytes(buf, 2, (Byte *)" .");
560 1.1 cgd } else {
561 1.1 cgd Buf_AddByte(buf, (Byte)'.');
562 1.1 cgd }
563 1.1 cgd return(TRUE);
564 1.1 cgd }
565 1.1 cgd }
566 1.1 cgd
567 1.1 cgd /*-
568 1.1 cgd *-----------------------------------------------------------------------
569 1.1 cgd * VarTail --
570 1.1 cgd * Remove the head of the given word and place the result in the given
571 1.1 cgd * buffer.
572 1.1 cgd *
573 1.1 cgd * Results:
574 1.1 cgd * TRUE if characters were added to the buffer (a space needs to be
575 1.1 cgd * added to the buffer before the next word).
576 1.1 cgd *
577 1.1 cgd * Side Effects:
578 1.1 cgd * The trimmed word is added to the buffer.
579 1.1 cgd *
580 1.1 cgd *-----------------------------------------------------------------------
581 1.1 cgd */
582 1.1 cgd static Boolean
583 1.1 cgd VarTail (word, addSpace, buf)
584 1.1 cgd char *word; /* Word to trim */
585 1.1 cgd Boolean addSpace; /* TRUE if need to stick a space in the
586 1.1 cgd * buffer before adding the tail */
587 1.1 cgd Buffer buf; /* Buffer in which to store it */
588 1.1 cgd {
589 1.1 cgd register char *slash;
590 1.1 cgd
591 1.1 cgd if (addSpace) {
592 1.1 cgd Buf_AddByte (buf, (Byte)' ');
593 1.1 cgd }
594 1.1 cgd
595 1.1 cgd slash = rindex (word, '/');
596 1.1 cgd if (slash != (char *)NULL) {
597 1.1 cgd *slash++ = '\0';
598 1.1 cgd Buf_AddBytes (buf, strlen(slash), (Byte *)slash);
599 1.1 cgd slash[-1] = '/';
600 1.1 cgd } else {
601 1.1 cgd Buf_AddBytes (buf, strlen(word), (Byte *)word);
602 1.1 cgd }
603 1.1 cgd return (TRUE);
604 1.1 cgd }
605 1.1 cgd
606 1.1 cgd /*-
607 1.1 cgd *-----------------------------------------------------------------------
608 1.1 cgd * VarSuffix --
609 1.1 cgd * Place the suffix of the given word in the given buffer.
610 1.1 cgd *
611 1.1 cgd * Results:
612 1.1 cgd * TRUE if characters were added to the buffer (a space needs to be
613 1.1 cgd * added to the buffer before the next word).
614 1.1 cgd *
615 1.1 cgd * Side Effects:
616 1.1 cgd * The suffix from the word is placed in the buffer.
617 1.1 cgd *
618 1.1 cgd *-----------------------------------------------------------------------
619 1.1 cgd */
620 1.1 cgd static Boolean
621 1.1 cgd VarSuffix (word, addSpace, buf)
622 1.1 cgd char *word; /* Word to trim */
623 1.1 cgd Boolean addSpace; /* TRUE if need to add a space before placing
624 1.1 cgd * the suffix in the buffer */
625 1.1 cgd Buffer buf; /* Buffer in which to store it */
626 1.1 cgd {
627 1.1 cgd register char *dot;
628 1.1 cgd
629 1.1 cgd dot = rindex (word, '.');
630 1.1 cgd if (dot != (char *)NULL) {
631 1.1 cgd if (addSpace) {
632 1.1 cgd Buf_AddByte (buf, (Byte)' ');
633 1.1 cgd }
634 1.1 cgd *dot++ = '\0';
635 1.1 cgd Buf_AddBytes (buf, strlen (dot), (Byte *)dot);
636 1.1 cgd dot[-1] = '.';
637 1.1 cgd return (TRUE);
638 1.1 cgd } else {
639 1.1 cgd return (addSpace);
640 1.1 cgd }
641 1.1 cgd }
642 1.1 cgd
643 1.1 cgd /*-
644 1.1 cgd *-----------------------------------------------------------------------
645 1.1 cgd * VarRoot --
646 1.1 cgd * Remove the suffix of the given word and place the result in the
647 1.1 cgd * buffer.
648 1.1 cgd *
649 1.1 cgd * Results:
650 1.1 cgd * TRUE if characters were added to the buffer (a space needs to be
651 1.1 cgd * added to the buffer before the next word).
652 1.1 cgd *
653 1.1 cgd * Side Effects:
654 1.1 cgd * The trimmed word is added to the buffer.
655 1.1 cgd *
656 1.1 cgd *-----------------------------------------------------------------------
657 1.1 cgd */
658 1.1 cgd static Boolean
659 1.1 cgd VarRoot (word, addSpace, buf)
660 1.1 cgd char *word; /* Word to trim */
661 1.1 cgd Boolean addSpace; /* TRUE if need to add a space to the buffer
662 1.1 cgd * before placing the root in it */
663 1.1 cgd Buffer buf; /* Buffer in which to store it */
664 1.1 cgd {
665 1.1 cgd register char *dot;
666 1.1 cgd
667 1.1 cgd if (addSpace) {
668 1.1 cgd Buf_AddByte (buf, (Byte)' ');
669 1.1 cgd }
670 1.1 cgd
671 1.1 cgd dot = rindex (word, '.');
672 1.1 cgd if (dot != (char *)NULL) {
673 1.1 cgd *dot = '\0';
674 1.1 cgd Buf_AddBytes (buf, strlen (word), (Byte *)word);
675 1.1 cgd *dot = '.';
676 1.1 cgd } else {
677 1.1 cgd Buf_AddBytes (buf, strlen(word), (Byte *)word);
678 1.1 cgd }
679 1.1 cgd return (TRUE);
680 1.1 cgd }
681 1.1 cgd
682 1.1 cgd /*-
683 1.1 cgd *-----------------------------------------------------------------------
684 1.1 cgd * VarMatch --
685 1.1 cgd * Place the word in the buffer if it matches the given pattern.
686 1.1 cgd * Callback function for VarModify to implement the :M modifier.
687 1.1 cgd *
688 1.1 cgd * Results:
689 1.1 cgd * TRUE if a space should be placed in the buffer before the next
690 1.1 cgd * word.
691 1.1 cgd *
692 1.1 cgd * Side Effects:
693 1.1 cgd * The word may be copied to the buffer.
694 1.1 cgd *
695 1.1 cgd *-----------------------------------------------------------------------
696 1.1 cgd */
697 1.1 cgd static Boolean
698 1.1 cgd VarMatch (word, addSpace, buf, pattern)
699 1.1 cgd char *word; /* Word to examine */
700 1.1 cgd Boolean addSpace; /* TRUE if need to add a space to the
701 1.1 cgd * buffer before adding the word, if it
702 1.1 cgd * matches */
703 1.1 cgd Buffer buf; /* Buffer in which to store it */
704 1.1 cgd char *pattern; /* Pattern the word must match */
705 1.1 cgd {
706 1.1 cgd if (Str_Match(word, pattern)) {
707 1.1 cgd if (addSpace) {
708 1.1 cgd Buf_AddByte(buf, (Byte)' ');
709 1.1 cgd }
710 1.1 cgd addSpace = TRUE;
711 1.1 cgd Buf_AddBytes(buf, strlen(word), (Byte *)word);
712 1.1 cgd }
713 1.1 cgd return(addSpace);
714 1.1 cgd }
715 1.1 cgd
716 1.1 cgd /*-
717 1.1 cgd *-----------------------------------------------------------------------
718 1.1 cgd * VarNoMatch --
719 1.1 cgd * Place the word in the buffer if it doesn't match the given pattern.
720 1.1 cgd * Callback function for VarModify to implement the :N modifier.
721 1.1 cgd *
722 1.1 cgd * Results:
723 1.1 cgd * TRUE if a space should be placed in the buffer before the next
724 1.1 cgd * word.
725 1.1 cgd *
726 1.1 cgd * Side Effects:
727 1.1 cgd * The word may be copied to the buffer.
728 1.1 cgd *
729 1.1 cgd *-----------------------------------------------------------------------
730 1.1 cgd */
731 1.1 cgd static Boolean
732 1.1 cgd VarNoMatch (word, addSpace, buf, pattern)
733 1.1 cgd char *word; /* Word to examine */
734 1.1 cgd Boolean addSpace; /* TRUE if need to add a space to the
735 1.1 cgd * buffer before adding the word, if it
736 1.1 cgd * matches */
737 1.1 cgd Buffer buf; /* Buffer in which to store it */
738 1.1 cgd char *pattern; /* Pattern the word must match */
739 1.1 cgd {
740 1.1 cgd if (!Str_Match(word, pattern)) {
741 1.1 cgd if (addSpace) {
742 1.1 cgd Buf_AddByte(buf, (Byte)' ');
743 1.1 cgd }
744 1.1 cgd addSpace = TRUE;
745 1.1 cgd Buf_AddBytes(buf, strlen(word), (Byte *)word);
746 1.1 cgd }
747 1.1 cgd return(addSpace);
748 1.1 cgd }
749 1.1 cgd
750 1.1 cgd typedef struct {
751 1.1 cgd char *lhs; /* String to match */
752 1.1 cgd int leftLen; /* Length of string */
753 1.1 cgd char *rhs; /* Replacement string (w/ &'s removed) */
754 1.1 cgd int rightLen; /* Length of replacement */
755 1.1 cgd int flags;
756 1.1 cgd #define VAR_SUB_GLOBAL 1 /* Apply substitution globally */
757 1.1 cgd #define VAR_MATCH_START 2 /* Match at start of word */
758 1.1 cgd #define VAR_MATCH_END 4 /* Match at end of word */
759 1.1 cgd #define VAR_NO_SUB 8 /* Substitution is non-global and already done */
760 1.1 cgd } VarPattern;
761 1.1 cgd
762 1.1 cgd /*-
763 1.1 cgd *-----------------------------------------------------------------------
764 1.1 cgd * VarSubstitute --
765 1.1 cgd * Perform a string-substitution on the given word, placing the
766 1.1 cgd * result in the passed buffer.
767 1.1 cgd *
768 1.1 cgd * Results:
769 1.1 cgd * TRUE if a space is needed before more characters are added.
770 1.1 cgd *
771 1.1 cgd * Side Effects:
772 1.1 cgd * None.
773 1.1 cgd *
774 1.1 cgd *-----------------------------------------------------------------------
775 1.1 cgd */
776 1.1 cgd static Boolean
777 1.1 cgd VarSubstitute (word, addSpace, buf, pattern)
778 1.1 cgd char *word; /* Word to modify */
779 1.1 cgd Boolean addSpace; /* True if space should be added before
780 1.1 cgd * other characters */
781 1.1 cgd Buffer buf; /* Buffer for result */
782 1.1 cgd register VarPattern *pattern; /* Pattern for substitution */
783 1.1 cgd {
784 1.1 cgd register int wordLen; /* Length of word */
785 1.1 cgd register char *cp; /* General pointer */
786 1.1 cgd
787 1.1 cgd wordLen = strlen(word);
788 1.1 cgd if ((pattern->flags & VAR_NO_SUB) == 0) {
789 1.1 cgd /*
790 1.1 cgd * Still substituting -- break it down into simple anchored cases
791 1.1 cgd * and if none of them fits, perform the general substitution case.
792 1.1 cgd */
793 1.1 cgd if ((pattern->flags & VAR_MATCH_START) &&
794 1.1 cgd (strncmp(word, pattern->lhs, pattern->leftLen) == 0)) {
795 1.1 cgd /*
796 1.1 cgd * Anchored at start and beginning of word matches pattern
797 1.1 cgd */
798 1.1 cgd if ((pattern->flags & VAR_MATCH_END) &&
799 1.1 cgd (wordLen == pattern->leftLen)) {
800 1.1 cgd /*
801 1.1 cgd * Also anchored at end and matches to the end (word
802 1.1 cgd * is same length as pattern) add space and rhs only
803 1.1 cgd * if rhs is non-null.
804 1.1 cgd */
805 1.1 cgd if (pattern->rightLen != 0) {
806 1.1 cgd if (addSpace) {
807 1.1 cgd Buf_AddByte(buf, (Byte)' ');
808 1.1 cgd }
809 1.1 cgd addSpace = TRUE;
810 1.1 cgd Buf_AddBytes(buf, pattern->rightLen,
811 1.1 cgd (Byte *)pattern->rhs);
812 1.1 cgd }
813 1.1 cgd } else if (pattern->flags & VAR_MATCH_END) {
814 1.1 cgd /*
815 1.1 cgd * Doesn't match to end -- copy word wholesale
816 1.1 cgd */
817 1.1 cgd goto nosub;
818 1.1 cgd } else {
819 1.1 cgd /*
820 1.1 cgd * Matches at start but need to copy in trailing characters
821 1.1 cgd */
822 1.1 cgd if ((pattern->rightLen + wordLen - pattern->leftLen) != 0){
823 1.1 cgd if (addSpace) {
824 1.1 cgd Buf_AddByte(buf, (Byte)' ');
825 1.1 cgd }
826 1.1 cgd addSpace = TRUE;
827 1.1 cgd }
828 1.1 cgd Buf_AddBytes(buf, pattern->rightLen, (Byte *)pattern->rhs);
829 1.1 cgd Buf_AddBytes(buf, wordLen - pattern->leftLen,
830 1.1 cgd (Byte *)(word + pattern->leftLen));
831 1.1 cgd }
832 1.1 cgd } else if (pattern->flags & VAR_MATCH_START) {
833 1.1 cgd /*
834 1.1 cgd * Had to match at start of word and didn't -- copy whole word.
835 1.1 cgd */
836 1.1 cgd goto nosub;
837 1.1 cgd } else if (pattern->flags & VAR_MATCH_END) {
838 1.1 cgd /*
839 1.1 cgd * Anchored at end, Find only place match could occur (leftLen
840 1.1 cgd * characters from the end of the word) and see if it does. Note
841 1.1 cgd * that because the $ will be left at the end of the lhs, we have
842 1.1 cgd * to use strncmp.
843 1.1 cgd */
844 1.1 cgd cp = word + (wordLen - pattern->leftLen);
845 1.1 cgd if ((cp >= word) &&
846 1.1 cgd (strncmp(cp, pattern->lhs, pattern->leftLen) == 0)) {
847 1.1 cgd /*
848 1.1 cgd * Match found. If we will place characters in the buffer,
849 1.1 cgd * add a space before hand as indicated by addSpace, then
850 1.1 cgd * stuff in the initial, unmatched part of the word followed
851 1.1 cgd * by the right-hand-side.
852 1.1 cgd */
853 1.1 cgd if (((cp - word) + pattern->rightLen) != 0) {
854 1.1 cgd if (addSpace) {
855 1.1 cgd Buf_AddByte(buf, (Byte)' ');
856 1.1 cgd }
857 1.1 cgd addSpace = TRUE;
858 1.1 cgd }
859 1.1 cgd Buf_AddBytes(buf, cp - word, (Byte *)word);
860 1.1 cgd Buf_AddBytes(buf, pattern->rightLen, (Byte *)pattern->rhs);
861 1.1 cgd } else {
862 1.1 cgd /*
863 1.1 cgd * Had to match at end and didn't. Copy entire word.
864 1.1 cgd */
865 1.1 cgd goto nosub;
866 1.1 cgd }
867 1.1 cgd } else {
868 1.1 cgd /*
869 1.1 cgd * Pattern is unanchored: search for the pattern in the word using
870 1.1 cgd * String_FindSubstring, copying unmatched portions and the
871 1.1 cgd * right-hand-side for each match found, handling non-global
872 1.1 cgd * subsititutions correctly, etc. When the loop is done, any
873 1.1 cgd * remaining part of the word (word and wordLen are adjusted
874 1.1 cgd * accordingly through the loop) is copied straight into the
875 1.1 cgd * buffer.
876 1.1 cgd * addSpace is set FALSE as soon as a space is added to the
877 1.1 cgd * buffer.
878 1.1 cgd */
879 1.1 cgd register Boolean done;
880 1.1 cgd int origSize;
881 1.1 cgd
882 1.1 cgd done = FALSE;
883 1.1 cgd origSize = Buf_Size(buf);
884 1.1 cgd while (!done) {
885 1.1 cgd cp = Str_FindSubstring(word, pattern->lhs);
886 1.1 cgd if (cp != (char *)NULL) {
887 1.1 cgd if (addSpace && (((cp - word) + pattern->rightLen) != 0)){
888 1.1 cgd Buf_AddByte(buf, (Byte)' ');
889 1.1 cgd addSpace = FALSE;
890 1.1 cgd }
891 1.1 cgd Buf_AddBytes(buf, cp-word, (Byte *)word);
892 1.1 cgd Buf_AddBytes(buf, pattern->rightLen, (Byte *)pattern->rhs);
893 1.1 cgd wordLen -= (cp - word) + pattern->leftLen;
894 1.1 cgd word = cp + pattern->leftLen;
895 1.1 cgd if (wordLen == 0) {
896 1.1 cgd done = TRUE;
897 1.1 cgd }
898 1.1 cgd if ((pattern->flags & VAR_SUB_GLOBAL) == 0) {
899 1.1 cgd done = TRUE;
900 1.1 cgd pattern->flags |= VAR_NO_SUB;
901 1.1 cgd }
902 1.1 cgd } else {
903 1.1 cgd done = TRUE;
904 1.1 cgd }
905 1.1 cgd }
906 1.1 cgd if (wordLen != 0) {
907 1.1 cgd if (addSpace) {
908 1.1 cgd Buf_AddByte(buf, (Byte)' ');
909 1.1 cgd }
910 1.1 cgd Buf_AddBytes(buf, wordLen, (Byte *)word);
911 1.1 cgd }
912 1.1 cgd /*
913 1.1 cgd * If added characters to the buffer, need to add a space
914 1.1 cgd * before we add any more. If we didn't add any, just return
915 1.1 cgd * the previous value of addSpace.
916 1.1 cgd */
917 1.1 cgd return ((Buf_Size(buf) != origSize) || addSpace);
918 1.1 cgd }
919 1.1 cgd /*
920 1.1 cgd * Common code for anchored substitutions: if performed a substitution
921 1.1 cgd * and it's not supposed to be global, mark the pattern as requiring
922 1.1 cgd * no more substitutions. addSpace was set TRUE if characters were
923 1.1 cgd * added to the buffer.
924 1.1 cgd */
925 1.1 cgd if ((pattern->flags & VAR_SUB_GLOBAL) == 0) {
926 1.1 cgd pattern->flags |= VAR_NO_SUB;
927 1.1 cgd }
928 1.1 cgd return (addSpace);
929 1.1 cgd }
930 1.1 cgd nosub:
931 1.1 cgd if (addSpace) {
932 1.1 cgd Buf_AddByte(buf, (Byte)' ');
933 1.1 cgd }
934 1.1 cgd Buf_AddBytes(buf, wordLen, (Byte *)word);
935 1.1 cgd return(TRUE);
936 1.1 cgd }
937 1.1 cgd
938 1.1 cgd /*-
939 1.1 cgd *-----------------------------------------------------------------------
940 1.1 cgd * VarModify --
941 1.1 cgd * Modify each of the words of the passed string using the given
942 1.1 cgd * function. Used to implement all modifiers.
943 1.1 cgd *
944 1.1 cgd * Results:
945 1.1 cgd * A string of all the words modified appropriately.
946 1.1 cgd *
947 1.1 cgd * Side Effects:
948 1.1 cgd * None.
949 1.1 cgd *
950 1.1 cgd *-----------------------------------------------------------------------
951 1.1 cgd */
952 1.1 cgd static char *
953 1.1 cgd VarModify (str, modProc, datum)
954 1.1 cgd char *str; /* String whose words should be trimmed */
955 1.1 cgd Boolean (*modProc)(); /* Function to use to modify them */
956 1.1 cgd ClientData datum; /* Datum to pass it */
957 1.1 cgd {
958 1.1 cgd Buffer buf; /* Buffer for the new string */
959 1.1 cgd register char *cp; /* Pointer to end of current word */
960 1.1 cgd char endc; /* Character that ended the word */
961 1.1 cgd Boolean addSpace; /* TRUE if need to add a space to the
962 1.1 cgd * buffer before adding the trimmed
963 1.1 cgd * word */
964 1.1 cgd
965 1.1 cgd buf = Buf_Init (0);
966 1.1 cgd cp = str;
967 1.1 cgd addSpace = FALSE;
968 1.1 cgd
969 1.1 cgd while (1) {
970 1.1 cgd /*
971 1.1 cgd * Skip to next word and place cp at its end.
972 1.1 cgd */
973 1.1 cgd while (isspace (*str)) {
974 1.1 cgd str++;
975 1.1 cgd }
976 1.1 cgd for (cp = str; *cp != '\0' && !isspace (*cp); cp++) {
977 1.1 cgd /* void */ ;
978 1.1 cgd }
979 1.1 cgd if (cp == str) {
980 1.1 cgd /*
981 1.1 cgd * If we didn't go anywhere, we must be done!
982 1.1 cgd */
983 1.1 cgd Buf_AddByte (buf, '\0');
984 1.1 cgd str = (char *)Buf_GetAll (buf, (int *)NULL);
985 1.1 cgd Buf_Destroy (buf, FALSE);
986 1.1 cgd return (str);
987 1.1 cgd }
988 1.1 cgd /*
989 1.1 cgd * Nuke terminating character, but save it in endc b/c if str was
990 1.1 cgd * some variable's value, it would not be good to screw it
991 1.1 cgd * over...
992 1.1 cgd */
993 1.1 cgd endc = *cp;
994 1.1 cgd *cp = '\0';
995 1.1 cgd
996 1.1 cgd addSpace = (* modProc) (str, addSpace, buf, datum);
997 1.1 cgd
998 1.1 cgd if (endc) {
999 1.1 cgd *cp++ = endc;
1000 1.1 cgd }
1001 1.1 cgd str = cp;
1002 1.1 cgd }
1003 1.1 cgd }
1004 1.1 cgd
1005 1.1 cgd /*-
1006 1.1 cgd *-----------------------------------------------------------------------
1007 1.1 cgd * Var_Parse --
1008 1.1 cgd * Given the start of a variable invocation, extract the variable
1009 1.1 cgd * name and find its value, then modify it according to the
1010 1.1 cgd * specification.
1011 1.1 cgd *
1012 1.1 cgd * Results:
1013 1.1 cgd * The (possibly-modified) value of the variable or var_Error if the
1014 1.1 cgd * specification is invalid. The length of the specification is
1015 1.1 cgd * placed in *lengthPtr (for invalid specifications, this is just
1016 1.1 cgd * 2...?).
1017 1.1 cgd * A Boolean in *freePtr telling whether the returned string should
1018 1.1 cgd * be freed by the caller.
1019 1.1 cgd *
1020 1.1 cgd * Side Effects:
1021 1.1 cgd * None.
1022 1.1 cgd *
1023 1.1 cgd *-----------------------------------------------------------------------
1024 1.1 cgd */
1025 1.1 cgd char *
1026 1.1 cgd Var_Parse (str, ctxt, err, lengthPtr, freePtr)
1027 1.1 cgd char *str; /* The string to parse */
1028 1.1 cgd GNode *ctxt; /* The context for the variable */
1029 1.1 cgd Boolean err; /* TRUE if undefined variables are an error */
1030 1.1 cgd int *lengthPtr; /* OUT: The length of the specification */
1031 1.1 cgd Boolean *freePtr; /* OUT: TRUE if caller should free result */
1032 1.1 cgd {
1033 1.1 cgd register char *tstr; /* Pointer into str */
1034 1.1 cgd Var *v; /* Variable in invocation */
1035 1.1 cgd register char *cp; /* Secondary pointer into str (place marker
1036 1.1 cgd * for tstr) */
1037 1.1 cgd Boolean haveModifier;/* TRUE if have modifiers for the variable */
1038 1.1 cgd register char endc; /* Ending character when variable in parens
1039 1.1 cgd * or braces */
1040 1.1 cgd char *start;
1041 1.1 cgd Boolean dynamic; /* TRUE if the variable is local and we're
1042 1.1 cgd * expanding it in a non-local context. This
1043 1.1 cgd * is done to support dynamic sources. The
1044 1.1 cgd * result is just the invocation, unaltered */
1045 1.1 cgd
1046 1.1 cgd *freePtr = FALSE;
1047 1.1 cgd dynamic = FALSE;
1048 1.1 cgd start = str;
1049 1.1 cgd
1050 1.1 cgd if (str[1] != '(' && str[1] != '{') {
1051 1.1 cgd /*
1052 1.1 cgd * If it's not bounded by braces of some sort, life is much simpler.
1053 1.1 cgd * We just need to check for the first character and return the
1054 1.1 cgd * value if it exists.
1055 1.1 cgd */
1056 1.1 cgd char name[2];
1057 1.1 cgd
1058 1.1 cgd name[0] = str[1];
1059 1.1 cgd name[1] = '\0';
1060 1.1 cgd
1061 1.1 cgd v = VarFind (name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
1062 1.1 cgd if (v == (Var *)NIL) {
1063 1.1 cgd *lengthPtr = 2;
1064 1.1 cgd
1065 1.1 cgd if ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)) {
1066 1.1 cgd /*
1067 1.1 cgd * If substituting a local variable in a non-local context,
1068 1.1 cgd * assume it's for dynamic source stuff. We have to handle
1069 1.1 cgd * this specially and return the longhand for the variable
1070 1.1 cgd * with the dollar sign escaped so it makes it back to the
1071 1.1 cgd * caller. Only four of the local variables are treated
1072 1.1 cgd * specially as they are the only four that will be set
1073 1.1 cgd * when dynamic sources are expanded.
1074 1.1 cgd */
1075 1.1 cgd switch (str[1]) {
1076 1.1 cgd case '@':
1077 1.1 cgd return("$(.TARGET)");
1078 1.1 cgd case '%':
1079 1.1 cgd return("$(.ARCHIVE)");
1080 1.1 cgd case '*':
1081 1.1 cgd return("$(.PREFIX)");
1082 1.1 cgd case '!':
1083 1.1 cgd return("$(.MEMBER)");
1084 1.1 cgd }
1085 1.1 cgd }
1086 1.1 cgd /*
1087 1.1 cgd * Error
1088 1.1 cgd */
1089 1.1 cgd return (err ? var_Error : varNoError);
1090 1.1 cgd } else {
1091 1.1 cgd haveModifier = FALSE;
1092 1.1 cgd tstr = &str[1];
1093 1.1 cgd endc = str[1];
1094 1.1 cgd }
1095 1.1 cgd } else {
1096 1.1 cgd endc = str[1] == '(' ? ')' : '}';
1097 1.1 cgd
1098 1.1 cgd /*
1099 1.1 cgd * Skip to the end character or a colon, whichever comes first.
1100 1.1 cgd */
1101 1.1 cgd for (tstr = str + 2;
1102 1.1 cgd *tstr != '\0' && *tstr != endc && *tstr != ':';
1103 1.1 cgd tstr++)
1104 1.1 cgd {
1105 1.1 cgd continue;
1106 1.1 cgd }
1107 1.1 cgd if (*tstr == ':') {
1108 1.1 cgd haveModifier = TRUE;
1109 1.1 cgd } else if (*tstr != '\0') {
1110 1.1 cgd haveModifier = FALSE;
1111 1.1 cgd } else {
1112 1.1 cgd /*
1113 1.1 cgd * If we never did find the end character, return NULL
1114 1.1 cgd * right now, setting the length to be the distance to
1115 1.1 cgd * the end of the string, since that's what make does.
1116 1.1 cgd */
1117 1.1 cgd *lengthPtr = tstr - str;
1118 1.1 cgd return (var_Error);
1119 1.1 cgd }
1120 1.1 cgd *tstr = '\0';
1121 1.1 cgd
1122 1.1 cgd v = VarFind (str + 2, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
1123 1.1 cgd if ((v == (Var *)NIL) && (ctxt != VAR_CMD) && (ctxt != VAR_GLOBAL) &&
1124 1.1 cgd ((tstr-str) == 4) && (str[3] == 'F' || str[3] == 'D'))
1125 1.1 cgd {
1126 1.1 cgd /*
1127 1.1 cgd * Check for bogus D and F forms of local variables since we're
1128 1.1 cgd * in a local context and the name is the right length.
1129 1.1 cgd */
1130 1.1 cgd switch(str[2]) {
1131 1.1 cgd case '@':
1132 1.1 cgd case '%':
1133 1.1 cgd case '*':
1134 1.1 cgd case '!':
1135 1.1 cgd case '>':
1136 1.1 cgd case '<':
1137 1.1 cgd {
1138 1.1 cgd char vname[2];
1139 1.1 cgd char *val;
1140 1.1 cgd
1141 1.1 cgd /*
1142 1.1 cgd * Well, it's local -- go look for it.
1143 1.1 cgd */
1144 1.1 cgd vname[0] = str[2];
1145 1.1 cgd vname[1] = '\0';
1146 1.1 cgd v = VarFind(vname, ctxt, 0);
1147 1.1 cgd
1148 1.1 cgd if (v != (Var *)NIL) {
1149 1.1 cgd /*
1150 1.1 cgd * No need for nested expansion or anything, as we're
1151 1.1 cgd * the only one who sets these things and we sure don't
1152 1.1 cgd * but nested invocations in them...
1153 1.1 cgd */
1154 1.1 cgd val = (char *)Buf_GetAll(v->val, (int *)NULL);
1155 1.1 cgd
1156 1.1 cgd if (str[3] == 'D') {
1157 1.1 cgd val = VarModify(val, VarHead, (ClientData)0);
1158 1.1 cgd } else {
1159 1.1 cgd val = VarModify(val, VarTail, (ClientData)0);
1160 1.1 cgd }
1161 1.1 cgd /*
1162 1.1 cgd * Resulting string is dynamically allocated, so
1163 1.1 cgd * tell caller to free it.
1164 1.1 cgd */
1165 1.1 cgd *freePtr = TRUE;
1166 1.1 cgd *lengthPtr = tstr-start+1;
1167 1.1 cgd *tstr = endc;
1168 1.1 cgd return(val);
1169 1.1 cgd }
1170 1.1 cgd break;
1171 1.1 cgd }
1172 1.1 cgd }
1173 1.1 cgd }
1174 1.1 cgd
1175 1.1 cgd if (v == (Var *)NIL) {
1176 1.1 cgd if ((((tstr-str) == 3) ||
1177 1.1 cgd ((((tstr-str) == 4) && (str[3] == 'F' ||
1178 1.1 cgd str[3] == 'D')))) &&
1179 1.1 cgd ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)))
1180 1.1 cgd {
1181 1.1 cgd /*
1182 1.1 cgd * If substituting a local variable in a non-local context,
1183 1.1 cgd * assume it's for dynamic source stuff. We have to handle
1184 1.1 cgd * this specially and return the longhand for the variable
1185 1.1 cgd * with the dollar sign escaped so it makes it back to the
1186 1.1 cgd * caller. Only four of the local variables are treated
1187 1.1 cgd * specially as they are the only four that will be set
1188 1.1 cgd * when dynamic sources are expanded.
1189 1.1 cgd */
1190 1.1 cgd switch (str[2]) {
1191 1.1 cgd case '@':
1192 1.1 cgd case '%':
1193 1.1 cgd case '*':
1194 1.1 cgd case '!':
1195 1.1 cgd dynamic = TRUE;
1196 1.1 cgd break;
1197 1.1 cgd }
1198 1.1 cgd } else if (((tstr-str) > 4) && (str[2] == '.') &&
1199 1.1 cgd isupper(str[3]) &&
1200 1.1 cgd ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)))
1201 1.1 cgd {
1202 1.1 cgd int len;
1203 1.1 cgd
1204 1.1 cgd len = (tstr-str) - 3;
1205 1.1 cgd if ((strncmp(str+2, ".TARGET", len) == 0) ||
1206 1.1 cgd (strncmp(str+2, ".ARCHIVE", len) == 0) ||
1207 1.1 cgd (strncmp(str+2, ".PREFIX", len) == 0) ||
1208 1.1 cgd (strncmp(str+2, ".MEMBER", len) == 0))
1209 1.1 cgd {
1210 1.1 cgd dynamic = TRUE;
1211 1.1 cgd }
1212 1.1 cgd }
1213 1.1 cgd
1214 1.1 cgd if (!haveModifier) {
1215 1.1 cgd /*
1216 1.1 cgd * No modifiers -- have specification length so we can return
1217 1.1 cgd * now.
1218 1.1 cgd */
1219 1.1 cgd *lengthPtr = tstr - start + 1;
1220 1.1 cgd *tstr = endc;
1221 1.1 cgd if (dynamic) {
1222 1.1 cgd str = emalloc(*lengthPtr + 1);
1223 1.1 cgd strncpy(str, start, *lengthPtr);
1224 1.1 cgd str[*lengthPtr] = '\0';
1225 1.1 cgd *freePtr = TRUE;
1226 1.1 cgd return(str);
1227 1.1 cgd } else {
1228 1.1 cgd return (err ? var_Error : varNoError);
1229 1.1 cgd }
1230 1.1 cgd } else {
1231 1.1 cgd /*
1232 1.1 cgd * Still need to get to the end of the variable specification,
1233 1.1 cgd * so kludge up a Var structure for the modifications
1234 1.1 cgd */
1235 1.1 cgd v = (Var *) emalloc(sizeof(Var));
1236 1.1 cgd v->name = &str[1];
1237 1.1 cgd v->val = Buf_Init(1);
1238 1.1 cgd v->flags = VAR_JUNK;
1239 1.1 cgd }
1240 1.1 cgd }
1241 1.1 cgd }
1242 1.1 cgd
1243 1.1 cgd if (v->flags & VAR_IN_USE) {
1244 1.1 cgd Fatal("Variable %s is recursive.", v->name);
1245 1.1 cgd /*NOTREACHED*/
1246 1.1 cgd } else {
1247 1.1 cgd v->flags |= VAR_IN_USE;
1248 1.1 cgd }
1249 1.1 cgd /*
1250 1.1 cgd * Before doing any modification, we have to make sure the value
1251 1.1 cgd * has been fully expanded. If it looks like recursion might be
1252 1.1 cgd * necessary (there's a dollar sign somewhere in the variable's value)
1253 1.1 cgd * we just call Var_Subst to do any other substitutions that are
1254 1.1 cgd * necessary. Note that the value returned by Var_Subst will have
1255 1.1 cgd * been dynamically-allocated, so it will need freeing when we
1256 1.1 cgd * return.
1257 1.1 cgd */
1258 1.1 cgd str = (char *)Buf_GetAll(v->val, (int *)NULL);
1259 1.1 cgd if (index (str, '$') != (char *)NULL) {
1260 1.1 cgd str = Var_Subst(str, ctxt, err);
1261 1.1 cgd *freePtr = TRUE;
1262 1.1 cgd }
1263 1.1 cgd
1264 1.1 cgd v->flags &= ~VAR_IN_USE;
1265 1.1 cgd
1266 1.1 cgd /*
1267 1.1 cgd * Now we need to apply any modifiers the user wants applied.
1268 1.1 cgd * These are:
1269 1.1 cgd * :M<pattern> words which match the given <pattern>.
1270 1.1 cgd * <pattern> is of the standard file
1271 1.1 cgd * wildcarding form.
1272 1.1 cgd * :S<d><pat1><d><pat2><d>[g]
1273 1.1 cgd * Substitute <pat2> for <pat1> in the value
1274 1.1 cgd * :H Substitute the head of each word
1275 1.1 cgd * :T Substitute the tail of each word
1276 1.1 cgd * :E Substitute the extension (minus '.') of
1277 1.1 cgd * each word
1278 1.1 cgd * :R Substitute the root of each word
1279 1.1 cgd * (pathname minus the suffix).
1280 1.1 cgd * :lhs=rhs Like :S, but the rhs goes to the end of
1281 1.1 cgd * the invocation.
1282 1.1 cgd */
1283 1.1 cgd if ((str != (char *)NULL) && haveModifier) {
1284 1.1 cgd /*
1285 1.1 cgd * Skip initial colon while putting it back.
1286 1.1 cgd */
1287 1.1 cgd *tstr++ = ':';
1288 1.1 cgd while (*tstr != endc) {
1289 1.1 cgd char *newStr; /* New value to return */
1290 1.1 cgd char termc; /* Character which terminated scan */
1291 1.1 cgd
1292 1.1 cgd if (DEBUG(VAR)) {
1293 1.1 cgd printf("Applying :%c to \"%s\"\n", *tstr, str);
1294 1.1 cgd }
1295 1.1 cgd switch (*tstr) {
1296 1.1 cgd case 'N':
1297 1.1 cgd case 'M':
1298 1.1 cgd {
1299 1.1 cgd char *pattern;
1300 1.1 cgd char *cp2;
1301 1.1 cgd Boolean copy;
1302 1.1 cgd
1303 1.1 cgd copy = FALSE;
1304 1.1 cgd for (cp = tstr + 1;
1305 1.1 cgd *cp != '\0' && *cp != ':' && *cp != endc;
1306 1.1 cgd cp++)
1307 1.1 cgd {
1308 1.1 cgd if (*cp == '\\' && (cp[1] == ':' || cp[1] == endc)){
1309 1.1 cgd copy = TRUE;
1310 1.1 cgd cp++;
1311 1.1 cgd }
1312 1.1 cgd }
1313 1.1 cgd termc = *cp;
1314 1.1 cgd *cp = '\0';
1315 1.1 cgd if (copy) {
1316 1.1 cgd /*
1317 1.1 cgd * Need to compress the \:'s out of the pattern, so
1318 1.1 cgd * allocate enough room to hold the uncompressed
1319 1.1 cgd * pattern (note that cp started at tstr+1, so
1320 1.1 cgd * cp - tstr takes the null byte into account) and
1321 1.1 cgd * compress the pattern into the space.
1322 1.1 cgd */
1323 1.1 cgd pattern = emalloc(cp - tstr);
1324 1.1 cgd for (cp2 = pattern, cp = tstr + 1;
1325 1.1 cgd *cp != '\0';
1326 1.1 cgd cp++, cp2++)
1327 1.1 cgd {
1328 1.1 cgd if ((*cp == '\\') &&
1329 1.1 cgd (cp[1] == ':' || cp[1] == endc)) {
1330 1.1 cgd cp++;
1331 1.1 cgd }
1332 1.1 cgd *cp2 = *cp;
1333 1.1 cgd }
1334 1.1 cgd *cp2 = '\0';
1335 1.1 cgd } else {
1336 1.1 cgd pattern = &tstr[1];
1337 1.1 cgd }
1338 1.1 cgd if (*tstr == 'M' || *tstr == 'm') {
1339 1.1 cgd newStr = VarModify(str, VarMatch, (ClientData)pattern);
1340 1.1 cgd } else {
1341 1.1 cgd newStr = VarModify(str, VarNoMatch,
1342 1.1 cgd (ClientData)pattern);
1343 1.1 cgd }
1344 1.1 cgd if (copy) {
1345 1.1 cgd free(pattern);
1346 1.1 cgd }
1347 1.1 cgd break;
1348 1.1 cgd }
1349 1.1 cgd case 'S':
1350 1.1 cgd {
1351 1.1 cgd VarPattern pattern;
1352 1.1 cgd register char delim;
1353 1.1 cgd Buffer buf; /* Buffer for patterns */
1354 1.1 cgd register char *cp2;
1355 1.1 cgd int lefts;
1356 1.1 cgd
1357 1.1 cgd pattern.flags = 0;
1358 1.1 cgd delim = tstr[1];
1359 1.1 cgd tstr += 2;
1360 1.1 cgd /*
1361 1.1 cgd * If pattern begins with '^', it is anchored to the
1362 1.1 cgd * start of the word -- skip over it and flag pattern.
1363 1.1 cgd */
1364 1.1 cgd if (*tstr == '^') {
1365 1.1 cgd pattern.flags |= VAR_MATCH_START;
1366 1.1 cgd tstr += 1;
1367 1.1 cgd }
1368 1.1 cgd
1369 1.1 cgd buf = Buf_Init(0);
1370 1.1 cgd
1371 1.1 cgd /*
1372 1.1 cgd * Pass through the lhs looking for 1) escaped delimiters,
1373 1.1 cgd * '$'s and backslashes (place the escaped character in
1374 1.1 cgd * uninterpreted) and 2) unescaped $'s that aren't before
1375 1.1 cgd * the delimiter (expand the variable substitution).
1376 1.1 cgd * The result is left in the Buffer buf.
1377 1.1 cgd */
1378 1.1 cgd for (cp = tstr; *cp != '\0' && *cp != delim; cp++) {
1379 1.1 cgd if ((*cp == '\\') &&
1380 1.1 cgd ((cp[1] == delim) ||
1381 1.1 cgd (cp[1] == '$') ||
1382 1.1 cgd (cp[1] == '\\')))
1383 1.1 cgd {
1384 1.1 cgd Buf_AddByte(buf, (Byte)cp[1]);
1385 1.1 cgd cp++;
1386 1.1 cgd } else if (*cp == '$') {
1387 1.1 cgd if (cp[1] != delim) {
1388 1.1 cgd /*
1389 1.1 cgd * If unescaped dollar sign not before the
1390 1.1 cgd * delimiter, assume it's a variable
1391 1.1 cgd * substitution and recurse.
1392 1.1 cgd */
1393 1.1 cgd char *cp2;
1394 1.1 cgd int len;
1395 1.1 cgd Boolean freeIt;
1396 1.1 cgd
1397 1.1 cgd cp2 = Var_Parse(cp, ctxt, err, &len, &freeIt);
1398 1.1 cgd Buf_AddBytes(buf, strlen(cp2), (Byte *)cp2);
1399 1.1 cgd if (freeIt) {
1400 1.1 cgd free(cp2);
1401 1.1 cgd }
1402 1.1 cgd cp += len - 1;
1403 1.1 cgd } else {
1404 1.1 cgd /*
1405 1.1 cgd * Unescaped $ at end of pattern => anchor
1406 1.1 cgd * pattern at end.
1407 1.1 cgd */
1408 1.1 cgd pattern.flags |= VAR_MATCH_END;
1409 1.1 cgd }
1410 1.1 cgd } else {
1411 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
1412 1.1 cgd }
1413 1.1 cgd }
1414 1.1 cgd
1415 1.1 cgd Buf_AddByte(buf, (Byte)'\0');
1416 1.1 cgd
1417 1.1 cgd /*
1418 1.1 cgd * If lhs didn't end with the delimiter, complain and
1419 1.1 cgd * return NULL
1420 1.1 cgd */
1421 1.1 cgd if (*cp != delim) {
1422 1.1 cgd *lengthPtr = cp - start + 1;
1423 1.1 cgd if (*freePtr) {
1424 1.1 cgd free(str);
1425 1.1 cgd }
1426 1.1 cgd Buf_Destroy(buf, TRUE);
1427 1.1 cgd Error("Unclosed substitution for %s (%c missing)",
1428 1.1 cgd v->name, delim);
1429 1.1 cgd return (var_Error);
1430 1.1 cgd }
1431 1.1 cgd
1432 1.1 cgd /*
1433 1.1 cgd * Fetch pattern and destroy buffer, but preserve the data
1434 1.1 cgd * in it, since that's our lhs. Note that Buf_GetAll
1435 1.1 cgd * will return the actual number of bytes, which includes
1436 1.1 cgd * the null byte, so we have to decrement the length by
1437 1.1 cgd * one.
1438 1.1 cgd */
1439 1.1 cgd pattern.lhs = (char *)Buf_GetAll(buf, &pattern.leftLen);
1440 1.1 cgd pattern.leftLen--;
1441 1.1 cgd Buf_Destroy(buf, FALSE);
1442 1.1 cgd
1443 1.1 cgd /*
1444 1.1 cgd * Now comes the replacement string. Three things need to
1445 1.1 cgd * be done here: 1) need to compress escaped delimiters and
1446 1.1 cgd * ampersands and 2) need to replace unescaped ampersands
1447 1.1 cgd * with the l.h.s. (since this isn't regexp, we can do
1448 1.1 cgd * it right here) and 3) expand any variable substitutions.
1449 1.1 cgd */
1450 1.1 cgd buf = Buf_Init(0);
1451 1.1 cgd
1452 1.1 cgd tstr = cp + 1;
1453 1.1 cgd for (cp = tstr; *cp != '\0' && *cp != delim; cp++) {
1454 1.1 cgd if ((*cp == '\\') &&
1455 1.1 cgd ((cp[1] == delim) ||
1456 1.1 cgd (cp[1] == '&') ||
1457 1.1 cgd (cp[1] == '\\') ||
1458 1.1 cgd (cp[1] == '$')))
1459 1.1 cgd {
1460 1.1 cgd Buf_AddByte(buf, (Byte)cp[1]);
1461 1.1 cgd cp++;
1462 1.1 cgd } else if ((*cp == '$') && (cp[1] != delim)) {
1463 1.1 cgd char *cp2;
1464 1.1 cgd int len;
1465 1.1 cgd Boolean freeIt;
1466 1.1 cgd
1467 1.1 cgd cp2 = Var_Parse(cp, ctxt, err, &len, &freeIt);
1468 1.1 cgd Buf_AddBytes(buf, strlen(cp2), (Byte *)cp2);
1469 1.1 cgd cp += len - 1;
1470 1.1 cgd if (freeIt) {
1471 1.1 cgd free(cp2);
1472 1.1 cgd }
1473 1.1 cgd } else if (*cp == '&') {
1474 1.1 cgd Buf_AddBytes(buf, pattern.leftLen,
1475 1.1 cgd (Byte *)pattern.lhs);
1476 1.1 cgd } else {
1477 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
1478 1.1 cgd }
1479 1.1 cgd }
1480 1.1 cgd
1481 1.1 cgd Buf_AddByte(buf, (Byte)'\0');
1482 1.1 cgd
1483 1.1 cgd /*
1484 1.1 cgd * If didn't end in delimiter character, complain
1485 1.1 cgd */
1486 1.1 cgd if (*cp != delim) {
1487 1.1 cgd *lengthPtr = cp - start + 1;
1488 1.1 cgd if (*freePtr) {
1489 1.1 cgd free(str);
1490 1.1 cgd }
1491 1.1 cgd Buf_Destroy(buf, TRUE);
1492 1.1 cgd Error("Unclosed substitution for %s (%c missing)",
1493 1.1 cgd v->name, delim);
1494 1.1 cgd return (var_Error);
1495 1.1 cgd }
1496 1.1 cgd
1497 1.1 cgd pattern.rhs = (char *)Buf_GetAll(buf, &pattern.rightLen);
1498 1.1 cgd pattern.rightLen--;
1499 1.1 cgd Buf_Destroy(buf, FALSE);
1500 1.1 cgd
1501 1.1 cgd /*
1502 1.1 cgd * Check for global substitution. If 'g' after the final
1503 1.1 cgd * delimiter, substitution is global and is marked that
1504 1.1 cgd * way.
1505 1.1 cgd */
1506 1.1 cgd cp++;
1507 1.1 cgd if (*cp == 'g') {
1508 1.1 cgd pattern.flags |= VAR_SUB_GLOBAL;
1509 1.1 cgd cp++;
1510 1.1 cgd }
1511 1.1 cgd
1512 1.1 cgd termc = *cp;
1513 1.1 cgd newStr = VarModify(str, VarSubstitute,
1514 1.1 cgd (ClientData)&pattern);
1515 1.1 cgd /*
1516 1.1 cgd * Free the two strings.
1517 1.1 cgd */
1518 1.1 cgd free(pattern.lhs);
1519 1.1 cgd free(pattern.rhs);
1520 1.1 cgd break;
1521 1.1 cgd }
1522 1.1 cgd case 'T':
1523 1.1 cgd if (tstr[1] == endc || tstr[1] == ':') {
1524 1.1 cgd newStr = VarModify (str, VarTail, (ClientData)0);
1525 1.1 cgd cp = tstr + 1;
1526 1.1 cgd termc = *cp;
1527 1.1 cgd break;
1528 1.1 cgd }
1529 1.1 cgd /*FALLTHRU*/
1530 1.1 cgd case 'H':
1531 1.1 cgd if (tstr[1] == endc || tstr[1] == ':') {
1532 1.1 cgd newStr = VarModify (str, VarHead, (ClientData)0);
1533 1.1 cgd cp = tstr + 1;
1534 1.1 cgd termc = *cp;
1535 1.1 cgd break;
1536 1.1 cgd }
1537 1.1 cgd /*FALLTHRU*/
1538 1.1 cgd case 'E':
1539 1.1 cgd if (tstr[1] == endc || tstr[1] == ':') {
1540 1.1 cgd newStr = VarModify (str, VarSuffix, (ClientData)0);
1541 1.1 cgd cp = tstr + 1;
1542 1.1 cgd termc = *cp;
1543 1.1 cgd break;
1544 1.1 cgd }
1545 1.1 cgd /*FALLTHRU*/
1546 1.1 cgd case 'R':
1547 1.1 cgd if (tstr[1] == endc || tstr[1] == ':') {
1548 1.1 cgd newStr = VarModify (str, VarRoot, (ClientData)0);
1549 1.1 cgd cp = tstr + 1;
1550 1.1 cgd termc = *cp;
1551 1.1 cgd break;
1552 1.1 cgd }
1553 1.1 cgd /*FALLTHRU*/
1554 1.1 cgd default: {
1555 1.1 cgd /*
1556 1.1 cgd * This can either be a bogus modifier or a System-V
1557 1.1 cgd * substitution command.
1558 1.1 cgd */
1559 1.1 cgd VarPattern pattern;
1560 1.1 cgd Boolean eqFound;
1561 1.1 cgd
1562 1.1 cgd pattern.flags = 0;
1563 1.1 cgd eqFound = FALSE;
1564 1.1 cgd /*
1565 1.1 cgd * First we make a pass through the string trying
1566 1.1 cgd * to verify it is a SYSV-make-style translation:
1567 1.1 cgd * it must be: <string1>=<string2>)
1568 1.1 cgd */
1569 1.1 cgd for (cp = tstr; *cp != '\0' && *cp != endc; cp++) {
1570 1.1 cgd if (*cp == '=') {
1571 1.1 cgd eqFound = TRUE;
1572 1.1 cgd /* continue looking for endc */
1573 1.1 cgd }
1574 1.1 cgd }
1575 1.1 cgd if (*cp == endc && eqFound) {
1576 1.1 cgd
1577 1.1 cgd /*
1578 1.1 cgd * Now we break this sucker into the lhs and
1579 1.1 cgd * rhs. We must null terminate them of course.
1580 1.1 cgd */
1581 1.1 cgd for (cp = tstr; *cp != '='; cp++) {
1582 1.1 cgd ;
1583 1.1 cgd }
1584 1.1 cgd pattern.lhs = tstr;
1585 1.1 cgd pattern.leftLen = cp - tstr;
1586 1.1 cgd *cp++ = '\0';
1587 1.1 cgd
1588 1.1 cgd pattern.rhs = cp;
1589 1.1 cgd while (*cp != endc) {
1590 1.1 cgd cp++;
1591 1.1 cgd }
1592 1.1 cgd pattern.rightLen = cp - pattern.rhs;
1593 1.1 cgd *cp = '\0';
1594 1.1 cgd
1595 1.1 cgd /*
1596 1.1 cgd * SYSV modifications happen through the whole
1597 1.1 cgd * string. Note the pattern is anchored at the end.
1598 1.1 cgd */
1599 1.1 cgd pattern.flags |= VAR_SUB_GLOBAL|VAR_MATCH_END;
1600 1.1 cgd
1601 1.1 cgd newStr = VarModify(str, VarSubstitute,
1602 1.1 cgd (ClientData)&pattern);
1603 1.1 cgd
1604 1.1 cgd /*
1605 1.1 cgd * Restore the nulled characters
1606 1.1 cgd */
1607 1.1 cgd pattern.lhs[pattern.leftLen] = '=';
1608 1.1 cgd pattern.rhs[pattern.rightLen] = endc;
1609 1.1 cgd termc = endc;
1610 1.1 cgd } else {
1611 1.1 cgd Error ("Unknown modifier '%c'\n", *tstr);
1612 1.1 cgd for (cp = tstr+1;
1613 1.1 cgd *cp != ':' && *cp != endc && *cp != '\0';
1614 1.1 cgd cp++) {
1615 1.1 cgd ;
1616 1.1 cgd }
1617 1.1 cgd termc = *cp;
1618 1.1 cgd newStr = var_Error;
1619 1.1 cgd }
1620 1.1 cgd }
1621 1.1 cgd }
1622 1.1 cgd if (DEBUG(VAR)) {
1623 1.1 cgd printf("Result is \"%s\"\n", newStr);
1624 1.1 cgd }
1625 1.1 cgd
1626 1.1 cgd if (*freePtr) {
1627 1.1 cgd free (str);
1628 1.1 cgd }
1629 1.1 cgd str = newStr;
1630 1.1 cgd if (str != var_Error) {
1631 1.1 cgd *freePtr = TRUE;
1632 1.1 cgd } else {
1633 1.1 cgd *freePtr = FALSE;
1634 1.1 cgd }
1635 1.1 cgd if (termc == '\0') {
1636 1.1 cgd Error("Unclosed variable specification for %s", v->name);
1637 1.1 cgd } else if (termc == ':') {
1638 1.1 cgd *cp++ = termc;
1639 1.1 cgd } else {
1640 1.1 cgd *cp = termc;
1641 1.1 cgd }
1642 1.1 cgd tstr = cp;
1643 1.1 cgd }
1644 1.1 cgd *lengthPtr = tstr - start + 1;
1645 1.1 cgd } else {
1646 1.1 cgd *lengthPtr = tstr - start + 1;
1647 1.1 cgd *tstr = endc;
1648 1.1 cgd }
1649 1.1 cgd
1650 1.1 cgd if (v->flags & VAR_FROM_ENV) {
1651 1.1 cgd Boolean destroy = FALSE;
1652 1.1 cgd
1653 1.1 cgd if (str != (char *)Buf_GetAll(v->val, (int *)NULL)) {
1654 1.1 cgd destroy = TRUE;
1655 1.1 cgd } else {
1656 1.1 cgd /*
1657 1.1 cgd * Returning the value unmodified, so tell the caller to free
1658 1.1 cgd * the thing.
1659 1.1 cgd */
1660 1.1 cgd *freePtr = TRUE;
1661 1.1 cgd }
1662 1.1 cgd Buf_Destroy(v->val, destroy);
1663 1.1 cgd free((Address)v);
1664 1.1 cgd } else if (v->flags & VAR_JUNK) {
1665 1.1 cgd /*
1666 1.1 cgd * Perform any free'ing needed and set *freePtr to FALSE so the caller
1667 1.1 cgd * doesn't try to free a static pointer.
1668 1.1 cgd */
1669 1.1 cgd if (*freePtr) {
1670 1.1 cgd free(str);
1671 1.1 cgd }
1672 1.1 cgd *freePtr = FALSE;
1673 1.1 cgd free((Address)v);
1674 1.1 cgd if (dynamic) {
1675 1.1 cgd str = emalloc(*lengthPtr + 1);
1676 1.1 cgd strncpy(str, start, *lengthPtr);
1677 1.1 cgd str[*lengthPtr] = '\0';
1678 1.1 cgd *freePtr = TRUE;
1679 1.1 cgd } else {
1680 1.1 cgd str = var_Error;
1681 1.1 cgd }
1682 1.1 cgd }
1683 1.1 cgd return (str);
1684 1.1 cgd }
1685 1.1 cgd
1686 1.1 cgd /*-
1687 1.1 cgd *-----------------------------------------------------------------------
1688 1.1 cgd * Var_Subst --
1689 1.1 cgd * Substitute for all variables in the given string in the given context
1690 1.1 cgd * If undefErr is TRUE, Parse_Error will be called when an undefined
1691 1.1 cgd * variable is encountered.
1692 1.1 cgd *
1693 1.1 cgd * Results:
1694 1.1 cgd * The resulting string.
1695 1.1 cgd *
1696 1.1 cgd * Side Effects:
1697 1.1 cgd * None. The old string must be freed by the caller
1698 1.1 cgd *-----------------------------------------------------------------------
1699 1.1 cgd */
1700 1.1 cgd char *
1701 1.1 cgd Var_Subst (str, ctxt, undefErr)
1702 1.1 cgd register char *str; /* the string in which to substitute */
1703 1.1 cgd GNode *ctxt; /* the context wherein to find variables */
1704 1.1 cgd Boolean undefErr; /* TRUE if undefineds are an error */
1705 1.1 cgd {
1706 1.1 cgd Buffer buf; /* Buffer for forming things */
1707 1.1 cgd char *val; /* Value to substitute for a variable */
1708 1.1 cgd int length; /* Length of the variable invocation */
1709 1.1 cgd Boolean doFree; /* Set true if val should be freed */
1710 1.1 cgd static Boolean errorReported; /* Set true if an error has already
1711 1.1 cgd * been reported to prevent a plethora
1712 1.1 cgd * of messages when recursing */
1713 1.1 cgd
1714 1.1 cgd buf = Buf_Init (BSIZE);
1715 1.1 cgd errorReported = FALSE;
1716 1.1 cgd
1717 1.1 cgd while (*str) {
1718 1.1 cgd if ((*str == '$') && (str[1] == '$')) {
1719 1.1 cgd /*
1720 1.1 cgd * A dollar sign may be escaped either with another dollar sign.
1721 1.1 cgd * In such a case, we skip over the escape character and store the
1722 1.1 cgd * dollar sign into the buffer directly.
1723 1.1 cgd */
1724 1.1 cgd str++;
1725 1.1 cgd Buf_AddByte(buf, (Byte)*str);
1726 1.1 cgd str++;
1727 1.1 cgd } else if (*str != '$') {
1728 1.1 cgd /*
1729 1.1 cgd * Skip as many characters as possible -- either to the end of
1730 1.1 cgd * the string or to the next dollar sign (variable invocation).
1731 1.1 cgd */
1732 1.1 cgd char *cp;
1733 1.1 cgd
1734 1.1 cgd for (cp = str++; *str != '$' && *str != '\0'; str++) {
1735 1.1 cgd ;
1736 1.1 cgd }
1737 1.1 cgd Buf_AddBytes(buf, str - cp, (Byte *)cp);
1738 1.1 cgd } else {
1739 1.1 cgd val = Var_Parse (str, ctxt, undefErr, &length, &doFree);
1740 1.1 cgd
1741 1.1 cgd /*
1742 1.1 cgd * When we come down here, val should either point to the
1743 1.1 cgd * value of this variable, suitably modified, or be NULL.
1744 1.1 cgd * Length should be the total length of the potential
1745 1.1 cgd * variable invocation (from $ to end character...)
1746 1.1 cgd */
1747 1.1 cgd if (val == var_Error || val == varNoError) {
1748 1.1 cgd /*
1749 1.1 cgd * If performing old-time variable substitution, skip over
1750 1.1 cgd * the variable and continue with the substitution. Otherwise,
1751 1.1 cgd * store the dollar sign and advance str so we continue with
1752 1.1 cgd * the string...
1753 1.1 cgd */
1754 1.1 cgd if (oldVars) {
1755 1.1 cgd str += length;
1756 1.1 cgd } else if (undefErr) {
1757 1.1 cgd /*
1758 1.1 cgd * If variable is undefined, complain and skip the
1759 1.1 cgd * variable. The complaint will stop us from doing anything
1760 1.1 cgd * when the file is parsed.
1761 1.1 cgd */
1762 1.1 cgd if (!errorReported) {
1763 1.1 cgd Parse_Error (PARSE_FATAL,
1764 1.1 cgd "Undefined variable \"%.*s\"",length,str);
1765 1.1 cgd }
1766 1.1 cgd str += length;
1767 1.1 cgd errorReported = TRUE;
1768 1.1 cgd } else {
1769 1.1 cgd Buf_AddByte (buf, (Byte)*str);
1770 1.1 cgd str += 1;
1771 1.1 cgd }
1772 1.1 cgd } else {
1773 1.1 cgd /*
1774 1.1 cgd * We've now got a variable structure to store in. But first,
1775 1.1 cgd * advance the string pointer.
1776 1.1 cgd */
1777 1.1 cgd str += length;
1778 1.1 cgd
1779 1.1 cgd /*
1780 1.1 cgd * Copy all the characters from the variable value straight
1781 1.1 cgd * into the new string.
1782 1.1 cgd */
1783 1.1 cgd Buf_AddBytes (buf, strlen (val), (Byte *)val);
1784 1.1 cgd if (doFree) {
1785 1.1 cgd free ((Address)val);
1786 1.1 cgd }
1787 1.1 cgd }
1788 1.1 cgd }
1789 1.1 cgd }
1790 1.1 cgd
1791 1.1 cgd Buf_AddByte (buf, '\0');
1792 1.1 cgd str = (char *)Buf_GetAll (buf, (int *)NULL);
1793 1.1 cgd Buf_Destroy (buf, FALSE);
1794 1.1 cgd return (str);
1795 1.1 cgd }
1796 1.1 cgd
1797 1.1 cgd /*-
1798 1.1 cgd *-----------------------------------------------------------------------
1799 1.1 cgd * Var_GetTail --
1800 1.1 cgd * Return the tail from each of a list of words. Used to set the
1801 1.1 cgd * System V local variables.
1802 1.1 cgd *
1803 1.1 cgd * Results:
1804 1.1 cgd * The resulting string.
1805 1.1 cgd *
1806 1.1 cgd * Side Effects:
1807 1.1 cgd * None.
1808 1.1 cgd *
1809 1.1 cgd *-----------------------------------------------------------------------
1810 1.1 cgd */
1811 1.1 cgd char *
1812 1.1 cgd Var_GetTail(file)
1813 1.1 cgd char *file; /* Filename to modify */
1814 1.1 cgd {
1815 1.1 cgd return(VarModify(file, VarTail, (ClientData)0));
1816 1.1 cgd }
1817 1.1 cgd
1818 1.1 cgd /*-
1819 1.1 cgd *-----------------------------------------------------------------------
1820 1.1 cgd * Var_GetHead --
1821 1.1 cgd * Find the leading components of a (list of) filename(s).
1822 1.1 cgd * XXX: VarHead does not replace foo by ., as (sun) System V make
1823 1.1 cgd * does.
1824 1.1 cgd *
1825 1.1 cgd * Results:
1826 1.1 cgd * The leading components.
1827 1.1 cgd *
1828 1.1 cgd * Side Effects:
1829 1.1 cgd * None.
1830 1.1 cgd *
1831 1.1 cgd *-----------------------------------------------------------------------
1832 1.1 cgd */
1833 1.1 cgd char *
1834 1.1 cgd Var_GetHead(file)
1835 1.1 cgd char *file; /* Filename to manipulate */
1836 1.1 cgd {
1837 1.1 cgd return(VarModify(file, VarHead, (ClientData)0));
1838 1.1 cgd }
1839 1.1 cgd
1840 1.1 cgd /*-
1841 1.1 cgd *-----------------------------------------------------------------------
1842 1.1 cgd * Var_Init --
1843 1.1 cgd * Initialize the module
1844 1.1 cgd *
1845 1.1 cgd * Results:
1846 1.1 cgd * None
1847 1.1 cgd *
1848 1.1 cgd * Side Effects:
1849 1.1 cgd * The VAR_CMD and VAR_GLOBAL contexts are created
1850 1.1 cgd *-----------------------------------------------------------------------
1851 1.1 cgd */
1852 1.1 cgd void
1853 1.1 cgd Var_Init ()
1854 1.1 cgd {
1855 1.1 cgd VAR_GLOBAL = Targ_NewGN ("Global");
1856 1.1 cgd VAR_CMD = Targ_NewGN ("Command");
1857 1.1 cgd
1858 1.1 cgd }
1859 1.1 cgd
1860 1.1 cgd /****************** PRINT DEBUGGING INFO *****************/
1861 1.1 cgd static
1862 1.1 cgd VarPrintVar (v)
1863 1.1 cgd Var *v;
1864 1.1 cgd {
1865 1.1 cgd printf ("%-16s = %s\n", v->name, Buf_GetAll(v->val, (int *)NULL));
1866 1.1 cgd return (0);
1867 1.1 cgd }
1868 1.1 cgd
1869 1.1 cgd /*-
1870 1.1 cgd *-----------------------------------------------------------------------
1871 1.1 cgd * Var_Dump --
1872 1.1 cgd * print all variables in a context
1873 1.1 cgd *-----------------------------------------------------------------------
1874 1.1 cgd */
1875 1.1 cgd Var_Dump (ctxt)
1876 1.1 cgd GNode *ctxt;
1877 1.1 cgd {
1878 1.1 cgd Lst_ForEach (ctxt->context, VarPrintVar);
1879 1.1 cgd }
1880