1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
|
/* $OpenBSD: dir.c,v 1.69 2023/09/04 11:35:11 espie Exp $ */
/* $NetBSD: dir.c,v 1.14 1997/03/29 16:51:26 christos Exp $ */
/*
* Copyright (c) 1999 Marc Espie.
*
* Extensive code changes for the OpenBSD project.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD
* PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
* Copyright (c) 1988, 1989 by Adam de Boor
* Copyright (c) 1989 by Berkeley Softworks
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Adam de Boor.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/stat.h>
#include <dirent.h>
#include <limits.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ohash.h>
#include "defines.h"
#include "dir.h"
#include "lst.h"
#include "memory.h"
#include "buf.h"
#include "gnode.h"
#include "arch.h"
#include "targ.h"
#include "error.h"
#include "str.h"
#include "timestamp.h"
/* A search path consists of a Lst of PathEntry structures. A Path
* structure has in it the name of the directory and a hash table of all
* the files in the directory. This is used to cut down on the number of
* system calls necessary to find implicit dependents and their like.
* Since these searches are made before any actions are taken, we need not
* worry about the directory changing due to creation commands. If this
* hampers the style of some makefiles, they must be changed.
*
* A list of all previously-read directories is kept in the
* knownDirectories cache.
*
* The need for the caching of whole directories is brought about by
* the multi-level transformation code in suff.c, which tends to search
* for far more files than regular make does. In the initial
* implementation, the amount of time spent performing "stat" calls was
* truly astronomical. The problem with hashing at the start is,
* of course, that pmake doesn't then detect changes to these directories
* during the course of the make. Three possibilities suggest themselves:
*
* 1) just use stat to test for a file's existence. As mentioned
* above, this is very inefficient due to the number of checks
* engendered by the multi-level transformation code.
* 2) use readdir() and company to search the directories, keeping
* them open between checks. I have tried this and while it
* didn't slow down the process too much, it could severely
* affect the amount of parallelism available as each directory
* open would take another file descriptor out of play for
* handling I/O for another job. Given that it is only recently
* that UNIX OS's have taken to allowing more than 20 or 32
* file descriptors for a process, this doesn't seem acceptable
* to me.
* 3) record the mtime of the directory in the PathEntry structure and
* verify the directory hasn't changed since the contents were
* hashed. This will catch the creation or deletion of files,
* but not the updating of files. However, since it is the
* creation and deletion that is the problem, this could be
* a good thing to do. Unfortunately, if the directory (say ".")
* were fairly large and changed fairly frequently, the constant
* rehashing could seriously degrade performance. It might be
* good in such cases to keep track of the number of rehashes
* and if the number goes over a (small) limit, resort to using
* stat in its place.
*
* An additional thing to consider is that pmake is used primarily
* to create C programs and until recently pcc-based compilers refused
* to allow you to specify where the resulting object file should be
* placed. This forced all objects to be created in the current
* directory. This isn't meant as a full excuse, just an explanation of
* some of the reasons for the caching used here.
*
* One more note: the location of a target's file is only performed
* on the downward traversal of the graph and then only for terminal
* nodes in the graph. This could be construed as wrong in some cases,
* but prevents inadvertent modification of files when the "installed"
* directory for a file is provided in the search path.
*
* Another data structure maintained by this module is an mtime
* cache used when the searching of cached directories fails to find
* a file. In the past, Dir_FindFile would simply perform an access()
* call in such a case to determine if the file could be found using
* just the name given. When this hit, however, all that was gained
* was the knowledge that the file existed. Given that an access() is
* essentially a stat() without the copyout() call, and that the same
* filesystem overhead would have to be incurred in Dir_MTime, it made
* sense to replace the access() with a stat() and record the mtime
* in a cache for when Dir_MTime was actually called. */
/* several data structures exist to handle caching of directory stuff.
*
* There is a global hash of directory names (knownDirectories), and each
* read directory is kept there as one PathEntry instance. Such a structure
* only contains the file names.
*
* There is a global hash of timestamps (modification times), so care must
* be taken of giving the right file names to that structure.
*
* XXX A set of similar structure should exist at the Target level to properly
* take care of VPATH issues.
*/
/* each directory is cached into a PathEntry structure. */
struct PathEntry {
int refCount; /* ref-counted, can participate to
* several paths */
struct ohash files; /* hash of name of files in the directory */
char name[1]; /* directory name */
};
/* PathEntry kept on knownDirectories */
static struct ohash_info dir_info = {
offsetof(struct PathEntry, name), NULL, hash_calloc, hash_free,
element_alloc
};
static struct ohash knownDirectories; /* cache all open directories */
/* file names kept in a path entry */
static struct ohash_info file_info = {
0, NULL, hash_calloc, hash_free, element_alloc
};
/* Global structure used to cache mtimes. XXX We don't cache an mtime
* before a caller actually looks up for the given time, because of the
* possibility a caller might update the file and invalidate the cache
* entry, and we don't look up in this cache except as a last resort.
*/
struct file_stamp {
struct timespec mtime; /* time stamp... */
char name[1]; /* ...for that file. */
};
static struct ohash mtimes;
static struct ohash_info stamp_info = {
offsetof(struct file_stamp, name), NULL, hash_calloc, hash_free,
element_alloc
};
static LIST theDefaultPath; /* main search path */
Lst defaultPath= &theDefaultPath;
struct PathEntry *dot; /* contents of current directory */
/* add_file(path, name): add a file name to a path hash structure. */
static void add_file(struct PathEntry *, const char *);
/* n = find_file_hashi(p, name, end, hv): retrieve name in a path hash
* structure. */
static char *find_file_hashi(struct PathEntry *, const char *, const char *,
uint32_t);
/* stamp = find_stampi(name, end): look for (name, end) in the global
* cache. */
static struct file_stamp *find_stampi(const char *, const char *);
/* record_stamp(name, timestamp): record timestamp for name in the global
* cache. */
static void record_stamp(const char *, struct timespec);
static bool read_directory(struct PathEntry *);
/* p = DirReaddiri(name, end): read an actual directory, caching results
* as we go. */
static struct PathEntry *create_PathEntry(const char *, const char *);
/* Debugging: show a dir name in a path. */
static void DirPrintDir(void *);
/***
*** timestamp handling
***/
static void
record_stamp(const char *file, struct timespec t)
{
unsigned int slot;
const char *end = NULL;
struct file_stamp *n;
slot = ohash_qlookupi(&mtimes, file, &end);
n = ohash_find(&mtimes, slot);
if (n)
n->mtime = t;
else {
n = ohash_create_entry(&stamp_info, file, &end);
n->mtime = t;
ohash_insert(&mtimes, slot, n);
}
}
static struct file_stamp *
find_stampi(const char *file, const char *efile)
{
return ohash_find(&mtimes, ohash_qlookupi(&mtimes, file, &efile));
}
/***
*** PathEntry handling
***/
static void
add_file(struct PathEntry *p, const char *file)
{
unsigned int slot;
const char *end = NULL;
char *n;
struct ohash *h = &p->files;
slot = ohash_qlookupi(h, file, &end);
n = ohash_find(h, slot);
if (n == NULL) {
n = ohash_create_entry(&file_info, file, &end);
ohash_insert(h, slot, n);
}
}
static char *
find_file_hashi(struct PathEntry *p, const char *file, const char *efile,
uint32_t hv)
{
struct ohash *h = &p->files;
return ohash_find(h, ohash_lookup_interval(h, file, efile, hv));
}
static bool
read_directory(struct PathEntry *p)
{
DIR *d;
struct dirent *dp;
if (DEBUG(DIR)) {
printf("Caching %s...", p->name);
fflush(stdout);
}
if ((d = opendir(p->name)) == NULL)
return false;
ohash_init(&p->files, 4, &file_info);
while ((dp = readdir(d)) != NULL) {
if (dp->d_name[0] == '.' &&
(dp->d_name[1] == '\0' ||
(dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
continue;
add_file(p, dp->d_name);
}
(void)closedir(d);
if (DEBUG(DIR))
printf("done\n");
return true;
}
/* Read a directory, either from the disk, or from the cache. */
static struct PathEntry *
create_PathEntry(const char *name, const char *ename)
{
struct PathEntry *p;
unsigned int slot;
slot = ohash_qlookupi(&knownDirectories, name, &ename);
p = ohash_find(&knownDirectories, slot);
if (p == NULL) {
p = ohash_create_entry(&dir_info, name, &ename);
p->refCount = 0;
if (!read_directory(p)) {
free(p);
return NULL;
}
ohash_insert(&knownDirectories, slot, p);
}
p->refCount++;
return p;
}
char *
PathEntry_name(struct PathEntry *p)
{
return p->name;
}
/* Side Effects: cache the current directory */
void
Dir_Init(void)
{
char *dotname = ".";
Static_Lst_Init(defaultPath);
ohash_init(&knownDirectories, 4, &dir_info);
ohash_init(&mtimes, 4, &stamp_info);
dot = create_PathEntry(dotname, dotname+1);
if (!dot)
Fatal("Can't access current directory");
}
/*-
*-----------------------------------------------------------------------
* Dir_MatchFilesi --
* Given a pattern and a PathEntry structure, see if any files
* match the pattern and add their names to the 'expansions' list if
* any do. This is incomplete -- it doesn't take care of patterns like
* src / *src / *.c properly (just *.c on any of the directories), but it
* will do for now.
*-----------------------------------------------------------------------
*/
void
Dir_MatchFilesi(const char *word, const char *eword, struct PathEntry *p,
Lst expansions)
{
unsigned int search; /* Index into the directory's table */
const char *entry; /* Current entry in the table */
for (entry = ohash_first(&p->files, &search); entry != NULL;
entry = ohash_next(&p->files, &search)) {
/* See if the file matches the given pattern. We follow the UNIX
* convention that dot files will only be found if the pattern
* begins with a dot (the hashing scheme doesn't hash . or ..,
* so they won't match `.*'. */
if (*word != '.' && *entry == '.')
continue;
if (Str_Matchi(entry, strchr(entry, '\0'), word, eword))
Lst_AtEnd(expansions,
p == dot ? estrdup(entry) :
Str_concat(p->name, entry, '/'));
}
}
/*-
* Side Effects:
* If the file is found in a directory which is not on the path
* already (either 'name' is absolute or it is a relative path
* [ dir1/.../dirn/file ] which exists below one of the directories
* already on the search path), its directory is added to the end
* of the path on the assumption that there will be more files in
* that directory later on.
*/
char *
Dir_FindFileComplexi(const char *name, const char *ename, Lst path,
bool checkCurdirFirst)
{
struct PathEntry *p; /* current path member */
char *p1; /* pointer into p->name */
const char *p2; /* pointer into name */
LstNode ln; /* a list element */
char *file; /* the current filename to check */
char *temp; /* index into file */
const char *basename;
bool hasSlash;
struct stat stb;/* Buffer for stat, if necessary */
struct file_stamp *entry;
/* Entry for mtimes table */
uint32_t hv; /* hash value for last component in file name */
char *q; /* Str_dupi(name, ename) */
/* Find the final component of the name and note whether name has a
* slash in it */
basename = Str_rchri(name, ename, '/');
if (basename) {
hasSlash = true;
basename++;
} else {
hasSlash = false;
basename = name;
}
hv = ohash_interval(basename, &ename);
if (DEBUG(DIR))
printf("Searching for %s...", name);
/* Unless checkCurDirFirst is false, we always look for
* the file in the current directory before anywhere else
* and we always return exactly what the caller specified. */
if (checkCurdirFirst &&
(!hasSlash || (basename - name == 2 && *name == '.')) &&
find_file_hashi(dot, basename, ename, hv) != NULL) {
if (DEBUG(DIR))
printf("in '.'\n");
return Str_dupi(name, ename);
}
/* Then, we look through all the directories on path, seeking one
* containing the final component of name and whose final
* component(s) match name's initial component(s).
* If found, we concatenate the directory name and the
* final component and return the resulting string. */
for (ln = Lst_First(path); ln != NULL; ln = Lst_Adv(ln)) {
p = Lst_Datum(ln);
if (DEBUG(DIR))
printf("%s...", p->name);
if (find_file_hashi(p, basename, ename, hv) != NULL) {
if (DEBUG(DIR))
printf("here...");
if (hasSlash) {
/* If the name had a slash, its initial
* components and p's final components must
* match. This is false if a mismatch is
* encountered before all of the initial
* components have been checked (p2 > name at
* the end of the loop), or we matched only
* part of one of the components of p along
* with all the rest of them (*p1 != '/'). */
p1 = p->name + strlen(p->name) - 1;
p2 = basename - 2;
while (p2 >= name && p1 >= p->name &&
*p1 == *p2) {
p1--;
p2--;
}
if (p2 >= name ||
(p1 >= p->name && *p1 != '/')) {
if (DEBUG(DIR))
printf("component mismatch -- continuing...");
continue;
}
}
file = Str_concati(p->name, strchr(p->name, '\0'), basename,
ename, '/');
if (DEBUG(DIR))
printf("returning %s\n", file);
return file;
} else if (hasSlash) {
/* If the file has a leading path component and that
* component exactly matches the entire name of the
* current search directory, we assume the file
* doesn't exist and return NULL. */
for (p1 = p->name, p2 = name; *p1 && *p1 == *p2;
p1++, p2++)
continue;
if (*p1 == '\0' && p2 == basename - 1) {
if (DEBUG(DIR))
printf("has to be here but isn't -- returning NULL\n");
return NULL;
}
}
}
/* We didn't find the file on any existing member of the path.
* If the name doesn't contain a slash, end of story.
* If it does contain a slash, however, it could be in a subdirectory
* of one of the members of the search path. (eg., for path=/usr/include
* and name=sys/types.h, the above search fails to turn up types.h
* in /usr/include, even though /usr/include/sys/types.h exists).
*
* We only perform this look-up for non-absolute file names.
*
* Whenever we score a hit, we assume there will be more matches from
* that directory, and append all but the last component of the
* resulting name onto the search path. */
if (!hasSlash) {
if (DEBUG(DIR))
printf("failed.\n");
return NULL;
}
if (*name != '/') {
bool checkedDot = false;
if (DEBUG(DIR))
printf("failed. Trying subdirectories...");
for (ln = Lst_First(path); ln != NULL; ln = Lst_Adv(ln)) {
p = Lst_Datum(ln);
if (p != dot)
file = Str_concati(p->name,
strchr(p->name, '\0'), name, ename, '/');
else {
/* Checking in dot -- DON'T put a leading
* ./ on the thing. */
file = Str_dupi(name, ename);
checkedDot = true;
}
if (DEBUG(DIR))
printf("checking %s...", file);
if (stat(file, &stb) == 0) {
struct timespec mtime;
ts_set_from_stat(stb, mtime);
if (DEBUG(DIR))
printf("got it.\n");
/* We've found another directory to search.
* We know there is a slash in 'file'. We
* call Dir_AddDiri to add the new directory
* onto the existing search path. Once that's
* done, we return the file name, knowing that
* should a file in this directory ever be
* referenced again in such a manner, we will
* find it without having to do numerous
* access calls. */
temp = strrchr(file, '/');
Dir_AddDiri(path, file, temp);
/* Save the modification time so if it's
* needed, we don't have to fetch it again. */
if (DEBUG(DIR))
printf("Caching %s for %s\n",
time_to_string(&mtime), file);
record_stamp(file, mtime);
return file;
} else
free(file);
}
if (DEBUG(DIR))
printf("failed. ");
if (checkedDot) {
/* Already checked by the given name, since . was in
* the path, so no point in proceeding... */
if (DEBUG(DIR))
printf("Checked . already, returning NULL\n");
return NULL;
}
}
/* Didn't find it that way, either. Last resort: look for the file
* in the global mtime cache, then on the disk.
* If this doesn't succeed, we finally return a NULL pointer.
*
* We cannot add this directory onto the search path because
* of this amusing case:
* $(INSTALLDIR)/$(FILE): $(FILE)
*
* $(FILE) exists in $(INSTALLDIR) but not in the current one.
* When searching for $(FILE), we will find it in $(INSTALLDIR)
* b/c we added it here. This is not good... */
q = Str_dupi(name, ename);
if (DEBUG(DIR))
printf("Looking for \"%s\"...", q);
entry = find_stampi(name, ename);
if (entry != NULL) {
if (DEBUG(DIR))
printf("got it (in mtime cache)\n");
return q;
} else if (stat(q, &stb) == 0) {
struct timespec mtime;
ts_set_from_stat(stb, mtime);
if (DEBUG(DIR))
printf("Caching %s for %s\n", time_to_string(&mtime),
q);
record_stamp(q, mtime);
return q;
} else {
if (DEBUG(DIR))
printf("failed. Returning NULL\n");
free(q);
return NULL;
}
}
void
Dir_AddDiri(Lst path, const char *name, const char *ename)
{
struct PathEntry *p;
p = create_PathEntry(name, ename);
if (p == NULL)
return;
if (p->refCount == 1)
Lst_AtEnd(path, p);
else if (!Lst_AddNew(path, p))
return;
}
void *
Dir_CopyDir(void *p)
{
struct PathEntry *q = p;
q->refCount++;
return p;
}
void
Dir_Destroy(void *pp)
{
struct PathEntry *p = pp;
if (--p->refCount == 0) {
ohash_remove(&knownDirectories,
ohash_qlookup(&knownDirectories, p->name));
free_hash(&p->files);
free(p);
}
}
/*-
*-----------------------------------------------------------------------
* Dir_Concat --
* Concatenate two paths, adding the second to the end of the first.
* Makes sure to avoid duplicates.
*
* Side Effects:
* Reference counts for added dirs are upped.
*-----------------------------------------------------------------------
*/
void
Dir_Concat(Lst path1, Lst path2)
{
LstNode ln;
struct PathEntry *p;
for (ln = Lst_First(path2); ln != NULL; ln = Lst_Adv(ln)) {
p = Lst_Datum(ln);
if (Lst_AddNew(path1, p))
p->refCount++;
}
}
static void
DirPrintDir(void *p)
{
const struct PathEntry *q = p;
printf("%s ", q->name);
}
void
Dir_PrintPath(Lst path)
{
Lst_Every(path, DirPrintDir);
}
struct timespec
Dir_MTime(GNode *gn)
{
char *fullName;
struct stat stb;
struct file_stamp *entry;
unsigned int slot;
struct timespec mtime;
if (gn->type & OP_PHONY)
return gn->mtime;
if (gn->type & OP_ARCHV)
return Arch_MTime(gn);
if (gn->path == NULL) {
fullName = Dir_FindFile(gn->name, defaultPath);
if (fullName == NULL)
fullName = estrdup(gn->name);
} else
fullName = gn->path;
slot = ohash_qlookup(&mtimes, fullName);
entry = ohash_find(&mtimes, slot);
if (entry != NULL) {
/* Only do this once -- the second time folks are checking to
* see if the file was actually updated, so we need to
* actually go to the file system. */
if (DEBUG(DIR))
printf("Using cached time %s for %s\n",
time_to_string(&entry->mtime), fullName);
mtime = entry->mtime;
free(entry);
ohash_remove(&mtimes, slot);
} else if (stat(fullName, &stb) == 0)
ts_set_from_stat(stb, mtime);
else {
if (gn->type & OP_MEMBER) {
if (fullName != gn->path)
free(fullName);
return Arch_MemMTime(gn);
} else
ts_set_out_of_date(mtime);
}
if (fullName && gn->path == NULL)
gn->path = fullName;
gn->mtime = mtime;
return gn->mtime;
}
|