suff.c revision 1.4 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.4 cgd /* from: static char sccsid[] = "@(#)suff.c 5.6 (Berkeley) 6/1/90"; */
41 1.4 cgd static char *rcsid = "$Id: suff.c,v 1.4 1994/03/05 00:35:11 cgd Exp $";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*-
45 1.1 cgd * suff.c --
46 1.1 cgd * Functions to maintain suffix lists and find implicit dependents
47 1.1 cgd * using suffix transformation rules
48 1.1 cgd *
49 1.1 cgd * Interface:
50 1.1 cgd * Suff_Init Initialize all things to do with suffixes.
51 1.1 cgd *
52 1.1 cgd * Suff_DoPaths This function is used to make life easier
53 1.1 cgd * when searching for a file according to its
54 1.1 cgd * suffix. It takes the global search path,
55 1.1 cgd * as defined using the .PATH: target, and appends
56 1.1 cgd * its directories to the path of each of the
57 1.1 cgd * defined suffixes, as specified using
58 1.1 cgd * .PATH<suffix>: targets. In addition, all
59 1.1 cgd * directories given for suffixes labeled as
60 1.1 cgd * include files or libraries, using the .INCLUDES
61 1.1 cgd * or .LIBS targets, are played with using
62 1.1 cgd * Dir_MakeFlags to create the .INCLUDES and
63 1.1 cgd * .LIBS global variables.
64 1.1 cgd *
65 1.1 cgd * Suff_ClearSuffixes Clear out all the suffixes and defined
66 1.1 cgd * transformations.
67 1.1 cgd *
68 1.1 cgd * Suff_IsTransform Return TRUE if the passed string is the lhs
69 1.1 cgd * of a transformation rule.
70 1.1 cgd *
71 1.1 cgd * Suff_AddSuffix Add the passed string as another known suffix.
72 1.1 cgd *
73 1.1 cgd * Suff_GetPath Return the search path for the given suffix.
74 1.1 cgd *
75 1.1 cgd * Suff_AddInclude Mark the given suffix as denoting an include
76 1.1 cgd * file.
77 1.1 cgd *
78 1.1 cgd * Suff_AddLib Mark the given suffix as denoting a library.
79 1.1 cgd *
80 1.1 cgd * Suff_AddTransform Add another transformation to the suffix
81 1.1 cgd * graph. Returns GNode suitable for framing, I
82 1.1 cgd * mean, tacking commands, attributes, etc. on.
83 1.1 cgd *
84 1.1 cgd * Suff_SetNull Define the suffix to consider the suffix of
85 1.1 cgd * any file that doesn't have a known one.
86 1.1 cgd *
87 1.1 cgd * Suff_FindDeps Find implicit sources for and the location of
88 1.1 cgd * a target based on its suffix. Returns the
89 1.1 cgd * bottom-most node added to the graph or NILGNODE
90 1.1 cgd * if the target had no implicit sources.
91 1.1 cgd */
92 1.1 cgd
93 1.1 cgd #include <stdio.h>
94 1.1 cgd #include "make.h"
95 1.4 cgd #include "hash.h"
96 1.4 cgd #include "dir.h"
97 1.1 cgd #include "bit.h"
98 1.1 cgd
99 1.1 cgd static Lst sufflist; /* Lst of suffixes */
100 1.1 cgd static Lst transforms; /* Lst of transformation rules */
101 1.1 cgd
102 1.1 cgd static int sNum = 0; /* Counter for assigning suffix numbers */
103 1.1 cgd
104 1.1 cgd /*
105 1.1 cgd * Structure describing an individual suffix.
106 1.1 cgd */
107 1.1 cgd typedef struct _Suff {
108 1.1 cgd char *name; /* The suffix itself */
109 1.1 cgd int nameLen; /* Length of the suffix */
110 1.1 cgd short flags; /* Type of suffix */
111 1.1 cgd #define SUFF_INCLUDE 0x01 /* One which is #include'd */
112 1.1 cgd #define SUFF_LIBRARY 0x02 /* One which contains a library */
113 1.1 cgd #define SUFF_NULL 0x04 /* The empty suffix */
114 1.1 cgd Lst searchPath; /* The path along which files of this suffix
115 1.1 cgd * may be found */
116 1.1 cgd int sNum; /* The suffix number */
117 1.1 cgd Lst parents; /* Suffixes we have a transformation to */
118 1.1 cgd Lst children; /* Suffixes we have a transformation from */
119 1.1 cgd } Suff;
120 1.1 cgd
121 1.1 cgd /*
122 1.1 cgd * Structure used in the search for implied sources.
123 1.1 cgd */
124 1.1 cgd typedef struct _Src {
125 1.1 cgd char *file; /* The file to look for */
126 1.1 cgd char *pref; /* Prefix from which file was formed */
127 1.1 cgd Suff *suff; /* The suffix on the file */
128 1.1 cgd struct _Src *parent; /* The Src for which this is a source */
129 1.1 cgd GNode *node; /* The node describing the file */
130 1.1 cgd int children; /* Count of existing children (so we don't free
131 1.1 cgd * this thing too early or never nuke it) */
132 1.1 cgd } Src;
133 1.1 cgd
134 1.4 cgd /*
135 1.4 cgd * A structure for passing more than one argument to the Lst-library-invoked
136 1.4 cgd * function...
137 1.4 cgd */
138 1.4 cgd typedef struct {
139 1.4 cgd Lst l;
140 1.4 cgd Src *s;
141 1.4 cgd } LstSrc;
142 1.4 cgd
143 1.1 cgd static Suff *suffNull; /* The NULL suffix for this run */
144 1.1 cgd static Suff *emptySuff; /* The empty suffix required for POSIX
145 1.1 cgd * single-suffix transformation rules */
146 1.1 cgd
147 1.4 cgd
148 1.4 cgd static char *SuffStrIsPrefix __P((char *, char *));
149 1.4 cgd static char *SuffSuffIsSuffix __P((Suff *, char *));
150 1.4 cgd static int SuffSuffIsSuffixP __P((Suff *, char *));
151 1.4 cgd static int SuffSuffHasNameP __P((Suff *, char *));
152 1.4 cgd static int SuffSuffIsPrefix __P((Suff *, char *));
153 1.4 cgd static int SuffGNHasNameP __P((GNode *, char *));
154 1.4 cgd static void SuffFree __P((Suff *));
155 1.4 cgd static void SuffInsert __P((Lst, Suff *));
156 1.4 cgd static Boolean SuffParseTransform __P((char *, Suff **, Suff **));
157 1.4 cgd static int SuffRebuildGraph __P((GNode *, Suff *));
158 1.4 cgd static int SuffAddSrc __P((Suff *, LstSrc *));
159 1.4 cgd static void SuffAddLevel __P((Lst, Src *));
160 1.4 cgd static void SuffFreeSrc __P((Src *));
161 1.4 cgd static Src *SuffFindThem __P((Lst));
162 1.4 cgd static Src *SuffFindCmds __P((Src *));
163 1.4 cgd static int SuffExpandChildren __P((GNode *, GNode *));
164 1.4 cgd static Boolean SuffApplyTransform __P((GNode *, GNode *, Suff *, Suff *));
165 1.4 cgd static void SuffFindArchiveDeps __P((GNode *));
166 1.4 cgd static void SuffFindNormalDeps __P((GNode *));
167 1.4 cgd static int SuffPrintName __P((Suff *));
168 1.4 cgd static int SuffPrintSuff __P((Suff *));
169 1.4 cgd static int SuffPrintTrans __P((GNode *));
170 1.4 cgd
171 1.1 cgd /*************** Lst Predicates ****************/
172 1.1 cgd /*-
173 1.1 cgd *-----------------------------------------------------------------------
174 1.1 cgd * SuffStrIsPrefix --
175 1.1 cgd * See if pref is a prefix of str.
176 1.1 cgd *
177 1.1 cgd * Results:
178 1.1 cgd * NULL if it ain't, pointer to character in str after prefix if so
179 1.1 cgd *
180 1.1 cgd * Side Effects:
181 1.1 cgd * None
182 1.1 cgd *-----------------------------------------------------------------------
183 1.1 cgd */
184 1.1 cgd static char *
185 1.1 cgd SuffStrIsPrefix (pref, str)
186 1.1 cgd register char *pref; /* possible prefix */
187 1.1 cgd register char *str; /* string to check */
188 1.1 cgd {
189 1.1 cgd while (*str && *pref == *str) {
190 1.1 cgd pref++;
191 1.1 cgd str++;
192 1.1 cgd }
193 1.1 cgd
194 1.1 cgd return (*pref ? NULL : str);
195 1.1 cgd }
196 1.1 cgd
197 1.1 cgd /*-
198 1.1 cgd *-----------------------------------------------------------------------
199 1.1 cgd * SuffSuffIsSuffix --
200 1.1 cgd * See if suff is a suffix of str. Str should point to THE END of the
201 1.1 cgd * string to check. (THE END == the null byte)
202 1.1 cgd *
203 1.1 cgd * Results:
204 1.1 cgd * NULL if it ain't, pointer to character in str before suffix if
205 1.1 cgd * it is.
206 1.1 cgd *
207 1.1 cgd * Side Effects:
208 1.1 cgd * None
209 1.1 cgd *-----------------------------------------------------------------------
210 1.1 cgd */
211 1.1 cgd static char *
212 1.1 cgd SuffSuffIsSuffix (s, str)
213 1.1 cgd register Suff *s; /* possible suffix */
214 1.1 cgd char *str; /* string to examine */
215 1.1 cgd {
216 1.1 cgd register char *p1; /* Pointer into suffix name */
217 1.1 cgd register char *p2; /* Pointer into string being examined */
218 1.1 cgd
219 1.1 cgd p1 = s->name + s->nameLen;
220 1.1 cgd p2 = str;
221 1.1 cgd
222 1.1 cgd while (p1 >= s->name && *p1 == *p2) {
223 1.1 cgd p1--;
224 1.1 cgd p2--;
225 1.1 cgd }
226 1.1 cgd
227 1.1 cgd return (p1 == s->name - 1 ? p2 : NULL);
228 1.1 cgd }
229 1.1 cgd
230 1.1 cgd /*-
231 1.1 cgd *-----------------------------------------------------------------------
232 1.1 cgd * SuffSuffIsSuffixP --
233 1.1 cgd * Predicate form of SuffSuffIsSuffix. Passed as the callback function
234 1.1 cgd * to Lst_Find.
235 1.1 cgd *
236 1.1 cgd * Results:
237 1.1 cgd * 0 if the suffix is the one desired, non-zero if not.
238 1.1 cgd *
239 1.1 cgd * Side Effects:
240 1.1 cgd * None.
241 1.1 cgd *
242 1.1 cgd *-----------------------------------------------------------------------
243 1.1 cgd */
244 1.4 cgd static int
245 1.1 cgd SuffSuffIsSuffixP(s, str)
246 1.1 cgd Suff *s;
247 1.1 cgd char *str;
248 1.1 cgd {
249 1.1 cgd return(!SuffSuffIsSuffix(s, str));
250 1.1 cgd }
251 1.1 cgd
252 1.1 cgd /*-
253 1.1 cgd *-----------------------------------------------------------------------
254 1.1 cgd * SuffSuffHasNameP --
255 1.1 cgd * Callback procedure for finding a suffix based on its name. Used by
256 1.1 cgd * Suff_GetPath.
257 1.1 cgd *
258 1.1 cgd * Results:
259 1.1 cgd * 0 if the suffix is of the given name. non-zero otherwise.
260 1.1 cgd *
261 1.1 cgd * Side Effects:
262 1.1 cgd * None
263 1.1 cgd *-----------------------------------------------------------------------
264 1.1 cgd */
265 1.1 cgd static int
266 1.1 cgd SuffSuffHasNameP (s, sname)
267 1.1 cgd Suff *s; /* Suffix to check */
268 1.1 cgd char *sname; /* Desired name */
269 1.1 cgd {
270 1.1 cgd return (strcmp (sname, s->name));
271 1.1 cgd }
272 1.1 cgd
273 1.1 cgd /*-
274 1.1 cgd *-----------------------------------------------------------------------
275 1.1 cgd * SuffSuffIsPrefix --
276 1.1 cgd * See if the suffix described by s is a prefix of the string. Care
277 1.1 cgd * must be taken when using this to search for transformations and
278 1.1 cgd * what-not, since there could well be two suffixes, one of which
279 1.1 cgd * is a prefix of the other...
280 1.1 cgd *
281 1.1 cgd * Results:
282 1.1 cgd * 0 if s is a prefix of str. non-zero otherwise
283 1.1 cgd *
284 1.1 cgd * Side Effects:
285 1.1 cgd * None
286 1.1 cgd *-----------------------------------------------------------------------
287 1.1 cgd */
288 1.1 cgd static int
289 1.1 cgd SuffSuffIsPrefix (s, str)
290 1.1 cgd Suff *s; /* suffix to compare */
291 1.1 cgd char *str; /* string to examine */
292 1.1 cgd {
293 1.1 cgd return (SuffStrIsPrefix (s->name, str) == NULL ? 1 : 0);
294 1.1 cgd }
295 1.1 cgd
296 1.1 cgd /*-
297 1.1 cgd *-----------------------------------------------------------------------
298 1.1 cgd * SuffGNHasNameP --
299 1.1 cgd * See if the graph node has the desired name
300 1.1 cgd *
301 1.1 cgd * Results:
302 1.1 cgd * 0 if it does. non-zero if it doesn't
303 1.1 cgd *
304 1.1 cgd * Side Effects:
305 1.1 cgd * None
306 1.1 cgd *-----------------------------------------------------------------------
307 1.1 cgd */
308 1.1 cgd static int
309 1.1 cgd SuffGNHasNameP (gn, name)
310 1.1 cgd GNode *gn; /* current node we're looking at */
311 1.1 cgd char *name; /* name we're looking for */
312 1.1 cgd {
313 1.1 cgd return (strcmp (name, gn->name));
314 1.1 cgd }
315 1.1 cgd
316 1.1 cgd /*********** Maintenance Functions ************/
317 1.1 cgd /*-
318 1.1 cgd *-----------------------------------------------------------------------
319 1.1 cgd * SuffFree --
320 1.1 cgd * Free up all memory associated with the given suffix structure.
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 suffix entry is detroyed
327 1.1 cgd *-----------------------------------------------------------------------
328 1.1 cgd */
329 1.1 cgd static void
330 1.1 cgd SuffFree (s)
331 1.1 cgd Suff *s;
332 1.1 cgd {
333 1.1 cgd Lst_Destroy (s->children, NOFREE);
334 1.1 cgd Lst_Destroy (s->parents, NOFREE);
335 1.1 cgd Lst_Destroy (s->searchPath, Dir_Destroy);
336 1.1 cgd free ((Address)s->name);
337 1.1 cgd free ((Address)s);
338 1.1 cgd }
339 1.1 cgd
340 1.1 cgd /*-
341 1.1 cgd *-----------------------------------------------------------------------
342 1.1 cgd * SuffInsert --
343 1.1 cgd * Insert the suffix into the list keeping the list ordered by suffix
344 1.1 cgd * numbers.
345 1.1 cgd *
346 1.1 cgd * Results:
347 1.1 cgd * None
348 1.1 cgd *
349 1.1 cgd * Side Effects:
350 1.1 cgd * Not really
351 1.1 cgd *-----------------------------------------------------------------------
352 1.1 cgd */
353 1.1 cgd static void
354 1.1 cgd SuffInsert (l, s)
355 1.1 cgd Lst l; /* the list where in s should be inserted */
356 1.1 cgd Suff *s; /* the suffix to insert */
357 1.1 cgd {
358 1.1 cgd LstNode ln; /* current element in l we're examining */
359 1.4 cgd Suff *s2 = NULL; /* the suffix descriptor in this element */
360 1.1 cgd
361 1.1 cgd if (Lst_Open (l) == FAILURE) {
362 1.1 cgd return;
363 1.1 cgd }
364 1.1 cgd while ((ln = Lst_Next (l)) != NILLNODE) {
365 1.1 cgd s2 = (Suff *) Lst_Datum (ln);
366 1.1 cgd if (s2->sNum >= s->sNum) {
367 1.1 cgd break;
368 1.1 cgd }
369 1.1 cgd }
370 1.1 cgd
371 1.1 cgd Lst_Close (l);
372 1.1 cgd if (DEBUG(SUFF)) {
373 1.1 cgd printf("inserting %s(%d)...", s->name, s->sNum);
374 1.1 cgd }
375 1.1 cgd if (ln == NILLNODE) {
376 1.1 cgd if (DEBUG(SUFF)) {
377 1.1 cgd printf("at end of list\n");
378 1.1 cgd }
379 1.1 cgd (void)Lst_AtEnd (l, (ClientData)s);
380 1.1 cgd } else if (s2->sNum != s->sNum) {
381 1.1 cgd if (DEBUG(SUFF)) {
382 1.1 cgd printf("before %s(%d)\n", s2->name, s2->sNum);
383 1.1 cgd }
384 1.1 cgd (void)Lst_Insert (l, ln, (ClientData)s);
385 1.1 cgd } else if (DEBUG(SUFF)) {
386 1.1 cgd printf("already there\n");
387 1.1 cgd }
388 1.1 cgd }
389 1.1 cgd
390 1.1 cgd /*-
391 1.1 cgd *-----------------------------------------------------------------------
392 1.1 cgd * Suff_ClearSuffixes --
393 1.1 cgd * This is gross. Nuke the list of suffixes but keep all transformation
394 1.1 cgd * rules around. The transformation graph is destroyed in this process,
395 1.1 cgd * but we leave the list of rules so when a new graph is formed the rules
396 1.1 cgd * will remain.
397 1.1 cgd * This function is called from the parse module when a
398 1.1 cgd * .SUFFIXES:\n line is encountered.
399 1.1 cgd *
400 1.1 cgd * Results:
401 1.1 cgd * none
402 1.1 cgd *
403 1.1 cgd * Side Effects:
404 1.1 cgd * the sufflist and its graph nodes are destroyed
405 1.1 cgd *-----------------------------------------------------------------------
406 1.1 cgd */
407 1.1 cgd void
408 1.1 cgd Suff_ClearSuffixes ()
409 1.1 cgd {
410 1.1 cgd Lst_Destroy (sufflist, SuffFree);
411 1.1 cgd
412 1.1 cgd sufflist = Lst_Init(FALSE);
413 1.1 cgd sNum = 0;
414 1.1 cgd suffNull = emptySuff;
415 1.1 cgd }
416 1.1 cgd
417 1.1 cgd /*-
418 1.1 cgd *-----------------------------------------------------------------------
419 1.1 cgd * SuffParseTransform --
420 1.1 cgd * Parse a transformation string to find its two component suffixes.
421 1.1 cgd *
422 1.1 cgd * Results:
423 1.1 cgd * TRUE if the string is a valid transformation and FALSE otherwise.
424 1.1 cgd *
425 1.1 cgd * Side Effects:
426 1.1 cgd * The passed pointers are overwritten.
427 1.1 cgd *
428 1.1 cgd *-----------------------------------------------------------------------
429 1.1 cgd */
430 1.1 cgd static Boolean
431 1.1 cgd SuffParseTransform(str, srcPtr, targPtr)
432 1.1 cgd char *str; /* String being parsed */
433 1.1 cgd Suff **srcPtr; /* Place to store source of trans. */
434 1.1 cgd Suff **targPtr; /* Place to store target of trans. */
435 1.1 cgd {
436 1.1 cgd register LstNode srcLn; /* element in suffix list of trans source*/
437 1.1 cgd register Suff *src; /* Source of transformation */
438 1.1 cgd register LstNode targLn; /* element in suffix list of trans target*/
439 1.1 cgd register char *str2; /* Extra pointer (maybe target suffix) */
440 1.1 cgd LstNode singleLn; /* element in suffix list of any suffix
441 1.1 cgd * that exactly matches str */
442 1.4 cgd Suff *single = NULL;/* Source of possible transformation to
443 1.1 cgd * null suffix */
444 1.1 cgd
445 1.1 cgd srcLn = NILLNODE;
446 1.1 cgd singleLn = NILLNODE;
447 1.1 cgd
448 1.1 cgd /*
449 1.1 cgd * Loop looking first for a suffix that matches the start of the
450 1.1 cgd * string and then for one that exactly matches the rest of it. If
451 1.1 cgd * we can find two that meet these criteria, we've successfully
452 1.1 cgd * parsed the string.
453 1.1 cgd */
454 1.4 cgd for (;;) {
455 1.1 cgd if (srcLn == NILLNODE) {
456 1.1 cgd srcLn = Lst_Find(sufflist, (ClientData)str, SuffSuffIsPrefix);
457 1.1 cgd } else {
458 1.1 cgd srcLn = Lst_FindFrom (sufflist, Lst_Succ(srcLn), (ClientData)str,
459 1.1 cgd SuffSuffIsPrefix);
460 1.1 cgd }
461 1.1 cgd if (srcLn == NILLNODE) {
462 1.1 cgd /*
463 1.1 cgd * Ran out of source suffixes -- no such rule
464 1.1 cgd */
465 1.1 cgd if (singleLn != NILLNODE) {
466 1.1 cgd /*
467 1.1 cgd * Not so fast Mr. Smith! There was a suffix that encompassed
468 1.1 cgd * the entire string, so we assume it was a transformation
469 1.1 cgd * to the null suffix (thank you POSIX). We still prefer to
470 1.1 cgd * find a double rule over a singleton, hence we leave this
471 1.1 cgd * check until the end.
472 1.1 cgd *
473 1.1 cgd * XXX: Use emptySuff over suffNull?
474 1.1 cgd */
475 1.1 cgd *srcPtr = single;
476 1.1 cgd *targPtr = suffNull;
477 1.1 cgd return(TRUE);
478 1.1 cgd }
479 1.1 cgd return (FALSE);
480 1.1 cgd }
481 1.1 cgd src = (Suff *) Lst_Datum (srcLn);
482 1.1 cgd str2 = str + src->nameLen;
483 1.1 cgd if (*str2 == '\0') {
484 1.1 cgd single = src;
485 1.1 cgd singleLn = srcLn;
486 1.1 cgd } else {
487 1.1 cgd targLn = Lst_Find(sufflist, (ClientData)str2, SuffSuffHasNameP);
488 1.1 cgd if (targLn != NILLNODE) {
489 1.1 cgd *srcPtr = src;
490 1.1 cgd *targPtr = (Suff *)Lst_Datum(targLn);
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
497 1.1 cgd /*-
498 1.1 cgd *-----------------------------------------------------------------------
499 1.1 cgd * Suff_IsTransform --
500 1.1 cgd * Return TRUE if the given string is a transformation rule
501 1.1 cgd *
502 1.1 cgd *
503 1.1 cgd * Results:
504 1.1 cgd * TRUE if the string is a concatenation of two known suffixes.
505 1.1 cgd * FALSE otherwise
506 1.1 cgd *
507 1.1 cgd * Side Effects:
508 1.1 cgd * None
509 1.1 cgd *-----------------------------------------------------------------------
510 1.1 cgd */
511 1.1 cgd Boolean
512 1.1 cgd Suff_IsTransform (str)
513 1.1 cgd char *str; /* string to check */
514 1.1 cgd {
515 1.1 cgd Suff *src, *targ;
516 1.1 cgd
517 1.1 cgd return (SuffParseTransform(str, &src, &targ));
518 1.1 cgd }
519 1.1 cgd
520 1.1 cgd /*-
521 1.1 cgd *-----------------------------------------------------------------------
522 1.1 cgd * Suff_AddTransform --
523 1.1 cgd * Add the transformation rule described by the line to the
524 1.1 cgd * list of rules and place the transformation itself in the graph
525 1.1 cgd *
526 1.1 cgd * Results:
527 1.1 cgd * The node created for the transformation in the transforms list
528 1.1 cgd *
529 1.1 cgd * Side Effects:
530 1.1 cgd * The node is placed on the end of the transforms Lst and links are
531 1.1 cgd * made between the two suffixes mentioned in the target name
532 1.1 cgd *-----------------------------------------------------------------------
533 1.1 cgd */
534 1.1 cgd GNode *
535 1.1 cgd Suff_AddTransform (line)
536 1.1 cgd char *line; /* name of transformation to add */
537 1.1 cgd {
538 1.1 cgd GNode *gn; /* GNode of transformation rule */
539 1.1 cgd Suff *s, /* source suffix */
540 1.1 cgd *t; /* target suffix */
541 1.1 cgd LstNode ln; /* Node for existing transformation */
542 1.1 cgd
543 1.1 cgd ln = Lst_Find (transforms, (ClientData)line, SuffGNHasNameP);
544 1.1 cgd if (ln == NILLNODE) {
545 1.1 cgd /*
546 1.1 cgd * Make a new graph node for the transformation. It will be filled in
547 1.1 cgd * by the Parse module.
548 1.1 cgd */
549 1.1 cgd gn = Targ_NewGN (line);
550 1.1 cgd (void)Lst_AtEnd (transforms, (ClientData)gn);
551 1.1 cgd } else {
552 1.1 cgd /*
553 1.1 cgd * New specification for transformation rule. Just nuke the old list
554 1.1 cgd * of commands so they can be filled in again... We don't actually
555 1.1 cgd * free the commands themselves, because a given command can be
556 1.1 cgd * attached to several different transformations.
557 1.1 cgd */
558 1.1 cgd gn = (GNode *) Lst_Datum (ln);
559 1.1 cgd Lst_Destroy (gn->commands, NOFREE);
560 1.1 cgd Lst_Destroy (gn->children, NOFREE);
561 1.1 cgd gn->commands = Lst_Init (FALSE);
562 1.1 cgd gn->children = Lst_Init (FALSE);
563 1.1 cgd }
564 1.1 cgd
565 1.1 cgd gn->type = OP_TRANSFORM;
566 1.1 cgd
567 1.1 cgd (void)SuffParseTransform(line, &s, &t);
568 1.1 cgd
569 1.1 cgd /*
570 1.1 cgd * link the two together in the proper relationship and order
571 1.1 cgd */
572 1.1 cgd if (DEBUG(SUFF)) {
573 1.1 cgd printf("defining transformation from `%s' to `%s'\n",
574 1.1 cgd s->name, t->name);
575 1.1 cgd }
576 1.1 cgd SuffInsert (t->children, s);
577 1.1 cgd SuffInsert (s->parents, t);
578 1.1 cgd
579 1.1 cgd return (gn);
580 1.1 cgd }
581 1.1 cgd
582 1.1 cgd /*-
583 1.1 cgd *-----------------------------------------------------------------------
584 1.1 cgd * Suff_EndTransform --
585 1.1 cgd * Handle the finish of a transformation definition, removing the
586 1.1 cgd * transformation from the graph if it has neither commands nor
587 1.1 cgd * sources. This is a callback procedure for the Parse module via
588 1.1 cgd * Lst_ForEach
589 1.1 cgd *
590 1.1 cgd * Results:
591 1.1 cgd * === 0
592 1.1 cgd *
593 1.1 cgd * Side Effects:
594 1.1 cgd * If the node has no commands or children, the children and parents
595 1.1 cgd * lists of the affected suffices are altered.
596 1.1 cgd *
597 1.1 cgd *-----------------------------------------------------------------------
598 1.1 cgd */
599 1.1 cgd int
600 1.1 cgd Suff_EndTransform(gn)
601 1.1 cgd GNode *gn; /* Node for transformation */
602 1.1 cgd {
603 1.1 cgd if ((gn->type & OP_TRANSFORM) && Lst_IsEmpty(gn->commands) &&
604 1.1 cgd Lst_IsEmpty(gn->children))
605 1.1 cgd {
606 1.1 cgd Suff *s, *t;
607 1.1 cgd LstNode ln;
608 1.1 cgd
609 1.1 cgd (void)SuffParseTransform(gn->name, &s, &t);
610 1.1 cgd
611 1.1 cgd if (DEBUG(SUFF)) {
612 1.1 cgd printf("deleting transformation from %s to %s\n",
613 1.1 cgd s->name, t->name);
614 1.1 cgd }
615 1.1 cgd
616 1.1 cgd /*
617 1.1 cgd * Remove the source from the target's children list. We check for a
618 1.1 cgd * nil return to handle a beanhead saying something like
619 1.1 cgd * .c.o .c.o:
620 1.1 cgd *
621 1.1 cgd * We'll be called twice when the next target is seen, but .c and .o
622 1.1 cgd * are only linked once...
623 1.1 cgd */
624 1.1 cgd ln = Lst_Member(t->children, (ClientData)s);
625 1.1 cgd if (ln != NILLNODE) {
626 1.1 cgd (void)Lst_Remove(t->children, ln);
627 1.1 cgd }
628 1.1 cgd
629 1.1 cgd /*
630 1.1 cgd * Remove the target from the source's parents list
631 1.1 cgd */
632 1.1 cgd ln = Lst_Member(s->parents, (ClientData)t);
633 1.1 cgd if (ln != NILLNODE) {
634 1.1 cgd (void)Lst_Remove(s->parents, ln);
635 1.1 cgd }
636 1.1 cgd } else if ((gn->type & OP_TRANSFORM) && DEBUG(SUFF)) {
637 1.1 cgd printf("transformation %s complete\n", gn->name);
638 1.1 cgd }
639 1.1 cgd
640 1.1 cgd return(0);
641 1.1 cgd }
642 1.1 cgd
643 1.1 cgd /*-
644 1.1 cgd *-----------------------------------------------------------------------
645 1.1 cgd * SuffRebuildGraph --
646 1.1 cgd * Called from Suff_AddSuffix via Lst_ForEach to search through the
647 1.1 cgd * list of existing transformation rules and rebuild the transformation
648 1.1 cgd * graph when it has been destroyed by Suff_ClearSuffixes. If the
649 1.1 cgd * given rule is a transformation involving this suffix and another,
650 1.1 cgd * existing suffix, the proper relationship is established between
651 1.1 cgd * the two.
652 1.1 cgd *
653 1.1 cgd * Results:
654 1.1 cgd * Always 0.
655 1.1 cgd *
656 1.1 cgd * Side Effects:
657 1.1 cgd * The appropriate links will be made between this suffix and
658 1.1 cgd * others if transformation rules exist for it.
659 1.1 cgd *
660 1.1 cgd *-----------------------------------------------------------------------
661 1.1 cgd */
662 1.1 cgd static int
663 1.1 cgd SuffRebuildGraph(transform, s)
664 1.1 cgd GNode *transform; /* Transformation to test */
665 1.1 cgd Suff *s; /* Suffix to rebuild */
666 1.1 cgd {
667 1.1 cgd register char *cp;
668 1.1 cgd register LstNode ln;
669 1.1 cgd register Suff *s2;
670 1.1 cgd
671 1.1 cgd /*
672 1.1 cgd * First see if it is a transformation from this suffix.
673 1.1 cgd */
674 1.1 cgd cp = SuffStrIsPrefix(s->name, transform->name);
675 1.1 cgd if (cp != (char *)NULL) {
676 1.1 cgd ln = Lst_Find(sufflist, (ClientData)cp, SuffSuffHasNameP);
677 1.1 cgd if (ln != NILLNODE) {
678 1.1 cgd /*
679 1.1 cgd * Found target. Link in and return, since it can't be anything
680 1.1 cgd * else.
681 1.1 cgd */
682 1.1 cgd s2 = (Suff *)Lst_Datum(ln);
683 1.1 cgd SuffInsert(s2->children, s);
684 1.1 cgd SuffInsert(s->parents, s2);
685 1.1 cgd return(0);
686 1.1 cgd }
687 1.1 cgd }
688 1.1 cgd
689 1.1 cgd /*
690 1.1 cgd * Not from, maybe to?
691 1.1 cgd */
692 1.1 cgd cp = SuffSuffIsSuffix(s, transform->name + strlen(transform->name));
693 1.1 cgd if (cp != (char *)NULL) {
694 1.1 cgd /*
695 1.1 cgd * Null-terminate the source suffix in order to find it.
696 1.1 cgd */
697 1.1 cgd cp[1] = '\0';
698 1.1 cgd ln = Lst_Find(sufflist, (ClientData)transform->name, SuffSuffHasNameP);
699 1.1 cgd /*
700 1.1 cgd * Replace the start of the target suffix
701 1.1 cgd */
702 1.1 cgd cp[1] = s->name[0];
703 1.1 cgd if (ln != NILLNODE) {
704 1.1 cgd /*
705 1.1 cgd * Found it -- establish the proper relationship
706 1.1 cgd */
707 1.1 cgd s2 = (Suff *)Lst_Datum(ln);
708 1.1 cgd SuffInsert(s->children, s2);
709 1.1 cgd SuffInsert(s2->parents, s);
710 1.1 cgd }
711 1.1 cgd }
712 1.1 cgd return(0);
713 1.1 cgd }
714 1.1 cgd
715 1.1 cgd /*-
716 1.1 cgd *-----------------------------------------------------------------------
717 1.1 cgd * Suff_AddSuffix --
718 1.1 cgd * Add the suffix in string to the end of the list of known suffixes.
719 1.1 cgd * Should we restructure the suffix graph? Make doesn't...
720 1.1 cgd *
721 1.1 cgd * Results:
722 1.1 cgd * None
723 1.1 cgd *
724 1.1 cgd * Side Effects:
725 1.1 cgd * A GNode is created for the suffix and a Suff structure is created and
726 1.1 cgd * added to the suffixes list unless the suffix was already known.
727 1.1 cgd *-----------------------------------------------------------------------
728 1.1 cgd */
729 1.1 cgd void
730 1.1 cgd Suff_AddSuffix (str)
731 1.1 cgd char *str; /* the name of the suffix to add */
732 1.1 cgd {
733 1.1 cgd Suff *s; /* new suffix descriptor */
734 1.1 cgd LstNode ln;
735 1.1 cgd
736 1.1 cgd ln = Lst_Find (sufflist, (ClientData)str, SuffSuffHasNameP);
737 1.1 cgd if (ln == NILLNODE) {
738 1.1 cgd s = (Suff *) emalloc (sizeof (Suff));
739 1.1 cgd
740 1.1 cgd s->name = strdup (str);
741 1.1 cgd s->nameLen = strlen (s->name);
742 1.1 cgd s->searchPath = Lst_Init (FALSE);
743 1.1 cgd s->children = Lst_Init (FALSE);
744 1.1 cgd s->parents = Lst_Init (FALSE);
745 1.1 cgd s->sNum = sNum++;
746 1.1 cgd s->flags = 0;
747 1.1 cgd
748 1.1 cgd (void)Lst_AtEnd (sufflist, (ClientData)s);
749 1.1 cgd /*
750 1.1 cgd * Look for any existing transformations from or to this suffix.
751 1.1 cgd * XXX: Only do this after a Suff_ClearSuffixes?
752 1.1 cgd */
753 1.1 cgd Lst_ForEach (transforms, SuffRebuildGraph, (ClientData)s);
754 1.1 cgd }
755 1.1 cgd }
756 1.1 cgd
757 1.1 cgd /*-
758 1.1 cgd *-----------------------------------------------------------------------
759 1.1 cgd * Suff_GetPath --
760 1.1 cgd * Return the search path for the given suffix, if it's defined.
761 1.1 cgd *
762 1.1 cgd * Results:
763 1.1 cgd * The searchPath for the desired suffix or NILLST if the suffix isn't
764 1.1 cgd * defined.
765 1.1 cgd *
766 1.1 cgd * Side Effects:
767 1.1 cgd * None
768 1.1 cgd *-----------------------------------------------------------------------
769 1.1 cgd */
770 1.1 cgd Lst
771 1.1 cgd Suff_GetPath (sname)
772 1.1 cgd char *sname;
773 1.1 cgd {
774 1.1 cgd LstNode ln;
775 1.1 cgd Suff *s;
776 1.1 cgd
777 1.1 cgd ln = Lst_Find (sufflist, (ClientData)sname, SuffSuffHasNameP);
778 1.1 cgd if (ln == NILLNODE) {
779 1.1 cgd return (NILLST);
780 1.1 cgd } else {
781 1.1 cgd s = (Suff *) Lst_Datum (ln);
782 1.1 cgd return (s->searchPath);
783 1.1 cgd }
784 1.1 cgd }
785 1.1 cgd
786 1.1 cgd /*-
787 1.1 cgd *-----------------------------------------------------------------------
788 1.1 cgd * Suff_DoPaths --
789 1.1 cgd * Extend the search paths for all suffixes to include the default
790 1.1 cgd * search path.
791 1.1 cgd *
792 1.1 cgd * Results:
793 1.1 cgd * None.
794 1.1 cgd *
795 1.1 cgd * Side Effects:
796 1.1 cgd * The searchPath field of all the suffixes is extended by the
797 1.1 cgd * directories in dirSearchPath. If paths were specified for the
798 1.1 cgd * ".h" suffix, the directories are stuffed into a global variable
799 1.1 cgd * called ".INCLUDES" with each directory preceeded by a -I. The same
800 1.1 cgd * is done for the ".a" suffix, except the variable is called
801 1.1 cgd * ".LIBS" and the flag is -L.
802 1.1 cgd *-----------------------------------------------------------------------
803 1.1 cgd */
804 1.1 cgd void
805 1.1 cgd Suff_DoPaths()
806 1.1 cgd {
807 1.1 cgd register Suff *s;
808 1.1 cgd register LstNode ln;
809 1.1 cgd Lst inIncludes; /* Cumulative .INCLUDES path */
810 1.1 cgd Lst inLibs; /* Cumulative .LIBS path */
811 1.1 cgd
812 1.1 cgd if (Lst_Open (sufflist) == FAILURE) {
813 1.1 cgd return;
814 1.1 cgd }
815 1.1 cgd
816 1.1 cgd inIncludes = Lst_Init(FALSE);
817 1.1 cgd inLibs = Lst_Init(FALSE);
818 1.1 cgd
819 1.1 cgd while ((ln = Lst_Next (sufflist)) != NILLNODE) {
820 1.1 cgd s = (Suff *) Lst_Datum (ln);
821 1.1 cgd if (!Lst_IsEmpty (s->searchPath)) {
822 1.1 cgd #ifdef INCLUDES
823 1.1 cgd if (s->flags & SUFF_INCLUDE) {
824 1.1 cgd Dir_Concat(inIncludes, s->searchPath);
825 1.1 cgd }
826 1.1 cgd #endif /* INCLUDES */
827 1.1 cgd #ifdef LIBRARIES
828 1.1 cgd if (s->flags & SUFF_LIBRARY) {
829 1.1 cgd Dir_Concat(inLibs, s->searchPath);
830 1.1 cgd }
831 1.1 cgd #endif /* LIBRARIES */
832 1.1 cgd Dir_Concat(s->searchPath, dirSearchPath);
833 1.1 cgd } else {
834 1.1 cgd Lst_Destroy (s->searchPath, Dir_Destroy);
835 1.1 cgd s->searchPath = Lst_Duplicate(dirSearchPath, Dir_CopyDir);
836 1.1 cgd }
837 1.1 cgd }
838 1.1 cgd
839 1.1 cgd Var_Set(".INCLUDES", Dir_MakeFlags("-I", inIncludes), VAR_GLOBAL);
840 1.1 cgd Var_Set(".LIBS", Dir_MakeFlags("-L", inLibs), VAR_GLOBAL);
841 1.1 cgd
842 1.1 cgd Lst_Destroy(inIncludes, Dir_Destroy);
843 1.1 cgd Lst_Destroy(inLibs, Dir_Destroy);
844 1.1 cgd
845 1.1 cgd Lst_Close (sufflist);
846 1.1 cgd }
847 1.1 cgd
848 1.1 cgd /*-
849 1.1 cgd *-----------------------------------------------------------------------
850 1.1 cgd * Suff_AddInclude --
851 1.1 cgd * Add the given suffix as a type of file which gets included.
852 1.1 cgd * Called from the parse module when a .INCLUDES line is parsed.
853 1.1 cgd * The suffix must have already been defined.
854 1.1 cgd *
855 1.1 cgd * Results:
856 1.1 cgd * None.
857 1.1 cgd *
858 1.1 cgd * Side Effects:
859 1.1 cgd * The SUFF_INCLUDE bit is set in the suffix's flags field
860 1.1 cgd *
861 1.1 cgd *-----------------------------------------------------------------------
862 1.1 cgd */
863 1.1 cgd void
864 1.1 cgd Suff_AddInclude (sname)
865 1.1 cgd char *sname; /* Name of suffix to mark */
866 1.1 cgd {
867 1.1 cgd LstNode ln;
868 1.1 cgd Suff *s;
869 1.1 cgd
870 1.1 cgd ln = Lst_Find (sufflist, (ClientData)sname, SuffSuffHasNameP);
871 1.1 cgd if (ln != NILLNODE) {
872 1.1 cgd s = (Suff *) Lst_Datum (ln);
873 1.1 cgd s->flags |= SUFF_INCLUDE;
874 1.1 cgd }
875 1.1 cgd }
876 1.1 cgd
877 1.1 cgd /*-
878 1.1 cgd *-----------------------------------------------------------------------
879 1.1 cgd * Suff_AddLib --
880 1.1 cgd * Add the given suffix as a type of file which is a library.
881 1.1 cgd * Called from the parse module when parsing a .LIBS line. The
882 1.1 cgd * suffix must have been defined via .SUFFIXES before this is
883 1.1 cgd * called.
884 1.1 cgd *
885 1.1 cgd * Results:
886 1.1 cgd * None.
887 1.1 cgd *
888 1.1 cgd * Side Effects:
889 1.1 cgd * The SUFF_LIBRARY bit is set in the suffix's flags field
890 1.1 cgd *
891 1.1 cgd *-----------------------------------------------------------------------
892 1.1 cgd */
893 1.1 cgd void
894 1.1 cgd Suff_AddLib (sname)
895 1.1 cgd char *sname; /* Name of suffix to mark */
896 1.1 cgd {
897 1.1 cgd LstNode ln;
898 1.1 cgd Suff *s;
899 1.1 cgd
900 1.1 cgd ln = Lst_Find (sufflist, (ClientData)sname, SuffSuffHasNameP);
901 1.1 cgd if (ln != NILLNODE) {
902 1.1 cgd s = (Suff *) Lst_Datum (ln);
903 1.1 cgd s->flags |= SUFF_LIBRARY;
904 1.1 cgd }
905 1.1 cgd }
906 1.1 cgd
907 1.1 cgd /********** Implicit Source Search Functions *********/
908 1.1 cgd
909 1.1 cgd /*-
910 1.1 cgd *-----------------------------------------------------------------------
911 1.1 cgd * SuffAddSrc --
912 1.1 cgd * Add a suffix as a Src structure to the given list with its parent
913 1.1 cgd * being the given Src structure. If the suffix is the null suffix,
914 1.1 cgd * the prefix is used unaltered as the file name in the Src structure.
915 1.1 cgd *
916 1.1 cgd * Results:
917 1.1 cgd * always returns 0
918 1.1 cgd *
919 1.1 cgd * Side Effects:
920 1.1 cgd * A Src structure is created and tacked onto the end of the list
921 1.1 cgd *-----------------------------------------------------------------------
922 1.1 cgd */
923 1.1 cgd static int
924 1.1 cgd SuffAddSrc (s, ls)
925 1.1 cgd Suff *s; /* suffix for which to create a Src structure */
926 1.1 cgd LstSrc *ls; /* list and parent for the new Src */
927 1.1 cgd {
928 1.1 cgd Src *s2; /* new Src structure */
929 1.1 cgd Src *targ; /* Target structure */
930 1.1 cgd
931 1.1 cgd targ = ls->s;
932 1.1 cgd
933 1.1 cgd if ((s->flags & SUFF_NULL) && (*s->name != '\0')) {
934 1.1 cgd /*
935 1.1 cgd * If the suffix has been marked as the NULL suffix, also create a Src
936 1.1 cgd * structure for a file with no suffix attached. Two birds, and all
937 1.1 cgd * that...
938 1.1 cgd */
939 1.1 cgd s2 = (Src *) emalloc (sizeof (Src));
940 1.1 cgd s2->file = strdup(targ->pref);
941 1.1 cgd s2->pref = targ->pref;
942 1.1 cgd s2->parent = targ;
943 1.1 cgd s2->node = NILGNODE;
944 1.1 cgd s2->suff = s;
945 1.1 cgd s2->children = 0;
946 1.1 cgd targ->children += 1;
947 1.1 cgd (void)Lst_AtEnd (ls->l, (ClientData)s2);
948 1.1 cgd }
949 1.1 cgd s2 = (Src *) emalloc (sizeof (Src));
950 1.1 cgd s2->file = str_concat (targ->pref, s->name, 0);
951 1.1 cgd s2->pref = targ->pref;
952 1.1 cgd s2->parent = targ;
953 1.1 cgd s2->node = NILGNODE;
954 1.1 cgd s2->suff = s;
955 1.1 cgd s2->children = 0;
956 1.1 cgd targ->children += 1;
957 1.1 cgd (void)Lst_AtEnd (ls->l, (ClientData)s2);
958 1.1 cgd
959 1.1 cgd return(0);
960 1.1 cgd }
961 1.1 cgd
962 1.1 cgd /*-
963 1.1 cgd *-----------------------------------------------------------------------
964 1.1 cgd * SuffAddLevel --
965 1.1 cgd * Add all the children of targ as Src structures to the given list
966 1.1 cgd *
967 1.1 cgd * Results:
968 1.1 cgd * None
969 1.1 cgd *
970 1.1 cgd * Side Effects:
971 1.1 cgd * Lots of structures are created and added to the list
972 1.1 cgd *-----------------------------------------------------------------------
973 1.1 cgd */
974 1.1 cgd static void
975 1.1 cgd SuffAddLevel (l, targ)
976 1.1 cgd Lst l; /* list to which to add the new level */
977 1.1 cgd Src *targ; /* Src structure to use as the parent */
978 1.1 cgd {
979 1.1 cgd LstSrc ls;
980 1.1 cgd
981 1.1 cgd ls.s = targ;
982 1.1 cgd ls.l = l;
983 1.1 cgd
984 1.1 cgd Lst_ForEach (targ->suff->children, SuffAddSrc, (ClientData)&ls);
985 1.1 cgd }
986 1.1 cgd
987 1.1 cgd /*-
988 1.1 cgd *----------------------------------------------------------------------
989 1.1 cgd * SuffFreeSrc --
990 1.1 cgd * Free all memory associated with a Src structure
991 1.1 cgd *
992 1.1 cgd * Results:
993 1.1 cgd * None
994 1.1 cgd *
995 1.1 cgd * Side Effects:
996 1.1 cgd * The memory is free'd.
997 1.1 cgd *----------------------------------------------------------------------
998 1.1 cgd */
999 1.1 cgd static void
1000 1.1 cgd SuffFreeSrc (s)
1001 1.1 cgd Src *s;
1002 1.1 cgd {
1003 1.1 cgd free ((Address)s->file);
1004 1.1 cgd if (!s->parent) {
1005 1.1 cgd free((Address)s->pref);
1006 1.1 cgd } else if (--s->parent->children == 0 && s->parent->parent) {
1007 1.1 cgd /*
1008 1.1 cgd * Parent has no more children, now we're gone, and it's not
1009 1.1 cgd * at the top of the tree, so blow it away too.
1010 1.1 cgd */
1011 1.1 cgd SuffFreeSrc(s->parent);
1012 1.1 cgd }
1013 1.1 cgd free ((Address)s);
1014 1.1 cgd }
1015 1.1 cgd
1016 1.1 cgd /*-
1017 1.1 cgd *-----------------------------------------------------------------------
1018 1.1 cgd * SuffFindThem --
1019 1.1 cgd * Find the first existing file/target in the list srcs
1020 1.1 cgd *
1021 1.1 cgd * Results:
1022 1.1 cgd * The lowest structure in the chain of transformations
1023 1.1 cgd *
1024 1.1 cgd * Side Effects:
1025 1.1 cgd * None
1026 1.1 cgd *-----------------------------------------------------------------------
1027 1.1 cgd */
1028 1.1 cgd static Src *
1029 1.1 cgd SuffFindThem (srcs)
1030 1.1 cgd Lst srcs; /* list of Src structures to search through */
1031 1.1 cgd {
1032 1.1 cgd Src *s; /* current Src */
1033 1.1 cgd Src *rs; /* returned Src */
1034 1.1 cgd
1035 1.1 cgd rs = (Src *) NULL;
1036 1.1 cgd
1037 1.1 cgd while (!Lst_IsEmpty (srcs)) {
1038 1.1 cgd s = (Src *) Lst_DeQueue (srcs);
1039 1.1 cgd
1040 1.1 cgd if (DEBUG(SUFF)) {
1041 1.1 cgd printf ("\ttrying %s...", s->file);
1042 1.1 cgd }
1043 1.1 cgd /*
1044 1.1 cgd * A file is considered to exist if either a node exists in the
1045 1.1 cgd * graph for it or the file actually exists.
1046 1.1 cgd */
1047 1.1 cgd if ((Targ_FindNode(s->file, TARG_NOCREATE) != NILGNODE) ||
1048 1.1 cgd (Dir_FindFile (s->file, s->suff->searchPath) != (char *) NULL))
1049 1.1 cgd {
1050 1.1 cgd if (DEBUG(SUFF)) {
1051 1.1 cgd printf ("got it\n");
1052 1.1 cgd }
1053 1.1 cgd rs = s;
1054 1.1 cgd break;
1055 1.1 cgd } else {
1056 1.1 cgd if (DEBUG(SUFF)) {
1057 1.1 cgd printf ("not there\n");
1058 1.1 cgd }
1059 1.1 cgd SuffAddLevel (srcs, s);
1060 1.1 cgd }
1061 1.1 cgd }
1062 1.1 cgd return (rs);
1063 1.1 cgd }
1064 1.1 cgd
1065 1.1 cgd /*-
1066 1.1 cgd *-----------------------------------------------------------------------
1067 1.1 cgd * SuffFindCmds --
1068 1.1 cgd * See if any of the children of the target in the Src structure is
1069 1.1 cgd * one from which the target can be transformed. If there is one,
1070 1.1 cgd * a Src structure is put together for it and returned.
1071 1.1 cgd *
1072 1.1 cgd * Results:
1073 1.1 cgd * The Src structure of the "winning" child, or NIL if no such beast.
1074 1.1 cgd *
1075 1.1 cgd * Side Effects:
1076 1.1 cgd * A Src structure may be allocated.
1077 1.1 cgd *
1078 1.1 cgd *-----------------------------------------------------------------------
1079 1.1 cgd */
1080 1.1 cgd static Src *
1081 1.1 cgd SuffFindCmds (targ)
1082 1.1 cgd Src *targ; /* Src structure to play with */
1083 1.1 cgd {
1084 1.1 cgd LstNode ln; /* General-purpose list node */
1085 1.1 cgd register GNode *t, /* Target GNode */
1086 1.1 cgd *s; /* Source GNode */
1087 1.1 cgd int prefLen;/* The length of the defined prefix */
1088 1.1 cgd Suff *suff; /* Suffix on matching beastie */
1089 1.1 cgd Src *ret; /* Return value */
1090 1.1 cgd char *cp;
1091 1.1 cgd
1092 1.1 cgd t = targ->node;
1093 1.1 cgd (void) Lst_Open (t->children);
1094 1.1 cgd prefLen = strlen (targ->pref);
1095 1.1 cgd
1096 1.1 cgd while ((ln = Lst_Next (t->children)) != NILLNODE) {
1097 1.1 cgd s = (GNode *)Lst_Datum (ln);
1098 1.1 cgd
1099 1.4 cgd cp = strrchr (s->name, '/');
1100 1.1 cgd if (cp == (char *)NULL) {
1101 1.1 cgd cp = s->name;
1102 1.1 cgd } else {
1103 1.1 cgd cp++;
1104 1.1 cgd }
1105 1.1 cgd if (strncmp (cp, targ->pref, prefLen) == 0) {
1106 1.1 cgd /*
1107 1.1 cgd * The node matches the prefix ok, see if it has a known
1108 1.1 cgd * suffix.
1109 1.1 cgd */
1110 1.1 cgd ln = Lst_Find (sufflist, (ClientData)&cp[prefLen],
1111 1.1 cgd SuffSuffHasNameP);
1112 1.1 cgd if (ln != NILLNODE) {
1113 1.1 cgd /*
1114 1.1 cgd * It even has a known suffix, see if there's a transformation
1115 1.1 cgd * defined between the node's suffix and the target's suffix.
1116 1.1 cgd *
1117 1.1 cgd * XXX: Handle multi-stage transformations here, too.
1118 1.1 cgd */
1119 1.1 cgd suff = (Suff *)Lst_Datum (ln);
1120 1.1 cgd
1121 1.1 cgd if (Lst_Member (suff->parents,
1122 1.1 cgd (ClientData)targ->suff) != NILLNODE)
1123 1.1 cgd {
1124 1.1 cgd /*
1125 1.1 cgd * Hot Damn! Create a new Src structure to describe
1126 1.1 cgd * this transformation (making sure to duplicate the
1127 1.1 cgd * source node's name so Suff_FindDeps can free it
1128 1.1 cgd * again (ick)), and return the new structure.
1129 1.1 cgd */
1130 1.1 cgd ret = (Src *)emalloc (sizeof(Src));
1131 1.1 cgd ret->file = strdup(s->name);
1132 1.1 cgd ret->pref = targ->pref;
1133 1.1 cgd ret->suff = suff;
1134 1.1 cgd ret->parent = targ;
1135 1.1 cgd ret->node = s;
1136 1.1 cgd ret->children = 0;
1137 1.1 cgd targ->children += 1;
1138 1.1 cgd if (DEBUG(SUFF)) {
1139 1.1 cgd printf ("\tusing existing source %s\n", s->name);
1140 1.1 cgd }
1141 1.1 cgd return (ret);
1142 1.1 cgd }
1143 1.1 cgd }
1144 1.1 cgd }
1145 1.1 cgd }
1146 1.1 cgd Lst_Close (t->children);
1147 1.1 cgd return ((Src *)NULL);
1148 1.1 cgd }
1149 1.1 cgd
1150 1.1 cgd /*-
1151 1.1 cgd *-----------------------------------------------------------------------
1152 1.1 cgd * SuffExpandChildren --
1153 1.1 cgd * Expand the names of any children of a given node that contain
1154 1.1 cgd * variable invocations or file wildcards into actual targets.
1155 1.1 cgd *
1156 1.1 cgd * Results:
1157 1.1 cgd * === 0 (continue)
1158 1.1 cgd *
1159 1.1 cgd * Side Effects:
1160 1.1 cgd * The expanded node is removed from the parent's list of children,
1161 1.1 cgd * and the parent's unmade counter is decremented, but other nodes
1162 1.1 cgd * may be added.
1163 1.1 cgd *
1164 1.1 cgd *-----------------------------------------------------------------------
1165 1.1 cgd */
1166 1.1 cgd static int
1167 1.1 cgd SuffExpandChildren(cgn, pgn)
1168 1.1 cgd GNode *cgn; /* Child to examine */
1169 1.1 cgd GNode *pgn; /* Parent node being processed */
1170 1.1 cgd {
1171 1.1 cgd GNode *gn; /* New source 8) */
1172 1.1 cgd LstNode prevLN; /* Node after which new source should be put */
1173 1.1 cgd LstNode ln; /* List element for old source */
1174 1.1 cgd char *cp; /* Expanded value */
1175 1.1 cgd
1176 1.1 cgd /*
1177 1.1 cgd * New nodes effectively take the place of the child, so place them
1178 1.1 cgd * after the child
1179 1.1 cgd */
1180 1.1 cgd prevLN = Lst_Member(pgn->children, (ClientData)cgn);
1181 1.1 cgd
1182 1.1 cgd /*
1183 1.1 cgd * First do variable expansion -- this takes precedence over
1184 1.1 cgd * wildcard expansion. If the result contains wildcards, they'll be gotten
1185 1.1 cgd * to later since the resulting words are tacked on to the end of
1186 1.1 cgd * the children list.
1187 1.1 cgd */
1188 1.4 cgd if (strchr(cgn->name, '$') != (char *)NULL) {
1189 1.1 cgd if (DEBUG(SUFF)) {
1190 1.1 cgd printf("Expanding \"%s\"...", cgn->name);
1191 1.1 cgd }
1192 1.4 cgd cp = Var_Subst(NULL, cgn->name, pgn, TRUE);
1193 1.1 cgd
1194 1.1 cgd if (cp != (char *)NULL) {
1195 1.1 cgd Lst members = Lst_Init(FALSE);
1196 1.1 cgd
1197 1.1 cgd if (cgn->type & OP_ARCHV) {
1198 1.1 cgd /*
1199 1.1 cgd * Node was an archive(member) target, so we want to call
1200 1.1 cgd * on the Arch module to find the nodes for us, expanding
1201 1.1 cgd * variables in the parent's context.
1202 1.1 cgd */
1203 1.1 cgd char *sacrifice = cp;
1204 1.1 cgd
1205 1.1 cgd (void)Arch_ParseArchive(&sacrifice, members, pgn);
1206 1.1 cgd } else {
1207 1.1 cgd /*
1208 1.1 cgd * Break the result into a vector of strings whose nodes
1209 1.1 cgd * we can find, then add those nodes to the members list.
1210 1.1 cgd * Unfortunately, we can't use brk_string b/c it
1211 1.1 cgd * doesn't understand about variable specifications with
1212 1.1 cgd * spaces in them...
1213 1.1 cgd */
1214 1.1 cgd char *start;
1215 1.1 cgd char *initcp = cp; /* For freeing... */
1216 1.1 cgd
1217 1.4 cgd for (start = cp; *start == ' ' || *start == '\t'; start++)
1218 1.4 cgd continue;
1219 1.1 cgd for (cp = start; *cp != '\0'; cp++) {
1220 1.1 cgd if (*cp == ' ' || *cp == '\t') {
1221 1.1 cgd /*
1222 1.1 cgd * White-space -- terminate element, find the node,
1223 1.1 cgd * add it, skip any further spaces.
1224 1.1 cgd */
1225 1.1 cgd *cp++ = '\0';
1226 1.1 cgd gn = Targ_FindNode(start, TARG_CREATE);
1227 1.1 cgd (void)Lst_AtEnd(members, (ClientData)gn);
1228 1.1 cgd while (*cp == ' ' || *cp == '\t') {
1229 1.1 cgd cp++;
1230 1.1 cgd }
1231 1.1 cgd /*
1232 1.1 cgd * Adjust cp for increment at start of loop, but
1233 1.1 cgd * set start to first non-space.
1234 1.1 cgd */
1235 1.1 cgd start = cp--;
1236 1.1 cgd } else if (*cp == '$') {
1237 1.1 cgd /*
1238 1.1 cgd * Start of a variable spec -- contact variable module
1239 1.1 cgd * to find the end so we can skip over it.
1240 1.1 cgd */
1241 1.1 cgd char *junk;
1242 1.1 cgd int len;
1243 1.1 cgd Boolean doFree;
1244 1.1 cgd
1245 1.1 cgd junk = Var_Parse(cp, pgn, TRUE, &len, &doFree);
1246 1.1 cgd if (junk != var_Error) {
1247 1.1 cgd cp += len - 1;
1248 1.1 cgd }
1249 1.1 cgd
1250 1.1 cgd if (doFree) {
1251 1.1 cgd free(junk);
1252 1.1 cgd }
1253 1.1 cgd } else if (*cp == '\\' && *cp != '\0') {
1254 1.1 cgd /*
1255 1.1 cgd * Escaped something -- skip over it
1256 1.1 cgd */
1257 1.1 cgd cp++;
1258 1.1 cgd }
1259 1.1 cgd }
1260 1.1 cgd
1261 1.1 cgd if (cp != start) {
1262 1.1 cgd /*
1263 1.1 cgd * Stuff left over -- add it to the list too
1264 1.1 cgd */
1265 1.1 cgd gn = Targ_FindNode(start, TARG_CREATE);
1266 1.1 cgd (void)Lst_AtEnd(members, (ClientData)gn);
1267 1.1 cgd }
1268 1.1 cgd /*
1269 1.1 cgd * Point cp back at the beginning again so the variable value
1270 1.1 cgd * can be freed.
1271 1.1 cgd */
1272 1.1 cgd cp = initcp;
1273 1.1 cgd }
1274 1.1 cgd /*
1275 1.1 cgd * Add all elements of the members list to the parent node.
1276 1.1 cgd */
1277 1.1 cgd while(!Lst_IsEmpty(members)) {
1278 1.1 cgd gn = (GNode *)Lst_DeQueue(members);
1279 1.1 cgd
1280 1.1 cgd if (DEBUG(SUFF)) {
1281 1.1 cgd printf("%s...", gn->name);
1282 1.1 cgd }
1283 1.1 cgd if (Lst_Member(pgn->children, (ClientData)gn) == NILLNODE) {
1284 1.1 cgd (void)Lst_Append(pgn->children, prevLN, (ClientData)gn);
1285 1.1 cgd prevLN = Lst_Succ(prevLN);
1286 1.1 cgd (void)Lst_AtEnd(gn->parents, (ClientData)pgn);
1287 1.1 cgd pgn->unmade++;
1288 1.1 cgd }
1289 1.1 cgd }
1290 1.1 cgd Lst_Destroy(members, NOFREE);
1291 1.1 cgd /*
1292 1.1 cgd * Free the result
1293 1.1 cgd */
1294 1.1 cgd free((char *)cp);
1295 1.1 cgd }
1296 1.1 cgd /*
1297 1.1 cgd * Now the source is expanded, remove it from the list of children to
1298 1.1 cgd * keep it from being processed.
1299 1.1 cgd */
1300 1.1 cgd ln = Lst_Member(pgn->children, (ClientData)cgn);
1301 1.1 cgd pgn->unmade--;
1302 1.1 cgd Lst_Remove(pgn->children, ln);
1303 1.1 cgd if (DEBUG(SUFF)) {
1304 1.1 cgd printf("\n");
1305 1.1 cgd }
1306 1.1 cgd } else if (Dir_HasWildcards(cgn->name)) {
1307 1.1 cgd Lst exp; /* List of expansions */
1308 1.1 cgd Lst path; /* Search path along which to expand */
1309 1.1 cgd
1310 1.1 cgd /*
1311 1.1 cgd * Find a path along which to expand the word.
1312 1.1 cgd *
1313 1.1 cgd * If the word has a known suffix, use that path.
1314 1.1 cgd * If it has no known suffix and we're allowed to use the null
1315 1.1 cgd * suffix, use its path.
1316 1.1 cgd * Else use the default system search path.
1317 1.1 cgd */
1318 1.1 cgd cp = cgn->name + strlen(cgn->name);
1319 1.1 cgd ln = Lst_Find(sufflist, (ClientData)cp, SuffSuffIsSuffixP);
1320 1.1 cgd
1321 1.1 cgd if (DEBUG(SUFF)) {
1322 1.1 cgd printf("Wildcard expanding \"%s\"...", cgn->name);
1323 1.1 cgd }
1324 1.1 cgd
1325 1.1 cgd if (ln != NILLNODE) {
1326 1.1 cgd Suff *s = (Suff *)Lst_Datum(ln);
1327 1.1 cgd
1328 1.1 cgd if (DEBUG(SUFF)) {
1329 1.1 cgd printf("suffix is \"%s\"...", s->name);
1330 1.1 cgd }
1331 1.1 cgd path = s->searchPath;
1332 1.1 cgd } else {
1333 1.1 cgd /*
1334 1.1 cgd * Use default search path
1335 1.1 cgd */
1336 1.1 cgd path = dirSearchPath;
1337 1.1 cgd }
1338 1.1 cgd
1339 1.1 cgd /*
1340 1.1 cgd * Expand the word along the chosen path
1341 1.1 cgd */
1342 1.1 cgd exp = Lst_Init(FALSE);
1343 1.1 cgd Dir_Expand(cgn->name, path, exp);
1344 1.1 cgd
1345 1.1 cgd while (!Lst_IsEmpty(exp)) {
1346 1.1 cgd /*
1347 1.1 cgd * Fetch next expansion off the list and find its GNode
1348 1.1 cgd */
1349 1.1 cgd cp = (char *)Lst_DeQueue(exp);
1350 1.1 cgd
1351 1.1 cgd if (DEBUG(SUFF)) {
1352 1.1 cgd printf("%s...", cp);
1353 1.1 cgd }
1354 1.1 cgd gn = Targ_FindNode(cp, TARG_CREATE);
1355 1.1 cgd
1356 1.1 cgd /*
1357 1.1 cgd * If gn isn't already a child of the parent, make it so and
1358 1.1 cgd * up the parent's count of unmade children.
1359 1.1 cgd */
1360 1.1 cgd if (Lst_Member(pgn->children, (ClientData)gn) == NILLNODE) {
1361 1.1 cgd (void)Lst_Append(pgn->children, prevLN, (ClientData)gn);
1362 1.1 cgd prevLN = Lst_Succ(prevLN);
1363 1.1 cgd (void)Lst_AtEnd(gn->parents, (ClientData)pgn);
1364 1.1 cgd pgn->unmade++;
1365 1.1 cgd }
1366 1.1 cgd }
1367 1.1 cgd
1368 1.1 cgd /*
1369 1.1 cgd * Nuke what's left of the list
1370 1.1 cgd */
1371 1.1 cgd Lst_Destroy(exp, NOFREE);
1372 1.1 cgd
1373 1.1 cgd /*
1374 1.1 cgd * Now the source is expanded, remove it from the list of children to
1375 1.1 cgd * keep it from being processed.
1376 1.1 cgd */
1377 1.1 cgd ln = Lst_Member(pgn->children, (ClientData)cgn);
1378 1.1 cgd pgn->unmade--;
1379 1.1 cgd Lst_Remove(pgn->children, ln);
1380 1.1 cgd if (DEBUG(SUFF)) {
1381 1.1 cgd printf("\n");
1382 1.1 cgd }
1383 1.1 cgd }
1384 1.1 cgd
1385 1.1 cgd return(0);
1386 1.1 cgd }
1387 1.1 cgd
1388 1.1 cgd /*-
1389 1.1 cgd *-----------------------------------------------------------------------
1390 1.1 cgd * SuffApplyTransform --
1391 1.1 cgd * Apply a transformation rule, given the source and target nodes
1392 1.1 cgd * and suffixes.
1393 1.1 cgd *
1394 1.1 cgd * Results:
1395 1.1 cgd * TRUE if successful, FALSE if not.
1396 1.1 cgd *
1397 1.1 cgd * Side Effects:
1398 1.1 cgd * The source and target are linked and the commands from the
1399 1.1 cgd * transformation are added to the target node's commands list.
1400 1.1 cgd * All attributes but OP_DEPMASK and OP_TRANSFORM are applied
1401 1.1 cgd * to the target. The target also inherits all the sources for
1402 1.1 cgd * the transformation rule.
1403 1.1 cgd *
1404 1.1 cgd *-----------------------------------------------------------------------
1405 1.1 cgd */
1406 1.1 cgd static Boolean
1407 1.1 cgd SuffApplyTransform(tGn, sGn, t, s)
1408 1.1 cgd GNode *tGn; /* Target node */
1409 1.1 cgd GNode *sGn; /* Source node */
1410 1.1 cgd Suff *t; /* Target suffix */
1411 1.1 cgd Suff *s; /* Source suffix */
1412 1.1 cgd {
1413 1.1 cgd LstNode ln; /* General node */
1414 1.1 cgd char *tname; /* Name of transformation rule */
1415 1.1 cgd GNode *gn; /* Node for same */
1416 1.1 cgd
1417 1.1 cgd if (Lst_Member(tGn->children, (ClientData)sGn) == NILLNODE) {
1418 1.1 cgd /*
1419 1.1 cgd * Not already linked, so form the proper links between the
1420 1.1 cgd * target and source.
1421 1.1 cgd */
1422 1.1 cgd (void)Lst_AtEnd(tGn->children, (ClientData)sGn);
1423 1.1 cgd (void)Lst_AtEnd(sGn->parents, (ClientData)tGn);
1424 1.1 cgd tGn->unmade += 1;
1425 1.1 cgd }
1426 1.1 cgd
1427 1.1 cgd if ((sGn->type & OP_OPMASK) == OP_DOUBLEDEP) {
1428 1.1 cgd /*
1429 1.1 cgd * When a :: node is used as the implied source of a node, we have
1430 1.1 cgd * to link all its cohorts in as sources as well. Only the initial
1431 1.1 cgd * sGn gets the target in its iParents list, however, as that
1432 1.1 cgd * will be sufficient to get the .IMPSRC variable set for tGn
1433 1.1 cgd */
1434 1.1 cgd for (ln=Lst_First(sGn->cohorts); ln != NILLNODE; ln=Lst_Succ(ln)) {
1435 1.1 cgd gn = (GNode *)Lst_Datum(ln);
1436 1.1 cgd
1437 1.1 cgd if (Lst_Member(tGn->children, (ClientData)gn) == NILLNODE) {
1438 1.1 cgd /*
1439 1.1 cgd * Not already linked, so form the proper links between the
1440 1.1 cgd * target and source.
1441 1.1 cgd */
1442 1.1 cgd (void)Lst_AtEnd(tGn->children, (ClientData)gn);
1443 1.1 cgd (void)Lst_AtEnd(gn->parents, (ClientData)tGn);
1444 1.1 cgd tGn->unmade += 1;
1445 1.1 cgd }
1446 1.1 cgd }
1447 1.1 cgd }
1448 1.1 cgd /*
1449 1.1 cgd * Locate the transformation rule itself
1450 1.1 cgd */
1451 1.1 cgd tname = str_concat(s->name, t->name, 0);
1452 1.1 cgd ln = Lst_Find(transforms, (ClientData)tname, SuffGNHasNameP);
1453 1.1 cgd free(tname);
1454 1.1 cgd
1455 1.1 cgd if (ln == NILLNODE) {
1456 1.1 cgd /*
1457 1.1 cgd * Not really such a transformation rule (can happen when we're
1458 1.1 cgd * called to link an OP_MEMBER and OP_ARCHV node), so return
1459 1.1 cgd * FALSE.
1460 1.1 cgd */
1461 1.1 cgd return(FALSE);
1462 1.1 cgd }
1463 1.1 cgd
1464 1.1 cgd gn = (GNode *)Lst_Datum(ln);
1465 1.1 cgd
1466 1.1 cgd if (DEBUG(SUFF)) {
1467 1.1 cgd printf("\tapplying %s -> %s to \"%s\"\n", s->name, t->name, tGn->name);
1468 1.1 cgd }
1469 1.1 cgd
1470 1.1 cgd /*
1471 1.1 cgd * Record last child for expansion purposes
1472 1.1 cgd */
1473 1.1 cgd ln = Lst_Last(tGn->children);
1474 1.1 cgd
1475 1.1 cgd /*
1476 1.1 cgd * Pass the buck to Make_HandleUse to apply the rule
1477 1.1 cgd */
1478 1.1 cgd (void)Make_HandleUse(gn, tGn);
1479 1.1 cgd
1480 1.1 cgd /*
1481 1.1 cgd * Deal with wildcards and variables in any acquired sources
1482 1.1 cgd */
1483 1.1 cgd ln = Lst_Succ(ln);
1484 1.1 cgd if (ln != NILLNODE) {
1485 1.1 cgd Lst_ForEachFrom(tGn->children, ln,
1486 1.1 cgd SuffExpandChildren, (ClientData)tGn);
1487 1.1 cgd }
1488 1.1 cgd
1489 1.1 cgd /*
1490 1.1 cgd * Keep track of another parent to which this beast is transformed so
1491 1.1 cgd * the .IMPSRC variable can be set correctly for the parent.
1492 1.1 cgd */
1493 1.1 cgd (void)Lst_AtEnd(sGn->iParents, (ClientData)tGn);
1494 1.1 cgd
1495 1.1 cgd return(TRUE);
1496 1.1 cgd }
1497 1.1 cgd
1498 1.1 cgd
1499 1.1 cgd /*-
1500 1.1 cgd *-----------------------------------------------------------------------
1501 1.1 cgd * SuffFindArchiveDeps --
1502 1.1 cgd * Locate dependencies for an OP_ARCHV node.
1503 1.1 cgd *
1504 1.1 cgd * Results:
1505 1.1 cgd * None
1506 1.1 cgd *
1507 1.1 cgd * Side Effects:
1508 1.1 cgd * Same as Suff_FindDeps
1509 1.1 cgd *
1510 1.1 cgd *-----------------------------------------------------------------------
1511 1.1 cgd */
1512 1.1 cgd static void
1513 1.1 cgd SuffFindArchiveDeps(gn)
1514 1.1 cgd GNode *gn; /* Node for which to locate dependencies */
1515 1.1 cgd {
1516 1.1 cgd char *eoarch; /* End of archive portion */
1517 1.1 cgd char *eoname; /* End of member portion */
1518 1.1 cgd GNode *mem; /* Node for member */
1519 1.1 cgd static char *copy[] = { /* Variables to be copied from the member node */
1520 1.1 cgd TARGET, /* Must be first */
1521 1.1 cgd PREFIX, /* Must be second */
1522 1.1 cgd };
1523 1.1 cgd char *vals[sizeof(copy)/sizeof(copy[0])];
1524 1.1 cgd int i; /* Index into copy and vals */
1525 1.1 cgd Suff *ms; /* Suffix descriptor for member */
1526 1.1 cgd char *name; /* Start of member's name */
1527 1.1 cgd
1528 1.1 cgd /*
1529 1.1 cgd * The node is an archive(member) pair. so we must find a
1530 1.1 cgd * suffix for both of them.
1531 1.1 cgd */
1532 1.4 cgd eoarch = strchr (gn->name, '(');
1533 1.4 cgd eoname = strchr (eoarch, ')');
1534 1.1 cgd
1535 1.1 cgd *eoname = '\0'; /* Nuke parentheses during suffix search */
1536 1.1 cgd *eoarch = '\0'; /* So a suffix can be found */
1537 1.1 cgd
1538 1.1 cgd name = eoarch + 1;
1539 1.1 cgd
1540 1.1 cgd /*
1541 1.1 cgd * To simplify things, call Suff_FindDeps recursively on the member now,
1542 1.1 cgd * so we can simply compare the member's .PREFIX and .TARGET variables
1543 1.1 cgd * to locate its suffix. This allows us to figure out the suffix to
1544 1.1 cgd * use for the archive without having to do a quadratic search over the
1545 1.1 cgd * suffix list, backtracking for each one...
1546 1.1 cgd */
1547 1.1 cgd mem = Targ_FindNode(name, TARG_CREATE);
1548 1.1 cgd Suff_FindDeps(mem);
1549 1.1 cgd
1550 1.1 cgd /*
1551 1.1 cgd * Create the link between the two nodes right off
1552 1.1 cgd */
1553 1.1 cgd if (Lst_Member(gn->children, (ClientData)mem) == NILLNODE) {
1554 1.1 cgd (void)Lst_AtEnd(gn->children, (ClientData)mem);
1555 1.1 cgd (void)Lst_AtEnd(mem->parents, (ClientData)gn);
1556 1.1 cgd gn->unmade += 1;
1557 1.1 cgd }
1558 1.1 cgd
1559 1.1 cgd /*
1560 1.1 cgd * Copy in the variables from the member node to this one.
1561 1.1 cgd */
1562 1.1 cgd for (i = (sizeof(copy)/sizeof(copy[0]))-1; i >= 0; i--) {
1563 1.1 cgd vals[i] = Var_Value(copy[i], mem);
1564 1.1 cgd Var_Set(copy[i], vals[i], gn);
1565 1.1 cgd }
1566 1.1 cgd
1567 1.1 cgd ms = mem->suffix;
1568 1.1 cgd if (ms == NULL) {
1569 1.1 cgd /*
1570 1.1 cgd * Didn't know what it was -- use .NULL suffix if not in make mode
1571 1.1 cgd */
1572 1.1 cgd if (DEBUG(SUFF)) {
1573 1.1 cgd printf("using null suffix\n");
1574 1.1 cgd }
1575 1.1 cgd ms = suffNull;
1576 1.1 cgd }
1577 1.1 cgd
1578 1.1 cgd
1579 1.1 cgd /*
1580 1.1 cgd * Set the other two local variables required for this target.
1581 1.1 cgd */
1582 1.1 cgd Var_Set (MEMBER, name, gn);
1583 1.1 cgd Var_Set (ARCHIVE, gn->name, gn);
1584 1.1 cgd
1585 1.1 cgd if (ms != NULL) {
1586 1.1 cgd /*
1587 1.1 cgd * Member has a known suffix, so look for a transformation rule from
1588 1.1 cgd * it to a possible suffix of the archive. Rather than searching
1589 1.1 cgd * through the entire list, we just look at suffixes to which the
1590 1.1 cgd * member's suffix may be transformed...
1591 1.1 cgd */
1592 1.1 cgd LstNode ln;
1593 1.1 cgd
1594 1.1 cgd /*
1595 1.1 cgd * Use first matching suffix...
1596 1.1 cgd */
1597 1.1 cgd ln = Lst_Find(ms->parents, eoarch, SuffSuffIsSuffixP);
1598 1.1 cgd
1599 1.1 cgd if (ln != NILLNODE) {
1600 1.1 cgd /*
1601 1.1 cgd * Got one -- apply it
1602 1.1 cgd */
1603 1.1 cgd if (!SuffApplyTransform(gn, mem, (Suff *)Lst_Datum(ln), ms) &&
1604 1.1 cgd DEBUG(SUFF))
1605 1.1 cgd {
1606 1.1 cgd printf("\tNo transformation from %s -> %s\n",
1607 1.1 cgd ms->name, ((Suff *)Lst_Datum(ln))->name);
1608 1.1 cgd }
1609 1.1 cgd }
1610 1.1 cgd }
1611 1.1 cgd
1612 1.1 cgd /*
1613 1.1 cgd * Replace the opening and closing parens now we've no need of the separate
1614 1.1 cgd * pieces.
1615 1.1 cgd */
1616 1.1 cgd *eoarch = '('; *eoname = ')';
1617 1.1 cgd
1618 1.1 cgd /*
1619 1.1 cgd * Pretend gn appeared to the left of a dependency operator so
1620 1.1 cgd * the user needn't provide a transformation from the member to the
1621 1.1 cgd * archive.
1622 1.1 cgd */
1623 1.1 cgd if (OP_NOP(gn->type)) {
1624 1.1 cgd gn->type |= OP_DEPENDS;
1625 1.1 cgd }
1626 1.1 cgd
1627 1.1 cgd /*
1628 1.1 cgd * Flag the member as such so we remember to look in the archive for
1629 1.1 cgd * its modification time.
1630 1.1 cgd */
1631 1.1 cgd mem->type |= OP_MEMBER;
1632 1.1 cgd }
1633 1.1 cgd
1634 1.1 cgd /*-
1635 1.1 cgd *-----------------------------------------------------------------------
1636 1.1 cgd * SuffFindNormalDeps --
1637 1.1 cgd * Locate implicit dependencies for regular targets.
1638 1.1 cgd *
1639 1.1 cgd * Results:
1640 1.1 cgd * None.
1641 1.1 cgd *
1642 1.1 cgd * Side Effects:
1643 1.1 cgd * Same as Suff_FindDeps...
1644 1.1 cgd *
1645 1.1 cgd *-----------------------------------------------------------------------
1646 1.1 cgd */
1647 1.1 cgd static void
1648 1.1 cgd SuffFindNormalDeps(gn)
1649 1.1 cgd GNode *gn; /* Node for which to find sources */
1650 1.1 cgd {
1651 1.1 cgd char *eoname; /* End of name */
1652 1.1 cgd char *sopref; /* Start of prefix */
1653 1.1 cgd LstNode ln; /* Next suffix node to check */
1654 1.1 cgd Lst srcs; /* List of sources at which to look */
1655 1.1 cgd Lst targs; /* List of targets to which things can be
1656 1.1 cgd * transformed. They all have the same file,
1657 1.1 cgd * but different suff and pref fields */
1658 1.1 cgd Src *bottom; /* Start of found transformation path */
1659 1.1 cgd Src *src; /* General Src pointer */
1660 1.1 cgd char *pref; /* Prefix to use */
1661 1.1 cgd Src *targ; /* General Src target pointer */
1662 1.1 cgd
1663 1.1 cgd
1664 1.1 cgd eoname = gn->name + strlen(gn->name);
1665 1.1 cgd
1666 1.1 cgd sopref = gn->name;
1667 1.1 cgd
1668 1.1 cgd /*
1669 1.1 cgd * Begin at the beginning...
1670 1.1 cgd */
1671 1.1 cgd ln = Lst_First(sufflist);
1672 1.1 cgd srcs = Lst_Init(FALSE);
1673 1.1 cgd targs = Lst_Init(FALSE);
1674 1.1 cgd
1675 1.1 cgd /*
1676 1.1 cgd * We're caught in a catch-22 here. On the one hand, we want to use any
1677 1.1 cgd * transformation implied by the target's sources, but we can't examine
1678 1.1 cgd * the sources until we've expanded any variables/wildcards they may hold,
1679 1.1 cgd * and we can't do that until we've set up the target's local variables
1680 1.1 cgd * and we can't do that until we know what the proper suffix for the
1681 1.1 cgd * target is (in case there are two suffixes one of which is a suffix of
1682 1.1 cgd * the other) and we can't know that until we've found its implied
1683 1.1 cgd * source, which we may not want to use if there's an existing source
1684 1.1 cgd * that implies a different transformation.
1685 1.1 cgd *
1686 1.1 cgd * In an attempt to get around this, which may not work all the time,
1687 1.1 cgd * but should work most of the time, we look for implied sources first,
1688 1.1 cgd * checking transformations to all possible suffixes of the target,
1689 1.1 cgd * use what we find to set the target's local variables, expand the
1690 1.1 cgd * children, then look for any overriding transformations they imply.
1691 1.1 cgd * Should we find one, we discard the one we found before.
1692 1.1 cgd */
1693 1.1 cgd while(ln != NILLNODE) {
1694 1.1 cgd /*
1695 1.1 cgd * Look for next possible suffix...
1696 1.1 cgd */
1697 1.1 cgd ln = Lst_FindFrom(sufflist, ln, eoname, SuffSuffIsSuffixP);
1698 1.1 cgd
1699 1.1 cgd if (ln != NILLNODE) {
1700 1.1 cgd int prefLen; /* Length of the prefix */
1701 1.1 cgd Src *targ;
1702 1.1 cgd
1703 1.1 cgd /*
1704 1.1 cgd * Allocate a Src structure to which things can be transformed
1705 1.1 cgd */
1706 1.1 cgd targ = (Src *)emalloc(sizeof(Src));
1707 1.1 cgd targ->file = strdup(gn->name);
1708 1.1 cgd targ->suff = (Suff *)Lst_Datum(ln);
1709 1.1 cgd targ->node = gn;
1710 1.1 cgd targ->parent = (Src *)NULL;
1711 1.4 cgd targ->children = 0;
1712 1.1 cgd
1713 1.1 cgd /*
1714 1.1 cgd * Allocate room for the prefix, whose end is found by subtracting
1715 1.1 cgd * the length of the suffix from the end of the name.
1716 1.1 cgd */
1717 1.1 cgd prefLen = (eoname - targ->suff->nameLen) - sopref;
1718 1.1 cgd targ->pref = emalloc(prefLen + 1);
1719 1.4 cgd memcpy(targ->pref, sopref, prefLen);
1720 1.1 cgd targ->pref[prefLen] = '\0';
1721 1.1 cgd
1722 1.1 cgd /*
1723 1.1 cgd * Add nodes from which the target can be made
1724 1.1 cgd */
1725 1.1 cgd SuffAddLevel(srcs, targ);
1726 1.1 cgd
1727 1.1 cgd /*
1728 1.1 cgd * Record the target so we can nuke it
1729 1.1 cgd */
1730 1.1 cgd (void)Lst_AtEnd(targs, (ClientData)targ);
1731 1.1 cgd
1732 1.1 cgd /*
1733 1.1 cgd * Search from this suffix's successor...
1734 1.1 cgd */
1735 1.1 cgd ln = Lst_Succ(ln);
1736 1.1 cgd }
1737 1.1 cgd }
1738 1.1 cgd
1739 1.1 cgd /*
1740 1.1 cgd * Handle target of unknown suffix...
1741 1.1 cgd */
1742 1.1 cgd if (Lst_IsEmpty(targs) && suffNull != NULL) {
1743 1.1 cgd if (DEBUG(SUFF)) {
1744 1.1 cgd printf("\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
1745 1.1 cgd }
1746 1.1 cgd
1747 1.1 cgd targ = (Src *)emalloc(sizeof(Src));
1748 1.1 cgd targ->file = strdup(gn->name);
1749 1.1 cgd targ->suff = suffNull;
1750 1.1 cgd targ->node = gn;
1751 1.1 cgd targ->parent = (Src *)NULL;
1752 1.4 cgd targ->children = 0;
1753 1.1 cgd targ->pref = strdup(sopref);
1754 1.1 cgd
1755 1.1 cgd SuffAddLevel(srcs, targ);
1756 1.1 cgd (void)Lst_AtEnd(targs, (ClientData)targ);
1757 1.1 cgd }
1758 1.1 cgd
1759 1.1 cgd /*
1760 1.1 cgd * Using the list of possible sources built up from the target suffix(es),
1761 1.1 cgd * try and find an existing file/target that matches.
1762 1.1 cgd */
1763 1.1 cgd bottom = SuffFindThem(srcs);
1764 1.1 cgd
1765 1.1 cgd if (bottom == (Src *)NULL) {
1766 1.1 cgd /*
1767 1.1 cgd * No known transformations -- use the first suffix found for setting
1768 1.1 cgd * the local variables.
1769 1.1 cgd */
1770 1.1 cgd if (!Lst_IsEmpty(targs)) {
1771 1.1 cgd targ = (Src *)Lst_Datum(Lst_First(targs));
1772 1.1 cgd } else {
1773 1.1 cgd targ = (Src *)NULL;
1774 1.1 cgd }
1775 1.1 cgd } else {
1776 1.1 cgd /*
1777 1.1 cgd * Work up the transformation path to find the suffix of the
1778 1.1 cgd * target to which the transformation was made.
1779 1.1 cgd */
1780 1.4 cgd for (targ = bottom; targ->parent != NULL; targ = targ->parent)
1781 1.4 cgd continue;
1782 1.1 cgd }
1783 1.1 cgd
1784 1.1 cgd /*
1785 1.1 cgd * The .TARGET variable we always set to be the name at this point,
1786 1.1 cgd * since it's only set to the path if the thing is only a source and
1787 1.1 cgd * if it's only a source, it doesn't matter what we put here as far
1788 1.1 cgd * as expanding sources is concerned, since it has none...
1789 1.1 cgd */
1790 1.1 cgd Var_Set(TARGET, gn->name, gn);
1791 1.1 cgd
1792 1.1 cgd pref = (targ != NULL) ? targ->pref : gn->name;
1793 1.1 cgd Var_Set(PREFIX, pref, gn);
1794 1.1 cgd
1795 1.1 cgd /*
1796 1.1 cgd * Now we've got the important local variables set, expand any sources
1797 1.1 cgd * that still contain variables or wildcards in their names.
1798 1.1 cgd */
1799 1.1 cgd Lst_ForEach(gn->children, SuffExpandChildren, (ClientData)gn);
1800 1.1 cgd
1801 1.1 cgd if (targ == NULL) {
1802 1.1 cgd if (DEBUG(SUFF)) {
1803 1.1 cgd printf("\tNo valid suffix on %s\n", gn->name);
1804 1.1 cgd }
1805 1.1 cgd
1806 1.1 cgd sfnd_abort:
1807 1.1 cgd /*
1808 1.1 cgd * Deal with finding the thing on the default search path if the
1809 1.1 cgd * node is only a source (not on the lhs of a dependency operator
1810 1.1 cgd * or [XXX] it has neither children or commands).
1811 1.1 cgd */
1812 1.1 cgd if (OP_NOP(gn->type) ||
1813 1.1 cgd (Lst_IsEmpty(gn->children) && Lst_IsEmpty(gn->commands)))
1814 1.1 cgd {
1815 1.1 cgd gn->path = Dir_FindFile(gn->name,
1816 1.1 cgd (targ == NULL ? dirSearchPath :
1817 1.1 cgd targ->suff->searchPath));
1818 1.1 cgd if (gn->path != NULL) {
1819 1.1 cgd Var_Set(TARGET, gn->path, gn);
1820 1.1 cgd
1821 1.1 cgd if (targ != NULL) {
1822 1.1 cgd /*
1823 1.1 cgd * Suffix known for the thing -- trim the suffix off
1824 1.1 cgd * the path to form the proper .PREFIX variable.
1825 1.1 cgd */
1826 1.1 cgd int len = strlen(gn->path);
1827 1.1 cgd char savec;
1828 1.1 cgd
1829 1.1 cgd gn->suffix = targ->suff;
1830 1.1 cgd
1831 1.1 cgd savec = gn->path[len-targ->suff->nameLen];
1832 1.1 cgd gn->path[len-targ->suff->nameLen] = '\0';
1833 1.1 cgd
1834 1.1 cgd Var_Set(PREFIX, gn->path, gn);
1835 1.1 cgd
1836 1.1 cgd gn->path[len-targ->suff->nameLen] = savec;
1837 1.1 cgd } else {
1838 1.1 cgd /*
1839 1.1 cgd * The .PREFIX gets the full path if the target has
1840 1.1 cgd * no known suffix.
1841 1.1 cgd */
1842 1.1 cgd gn->suffix = NULL;
1843 1.1 cgd
1844 1.1 cgd Var_Set(PREFIX, gn->path, gn);
1845 1.1 cgd }
1846 1.1 cgd }
1847 1.1 cgd } else {
1848 1.1 cgd /*
1849 1.1 cgd * Not appropriate to search for the thing -- set the
1850 1.1 cgd * path to be the name so Dir_MTime won't go grovelling for
1851 1.1 cgd * it.
1852 1.1 cgd */
1853 1.1 cgd gn->suffix = (targ == NULL) ? NULL : targ->suff;
1854 1.1 cgd gn->path = gn->name;
1855 1.1 cgd }
1856 1.1 cgd
1857 1.1 cgd goto sfnd_return;
1858 1.1 cgd }
1859 1.1 cgd
1860 1.1 cgd /*
1861 1.1 cgd * If the suffix indicates that the target is a library, mark that in
1862 1.1 cgd * the node's type field.
1863 1.1 cgd */
1864 1.1 cgd if (targ->suff->flags & SUFF_LIBRARY) {
1865 1.1 cgd gn->type |= OP_LIB;
1866 1.1 cgd }
1867 1.1 cgd
1868 1.1 cgd /*
1869 1.1 cgd * Check for overriding transformation rule implied by sources
1870 1.1 cgd */
1871 1.1 cgd if (!Lst_IsEmpty(gn->children)) {
1872 1.1 cgd src = SuffFindCmds(targ);
1873 1.1 cgd
1874 1.1 cgd if (src != (Src *)NULL) {
1875 1.1 cgd /*
1876 1.1 cgd * Free up all the Src structures in the transformation path
1877 1.1 cgd * up to, but not including, the parent node.
1878 1.1 cgd */
1879 1.1 cgd while (bottom && bottom->parent != NULL) {
1880 1.1 cgd Src *p = bottom->parent;
1881 1.1 cgd
1882 1.1 cgd SuffFreeSrc(bottom);
1883 1.1 cgd bottom = p;
1884 1.1 cgd }
1885 1.1 cgd bottom = src;
1886 1.1 cgd }
1887 1.1 cgd }
1888 1.1 cgd
1889 1.1 cgd if (bottom == NULL) {
1890 1.1 cgd /*
1891 1.1 cgd * No idea from where it can come -- return now.
1892 1.1 cgd */
1893 1.1 cgd goto sfnd_abort;
1894 1.1 cgd }
1895 1.1 cgd
1896 1.1 cgd /*
1897 1.1 cgd * We now have a list of Src structures headed by 'bottom' and linked via
1898 1.1 cgd * their 'parent' pointers. What we do next is create links between
1899 1.1 cgd * source and target nodes (which may or may not have been created)
1900 1.1 cgd * and set the necessary local variables in each target. The
1901 1.1 cgd * commands for each target are set from the commands of the
1902 1.1 cgd * transformation rule used to get from the src suffix to the targ
1903 1.1 cgd * suffix. Note that this causes the commands list of the original
1904 1.1 cgd * node, gn, to be replaced by the commands of the final
1905 1.1 cgd * transformation rule. Also, the unmade field of gn is incremented.
1906 1.1 cgd * Etc.
1907 1.1 cgd */
1908 1.1 cgd if (bottom->node == NILGNODE) {
1909 1.1 cgd bottom->node = Targ_FindNode(bottom->file, TARG_CREATE);
1910 1.1 cgd }
1911 1.1 cgd
1912 1.1 cgd for (src = bottom; src->parent != (Src *)NULL; src = src->parent) {
1913 1.1 cgd targ = src->parent;
1914 1.1 cgd
1915 1.1 cgd src->node->suffix = src->suff;
1916 1.1 cgd
1917 1.1 cgd if (targ->node == NILGNODE) {
1918 1.1 cgd targ->node = Targ_FindNode(targ->file, TARG_CREATE);
1919 1.1 cgd }
1920 1.1 cgd
1921 1.1 cgd SuffApplyTransform(targ->node, src->node,
1922 1.1 cgd targ->suff, src->suff);
1923 1.1 cgd
1924 1.1 cgd if (targ->node != gn) {
1925 1.1 cgd /*
1926 1.1 cgd * Finish off the dependency-search process for any nodes
1927 1.1 cgd * between bottom and gn (no point in questing around the
1928 1.1 cgd * filesystem for their implicit source when it's already
1929 1.1 cgd * known). Note that the node can't have any sources that
1930 1.1 cgd * need expanding, since SuffFindThem will stop on an existing
1931 1.1 cgd * node, so all we need to do is set the standard and System V
1932 1.1 cgd * variables.
1933 1.1 cgd */
1934 1.1 cgd targ->node->type |= OP_DEPS_FOUND;
1935 1.1 cgd
1936 1.1 cgd Var_Set(PREFIX, targ->pref, targ->node);
1937 1.1 cgd
1938 1.1 cgd Var_Set(TARGET, targ->node->name, targ->node);
1939 1.1 cgd }
1940 1.1 cgd }
1941 1.1 cgd
1942 1.1 cgd gn->suffix = src->suff;
1943 1.1 cgd
1944 1.1 cgd /*
1945 1.1 cgd * So Dir_MTime doesn't go questing for it...
1946 1.1 cgd */
1947 1.1 cgd gn->path = gn->name;
1948 1.1 cgd
1949 1.1 cgd /*
1950 1.1 cgd * Nuke the transformation path and the Src structures left over in the
1951 1.1 cgd * two lists.
1952 1.1 cgd */
1953 1.1 cgd SuffFreeSrc(bottom);
1954 1.1 cgd
1955 1.1 cgd sfnd_return:
1956 1.1 cgd Lst_Destroy(srcs, SuffFreeSrc);
1957 1.1 cgd Lst_Destroy(targs, SuffFreeSrc);
1958 1.1 cgd
1959 1.1 cgd }
1960 1.1 cgd
1961 1.1 cgd
1962 1.1 cgd
1963 1.1 cgd
1964 1.1 cgd /*-
1965 1.1 cgd *-----------------------------------------------------------------------
1966 1.1 cgd * Suff_FindDeps --
1967 1.1 cgd * Find implicit sources for the target described by the graph node
1968 1.1 cgd * gn
1969 1.1 cgd *
1970 1.1 cgd * Results:
1971 1.1 cgd * Nothing.
1972 1.1 cgd *
1973 1.1 cgd * Side Effects:
1974 1.1 cgd * Nodes are added to the graph below the passed-in node. The nodes
1975 1.1 cgd * are marked to have their IMPSRC variable filled in. The
1976 1.1 cgd * PREFIX variable is set for the given node and all its
1977 1.1 cgd * implied children.
1978 1.1 cgd *
1979 1.1 cgd * Notes:
1980 1.1 cgd * The path found by this target is the shortest path in the
1981 1.1 cgd * transformation graph, which may pass through non-existent targets,
1982 1.1 cgd * to an existing target. The search continues on all paths from the
1983 1.1 cgd * root suffix until a file is found. I.e. if there's a path
1984 1.1 cgd * .o -> .c -> .l -> .l,v from the root and the .l,v file exists but
1985 1.1 cgd * the .c and .l files don't, the search will branch out in
1986 1.1 cgd * all directions from .o and again from all the nodes on the
1987 1.1 cgd * next level until the .l,v node is encountered.
1988 1.1 cgd *
1989 1.1 cgd *-----------------------------------------------------------------------
1990 1.1 cgd */
1991 1.1 cgd void
1992 1.1 cgd Suff_FindDeps (gn)
1993 1.1 cgd GNode *gn; /* node we're dealing with */
1994 1.1 cgd {
1995 1.1 cgd if (gn->type & OP_DEPS_FOUND) {
1996 1.1 cgd /*
1997 1.1 cgd * If dependencies already found, no need to do it again...
1998 1.1 cgd */
1999 1.1 cgd return;
2000 1.1 cgd } else {
2001 1.1 cgd gn->type |= OP_DEPS_FOUND;
2002 1.1 cgd }
2003 1.1 cgd
2004 1.1 cgd if (DEBUG(SUFF)) {
2005 1.1 cgd printf ("Suff_FindDeps (%s)\n", gn->name);
2006 1.1 cgd }
2007 1.1 cgd
2008 1.1 cgd if (gn->type & OP_ARCHV) {
2009 1.1 cgd SuffFindArchiveDeps(gn);
2010 1.1 cgd } else if (gn->type & OP_LIB) {
2011 1.1 cgd /*
2012 1.1 cgd * If the node is a library, it is the arch module's job to find it
2013 1.1 cgd * and set the TARGET variable accordingly. We merely provide the
2014 1.1 cgd * search path, assuming all libraries end in ".a" (if the suffix
2015 1.1 cgd * hasn't been defined, there's nothing we can do for it, so we just
2016 1.1 cgd * set the TARGET variable to the node's name in order to give it a
2017 1.1 cgd * value).
2018 1.1 cgd */
2019 1.1 cgd LstNode ln;
2020 1.1 cgd Suff *s;
2021 1.1 cgd
2022 1.1 cgd ln = Lst_Find (sufflist, (ClientData)LIBSUFF, SuffSuffHasNameP);
2023 1.1 cgd if (ln != NILLNODE) {
2024 1.1 cgd gn->suffix = s = (Suff *) Lst_Datum (ln);
2025 1.1 cgd Arch_FindLib (gn, s->searchPath);
2026 1.1 cgd } else {
2027 1.1 cgd gn->suffix = NULL;
2028 1.1 cgd Var_Set (TARGET, gn->name, gn);
2029 1.1 cgd }
2030 1.1 cgd /*
2031 1.1 cgd * Because a library (-lfoo) target doesn't follow the standard
2032 1.1 cgd * filesystem conventions, we don't set the regular variables for
2033 1.1 cgd * the thing. .PREFIX is simply made empty...
2034 1.1 cgd */
2035 1.1 cgd Var_Set(PREFIX, "", gn);
2036 1.1 cgd } else {
2037 1.1 cgd SuffFindNormalDeps(gn);
2038 1.1 cgd }
2039 1.1 cgd }
2040 1.1 cgd
2041 1.1 cgd /*-
2042 1.1 cgd *-----------------------------------------------------------------------
2043 1.1 cgd * Suff_SetNull --
2044 1.1 cgd * Define which suffix is the null suffix.
2045 1.1 cgd *
2046 1.1 cgd * Results:
2047 1.1 cgd * None.
2048 1.1 cgd *
2049 1.1 cgd * Side Effects:
2050 1.1 cgd * 'suffNull' is altered.
2051 1.1 cgd *
2052 1.1 cgd * Notes:
2053 1.1 cgd * Need to handle the changing of the null suffix gracefully so the
2054 1.1 cgd * old transformation rules don't just go away.
2055 1.1 cgd *
2056 1.1 cgd *-----------------------------------------------------------------------
2057 1.1 cgd */
2058 1.1 cgd void
2059 1.1 cgd Suff_SetNull(name)
2060 1.1 cgd char *name; /* Name of null suffix */
2061 1.1 cgd {
2062 1.1 cgd Suff *s;
2063 1.1 cgd LstNode ln;
2064 1.1 cgd
2065 1.1 cgd ln = Lst_Find(sufflist, (ClientData)name, SuffSuffHasNameP);
2066 1.1 cgd if (ln != NILLNODE) {
2067 1.1 cgd s = (Suff *)Lst_Datum(ln);
2068 1.1 cgd if (suffNull != (Suff *)NULL) {
2069 1.1 cgd suffNull->flags &= ~SUFF_NULL;
2070 1.1 cgd }
2071 1.1 cgd s->flags |= SUFF_NULL;
2072 1.1 cgd /*
2073 1.1 cgd * XXX: Here's where the transformation mangling would take place
2074 1.1 cgd */
2075 1.1 cgd suffNull = s;
2076 1.1 cgd } else {
2077 1.1 cgd Parse_Error (PARSE_WARNING, "Desired null suffix %s not defined.",
2078 1.1 cgd name);
2079 1.1 cgd }
2080 1.1 cgd }
2081 1.1 cgd
2082 1.1 cgd /*-
2083 1.1 cgd *-----------------------------------------------------------------------
2084 1.1 cgd * Suff_Init --
2085 1.1 cgd * Initialize suffixes module
2086 1.1 cgd *
2087 1.1 cgd * Results:
2088 1.1 cgd * None
2089 1.1 cgd *
2090 1.1 cgd * Side Effects:
2091 1.1 cgd * Many
2092 1.1 cgd *-----------------------------------------------------------------------
2093 1.1 cgd */
2094 1.1 cgd void
2095 1.1 cgd Suff_Init ()
2096 1.1 cgd {
2097 1.1 cgd sufflist = Lst_Init (FALSE);
2098 1.1 cgd transforms = Lst_Init (FALSE);
2099 1.1 cgd
2100 1.1 cgd sNum = 0;
2101 1.1 cgd /*
2102 1.1 cgd * Create null suffix for single-suffix rules (POSIX). The thing doesn't
2103 1.1 cgd * actually go on the suffix list or everyone will think that's its
2104 1.1 cgd * suffix.
2105 1.1 cgd */
2106 1.1 cgd emptySuff = suffNull = (Suff *) emalloc (sizeof (Suff));
2107 1.1 cgd
2108 1.1 cgd suffNull->name = strdup ("");
2109 1.1 cgd suffNull->nameLen = 0;
2110 1.1 cgd suffNull->searchPath = Lst_Init (FALSE);
2111 1.4 cgd Dir_Concat(suffNull->searchPath, dirSearchPath);
2112 1.1 cgd suffNull->children = Lst_Init (FALSE);
2113 1.1 cgd suffNull->parents = Lst_Init (FALSE);
2114 1.1 cgd suffNull->sNum = sNum++;
2115 1.1 cgd suffNull->flags = SUFF_NULL;
2116 1.1 cgd
2117 1.1 cgd }
2118 1.1 cgd
2119 1.1 cgd /********************* DEBUGGING FUNCTIONS **********************/
2120 1.1 cgd
2121 1.1 cgd static int SuffPrintName(s) Suff *s; {printf ("%s ", s->name); return (0);}
2122 1.1 cgd
2123 1.1 cgd static int
2124 1.1 cgd SuffPrintSuff (s)
2125 1.1 cgd Suff *s;
2126 1.1 cgd {
2127 1.1 cgd int flags;
2128 1.1 cgd int flag;
2129 1.1 cgd
2130 1.1 cgd printf ("# `%s'", s->name);
2131 1.1 cgd
2132 1.1 cgd flags = s->flags;
2133 1.1 cgd if (flags) {
2134 1.1 cgd fputs (" (", stdout);
2135 1.1 cgd while (flags) {
2136 1.1 cgd flag = 1 << (ffs(flags) - 1);
2137 1.1 cgd flags &= ~flag;
2138 1.1 cgd switch (flag) {
2139 1.1 cgd case SUFF_NULL:
2140 1.1 cgd printf ("NULL");
2141 1.1 cgd break;
2142 1.1 cgd case SUFF_INCLUDE:
2143 1.1 cgd printf ("INCLUDE");
2144 1.1 cgd break;
2145 1.1 cgd case SUFF_LIBRARY:
2146 1.1 cgd printf ("LIBRARY");
2147 1.1 cgd break;
2148 1.1 cgd }
2149 1.4 cgd fputc(flags ? '|' : ')', stdout);
2150 1.1 cgd }
2151 1.1 cgd }
2152 1.4 cgd fputc ('\n', stdout);
2153 1.1 cgd printf ("#\tTo: ");
2154 1.1 cgd Lst_ForEach (s->parents, SuffPrintName, (ClientData)0);
2155 1.4 cgd fputc ('\n', stdout);
2156 1.1 cgd printf ("#\tFrom: ");
2157 1.1 cgd Lst_ForEach (s->children, SuffPrintName, (ClientData)0);
2158 1.4 cgd fputc ('\n', stdout);
2159 1.1 cgd printf ("#\tSearch Path: ");
2160 1.1 cgd Dir_PrintPath (s->searchPath);
2161 1.4 cgd fputc ('\n', stdout);
2162 1.1 cgd return (0);
2163 1.1 cgd }
2164 1.1 cgd
2165 1.1 cgd static int
2166 1.1 cgd SuffPrintTrans (t)
2167 1.1 cgd GNode *t;
2168 1.1 cgd {
2169 1.1 cgd extern int Targ_PrintCmd();
2170 1.1 cgd
2171 1.1 cgd printf ("%-16s: ", t->name);
2172 1.1 cgd Targ_PrintType (t->type);
2173 1.4 cgd fputc ('\n', stdout);
2174 1.1 cgd Lst_ForEach (t->commands, Targ_PrintCmd, (ClientData)0);
2175 1.4 cgd fputc ('\n', stdout);
2176 1.1 cgd return(0);
2177 1.1 cgd }
2178 1.1 cgd
2179 1.4 cgd void
2180 1.1 cgd Suff_PrintAll()
2181 1.1 cgd {
2182 1.1 cgd printf ("#*** Suffixes:\n");
2183 1.1 cgd Lst_ForEach (sufflist, SuffPrintSuff, (ClientData)0);
2184 1.1 cgd
2185 1.1 cgd printf ("#*** Transformations:\n");
2186 1.1 cgd Lst_ForEach (transforms, SuffPrintTrans, (ClientData)0);
2187 1.1 cgd }
2188 1.1 cgd
2189