nrelease: Add root_rw_mount="NO" to rc.conf to fix ISO boot
[dragonfly.git] / contrib / bmake / suff.c
blob5ee2b3dec30bc2494fae3a3cfe7a2fd423dd6564
1 /* $NetBSD: suff.c,v 1.366 2022/03/04 23:17:16 sjg 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.
72 * Maintain suffix lists and find implicit dependents using suffix
73 * transformation rules such as ".c.o".
75 * Interface:
76 * Suff_Init Initialize the module.
78 * Suff_End Clean up the module.
80 * Suff_ExtendPaths
81 * Extend the search path of each suffix to include the
82 * default search path.
84 * Suff_ClearSuffixes
85 * Clear out all the suffixes and transformations.
87 * Suff_IsTransform
88 * See if the passed string is a transformation rule.
90 * Suff_AddSuffix Add the passed string as another known suffix.
92 * Suff_GetPath Return the search path for the given suffix.
94 * Suff_AddInclude
95 * Mark the given suffix as denoting an include file.
97 * Suff_AddLib Mark the given suffix as denoting a library.
99 * Suff_AddTransform
100 * Add another transformation to the suffix graph.
102 * Suff_SetNull Define the suffix to consider the suffix of
103 * any file that doesn't have a known one.
105 * Suff_FindDeps Find implicit sources for and the location of
106 * a target based on its suffix. Returns the
107 * bottom-most node added to the graph or NULL
108 * if the target had no implicit sources.
110 * Suff_FindPath Return the appropriate path to search in order to
111 * find the node.
114 #include "make.h"
115 #include "dir.h"
117 /* "@(#)suff.c 8.4 (Berkeley) 3/21/94" */
118 MAKE_RCSID("$NetBSD: suff.c,v 1.366 2022/03/04 23:17:16 sjg Exp $");
120 typedef List SuffixList;
121 typedef ListNode SuffixListNode;
123 typedef List CandidateList;
124 typedef ListNode CandidateListNode;
126 /* The defined suffixes, such as '.c', '.o', '.l'. */
127 static SuffixList sufflist = LST_INIT;
128 #ifdef CLEANUP
129 /* The suffixes to be cleaned up at the end. */
130 static SuffixList suffClean = LST_INIT;
131 #endif
134 * The transformation rules, such as '.c.o' to transform '.c' into '.o',
135 * or simply '.c' to transform 'file.c' into 'file'.
137 static GNodeList transforms = LST_INIT;
140 * Counter for assigning suffix numbers.
141 * TODO: What are these suffix numbers used for?
143 static int sNum = 0;
145 typedef List SuffixListList;
148 * A suffix such as ".c" or ".o" that may be used in suffix transformation
149 * rules such as ".c.o:".
151 typedef struct Suffix {
152 /* The suffix itself, such as ".c" */
153 char *name;
154 /* Length of the name, to avoid strlen calls */
155 size_t nameLen;
157 * This suffix marks include files. Their search path ends up in the
158 * undocumented special variable '.INCLUDES'.
160 bool include:1;
162 * This suffix marks library files. Their search path ends up in the
163 * undocumented special variable '.LIBS'.
165 bool library:1;
167 * The empty suffix.
169 * XXX: What is the difference between the empty suffix and the null
170 * suffix?
172 * XXX: Why is SUFF_NULL needed at all? Wouldn't nameLen == 0 mean
173 * the same?
175 bool isNull:1;
176 /* The path along which files of this suffix may be found */
177 SearchPath *searchPath;
179 /* The suffix number; TODO: document the purpose of this number */
180 int sNum;
181 /* Reference count of list membership and several other places */
182 int refCount;
184 /* Suffixes we have a transformation to */
185 SuffixList parents;
186 /* Suffixes we have a transformation from */
187 SuffixList children;
189 * Lists in which this suffix is referenced.
191 * XXX: These lists are used nowhere, they are just appended to, for
192 * no apparent reason. They do have the side effect of increasing
193 * refCount though.
195 SuffixListList ref;
196 } Suffix;
199 * A candidate when searching for implied sources.
201 * For example, when "src.o" is to be made, a typical candidate is "src.c"
202 * via the transformation rule ".c.o". If that doesn't exist, maybe there is
203 * another transformation rule ".pas.c" that would make "src.pas" an indirect
204 * candidate as well. The first such chain that leads to an existing file or
205 * node is finally chosen to be made.
207 typedef struct Candidate {
208 /* The file or node to look for. */
209 char *file;
211 * The prefix from which file was formed. Its memory is shared among
212 * all candidates.
214 char *prefix;
215 /* The suffix on the file. */
216 Suffix *suff;
219 * The candidate that can be made from this, or NULL for the
220 * top-level candidate.
222 struct Candidate *parent;
223 /* The node describing the file. */
224 GNode *node;
227 * Count of existing children, only used for memory management, so we
228 * don't free this candidate too early or too late.
230 int numChildren;
231 #ifdef DEBUG_SRC
232 CandidateList childrenList;
233 #endif
234 } Candidate;
236 typedef struct CandidateSearcher {
238 CandidateList list;
241 * TODO: Add HashSet for seen entries, to avoid endless loops such as
242 * in suff-transform-endless.mk.
245 } CandidateSearcher;
248 /* TODO: Document the difference between nullSuff and emptySuff. */
249 /* The NULL suffix is used when a file has no known suffix */
250 static Suffix *nullSuff;
251 /* The empty suffix required for POSIX single-suffix transformation rules */
252 static Suffix *emptySuff;
255 static Suffix *
256 Suffix_Ref(Suffix *suff)
258 suff->refCount++;
259 return suff;
262 /* Change the value of a Suffix variable, adjusting the reference counts. */
263 static void
264 Suffix_Reassign(Suffix **var, Suffix *suff)
266 if (*var != NULL)
267 (*var)->refCount--;
268 *var = suff;
269 suff->refCount++;
272 /* Set a Suffix variable to NULL, adjusting the reference count. */
273 static void
274 Suffix_Unassign(Suffix **var)
276 if (*var != NULL)
277 (*var)->refCount--;
278 *var = NULL;
282 * See if pref is a prefix of str.
283 * Return NULL if it ain't, pointer to character in str after prefix if so.
285 static const char *
286 StrTrimPrefix(const char *pref, const char *str)
288 while (*str != '\0' && *pref == *str) {
289 pref++;
290 str++;
293 return *pref != '\0' ? NULL : str;
297 * See if suff is a suffix of str, and if so, return the pointer to the suffix
298 * in str, which at the same time marks the end of the prefix.
300 static const char *
301 StrTrimSuffix(const char *str, size_t strLen, const char *suff, size_t suffLen)
303 const char *suffInStr;
304 size_t i;
306 if (strLen < suffLen)
307 return NULL;
309 suffInStr = str + strLen - suffLen;
310 for (i = 0; i < suffLen; i++)
311 if (suff[i] != suffInStr[i])
312 return NULL;
314 return suffInStr;
318 * See if suff is a suffix of name, and if so, return the end of the prefix
319 * in name.
321 static const char *
322 Suffix_TrimSuffix(const Suffix *suff, size_t nameLen, const char *nameEnd)
324 return StrTrimSuffix(nameEnd - nameLen, nameLen,
325 suff->name, suff->nameLen);
328 static bool
329 Suffix_IsSuffix(const Suffix *suff, size_t nameLen, const char *nameEnd)
331 return Suffix_TrimSuffix(suff, nameLen, nameEnd) != NULL;
334 static Suffix *
335 FindSuffixByNameLen(const char *name, size_t nameLen)
337 SuffixListNode *ln;
339 for (ln = sufflist.first; ln != NULL; ln = ln->next) {
340 Suffix *suff = ln->datum;
341 if (suff->nameLen == nameLen &&
342 memcmp(suff->name, name, nameLen) == 0)
343 return suff;
345 return NULL;
348 static Suffix *
349 FindSuffixByName(const char *name)
351 return FindSuffixByNameLen(name, strlen(name));
354 static GNode *
355 FindTransformByName(const char *name)
357 GNodeListNode *ln;
359 for (ln = transforms.first; ln != NULL; ln = ln->next) {
360 GNode *gn = ln->datum;
361 if (strcmp(gn->name, name) == 0)
362 return gn;
364 return NULL;
367 static void
368 SuffixList_Unref(SuffixList *list, Suffix *suff)
370 SuffixListNode *ln = Lst_FindDatum(list, suff);
371 if (ln != NULL) {
372 Lst_Remove(list, ln);
373 suff->refCount--;
377 /* Free up all memory associated with the given suffix structure. */
378 static void
379 Suffix_Free(Suffix *suff)
382 if (suff == nullSuff)
383 nullSuff = NULL;
385 if (suff == emptySuff)
386 emptySuff = NULL;
388 #if 0
389 /* We don't delete suffixes in order, so we cannot use this */
390 if (suff->refCount != 0)
391 Punt("Internal error deleting suffix `%s' with refcount = %d",
392 suff->name, suff->refCount);
393 #endif
395 Lst_Done(&suff->ref);
396 Lst_Done(&suff->children);
397 Lst_Done(&suff->parents);
398 SearchPath_Free(suff->searchPath);
400 free(suff->name);
401 free(suff);
404 static void
405 SuffFree(void *p)
407 Suffix_Free(p);
410 /* Remove the suffix from the list, and free if it is otherwise unused. */
411 static void
412 SuffixList_Remove(SuffixList *list, Suffix *suff)
414 SuffixList_Unref(list, suff);
415 if (suff->refCount == 0) {
416 /* XXX: can lead to suff->refCount == -1 */
417 SuffixList_Unref(&sufflist, suff);
418 DEBUG1(SUFF, "Removing suffix \"%s\"\n", suff->name);
419 SuffFree(suff);
424 * Insert the suffix into the list, keeping the list ordered by suffix
425 * number.
427 static void
428 SuffixList_Insert(SuffixList *list, Suffix *suff)
430 SuffixListNode *ln;
431 Suffix *listSuff = NULL;
433 for (ln = list->first; ln != NULL; ln = ln->next) {
434 listSuff = ln->datum;
435 if (listSuff->sNum >= suff->sNum)
436 break;
439 if (ln == NULL) {
440 DEBUG2(SUFF, "inserting \"%s\" (%d) at end of list\n",
441 suff->name, suff->sNum);
442 Lst_Append(list, Suffix_Ref(suff));
443 Lst_Append(&suff->ref, list);
444 } else if (listSuff->sNum != suff->sNum) {
445 DEBUG4(SUFF, "inserting \"%s\" (%d) before \"%s\" (%d)\n",
446 suff->name, suff->sNum, listSuff->name, listSuff->sNum);
447 Lst_InsertBefore(list, ln, Suffix_Ref(suff));
448 Lst_Append(&suff->ref, list);
449 } else {
450 DEBUG2(SUFF, "\"%s\" (%d) is already there\n",
451 suff->name, suff->sNum);
455 static void
456 Relate(Suffix *srcSuff, Suffix *targSuff)
458 SuffixList_Insert(&targSuff->children, srcSuff);
459 SuffixList_Insert(&srcSuff->parents, targSuff);
462 static Suffix *
463 Suffix_New(const char *name)
465 Suffix *suff = bmake_malloc(sizeof *suff);
467 suff->name = bmake_strdup(name);
468 suff->nameLen = strlen(suff->name);
469 suff->searchPath = SearchPath_New();
470 Lst_Init(&suff->children);
471 Lst_Init(&suff->parents);
472 Lst_Init(&suff->ref);
473 suff->sNum = sNum++;
474 suff->include = false;
475 suff->library = false;
476 suff->isNull = false;
477 suff->refCount = 1; /* XXX: why 1? It's not assigned anywhere yet. */
479 return suff;
483 * Nuke the list of suffixes but keep all transformation rules around. The
484 * transformation graph is destroyed in this process, but we leave the list
485 * of rules so when a new graph is formed, the rules will remain. This
486 * function is called when a line '.SUFFIXES:' with an empty suffixes list is
487 * encountered in a makefile.
489 void
490 Suff_ClearSuffixes(void)
492 #ifdef CLEANUP
493 Lst_MoveAll(&suffClean, &sufflist);
494 #endif
495 DEBUG0(SUFF, "Clearing all suffixes\n");
496 Lst_Init(&sufflist);
497 sNum = 0;
498 if (nullSuff != NULL)
499 SuffFree(nullSuff);
500 emptySuff = nullSuff = Suffix_New("");
502 SearchPath_AddAll(nullSuff->searchPath, &dirSearchPath);
503 nullSuff->include = false;
504 nullSuff->library = false;
505 nullSuff->isNull = true;
509 * Parse a transformation string such as ".c.o" to find its two component
510 * suffixes (the source ".c" and the target ".o"). If there are no such
511 * suffixes, try a single-suffix transformation as well.
513 * Return true if the string is a valid transformation.
515 static bool
516 ParseTransform(const char *str, Suffix **out_src, Suffix **out_targ)
518 SuffixListNode *ln;
519 Suffix *single = NULL;
522 * Loop looking first for a suffix that matches the start of the
523 * string and then for one that exactly matches the rest of it. If
524 * we can find two that meet these criteria, we've successfully
525 * parsed the string.
527 for (ln = sufflist.first; ln != NULL; ln = ln->next) {
528 Suffix *src = ln->datum;
530 if (StrTrimPrefix(src->name, str) == NULL)
531 continue;
533 if (str[src->nameLen] == '\0') {
534 single = src;
535 } else {
536 Suffix *targ = FindSuffixByName(str + src->nameLen);
537 if (targ != NULL) {
538 *out_src = src;
539 *out_targ = targ;
540 return true;
545 if (single != NULL) {
547 * There was a suffix that encompassed the entire string, so we
548 * assume it was a transformation to the null suffix (thank you
549 * POSIX; search for "single suffix" or "single-suffix").
551 * We still prefer to find a double rule over a singleton,
552 * hence we leave this check until the end.
554 * XXX: Use emptySuff over nullSuff?
556 *out_src = single;
557 *out_targ = nullSuff;
558 return true;
560 return false;
564 * Return true if the given string is a transformation rule, that is, a
565 * concatenation of two known suffixes such as ".c.o" or a single suffix
566 * such as ".o".
568 bool
569 Suff_IsTransform(const char *str)
571 Suffix *src, *targ;
573 return ParseTransform(str, &src, &targ);
577 * Add the transformation rule to the list of rules and place the
578 * transformation itself in the graph.
580 * The transformation is linked to the two suffixes mentioned in the name.
582 * Input:
583 * name must have the form ".from.to" or just ".from"
585 * Results:
586 * The created or existing transformation node in the transforms list
588 GNode *
589 Suff_AddTransform(const char *name)
591 Suffix *srcSuff;
592 Suffix *targSuff;
594 GNode *gn = FindTransformByName(name);
595 if (gn == NULL) {
597 * Make a new graph node for the transformation. It will be
598 * filled in by the Parse module.
600 gn = GNode_New(name);
601 Lst_Append(&transforms, gn);
602 } else {
604 * New specification for transformation rule. Just nuke the
605 * old list of commands so they can be filled in again. We
606 * don't actually free the commands themselves, because a
607 * given command can be attached to several different
608 * transformations.
610 Lst_Done(&gn->commands);
611 Lst_Init(&gn->commands);
612 Lst_Done(&gn->children);
613 Lst_Init(&gn->children);
616 gn->type = OP_TRANSFORM;
619 /* TODO: Avoid the redundant parsing here. */
620 bool ok = ParseTransform(name, &srcSuff, &targSuff);
621 assert(ok);
622 /* LINTED 129 *//* expression has null effect */
623 (void)ok;
626 /* Link the two together in the proper relationship and order. */
627 DEBUG2(SUFF, "defining transformation from `%s' to `%s'\n",
628 srcSuff->name, targSuff->name);
629 Relate(srcSuff, targSuff);
631 return gn;
635 * Handle the finish of a transformation definition, removing the
636 * transformation from the graph if it has neither commands nor sources.
638 * If the node has no commands or children, the children and parents lists
639 * of the affected suffixes are altered.
641 * Input:
642 * gn Node for transformation
644 void
645 Suff_EndTransform(GNode *gn)
647 Suffix *srcSuff, *targSuff;
648 SuffixList *srcSuffParents;
650 if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty(&gn->cohorts))
651 gn = gn->cohorts.last->datum;
653 if (!(gn->type & OP_TRANSFORM))
654 return;
656 if (!Lst_IsEmpty(&gn->commands) || !Lst_IsEmpty(&gn->children)) {
657 DEBUG1(SUFF, "transformation %s complete\n", gn->name);
658 return;
662 * SuffParseTransform() may fail for special rules which are not
663 * actual transformation rules. (e.g. .DEFAULT)
665 if (!ParseTransform(gn->name, &srcSuff, &targSuff))
666 return;
668 DEBUG2(SUFF, "deleting incomplete transformation from `%s' to `%s'\n",
669 srcSuff->name, targSuff->name);
672 * Remember the parents since srcSuff could be deleted in
673 * SuffixList_Remove.
675 srcSuffParents = &srcSuff->parents;
676 SuffixList_Remove(&targSuff->children, srcSuff);
677 SuffixList_Remove(srcSuffParents, targSuff);
681 * Called from Suff_AddSuffix to search through the list of
682 * existing transformation rules and rebuild the transformation graph when
683 * it has been destroyed by Suff_ClearSuffixes. If the given rule is a
684 * transformation involving this suffix and another, existing suffix, the
685 * proper relationship is established between the two.
687 * The appropriate links will be made between this suffix and others if
688 * transformation rules exist for it.
690 * Input:
691 * transform Transformation to test
692 * suff Suffix to rebuild
694 static void
695 RebuildGraph(GNode *transform, Suffix *suff)
697 const char *name = transform->name;
698 size_t nameLen = strlen(name);
699 const char *toName;
702 * See if it is a transformation from this suffix to another suffix.
704 toName = StrTrimPrefix(suff->name, name);
705 if (toName != NULL) {
706 Suffix *to = FindSuffixByName(toName);
707 if (to != NULL) {
708 Relate(suff, to);
709 return;
714 * See if it is a transformation from another suffix to this suffix.
716 toName = Suffix_TrimSuffix(suff, nameLen, name + nameLen);
717 if (toName != NULL) {
718 Suffix *from = FindSuffixByNameLen(name,
719 (size_t)(toName - name));
720 if (from != NULL)
721 Relate(from, suff);
726 * During Suff_AddSuffix, search through the list of existing targets and find
727 * if any of the existing targets can be turned into a transformation rule.
729 * If such a target is found and the target is the current main target, the
730 * main target is set to NULL and the next target examined (if that exists)
731 * becomes the main target.
733 * Results:
734 * true iff a new main target has been selected.
736 static bool
737 UpdateTarget(GNode *target, Suffix *suff, bool *inout_removedMain)
739 Suffix *srcSuff, *targSuff;
740 char *ptr;
742 if (mainNode == NULL && *inout_removedMain &&
743 GNode_IsMainCandidate(target)) {
744 DEBUG1(MAKE, "Setting main node to \"%s\"\n", target->name);
745 mainNode = target;
747 * XXX: Why could it be a good idea to return true here?
748 * The main task of this function is to turn ordinary nodes
749 * into transformations, no matter whether or not a new .MAIN
750 * node has been found.
753 * XXX: Even when changing this to false, none of the existing
754 * unit tests fails.
756 return true;
759 if (target->type == OP_TRANSFORM)
760 return false;
763 * XXX: What about a transformation ".cpp.c"? If ".c" is added as
764 * a new suffix, it seems wrong that this transformation would be
765 * skipped just because ".c" happens to be a prefix of ".cpp".
767 ptr = strstr(target->name, suff->name);
768 if (ptr == NULL)
769 return false;
772 * XXX: In suff-rebuild.mk, in the line '.SUFFIXES: .c .b .a', this
773 * condition prevents the rule '.b.c' from being added again during
774 * Suff_AddSuffix(".b").
776 * XXX: Removing this paragraph makes suff-add-later.mk use massive
777 * amounts of memory.
779 if (ptr == target->name)
780 return false;
782 if (ParseTransform(target->name, &srcSuff, &targSuff)) {
783 if (mainNode == target) {
784 DEBUG1(MAKE,
785 "Setting main node from \"%s\" back to null\n",
786 target->name);
787 *inout_removedMain = true;
788 mainNode = NULL;
790 Lst_Done(&target->children);
791 Lst_Init(&target->children);
792 target->type = OP_TRANSFORM;
795 * Link the two together in the proper relationship and order.
797 DEBUG2(SUFF, "defining transformation from `%s' to `%s'\n",
798 srcSuff->name, targSuff->name);
799 Relate(srcSuff, targSuff);
801 return false;
805 * Look at all existing targets to see if adding this suffix will make one
806 * of the current targets mutate into a suffix rule.
808 * This is ugly, but other makes treat all targets that start with a '.' as
809 * suffix rules.
811 static void
812 UpdateTargets(Suffix *suff)
814 bool removedMain = false;
815 GNodeListNode *ln;
817 for (ln = Targ_List()->first; ln != NULL; ln = ln->next) {
818 GNode *gn = ln->datum;
819 if (UpdateTarget(gn, suff, &removedMain))
820 break;
825 * Add the suffix to the end of the list of known suffixes.
826 * Should we restructure the suffix graph? Make doesn't.
828 * A GNode is created for the suffix (XXX: this sounds completely wrong) and
829 * a Suffix structure is created and added to the suffixes list unless the
830 * suffix was already known.
831 * The mainNode passed can be modified if a target mutated into a
832 * transform and that target happened to be the main target.
834 * Input:
835 * name the name of the suffix to add
837 void
838 Suff_AddSuffix(const char *name)
840 GNodeListNode *ln;
842 Suffix *suff = FindSuffixByName(name);
843 if (suff != NULL)
844 return;
846 suff = Suffix_New(name);
847 Lst_Append(&sufflist, suff);
848 DEBUG1(SUFF, "Adding suffix \"%s\"\n", suff->name);
850 UpdateTargets(suff);
853 * Look for any existing transformations from or to this suffix.
854 * XXX: Only do this after a Suff_ClearSuffixes?
856 for (ln = transforms.first; ln != NULL; ln = ln->next)
857 RebuildGraph(ln->datum, suff);
860 /* Return the search path for the given suffix, or NULL. */
861 SearchPath *
862 Suff_GetPath(const char *name)
864 Suffix *suff = FindSuffixByName(name);
865 return suff != NULL ? suff->searchPath : NULL;
869 * Extend the search paths for all suffixes to include the default search
870 * path (dirSearchPath).
872 * The default search path can be defined using the special target '.PATH'.
873 * The search path of each suffix can be defined using the special target
874 * '.PATH<suffix>'.
876 * If paths were specified for the ".h" suffix, the directories are stuffed
877 * into a global variable called ".INCLUDES" with each directory preceded by
878 * '-I'. The same is done for the ".a" suffix, except the variable is called
879 * ".LIBS" and the flag is '-L'.
881 void
882 Suff_ExtendPaths(void)
884 SuffixListNode *ln;
885 char *flags;
886 SearchPath *includesPath = SearchPath_New();
887 SearchPath *libsPath = SearchPath_New();
889 for (ln = sufflist.first; ln != NULL; ln = ln->next) {
890 Suffix *suff = ln->datum;
891 if (!Lst_IsEmpty(&suff->searchPath->dirs)) {
892 #ifdef INCLUDES
893 if (suff->include)
894 SearchPath_AddAll(includesPath,
895 suff->searchPath);
896 #endif
897 #ifdef LIBRARIES
898 if (suff->library)
899 SearchPath_AddAll(libsPath, suff->searchPath);
900 #endif
901 SearchPath_AddAll(suff->searchPath, &dirSearchPath);
902 } else {
903 SearchPath_Free(suff->searchPath);
904 suff->searchPath = Dir_CopyDirSearchPath();
908 flags = SearchPath_ToFlags(includesPath, "-I");
909 Global_Set(".INCLUDES", flags);
910 free(flags);
912 flags = SearchPath_ToFlags(libsPath, "-L");
913 Global_Set(".LIBS", flags);
914 free(flags);
916 SearchPath_Free(includesPath);
917 SearchPath_Free(libsPath);
921 * Add the given suffix as a type of file which gets included.
922 * Called when a '.INCLUDES: .h' line is parsed.
923 * To have an effect, the suffix must already exist.
924 * This affects the magic variable '.INCLUDES'.
926 void
927 Suff_AddInclude(const char *suffName)
929 Suffix *suff = FindSuffixByName(suffName);
930 if (suff != NULL)
931 suff->include = true;
935 * Add the given suffix as a type of file which is a library.
936 * Called when a '.LIBS: .a' line is parsed.
937 * To have an effect, the suffix must already exist.
938 * This affects the magic variable '.LIBS'.
940 void
941 Suff_AddLib(const char *suffName)
943 Suffix *suff = FindSuffixByName(suffName);
944 if (suff != NULL)
945 suff->library = true;
948 /********** Implicit Source Search Functions *********/
950 static void
951 CandidateSearcher_Init(CandidateSearcher *cs)
953 Lst_Init(&cs->list);
956 static void
957 CandidateSearcher_Done(CandidateSearcher *cs)
959 Lst_Done(&cs->list);
962 static void
963 CandidateSearcher_Add(CandidateSearcher *cs, Candidate *cand)
965 /* TODO: filter duplicates */
966 Lst_Append(&cs->list, cand);
969 static void
970 CandidateSearcher_AddIfNew(CandidateSearcher *cs, Candidate *cand)
972 /* TODO: filter duplicates */
973 if (Lst_FindDatum(&cs->list, cand) == NULL)
974 Lst_Append(&cs->list, cand);
977 static void
978 CandidateSearcher_MoveAll(CandidateSearcher *cs, CandidateList *list)
980 /* TODO: filter duplicates */
981 Lst_MoveAll(&cs->list, list);
985 #ifdef DEBUG_SRC
986 static void
987 CandidateList_PrintAddrs(CandidateList *list)
989 CandidateListNode *ln;
991 for (ln = list->first; ln != NULL; ln = ln->next) {
992 Candidate *cand = ln->datum;
993 debug_printf(" %p:%s", cand, cand->file);
995 debug_printf("\n");
997 #endif
999 static Candidate *
1000 Candidate_New(char *name, char *prefix, Suffix *suff, Candidate *parent,
1001 GNode *gn)
1003 Candidate *cand = bmake_malloc(sizeof *cand);
1005 cand->file = name;
1006 cand->prefix = prefix;
1007 cand->suff = Suffix_Ref(suff);
1008 cand->parent = parent;
1009 cand->node = gn;
1010 cand->numChildren = 0;
1011 #ifdef DEBUG_SRC
1012 Lst_Init(&cand->childrenList);
1013 #endif
1015 return cand;
1018 /* Add a new candidate to the list. */
1019 /*ARGSUSED*/
1020 static void
1021 CandidateList_Add(CandidateList *list, char *srcName, Candidate *targ,
1022 Suffix *suff, const char *debug_tag MAKE_ATTR_UNUSED)
1024 Candidate *cand = Candidate_New(srcName, targ->prefix, suff, targ,
1025 NULL);
1026 targ->numChildren++;
1027 Lst_Append(list, cand);
1029 #ifdef DEBUG_SRC
1030 Lst_Append(&targ->childrenList, cand);
1031 debug_printf("%s add suff %p:%s candidate %p:%s to list %p:",
1032 debug_tag, targ, targ->file, cand, cand->file, list);
1033 CandidateList_PrintAddrs(list);
1034 #endif
1038 * Add all candidates to the list that can be formed by applying a suffix to
1039 * the candidate.
1041 static void
1042 CandidateList_AddCandidatesFor(CandidateList *list, Candidate *cand)
1044 SuffixListNode *ln;
1045 for (ln = cand->suff->children.first; ln != NULL; ln = ln->next) {
1046 Suffix *suff = ln->datum;
1048 if (suff->isNull && suff->name[0] != '\0') {
1050 * If the suffix has been marked as the NULL suffix,
1051 * also create a candidate for a file with no suffix
1052 * attached.
1054 CandidateList_Add(list, bmake_strdup(cand->prefix),
1055 cand, suff, "1");
1058 CandidateList_Add(list, str_concat2(cand->prefix, suff->name),
1059 cand, suff, "2");
1064 * Free the first candidate in the list that is not referenced anymore.
1065 * Return whether a candidate was removed.
1067 static bool
1068 RemoveCandidate(CandidateList *srcs)
1070 CandidateListNode *ln;
1072 #ifdef DEBUG_SRC
1073 debug_printf("cleaning list %p:", srcs);
1074 CandidateList_PrintAddrs(srcs);
1075 #endif
1077 for (ln = srcs->first; ln != NULL; ln = ln->next) {
1078 Candidate *src = ln->datum;
1080 if (src->numChildren == 0) {
1081 if (src->parent == NULL)
1082 free(src->prefix);
1083 else {
1084 #ifdef DEBUG_SRC
1085 /* XXX: Lst_RemoveDatum */
1086 CandidateListNode *ln2;
1087 ln2 = Lst_FindDatum(&src->parent->childrenList,
1088 src);
1089 if (ln2 != NULL)
1090 Lst_Remove(&src->parent->childrenList,
1091 ln2);
1092 #endif
1093 src->parent->numChildren--;
1095 #ifdef DEBUG_SRC
1096 debug_printf("free: list %p src %p:%s children %d\n",
1097 srcs, src, src->file, src->numChildren);
1098 Lst_Done(&src->childrenList);
1099 #endif
1100 Lst_Remove(srcs, ln);
1101 free(src->file);
1102 free(src);
1103 return true;
1105 #ifdef DEBUG_SRC
1106 else {
1107 debug_printf("keep: list %p src %p:%s children %d:",
1108 srcs, src, src->file, src->numChildren);
1109 CandidateList_PrintAddrs(&src->childrenList);
1111 #endif
1114 return false;
1117 /* Find the first existing file/target in srcs. */
1118 static Candidate *
1119 FindThem(CandidateList *srcs, CandidateSearcher *cs)
1121 HashSet seen;
1123 HashSet_Init(&seen);
1125 while (!Lst_IsEmpty(srcs)) {
1126 Candidate *src = Lst_Dequeue(srcs);
1128 #ifdef DEBUG_SRC
1129 debug_printf("remove from list %p src %p:%s\n",
1130 srcs, src, src->file);
1131 #endif
1132 DEBUG1(SUFF, "\ttrying %s...", src->file);
1135 * A file is considered to exist if either a node exists in the
1136 * graph for it or the file actually exists.
1138 if (Targ_FindNode(src->file) != NULL) {
1139 found:
1140 HashSet_Done(&seen);
1141 DEBUG0(SUFF, "got it\n");
1142 return src;
1146 char *file = Dir_FindFile(src->file,
1147 src->suff->searchPath);
1148 if (file != NULL) {
1149 free(file);
1150 goto found;
1154 DEBUG0(SUFF, "not there\n");
1156 if (HashSet_Add(&seen, src->file))
1157 CandidateList_AddCandidatesFor(srcs, src);
1158 else {
1159 DEBUG1(SUFF, "FindThem: skipping duplicate \"%s\"\n",
1160 src->file);
1163 CandidateSearcher_Add(cs, src);
1166 HashSet_Done(&seen);
1167 return NULL;
1171 * See if any of the children of the candidate's GNode is one from which the
1172 * target can be transformed. If there is one, a candidate is put together
1173 * for it and returned.
1175 static Candidate *
1176 FindCmds(Candidate *targ, CandidateSearcher *cs)
1178 GNodeListNode *gln;
1179 GNode *tgn; /* Target GNode */
1180 GNode *sgn; /* Source GNode */
1181 size_t prefLen; /* The length of the defined prefix */
1182 Suffix *suff; /* Suffix of the matching candidate */
1183 Candidate *ret; /* Return value */
1185 tgn = targ->node;
1186 prefLen = strlen(targ->prefix);
1188 for (gln = tgn->children.first; gln != NULL; gln = gln->next) {
1189 const char *base;
1191 sgn = gln->datum;
1193 if (sgn->type & OP_OPTIONAL && Lst_IsEmpty(&tgn->commands)) {
1195 * We haven't looked to see if .OPTIONAL files exist
1196 * yet, so don't use one as the implicit source.
1197 * This allows us to use .OPTIONAL in .depend files so
1198 * make won't complain "don't know how to make xxx.h"
1199 * when a dependent file has been moved/deleted.
1201 continue;
1204 base = str_basename(sgn->name);
1205 if (strncmp(base, targ->prefix, prefLen) != 0)
1206 continue;
1208 * The node matches the prefix, see if it has a known suffix.
1210 suff = FindSuffixByName(base + prefLen);
1211 if (suff == NULL)
1212 continue;
1215 * It even has a known suffix, see if there's a transformation
1216 * defined between the node's suffix and the target's suffix.
1218 * XXX: Handle multi-stage transformations here, too.
1221 if (Lst_FindDatum(&suff->parents, targ->suff) != NULL)
1222 break;
1225 if (gln == NULL)
1226 return NULL;
1228 ret = Candidate_New(bmake_strdup(sgn->name), targ->prefix, suff, targ,
1229 sgn);
1230 targ->numChildren++;
1231 #ifdef DEBUG_SRC
1232 debug_printf("3 add targ %p:%s ret %p:%s\n",
1233 targ, targ->file, ret, ret->file);
1234 Lst_Append(&targ->childrenList, ret);
1235 #endif
1236 CandidateSearcher_Add(cs, ret);
1237 DEBUG1(SUFF, "\tusing existing source %s\n", sgn->name);
1238 return ret;
1241 static void
1242 ExpandWildcards(GNodeListNode *cln, GNode *pgn)
1244 GNode *cgn = cln->datum;
1245 StringList expansions;
1247 if (!Dir_HasWildcards(cgn->name))
1248 return;
1251 * Expand the word along the chosen path
1253 Lst_Init(&expansions);
1254 SearchPath_Expand(Suff_FindPath(cgn), cgn->name, &expansions);
1256 while (!Lst_IsEmpty(&expansions)) {
1257 GNode *gn;
1259 * Fetch next expansion off the list and find its GNode
1261 char *cp = Lst_Dequeue(&expansions);
1263 DEBUG1(SUFF, "%s...", cp);
1264 gn = Targ_GetNode(cp);
1266 /* Insert gn before the original child. */
1267 Lst_InsertBefore(&pgn->children, cln, gn);
1268 Lst_Append(&gn->parents, pgn);
1269 pgn->unmade++;
1272 Lst_Done(&expansions);
1274 DEBUG0(SUFF, "\n");
1277 * Now the source is expanded, remove it from the list of children to
1278 * keep it from being processed.
1280 pgn->unmade--;
1281 Lst_Remove(&pgn->children, cln);
1282 Lst_Remove(&cgn->parents, Lst_FindDatum(&cgn->parents, pgn));
1286 * Break the result into a vector of strings whose nodes we can find, then
1287 * add those nodes to the members list.
1289 * Unfortunately, we can't use Str_Words because it doesn't understand about
1290 * variable expressions with spaces in them.
1292 static void
1293 ExpandChildrenRegular(char *cp, GNode *pgn, GNodeList *members)
1295 char *start;
1297 pp_skip_hspace(&cp);
1298 start = cp;
1299 while (*cp != '\0') {
1300 if (*cp == ' ' || *cp == '\t') {
1301 GNode *gn;
1303 * White-space -- terminate element, find the node,
1304 * add it, skip any further spaces.
1306 *cp++ = '\0';
1307 gn = Targ_GetNode(start);
1308 Lst_Append(members, gn);
1309 pp_skip_hspace(&cp);
1310 /* Continue at the next non-space. */
1311 start = cp;
1312 } else if (*cp == '$') {
1313 /* Skip over the variable expression. */
1314 const char *nested_p = cp;
1315 FStr junk;
1317 (void)Var_Parse(&nested_p, pgn, VARE_PARSE_ONLY, &junk);
1318 /* TODO: handle errors */
1319 if (junk.str == var_Error) {
1320 Parse_Error(PARSE_FATAL,
1321 "Malformed variable expression at \"%s\"",
1322 cp);
1323 cp++;
1324 } else {
1325 cp += nested_p - cp;
1328 FStr_Done(&junk);
1329 } else if (cp[0] == '\\' && cp[1] != '\0') {
1330 /* Escaped something -- skip over it. */
1332 * XXX: In other places, escaping at this syntactical
1333 * position is done by a '$', not a '\'. The '\' is
1334 * only used in variable modifiers.
1336 cp += 2;
1337 } else {
1338 cp++;
1342 if (cp != start) {
1344 * Stuff left over -- add it to the list too
1346 GNode *gn = Targ_GetNode(start);
1347 Lst_Append(members, gn);
1352 * Expand the names of any children of a given node that contain variable
1353 * expressions or file wildcards into actual targets.
1355 * The expanded node is removed from the parent's list of children, and the
1356 * parent's unmade counter is decremented, but other nodes may be added.
1358 * Input:
1359 * cln Child to examine
1360 * pgn Parent node being processed
1362 static void
1363 ExpandChildren(GNodeListNode *cln, GNode *pgn)
1365 GNode *cgn = cln->datum;
1366 char *cp; /* Expanded value */
1368 if (!Lst_IsEmpty(&cgn->order_pred) || !Lst_IsEmpty(&cgn->order_succ))
1369 /* It is all too hard to process the result of .ORDER */
1370 return;
1372 if (cgn->type & OP_WAIT)
1373 /* Ignore these (& OP_PHONY ?) */
1374 return;
1377 * First do variable expansion -- this takes precedence over wildcard
1378 * expansion. If the result contains wildcards, they'll be gotten to
1379 * later since the resulting words are tacked on to the end of the
1380 * children list.
1382 if (strchr(cgn->name, '$') == NULL) {
1383 ExpandWildcards(cln, pgn);
1384 return;
1387 DEBUG1(SUFF, "Expanding \"%s\"...", cgn->name);
1388 (void)Var_Subst(cgn->name, pgn, VARE_UNDEFERR, &cp);
1389 /* TODO: handle errors */
1392 GNodeList members = LST_INIT;
1394 if (cgn->type & OP_ARCHV) {
1396 * Node was an 'archive(member)' target, so
1397 * call on the Arch module to find the nodes for us,
1398 * expanding variables in the parent's scope.
1400 char *p = cp;
1401 (void)Arch_ParseArchive(&p, &members, pgn);
1402 } else {
1403 ExpandChildrenRegular(cp, pgn, &members);
1407 * Add all elements of the members list to the parent node.
1409 while (!Lst_IsEmpty(&members)) {
1410 GNode *gn = Lst_Dequeue(&members);
1412 DEBUG1(SUFF, "%s...", gn->name);
1414 * Add gn to the parents child list before the
1415 * original child.
1417 Lst_InsertBefore(&pgn->children, cln, gn);
1418 Lst_Append(&gn->parents, pgn);
1419 pgn->unmade++;
1420 /* Expand wildcards on new node */
1421 ExpandWildcards(cln->prev, pgn);
1423 Lst_Done(&members);
1425 free(cp);
1428 DEBUG0(SUFF, "\n");
1431 * Now the source is expanded, remove it from the list of children to
1432 * keep it from being processed.
1434 pgn->unmade--;
1435 Lst_Remove(&pgn->children, cln);
1436 Lst_Remove(&cgn->parents, Lst_FindDatum(&cgn->parents, pgn));
1439 static void
1440 ExpandAllChildren(GNode *gn)
1442 GNodeListNode *ln, *nln;
1444 for (ln = gn->children.first; ln != NULL; ln = nln) {
1445 nln = ln->next;
1446 ExpandChildren(ln, gn);
1451 * Find a path along which to expand the node.
1453 * If the node has a known suffix, use that path.
1454 * If it has no known suffix, use the default system search path.
1456 * Input:
1457 * gn Node being examined
1459 * Results:
1460 * The appropriate path to search for the GNode.
1462 SearchPath *
1463 Suff_FindPath(GNode *gn)
1465 Suffix *suff = gn->suffix;
1467 if (suff == NULL) {
1468 char *name = gn->name;
1469 size_t nameLen = strlen(gn->name);
1470 SuffixListNode *ln;
1471 for (ln = sufflist.first; ln != NULL; ln = ln->next)
1472 if (Suffix_IsSuffix(ln->datum, nameLen, name + nameLen))
1473 break;
1475 DEBUG1(SUFF, "Wildcard expanding \"%s\"...", gn->name);
1476 if (ln != NULL)
1477 suff = ln->datum;
1479 * XXX: Here we can save the suffix so we don't have to do
1480 * this again.
1484 if (suff != NULL) {
1485 DEBUG1(SUFF, "suffix is \"%s\"...\n", suff->name);
1486 return suff->searchPath;
1487 } else {
1488 DEBUG0(SUFF, "\n");
1489 return &dirSearchPath; /* Use default search path */
1494 * Apply a transformation rule, given the source and target nodes and
1495 * suffixes.
1497 * The source and target are linked and the commands from the transformation
1498 * are added to the target node's commands list. The target also inherits all
1499 * the sources for the transformation rule.
1501 * Results:
1502 * true if successful, false if not.
1504 static bool
1505 ApplyTransform(GNode *tgn, GNode *sgn, Suffix *tsuff, Suffix *ssuff)
1507 GNodeListNode *ln;
1508 char *tname; /* Name of transformation rule */
1509 GNode *gn; /* Node for the transformation rule */
1511 /* Form the proper links between the target and source. */
1512 Lst_Append(&tgn->children, sgn);
1513 Lst_Append(&sgn->parents, tgn);
1514 tgn->unmade++;
1516 /* Locate the transformation rule itself. */
1517 tname = str_concat2(ssuff->name, tsuff->name);
1518 gn = FindTransformByName(tname);
1519 free(tname);
1521 /* This can happen when linking an OP_MEMBER and OP_ARCHV node. */
1522 if (gn == NULL)
1523 return false;
1525 DEBUG3(SUFF, "\tapplying %s -> %s to \"%s\"\n",
1526 ssuff->name, tsuff->name, tgn->name);
1528 /* Record last child; Make_HandleUse may add child nodes. */
1529 ln = tgn->children.last;
1531 /* Apply the rule. */
1532 Make_HandleUse(gn, tgn);
1534 /* Deal with wildcards and variables in any acquired sources. */
1535 ln = ln != NULL ? ln->next : NULL;
1536 while (ln != NULL) {
1537 GNodeListNode *nln = ln->next;
1538 ExpandChildren(ln, tgn);
1539 ln = nln;
1543 * Keep track of another parent to which this node is transformed so
1544 * the .IMPSRC variable can be set correctly for the parent.
1546 Lst_Append(&sgn->implicitParents, tgn);
1548 return true;
1552 * Member has a known suffix, so look for a transformation rule from
1553 * it to a possible suffix of the archive.
1555 * Rather than searching through the entire list, we just look at
1556 * suffixes to which the member's suffix may be transformed.
1558 static void
1559 ExpandMember(GNode *gn, const char *eoarch, GNode *mem, Suffix *memSuff)
1561 GNodeListNode *ln;
1562 size_t nameLen = (size_t)(eoarch - gn->name);
1564 /* Use first matching suffix... */
1565 for (ln = memSuff->parents.first; ln != NULL; ln = ln->next)
1566 if (Suffix_IsSuffix(ln->datum, nameLen, eoarch))
1567 break;
1569 if (ln != NULL) {
1570 /* Got one -- apply it */
1571 Suffix *suff = ln->datum;
1572 if (!ApplyTransform(gn, mem, suff, memSuff)) {
1573 DEBUG2(SUFF, "\tNo transformation from %s -> %s\n",
1574 memSuff->name, suff->name);
1579 static void FindDeps(GNode *, CandidateSearcher *);
1582 * Locate dependencies for an OP_ARCHV node.
1584 * Input:
1585 * gn Node for which to locate dependencies
1587 * Side Effects:
1588 * Same as Suff_FindDeps
1590 static void
1591 FindDepsArchive(GNode *gn, CandidateSearcher *cs)
1593 char *eoarch; /* End of archive portion */
1594 char *eoname; /* End of member portion */
1595 GNode *mem; /* Node for member */
1596 Suffix *memSuff;
1597 const char *name; /* Start of member's name */
1600 * The node is an archive(member) pair. so we must find a
1601 * suffix for both of them.
1603 eoarch = strchr(gn->name, '(');
1604 eoname = strchr(eoarch, ')');
1607 * Caller guarantees the format `libname(member)', via
1608 * Arch_ParseArchive.
1610 assert(eoarch != NULL);
1611 assert(eoname != NULL);
1613 *eoname = '\0'; /* Nuke parentheses during suffix search */
1614 *eoarch = '\0'; /* So a suffix can be found */
1616 name = eoarch + 1;
1619 * To simplify things, call Suff_FindDeps recursively on the member
1620 * now, so we can simply compare the member's .PREFIX and .TARGET
1621 * variables to locate its suffix. This allows us to figure out the
1622 * suffix to use for the archive without having to do a quadratic
1623 * search over the suffix list, backtracking for each one.
1625 mem = Targ_GetNode(name);
1626 FindDeps(mem, cs);
1628 /* Create the link between the two nodes right off. */
1629 Lst_Append(&gn->children, mem);
1630 Lst_Append(&mem->parents, gn);
1631 gn->unmade++;
1633 /* Copy in the variables from the member node to this one. */
1634 Var_Set(gn, PREFIX, GNode_VarPrefix(mem));
1635 Var_Set(gn, TARGET, GNode_VarTarget(mem));
1637 memSuff = mem->suffix;
1638 if (memSuff == NULL) { /* Didn't know what it was. */
1639 DEBUG0(SUFF, "using null suffix\n");
1640 memSuff = nullSuff;
1644 /* Set the other two local variables required for this target. */
1645 Var_Set(gn, MEMBER, name);
1646 Var_Set(gn, ARCHIVE, gn->name);
1647 /* Set $@ for compatibility with other makes. */
1648 Var_Set(gn, TARGET, gn->name);
1651 * Now we've got the important local variables set, expand any sources
1652 * that still contain variables or wildcards in their names.
1654 ExpandAllChildren(gn);
1656 if (memSuff != NULL)
1657 ExpandMember(gn, eoarch, mem, memSuff);
1660 * Replace the opening and closing parens now we've no need of the
1661 * separate pieces.
1663 *eoarch = '(';
1664 *eoname = ')';
1667 * Pretend gn appeared to the left of a dependency operator so the
1668 * user needn't provide a transformation from the member to the
1669 * archive.
1671 if (!GNode_IsTarget(gn))
1672 gn->type |= OP_DEPENDS;
1675 * Flag the member as such so we remember to look in the archive for
1676 * its modification time. The OP_JOIN | OP_MADE is needed because
1677 * this target should never get made.
1679 mem->type |= OP_MEMBER | OP_JOIN | OP_MADE;
1683 * If the node is a library, it is the arch module's job to find it
1684 * and set the TARGET variable accordingly. We merely provide the
1685 * search path, assuming all libraries end in ".a" (if the suffix
1686 * hasn't been defined, there's nothing we can do for it, so we just
1687 * set the TARGET variable to the node's name in order to give it a
1688 * value).
1690 static void
1691 FindDepsLib(GNode *gn)
1693 Suffix *suff = FindSuffixByName(LIBSUFF);
1694 if (suff != NULL) {
1695 Suffix_Reassign(&gn->suffix, suff);
1696 Arch_FindLib(gn, suff->searchPath);
1697 } else {
1698 Suffix_Unassign(&gn->suffix);
1699 Var_Set(gn, TARGET, gn->name);
1703 * Because a library (-lfoo) target doesn't follow the standard
1704 * filesystem conventions, we don't set the regular variables for
1705 * the thing. .PREFIX is simply made empty.
1707 Var_Set(gn, PREFIX, "");
1710 static void
1711 FindDepsRegularKnown(const char *name, size_t nameLen, GNode *gn,
1712 CandidateList *srcs, CandidateList *targs)
1714 SuffixListNode *ln;
1715 Candidate *targ;
1716 char *pref;
1718 for (ln = sufflist.first; ln != NULL; ln = ln->next) {
1719 Suffix *suff = ln->datum;
1720 if (!Suffix_IsSuffix(suff, nameLen, name + nameLen))
1721 continue;
1723 pref = bmake_strldup(name, (size_t)(nameLen - suff->nameLen));
1724 targ = Candidate_New(bmake_strdup(gn->name), pref, suff, NULL,
1725 gn);
1727 CandidateList_AddCandidatesFor(srcs, targ);
1729 /* Record the target so we can nuke it. */
1730 Lst_Append(targs, targ);
1734 static void
1735 FindDepsRegularUnknown(GNode *gn, const char *sopref,
1736 CandidateList *srcs, CandidateList *targs)
1738 Candidate *targ;
1740 if (!Lst_IsEmpty(targs) || nullSuff == NULL)
1741 return;
1743 DEBUG1(SUFF, "\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
1745 targ = Candidate_New(bmake_strdup(gn->name), bmake_strdup(sopref),
1746 nullSuff, NULL, gn);
1749 * Only use the default suffix rules if we don't have commands
1750 * defined for this gnode; traditional make programs used to not
1751 * define suffix rules if the gnode had children but we don't do
1752 * this anymore.
1754 if (Lst_IsEmpty(&gn->commands))
1755 CandidateList_AddCandidatesFor(srcs, targ);
1756 else {
1757 DEBUG0(SUFF, "not ");
1760 DEBUG0(SUFF, "adding suffix rules\n");
1762 Lst_Append(targs, targ);
1766 * Deal with finding the thing on the default search path. We always do
1767 * that, not only if the node is only a source (not on the lhs of a
1768 * dependency operator or [XXX] it has neither children or commands) as
1769 * the old pmake did.
1771 static void
1772 FindDepsRegularPath(GNode *gn, Candidate *targ)
1774 if (gn->type & (OP_PHONY | OP_NOPATH))
1775 return;
1777 free(gn->path);
1778 gn->path = Dir_FindFile(gn->name,
1779 targ == NULL ? &dirSearchPath : targ->suff->searchPath);
1780 if (gn->path == NULL)
1781 return;
1783 Var_Set(gn, TARGET, gn->path);
1785 if (targ != NULL) {
1787 * Suffix known for the thing -- trim the suffix off
1788 * the path to form the proper .PREFIX variable.
1790 size_t savep = strlen(gn->path) - targ->suff->nameLen;
1791 char savec;
1793 Suffix_Reassign(&gn->suffix, targ->suff);
1795 savec = gn->path[savep];
1796 gn->path[savep] = '\0';
1798 Var_Set(gn, PREFIX, str_basename(gn->path));
1800 gn->path[savep] = savec;
1801 } else {
1803 * The .PREFIX gets the full path if the target has no
1804 * known suffix.
1806 Suffix_Unassign(&gn->suffix);
1807 Var_Set(gn, PREFIX, str_basename(gn->path));
1812 * Locate implicit dependencies for regular targets.
1814 * Input:
1815 * gn Node for which to find sources
1817 * Side Effects:
1818 * Same as Suff_FindDeps
1820 static void
1821 FindDepsRegular(GNode *gn, CandidateSearcher *cs)
1823 /* List of sources at which to look */
1824 CandidateList srcs = LST_INIT;
1826 * List of targets to which things can be transformed.
1827 * They all have the same file, but different suff and prefix fields.
1829 CandidateList targs = LST_INIT;
1830 Candidate *bottom; /* Start of found transformation path */
1831 Candidate *src;
1832 Candidate *targ;
1834 const char *name = gn->name;
1835 size_t nameLen = strlen(name);
1837 #ifdef DEBUG_SRC
1838 DEBUG1(SUFF, "FindDepsRegular \"%s\"\n", gn->name);
1839 #endif
1842 * We're caught in a catch-22 here. On the one hand, we want to use
1843 * any transformation implied by the target's sources, but we can't
1844 * examine the sources until we've expanded any variables/wildcards
1845 * they may hold, and we can't do that until we've set up the
1846 * target's local variables and we can't do that until we know what
1847 * the proper suffix for the target is (in case there are two
1848 * suffixes one of which is a suffix of the other) and we can't know
1849 * that until we've found its implied source, which we may not want
1850 * to use if there's an existing source that implies a different
1851 * transformation.
1853 * In an attempt to get around this, which may not work all the time,
1854 * but should work most of the time, we look for implied sources
1855 * first, checking transformations to all possible suffixes of the
1856 * target, use what we find to set the target's local variables,
1857 * expand the children, then look for any overriding transformations
1858 * they imply. Should we find one, we discard the one we found before.
1860 bottom = NULL;
1861 targ = NULL;
1863 if (!(gn->type & OP_PHONY)) {
1865 FindDepsRegularKnown(name, nameLen, gn, &srcs, &targs);
1867 /* Handle target of unknown suffix... */
1868 FindDepsRegularUnknown(gn, name, &srcs, &targs);
1871 * Using the list of possible sources built up from the target
1872 * suffix(es), try and find an existing file/target that
1873 * matches.
1875 bottom = FindThem(&srcs, cs);
1877 if (bottom == NULL) {
1879 * No known transformations -- use the first suffix
1880 * found for setting the local variables.
1882 if (targs.first != NULL)
1883 targ = targs.first->datum;
1884 else
1885 targ = NULL;
1886 } else {
1888 * Work up the transformation path to find the suffix
1889 * of the target to which the transformation was made.
1891 for (targ = bottom;
1892 targ->parent != NULL; targ = targ->parent)
1893 continue;
1897 Var_Set(gn, TARGET, GNode_Path(gn));
1898 Var_Set(gn, PREFIX, targ != NULL ? targ->prefix : gn->name);
1901 * Now we've got the important local variables set, expand any sources
1902 * that still contain variables or wildcards in their names.
1905 GNodeListNode *ln, *nln;
1906 for (ln = gn->children.first; ln != NULL; ln = nln) {
1907 nln = ln->next;
1908 ExpandChildren(ln, gn);
1912 if (targ == NULL) {
1913 DEBUG1(SUFF, "\tNo valid suffix on %s\n", gn->name);
1915 sfnd_abort:
1916 FindDepsRegularPath(gn, targ);
1917 goto sfnd_return;
1921 * If the suffix indicates that the target is a library, mark that in
1922 * the node's type field.
1924 if (targ->suff->library)
1925 gn->type |= OP_LIB;
1928 * Check for overriding transformation rule implied by sources
1930 if (!Lst_IsEmpty(&gn->children)) {
1931 src = FindCmds(targ, cs);
1933 if (src != NULL) {
1935 * Free up all the candidates in the transformation
1936 * path, up to but not including the parent node.
1938 while (bottom != NULL && bottom->parent != NULL) {
1939 CandidateSearcher_AddIfNew(cs, bottom);
1940 bottom = bottom->parent;
1942 bottom = src;
1946 if (bottom == NULL) {
1947 /* No idea from where it can come -- return now. */
1948 goto sfnd_abort;
1952 * We now have a list of candidates headed by 'bottom' and linked via
1953 * their 'parent' pointers. What we do next is create links between
1954 * source and target nodes (which may or may not have been created)
1955 * and set the necessary local variables in each target.
1957 * The commands for each target are set from the commands of the
1958 * transformation rule used to get from the src suffix to the targ
1959 * suffix. Note that this causes the commands list of the original
1960 * node, gn, to be replaced with the commands of the final
1961 * transformation rule.
1963 if (bottom->node == NULL)
1964 bottom->node = Targ_GetNode(bottom->file);
1966 for (src = bottom; src->parent != NULL; src = src->parent) {
1967 targ = src->parent;
1969 Suffix_Reassign(&src->node->suffix, src->suff);
1971 if (targ->node == NULL)
1972 targ->node = Targ_GetNode(targ->file);
1974 ApplyTransform(targ->node, src->node,
1975 targ->suff, src->suff);
1977 if (targ->node != gn) {
1979 * Finish off the dependency-search process for any
1980 * nodes between bottom and gn (no point in questing
1981 * around the filesystem for their implicit source
1982 * when it's already known). Note that the node
1983 * can't have any sources that need expanding, since
1984 * SuffFindThem will stop on an existing node, so all
1985 * we need to do is set the standard variables.
1987 targ->node->type |= OP_DEPS_FOUND;
1988 Var_Set(targ->node, PREFIX, targ->prefix);
1989 Var_Set(targ->node, TARGET, targ->node->name);
1993 Suffix_Reassign(&gn->suffix, src->suff);
1996 * Nuke the transformation path and the candidates left over in the
1997 * two lists.
1999 sfnd_return:
2000 if (bottom != NULL)
2001 CandidateSearcher_AddIfNew(cs, bottom);
2003 while (RemoveCandidate(&srcs) || RemoveCandidate(&targs))
2004 continue;
2006 CandidateSearcher_MoveAll(cs, &srcs);
2007 CandidateSearcher_MoveAll(cs, &targs);
2010 static void
2011 CandidateSearcher_CleanUp(CandidateSearcher *cs)
2013 while (RemoveCandidate(&cs->list))
2014 continue;
2015 assert(Lst_IsEmpty(&cs->list));
2020 * Find implicit sources for the target.
2022 * Nodes are added to the graph as children of the passed-in node. The nodes
2023 * are marked to have their IMPSRC variable filled in. The PREFIX variable
2024 * is set for the given node and all its implied children.
2026 * The path found by this target is the shortest path in the transformation
2027 * graph, which may pass through nonexistent targets, to an existing target.
2028 * The search continues on all paths from the root suffix until a file is
2029 * found. I.e. if there's a path .o -> .c -> .l -> .l,v from the root and the
2030 * .l,v file exists but the .c and .l files don't, the search will branch out
2031 * in all directions from .o and again from all the nodes on the next level
2032 * until the .l,v node is encountered.
2034 void
2035 Suff_FindDeps(GNode *gn)
2037 CandidateSearcher cs;
2039 CandidateSearcher_Init(&cs);
2041 FindDeps(gn, &cs);
2043 CandidateSearcher_CleanUp(&cs);
2044 CandidateSearcher_Done(&cs);
2047 static void
2048 FindDeps(GNode *gn, CandidateSearcher *cs)
2050 if (gn->type & OP_DEPS_FOUND)
2051 return;
2052 gn->type |= OP_DEPS_FOUND;
2054 /* Make sure we have these set, may get revised below. */
2055 Var_Set(gn, TARGET, GNode_Path(gn));
2056 Var_Set(gn, PREFIX, gn->name);
2058 DEBUG1(SUFF, "SuffFindDeps \"%s\"\n", gn->name);
2060 if (gn->type & OP_ARCHV)
2061 FindDepsArchive(gn, cs);
2062 else if (gn->type & OP_LIB)
2063 FindDepsLib(gn);
2064 else
2065 FindDepsRegular(gn, cs);
2069 * Define which suffix is the null suffix.
2071 * Need to handle the changing of the null suffix gracefully so the old
2072 * transformation rules don't just go away.
2074 * Input:
2075 * name Name of null suffix
2077 void
2078 Suff_SetNull(const char *name)
2080 Suffix *suff = FindSuffixByName(name);
2081 if (suff == NULL) {
2082 Parse_Error(PARSE_WARNING,
2083 "Desired null suffix %s not defined",
2084 name);
2085 return;
2088 if (nullSuff != NULL)
2089 nullSuff->isNull = false;
2090 suff->isNull = true;
2091 /* XXX: Here's where the transformation mangling would take place. */
2092 nullSuff = suff;
2095 /* Initialize the suffixes module. */
2096 void
2097 Suff_Init(void)
2100 * Create null suffix for single-suffix rules (POSIX). The thing
2101 * doesn't actually go on the suffix list or everyone will think
2102 * that's its suffix.
2104 Suff_ClearSuffixes();
2108 /* Clean up the suffixes module. */
2109 void
2110 Suff_End(void)
2112 #ifdef CLEANUP
2113 Lst_DoneCall(&sufflist, SuffFree);
2114 Lst_DoneCall(&suffClean, SuffFree);
2115 if (nullSuff != NULL)
2116 SuffFree(nullSuff);
2117 Lst_Done(&transforms);
2118 #endif
2122 static void
2123 PrintSuffNames(const char *prefix, const SuffixList *suffs)
2125 SuffixListNode *ln;
2127 debug_printf("#\t%s: ", prefix);
2128 for (ln = suffs->first; ln != NULL; ln = ln->next) {
2129 const Suffix *suff = ln->datum;
2130 debug_printf("%s ", suff->name);
2132 debug_printf("\n");
2135 static void
2136 Suffix_Print(const Suffix *suff)
2138 Buffer buf;
2140 Buf_InitSize(&buf, 16);
2141 Buf_AddFlag(&buf, suff->include, "SUFF_INCLUDE");
2142 Buf_AddFlag(&buf, suff->library, "SUFF_LIBRARY");
2143 Buf_AddFlag(&buf, suff->isNull, "SUFF_NULL");
2145 debug_printf("# \"%s\" (num %d, ref %d)",
2146 suff->name, suff->sNum, suff->refCount);
2147 if (buf.len > 0)
2148 debug_printf(" (%s)", buf.data);
2149 debug_printf("\n");
2151 Buf_Done(&buf);
2153 PrintSuffNames("To", &suff->parents);
2154 PrintSuffNames("From", &suff->children);
2156 debug_printf("#\tSearch Path: ");
2157 SearchPath_Print(suff->searchPath);
2158 debug_printf("\n");
2161 static void
2162 PrintTransformation(GNode *t)
2164 debug_printf("%-16s:", t->name);
2165 Targ_PrintType(t->type);
2166 debug_printf("\n");
2167 Targ_PrintCmds(t);
2168 debug_printf("\n");
2171 void
2172 Suff_PrintAll(void)
2174 debug_printf("#*** Suffixes:\n");
2176 SuffixListNode *ln;
2177 for (ln = sufflist.first; ln != NULL; ln = ln->next)
2178 Suffix_Print(ln->datum);
2181 debug_printf("#*** Transformations:\n");
2183 GNodeListNode *ln;
2184 for (ln = transforms.first; ln != NULL; ln = ln->next)
2185 PrintTransformation(ln->datum);
2189 char *
2190 Suff_NamesStr(void)
2192 Buffer buf;
2193 SuffixListNode *ln;
2194 Suffix *suff;
2196 Buf_InitSize(&buf, 16);
2197 for (ln = sufflist.first; ln != NULL; ln = ln->next) {
2198 suff = ln->datum;
2199 if (ln != sufflist.first)
2200 Buf_AddByte(&buf, ' ');
2201 Buf_AddStr(&buf, suff->name);
2203 return Buf_DoneData(&buf);