VirtualBox

source: kBuild/trunk/src/kmk/dir.c@ 46

Last change on this file since 46 was 46, checked in by bird, 22 years ago

kMk changes. Made extensions configurable from config.h. fixed parents.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 38.8 KB
Line 
1/*
2 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 * Copyright (c) 1988, 1989 by Adam de Boor
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
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. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39#ifndef lint
40#if 0
41static char sccsid[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94";
42#else
43static const char rcsid[] =
44 "$FreeBSD: src/usr.bin/make/dir.c,v 1.10.2.1 2001/02/13 03:13:57 will Exp $";
45#endif
46#endif /* not lint */
47
48/*-
49 * dir.c --
50 * Directory searching using wildcards and/or normal names...
51 * Used both for source wildcarding in the Makefile and for finding
52 * implicit sources.
53 *
54 * The interface for this module is:
55 * Dir_Init Initialize the module.
56 *
57 * Dir_End Cleanup the module.
58 *
59 * Dir_HasWildcards Returns TRUE if the name given it needs to
60 * be wildcard-expanded.
61 *
62 * Dir_Expand Given a pattern and a path, return a Lst of names
63 * which match the pattern on the search path.
64 *
65 * Dir_FindFile Searches for a file on a given search path.
66 * If it exists, the entire path is returned.
67 * Otherwise NULL is returned.
68 *
69 * Dir_MTime Return the modification time of a node. The file
70 * is searched for along the default search path.
71 * The path and mtime fields of the node are filled
72 * in.
73 *
74 * Dir_AddDir Add a directory to a search path.
75 *
76 * Dir_MakeFlags Given a search path and a command flag, create
77 * a string with each of the directories in the path
78 * preceded by the command flag and all of them
79 * separated by a space.
80 *
81 * Dir_Destroy Destroy an element of a search path. Frees up all
82 * things that can be freed for the element as long
83 * as the element is no longer referenced by any other
84 * search path.
85 * Dir_ClearPath Resets a search path to the empty list.
86 *
87 * For debugging:
88 * Dir_PrintDirectories Print stats about the directory cache.
89 */
90
91#include <stdio.h>
92#include <sys/types.h>
93#include <dirent.h>
94#include <sys/stat.h>
95#include "make.h"
96#include "hash.h"
97#include "dir.h"
98
99/*
100 * A search path consists of a Lst of Path structures. A Path structure
101 * has in it the name of the directory and a hash table of all the files
102 * in the directory. This is used to cut down on the number of system
103 * calls necessary to find implicit dependents and their like. Since
104 * these searches are made before any actions are taken, we need not
105 * worry about the directory changing due to creation commands. If this
106 * hampers the style of some makefiles, they must be changed.
107 *
108 * A list of all previously-read directories is kept in the
109 * openDirectories Lst. This list is checked first before a directory
110 * is opened.
111 *
112 * The need for the caching of whole directories is brought about by
113 * the multi-level transformation code in suff.c, which tends to search
114 * for far more files than regular make does. In the initial
115 * implementation, the amount of time spent performing "stat" calls was
116 * truly astronomical. The problem with hashing at the start is,
117 * of course, that pmake doesn't then detect changes to these directories
118 * during the course of the make. Three possibilities suggest themselves:
119 *
120 * 1) just use stat to test for a file's existence. As mentioned
121 * above, this is very inefficient due to the number of checks
122 * engendered by the multi-level transformation code.
123 * 2) use readdir() and company to search the directories, keeping
124 * them open between checks. I have tried this and while it
125 * didn't slow down the process too much, it could severely
126 * affect the amount of parallelism available as each directory
127 * open would take another file descriptor out of play for
128 * handling I/O for another job. Given that it is only recently
129 * that UNIX OS's have taken to allowing more than 20 or 32
130 * file descriptors for a process, this doesn't seem acceptable
131 * to me.
132 * 3) record the mtime of the directory in the Path structure and
133 * verify the directory hasn't changed since the contents were
134 * hashed. This will catch the creation or deletion of files,
135 * but not the updating of files. However, since it is the
136 * creation and deletion that is the problem, this could be
137 * a good thing to do. Unfortunately, if the directory (say ".")
138 * were fairly large and changed fairly frequently, the constant
139 * rehashing could seriously degrade performance. It might be
140 * good in such cases to keep track of the number of rehashes
141 * and if the number goes over a (small) limit, resort to using
142 * stat in its place.
143 *
144 * An additional thing to consider is that pmake is used primarily
145 * to create C programs and until recently pcc-based compilers refused
146 * to allow you to specify where the resulting object file should be
147 * placed. This forced all objects to be created in the current
148 * directory. This isn't meant as a full excuse, just an explanation of
149 * some of the reasons for the caching used here.
150 *
151 * One more note: the location of a target's file is only performed
152 * on the downward traversal of the graph and then only for terminal
153 * nodes in the graph. This could be construed as wrong in some cases,
154 * but prevents inadvertent modification of files when the "installed"
155 * directory for a file is provided in the search path.
156 *
157 * Another data structure maintained by this module is an mtime
158 * cache used when the searching of cached directories fails to find
159 * a file. In the past, Dir_FindFile would simply perform an access()
160 * call in such a case to determine if the file could be found using
161 * just the name given. When this hit, however, all that was gained
162 * was the knowledge that the file existed. Given that an access() is
163 * essentially a stat() without the copyout() call, and that the same
164 * filesystem overhead would have to be incurred in Dir_MTime, it made
165 * sense to replace the access() with a stat() and record the mtime
166 * in a cache for when Dir_MTime was actually called.
167 */
168
169Lst dirSearchPath; /* main search path */
170
171static Lst openDirectories; /* the list of all open directories */
172
173/*
174 * Variables for gathering statistics on the efficiency of the hashing
175 * mechanism.
176 */
177static int hits, /* Found in directory cache */
178 misses, /* Sad, but not evil misses */
179 nearmisses, /* Found under search path */
180 bigmisses; /* Sought by itself */
181
182static Path *dot; /* contents of current directory */
183static Hash_Table mtimes; /* Results of doing a last-resort stat in
184 * Dir_FindFile -- if we have to go to the
185 * system to find the file, we might as well
186 * have its mtime on record. XXX: If this is done
187 * way early, there's a chance other rules will
188 * have already updated the file, in which case
189 * we'll update it again. Generally, there won't
190 * be two rules to update a single file, so this
191 * should be ok, but... */
192
193
194static int DirFindName __P((ClientData, ClientData));
195static int DirMatchFiles __P((char *, Path *, Lst));
196static void DirExpandCurly __P((char *, char *, Lst, Lst));
197static void DirExpandInt __P((char *, Lst, Lst));
198static int DirPrintWord __P((ClientData, ClientData));
199static int DirPrintDir __P((ClientData, ClientData));
200
201/*-
202 *-----------------------------------------------------------------------
203 * Dir_Init --
204 * initialize things for this module
205 *
206 * Results:
207 * none
208 *
209 * Side Effects:
210 * some directories may be opened.
211 *-----------------------------------------------------------------------
212 */
213void
214Dir_Init ()
215{
216 dirSearchPath = Lst_Init (FALSE);
217 openDirectories = Lst_Init (FALSE);
218 Hash_InitTable(&mtimes, 0);
219
220 /*
221 * Since the Path structure is placed on both openDirectories and
222 * the path we give Dir_AddDir (which in this case is openDirectories),
223 * we need to remove "." from openDirectories and what better time to
224 * do it than when we have to fetch the thing anyway?
225 */
226 Dir_AddDir (openDirectories, ".");
227 dot = (Path *) Lst_DeQueue (openDirectories);
228 if (dot == (Path *) NULL)
229 err(1, "cannot open current directory");
230
231 /*
232 * We always need to have dot around, so we increment its reference count
233 * to make sure it's not destroyed.
234 */
235 dot->refCount += 1;
236}
237
238/*-
239 *-----------------------------------------------------------------------
240 * Dir_End --
241 * cleanup things for this module
242 *
243 * Results:
244 * none
245 *
246 * Side Effects:
247 * none
248 *-----------------------------------------------------------------------
249 */
250void
251Dir_End()
252{
253 dot->refCount -= 1;
254 Dir_Destroy((ClientData) dot);
255 Dir_ClearPath(dirSearchPath);
256 Lst_Destroy(dirSearchPath, NOFREE);
257 Dir_ClearPath(openDirectories);
258 Lst_Destroy(openDirectories, NOFREE);
259 Hash_DeleteTable(&mtimes);
260}
261
262/*-
263 *-----------------------------------------------------------------------
264 * DirFindName --
265 * See if the Path structure describes the same directory as the
266 * given one by comparing their names. Called from Dir_AddDir via
267 * Lst_Find when searching the list of open directories.
268 *
269 * Results:
270 * 0 if it is the same. Non-zero otherwise
271 *
272 * Side Effects:
273 * None
274 *-----------------------------------------------------------------------
275 */
276static int
277DirFindName (p, dname)
278 ClientData p; /* Current name */
279 ClientData dname; /* Desired name */
280{
281 return (strcmp (((Path *)p)->name, (char *) dname));
282}
283
284/*-
285 *-----------------------------------------------------------------------
286 * Dir_HasWildcards --
287 * see if the given name has any wildcard characters in it
288 *
289 * Results:
290 * returns TRUE if the word should be expanded, FALSE otherwise
291 *
292 * Side Effects:
293 * none
294 *-----------------------------------------------------------------------
295 */
296Boolean
297Dir_HasWildcards (name)
298 char *name; /* name to check */
299{
300 register char *cp;
301
302 for (cp = name; *cp; cp++) {
303 switch(*cp) {
304 case '{':
305 case '[':
306 case '?':
307 case '*':
308 return (TRUE);
309 }
310 }
311 return (FALSE);
312}
313
314/*-
315 *-----------------------------------------------------------------------
316 * DirMatchFiles --
317 * Given a pattern and a Path structure, see if any files
318 * match the pattern and add their names to the 'expansions' list if
319 * any do. This is incomplete -- it doesn't take care of patterns like
320 * src / *src / *.c properly (just *.c on any of the directories), but it
321 * will do for now.
322 *
323 * Results:
324 * Always returns 0
325 *
326 * Side Effects:
327 * File names are added to the expansions lst. The directory will be
328 * fully hashed when this is done.
329 *-----------------------------------------------------------------------
330 */
331static int
332DirMatchFiles (pattern, p, expansions)
333 char *pattern; /* Pattern to look for */
334 Path *p; /* Directory to search */
335 Lst expansions; /* Place to store the results */
336{
337 Hash_Search search; /* Index into the directory's table */
338 Hash_Entry *entry; /* Current entry in the table */
339 Boolean isDot; /* TRUE if the directory being searched is . */
340
341 isDot = (*p->name == '.' && p->name[1] == '\0');
342
343 for (entry = Hash_EnumFirst(&p->files, &search);
344 entry != (Hash_Entry *)NULL;
345 entry = Hash_EnumNext(&search))
346 {
347 /*
348 * See if the file matches the given pattern. Note we follow the UNIX
349 * convention that dot files will only be found if the pattern
350 * begins with a dot (note also that as a side effect of the hashing
351 * scheme, .* won't match . or .. since they aren't hashed).
352 */
353 if (Str_Match(entry->name, pattern) &&
354 ((entry->name[0] != '.') ||
355 (pattern[0] == '.')))
356 {
357 (void)Lst_AtEnd(expansions,
358 (isDot ? estrdup(entry->name) :
359 str_concat(p->name, entry->name,
360 STR_ADDSLASH)));
361 }
362 }
363 return (0);
364}
365
366/*-
367 *-----------------------------------------------------------------------
368 * DirExpandCurly --
369 * Expand curly braces like the C shell. Does this recursively.
370 * Note the special case: if after the piece of the curly brace is
371 * done there are no wildcard characters in the result, the result is
372 * placed on the list WITHOUT CHECKING FOR ITS EXISTENCE.
373 *
374 * Results:
375 * None.
376 *
377 * Side Effects:
378 * The given list is filled with the expansions...
379 *
380 *-----------------------------------------------------------------------
381 */
382static void
383DirExpandCurly(word, brace, path, expansions)
384 char *word; /* Entire word to expand */
385 char *brace; /* First curly brace in it */
386 Lst path; /* Search path to use */
387 Lst expansions; /* Place to store the expansions */
388{
389 char *end; /* Character after the closing brace */
390 char *cp; /* Current position in brace clause */
391 char *start; /* Start of current piece of brace clause */
392 int bracelevel; /* Number of braces we've seen. If we see a
393 * right brace when this is 0, we've hit the
394 * end of the clause. */
395 char *file; /* Current expansion */
396 int otherLen; /* The length of the other pieces of the
397 * expansion (chars before and after the
398 * clause in 'word') */
399 char *cp2; /* Pointer for checking for wildcards in
400 * expansion before calling Dir_Expand */
401
402 start = brace+1;
403
404 /*
405 * Find the end of the brace clause first, being wary of nested brace
406 * clauses.
407 */
408 for (end = start, bracelevel = 0; *end != '\0'; end++) {
409 if (*end == '{') {
410 bracelevel++;
411 } else if ((*end == '}') && (bracelevel-- == 0)) {
412 break;
413 }
414 }
415 if (*end == '\0') {
416 Error("Unterminated {} clause \"%s\"", start);
417 return;
418 } else {
419 end++;
420 }
421 otherLen = brace - word + strlen(end);
422
423 for (cp = start; cp < end; cp++) {
424 /*
425 * Find the end of this piece of the clause.
426 */
427 bracelevel = 0;
428 while (*cp != ',') {
429 if (*cp == '{') {
430 bracelevel++;
431 } else if ((*cp == '}') && (bracelevel-- <= 0)) {
432 break;
433 }
434 cp++;
435 }
436 /*
437 * Allocate room for the combination and install the three pieces.
438 */
439 file = emalloc(otherLen + cp - start + 1);
440 if (brace != word) {
441 strncpy(file, word, brace-word);
442 }
443 if (cp != start) {
444 strncpy(&file[brace-word], start, cp-start);
445 }
446 strcpy(&file[(brace-word)+(cp-start)], end);
447
448 /*
449 * See if the result has any wildcards in it. If we find one, call
450 * Dir_Expand right away, telling it to place the result on our list
451 * of expansions.
452 */
453 for (cp2 = file; *cp2 != '\0'; cp2++) {
454 switch(*cp2) {
455 case '*':
456 case '?':
457 case '{':
458 case '[':
459 Dir_Expand(file, path, expansions);
460 goto next;
461 }
462 }
463 if (*cp2 == '\0') {
464 /*
465 * Hit the end w/o finding any wildcards, so stick the expansion
466 * on the end of the list.
467 */
468 (void)Lst_AtEnd(expansions, file);
469 } else {
470 next:
471 efree(file);
472 }
473 start = cp+1;
474 }
475}
476
477
478/*-
479 *-----------------------------------------------------------------------
480 * DirExpandInt --
481 * Internal expand routine. Passes through the directories in the
482 * path one by one, calling DirMatchFiles for each. NOTE: This still
483 * doesn't handle patterns in directories...
484 *
485 * Results:
486 * None.
487 *
488 * Side Effects:
489 * Things are added to the expansions list.
490 *
491 *-----------------------------------------------------------------------
492 */
493static void
494DirExpandInt(word, path, expansions)
495 char *word; /* Word to expand */
496 Lst path; /* Path on which to look */
497 Lst expansions; /* Place to store the result */
498{
499 LstNode ln; /* Current node */
500 Path *p; /* Directory in the node */
501
502 if (Lst_Open(path) == SUCCESS) {
503 while ((ln = Lst_Next(path)) != NILLNODE) {
504 p = (Path *)Lst_Datum(ln);
505 DirMatchFiles(word, p, expansions);
506 }
507 Lst_Close(path);
508 }
509}
510
511/*-
512 *-----------------------------------------------------------------------
513 * DirPrintWord --
514 * Print a word in the list of expansions. Callback for Dir_Expand
515 * when DEBUG(DIR), via Lst_ForEach.
516 *
517 * Results:
518 * === 0
519 *
520 * Side Effects:
521 * The passed word is printed, followed by a space.
522 *
523 *-----------------------------------------------------------------------
524 */
525static int
526DirPrintWord(word, dummy)
527 ClientData word;
528 ClientData dummy;
529{
530 printf("%s ", (char *) word);
531
532 return(dummy ? 0 : 0);
533}
534
535/*-
536 *-----------------------------------------------------------------------
537 * Dir_Expand --
538 * Expand the given word into a list of words by globbing it looking
539 * in the directories on the given search path.
540 *
541 * Results:
542 * A list of words consisting of the files which exist along the search
543 * path matching the given pattern.
544 *
545 * Side Effects:
546 * Directories may be opened. Who knows?
547 *-----------------------------------------------------------------------
548 */
549void
550Dir_Expand (word, path, expansions)
551 char *word; /* the word to expand */
552 Lst path; /* the list of directories in which to find
553 * the resulting files */
554 Lst expansions; /* the list on which to place the results */
555{
556 char *cp;
557
558 if (DEBUG(DIR)) {
559 printf("expanding \"%s\"...", word);
560 }
561
562 cp = strchr(word, '{');
563 if (cp) {
564 DirExpandCurly(word, cp, path, expansions);
565 } else {
566 cp = strchr(word, '/');
567 if (cp) {
568 /*
569 * The thing has a directory component -- find the first wildcard
570 * in the string.
571 */
572 for (cp = word; *cp; cp++) {
573 if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') {
574 break;
575 }
576 }
577 if (*cp == '{') {
578 /*
579 * This one will be fun.
580 */
581 DirExpandCurly(word, cp, path, expansions);
582 return;
583 } else if (*cp != '\0') {
584 /*
585 * Back up to the start of the component
586 */
587 char *dirpath;
588
589 while (cp > word && *cp != '/') {
590 cp--;
591 }
592 if (cp != word) {
593 char sc;
594 /*
595 * If the glob isn't in the first component, try and find
596 * all the components up to the one with a wildcard.
597 */
598 sc = cp[1];
599 cp[1] = '\0';
600 dirpath = Dir_FindFile(word, path);
601 cp[1] = sc;
602 /*
603 * dirpath is null if can't find the leading component
604 * XXX: Dir_FindFile won't find internal components.
605 * i.e. if the path contains ../Etc/Object and we're
606 * looking for Etc, it won't be found. Ah well.
607 * Probably not important.
608 */
609 if (dirpath != (char *)NULL) {
610 char *dp = &dirpath[strlen(dirpath) - 1];
611 if (*dp == '/')
612 *dp = '\0';
613 path = Lst_Init(FALSE);
614 Dir_AddDir(path, dirpath);
615 DirExpandInt(cp+1, path, expansions);
616 Lst_Destroy(path, NOFREE);
617 }
618 } else {
619 /*
620 * Start the search from the local directory
621 */
622 DirExpandInt(word, path, expansions);
623 }
624 } else {
625 /*
626 * Return the file -- this should never happen.
627 */
628 DirExpandInt(word, path, expansions);
629 }
630 } else {
631 /*
632 * First the files in dot
633 */
634 DirMatchFiles(word, dot, expansions);
635
636 /*
637 * Then the files in every other directory on the path.
638 */
639 DirExpandInt(word, path, expansions);
640 }
641 }
642 if (DEBUG(DIR)) {
643 Lst_ForEach(expansions, DirPrintWord, (ClientData) 0);
644 fputc('\n', stdout);
645 }
646}
647
648/*-
649 *-----------------------------------------------------------------------
650 * Dir_FindFile --
651 * Find the file with the given name along the given search path.
652 *
653 * Results:
654 * The path to the file or NULL. This path is guaranteed to be in a
655 * different part of memory than name and so may be safely efree'd.
656 *
657 * Side Effects:
658 * If the file is found in a directory which is not on the path
659 * already (either 'name' is absolute or it is a relative path
660 * [ dir1/.../dirn/file ] which exists below one of the directories
661 * already on the search path), its directory is added to the end
662 * of the path on the assumption that there will be more files in
663 * that directory later on. Sometimes this is true. Sometimes not.
664 *-----------------------------------------------------------------------
665 */
666char *
667Dir_FindFile (name, path)
668 char *name; /* the file to find */
669 Lst path; /* the Lst of directories to search */
670{
671 register char *p1; /* pointer into p->name */
672 register char *p2; /* pointer into name */
673 LstNode ln; /* a list element */
674 register char *file; /* the current filename to check */
675 register Path *p; /* current path member */
676 register char *cp; /* index of first slash, if any */
677 Boolean hasSlash; /* true if 'name' contains a / */
678 struct stat stb; /* Buffer for stat, if necessary */
679 Hash_Entry *entry; /* Entry for mtimes table */
680
681#ifdef NMAKE
682 cp = name;
683 while ((cp = strchr(cp, '\\')) != 0)
684 *cp = '/';
685#endif
686
687 /*
688 * Find the final component of the name and note whether it has a
689 * slash in it (the name, I mean)
690 */
691 cp = strrchr (name, '/');
692 if (cp) {
693 hasSlash = TRUE;
694 cp += 1;
695 } else {
696 hasSlash = FALSE;
697 cp = name;
698 }
699
700 if (DEBUG(DIR)) {
701 printf("Searching for %s...", name);
702 }
703 /*
704 * No matter what, we always look for the file in the current directory
705 * before anywhere else and we *do not* add the ./ to it if it exists.
706 * This is so there are no conflicts between what the user specifies
707 * (fish.c) and what pmake finds (./fish.c).
708 */
709 if ((!hasSlash || (cp - name == 2 && *name == '.')) &&
710 (Hash_FindEntry (&dot->files, cp) != (Hash_Entry *)NULL)) {
711 if (DEBUG(DIR)) {
712 printf("in '.'\n");
713 }
714 hits += 1;
715 dot->hits += 1;
716 return (estrdup (name));
717 }
718
719 if (Lst_Open (path) == FAILURE) {
720 if (DEBUG(DIR)) {
721 printf("couldn't open path, file not found\n");
722 }
723 misses += 1;
724 return ((char *) NULL);
725 }
726
727 /*
728 * We look through all the directories on the path seeking one which
729 * contains the final component of the given name and whose final
730 * component(s) match the name's initial component(s). If such a beast
731 * is found, we concatenate the directory name and the final component
732 * and return the resulting string. If we don't find any such thing,
733 * we go on to phase two...
734 */
735 while ((ln = Lst_Next (path)) != NILLNODE) {
736 p = (Path *) Lst_Datum (ln);
737 if (DEBUG(DIR)) {
738 printf("%s...", p->name);
739 }
740 if (Hash_FindEntry (&p->files, cp) != (Hash_Entry *)NULL) {
741 if (DEBUG(DIR)) {
742 printf("here...");
743 }
744 if (hasSlash) {
745 /*
746 * If the name had a slash, its initial components and p's
747 * final components must match. This is false if a mismatch
748 * is encountered before all of the initial components
749 * have been checked (p2 > name at the end of the loop), or
750 * we matched only part of one of the components of p
751 * along with all the rest of them (*p1 != '/').
752 */
753 p1 = p->name + strlen (p->name) - 1;
754 p2 = cp - 2;
755 while (p2 >= name && p1 >= p->name && *p1 == *p2) {
756 p1 -= 1; p2 -= 1;
757 }
758 if (p2 >= name || (p1 >= p->name && *p1 != '/')) {
759 if (DEBUG(DIR)) {
760 printf("component mismatch -- continuing...");
761 }
762 continue;
763 }
764 }
765 file = str_concat (p->name, cp, STR_ADDSLASH);
766 if (DEBUG(DIR)) {
767 printf("returning %s\n", file);
768 }
769 Lst_Close (path);
770 p->hits += 1;
771 hits += 1;
772 return (file);
773 } else if (hasSlash) {
774 /*
775 * If the file has a leading path component and that component
776 * exactly matches the entire name of the current search
777 * directory, we assume the file doesn't exist and return NULL.
778 */
779 for (p1 = p->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) {
780 continue;
781 }
782 if (*p1 == '\0' && p2 == cp - 1) {
783 if (DEBUG(DIR)) {
784 printf("must be here but isn't -- returing NULL\n");
785 }
786 Lst_Close (path);
787 return ((char *) NULL);
788 }
789 }
790 }
791
792 /*
793 * We didn't find the file on any existing members of the directory.
794 * If the name doesn't contain a slash, that means it doesn't exist.
795 * If it *does* contain a slash, however, there is still hope: it
796 * could be in a subdirectory of one of the members of the search
797 * path. (eg. /usr/include and sys/types.h. The above search would
798 * fail to turn up types.h in /usr/include, but it *is* in
799 * /usr/include/sys/types.h) If we find such a beast, we assume there
800 * will be more (what else can we assume?) and add all but the last
801 * component of the resulting name onto the search path (at the
802 * end). This phase is only performed if the file is *not* absolute.
803 */
804 if (!hasSlash) {
805 if (DEBUG(DIR)) {
806 printf("failed.\n");
807 }
808 misses += 1;
809 return ((char *) NULL);
810 }
811
812 if (*name != '/') {
813 Boolean checkedDot = FALSE;
814
815 if (DEBUG(DIR)) {
816 printf("failed. Trying subdirectories...");
817 }
818 (void) Lst_Open (path);
819 while ((ln = Lst_Next (path)) != NILLNODE) {
820 p = (Path *) Lst_Datum (ln);
821 if (p != dot) {
822 file = str_concat (p->name, name, STR_ADDSLASH);
823 } else {
824 /*
825 * Checking in dot -- DON'T put a leading ./ on the thing.
826 */
827 file = estrdup(name);
828 checkedDot = TRUE;
829 }
830 if (DEBUG(DIR)) {
831 printf("checking %s...", file);
832 }
833
834
835 if (stat (file, &stb) == 0) {
836 if (DEBUG(DIR)) {
837 printf("got it.\n");
838 }
839
840 Lst_Close (path);
841
842 /*
843 * We've found another directory to search. We know there's
844 * a slash in 'file' because we put one there. We nuke it after
845 * finding it and call Dir_AddDir to add this new directory
846 * onto the existing search path. Once that's done, we restore
847 * the slash and triumphantly return the file name, knowing
848 * that should a file in this directory every be referenced
849 * again in such a manner, we will find it without having to do
850 * numerous numbers of access calls. Hurrah!
851 */
852 cp = strrchr (file, '/');
853 *cp = '\0';
854 Dir_AddDir (path, file);
855 *cp = '/';
856
857 /*
858 * Save the modification time so if it's needed, we don't have
859 * to fetch it again.
860 */
861 if (DEBUG(DIR)) {
862 printf("Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
863 file);
864 }
865 entry = Hash_CreateEntry(&mtimes, (char *) file,
866 (Boolean *)NULL);
867 Hash_SetValue(entry, (long)stb.st_mtime);
868 nearmisses += 1;
869 return (file);
870 } else {
871 efree (file);
872 }
873 }
874
875 if (DEBUG(DIR)) {
876 printf("failed. ");
877 }
878 Lst_Close (path);
879
880 if (checkedDot) {
881 /*
882 * Already checked by the given name, since . was in the path,
883 * so no point in proceeding...
884 */
885 if (DEBUG(DIR)) {
886 printf("Checked . already, returning NULL\n");
887 }
888 return(NULL);
889 }
890 }
891
892 /*
893 * Didn't find it that way, either. Sigh. Phase 3. Add its directory
894 * onto the search path in any case, just in case, then look for the
895 * thing in the hash table. If we find it, grand. We return a new
896 * copy of the name. Otherwise we sadly return a NULL pointer. Sigh.
897 * Note that if the directory holding the file doesn't exist, this will
898 * do an extra search of the final directory on the path. Unless something
899 * weird happens, this search won't succeed and life will be groovy.
900 *
901 * Sigh. We cannot add the directory onto the search path because
902 * of this amusing case:
903 * $(INSTALLDIR)/$(FILE): $(FILE)
904 *
905 * $(FILE) exists in $(INSTALLDIR) but not in the current one.
906 * When searching for $(FILE), we will find it in $(INSTALLDIR)
907 * b/c we added it here. This is not good...
908 */
909#ifdef notdef
910 cp[-1] = '\0';
911 Dir_AddDir (path, name);
912 cp[-1] = '/';
913
914 bigmisses += 1;
915 ln = Lst_Last (path);
916 if (ln == NILLNODE) {
917 return ((char *) NULL);
918 } else {
919 p = (Path *) Lst_Datum (ln);
920 }
921
922 if (Hash_FindEntry (&p->files, cp) != (Hash_Entry *)NULL) {
923 return (estrdup (name));
924 } else {
925 return ((char *) NULL);
926 }
927#else /* !notdef */
928 if (DEBUG(DIR)) {
929 printf("Looking for \"%s\"...", name);
930 }
931
932 bigmisses += 1;
933 entry = Hash_FindEntry(&mtimes, name);
934 if (entry != (Hash_Entry *)NULL) {
935 if (DEBUG(DIR)) {
936 printf("got it (in mtime cache)\n");
937 }
938 return(estrdup(name));
939 } else if (stat (name, &stb) == 0) {
940 entry = Hash_CreateEntry(&mtimes, name, (Boolean *)NULL);
941 if (DEBUG(DIR)) {
942 printf("Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
943 name);
944 }
945 Hash_SetValue(entry, (long)stb.st_mtime);
946 return (estrdup (name));
947 } else {
948 if (DEBUG(DIR)) {
949 printf("failed. Returning NULL\n");
950 }
951 return ((char *)NULL);
952 }
953#endif /* notdef */
954}
955
956/*-
957 *-----------------------------------------------------------------------
958 * Dir_MTime --
959 * Find the modification time of the file described by gn along the
960 * search path dirSearchPath.
961 *
962 * Results:
963 * The modification time or 0 if it doesn't exist
964 *
965 * Side Effects:
966 * The modification time is placed in the node's mtime slot.
967 * If the node didn't have a path entry before, and Dir_FindFile
968 * found one for it, the full name is placed in the path slot.
969 *-----------------------------------------------------------------------
970 */
971int
972Dir_MTime (gn)
973 GNode *gn; /* the file whose modification time is
974 * desired */
975{
976 char *fullName; /* the full pathname of name */
977 struct stat stb; /* buffer for finding the mod time */
978 Hash_Entry *entry;
979
980 #ifdef USE_ARCHIVES
981 if (gn->type & OP_ARCHV) {
982 return Arch_MTime (gn);
983 } else
984 #endif
985 if (gn->path == (char *)NULL) {
986 fullName = Dir_FindFile (gn->name, dirSearchPath);
987 } else {
988 fullName = gn->path;
989 }
990
991 if (fullName == (char *)NULL) {
992 fullName = estrdup(gn->name);
993 }
994
995 entry = Hash_FindEntry(&mtimes, fullName);
996 if (entry != (Hash_Entry *)NULL) {
997 /*
998 * Only do this once -- the second time folks are checking to
999 * see if the file was actually updated, so we need to actually go
1000 * to the file system.
1001 */
1002 if (DEBUG(DIR)) {
1003 printf("Using cached time %s for %s\n",
1004 Targ_FmtTime((time_t)(long)Hash_GetValue(entry)), fullName);
1005 }
1006 stb.st_mtime = (time_t)(long)Hash_GetValue(entry);
1007 Hash_DeleteEntry(&mtimes, entry);
1008 } else if (stat (fullName, &stb) < 0) {
1009 #ifdef USE_ARCHIVES
1010 if (gn->type & OP_MEMBER) {
1011 if (fullName != gn->path)
1012 efree(fullName);
1013 return Arch_MemMTime (gn);
1014 } else
1015 #endif
1016 stb.st_mtime = 0;
1017 }
1018 if (fullName && gn->path == (char *)NULL) {
1019 gn->path = fullName;
1020 }
1021
1022 gn->mtime = stb.st_mtime;
1023 return (gn->mtime);
1024}
1025
1026/*-
1027 *-----------------------------------------------------------------------
1028 * Dir_AddDir --
1029 * Add the given name to the end of the given path. The order of
1030 * the arguments is backwards so ParseDoDependency can do a
1031 * Lst_ForEach of its list of paths...
1032 *
1033 * Results:
1034 * none
1035 *
1036 * Side Effects:
1037 * A structure is added to the list and the directory is
1038 * read and hashed.
1039 *-----------------------------------------------------------------------
1040 */
1041void
1042Dir_AddDir (path, name)
1043 Lst path; /* the path to which the directory should be
1044 * added */
1045 char *name; /* the name of the directory to add */
1046{
1047 LstNode ln; /* node in case Path structure is found */
1048 register Path *p; /* pointer to new Path structure */
1049 DIR *d; /* for reading directory */
1050 register struct dirent *dp; /* entry in directory */
1051
1052 ln = Lst_Find (openDirectories, (ClientData)name, DirFindName);
1053 if (ln != NILLNODE) {
1054 p = (Path *)Lst_Datum (ln);
1055 if (Lst_Member(path, (ClientData)p) == NILLNODE) {
1056 p->refCount += 1;
1057 (void)Lst_AtEnd (path, (ClientData)p);
1058 }
1059 } else {
1060 if (DEBUG(DIR)) {
1061 printf("Caching %s...", name);
1062 fflush(stdout);
1063 }
1064
1065 if ((d = opendir (name)) != (DIR *) NULL) {
1066 p = (Path *) emalloc (sizeof (Path));
1067 p->name = estrdup (name);
1068 p->hits = 0;
1069 p->refCount = 1;
1070 Hash_InitTable (&p->files, -1);
1071
1072 while ((dp = readdir (d)) != (struct dirent *) NULL) {
1073#if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
1074 /*
1075 * The sun directory library doesn't check for a 0 inode
1076 * (0-inode slots just take up space), so we have to do
1077 * it ourselves.
1078 */
1079 if (dp->d_fileno == 0) {
1080 continue;
1081 }
1082#endif /* sun && d_ino */
1083
1084 /* Skip the '.' and '..' entries by checking for them
1085 * specifically instead of assuming readdir() reuturns them in
1086 * that order when first going through a directory. This is
1087 * needed for XFS over NFS filesystems since SGI does not
1088 * guarantee that these are * the first two entries returned
1089 * from readdir().
1090 */
1091 if (ISDOT(dp->d_name) || ISDOTDOT(dp->d_name))
1092 continue;
1093
1094 (void)Hash_CreateEntry(&p->files, dp->d_name, (Boolean *)NULL);
1095 }
1096 (void) closedir (d);
1097 (void)Lst_AtEnd (openDirectories, (ClientData)p);
1098 (void)Lst_AtEnd (path, (ClientData)p);
1099 }
1100 if (DEBUG(DIR)) {
1101 printf("done\n");
1102 }
1103 }
1104}
1105
1106/*-
1107 *-----------------------------------------------------------------------
1108 * Dir_CopyDir --
1109 * Callback function for duplicating a search path via Lst_Duplicate.
1110 * Ups the reference count for the directory.
1111 *
1112 * Results:
1113 * Returns the Path it was given.
1114 *
1115 * Side Effects:
1116 * The refCount of the path is incremented.
1117 *
1118 *-----------------------------------------------------------------------
1119 */
1120ClientData
1121Dir_CopyDir(p)
1122 ClientData p;
1123{
1124 ((Path *) p)->refCount += 1;
1125
1126 return ((ClientData)p);
1127}
1128
1129/*-
1130 *-----------------------------------------------------------------------
1131 * Dir_MakeFlags --
1132 * Make a string by taking all the directories in the given search
1133 * path and preceding them by the given flag. Used by the suffix
1134 * module to create variables for compilers based on suffix search
1135 * paths.
1136 *
1137 * Results:
1138 * The string mentioned above. Note that there is no space between
1139 * the given flag and each directory. The empty string is returned if
1140 * Things don't go well.
1141 *
1142 * Side Effects:
1143 * None
1144 *-----------------------------------------------------------------------
1145 */
1146char *
1147Dir_MakeFlags (flag, path)
1148 char *flag; /* flag which should precede each directory */
1149 Lst path; /* list of directories */
1150{
1151 char *str; /* the string which will be returned */
1152 char *tstr; /* the current directory preceded by 'flag' */
1153 LstNode ln; /* the node of the current directory */
1154 Path *p; /* the structure describing the current directory */
1155
1156 str = estrdup ("");
1157
1158 if (Lst_Open (path) == SUCCESS) {
1159 while ((ln = Lst_Next (path)) != NILLNODE) {
1160 p = (Path *) Lst_Datum (ln);
1161 tstr = str_concat (flag, p->name, 0);
1162 str = str_concat (str, tstr, STR_ADDSPACE | STR_DOFREE);
1163 }
1164 Lst_Close (path);
1165 }
1166
1167 return (str);
1168}
1169
1170/*-
1171 *-----------------------------------------------------------------------
1172 * Dir_Destroy --
1173 * Nuke a directory descriptor, if possible. Callback procedure
1174 * for the suffixes module when destroying a search path.
1175 *
1176 * Results:
1177 * None.
1178 *
1179 * Side Effects:
1180 * If no other path references this directory (refCount == 0),
1181 * the Path and all its data are freed.
1182 *
1183 *-----------------------------------------------------------------------
1184 */
1185void
1186Dir_Destroy (pp)
1187 ClientData pp; /* The directory descriptor to nuke */
1188{
1189 Path *p = (Path *) pp;
1190 p->refCount -= 1;
1191
1192 if (p->refCount == 0) {
1193 LstNode ln;
1194
1195 ln = Lst_Member (openDirectories, (ClientData)p);
1196 (void) Lst_Remove (openDirectories, ln);
1197
1198 Hash_DeleteTable (&p->files);
1199 efree((Address)p->name);
1200 efree((Address)p);
1201 }
1202}
1203
1204/*-
1205 *-----------------------------------------------------------------------
1206 * Dir_ClearPath --
1207 * Clear out all elements of the given search path. This is different
1208 * from destroying the list, notice.
1209 *
1210 * Results:
1211 * None.
1212 *
1213 * Side Effects:
1214 * The path is set to the empty list.
1215 *
1216 *-----------------------------------------------------------------------
1217 */
1218void
1219Dir_ClearPath(path)
1220 Lst path; /* Path to clear */
1221{
1222 Path *p;
1223 while (!Lst_IsEmpty(path)) {
1224 p = (Path *)Lst_DeQueue(path);
1225 Dir_Destroy((ClientData) p);
1226 }
1227}
1228
1229
1230/*-
1231 *-----------------------------------------------------------------------
1232 * Dir_Concat --
1233 * Concatenate two paths, adding the second to the end of the first.
1234 * Makes sure to avoid duplicates.
1235 *
1236 * Results:
1237 * None
1238 *
1239 * Side Effects:
1240 * Reference counts for added dirs are upped.
1241 *
1242 *-----------------------------------------------------------------------
1243 */
1244void
1245Dir_Concat(path1, path2)
1246 Lst path1; /* Dest */
1247 Lst path2; /* Source */
1248{
1249 LstNode ln;
1250 Path *p;
1251
1252 for (ln = Lst_First(path2); ln != NILLNODE; ln = Lst_Succ(ln)) {
1253 p = (Path *)Lst_Datum(ln);
1254 if (Lst_Member(path1, (ClientData)p) == NILLNODE) {
1255 p->refCount += 1;
1256 (void)Lst_AtEnd(path1, (ClientData)p);
1257 }
1258 }
1259}
1260
1261/********** DEBUG INFO **********/
1262void
1263Dir_PrintDirectories()
1264{
1265 LstNode ln;
1266 Path *p;
1267
1268 printf ("#*** Directory Cache:\n");
1269 printf ("# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
1270 hits, misses, nearmisses, bigmisses,
1271 (hits+bigmisses+nearmisses ?
1272 hits * 100 / (hits + bigmisses + nearmisses) : 0));
1273 printf ("# %-20s referenced\thits\n", "directory");
1274 if (Lst_Open (openDirectories) == SUCCESS) {
1275 while ((ln = Lst_Next (openDirectories)) != NILLNODE) {
1276 p = (Path *) Lst_Datum (ln);
1277 printf ("# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits);
1278 }
1279 Lst_Close (openDirectories);
1280 }
1281}
1282
1283static int DirPrintDir (p, dummy)
1284 ClientData p;
1285 ClientData dummy;
1286{
1287 printf ("%s ", ((Path *) p)->name);
1288 return (dummy ? 0 : 0);
1289}
1290
1291void
1292Dir_PrintPath (path)
1293 Lst path;
1294{
1295 Lst_ForEach (path, DirPrintDir, (ClientData)0);
1296}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette