svc.startd: remove metainit dependency
[unleashed.git] / bin / bmake / suff.c
blob97f745b07e47c576dbc80e5ffcff2792055710e3
1 /* $NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $ */
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
39 * This code is derived from software contributed to Berkeley by
40 * Adam de Boor.
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * SUCH DAMAGE.
71 #ifndef MAKE_NATIVE
72 static char rcsid[] = "$NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $";
73 #else
74 #include <sys/cdefs.h>
75 #ifndef lint
76 #if 0
77 static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94";
78 #else
79 __RCSID("$NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $");
80 #endif
81 #endif /* not lint */
82 #endif
84 /*-
85 * suff.c --
86 * Functions to maintain suffix lists and find implicit dependents
87 * using suffix transformation rules
89 * Interface:
90 * Suff_Init Initialize all things to do with suffixes.
92 * Suff_End Cleanup the module
94 * Suff_DoPaths This function is used to make life easier
95 * when searching for a file according to its
96 * suffix. It takes the global search path,
97 * as defined using the .PATH: target, and appends
98 * its directories to the path of each of the
99 * defined suffixes, as specified using
100 * .PATH<suffix>: targets. In addition, all
101 * directories given for suffixes labeled as
102 * include files or libraries, using the .INCLUDES
103 * or .LIBS targets, are played with using
104 * Dir_MakeFlags to create the .INCLUDES and
105 * .LIBS global variables.
107 * Suff_ClearSuffixes Clear out all the suffixes and defined
108 * transformations.
110 * Suff_IsTransform Return TRUE if the passed string is the lhs
111 * of a transformation rule.
113 * Suff_AddSuffix Add the passed string as another known suffix.
115 * Suff_GetPath Return the search path for the given suffix.
117 * Suff_AddInclude Mark the given suffix as denoting an include
118 * file.
120 * Suff_AddLib Mark the given suffix as denoting a library.
122 * Suff_AddTransform Add another transformation to the suffix
123 * graph. Returns GNode suitable for framing, I
124 * mean, tacking commands, attributes, etc. on.
126 * Suff_SetNull Define the suffix to consider the suffix of
127 * any file that doesn't have a known one.
129 * Suff_FindDeps Find implicit sources for and the location of
130 * a target based on its suffix. Returns the
131 * bottom-most node added to the graph or NULL
132 * if the target had no implicit sources.
134 * Suff_FindPath Return the appropriate path to search in
135 * order to find the node.
138 #include <stdio.h>
139 #include "make.h"
140 #include "hash.h"
141 #include "dir.h"
143 static Lst sufflist; /* Lst of suffixes */
144 #ifdef CLEANUP
145 static Lst suffClean; /* Lst of suffixes to be cleaned */
146 #endif
147 static Lst srclist; /* Lst of sources */
148 static Lst transforms; /* Lst of transformation rules */
150 static int sNum = 0; /* Counter for assigning suffix numbers */
153 * Structure describing an individual suffix.
155 typedef struct _Suff {
156 char *name; /* The suffix itself */
157 int nameLen; /* Length of the suffix */
158 short flags; /* Type of suffix */
159 #define SUFF_INCLUDE 0x01 /* One which is #include'd */
160 #define SUFF_LIBRARY 0x02 /* One which contains a library */
161 #define SUFF_NULL 0x04 /* The empty suffix */
162 Lst searchPath; /* The path along which files of this suffix
163 * may be found */
164 int sNum; /* The suffix number */
165 int refCount; /* Reference count of list membership */
166 Lst parents; /* Suffixes we have a transformation to */
167 Lst children; /* Suffixes we have a transformation from */
168 Lst ref; /* List of lists this suffix is referenced */
169 } Suff;
172 * for SuffSuffIsSuffix
174 typedef struct {
175 char *ename; /* The end of the name */
176 int len; /* Length of the name */
177 } SuffixCmpData;
180 * Structure used in the search for implied sources.
182 typedef struct _Src {
183 char *file; /* The file to look for */
184 char *pref; /* Prefix from which file was formed */
185 Suff *suff; /* The suffix on the file */
186 struct _Src *parent; /* The Src for which this is a source */
187 GNode *node; /* The node describing the file */
188 int children; /* Count of existing children (so we don't free
189 * this thing too early or never nuke it) */
190 #ifdef DEBUG_SRC
191 Lst cp; /* Debug; children list */
192 #endif
193 } Src;
196 * A structure for passing more than one argument to the Lst-library-invoked
197 * function...
199 typedef struct {
200 Lst l;
201 Src *s;
202 } LstSrc;
204 typedef struct {
205 GNode **gn;
206 Suff *s;
207 Boolean r;
208 } GNodeSuff;
210 static Suff *suffNull; /* The NULL suffix for this run */
211 static Suff *emptySuff; /* The empty suffix required for POSIX
212 * single-suffix transformation rules */
215 static const char *SuffStrIsPrefix(const char *, const char *);
216 static char *SuffSuffIsSuffix(const Suff *, const SuffixCmpData *);
217 static int SuffSuffIsSuffixP(const void *, const void *);
218 static int SuffSuffHasNameP(const void *, const void *);
219 static int SuffSuffIsPrefix(const void *, const void *);
220 static int SuffGNHasNameP(const void *, const void *);
221 static void SuffUnRef(void *, void *);
222 static void SuffFree(void *);
223 static void SuffInsert(Lst, Suff *);
224 static void SuffRemove(Lst, Suff *);
225 static Boolean SuffParseTransform(char *, Suff **, Suff **);
226 static int SuffRebuildGraph(void *, void *);
227 static int SuffScanTargets(void *, void *);
228 static int SuffAddSrc(void *, void *);
229 static int SuffRemoveSrc(Lst);
230 static void SuffAddLevel(Lst, Src *);
231 static Src *SuffFindThem(Lst, Lst);
232 static Src *SuffFindCmds(Src *, Lst);
233 static void SuffExpandChildren(LstNode, GNode *);
234 static void SuffExpandWildcards(LstNode, GNode *);
235 static Boolean SuffApplyTransform(GNode *, GNode *, Suff *, Suff *);
236 static void SuffFindDeps(GNode *, Lst);
237 static void SuffFindArchiveDeps(GNode *, Lst);
238 static void SuffFindNormalDeps(GNode *, Lst);
239 static int SuffPrintName(void *, void *);
240 static int SuffPrintSuff(void *, void *);
241 static int SuffPrintTrans(void *, void *);
243 /*************** Lst Predicates ****************/
245 *-----------------------------------------------------------------------
246 * SuffStrIsPrefix --
247 * See if pref is a prefix of str.
249 * Input:
250 * pref possible prefix
251 * str string to check
253 * Results:
254 * NULL if it ain't, pointer to character in str after prefix if so
256 * Side Effects:
257 * None
258 *-----------------------------------------------------------------------
260 static const char *
261 SuffStrIsPrefix(const char *pref, const char *str)
263 while (*str && *pref == *str) {
264 pref++;
265 str++;
268 return (*pref ? NULL : str);
272 *-----------------------------------------------------------------------
273 * SuffSuffIsSuffix --
274 * See if suff is a suffix of str. sd->ename should point to THE END
275 * of the string to check. (THE END == the null byte)
277 * Input:
278 * s possible suffix
279 * sd string to examine
281 * Results:
282 * NULL if it ain't, pointer to character in str before suffix if
283 * it is.
285 * Side Effects:
286 * None
287 *-----------------------------------------------------------------------
289 static char *
290 SuffSuffIsSuffix(const Suff *s, const SuffixCmpData *sd)
292 char *p1; /* Pointer into suffix name */
293 char *p2; /* Pointer into string being examined */
295 if (sd->len < s->nameLen)
296 return NULL; /* this string is shorter than the suffix */
298 p1 = s->name + s->nameLen;
299 p2 = sd->ename;
301 while (p1 >= s->name && *p1 == *p2) {
302 p1--;
303 p2--;
306 return (p1 == s->name - 1 ? p2 : NULL);
310 *-----------------------------------------------------------------------
311 * SuffSuffIsSuffixP --
312 * Predicate form of SuffSuffIsSuffix. Passed as the callback function
313 * to Lst_Find.
315 * Results:
316 * 0 if the suffix is the one desired, non-zero if not.
318 * Side Effects:
319 * None.
321 *-----------------------------------------------------------------------
323 static int
324 SuffSuffIsSuffixP(const void *s, const void *sd)
326 return(!SuffSuffIsSuffix(s, sd));
330 *-----------------------------------------------------------------------
331 * SuffSuffHasNameP --
332 * Callback procedure for finding a suffix based on its name. Used by
333 * Suff_GetPath.
335 * Input:
336 * s Suffix to check
337 * sd Desired name
339 * Results:
340 * 0 if the suffix is of the given name. non-zero otherwise.
342 * Side Effects:
343 * None
344 *-----------------------------------------------------------------------
346 static int
347 SuffSuffHasNameP(const void *s, const void *sname)
349 return (strcmp(sname, ((const Suff *)s)->name));
353 *-----------------------------------------------------------------------
354 * SuffSuffIsPrefix --
355 * See if the suffix described by s is a prefix of the string. Care
356 * must be taken when using this to search for transformations and
357 * what-not, since there could well be two suffixes, one of which
358 * is a prefix of the other...
360 * Input:
361 * s suffix to compare
362 * str string to examine
364 * Results:
365 * 0 if s is a prefix of str. non-zero otherwise
367 * Side Effects:
368 * None
369 *-----------------------------------------------------------------------
371 static int
372 SuffSuffIsPrefix(const void *s, const void *str)
374 return SuffStrIsPrefix(((const Suff *)s)->name, str) == NULL;
378 *-----------------------------------------------------------------------
379 * SuffGNHasNameP --
380 * See if the graph node has the desired name
382 * Input:
383 * gn current node we're looking at
384 * name name we're looking for
386 * Results:
387 * 0 if it does. non-zero if it doesn't
389 * Side Effects:
390 * None
391 *-----------------------------------------------------------------------
393 static int
394 SuffGNHasNameP(const void *gn, const void *name)
396 return (strcmp(name, ((const GNode *)gn)->name));
399 /*********** Maintenance Functions ************/
401 static void
402 SuffUnRef(void *lp, void *sp)
404 Lst l = (Lst) lp;
406 LstNode ln = Lst_Member(l, sp);
407 if (ln != NULL) {
408 Lst_Remove(l, ln);
409 ((Suff *)sp)->refCount--;
414 *-----------------------------------------------------------------------
415 * SuffFree --
416 * Free up all memory associated with the given suffix structure.
418 * Results:
419 * none
421 * Side Effects:
422 * the suffix entry is detroyed
423 *-----------------------------------------------------------------------
425 static void
426 SuffFree(void *sp)
428 Suff *s = (Suff *)sp;
430 if (s == suffNull)
431 suffNull = NULL;
433 if (s == emptySuff)
434 emptySuff = NULL;
436 #ifdef notdef
437 /* We don't delete suffixes in order, so we cannot use this */
438 if (s->refCount)
439 Punt("Internal error deleting suffix `%s' with refcount = %d", s->name,
440 s->refCount);
441 #endif
443 Lst_Destroy(s->ref, NULL);
444 Lst_Destroy(s->children, NULL);
445 Lst_Destroy(s->parents, NULL);
446 Lst_Destroy(s->searchPath, Dir_Destroy);
448 free(s->name);
449 free(s);
453 *-----------------------------------------------------------------------
454 * SuffRemove --
455 * Remove the suffix into the list
457 * Results:
458 * None
460 * Side Effects:
461 * The reference count for the suffix is decremented and the
462 * suffix is possibly freed
463 *-----------------------------------------------------------------------
465 static void
466 SuffRemove(Lst l, Suff *s)
468 SuffUnRef(l, s);
469 if (s->refCount == 0) {
470 SuffUnRef(sufflist, s);
471 SuffFree(s);
476 *-----------------------------------------------------------------------
477 * SuffInsert --
478 * Insert the suffix into the list keeping the list ordered by suffix
479 * numbers.
481 * Input:
482 * l the list where in s should be inserted
483 * s the suffix to insert
485 * Results:
486 * None
488 * Side Effects:
489 * The reference count of the suffix is incremented
490 *-----------------------------------------------------------------------
492 static void
493 SuffInsert(Lst l, Suff *s)
495 LstNode ln; /* current element in l we're examining */
496 Suff *s2 = NULL; /* the suffix descriptor in this element */
498 if (Lst_Open(l) == FAILURE) {
499 return;
501 while ((ln = Lst_Next(l)) != NULL) {
502 s2 = (Suff *)Lst_Datum(ln);
503 if (s2->sNum >= s->sNum) {
504 break;
508 Lst_Close(l);
509 if (DEBUG(SUFF)) {
510 fprintf(debug_file, "inserting %s(%d)...", s->name, s->sNum);
512 if (ln == NULL) {
513 if (DEBUG(SUFF)) {
514 fprintf(debug_file, "at end of list\n");
516 (void)Lst_AtEnd(l, s);
517 s->refCount++;
518 (void)Lst_AtEnd(s->ref, l);
519 } else if (s2->sNum != s->sNum) {
520 if (DEBUG(SUFF)) {
521 fprintf(debug_file, "before %s(%d)\n", s2->name, s2->sNum);
523 (void)Lst_InsertBefore(l, ln, s);
524 s->refCount++;
525 (void)Lst_AtEnd(s->ref, l);
526 } else if (DEBUG(SUFF)) {
527 fprintf(debug_file, "already there\n");
532 *-----------------------------------------------------------------------
533 * Suff_ClearSuffixes --
534 * This is gross. Nuke the list of suffixes but keep all transformation
535 * rules around. The transformation graph is destroyed in this process,
536 * but we leave the list of rules so when a new graph is formed the rules
537 * will remain.
538 * This function is called from the parse module when a
539 * .SUFFIXES:\n line is encountered.
541 * Results:
542 * none
544 * Side Effects:
545 * the sufflist and its graph nodes are destroyed
546 *-----------------------------------------------------------------------
548 void
549 Suff_ClearSuffixes(void)
551 #ifdef CLEANUP
552 Lst_Concat(suffClean, sufflist, LST_CONCLINK);
553 #endif
554 sufflist = Lst_Init(FALSE);
555 sNum = 0;
556 if (suffNull)
557 SuffFree(suffNull);
558 emptySuff = suffNull = bmake_malloc(sizeof(Suff));
560 suffNull->name = bmake_strdup("");
561 suffNull->nameLen = 0;
562 suffNull->searchPath = Lst_Init(FALSE);
563 Dir_Concat(suffNull->searchPath, dirSearchPath);
564 suffNull->children = Lst_Init(FALSE);
565 suffNull->parents = Lst_Init(FALSE);
566 suffNull->ref = Lst_Init(FALSE);
567 suffNull->sNum = sNum++;
568 suffNull->flags = SUFF_NULL;
569 suffNull->refCount = 1;
573 *-----------------------------------------------------------------------
574 * SuffParseTransform --
575 * Parse a transformation string to find its two component suffixes.
577 * Input:
578 * str String being parsed
579 * srcPtr Place to store source of trans.
580 * targPtr Place to store target of trans.
582 * Results:
583 * TRUE if the string is a valid transformation and FALSE otherwise.
585 * Side Effects:
586 * The passed pointers are overwritten.
588 *-----------------------------------------------------------------------
590 static Boolean
591 SuffParseTransform(char *str, Suff **srcPtr, Suff **targPtr)
593 LstNode srcLn; /* element in suffix list of trans source*/
594 Suff *src; /* Source of transformation */
595 LstNode targLn; /* element in suffix list of trans target*/
596 char *str2; /* Extra pointer (maybe target suffix) */
597 LstNode singleLn; /* element in suffix list of any suffix
598 * that exactly matches str */
599 Suff *single = NULL;/* Source of possible transformation to
600 * null suffix */
602 srcLn = NULL;
603 singleLn = NULL;
606 * Loop looking first for a suffix that matches the start of the
607 * string and then for one that exactly matches the rest of it. If
608 * we can find two that meet these criteria, we've successfully
609 * parsed the string.
611 for (;;) {
612 if (srcLn == NULL) {
613 srcLn = Lst_Find(sufflist, str, SuffSuffIsPrefix);
614 } else {
615 srcLn = Lst_FindFrom(sufflist, Lst_Succ(srcLn), str,
616 SuffSuffIsPrefix);
618 if (srcLn == NULL) {
620 * Ran out of source suffixes -- no such rule
622 if (singleLn != NULL) {
624 * Not so fast Mr. Smith! There was a suffix that encompassed
625 * the entire string, so we assume it was a transformation
626 * to the null suffix (thank you POSIX). We still prefer to
627 * find a double rule over a singleton, hence we leave this
628 * check until the end.
630 * XXX: Use emptySuff over suffNull?
632 *srcPtr = single;
633 *targPtr = suffNull;
634 return(TRUE);
636 return (FALSE);
638 src = (Suff *)Lst_Datum(srcLn);
639 str2 = str + src->nameLen;
640 if (*str2 == '\0') {
641 single = src;
642 singleLn = srcLn;
643 } else {
644 targLn = Lst_Find(sufflist, str2, SuffSuffHasNameP);
645 if (targLn != NULL) {
646 *srcPtr = src;
647 *targPtr = (Suff *)Lst_Datum(targLn);
648 return (TRUE);
655 *-----------------------------------------------------------------------
656 * Suff_IsTransform --
657 * Return TRUE if the given string is a transformation rule
660 * Input:
661 * str string to check
663 * Results:
664 * TRUE if the string is a concatenation of two known suffixes.
665 * FALSE otherwise
667 * Side Effects:
668 * None
669 *-----------------------------------------------------------------------
671 Boolean
672 Suff_IsTransform(char *str)
674 Suff *src, *targ;
676 return (SuffParseTransform(str, &src, &targ));
680 *-----------------------------------------------------------------------
681 * Suff_AddTransform --
682 * Add the transformation rule described by the line to the
683 * list of rules and place the transformation itself in the graph
685 * Input:
686 * line name of transformation to add
688 * Results:
689 * The node created for the transformation in the transforms list
691 * Side Effects:
692 * The node is placed on the end of the transforms Lst and links are
693 * made between the two suffixes mentioned in the target name
694 *-----------------------------------------------------------------------
696 GNode *
697 Suff_AddTransform(char *line)
699 GNode *gn; /* GNode of transformation rule */
700 Suff *s, /* source suffix */
701 *t; /* target suffix */
702 LstNode ln; /* Node for existing transformation */
704 ln = Lst_Find(transforms, line, SuffGNHasNameP);
705 if (ln == NULL) {
707 * Make a new graph node for the transformation. It will be filled in
708 * by the Parse module.
710 gn = Targ_NewGN(line);
711 (void)Lst_AtEnd(transforms, gn);
712 } else {
714 * New specification for transformation rule. Just nuke the old list
715 * of commands so they can be filled in again... We don't actually
716 * free the commands themselves, because a given command can be
717 * attached to several different transformations.
719 gn = (GNode *)Lst_Datum(ln);
720 Lst_Destroy(gn->commands, NULL);
721 Lst_Destroy(gn->children, NULL);
722 gn->commands = Lst_Init(FALSE);
723 gn->children = Lst_Init(FALSE);
726 gn->type = OP_TRANSFORM;
728 (void)SuffParseTransform(line, &s, &t);
731 * link the two together in the proper relationship and order
733 if (DEBUG(SUFF)) {
734 fprintf(debug_file, "defining transformation from `%s' to `%s'\n",
735 s->name, t->name);
737 SuffInsert(t->children, s);
738 SuffInsert(s->parents, t);
740 return (gn);
744 *-----------------------------------------------------------------------
745 * Suff_EndTransform --
746 * Handle the finish of a transformation definition, removing the
747 * transformation from the graph if it has neither commands nor
748 * sources. This is a callback procedure for the Parse module via
749 * Lst_ForEach
751 * Input:
752 * gnp Node for transformation
753 * dummy Node for transformation
755 * Results:
756 * === 0
758 * Side Effects:
759 * If the node has no commands or children, the children and parents
760 * lists of the affected suffixes are altered.
762 *-----------------------------------------------------------------------
765 Suff_EndTransform(void *gnp, void *dummy)
767 GNode *gn = (GNode *)gnp;
769 if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts))
770 gn = (GNode *)Lst_Datum(Lst_Last(gn->cohorts));
771 if ((gn->type & OP_TRANSFORM) && Lst_IsEmpty(gn->commands) &&
772 Lst_IsEmpty(gn->children))
774 Suff *s, *t;
777 * SuffParseTransform() may fail for special rules which are not
778 * actual transformation rules. (e.g. .DEFAULT)
780 if (SuffParseTransform(gn->name, &s, &t)) {
781 Lst p;
783 if (DEBUG(SUFF)) {
784 fprintf(debug_file, "deleting transformation from `%s' to `%s'\n",
785 s->name, t->name);
789 * Store s->parents because s could be deleted in SuffRemove
791 p = s->parents;
794 * Remove the source from the target's children list. We check for a
795 * nil return to handle a beanhead saying something like
796 * .c.o .c.o:
798 * We'll be called twice when the next target is seen, but .c and .o
799 * are only linked once...
801 SuffRemove(t->children, s);
804 * Remove the target from the source's parents list
806 SuffRemove(p, t);
808 } else if ((gn->type & OP_TRANSFORM) && DEBUG(SUFF)) {
809 fprintf(debug_file, "transformation %s complete\n", gn->name);
812 return(dummy ? 0 : 0);
816 *-----------------------------------------------------------------------
817 * SuffRebuildGraph --
818 * Called from Suff_AddSuffix via Lst_ForEach to search through the
819 * list of existing transformation rules and rebuild the transformation
820 * graph when it has been destroyed by Suff_ClearSuffixes. If the
821 * given rule is a transformation involving this suffix and another,
822 * existing suffix, the proper relationship is established between
823 * the two.
825 * Input:
826 * transformp Transformation to test
827 * sp Suffix to rebuild
829 * Results:
830 * Always 0.
832 * Side Effects:
833 * The appropriate links will be made between this suffix and
834 * others if transformation rules exist for it.
836 *-----------------------------------------------------------------------
838 static int
839 SuffRebuildGraph(void *transformp, void *sp)
841 GNode *transform = (GNode *)transformp;
842 Suff *s = (Suff *)sp;
843 char *cp;
844 LstNode ln;
845 Suff *s2;
846 SuffixCmpData sd;
849 * First see if it is a transformation from this suffix.
851 cp = UNCONST(SuffStrIsPrefix(s->name, transform->name));
852 if (cp != NULL) {
853 ln = Lst_Find(sufflist, cp, SuffSuffHasNameP);
854 if (ln != NULL) {
856 * Found target. Link in and return, since it can't be anything
857 * else.
859 s2 = (Suff *)Lst_Datum(ln);
860 SuffInsert(s2->children, s);
861 SuffInsert(s->parents, s2);
862 return(0);
867 * Not from, maybe to?
869 sd.len = strlen(transform->name);
870 sd.ename = transform->name + sd.len;
871 cp = SuffSuffIsSuffix(s, &sd);
872 if (cp != NULL) {
874 * Null-terminate the source suffix in order to find it.
876 cp[1] = '\0';
877 ln = Lst_Find(sufflist, transform->name, SuffSuffHasNameP);
879 * Replace the start of the target suffix
881 cp[1] = s->name[0];
882 if (ln != NULL) {
884 * Found it -- establish the proper relationship
886 s2 = (Suff *)Lst_Datum(ln);
887 SuffInsert(s->children, s2);
888 SuffInsert(s2->parents, s);
891 return(0);
895 *-----------------------------------------------------------------------
896 * SuffScanTargets --
897 * Called from Suff_AddSuffix via Lst_ForEach to search through the
898 * list of existing targets and find if any of the existing targets
899 * can be turned into a transformation rule.
901 * Results:
902 * 1 if a new main target has been selected, 0 otherwise.
904 * Side Effects:
905 * If such a target is found and the target is the current main
906 * target, the main target is set to NULL and the next target
907 * examined (if that exists) becomes the main target.
909 *-----------------------------------------------------------------------
911 static int
912 SuffScanTargets(void *targetp, void *gsp)
914 GNode *target = (GNode *)targetp;
915 GNodeSuff *gs = (GNodeSuff *)gsp;
916 Suff *s, *t;
917 char *ptr;
919 if (*gs->gn == NULL && gs->r && (target->type & OP_NOTARGET) == 0) {
920 *gs->gn = target;
921 Targ_SetMain(target);
922 return 1;
925 if ((unsigned int)target->type == OP_TRANSFORM)
926 return 0;
928 if ((ptr = strstr(target->name, gs->s->name)) == NULL ||
929 ptr == target->name)
930 return 0;
932 if (SuffParseTransform(target->name, &s, &t)) {
933 if (*gs->gn == target) {
934 gs->r = TRUE;
935 *gs->gn = NULL;
936 Targ_SetMain(NULL);
938 Lst_Destroy(target->children, NULL);
939 target->children = Lst_Init(FALSE);
940 target->type = OP_TRANSFORM;
942 * link the two together in the proper relationship and order
944 if (DEBUG(SUFF)) {
945 fprintf(debug_file, "defining transformation from `%s' to `%s'\n",
946 s->name, t->name);
948 SuffInsert(t->children, s);
949 SuffInsert(s->parents, t);
951 return 0;
955 *-----------------------------------------------------------------------
956 * Suff_AddSuffix --
957 * Add the suffix in string to the end of the list of known suffixes.
958 * Should we restructure the suffix graph? Make doesn't...
960 * Input:
961 * str the name of the suffix to add
963 * Results:
964 * None
966 * Side Effects:
967 * A GNode is created for the suffix and a Suff structure is created and
968 * added to the suffixes list unless the suffix was already known.
969 * The mainNode passed can be modified if a target mutated into a
970 * transform and that target happened to be the main target.
971 *-----------------------------------------------------------------------
973 void
974 Suff_AddSuffix(char *str, GNode **gn)
976 Suff *s; /* new suffix descriptor */
977 LstNode ln;
978 GNodeSuff gs;
980 ln = Lst_Find(sufflist, str, SuffSuffHasNameP);
981 if (ln == NULL) {
982 s = bmake_malloc(sizeof(Suff));
984 s->name = bmake_strdup(str);
985 s->nameLen = strlen(s->name);
986 s->searchPath = Lst_Init(FALSE);
987 s->children = Lst_Init(FALSE);
988 s->parents = Lst_Init(FALSE);
989 s->ref = Lst_Init(FALSE);
990 s->sNum = sNum++;
991 s->flags = 0;
992 s->refCount = 1;
994 (void)Lst_AtEnd(sufflist, s);
996 * We also look at our existing targets list to see if adding
997 * this suffix will make one of our current targets mutate into
998 * a suffix rule. This is ugly, but other makes treat all targets
999 * that start with a . as suffix rules.
1001 gs.gn = gn;
1002 gs.s = s;
1003 gs.r = FALSE;
1004 Lst_ForEach(Targ_List(), SuffScanTargets, &gs);
1006 * Look for any existing transformations from or to this suffix.
1007 * XXX: Only do this after a Suff_ClearSuffixes?
1009 Lst_ForEach(transforms, SuffRebuildGraph, s);
1014 *-----------------------------------------------------------------------
1015 * Suff_GetPath --
1016 * Return the search path for the given suffix, if it's defined.
1018 * Results:
1019 * The searchPath for the desired suffix or NULL if the suffix isn't
1020 * defined.
1022 * Side Effects:
1023 * None
1024 *-----------------------------------------------------------------------
1027 Suff_GetPath(char *sname)
1029 LstNode ln;
1030 Suff *s;
1032 ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
1033 if (ln == NULL) {
1034 return NULL;
1035 } else {
1036 s = (Suff *)Lst_Datum(ln);
1037 return (s->searchPath);
1042 *-----------------------------------------------------------------------
1043 * Suff_DoPaths --
1044 * Extend the search paths for all suffixes to include the default
1045 * search path.
1047 * Results:
1048 * None.
1050 * Side Effects:
1051 * The searchPath field of all the suffixes is extended by the
1052 * directories in dirSearchPath. If paths were specified for the
1053 * ".h" suffix, the directories are stuffed into a global variable
1054 * called ".INCLUDES" with each directory preceded by a -I. The same
1055 * is done for the ".a" suffix, except the variable is called
1056 * ".LIBS" and the flag is -L.
1057 *-----------------------------------------------------------------------
1059 void
1060 Suff_DoPaths(void)
1062 Suff *s;
1063 LstNode ln;
1064 char *ptr;
1065 Lst inIncludes; /* Cumulative .INCLUDES path */
1066 Lst inLibs; /* Cumulative .LIBS path */
1068 if (Lst_Open(sufflist) == FAILURE) {
1069 return;
1072 inIncludes = Lst_Init(FALSE);
1073 inLibs = Lst_Init(FALSE);
1075 while ((ln = Lst_Next(sufflist)) != NULL) {
1076 s = (Suff *)Lst_Datum(ln);
1077 if (!Lst_IsEmpty (s->searchPath)) {
1078 #ifdef INCLUDES
1079 if (s->flags & SUFF_INCLUDE) {
1080 Dir_Concat(inIncludes, s->searchPath);
1082 #endif /* INCLUDES */
1083 #ifdef LIBRARIES
1084 if (s->flags & SUFF_LIBRARY) {
1085 Dir_Concat(inLibs, s->searchPath);
1087 #endif /* LIBRARIES */
1088 Dir_Concat(s->searchPath, dirSearchPath);
1089 } else {
1090 Lst_Destroy(s->searchPath, Dir_Destroy);
1091 s->searchPath = Lst_Duplicate(dirSearchPath, Dir_CopyDir);
1095 Var_Set(".INCLUDES", ptr = Dir_MakeFlags("-I", inIncludes), VAR_GLOBAL, 0);
1096 free(ptr);
1097 Var_Set(".LIBS", ptr = Dir_MakeFlags("-L", inLibs), VAR_GLOBAL, 0);
1098 free(ptr);
1100 Lst_Destroy(inIncludes, Dir_Destroy);
1101 Lst_Destroy(inLibs, Dir_Destroy);
1103 Lst_Close(sufflist);
1107 *-----------------------------------------------------------------------
1108 * Suff_AddInclude --
1109 * Add the given suffix as a type of file which gets included.
1110 * Called from the parse module when a .INCLUDES line is parsed.
1111 * The suffix must have already been defined.
1113 * Input:
1114 * sname Name of the suffix to mark
1116 * Results:
1117 * None.
1119 * Side Effects:
1120 * The SUFF_INCLUDE bit is set in the suffix's flags field
1122 *-----------------------------------------------------------------------
1124 void
1125 Suff_AddInclude(char *sname)
1127 LstNode ln;
1128 Suff *s;
1130 ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
1131 if (ln != NULL) {
1132 s = (Suff *)Lst_Datum(ln);
1133 s->flags |= SUFF_INCLUDE;
1138 *-----------------------------------------------------------------------
1139 * Suff_AddLib --
1140 * Add the given suffix as a type of file which is a library.
1141 * Called from the parse module when parsing a .LIBS line. The
1142 * suffix must have been defined via .SUFFIXES before this is
1143 * called.
1145 * Input:
1146 * sname Name of the suffix to mark
1148 * Results:
1149 * None.
1151 * Side Effects:
1152 * The SUFF_LIBRARY bit is set in the suffix's flags field
1154 *-----------------------------------------------------------------------
1156 void
1157 Suff_AddLib(char *sname)
1159 LstNode ln;
1160 Suff *s;
1162 ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
1163 if (ln != NULL) {
1164 s = (Suff *)Lst_Datum(ln);
1165 s->flags |= SUFF_LIBRARY;
1169 /********** Implicit Source Search Functions *********/
1172 *-----------------------------------------------------------------------
1173 * SuffAddSrc --
1174 * Add a suffix as a Src structure to the given list with its parent
1175 * being the given Src structure. If the suffix is the null suffix,
1176 * the prefix is used unaltered as the file name in the Src structure.
1178 * Input:
1179 * sp suffix for which to create a Src structure
1180 * lsp list and parent for the new Src
1182 * Results:
1183 * always returns 0
1185 * Side Effects:
1186 * A Src structure is created and tacked onto the end of the list
1187 *-----------------------------------------------------------------------
1189 static int
1190 SuffAddSrc(void *sp, void *lsp)
1192 Suff *s = (Suff *)sp;
1193 LstSrc *ls = (LstSrc *)lsp;
1194 Src *s2; /* new Src structure */
1195 Src *targ; /* Target structure */
1197 targ = ls->s;
1199 if ((s->flags & SUFF_NULL) && (*s->name != '\0')) {
1201 * If the suffix has been marked as the NULL suffix, also create a Src
1202 * structure for a file with no suffix attached. Two birds, and all
1203 * that...
1205 s2 = bmake_malloc(sizeof(Src));
1206 s2->file = bmake_strdup(targ->pref);
1207 s2->pref = targ->pref;
1208 s2->parent = targ;
1209 s2->node = NULL;
1210 s2->suff = s;
1211 s->refCount++;
1212 s2->children = 0;
1213 targ->children += 1;
1214 (void)Lst_AtEnd(ls->l, s2);
1215 #ifdef DEBUG_SRC
1216 s2->cp = Lst_Init(FALSE);
1217 Lst_AtEnd(targ->cp, s2);
1218 fprintf(debug_file, "1 add %x %x to %x:", targ, s2, ls->l);
1219 Lst_ForEach(ls->l, PrintAddr, NULL);
1220 fprintf(debug_file, "\n");
1221 #endif
1223 s2 = bmake_malloc(sizeof(Src));
1224 s2->file = str_concat(targ->pref, s->name, 0);
1225 s2->pref = targ->pref;
1226 s2->parent = targ;
1227 s2->node = NULL;
1228 s2->suff = s;
1229 s->refCount++;
1230 s2->children = 0;
1231 targ->children += 1;
1232 (void)Lst_AtEnd(ls->l, s2);
1233 #ifdef DEBUG_SRC
1234 s2->cp = Lst_Init(FALSE);
1235 Lst_AtEnd(targ->cp, s2);
1236 fprintf(debug_file, "2 add %x %x to %x:", targ, s2, ls->l);
1237 Lst_ForEach(ls->l, PrintAddr, NULL);
1238 fprintf(debug_file, "\n");
1239 #endif
1241 return(0);
1245 *-----------------------------------------------------------------------
1246 * SuffAddLevel --
1247 * Add all the children of targ as Src structures to the given list
1249 * Input:
1250 * l list to which to add the new level
1251 * targ Src structure to use as the parent
1253 * Results:
1254 * None
1256 * Side Effects:
1257 * Lots of structures are created and added to the list
1258 *-----------------------------------------------------------------------
1260 static void
1261 SuffAddLevel(Lst l, Src *targ)
1263 LstSrc ls;
1265 ls.s = targ;
1266 ls.l = l;
1268 Lst_ForEach(targ->suff->children, SuffAddSrc, &ls);
1272 *----------------------------------------------------------------------
1273 * SuffRemoveSrc --
1274 * Free all src structures in list that don't have a reference count
1276 * Results:
1277 * Ture if an src was removed
1279 * Side Effects:
1280 * The memory is free'd.
1281 *----------------------------------------------------------------------
1283 static int
1284 SuffRemoveSrc(Lst l)
1286 LstNode ln;
1287 Src *s;
1288 int t = 0;
1290 if (Lst_Open(l) == FAILURE) {
1291 return 0;
1293 #ifdef DEBUG_SRC
1294 fprintf(debug_file, "cleaning %lx: ", (unsigned long) l);
1295 Lst_ForEach(l, PrintAddr, NULL);
1296 fprintf(debug_file, "\n");
1297 #endif
1300 while ((ln = Lst_Next(l)) != NULL) {
1301 s = (Src *)Lst_Datum(ln);
1302 if (s->children == 0) {
1303 free(s->file);
1304 if (!s->parent)
1305 free(s->pref);
1306 else {
1307 #ifdef DEBUG_SRC
1308 LstNode ln = Lst_Member(s->parent->cp, s);
1309 if (ln != NULL)
1310 Lst_Remove(s->parent->cp, ln);
1311 #endif
1312 --s->parent->children;
1314 #ifdef DEBUG_SRC
1315 fprintf(debug_file, "free: [l=%x] p=%x %d\n", l, s, s->children);
1316 Lst_Destroy(s->cp, NULL);
1317 #endif
1318 Lst_Remove(l, ln);
1319 free(s);
1320 t |= 1;
1321 Lst_Close(l);
1322 return TRUE;
1324 #ifdef DEBUG_SRC
1325 else {
1326 fprintf(debug_file, "keep: [l=%x] p=%x %d: ", l, s, s->children);
1327 Lst_ForEach(s->cp, PrintAddr, NULL);
1328 fprintf(debug_file, "\n");
1330 #endif
1333 Lst_Close(l);
1335 return t;
1339 *-----------------------------------------------------------------------
1340 * SuffFindThem --
1341 * Find the first existing file/target in the list srcs
1343 * Input:
1344 * srcs list of Src structures to search through
1346 * Results:
1347 * The lowest structure in the chain of transformations
1349 * Side Effects:
1350 * None
1351 *-----------------------------------------------------------------------
1353 static Src *
1354 SuffFindThem(Lst srcs, Lst slst)
1356 Src *s; /* current Src */
1357 Src *rs; /* returned Src */
1358 char *ptr;
1360 rs = NULL;
1362 while (!Lst_IsEmpty (srcs)) {
1363 s = (Src *)Lst_DeQueue(srcs);
1365 if (DEBUG(SUFF)) {
1366 fprintf(debug_file, "\ttrying %s...", s->file);
1370 * A file is considered to exist if either a node exists in the
1371 * graph for it or the file actually exists.
1373 if (Targ_FindNode(s->file, TARG_NOCREATE) != NULL) {
1374 #ifdef DEBUG_SRC
1375 fprintf(debug_file, "remove %x from %x\n", s, srcs);
1376 #endif
1377 rs = s;
1378 break;
1381 if ((ptr = Dir_FindFile(s->file, s->suff->searchPath)) != NULL) {
1382 rs = s;
1383 #ifdef DEBUG_SRC
1384 fprintf(debug_file, "remove %x from %x\n", s, srcs);
1385 #endif
1386 free(ptr);
1387 break;
1390 if (DEBUG(SUFF)) {
1391 fprintf(debug_file, "not there\n");
1394 SuffAddLevel(srcs, s);
1395 Lst_AtEnd(slst, s);
1398 if (DEBUG(SUFF) && rs) {
1399 fprintf(debug_file, "got it\n");
1401 return (rs);
1405 *-----------------------------------------------------------------------
1406 * SuffFindCmds --
1407 * See if any of the children of the target in the Src structure is
1408 * one from which the target can be transformed. If there is one,
1409 * a Src structure is put together for it and returned.
1411 * Input:
1412 * targ Src structure to play with
1414 * Results:
1415 * The Src structure of the "winning" child, or NULL if no such beast.
1417 * Side Effects:
1418 * A Src structure may be allocated.
1420 *-----------------------------------------------------------------------
1422 static Src *
1423 SuffFindCmds(Src *targ, Lst slst)
1425 LstNode ln; /* General-purpose list node */
1426 GNode *t, /* Target GNode */
1427 *s; /* Source GNode */
1428 int prefLen;/* The length of the defined prefix */
1429 Suff *suff; /* Suffix on matching beastie */
1430 Src *ret; /* Return value */
1431 char *cp;
1433 t = targ->node;
1434 (void)Lst_Open(t->children);
1435 prefLen = strlen(targ->pref);
1437 for (;;) {
1438 ln = Lst_Next(t->children);
1439 if (ln == NULL) {
1440 Lst_Close(t->children);
1441 return NULL;
1443 s = (GNode *)Lst_Datum(ln);
1445 if (s->type & OP_OPTIONAL && Lst_IsEmpty(t->commands)) {
1447 * We haven't looked to see if .OPTIONAL files exist yet, so
1448 * don't use one as the implicit source.
1449 * This allows us to use .OPTIONAL in .depend files so make won't
1450 * complain "don't know how to make xxx.h' when a dependent file
1451 * has been moved/deleted.
1453 continue;
1456 cp = strrchr(s->name, '/');
1457 if (cp == NULL) {
1458 cp = s->name;
1459 } else {
1460 cp++;
1462 if (strncmp(cp, targ->pref, prefLen) != 0)
1463 continue;
1465 * The node matches the prefix ok, see if it has a known
1466 * suffix.
1468 ln = Lst_Find(sufflist, &cp[prefLen], SuffSuffHasNameP);
1469 if (ln == NULL)
1470 continue;
1472 * It even has a known suffix, see if there's a transformation
1473 * defined between the node's suffix and the target's suffix.
1475 * XXX: Handle multi-stage transformations here, too.
1477 suff = (Suff *)Lst_Datum(ln);
1479 if (Lst_Member(suff->parents, targ->suff) != NULL)
1480 break;
1484 * Hot Damn! Create a new Src structure to describe
1485 * this transformation (making sure to duplicate the
1486 * source node's name so Suff_FindDeps can free it
1487 * again (ick)), and return the new structure.
1489 ret = bmake_malloc(sizeof(Src));
1490 ret->file = bmake_strdup(s->name);
1491 ret->pref = targ->pref;
1492 ret->suff = suff;
1493 suff->refCount++;
1494 ret->parent = targ;
1495 ret->node = s;
1496 ret->children = 0;
1497 targ->children += 1;
1498 #ifdef DEBUG_SRC
1499 ret->cp = Lst_Init(FALSE);
1500 fprintf(debug_file, "3 add %x %x\n", targ, ret);
1501 Lst_AtEnd(targ->cp, ret);
1502 #endif
1503 Lst_AtEnd(slst, ret);
1504 if (DEBUG(SUFF)) {
1505 fprintf(debug_file, "\tusing existing source %s\n", s->name);
1507 return (ret);
1511 *-----------------------------------------------------------------------
1512 * SuffExpandChildren --
1513 * Expand the names of any children of a given node that contain
1514 * variable invocations or file wildcards into actual targets.
1516 * Input:
1517 * cln Child to examine
1518 * pgn Parent node being processed
1520 * Results:
1521 * === 0 (continue)
1523 * Side Effects:
1524 * The expanded node is removed from the parent's list of children,
1525 * and the parent's unmade counter is decremented, but other nodes
1526 * may be added.
1528 *-----------------------------------------------------------------------
1530 static void
1531 SuffExpandChildren(LstNode cln, GNode *pgn)
1533 GNode *cgn = (GNode *)Lst_Datum(cln);
1534 GNode *gn; /* New source 8) */
1535 char *cp; /* Expanded value */
1537 if (!Lst_IsEmpty(cgn->order_pred) || !Lst_IsEmpty(cgn->order_succ))
1538 /* It is all too hard to process the result of .ORDER */
1539 return;
1541 if (cgn->type & OP_WAIT)
1542 /* Ignore these (& OP_PHONY ?) */
1543 return;
1546 * First do variable expansion -- this takes precedence over
1547 * wildcard expansion. If the result contains wildcards, they'll be gotten
1548 * to later since the resulting words are tacked on to the end of
1549 * the children list.
1551 if (strchr(cgn->name, '$') == NULL) {
1552 SuffExpandWildcards(cln, pgn);
1553 return;
1556 if (DEBUG(SUFF)) {
1557 fprintf(debug_file, "Expanding \"%s\"...", cgn->name);
1559 cp = Var_Subst(NULL, cgn->name, pgn, VARF_UNDEFERR|VARF_WANTRES);
1561 if (cp != NULL) {
1562 Lst members = Lst_Init(FALSE);
1564 if (cgn->type & OP_ARCHV) {
1566 * Node was an archive(member) target, so we want to call
1567 * on the Arch module to find the nodes for us, expanding
1568 * variables in the parent's context.
1570 char *sacrifice = cp;
1572 (void)Arch_ParseArchive(&sacrifice, members, pgn);
1573 } else {
1575 * Break the result into a vector of strings whose nodes
1576 * we can find, then add those nodes to the members list.
1577 * Unfortunately, we can't use brk_string b/c it
1578 * doesn't understand about variable specifications with
1579 * spaces in them...
1581 char *start;
1582 char *initcp = cp; /* For freeing... */
1584 for (start = cp; *start == ' ' || *start == '\t'; start++)
1585 continue;
1586 for (cp = start; *cp != '\0'; cp++) {
1587 if (*cp == ' ' || *cp == '\t') {
1589 * White-space -- terminate element, find the node,
1590 * add it, skip any further spaces.
1592 *cp++ = '\0';
1593 gn = Targ_FindNode(start, TARG_CREATE);
1594 (void)Lst_AtEnd(members, gn);
1595 while (*cp == ' ' || *cp == '\t') {
1596 cp++;
1599 * Adjust cp for increment at start of loop, but
1600 * set start to first non-space.
1602 start = cp--;
1603 } else if (*cp == '$') {
1605 * Start of a variable spec -- contact variable module
1606 * to find the end so we can skip over it.
1608 char *junk;
1609 int len;
1610 void *freeIt;
1612 junk = Var_Parse(cp, pgn, VARF_UNDEFERR|VARF_WANTRES,
1613 &len, &freeIt);
1614 if (junk != var_Error) {
1615 cp += len - 1;
1618 free(freeIt);
1619 } else if (*cp == '\\' && *cp != '\0') {
1621 * Escaped something -- skip over it
1623 cp++;
1627 if (cp != start) {
1629 * Stuff left over -- add it to the list too
1631 gn = Targ_FindNode(start, TARG_CREATE);
1632 (void)Lst_AtEnd(members, gn);
1635 * Point cp back at the beginning again so the variable value
1636 * can be freed.
1638 cp = initcp;
1642 * Add all elements of the members list to the parent node.
1644 while(!Lst_IsEmpty(members)) {
1645 gn = (GNode *)Lst_DeQueue(members);
1647 if (DEBUG(SUFF)) {
1648 fprintf(debug_file, "%s...", gn->name);
1650 /* Add gn to the parents child list before the original child */
1651 (void)Lst_InsertBefore(pgn->children, cln, gn);
1652 (void)Lst_AtEnd(gn->parents, pgn);
1653 pgn->unmade++;
1654 /* Expand wildcards on new node */
1655 SuffExpandWildcards(Lst_Prev(cln), pgn);
1657 Lst_Destroy(members, NULL);
1660 * Free the result
1662 free(cp);
1664 if (DEBUG(SUFF)) {
1665 fprintf(debug_file, "\n");
1669 * Now the source is expanded, remove it from the list of children to
1670 * keep it from being processed.
1672 pgn->unmade--;
1673 Lst_Remove(pgn->children, cln);
1674 Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn));
1677 static void
1678 SuffExpandWildcards(LstNode cln, GNode *pgn)
1680 GNode *cgn = (GNode *)Lst_Datum(cln);
1681 GNode *gn; /* New source 8) */
1682 char *cp; /* Expanded value */
1683 Lst explist; /* List of expansions */
1685 if (!Dir_HasWildcards(cgn->name))
1686 return;
1689 * Expand the word along the chosen path
1691 explist = Lst_Init(FALSE);
1692 Dir_Expand(cgn->name, Suff_FindPath(cgn), explist);
1694 while (!Lst_IsEmpty(explist)) {
1696 * Fetch next expansion off the list and find its GNode
1698 cp = (char *)Lst_DeQueue(explist);
1700 if (DEBUG(SUFF)) {
1701 fprintf(debug_file, "%s...", cp);
1703 gn = Targ_FindNode(cp, TARG_CREATE);
1705 /* Add gn to the parents child list before the original child */
1706 (void)Lst_InsertBefore(pgn->children, cln, gn);
1707 (void)Lst_AtEnd(gn->parents, pgn);
1708 pgn->unmade++;
1712 * Nuke what's left of the list
1714 Lst_Destroy(explist, NULL);
1716 if (DEBUG(SUFF)) {
1717 fprintf(debug_file, "\n");
1721 * Now the source is expanded, remove it from the list of children to
1722 * keep it from being processed.
1724 pgn->unmade--;
1725 Lst_Remove(pgn->children, cln);
1726 Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn));
1730 *-----------------------------------------------------------------------
1731 * Suff_FindPath --
1732 * Find a path along which to expand the node.
1734 * If the word has a known suffix, use that path.
1735 * If it has no known suffix, use the default system search path.
1737 * Input:
1738 * gn Node being examined
1740 * Results:
1741 * The appropriate path to search for the GNode.
1743 * Side Effects:
1744 * XXX: We could set the suffix here so that we don't have to scan
1745 * again.
1747 *-----------------------------------------------------------------------
1750 Suff_FindPath(GNode* gn)
1752 Suff *suff = gn->suffix;
1754 if (suff == NULL) {
1755 SuffixCmpData sd; /* Search string data */
1756 LstNode ln;
1757 sd.len = strlen(gn->name);
1758 sd.ename = gn->name + sd.len;
1759 ln = Lst_Find(sufflist, &sd, SuffSuffIsSuffixP);
1761 if (DEBUG(SUFF)) {
1762 fprintf(debug_file, "Wildcard expanding \"%s\"...", gn->name);
1764 if (ln != NULL)
1765 suff = (Suff *)Lst_Datum(ln);
1766 /* XXX: Here we can save the suffix so we don't have to do this again */
1769 if (suff != NULL) {
1770 if (DEBUG(SUFF)) {
1771 fprintf(debug_file, "suffix is \"%s\"...", suff->name);
1773 return suff->searchPath;
1774 } else {
1776 * Use default search path
1778 return dirSearchPath;
1783 *-----------------------------------------------------------------------
1784 * SuffApplyTransform --
1785 * Apply a transformation rule, given the source and target nodes
1786 * and suffixes.
1788 * Input:
1789 * tGn Target node
1790 * sGn Source node
1791 * t Target suffix
1792 * s Source suffix
1794 * Results:
1795 * TRUE if successful, FALSE if not.
1797 * Side Effects:
1798 * The source and target are linked and the commands from the
1799 * transformation are added to the target node's commands list.
1800 * All attributes but OP_DEPMASK and OP_TRANSFORM are applied
1801 * to the target. The target also inherits all the sources for
1802 * the transformation rule.
1804 *-----------------------------------------------------------------------
1806 static Boolean
1807 SuffApplyTransform(GNode *tGn, GNode *sGn, Suff *t, Suff *s)
1809 LstNode ln, nln; /* General node */
1810 char *tname; /* Name of transformation rule */
1811 GNode *gn; /* Node for same */
1814 * Form the proper links between the target and source.
1816 (void)Lst_AtEnd(tGn->children, sGn);
1817 (void)Lst_AtEnd(sGn->parents, tGn);
1818 tGn->unmade += 1;
1821 * Locate the transformation rule itself
1823 tname = str_concat(s->name, t->name, 0);
1824 ln = Lst_Find(transforms, tname, SuffGNHasNameP);
1825 free(tname);
1827 if (ln == NULL) {
1829 * Not really such a transformation rule (can happen when we're
1830 * called to link an OP_MEMBER and OP_ARCHV node), so return
1831 * FALSE.
1833 return(FALSE);
1836 gn = (GNode *)Lst_Datum(ln);
1838 if (DEBUG(SUFF)) {
1839 fprintf(debug_file, "\tapplying %s -> %s to \"%s\"\n", s->name, t->name, tGn->name);
1843 * Record last child for expansion purposes
1845 ln = Lst_Last(tGn->children);
1848 * Pass the buck to Make_HandleUse to apply the rule
1850 (void)Make_HandleUse(gn, tGn);
1853 * Deal with wildcards and variables in any acquired sources
1855 for (ln = Lst_Succ(ln); ln != NULL; ln = nln) {
1856 nln = Lst_Succ(ln);
1857 SuffExpandChildren(ln, tGn);
1861 * Keep track of another parent to which this beast is transformed so
1862 * the .IMPSRC variable can be set correctly for the parent.
1864 (void)Lst_AtEnd(sGn->iParents, tGn);
1866 return(TRUE);
1871 *-----------------------------------------------------------------------
1872 * SuffFindArchiveDeps --
1873 * Locate dependencies for an OP_ARCHV node.
1875 * Input:
1876 * gn Node for which to locate dependencies
1878 * Results:
1879 * None
1881 * Side Effects:
1882 * Same as Suff_FindDeps
1884 *-----------------------------------------------------------------------
1886 static void
1887 SuffFindArchiveDeps(GNode *gn, Lst slst)
1889 char *eoarch; /* End of archive portion */
1890 char *eoname; /* End of member portion */
1891 GNode *mem; /* Node for member */
1892 static const char *copy[] = {
1893 /* Variables to be copied from the member node */
1894 TARGET, /* Must be first */
1895 PREFIX, /* Must be second */
1897 LstNode ln, nln; /* Next suffix node to check */
1898 int i; /* Index into copy and vals */
1899 Suff *ms; /* Suffix descriptor for member */
1900 char *name; /* Start of member's name */
1903 * The node is an archive(member) pair. so we must find a
1904 * suffix for both of them.
1906 eoarch = strchr(gn->name, '(');
1907 eoname = strchr(eoarch, ')');
1909 *eoname = '\0'; /* Nuke parentheses during suffix search */
1910 *eoarch = '\0'; /* So a suffix can be found */
1912 name = eoarch + 1;
1915 * To simplify things, call Suff_FindDeps recursively on the member now,
1916 * so we can simply compare the member's .PREFIX and .TARGET variables
1917 * to locate its suffix. This allows us to figure out the suffix to
1918 * use for the archive without having to do a quadratic search over the
1919 * suffix list, backtracking for each one...
1921 mem = Targ_FindNode(name, TARG_CREATE);
1922 SuffFindDeps(mem, slst);
1925 * Create the link between the two nodes right off
1927 (void)Lst_AtEnd(gn->children, mem);
1928 (void)Lst_AtEnd(mem->parents, gn);
1929 gn->unmade += 1;
1932 * Copy in the variables from the member node to this one.
1934 for (i = (sizeof(copy)/sizeof(copy[0]))-1; i >= 0; i--) {
1935 char *p1;
1936 Var_Set(copy[i], Var_Value(copy[i], mem, &p1), gn, 0);
1937 free(p1);
1941 ms = mem->suffix;
1942 if (ms == NULL) {
1944 * Didn't know what it was -- use .NULL suffix if not in make mode
1946 if (DEBUG(SUFF)) {
1947 fprintf(debug_file, "using null suffix\n");
1949 ms = suffNull;
1954 * Set the other two local variables required for this target.
1956 Var_Set(MEMBER, name, gn, 0);
1957 Var_Set(ARCHIVE, gn->name, gn, 0);
1960 * Set $@ for compatibility with other makes
1962 Var_Set(TARGET, gn->name, gn, 0);
1965 * Now we've got the important local variables set, expand any sources
1966 * that still contain variables or wildcards in their names.
1968 for (ln = Lst_First(gn->children); ln != NULL; ln = nln) {
1969 nln = Lst_Succ(ln);
1970 SuffExpandChildren(ln, gn);
1973 if (ms != NULL) {
1975 * Member has a known suffix, so look for a transformation rule from
1976 * it to a possible suffix of the archive. Rather than searching
1977 * through the entire list, we just look at suffixes to which the
1978 * member's suffix may be transformed...
1980 SuffixCmpData sd; /* Search string data */
1983 * Use first matching suffix...
1985 sd.len = eoarch - gn->name;
1986 sd.ename = eoarch;
1987 ln = Lst_Find(ms->parents, &sd, SuffSuffIsSuffixP);
1989 if (ln != NULL) {
1991 * Got one -- apply it
1993 if (!SuffApplyTransform(gn, mem, (Suff *)Lst_Datum(ln), ms) &&
1994 DEBUG(SUFF))
1996 fprintf(debug_file, "\tNo transformation from %s -> %s\n",
1997 ms->name, ((Suff *)Lst_Datum(ln))->name);
2003 * Replace the opening and closing parens now we've no need of the separate
2004 * pieces.
2006 *eoarch = '('; *eoname = ')';
2009 * Pretend gn appeared to the left of a dependency operator so
2010 * the user needn't provide a transformation from the member to the
2011 * archive.
2013 if (OP_NOP(gn->type)) {
2014 gn->type |= OP_DEPENDS;
2018 * Flag the member as such so we remember to look in the archive for
2019 * its modification time. The OP_JOIN | OP_MADE is needed because this
2020 * target should never get made.
2022 mem->type |= OP_MEMBER | OP_JOIN | OP_MADE;
2026 *-----------------------------------------------------------------------
2027 * SuffFindNormalDeps --
2028 * Locate implicit dependencies for regular targets.
2030 * Input:
2031 * gn Node for which to find sources
2033 * Results:
2034 * None.
2036 * Side Effects:
2037 * Same as Suff_FindDeps...
2039 *-----------------------------------------------------------------------
2041 static void
2042 SuffFindNormalDeps(GNode *gn, Lst slst)
2044 char *eoname; /* End of name */
2045 char *sopref; /* Start of prefix */
2046 LstNode ln, nln; /* Next suffix node to check */
2047 Lst srcs; /* List of sources at which to look */
2048 Lst targs; /* List of targets to which things can be
2049 * transformed. They all have the same file,
2050 * but different suff and pref fields */
2051 Src *bottom; /* Start of found transformation path */
2052 Src *src; /* General Src pointer */
2053 char *pref; /* Prefix to use */
2054 Src *targ; /* General Src target pointer */
2055 SuffixCmpData sd; /* Search string data */
2058 sd.len = strlen(gn->name);
2059 sd.ename = eoname = gn->name + sd.len;
2061 sopref = gn->name;
2064 * Begin at the beginning...
2066 ln = Lst_First(sufflist);
2067 srcs = Lst_Init(FALSE);
2068 targs = Lst_Init(FALSE);
2071 * We're caught in a catch-22 here. On the one hand, we want to use any
2072 * transformation implied by the target's sources, but we can't examine
2073 * the sources until we've expanded any variables/wildcards they may hold,
2074 * and we can't do that until we've set up the target's local variables
2075 * and we can't do that until we know what the proper suffix for the
2076 * target is (in case there are two suffixes one of which is a suffix of
2077 * the other) and we can't know that until we've found its implied
2078 * source, which we may not want to use if there's an existing source
2079 * that implies a different transformation.
2081 * In an attempt to get around this, which may not work all the time,
2082 * but should work most of the time, we look for implied sources first,
2083 * checking transformations to all possible suffixes of the target,
2084 * use what we find to set the target's local variables, expand the
2085 * children, then look for any overriding transformations they imply.
2086 * Should we find one, we discard the one we found before.
2088 bottom = NULL;
2089 targ = NULL;
2091 if (!(gn->type & OP_PHONY)) {
2093 while (ln != NULL) {
2095 * Look for next possible suffix...
2097 ln = Lst_FindFrom(sufflist, ln, &sd, SuffSuffIsSuffixP);
2099 if (ln != NULL) {
2100 int prefLen; /* Length of the prefix */
2103 * Allocate a Src structure to which things can be transformed
2105 targ = bmake_malloc(sizeof(Src));
2106 targ->file = bmake_strdup(gn->name);
2107 targ->suff = (Suff *)Lst_Datum(ln);
2108 targ->suff->refCount++;
2109 targ->node = gn;
2110 targ->parent = NULL;
2111 targ->children = 0;
2112 #ifdef DEBUG_SRC
2113 targ->cp = Lst_Init(FALSE);
2114 #endif
2117 * Allocate room for the prefix, whose end is found by
2118 * subtracting the length of the suffix from
2119 * the end of the name.
2121 prefLen = (eoname - targ->suff->nameLen) - sopref;
2122 targ->pref = bmake_malloc(prefLen + 1);
2123 memcpy(targ->pref, sopref, prefLen);
2124 targ->pref[prefLen] = '\0';
2127 * Add nodes from which the target can be made
2129 SuffAddLevel(srcs, targ);
2132 * Record the target so we can nuke it
2134 (void)Lst_AtEnd(targs, targ);
2137 * Search from this suffix's successor...
2139 ln = Lst_Succ(ln);
2144 * Handle target of unknown suffix...
2146 if (Lst_IsEmpty(targs) && suffNull != NULL) {
2147 if (DEBUG(SUFF)) {
2148 fprintf(debug_file, "\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
2151 targ = bmake_malloc(sizeof(Src));
2152 targ->file = bmake_strdup(gn->name);
2153 targ->suff = suffNull;
2154 targ->suff->refCount++;
2155 targ->node = gn;
2156 targ->parent = NULL;
2157 targ->children = 0;
2158 targ->pref = bmake_strdup(sopref);
2159 #ifdef DEBUG_SRC
2160 targ->cp = Lst_Init(FALSE);
2161 #endif
2164 * Only use the default suffix rules if we don't have commands
2165 * defined for this gnode; traditional make programs used to
2166 * not define suffix rules if the gnode had children but we
2167 * don't do this anymore.
2169 if (Lst_IsEmpty(gn->commands))
2170 SuffAddLevel(srcs, targ);
2171 else {
2172 if (DEBUG(SUFF))
2173 fprintf(debug_file, "not ");
2176 if (DEBUG(SUFF))
2177 fprintf(debug_file, "adding suffix rules\n");
2179 (void)Lst_AtEnd(targs, targ);
2183 * Using the list of possible sources built up from the target
2184 * suffix(es), try and find an existing file/target that matches.
2186 bottom = SuffFindThem(srcs, slst);
2188 if (bottom == NULL) {
2190 * No known transformations -- use the first suffix found
2191 * for setting the local variables.
2193 if (!Lst_IsEmpty(targs)) {
2194 targ = (Src *)Lst_Datum(Lst_First(targs));
2195 } else {
2196 targ = NULL;
2198 } else {
2200 * Work up the transformation path to find the suffix of the
2201 * target to which the transformation was made.
2203 for (targ = bottom; targ->parent != NULL; targ = targ->parent)
2204 continue;
2208 Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0);
2210 pref = (targ != NULL) ? targ->pref : gn->name;
2211 Var_Set(PREFIX, pref, gn, 0);
2214 * Now we've got the important local variables set, expand any sources
2215 * that still contain variables or wildcards in their names.
2217 for (ln = Lst_First(gn->children); ln != NULL; ln = nln) {
2218 nln = Lst_Succ(ln);
2219 SuffExpandChildren(ln, gn);
2222 if (targ == NULL) {
2223 if (DEBUG(SUFF)) {
2224 fprintf(debug_file, "\tNo valid suffix on %s\n", gn->name);
2227 sfnd_abort:
2229 * Deal with finding the thing on the default search path. We
2230 * always do that, not only if the node is only a source (not
2231 * on the lhs of a dependency operator or [XXX] it has neither
2232 * children or commands) as the old pmake did.
2234 if ((gn->type & (OP_PHONY|OP_NOPATH)) == 0) {
2235 free(gn->path);
2236 gn->path = Dir_FindFile(gn->name,
2237 (targ == NULL ? dirSearchPath :
2238 targ->suff->searchPath));
2239 if (gn->path != NULL) {
2240 char *ptr;
2241 Var_Set(TARGET, gn->path, gn, 0);
2243 if (targ != NULL) {
2245 * Suffix known for the thing -- trim the suffix off
2246 * the path to form the proper .PREFIX variable.
2248 int savep = strlen(gn->path) - targ->suff->nameLen;
2249 char savec;
2251 if (gn->suffix)
2252 gn->suffix->refCount--;
2253 gn->suffix = targ->suff;
2254 gn->suffix->refCount++;
2256 savec = gn->path[savep];
2257 gn->path[savep] = '\0';
2259 if ((ptr = strrchr(gn->path, '/')) != NULL)
2260 ptr++;
2261 else
2262 ptr = gn->path;
2264 Var_Set(PREFIX, ptr, gn, 0);
2266 gn->path[savep] = savec;
2267 } else {
2269 * The .PREFIX gets the full path if the target has
2270 * no known suffix.
2272 if (gn->suffix)
2273 gn->suffix->refCount--;
2274 gn->suffix = NULL;
2276 if ((ptr = strrchr(gn->path, '/')) != NULL)
2277 ptr++;
2278 else
2279 ptr = gn->path;
2281 Var_Set(PREFIX, ptr, gn, 0);
2286 goto sfnd_return;
2290 * If the suffix indicates that the target is a library, mark that in
2291 * the node's type field.
2293 if (targ->suff->flags & SUFF_LIBRARY) {
2294 gn->type |= OP_LIB;
2298 * Check for overriding transformation rule implied by sources
2300 if (!Lst_IsEmpty(gn->children)) {
2301 src = SuffFindCmds(targ, slst);
2303 if (src != NULL) {
2305 * Free up all the Src structures in the transformation path
2306 * up to, but not including, the parent node.
2308 while (bottom && bottom->parent != NULL) {
2309 if (Lst_Member(slst, bottom) == NULL) {
2310 Lst_AtEnd(slst, bottom);
2312 bottom = bottom->parent;
2314 bottom = src;
2318 if (bottom == NULL) {
2320 * No idea from where it can come -- return now.
2322 goto sfnd_abort;
2326 * We now have a list of Src structures headed by 'bottom' and linked via
2327 * their 'parent' pointers. What we do next is create links between
2328 * source and target nodes (which may or may not have been created)
2329 * and set the necessary local variables in each target. The
2330 * commands for each target are set from the commands of the
2331 * transformation rule used to get from the src suffix to the targ
2332 * suffix. Note that this causes the commands list of the original
2333 * node, gn, to be replaced by the commands of the final
2334 * transformation rule. Also, the unmade field of gn is incremented.
2335 * Etc.
2337 if (bottom->node == NULL) {
2338 bottom->node = Targ_FindNode(bottom->file, TARG_CREATE);
2341 for (src = bottom; src->parent != NULL; src = src->parent) {
2342 targ = src->parent;
2344 if (src->node->suffix)
2345 src->node->suffix->refCount--;
2346 src->node->suffix = src->suff;
2347 src->node->suffix->refCount++;
2349 if (targ->node == NULL) {
2350 targ->node = Targ_FindNode(targ->file, TARG_CREATE);
2353 SuffApplyTransform(targ->node, src->node,
2354 targ->suff, src->suff);
2356 if (targ->node != gn) {
2358 * Finish off the dependency-search process for any nodes
2359 * between bottom and gn (no point in questing around the
2360 * filesystem for their implicit source when it's already
2361 * known). Note that the node can't have any sources that
2362 * need expanding, since SuffFindThem will stop on an existing
2363 * node, so all we need to do is set the standard and System V
2364 * variables.
2366 targ->node->type |= OP_DEPS_FOUND;
2368 Var_Set(PREFIX, targ->pref, targ->node, 0);
2370 Var_Set(TARGET, targ->node->name, targ->node, 0);
2374 if (gn->suffix)
2375 gn->suffix->refCount--;
2376 gn->suffix = src->suff;
2377 gn->suffix->refCount++;
2380 * Nuke the transformation path and the Src structures left over in the
2381 * two lists.
2383 sfnd_return:
2384 if (bottom)
2385 if (Lst_Member(slst, bottom) == NULL)
2386 Lst_AtEnd(slst, bottom);
2388 while (SuffRemoveSrc(srcs) || SuffRemoveSrc(targs))
2389 continue;
2391 Lst_Concat(slst, srcs, LST_CONCLINK);
2392 Lst_Concat(slst, targs, LST_CONCLINK);
2397 *-----------------------------------------------------------------------
2398 * Suff_FindDeps --
2399 * Find implicit sources for the target described by the graph node
2400 * gn
2402 * Results:
2403 * Nothing.
2405 * Side Effects:
2406 * Nodes are added to the graph below the passed-in node. The nodes
2407 * are marked to have their IMPSRC variable filled in. The
2408 * PREFIX variable is set for the given node and all its
2409 * implied children.
2411 * Notes:
2412 * The path found by this target is the shortest path in the
2413 * transformation graph, which may pass through non-existent targets,
2414 * to an existing target. The search continues on all paths from the
2415 * root suffix until a file is found. I.e. if there's a path
2416 * .o -> .c -> .l -> .l,v from the root and the .l,v file exists but
2417 * the .c and .l files don't, the search will branch out in
2418 * all directions from .o and again from all the nodes on the
2419 * next level until the .l,v node is encountered.
2421 *-----------------------------------------------------------------------
2424 void
2425 Suff_FindDeps(GNode *gn)
2428 SuffFindDeps(gn, srclist);
2429 while (SuffRemoveSrc(srclist))
2430 continue;
2435 * Input:
2436 * gn node we're dealing with
2439 static void
2440 SuffFindDeps(GNode *gn, Lst slst)
2442 if (gn->type & OP_DEPS_FOUND) {
2444 * If dependencies already found, no need to do it again...
2446 return;
2447 } else {
2448 gn->type |= OP_DEPS_FOUND;
2451 * Make sure we have these set, may get revised below.
2453 Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0);
2454 Var_Set(PREFIX, gn->name, gn, 0);
2456 if (DEBUG(SUFF)) {
2457 fprintf(debug_file, "SuffFindDeps (%s)\n", gn->name);
2460 if (gn->type & OP_ARCHV) {
2461 SuffFindArchiveDeps(gn, slst);
2462 } else if (gn->type & OP_LIB) {
2464 * If the node is a library, it is the arch module's job to find it
2465 * and set the TARGET variable accordingly. We merely provide the
2466 * search path, assuming all libraries end in ".a" (if the suffix
2467 * hasn't been defined, there's nothing we can do for it, so we just
2468 * set the TARGET variable to the node's name in order to give it a
2469 * value).
2471 LstNode ln;
2472 Suff *s;
2474 ln = Lst_Find(sufflist, LIBSUFF, SuffSuffHasNameP);
2475 if (gn->suffix)
2476 gn->suffix->refCount--;
2477 if (ln != NULL) {
2478 gn->suffix = s = (Suff *)Lst_Datum(ln);
2479 gn->suffix->refCount++;
2480 Arch_FindLib(gn, s->searchPath);
2481 } else {
2482 gn->suffix = NULL;
2483 Var_Set(TARGET, gn->name, gn, 0);
2486 * Because a library (-lfoo) target doesn't follow the standard
2487 * filesystem conventions, we don't set the regular variables for
2488 * the thing. .PREFIX is simply made empty...
2490 Var_Set(PREFIX, "", gn, 0);
2491 } else {
2492 SuffFindNormalDeps(gn, slst);
2497 *-----------------------------------------------------------------------
2498 * Suff_SetNull --
2499 * Define which suffix is the null suffix.
2501 * Input:
2502 * name Name of null suffix
2504 * Results:
2505 * None.
2507 * Side Effects:
2508 * 'suffNull' is altered.
2510 * Notes:
2511 * Need to handle the changing of the null suffix gracefully so the
2512 * old transformation rules don't just go away.
2514 *-----------------------------------------------------------------------
2516 void
2517 Suff_SetNull(char *name)
2519 Suff *s;
2520 LstNode ln;
2522 ln = Lst_Find(sufflist, name, SuffSuffHasNameP);
2523 if (ln != NULL) {
2524 s = (Suff *)Lst_Datum(ln);
2525 if (suffNull != NULL) {
2526 suffNull->flags &= ~SUFF_NULL;
2528 s->flags |= SUFF_NULL;
2530 * XXX: Here's where the transformation mangling would take place
2532 suffNull = s;
2533 } else {
2534 Parse_Error(PARSE_WARNING, "Desired null suffix %s not defined.",
2535 name);
2540 *-----------------------------------------------------------------------
2541 * Suff_Init --
2542 * Initialize suffixes module
2544 * Results:
2545 * None
2547 * Side Effects:
2548 * Many
2549 *-----------------------------------------------------------------------
2551 void
2552 Suff_Init(void)
2554 #ifdef CLEANUP
2555 suffClean = Lst_Init(FALSE);
2556 #endif
2557 srclist = Lst_Init(FALSE);
2558 transforms = Lst_Init(FALSE);
2561 * Create null suffix for single-suffix rules (POSIX). The thing doesn't
2562 * actually go on the suffix list or everyone will think that's its
2563 * suffix.
2565 Suff_ClearSuffixes();
2570 *----------------------------------------------------------------------
2571 * Suff_End --
2572 * Cleanup the this module
2574 * Results:
2575 * None
2577 * Side Effects:
2578 * The memory is free'd.
2579 *----------------------------------------------------------------------
2582 void
2583 Suff_End(void)
2585 #ifdef CLEANUP
2586 Lst_Destroy(sufflist, SuffFree);
2587 Lst_Destroy(suffClean, SuffFree);
2588 if (suffNull)
2589 SuffFree(suffNull);
2590 Lst_Destroy(srclist, NULL);
2591 Lst_Destroy(transforms, NULL);
2592 #endif
2596 /********************* DEBUGGING FUNCTIONS **********************/
2598 static int SuffPrintName(void *s, void *dummy)
2600 fprintf(debug_file, "%s ", ((Suff *)s)->name);
2601 return (dummy ? 0 : 0);
2604 static int
2605 SuffPrintSuff(void *sp, void *dummy)
2607 Suff *s = (Suff *)sp;
2608 int flags;
2609 int flag;
2611 fprintf(debug_file, "# `%s' [%d] ", s->name, s->refCount);
2613 flags = s->flags;
2614 if (flags) {
2615 fputs(" (", debug_file);
2616 while (flags) {
2617 flag = 1 << (ffs(flags) - 1);
2618 flags &= ~flag;
2619 switch (flag) {
2620 case SUFF_NULL:
2621 fprintf(debug_file, "NULL");
2622 break;
2623 case SUFF_INCLUDE:
2624 fprintf(debug_file, "INCLUDE");
2625 break;
2626 case SUFF_LIBRARY:
2627 fprintf(debug_file, "LIBRARY");
2628 break;
2630 fputc(flags ? '|' : ')', debug_file);
2633 fputc('\n', debug_file);
2634 fprintf(debug_file, "#\tTo: ");
2635 Lst_ForEach(s->parents, SuffPrintName, NULL);
2636 fputc('\n', debug_file);
2637 fprintf(debug_file, "#\tFrom: ");
2638 Lst_ForEach(s->children, SuffPrintName, NULL);
2639 fputc('\n', debug_file);
2640 fprintf(debug_file, "#\tSearch Path: ");
2641 Dir_PrintPath(s->searchPath);
2642 fputc('\n', debug_file);
2643 return (dummy ? 0 : 0);
2646 static int
2647 SuffPrintTrans(void *tp, void *dummy)
2649 GNode *t = (GNode *)tp;
2651 fprintf(debug_file, "%-16s: ", t->name);
2652 Targ_PrintType(t->type);
2653 fputc('\n', debug_file);
2654 Lst_ForEach(t->commands, Targ_PrintCmd, NULL);
2655 fputc('\n', debug_file);
2656 return(dummy ? 0 : 0);
2659 void
2660 Suff_PrintAll(void)
2662 fprintf(debug_file, "#*** Suffixes:\n");
2663 Lst_ForEach(sufflist, SuffPrintSuff, NULL);
2665 fprintf(debug_file, "#*** Transformations:\n");
2666 Lst_ForEach(transforms, SuffPrintTrans, NULL);