1 /* $NetBSD: suff.c,v 1.86 2017/04/16 20:38:18 riastradh Exp $ */
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
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
39 * This code is derived from software contributed to Berkeley by
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
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
72 static char rcsid
[] = "$NetBSD: suff.c,v 1.86 2017/04/16 20:38:18 riastradh Exp $";
74 #include <sys/cdefs.h>
77 static char sccsid
[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94";
79 __RCSID("$NetBSD: suff.c,v 1.86 2017/04/16 20:38:18 riastradh Exp $");
86 * Functions to maintain suffix lists and find implicit dependents
87 * using suffix transformation rules
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
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
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.
144 static Lst sufflist
; /* Lst of suffixes */
146 static Lst suffClean
; /* Lst of suffixes to be cleaned */
148 static Lst srclist
; /* Lst of sources */
149 static Lst transforms
; /* Lst of transformation rules */
151 static int sNum
= 0; /* Counter for assigning suffix numbers */
154 * Structure describing an individual suffix.
156 typedef struct _Suff
{
157 char *name
; /* The suffix itself */
158 int nameLen
; /* Length of the suffix */
159 short flags
; /* Type of suffix */
160 #define SUFF_INCLUDE 0x01 /* One which is #include'd */
161 #define SUFF_LIBRARY 0x02 /* One which contains a library */
162 #define SUFF_NULL 0x04 /* The empty suffix */
163 Lst searchPath
; /* The path along which files of this suffix
165 int sNum
; /* The suffix number */
166 int refCount
; /* Reference count of list membership */
167 Lst parents
; /* Suffixes we have a transformation to */
168 Lst children
; /* Suffixes we have a transformation from */
169 Lst ref
; /* List of lists this suffix is referenced */
173 * for SuffSuffIsSuffix
176 char *ename
; /* The end of the name */
177 int len
; /* Length of the name */
181 * Structure used in the search for implied sources.
183 typedef struct _Src
{
184 char *file
; /* The file to look for */
185 char *pref
; /* Prefix from which file was formed */
186 Suff
*suff
; /* The suffix on the file */
187 struct _Src
*parent
; /* The Src for which this is a source */
188 GNode
*node
; /* The node describing the file */
189 int children
; /* Count of existing children (so we don't free
190 * this thing too early or never nuke it) */
192 Lst cp
; /* Debug; children list */
197 * A structure for passing more than one argument to the Lst-library-invoked
211 static Suff
*suffNull
; /* The NULL suffix for this run */
212 static Suff
*emptySuff
; /* The empty suffix required for POSIX
213 * single-suffix transformation rules */
216 static const char *SuffStrIsPrefix(const char *, const char *);
217 static char *SuffSuffIsSuffix(const Suff
*, const SuffixCmpData
*);
218 static int SuffSuffIsSuffixP(const void *, const void *);
219 static int SuffSuffHasNameP(const void *, const void *);
220 static int SuffSuffIsPrefix(const void *, const void *);
221 static int SuffGNHasNameP(const void *, const void *);
222 static void SuffUnRef(void *, void *);
223 static void SuffFree(void *);
224 static void SuffInsert(Lst
, Suff
*);
225 static void SuffRemove(Lst
, Suff
*);
226 static Boolean
SuffParseTransform(char *, Suff
**, Suff
**);
227 static int SuffRebuildGraph(void *, void *);
228 static int SuffScanTargets(void *, void *);
229 static int SuffAddSrc(void *, void *);
230 static int SuffRemoveSrc(Lst
);
231 static void SuffAddLevel(Lst
, Src
*);
232 static Src
*SuffFindThem(Lst
, Lst
);
233 static Src
*SuffFindCmds(Src
*, Lst
);
234 static void SuffExpandChildren(LstNode
, GNode
*);
235 static void SuffExpandWildcards(LstNode
, GNode
*);
236 static Boolean
SuffApplyTransform(GNode
*, GNode
*, Suff
*, Suff
*);
237 static void SuffFindDeps(GNode
*, Lst
);
238 static void SuffFindArchiveDeps(GNode
*, Lst
);
239 static void SuffFindNormalDeps(GNode
*, Lst
);
240 static int SuffPrintName(void *, void *);
241 static int SuffPrintSuff(void *, void *);
242 static int SuffPrintTrans(void *, void *);
244 /*************** Lst Predicates ****************/
246 *-----------------------------------------------------------------------
248 * See if pref is a prefix of str.
251 * pref possible prefix
252 * str string to check
255 * NULL if it ain't, pointer to character in str after prefix if so
259 *-----------------------------------------------------------------------
262 SuffStrIsPrefix(const char *pref
, const char *str
)
264 while (*str
&& *pref
== *str
) {
269 return (*pref
? NULL
: str
);
273 *-----------------------------------------------------------------------
274 * SuffSuffIsSuffix --
275 * See if suff is a suffix of str. sd->ename should point to THE END
276 * of the string to check. (THE END == the null byte)
280 * sd string to examine
283 * NULL if it ain't, pointer to character in str before suffix if
288 *-----------------------------------------------------------------------
291 SuffSuffIsSuffix(const Suff
*s
, const SuffixCmpData
*sd
)
293 char *p1
; /* Pointer into suffix name */
294 char *p2
; /* Pointer into string being examined */
296 if (sd
->len
< s
->nameLen
)
297 return NULL
; /* this string is shorter than the suffix */
299 p1
= s
->name
+ s
->nameLen
;
302 while (p1
>= s
->name
&& *p1
== *p2
) {
307 return (p1
== s
->name
- 1 ? p2
: NULL
);
311 *-----------------------------------------------------------------------
312 * SuffSuffIsSuffixP --
313 * Predicate form of SuffSuffIsSuffix. Passed as the callback function
317 * 0 if the suffix is the one desired, non-zero if not.
322 *-----------------------------------------------------------------------
325 SuffSuffIsSuffixP(const void *s
, const void *sd
)
327 return(!SuffSuffIsSuffix(s
, sd
));
331 *-----------------------------------------------------------------------
332 * SuffSuffHasNameP --
333 * Callback procedure for finding a suffix based on its name. Used by
341 * 0 if the suffix is of the given name. non-zero otherwise.
345 *-----------------------------------------------------------------------
348 SuffSuffHasNameP(const void *s
, const void *sname
)
350 return (strcmp(sname
, ((const Suff
*)s
)->name
));
354 *-----------------------------------------------------------------------
355 * SuffSuffIsPrefix --
356 * See if the suffix described by s is a prefix of the string. Care
357 * must be taken when using this to search for transformations and
358 * what-not, since there could well be two suffixes, one of which
359 * is a prefix of the other...
362 * s suffix to compare
363 * str string to examine
366 * 0 if s is a prefix of str. non-zero otherwise
370 *-----------------------------------------------------------------------
373 SuffSuffIsPrefix(const void *s
, const void *str
)
375 return SuffStrIsPrefix(((const Suff
*)s
)->name
, str
) == NULL
;
379 *-----------------------------------------------------------------------
381 * See if the graph node has the desired name
384 * gn current node we're looking at
385 * name name we're looking for
388 * 0 if it does. non-zero if it doesn't
392 *-----------------------------------------------------------------------
395 SuffGNHasNameP(const void *gn
, const void *name
)
397 return (strcmp(name
, ((const GNode
*)gn
)->name
));
400 /*********** Maintenance Functions ************/
403 SuffUnRef(void *lp
, void *sp
)
407 LstNode ln
= Lst_Member(l
, sp
);
410 ((Suff
*)sp
)->refCount
--;
415 *-----------------------------------------------------------------------
417 * Free up all memory associated with the given suffix structure.
423 * the suffix entry is detroyed
424 *-----------------------------------------------------------------------
429 Suff
*s
= (Suff
*)sp
;
438 /* We don't delete suffixes in order, so we cannot use this */
440 Punt("Internal error deleting suffix `%s' with refcount = %d", s
->name
,
444 Lst_Destroy(s
->ref
, NULL
);
445 Lst_Destroy(s
->children
, NULL
);
446 Lst_Destroy(s
->parents
, NULL
);
447 Lst_Destroy(s
->searchPath
, Dir_Destroy
);
454 *-----------------------------------------------------------------------
456 * Remove the suffix into the list
462 * The reference count for the suffix is decremented and the
463 * suffix is possibly freed
464 *-----------------------------------------------------------------------
467 SuffRemove(Lst l
, Suff
*s
)
470 if (s
->refCount
== 0) {
471 SuffUnRef(sufflist
, s
);
477 *-----------------------------------------------------------------------
479 * Insert the suffix into the list keeping the list ordered by suffix
483 * l the list where in s should be inserted
484 * s the suffix to insert
490 * The reference count of the suffix is incremented
491 *-----------------------------------------------------------------------
494 SuffInsert(Lst l
, Suff
*s
)
496 LstNode ln
; /* current element in l we're examining */
497 Suff
*s2
= NULL
; /* the suffix descriptor in this element */
499 if (Lst_Open(l
) == FAILURE
) {
502 while ((ln
= Lst_Next(l
)) != NULL
) {
503 s2
= (Suff
*)Lst_Datum(ln
);
504 if (s2
->sNum
>= s
->sNum
) {
511 fprintf(debug_file
, "inserting %s(%d)...", s
->name
, s
->sNum
);
515 fprintf(debug_file
, "at end of list\n");
517 (void)Lst_AtEnd(l
, s
);
519 (void)Lst_AtEnd(s
->ref
, l
);
520 } else if (s2
->sNum
!= s
->sNum
) {
522 fprintf(debug_file
, "before %s(%d)\n", s2
->name
, s2
->sNum
);
524 (void)Lst_InsertBefore(l
, ln
, s
);
526 (void)Lst_AtEnd(s
->ref
, l
);
527 } else if (DEBUG(SUFF
)) {
528 fprintf(debug_file
, "already there\n");
533 *-----------------------------------------------------------------------
534 * Suff_ClearSuffixes --
535 * This is gross. Nuke the list of suffixes but keep all transformation
536 * rules around. The transformation graph is destroyed in this process,
537 * but we leave the list of rules so when a new graph is formed the rules
539 * This function is called from the parse module when a
540 * .SUFFIXES:\n line is encountered.
546 * the sufflist and its graph nodes are destroyed
547 *-----------------------------------------------------------------------
550 Suff_ClearSuffixes(void)
553 Lst_Concat(suffClean
, sufflist
, LST_CONCLINK
);
555 sufflist
= Lst_Init(FALSE
);
559 emptySuff
= suffNull
= bmake_malloc(sizeof(Suff
));
561 suffNull
->name
= bmake_strdup("");
562 suffNull
->nameLen
= 0;
563 suffNull
->searchPath
= Lst_Init(FALSE
);
564 Dir_Concat(suffNull
->searchPath
, dirSearchPath
);
565 suffNull
->children
= Lst_Init(FALSE
);
566 suffNull
->parents
= Lst_Init(FALSE
);
567 suffNull
->ref
= Lst_Init(FALSE
);
568 suffNull
->sNum
= sNum
++;
569 suffNull
->flags
= SUFF_NULL
;
570 suffNull
->refCount
= 1;
574 *-----------------------------------------------------------------------
575 * SuffParseTransform --
576 * Parse a transformation string to find its two component suffixes.
579 * str String being parsed
580 * srcPtr Place to store source of trans.
581 * targPtr Place to store target of trans.
584 * TRUE if the string is a valid transformation and FALSE otherwise.
587 * The passed pointers are overwritten.
589 *-----------------------------------------------------------------------
592 SuffParseTransform(char *str
, Suff
**srcPtr
, Suff
**targPtr
)
594 LstNode srcLn
; /* element in suffix list of trans source*/
595 Suff
*src
; /* Source of transformation */
596 LstNode targLn
; /* element in suffix list of trans target*/
597 char *str2
; /* Extra pointer (maybe target suffix) */
598 LstNode singleLn
; /* element in suffix list of any suffix
599 * that exactly matches str */
600 Suff
*single
= NULL
;/* Source of possible transformation to
607 * Loop looking first for a suffix that matches the start of the
608 * string and then for one that exactly matches the rest of it. If
609 * we can find two that meet these criteria, we've successfully
614 srcLn
= Lst_Find(sufflist
, str
, SuffSuffIsPrefix
);
616 srcLn
= Lst_FindFrom(sufflist
, Lst_Succ(srcLn
), str
,
621 * Ran out of source suffixes -- no such rule
623 if (singleLn
!= NULL
) {
625 * Not so fast Mr. Smith! There was a suffix that encompassed
626 * the entire string, so we assume it was a transformation
627 * to the null suffix (thank you POSIX). We still prefer to
628 * find a double rule over a singleton, hence we leave this
629 * check until the end.
631 * XXX: Use emptySuff over suffNull?
639 src
= (Suff
*)Lst_Datum(srcLn
);
640 str2
= str
+ src
->nameLen
;
645 targLn
= Lst_Find(sufflist
, str2
, SuffSuffHasNameP
);
646 if (targLn
!= NULL
) {
648 *targPtr
= (Suff
*)Lst_Datum(targLn
);
656 *-----------------------------------------------------------------------
657 * Suff_IsTransform --
658 * Return TRUE if the given string is a transformation rule
662 * str string to check
665 * TRUE if the string is a concatenation of two known suffixes.
670 *-----------------------------------------------------------------------
673 Suff_IsTransform(char *str
)
677 return (SuffParseTransform(str
, &src
, &targ
));
681 *-----------------------------------------------------------------------
682 * Suff_AddTransform --
683 * Add the transformation rule described by the line to the
684 * list of rules and place the transformation itself in the graph
687 * line name of transformation to add
690 * The node created for the transformation in the transforms list
693 * The node is placed on the end of the transforms Lst and links are
694 * made between the two suffixes mentioned in the target name
695 *-----------------------------------------------------------------------
698 Suff_AddTransform(char *line
)
700 GNode
*gn
; /* GNode of transformation rule */
701 Suff
*s
, /* source suffix */
702 *t
; /* target suffix */
703 LstNode ln
; /* Node for existing transformation */
705 ln
= Lst_Find(transforms
, line
, SuffGNHasNameP
);
708 * Make a new graph node for the transformation. It will be filled in
709 * by the Parse module.
711 gn
= Targ_NewGN(line
);
712 (void)Lst_AtEnd(transforms
, gn
);
715 * New specification for transformation rule. Just nuke the old list
716 * of commands so they can be filled in again... We don't actually
717 * free the commands themselves, because a given command can be
718 * attached to several different transformations.
720 gn
= (GNode
*)Lst_Datum(ln
);
721 Lst_Destroy(gn
->commands
, NULL
);
722 Lst_Destroy(gn
->children
, NULL
);
723 gn
->commands
= Lst_Init(FALSE
);
724 gn
->children
= Lst_Init(FALSE
);
727 gn
->type
= OP_TRANSFORM
;
729 (void)SuffParseTransform(line
, &s
, &t
);
732 * link the two together in the proper relationship and order
735 fprintf(debug_file
, "defining transformation from `%s' to `%s'\n",
738 SuffInsert(t
->children
, s
);
739 SuffInsert(s
->parents
, t
);
745 *-----------------------------------------------------------------------
746 * Suff_EndTransform --
747 * Handle the finish of a transformation definition, removing the
748 * transformation from the graph if it has neither commands nor
749 * sources. This is a callback procedure for the Parse module via
753 * gnp Node for transformation
754 * dummy Node for transformation
760 * If the node has no commands or children, the children and parents
761 * lists of the affected suffixes are altered.
763 *-----------------------------------------------------------------------
766 Suff_EndTransform(void *gnp
, void *dummy MAKE_ATTR_UNUSED
)
768 GNode
*gn
= (GNode
*)gnp
;
770 if ((gn
->type
& OP_DOUBLEDEP
) && !Lst_IsEmpty (gn
->cohorts
))
771 gn
= (GNode
*)Lst_Datum(Lst_Last(gn
->cohorts
));
772 if ((gn
->type
& OP_TRANSFORM
) && Lst_IsEmpty(gn
->commands
) &&
773 Lst_IsEmpty(gn
->children
))
778 * SuffParseTransform() may fail for special rules which are not
779 * actual transformation rules. (e.g. .DEFAULT)
781 if (SuffParseTransform(gn
->name
, &s
, &t
)) {
785 fprintf(debug_file
, "deleting transformation from `%s' to `%s'\n",
790 * Store s->parents because s could be deleted in SuffRemove
795 * Remove the source from the target's children list. We check for a
796 * nil return to handle a beanhead saying something like
799 * We'll be called twice when the next target is seen, but .c and .o
800 * are only linked once...
802 SuffRemove(t
->children
, s
);
805 * Remove the target from the source's parents list
809 } else if ((gn
->type
& OP_TRANSFORM
) && DEBUG(SUFF
)) {
810 fprintf(debug_file
, "transformation %s complete\n", gn
->name
);
817 *-----------------------------------------------------------------------
818 * SuffRebuildGraph --
819 * Called from Suff_AddSuffix via Lst_ForEach to search through the
820 * list of existing transformation rules and rebuild the transformation
821 * graph when it has been destroyed by Suff_ClearSuffixes. If the
822 * given rule is a transformation involving this suffix and another,
823 * existing suffix, the proper relationship is established between
827 * transformp Transformation to test
828 * sp Suffix to rebuild
834 * The appropriate links will be made between this suffix and
835 * others if transformation rules exist for it.
837 *-----------------------------------------------------------------------
840 SuffRebuildGraph(void *transformp
, void *sp
)
842 GNode
*transform
= (GNode
*)transformp
;
843 Suff
*s
= (Suff
*)sp
;
850 * First see if it is a transformation from this suffix.
852 cp
= UNCONST(SuffStrIsPrefix(s
->name
, transform
->name
));
854 ln
= Lst_Find(sufflist
, cp
, SuffSuffHasNameP
);
857 * Found target. Link in and return, since it can't be anything
860 s2
= (Suff
*)Lst_Datum(ln
);
861 SuffInsert(s2
->children
, s
);
862 SuffInsert(s
->parents
, s2
);
868 * Not from, maybe to?
870 sd
.len
= strlen(transform
->name
);
871 sd
.ename
= transform
->name
+ sd
.len
;
872 cp
= SuffSuffIsSuffix(s
, &sd
);
875 * Null-terminate the source suffix in order to find it.
878 ln
= Lst_Find(sufflist
, transform
->name
, SuffSuffHasNameP
);
880 * Replace the start of the target suffix
885 * Found it -- establish the proper relationship
887 s2
= (Suff
*)Lst_Datum(ln
);
888 SuffInsert(s
->children
, s2
);
889 SuffInsert(s2
->parents
, s
);
896 *-----------------------------------------------------------------------
898 * Called from Suff_AddSuffix via Lst_ForEach to search through the
899 * list of existing targets and find if any of the existing targets
900 * can be turned into a transformation rule.
903 * 1 if a new main target has been selected, 0 otherwise.
906 * If such a target is found and the target is the current main
907 * target, the main target is set to NULL and the next target
908 * examined (if that exists) becomes the main target.
910 *-----------------------------------------------------------------------
913 SuffScanTargets(void *targetp
, void *gsp
)
915 GNode
*target
= (GNode
*)targetp
;
916 GNodeSuff
*gs
= (GNodeSuff
*)gsp
;
920 if (*gs
->gn
== NULL
&& gs
->r
&& (target
->type
& OP_NOTARGET
) == 0) {
922 Targ_SetMain(target
);
926 if ((unsigned int)target
->type
== OP_TRANSFORM
)
929 if ((ptr
= strstr(target
->name
, gs
->s
->name
)) == NULL
||
933 if (SuffParseTransform(target
->name
, &s
, &t
)) {
934 if (*gs
->gn
== target
) {
939 Lst_Destroy(target
->children
, NULL
);
940 target
->children
= Lst_Init(FALSE
);
941 target
->type
= OP_TRANSFORM
;
943 * link the two together in the proper relationship and order
946 fprintf(debug_file
, "defining transformation from `%s' to `%s'\n",
949 SuffInsert(t
->children
, s
);
950 SuffInsert(s
->parents
, t
);
956 *-----------------------------------------------------------------------
958 * Add the suffix in string to the end of the list of known suffixes.
959 * Should we restructure the suffix graph? Make doesn't...
962 * str the name of the suffix to add
968 * A GNode is created for the suffix and a Suff structure is created and
969 * added to the suffixes list unless the suffix was already known.
970 * The mainNode passed can be modified if a target mutated into a
971 * transform and that target happened to be the main target.
972 *-----------------------------------------------------------------------
975 Suff_AddSuffix(char *str
, GNode
**gn
)
977 Suff
*s
; /* new suffix descriptor */
981 ln
= Lst_Find(sufflist
, str
, SuffSuffHasNameP
);
983 s
= bmake_malloc(sizeof(Suff
));
985 s
->name
= bmake_strdup(str
);
986 s
->nameLen
= strlen(s
->name
);
987 s
->searchPath
= Lst_Init(FALSE
);
988 s
->children
= Lst_Init(FALSE
);
989 s
->parents
= Lst_Init(FALSE
);
990 s
->ref
= Lst_Init(FALSE
);
995 (void)Lst_AtEnd(sufflist
, s
);
997 * We also look at our existing targets list to see if adding
998 * this suffix will make one of our current targets mutate into
999 * a suffix rule. This is ugly, but other makes treat all targets
1000 * that start with a . as suffix rules.
1005 Lst_ForEach(Targ_List(), SuffScanTargets
, &gs
);
1007 * Look for any existing transformations from or to this suffix.
1008 * XXX: Only do this after a Suff_ClearSuffixes?
1010 Lst_ForEach(transforms
, SuffRebuildGraph
, s
);
1015 *-----------------------------------------------------------------------
1017 * Return the search path for the given suffix, if it's defined.
1020 * The searchPath for the desired suffix or NULL if the suffix isn't
1025 *-----------------------------------------------------------------------
1028 Suff_GetPath(char *sname
)
1033 ln
= Lst_Find(sufflist
, sname
, SuffSuffHasNameP
);
1037 s
= (Suff
*)Lst_Datum(ln
);
1038 return (s
->searchPath
);
1043 *-----------------------------------------------------------------------
1045 * Extend the search paths for all suffixes to include the default
1052 * The searchPath field of all the suffixes is extended by the
1053 * directories in dirSearchPath. If paths were specified for the
1054 * ".h" suffix, the directories are stuffed into a global variable
1055 * called ".INCLUDES" with each directory preceded by a -I. The same
1056 * is done for the ".a" suffix, except the variable is called
1057 * ".LIBS" and the flag is -L.
1058 *-----------------------------------------------------------------------
1066 Lst inIncludes
; /* Cumulative .INCLUDES path */
1067 Lst inLibs
; /* Cumulative .LIBS path */
1069 if (Lst_Open(sufflist
) == FAILURE
) {
1073 inIncludes
= Lst_Init(FALSE
);
1074 inLibs
= Lst_Init(FALSE
);
1076 while ((ln
= Lst_Next(sufflist
)) != NULL
) {
1077 s
= (Suff
*)Lst_Datum(ln
);
1078 if (!Lst_IsEmpty (s
->searchPath
)) {
1080 if (s
->flags
& SUFF_INCLUDE
) {
1081 Dir_Concat(inIncludes
, s
->searchPath
);
1083 #endif /* INCLUDES */
1085 if (s
->flags
& SUFF_LIBRARY
) {
1086 Dir_Concat(inLibs
, s
->searchPath
);
1088 #endif /* LIBRARIES */
1089 Dir_Concat(s
->searchPath
, dirSearchPath
);
1091 Lst_Destroy(s
->searchPath
, Dir_Destroy
);
1092 s
->searchPath
= Lst_Duplicate(dirSearchPath
, Dir_CopyDir
);
1096 Var_Set(".INCLUDES", ptr
= Dir_MakeFlags("-I", inIncludes
), VAR_GLOBAL
, 0);
1098 Var_Set(".LIBS", ptr
= Dir_MakeFlags("-L", inLibs
), VAR_GLOBAL
, 0);
1101 Lst_Destroy(inIncludes
, Dir_Destroy
);
1102 Lst_Destroy(inLibs
, Dir_Destroy
);
1104 Lst_Close(sufflist
);
1108 *-----------------------------------------------------------------------
1109 * Suff_AddInclude --
1110 * Add the given suffix as a type of file which gets included.
1111 * Called from the parse module when a .INCLUDES line is parsed.
1112 * The suffix must have already been defined.
1115 * sname Name of the suffix to mark
1121 * The SUFF_INCLUDE bit is set in the suffix's flags field
1123 *-----------------------------------------------------------------------
1126 Suff_AddInclude(char *sname
)
1131 ln
= Lst_Find(sufflist
, sname
, SuffSuffHasNameP
);
1133 s
= (Suff
*)Lst_Datum(ln
);
1134 s
->flags
|= SUFF_INCLUDE
;
1139 *-----------------------------------------------------------------------
1141 * Add the given suffix as a type of file which is a library.
1142 * Called from the parse module when parsing a .LIBS line. The
1143 * suffix must have been defined via .SUFFIXES before this is
1147 * sname Name of the suffix to mark
1153 * The SUFF_LIBRARY bit is set in the suffix's flags field
1155 *-----------------------------------------------------------------------
1158 Suff_AddLib(char *sname
)
1163 ln
= Lst_Find(sufflist
, sname
, SuffSuffHasNameP
);
1165 s
= (Suff
*)Lst_Datum(ln
);
1166 s
->flags
|= SUFF_LIBRARY
;
1170 /********** Implicit Source Search Functions *********/
1173 *-----------------------------------------------------------------------
1175 * Add a suffix as a Src structure to the given list with its parent
1176 * being the given Src structure. If the suffix is the null suffix,
1177 * the prefix is used unaltered as the file name in the Src structure.
1180 * sp suffix for which to create a Src structure
1181 * lsp list and parent for the new Src
1187 * A Src structure is created and tacked onto the end of the list
1188 *-----------------------------------------------------------------------
1191 SuffAddSrc(void *sp
, void *lsp
)
1193 Suff
*s
= (Suff
*)sp
;
1194 LstSrc
*ls
= (LstSrc
*)lsp
;
1195 Src
*s2
; /* new Src structure */
1196 Src
*targ
; /* Target structure */
1200 if ((s
->flags
& SUFF_NULL
) && (*s
->name
!= '\0')) {
1202 * If the suffix has been marked as the NULL suffix, also create a Src
1203 * structure for a file with no suffix attached. Two birds, and all
1206 s2
= bmake_malloc(sizeof(Src
));
1207 s2
->file
= bmake_strdup(targ
->pref
);
1208 s2
->pref
= targ
->pref
;
1214 targ
->children
+= 1;
1215 (void)Lst_AtEnd(ls
->l
, s2
);
1217 s2
->cp
= Lst_Init(FALSE
);
1218 Lst_AtEnd(targ
->cp
, s2
);
1219 fprintf(debug_file
, "1 add %p %p to %p:", targ
, s2
, ls
->l
);
1220 Lst_ForEach(ls
->l
, PrintAddr
, NULL
);
1221 fprintf(debug_file
, "\n");
1224 s2
= bmake_malloc(sizeof(Src
));
1225 s2
->file
= str_concat(targ
->pref
, s
->name
, 0);
1226 s2
->pref
= targ
->pref
;
1232 targ
->children
+= 1;
1233 (void)Lst_AtEnd(ls
->l
, s2
);
1235 s2
->cp
= Lst_Init(FALSE
);
1236 Lst_AtEnd(targ
->cp
, s2
);
1237 fprintf(debug_file
, "2 add %p %p to %p:", targ
, s2
, ls
->l
);
1238 Lst_ForEach(ls
->l
, PrintAddr
, NULL
);
1239 fprintf(debug_file
, "\n");
1246 *-----------------------------------------------------------------------
1248 * Add all the children of targ as Src structures to the given list
1251 * l list to which to add the new level
1252 * targ Src structure to use as the parent
1258 * Lots of structures are created and added to the list
1259 *-----------------------------------------------------------------------
1262 SuffAddLevel(Lst l
, Src
*targ
)
1269 Lst_ForEach(targ
->suff
->children
, SuffAddSrc
, &ls
);
1273 *----------------------------------------------------------------------
1275 * Free all src structures in list that don't have a reference count
1278 * Ture if an src was removed
1281 * The memory is free'd.
1282 *----------------------------------------------------------------------
1285 SuffRemoveSrc(Lst l
)
1291 if (Lst_Open(l
) == FAILURE
) {
1295 fprintf(debug_file
, "cleaning %lx: ", (unsigned long) l
);
1296 Lst_ForEach(l
, PrintAddr
, NULL
);
1297 fprintf(debug_file
, "\n");
1301 while ((ln
= Lst_Next(l
)) != NULL
) {
1302 s
= (Src
*)Lst_Datum(ln
);
1303 if (s
->children
== 0) {
1309 LstNode ln2
= Lst_Member(s
->parent
->cp
, s
);
1311 Lst_Remove(s
->parent
->cp
, ln2
);
1313 --s
->parent
->children
;
1316 fprintf(debug_file
, "free: [l=%p] p=%p %d\n", l
, s
, s
->children
);
1317 Lst_Destroy(s
->cp
, NULL
);
1327 fprintf(debug_file
, "keep: [l=%p] p=%p %d: ", l
, s
, s
->children
);
1328 Lst_ForEach(s
->cp
, PrintAddr
, NULL
);
1329 fprintf(debug_file
, "\n");
1340 *-----------------------------------------------------------------------
1342 * Find the first existing file/target in the list srcs
1345 * srcs list of Src structures to search through
1348 * The lowest structure in the chain of transformations
1352 *-----------------------------------------------------------------------
1355 SuffFindThem(Lst srcs
, Lst slst
)
1357 Src
*s
; /* current Src */
1358 Src
*rs
; /* returned Src */
1363 while (!Lst_IsEmpty (srcs
)) {
1364 s
= (Src
*)Lst_DeQueue(srcs
);
1367 fprintf(debug_file
, "\ttrying %s...", s
->file
);
1371 * A file is considered to exist if either a node exists in the
1372 * graph for it or the file actually exists.
1374 if (Targ_FindNode(s
->file
, TARG_NOCREATE
) != NULL
) {
1376 fprintf(debug_file
, "remove %p from %p\n", s
, srcs
);
1382 if ((ptr
= Dir_FindFile(s
->file
, s
->suff
->searchPath
)) != NULL
) {
1385 fprintf(debug_file
, "remove %p from %p\n", s
, srcs
);
1392 fprintf(debug_file
, "not there\n");
1395 SuffAddLevel(srcs
, s
);
1399 if (DEBUG(SUFF
) && rs
) {
1400 fprintf(debug_file
, "got it\n");
1406 *-----------------------------------------------------------------------
1408 * See if any of the children of the target in the Src structure is
1409 * one from which the target can be transformed. If there is one,
1410 * a Src structure is put together for it and returned.
1413 * targ Src structure to play with
1416 * The Src structure of the "winning" child, or NULL if no such beast.
1419 * A Src structure may be allocated.
1421 *-----------------------------------------------------------------------
1424 SuffFindCmds(Src
*targ
, Lst slst
)
1426 LstNode ln
; /* General-purpose list node */
1427 GNode
*t
, /* Target GNode */
1428 *s
; /* Source GNode */
1429 int prefLen
;/* The length of the defined prefix */
1430 Suff
*suff
; /* Suffix on matching beastie */
1431 Src
*ret
; /* Return value */
1435 (void)Lst_Open(t
->children
);
1436 prefLen
= strlen(targ
->pref
);
1439 ln
= Lst_Next(t
->children
);
1441 Lst_Close(t
->children
);
1444 s
= (GNode
*)Lst_Datum(ln
);
1446 if (s
->type
& OP_OPTIONAL
&& Lst_IsEmpty(t
->commands
)) {
1448 * We haven't looked to see if .OPTIONAL files exist yet, so
1449 * don't use one as the implicit source.
1450 * This allows us to use .OPTIONAL in .depend files so make won't
1451 * complain "don't know how to make xxx.h' when a dependent file
1452 * has been moved/deleted.
1457 cp
= strrchr(s
->name
, '/');
1463 if (strncmp(cp
, targ
->pref
, prefLen
) != 0)
1466 * The node matches the prefix ok, see if it has a known
1469 ln
= Lst_Find(sufflist
, &cp
[prefLen
], SuffSuffHasNameP
);
1473 * It even has a known suffix, see if there's a transformation
1474 * defined between the node's suffix and the target's suffix.
1476 * XXX: Handle multi-stage transformations here, too.
1478 suff
= (Suff
*)Lst_Datum(ln
);
1480 if (Lst_Member(suff
->parents
, targ
->suff
) != NULL
)
1485 * Hot Damn! Create a new Src structure to describe
1486 * this transformation (making sure to duplicate the
1487 * source node's name so Suff_FindDeps can free it
1488 * again (ick)), and return the new structure.
1490 ret
= bmake_malloc(sizeof(Src
));
1491 ret
->file
= bmake_strdup(s
->name
);
1492 ret
->pref
= targ
->pref
;
1498 targ
->children
+= 1;
1500 ret
->cp
= Lst_Init(FALSE
);
1501 fprintf(debug_file
, "3 add %p %p\n", targ
, ret
);
1502 Lst_AtEnd(targ
->cp
, ret
);
1504 Lst_AtEnd(slst
, ret
);
1506 fprintf(debug_file
, "\tusing existing source %s\n", s
->name
);
1512 *-----------------------------------------------------------------------
1513 * SuffExpandChildren --
1514 * Expand the names of any children of a given node that contain
1515 * variable invocations or file wildcards into actual targets.
1518 * cln Child to examine
1519 * pgn Parent node being processed
1525 * The expanded node is removed from the parent's list of children,
1526 * and the parent's unmade counter is decremented, but other nodes
1529 *-----------------------------------------------------------------------
1532 SuffExpandChildren(LstNode cln
, GNode
*pgn
)
1534 GNode
*cgn
= (GNode
*)Lst_Datum(cln
);
1535 GNode
*gn
; /* New source 8) */
1536 char *cp
; /* Expanded value */
1538 if (!Lst_IsEmpty(cgn
->order_pred
) || !Lst_IsEmpty(cgn
->order_succ
))
1539 /* It is all too hard to process the result of .ORDER */
1542 if (cgn
->type
& OP_WAIT
)
1543 /* Ignore these (& OP_PHONY ?) */
1547 * First do variable expansion -- this takes precedence over
1548 * wildcard expansion. If the result contains wildcards, they'll be gotten
1549 * to later since the resulting words are tacked on to the end of
1550 * the children list.
1552 if (strchr(cgn
->name
, '$') == NULL
) {
1553 SuffExpandWildcards(cln
, pgn
);
1558 fprintf(debug_file
, "Expanding \"%s\"...", cgn
->name
);
1560 cp
= Var_Subst(NULL
, cgn
->name
, pgn
, VARF_UNDEFERR
|VARF_WANTRES
);
1563 Lst members
= Lst_Init(FALSE
);
1565 if (cgn
->type
& OP_ARCHV
) {
1567 * Node was an archive(member) target, so we want to call
1568 * on the Arch module to find the nodes for us, expanding
1569 * variables in the parent's context.
1571 char *sacrifice
= cp
;
1573 (void)Arch_ParseArchive(&sacrifice
, members
, pgn
);
1576 * Break the result into a vector of strings whose nodes
1577 * we can find, then add those nodes to the members list.
1578 * Unfortunately, we can't use brk_string b/c it
1579 * doesn't understand about variable specifications with
1583 char *initcp
= cp
; /* For freeing... */
1585 for (start
= cp
; *start
== ' ' || *start
== '\t'; start
++)
1587 for (cp
= start
; *cp
!= '\0'; cp
++) {
1588 if (*cp
== ' ' || *cp
== '\t') {
1590 * White-space -- terminate element, find the node,
1591 * add it, skip any further spaces.
1594 gn
= Targ_FindNode(start
, TARG_CREATE
);
1595 (void)Lst_AtEnd(members
, gn
);
1596 while (*cp
== ' ' || *cp
== '\t') {
1600 * Adjust cp for increment at start of loop, but
1601 * set start to first non-space.
1604 } else if (*cp
== '$') {
1606 * Start of a variable spec -- contact variable module
1607 * to find the end so we can skip over it.
1613 junk
= Var_Parse(cp
, pgn
, VARF_UNDEFERR
|VARF_WANTRES
,
1615 if (junk
!= var_Error
) {
1620 } else if (*cp
== '\\' && cp
[1] != '\0') {
1622 * Escaped something -- skip over it
1630 * Stuff left over -- add it to the list too
1632 gn
= Targ_FindNode(start
, TARG_CREATE
);
1633 (void)Lst_AtEnd(members
, gn
);
1636 * Point cp back at the beginning again so the variable value
1643 * Add all elements of the members list to the parent node.
1645 while(!Lst_IsEmpty(members
)) {
1646 gn
= (GNode
*)Lst_DeQueue(members
);
1649 fprintf(debug_file
, "%s...", gn
->name
);
1651 /* Add gn to the parents child list before the original child */
1652 (void)Lst_InsertBefore(pgn
->children
, cln
, gn
);
1653 (void)Lst_AtEnd(gn
->parents
, pgn
);
1655 /* Expand wildcards on new node */
1656 SuffExpandWildcards(Lst_Prev(cln
), pgn
);
1658 Lst_Destroy(members
, NULL
);
1666 fprintf(debug_file
, "\n");
1670 * Now the source is expanded, remove it from the list of children to
1671 * keep it from being processed.
1674 Lst_Remove(pgn
->children
, cln
);
1675 Lst_Remove(cgn
->parents
, Lst_Member(cgn
->parents
, pgn
));
1679 SuffExpandWildcards(LstNode cln
, GNode
*pgn
)
1681 GNode
*cgn
= (GNode
*)Lst_Datum(cln
);
1682 GNode
*gn
; /* New source 8) */
1683 char *cp
; /* Expanded value */
1684 Lst explist
; /* List of expansions */
1686 if (!Dir_HasWildcards(cgn
->name
))
1690 * Expand the word along the chosen path
1692 explist
= Lst_Init(FALSE
);
1693 Dir_Expand(cgn
->name
, Suff_FindPath(cgn
), explist
);
1695 while (!Lst_IsEmpty(explist
)) {
1697 * Fetch next expansion off the list and find its GNode
1699 cp
= (char *)Lst_DeQueue(explist
);
1702 fprintf(debug_file
, "%s...", cp
);
1704 gn
= Targ_FindNode(cp
, TARG_CREATE
);
1706 /* Add gn to the parents child list before the original child */
1707 (void)Lst_InsertBefore(pgn
->children
, cln
, gn
);
1708 (void)Lst_AtEnd(gn
->parents
, pgn
);
1713 * Nuke what's left of the list
1715 Lst_Destroy(explist
, NULL
);
1718 fprintf(debug_file
, "\n");
1722 * Now the source is expanded, remove it from the list of children to
1723 * keep it from being processed.
1726 Lst_Remove(pgn
->children
, cln
);
1727 Lst_Remove(cgn
->parents
, Lst_Member(cgn
->parents
, pgn
));
1731 *-----------------------------------------------------------------------
1733 * Find a path along which to expand the node.
1735 * If the word has a known suffix, use that path.
1736 * If it has no known suffix, use the default system search path.
1739 * gn Node being examined
1742 * The appropriate path to search for the GNode.
1745 * XXX: We could set the suffix here so that we don't have to scan
1748 *-----------------------------------------------------------------------
1751 Suff_FindPath(GNode
* gn
)
1753 Suff
*suff
= gn
->suffix
;
1756 SuffixCmpData sd
; /* Search string data */
1758 sd
.len
= strlen(gn
->name
);
1759 sd
.ename
= gn
->name
+ sd
.len
;
1760 ln
= Lst_Find(sufflist
, &sd
, SuffSuffIsSuffixP
);
1763 fprintf(debug_file
, "Wildcard expanding \"%s\"...", gn
->name
);
1766 suff
= (Suff
*)Lst_Datum(ln
);
1767 /* XXX: Here we can save the suffix so we don't have to do this again */
1772 fprintf(debug_file
, "suffix is \"%s\"...", suff
->name
);
1774 return suff
->searchPath
;
1777 * Use default search path
1779 return dirSearchPath
;
1784 *-----------------------------------------------------------------------
1785 * SuffApplyTransform --
1786 * Apply a transformation rule, given the source and target nodes
1796 * TRUE if successful, FALSE if not.
1799 * The source and target are linked and the commands from the
1800 * transformation are added to the target node's commands list.
1801 * All attributes but OP_DEPMASK and OP_TRANSFORM are applied
1802 * to the target. The target also inherits all the sources for
1803 * the transformation rule.
1805 *-----------------------------------------------------------------------
1808 SuffApplyTransform(GNode
*tGn
, GNode
*sGn
, Suff
*t
, Suff
*s
)
1810 LstNode ln
, nln
; /* General node */
1811 char *tname
; /* Name of transformation rule */
1812 GNode
*gn
; /* Node for same */
1815 * Form the proper links between the target and source.
1817 (void)Lst_AtEnd(tGn
->children
, sGn
);
1818 (void)Lst_AtEnd(sGn
->parents
, tGn
);
1822 * Locate the transformation rule itself
1824 tname
= str_concat(s
->name
, t
->name
, 0);
1825 ln
= Lst_Find(transforms
, tname
, SuffGNHasNameP
);
1830 * Not really such a transformation rule (can happen when we're
1831 * called to link an OP_MEMBER and OP_ARCHV node), so return
1837 gn
= (GNode
*)Lst_Datum(ln
);
1840 fprintf(debug_file
, "\tapplying %s -> %s to \"%s\"\n", s
->name
, t
->name
, tGn
->name
);
1844 * Record last child for expansion purposes
1846 ln
= Lst_Last(tGn
->children
);
1849 * Pass the buck to Make_HandleUse to apply the rule
1851 (void)Make_HandleUse(gn
, tGn
);
1854 * Deal with wildcards and variables in any acquired sources
1856 for (ln
= Lst_Succ(ln
); ln
!= NULL
; ln
= nln
) {
1858 SuffExpandChildren(ln
, tGn
);
1862 * Keep track of another parent to which this beast is transformed so
1863 * the .IMPSRC variable can be set correctly for the parent.
1865 (void)Lst_AtEnd(sGn
->iParents
, tGn
);
1872 *-----------------------------------------------------------------------
1873 * SuffFindArchiveDeps --
1874 * Locate dependencies for an OP_ARCHV node.
1877 * gn Node for which to locate dependencies
1883 * Same as Suff_FindDeps
1885 *-----------------------------------------------------------------------
1888 SuffFindArchiveDeps(GNode
*gn
, Lst slst
)
1890 char *eoarch
; /* End of archive portion */
1891 char *eoname
; /* End of member portion */
1892 GNode
*mem
; /* Node for member */
1893 static const char *copy
[] = {
1894 /* Variables to be copied from the member node */
1895 TARGET
, /* Must be first */
1896 PREFIX
, /* Must be second */
1898 LstNode ln
, nln
; /* Next suffix node to check */
1899 int i
; /* Index into copy and vals */
1900 Suff
*ms
; /* Suffix descriptor for member */
1901 char *name
; /* Start of member's name */
1904 * The node is an archive(member) pair. so we must find a
1905 * suffix for both of them.
1907 eoarch
= strchr(gn
->name
, '(');
1908 eoname
= strchr(eoarch
, ')');
1911 * Caller guarantees the format `libname(member)', via
1912 * Arch_ParseArchive.
1914 assert(eoarch
!= NULL
);
1915 assert(eoname
!= NULL
);
1917 *eoname
= '\0'; /* Nuke parentheses during suffix search */
1918 *eoarch
= '\0'; /* So a suffix can be found */
1923 * To simplify things, call Suff_FindDeps recursively on the member now,
1924 * so we can simply compare the member's .PREFIX and .TARGET variables
1925 * to locate its suffix. This allows us to figure out the suffix to
1926 * use for the archive without having to do a quadratic search over the
1927 * suffix list, backtracking for each one...
1929 mem
= Targ_FindNode(name
, TARG_CREATE
);
1930 SuffFindDeps(mem
, slst
);
1933 * Create the link between the two nodes right off
1935 (void)Lst_AtEnd(gn
->children
, mem
);
1936 (void)Lst_AtEnd(mem
->parents
, gn
);
1940 * Copy in the variables from the member node to this one.
1942 for (i
= (sizeof(copy
)/sizeof(copy
[0]))-1; i
>= 0; i
--) {
1944 Var_Set(copy
[i
], Var_Value(copy
[i
], mem
, &p1
), gn
, 0);
1952 * Didn't know what it was -- use .NULL suffix if not in make mode
1955 fprintf(debug_file
, "using null suffix\n");
1962 * Set the other two local variables required for this target.
1964 Var_Set(MEMBER
, name
, gn
, 0);
1965 Var_Set(ARCHIVE
, gn
->name
, gn
, 0);
1968 * Set $@ for compatibility with other makes
1970 Var_Set(TARGET
, gn
->name
, gn
, 0);
1973 * Now we've got the important local variables set, expand any sources
1974 * that still contain variables or wildcards in their names.
1976 for (ln
= Lst_First(gn
->children
); ln
!= NULL
; ln
= nln
) {
1978 SuffExpandChildren(ln
, gn
);
1983 * Member has a known suffix, so look for a transformation rule from
1984 * it to a possible suffix of the archive. Rather than searching
1985 * through the entire list, we just look at suffixes to which the
1986 * member's suffix may be transformed...
1988 SuffixCmpData sd
; /* Search string data */
1991 * Use first matching suffix...
1993 sd
.len
= eoarch
- gn
->name
;
1995 ln
= Lst_Find(ms
->parents
, &sd
, SuffSuffIsSuffixP
);
1999 * Got one -- apply it
2001 if (!SuffApplyTransform(gn
, mem
, (Suff
*)Lst_Datum(ln
), ms
) &&
2004 fprintf(debug_file
, "\tNo transformation from %s -> %s\n",
2005 ms
->name
, ((Suff
*)Lst_Datum(ln
))->name
);
2011 * Replace the opening and closing parens now we've no need of the separate
2014 *eoarch
= '('; *eoname
= ')';
2017 * Pretend gn appeared to the left of a dependency operator so
2018 * the user needn't provide a transformation from the member to the
2021 if (OP_NOP(gn
->type
)) {
2022 gn
->type
|= OP_DEPENDS
;
2026 * Flag the member as such so we remember to look in the archive for
2027 * its modification time. The OP_JOIN | OP_MADE is needed because this
2028 * target should never get made.
2030 mem
->type
|= OP_MEMBER
| OP_JOIN
| OP_MADE
;
2034 *-----------------------------------------------------------------------
2035 * SuffFindNormalDeps --
2036 * Locate implicit dependencies for regular targets.
2039 * gn Node for which to find sources
2045 * Same as Suff_FindDeps...
2047 *-----------------------------------------------------------------------
2050 SuffFindNormalDeps(GNode
*gn
, Lst slst
)
2052 char *eoname
; /* End of name */
2053 char *sopref
; /* Start of prefix */
2054 LstNode ln
, nln
; /* Next suffix node to check */
2055 Lst srcs
; /* List of sources at which to look */
2056 Lst targs
; /* List of targets to which things can be
2057 * transformed. They all have the same file,
2058 * but different suff and pref fields */
2059 Src
*bottom
; /* Start of found transformation path */
2060 Src
*src
; /* General Src pointer */
2061 char *pref
; /* Prefix to use */
2062 Src
*targ
; /* General Src target pointer */
2063 SuffixCmpData sd
; /* Search string data */
2066 sd
.len
= strlen(gn
->name
);
2067 sd
.ename
= eoname
= gn
->name
+ sd
.len
;
2072 * Begin at the beginning...
2074 ln
= Lst_First(sufflist
);
2075 srcs
= Lst_Init(FALSE
);
2076 targs
= Lst_Init(FALSE
);
2079 * We're caught in a catch-22 here. On the one hand, we want to use any
2080 * transformation implied by the target's sources, but we can't examine
2081 * the sources until we've expanded any variables/wildcards they may hold,
2082 * and we can't do that until we've set up the target's local variables
2083 * and we can't do that until we know what the proper suffix for the
2084 * target is (in case there are two suffixes one of which is a suffix of
2085 * the other) and we can't know that until we've found its implied
2086 * source, which we may not want to use if there's an existing source
2087 * that implies a different transformation.
2089 * In an attempt to get around this, which may not work all the time,
2090 * but should work most of the time, we look for implied sources first,
2091 * checking transformations to all possible suffixes of the target,
2092 * use what we find to set the target's local variables, expand the
2093 * children, then look for any overriding transformations they imply.
2094 * Should we find one, we discard the one we found before.
2099 if (!(gn
->type
& OP_PHONY
)) {
2101 while (ln
!= NULL
) {
2103 * Look for next possible suffix...
2105 ln
= Lst_FindFrom(sufflist
, ln
, &sd
, SuffSuffIsSuffixP
);
2108 int prefLen
; /* Length of the prefix */
2111 * Allocate a Src structure to which things can be transformed
2113 targ
= bmake_malloc(sizeof(Src
));
2114 targ
->file
= bmake_strdup(gn
->name
);
2115 targ
->suff
= (Suff
*)Lst_Datum(ln
);
2116 targ
->suff
->refCount
++;
2118 targ
->parent
= NULL
;
2121 targ
->cp
= Lst_Init(FALSE
);
2125 * Allocate room for the prefix, whose end is found by
2126 * subtracting the length of the suffix from
2127 * the end of the name.
2129 prefLen
= (eoname
- targ
->suff
->nameLen
) - sopref
;
2130 targ
->pref
= bmake_malloc(prefLen
+ 1);
2131 memcpy(targ
->pref
, sopref
, prefLen
);
2132 targ
->pref
[prefLen
] = '\0';
2135 * Add nodes from which the target can be made
2137 SuffAddLevel(srcs
, targ
);
2140 * Record the target so we can nuke it
2142 (void)Lst_AtEnd(targs
, targ
);
2145 * Search from this suffix's successor...
2152 * Handle target of unknown suffix...
2154 if (Lst_IsEmpty(targs
) && suffNull
!= NULL
) {
2156 fprintf(debug_file
, "\tNo known suffix on %s. Using .NULL suffix\n", gn
->name
);
2159 targ
= bmake_malloc(sizeof(Src
));
2160 targ
->file
= bmake_strdup(gn
->name
);
2161 targ
->suff
= suffNull
;
2162 targ
->suff
->refCount
++;
2164 targ
->parent
= NULL
;
2166 targ
->pref
= bmake_strdup(sopref
);
2168 targ
->cp
= Lst_Init(FALSE
);
2172 * Only use the default suffix rules if we don't have commands
2173 * defined for this gnode; traditional make programs used to
2174 * not define suffix rules if the gnode had children but we
2175 * don't do this anymore.
2177 if (Lst_IsEmpty(gn
->commands
))
2178 SuffAddLevel(srcs
, targ
);
2181 fprintf(debug_file
, "not ");
2185 fprintf(debug_file
, "adding suffix rules\n");
2187 (void)Lst_AtEnd(targs
, targ
);
2191 * Using the list of possible sources built up from the target
2192 * suffix(es), try and find an existing file/target that matches.
2194 bottom
= SuffFindThem(srcs
, slst
);
2196 if (bottom
== NULL
) {
2198 * No known transformations -- use the first suffix found
2199 * for setting the local variables.
2201 if (!Lst_IsEmpty(targs
)) {
2202 targ
= (Src
*)Lst_Datum(Lst_First(targs
));
2208 * Work up the transformation path to find the suffix of the
2209 * target to which the transformation was made.
2211 for (targ
= bottom
; targ
->parent
!= NULL
; targ
= targ
->parent
)
2216 Var_Set(TARGET
, gn
->path
? gn
->path
: gn
->name
, gn
, 0);
2218 pref
= (targ
!= NULL
) ? targ
->pref
: gn
->name
;
2219 Var_Set(PREFIX
, pref
, gn
, 0);
2222 * Now we've got the important local variables set, expand any sources
2223 * that still contain variables or wildcards in their names.
2225 for (ln
= Lst_First(gn
->children
); ln
!= NULL
; ln
= nln
) {
2227 SuffExpandChildren(ln
, gn
);
2232 fprintf(debug_file
, "\tNo valid suffix on %s\n", gn
->name
);
2237 * Deal with finding the thing on the default search path. We
2238 * always do that, not only if the node is only a source (not
2239 * on the lhs of a dependency operator or [XXX] it has neither
2240 * children or commands) as the old pmake did.
2242 if ((gn
->type
& (OP_PHONY
|OP_NOPATH
)) == 0) {
2244 gn
->path
= Dir_FindFile(gn
->name
,
2245 (targ
== NULL
? dirSearchPath
:
2246 targ
->suff
->searchPath
));
2247 if (gn
->path
!= NULL
) {
2249 Var_Set(TARGET
, gn
->path
, gn
, 0);
2253 * Suffix known for the thing -- trim the suffix off
2254 * the path to form the proper .PREFIX variable.
2256 int savep
= strlen(gn
->path
) - targ
->suff
->nameLen
;
2260 gn
->suffix
->refCount
--;
2261 gn
->suffix
= targ
->suff
;
2262 gn
->suffix
->refCount
++;
2264 savec
= gn
->path
[savep
];
2265 gn
->path
[savep
] = '\0';
2267 if ((ptr
= strrchr(gn
->path
, '/')) != NULL
)
2272 Var_Set(PREFIX
, ptr
, gn
, 0);
2274 gn
->path
[savep
] = savec
;
2277 * The .PREFIX gets the full path if the target has
2281 gn
->suffix
->refCount
--;
2284 if ((ptr
= strrchr(gn
->path
, '/')) != NULL
)
2289 Var_Set(PREFIX
, ptr
, gn
, 0);
2298 * If the suffix indicates that the target is a library, mark that in
2299 * the node's type field.
2301 if (targ
->suff
->flags
& SUFF_LIBRARY
) {
2306 * Check for overriding transformation rule implied by sources
2308 if (!Lst_IsEmpty(gn
->children
)) {
2309 src
= SuffFindCmds(targ
, slst
);
2313 * Free up all the Src structures in the transformation path
2314 * up to, but not including, the parent node.
2316 while (bottom
&& bottom
->parent
!= NULL
) {
2317 if (Lst_Member(slst
, bottom
) == NULL
) {
2318 Lst_AtEnd(slst
, bottom
);
2320 bottom
= bottom
->parent
;
2326 if (bottom
== NULL
) {
2328 * No idea from where it can come -- return now.
2334 * We now have a list of Src structures headed by 'bottom' and linked via
2335 * their 'parent' pointers. What we do next is create links between
2336 * source and target nodes (which may or may not have been created)
2337 * and set the necessary local variables in each target. The
2338 * commands for each target are set from the commands of the
2339 * transformation rule used to get from the src suffix to the targ
2340 * suffix. Note that this causes the commands list of the original
2341 * node, gn, to be replaced by the commands of the final
2342 * transformation rule. Also, the unmade field of gn is incremented.
2345 if (bottom
->node
== NULL
) {
2346 bottom
->node
= Targ_FindNode(bottom
->file
, TARG_CREATE
);
2349 for (src
= bottom
; src
->parent
!= NULL
; src
= src
->parent
) {
2352 if (src
->node
->suffix
)
2353 src
->node
->suffix
->refCount
--;
2354 src
->node
->suffix
= src
->suff
;
2355 src
->node
->suffix
->refCount
++;
2357 if (targ
->node
== NULL
) {
2358 targ
->node
= Targ_FindNode(targ
->file
, TARG_CREATE
);
2361 SuffApplyTransform(targ
->node
, src
->node
,
2362 targ
->suff
, src
->suff
);
2364 if (targ
->node
!= gn
) {
2366 * Finish off the dependency-search process for any nodes
2367 * between bottom and gn (no point in questing around the
2368 * filesystem for their implicit source when it's already
2369 * known). Note that the node can't have any sources that
2370 * need expanding, since SuffFindThem will stop on an existing
2371 * node, so all we need to do is set the standard and System V
2374 targ
->node
->type
|= OP_DEPS_FOUND
;
2376 Var_Set(PREFIX
, targ
->pref
, targ
->node
, 0);
2378 Var_Set(TARGET
, targ
->node
->name
, targ
->node
, 0);
2383 gn
->suffix
->refCount
--;
2384 gn
->suffix
= src
->suff
;
2385 gn
->suffix
->refCount
++;
2388 * Nuke the transformation path and the Src structures left over in the
2393 if (Lst_Member(slst
, bottom
) == NULL
)
2394 Lst_AtEnd(slst
, bottom
);
2396 while (SuffRemoveSrc(srcs
) || SuffRemoveSrc(targs
))
2399 Lst_Concat(slst
, srcs
, LST_CONCLINK
);
2400 Lst_Concat(slst
, targs
, LST_CONCLINK
);
2405 *-----------------------------------------------------------------------
2407 * Find implicit sources for the target described by the graph node
2414 * Nodes are added to the graph below the passed-in node. The nodes
2415 * are marked to have their IMPSRC variable filled in. The
2416 * PREFIX variable is set for the given node and all its
2420 * The path found by this target is the shortest path in the
2421 * transformation graph, which may pass through non-existent targets,
2422 * to an existing target. The search continues on all paths from the
2423 * root suffix until a file is found. I.e. if there's a path
2424 * .o -> .c -> .l -> .l,v from the root and the .l,v file exists but
2425 * the .c and .l files don't, the search will branch out in
2426 * all directions from .o and again from all the nodes on the
2427 * next level until the .l,v node is encountered.
2429 *-----------------------------------------------------------------------
2433 Suff_FindDeps(GNode
*gn
)
2436 SuffFindDeps(gn
, srclist
);
2437 while (SuffRemoveSrc(srclist
))
2444 * gn node we're dealing with
2448 SuffFindDeps(GNode
*gn
, Lst slst
)
2450 if (gn
->type
& OP_DEPS_FOUND
) {
2452 * If dependencies already found, no need to do it again...
2456 gn
->type
|= OP_DEPS_FOUND
;
2459 * Make sure we have these set, may get revised below.
2461 Var_Set(TARGET
, gn
->path
? gn
->path
: gn
->name
, gn
, 0);
2462 Var_Set(PREFIX
, gn
->name
, gn
, 0);
2465 fprintf(debug_file
, "SuffFindDeps (%s)\n", gn
->name
);
2468 if (gn
->type
& OP_ARCHV
) {
2469 SuffFindArchiveDeps(gn
, slst
);
2470 } else if (gn
->type
& OP_LIB
) {
2472 * If the node is a library, it is the arch module's job to find it
2473 * and set the TARGET variable accordingly. We merely provide the
2474 * search path, assuming all libraries end in ".a" (if the suffix
2475 * hasn't been defined, there's nothing we can do for it, so we just
2476 * set the TARGET variable to the node's name in order to give it a
2482 ln
= Lst_Find(sufflist
, LIBSUFF
, SuffSuffHasNameP
);
2484 gn
->suffix
->refCount
--;
2486 gn
->suffix
= s
= (Suff
*)Lst_Datum(ln
);
2487 gn
->suffix
->refCount
++;
2488 Arch_FindLib(gn
, s
->searchPath
);
2491 Var_Set(TARGET
, gn
->name
, gn
, 0);
2494 * Because a library (-lfoo) target doesn't follow the standard
2495 * filesystem conventions, we don't set the regular variables for
2496 * the thing. .PREFIX is simply made empty...
2498 Var_Set(PREFIX
, "", gn
, 0);
2500 SuffFindNormalDeps(gn
, slst
);
2505 *-----------------------------------------------------------------------
2507 * Define which suffix is the null suffix.
2510 * name Name of null suffix
2516 * 'suffNull' is altered.
2519 * Need to handle the changing of the null suffix gracefully so the
2520 * old transformation rules don't just go away.
2522 *-----------------------------------------------------------------------
2525 Suff_SetNull(char *name
)
2530 ln
= Lst_Find(sufflist
, name
, SuffSuffHasNameP
);
2532 s
= (Suff
*)Lst_Datum(ln
);
2533 if (suffNull
!= NULL
) {
2534 suffNull
->flags
&= ~SUFF_NULL
;
2536 s
->flags
|= SUFF_NULL
;
2538 * XXX: Here's where the transformation mangling would take place
2542 Parse_Error(PARSE_WARNING
, "Desired null suffix %s not defined.",
2548 *-----------------------------------------------------------------------
2550 * Initialize suffixes module
2557 *-----------------------------------------------------------------------
2563 suffClean
= Lst_Init(FALSE
);
2565 srclist
= Lst_Init(FALSE
);
2566 transforms
= Lst_Init(FALSE
);
2569 * Create null suffix for single-suffix rules (POSIX). The thing doesn't
2570 * actually go on the suffix list or everyone will think that's its
2573 Suff_ClearSuffixes();
2578 *----------------------------------------------------------------------
2580 * Cleanup the this module
2586 * The memory is free'd.
2587 *----------------------------------------------------------------------
2594 Lst_Destroy(sufflist
, SuffFree
);
2595 Lst_Destroy(suffClean
, SuffFree
);
2598 Lst_Destroy(srclist
, NULL
);
2599 Lst_Destroy(transforms
, NULL
);
2604 /********************* DEBUGGING FUNCTIONS **********************/
2606 static int SuffPrintName(void *s
, void *dummy MAKE_ATTR_UNUSED
)
2609 fprintf(debug_file
, "%s ", ((Suff
*)s
)->name
);
2614 SuffPrintSuff(void *sp
, void *dummy MAKE_ATTR_UNUSED
)
2616 Suff
*s
= (Suff
*)sp
;
2620 fprintf(debug_file
, "# `%s' [%d] ", s
->name
, s
->refCount
);
2624 fputs(" (", debug_file
);
2626 flag
= 1 << (ffs(flags
) - 1);
2630 fprintf(debug_file
, "NULL");
2633 fprintf(debug_file
, "INCLUDE");
2636 fprintf(debug_file
, "LIBRARY");
2639 fputc(flags
? '|' : ')', debug_file
);
2642 fputc('\n', debug_file
);
2643 fprintf(debug_file
, "#\tTo: ");
2644 Lst_ForEach(s
->parents
, SuffPrintName
, NULL
);
2645 fputc('\n', debug_file
);
2646 fprintf(debug_file
, "#\tFrom: ");
2647 Lst_ForEach(s
->children
, SuffPrintName
, NULL
);
2648 fputc('\n', debug_file
);
2649 fprintf(debug_file
, "#\tSearch Path: ");
2650 Dir_PrintPath(s
->searchPath
);
2651 fputc('\n', debug_file
);
2656 SuffPrintTrans(void *tp
, void *dummy MAKE_ATTR_UNUSED
)
2658 GNode
*t
= (GNode
*)tp
;
2660 fprintf(debug_file
, "%-16s: ", t
->name
);
2661 Targ_PrintType(t
->type
);
2662 fputc('\n', debug_file
);
2663 Lst_ForEach(t
->commands
, Targ_PrintCmd
, NULL
);
2664 fputc('\n', debug_file
);
2671 fprintf(debug_file
, "#*** Suffixes:\n");
2672 Lst_ForEach(sufflist
, SuffPrintSuff
, NULL
);
2674 fprintf(debug_file
, "#*** Transformations:\n");
2675 Lst_ForEach(transforms
, SuffPrintTrans
, NULL
);