1 /* Directory hashing for GNU Make.
2 Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 2002 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 # define NAMLEN(dirent) strlen((dirent)->d_name)
28 extern char *vmsify
PARAMS ((char *name
, int type
));
31 # define dirent direct
32 # define NAMLEN(dirent) (dirent)->d_namlen
33 # ifdef HAVE_SYS_NDIR_H
34 # include <sys/ndir.h>
36 # ifdef HAVE_SYS_DIR_H
44 # endif /* HAVE_VMSDIR_H */
47 /* In GNU systems, <dirent.h> defines this macro for us. */
50 # define NAMLEN(d) _D_NAMLEN(d)
53 #if (defined (POSIX) || defined (VMS) || defined (WINDOWS32)) && !defined (__GNU_LIBRARY__)
54 /* Posix does not require that the d_ino field be present, and some
55 systems do not provide it. */
56 # define REAL_DIR_ENTRY(dp) 1
57 # define FAKE_DIR_ENTRY(dp)
59 # define REAL_DIR_ENTRY(dp) (dp->d_ino != 0)
60 # define FAKE_DIR_ENTRY(dp) (dp->d_ino = 1)
67 /* If it's MSDOS that doesn't have _USE_LFN, disable LFN support. */
76 static char dos_filename
[14];
80 if (filename
== 0 || _USE_LFN
)
83 /* FIXME: what about filenames which violate
84 8+3 constraints, like "config.h.in", or ".emacs"? */
85 if (strpbrk (filename
, "\"*+,;<=>?[\\]|") != 0)
90 /* First, transform the name part. */
91 for (i
= 0; *filename
!= '\0' && i
< 8 && *filename
!= '.'; ++i
)
92 *df
++ = tolower ((unsigned char)*filename
++);
94 /* Now skip to the next dot. */
95 while (*filename
!= '\0' && *filename
!= '.')
97 if (*filename
!= '\0')
100 for (i
= 0; *filename
!= '\0' && i
< 3 && *filename
!= '.'; ++i
)
101 *df
++ = tolower ((unsigned char)*filename
++);
104 /* Look for more dots. */
105 while (*filename
!= '\0' && *filename
!= '.')
107 if (*filename
== '.')
112 #endif /* __MSDOS__ */
115 #include "pathstuff.h"
122 #ifdef HAVE_CASE_INSENSITIVE_FS
128 static char new_filename
[136];
130 static char new_filename
[PATH_MAX
];
140 /* First, transform the name part. */
141 for (i
= 0; *filename
!= '\0'; ++i
)
143 *df
++ = tolower ((unsigned char)*filename
);
151 #endif /* HAVE_CASE_INSENSITIVE_FS */
164 unsigned char uc
= *name
;
165 h
= (h
<< 4) + (isupper (uc
) ? tolower (uc
) : uc
);
177 /* fake stat entry for a directory */
179 vmsstat_dir (name
, st
)
187 dir
= opendir (name
);
191 s
= strchr (name
, ':'); /* find device */
195 st
->st_dev
= (char *)vms_hash (name
);
206 st
->st_ino
[0] = h
& 0xff;
207 st
->st_ino
[1] = h
& 0xff00;
208 st
->st_ino
[2] = h
>> 16;
214 /* Hash table of directories. */
216 #ifndef DIRECTORY_BUCKETS
217 #define DIRECTORY_BUCKETS 199
220 struct directory_contents
222 dev_t dev
; /* Device and inode numbers of this dir. */
225 * Inode means nothing on WINDOWS32. Even file key information is
226 * unreliable because it is random per file open and undefined
227 * for remote filesystems. The most unique attribute I can
228 * come up with is the fully qualified name of the directory. Beware
229 * though, this is also unreliable. I'm open to suggestion on a better
230 * way to emulate inode.
234 int mtime
; /* controls check for stale directory cache */
235 int fs_flags
; /* FS_FAT, FS_NTFS, ... */
238 #define FS_UNKNOWN 0x4
245 #endif /* WINDOWS32 */
246 struct hash_table dirfiles
; /* Files in this directory. */
247 DIR *dirstream
; /* Stream reading this directory. */
251 directory_contents_hash_1 (key_0
)
254 struct directory_contents
const *key
= (struct directory_contents
const *) key_0
;
258 ISTRING_HASH_1 (key
->path_key
, hash
);
259 hash
^= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) key
->ctime
;
262 hash
= (((unsigned int) key
->dev
<< 4)
263 ^ ((unsigned int) key
->ino
[0]
264 + (unsigned int) key
->ino
[1]
265 + (unsigned int) key
->ino
[2]));
267 hash
= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) key
->ino
;
269 #endif /* WINDOWS32 */
274 directory_contents_hash_2 (key_0
)
277 struct directory_contents
const *key
= (struct directory_contents
const *) key_0
;
281 ISTRING_HASH_2 (key
->path_key
, hash
);
282 hash
^= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) ~key
->ctime
;
285 hash
= (((unsigned int) key
->dev
<< 4)
286 ^ ~((unsigned int) key
->ino
[0]
287 + (unsigned int) key
->ino
[1]
288 + (unsigned int) key
->ino
[2]));
290 hash
= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) ~key
->ino
;
292 #endif /* WINDOWS32 */
298 directory_contents_hash_cmp (xv
, yv
)
302 struct directory_contents
const *x
= (struct directory_contents
const *) xv
;
303 struct directory_contents
const *y
= (struct directory_contents
const *) yv
;
307 ISTRING_COMPARE (x
->path_key
, y
->path_key
, result
);
310 result
= x
->ctime
- y
->ctime
;
315 result
= x
->ino
[0] - y
->ino
[0];
318 result
= x
->ino
[1] - y
->ino
[1];
321 result
= x
->ino
[2] - y
->ino
[2];
325 result
= x
->ino
- y
->ino
;
329 #endif /* WINDOWS32 */
331 return x
->dev
- y
->dev
;
334 /* Table of directory contents hashed by device and inode number. */
335 static struct hash_table directory_contents
;
339 char *name
; /* Name of the directory. */
341 /* The directory's contents. This data may be shared by several
342 entries in the hash table, which refer to the same directory
343 (identified uniquely by `dev' and `ino') under different names. */
344 struct directory_contents
*contents
;
348 directory_hash_1 (key
)
351 return_ISTRING_HASH_1 (((struct directory
const *) key
)->name
);
355 directory_hash_2 (key
)
358 return_ISTRING_HASH_2 (((struct directory
const *) key
)->name
);
362 directory_hash_cmp (x
, y
)
366 return_ISTRING_COMPARE (((struct directory
const *) x
)->name
,
367 ((struct directory
const *) y
)->name
);
370 /* Table of directories hashed by name. */
371 static struct hash_table directories
;
373 /* Never have more than this many directories open at once. */
375 #define MAX_OPEN_DIRECTORIES 10
377 static unsigned int open_directories
= 0;
380 /* Hash table of files in each directory. */
384 char *name
; /* Name of the file. */
386 short impossible
; /* This file is impossible. */
393 return_ISTRING_HASH_1 (((struct dirfile
const *) key
)->name
);
400 return_ISTRING_HASH_2 (((struct dirfile
const *) key
)->name
);
404 dirfile_hash_cmp (xv
, yv
)
408 struct dirfile
const *x
= ((struct dirfile
const *) xv
);
409 struct dirfile
const *y
= ((struct dirfile
const *) yv
);
410 int result
= x
->length
- y
->length
;
413 return_ISTRING_COMPARE (x
->name
, y
->name
);
416 #ifndef DIRFILE_BUCKETS
417 #define DIRFILE_BUCKETS 107
420 static int dir_contents_file_exists_p
PARAMS ((struct directory_contents
*dir
, char *filename
));
421 static struct directory
*find_directory
PARAMS ((char *name
));
423 /* Find the directory named NAME and return its `struct directory'. */
425 static struct directory
*
426 find_directory (name
)
430 register struct directory
*dir
;
431 register struct directory
**dir_slot
;
432 struct directory dir_key
;
436 char fs_label
[BUFSIZ
];
437 char fs_type
[BUFSIZ
];
443 if ((*name
== '.') && (*(name
+1) == 0))
446 name
= vmsify (name
,1);
450 dir_slot
= (struct directory
**) hash_find_slot (&directories
, &dir_key
);
453 if (HASH_VACANT (dir
))
457 /* The directory was not found. Create a new entry for it. */
459 p
= name
+ strlen (name
);
460 dir
= (struct directory
*) xmalloc (sizeof (struct directory
));
461 dir
->name
= savestring (name
, p
- name
);
462 hash_insert_at (&directories
, dir
, dir_slot
);
463 /* The directory is not in the name hash table.
464 Find its device and inode numbers, and look it up by them. */
467 /* Remove any trailing '\'. Windows32 stat fails even on valid
468 directories if they end in '\'. */
474 r
= vmsstat_dir (name
, &st
);
476 r
= stat (name
, &st
);
480 /* Put back the trailing '\'. If we don't, we're permanently
481 truncating the value! */
488 /* Couldn't stat the directory. Mark this by
489 setting the `contents' member to a nil pointer. */
494 /* Search the contents hash table; device and inode are the key. */
496 struct directory_contents
*dc
;
497 struct directory_contents
**dc_slot
;
498 struct directory_contents dc_key
;
500 dc_key
.dev
= st
.st_dev
;
502 dc_key
.path_key
= w32_path
= w32ify (name
, 1);
503 dc_key
.ctime
= st
.st_ctime
;
506 dc_key
.ino
[0] = st
.st_ino
[0];
507 dc_key
.ino
[1] = st
.st_ino
[1];
508 dc_key
.ino
[2] = st
.st_ino
[2];
510 dc_key
.ino
= st
.st_ino
;
513 dc_slot
= (struct directory_contents
**) hash_find_slot (&directory_contents
, &dc_key
);
516 if (HASH_VACANT (dc
))
518 /* Nope; this really is a directory we haven't seen before. */
520 dc
= (struct directory_contents
*)
521 xmalloc (sizeof (struct directory_contents
));
523 /* Enter it in the contents hash table. */
526 dc
->path_key
= xstrdup (w32_path
);
527 dc
->ctime
= st
.st_ctime
;
528 dc
->mtime
= st
.st_mtime
;
531 * NTFS is the only WINDOWS32 filesystem that bumps mtime
532 * on a directory when files are added/deleted from
536 if (GetVolumeInformation(w32_path
,
537 fs_label
, sizeof (fs_label
),
539 &fs_flags
, fs_type
, sizeof (fs_type
)) == FALSE
)
540 dc
->fs_flags
= FS_UNKNOWN
;
541 else if (!strcmp(fs_type
, "FAT"))
542 dc
->fs_flags
= FS_FAT
;
543 else if (!strcmp(fs_type
, "NTFS"))
544 dc
->fs_flags
= FS_NTFS
;
546 dc
->fs_flags
= FS_UNKNOWN
;
549 dc
->ino
[0] = st
.st_ino
[0];
550 dc
->ino
[1] = st
.st_ino
[1];
551 dc
->ino
[2] = st
.st_ino
[2];
555 #endif /* WINDOWS32 */
556 hash_insert_at (&directory_contents
, dc
, dc_slot
);
557 dc
->dirstream
= opendir (name
);
558 if (dc
->dirstream
== 0)
559 /* Couldn't open the directory. Mark this by
560 setting the `files' member to a nil pointer. */
561 dc
->dirfiles
.ht_vec
= 0;
564 hash_init (&dc
->dirfiles
, DIRFILE_BUCKETS
,
565 dirfile_hash_1
, dirfile_hash_2
, dirfile_hash_cmp
);
566 /* Keep track of how many directories are open. */
568 if (open_directories
== MAX_OPEN_DIRECTORIES
)
569 /* We have too many directories open already.
570 Read the entire directory and then close it. */
571 (void) dir_contents_file_exists_p (dc
, (char *) 0);
575 /* Point the name-hashed entry for DIR at its contents data. */
583 /* Return 1 if the name FILENAME is entered in DIR's hash table.
584 FILENAME must contain no slashes. */
587 dir_contents_file_exists_p (dir
, filename
)
588 register struct directory_contents
*dir
;
589 register char *filename
;
599 if (dir
== 0 || dir
->dirfiles
.ht_vec
== 0)
601 /* The directory could not be stat'd or opened. */
605 filename
= dosify (filename
);
608 #ifdef HAVE_CASE_INSENSITIVE_FS
609 filename
= downcase (filename
);
613 filename
= vmsify (filename
,0);
619 struct dirfile dirfile_key
;
621 if (*filename
== '\0')
623 /* Checking if the directory exists. */
626 dirfile_key
.name
= filename
;
627 dirfile_key
.length
= strlen (filename
);
628 df
= (struct dirfile
*) hash_find_item (&dir
->dirfiles
, &dirfile_key
);
631 return !df
->impossible
;
635 /* The file was not found in the hashed list.
636 Try to read the directory further. */
638 if (dir
->dirstream
== 0)
642 * Check to see if directory has changed since last read. FAT
643 * filesystems force a rehash always as mtime does not change
644 * on directories (ugh!).
647 && (dir
->fs_flags
& FS_FAT
648 || (stat(dir
->path_key
, &st
) == 0
649 && st
.st_mtime
> dir
->mtime
)))
651 /* reset date stamp to show most recent re-process */
652 dir
->mtime
= st
.st_mtime
;
654 /* make sure directory can still be opened */
655 dir
->dirstream
= opendir(dir
->path_key
);
660 return 0; /* couldn't re-read - fail */
664 /* The directory has been all read in. */
668 while ((d
= readdir (dir
->dirstream
)) != 0)
670 /* Enter the file in the hash table. */
672 struct dirfile dirfile_key
;
673 struct dirfile
**dirfile_slot
;
675 #if defined(VMS) && defined(HAVE_DIRENT_H)
676 /* In VMS we get file versions too, which have to be stripped off */
678 char *p
= strrchr (d
->d_name
, ';');
683 if (!REAL_DIR_ENTRY (d
))
687 dirfile_key
.name
= d
->d_name
;
688 dirfile_key
.length
= len
;
689 dirfile_slot
= (struct dirfile
**) hash_find_slot (&dir
->dirfiles
, &dirfile_key
);
692 * If re-reading a directory, don't cache files that have
693 * already been discovered.
695 if (! rehash
|| HASH_VACANT (*dirfile_slot
))
698 df
= (struct dirfile
*) xmalloc (sizeof (struct dirfile
));
699 df
->name
= savestring (d
->d_name
, len
);
702 hash_insert_at (&dir
->dirfiles
, df
, dirfile_slot
);
704 /* Check if the name matches the one we're searching for. */
705 if (filename
!= 0 && strieq (d
->d_name
, filename
))
711 /* If the directory has been completely read in,
712 close the stream and reset the pointer to nil. */
716 closedir (dir
->dirstream
);
722 /* Return 1 if the name FILENAME in directory DIRNAME
723 is entered in the dir hash table.
724 FILENAME must contain no slashes. */
727 dir_file_exists_p (dirname
, filename
)
728 register char *dirname
;
729 register char *filename
;
731 return dir_contents_file_exists_p (find_directory (dirname
)->contents
,
735 /* Return 1 if the file named NAME exists. */
747 return ar_member_date (name
) != (time_t) -1;
751 dirend
= strrchr (name
, ']');
753 dirend
= strrchr (name
, ':');
755 if (dirend
== (char *)1)
756 return dir_file_exists_p ("[]", name
);
758 dirend
= strrchr (name
, '/');
759 #ifdef HAVE_DOS_PATHS
760 /* Forward and backslashes might be mixed. We need the rightmost one. */
762 char *bslash
= strrchr(name
, '\\');
763 if (!dirend
|| bslash
> dirend
)
765 /* The case of "d:file". */
766 if (!dirend
&& name
[0] && name
[1] == ':')
769 #endif /* HAVE_DOS_PATHS */
772 return dir_file_exists_p (".", name
);
773 #else /* !VMS && !AMIGA */
774 return dir_file_exists_p ("", name
);
783 #ifdef HAVE_DOS_PATHS
784 /* d:/ and d: are *very* different... */
785 if (dirend
< name
+ 3 && name
[1] == ':' &&
786 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
789 dirname
= (char *) alloca (dirend
- name
+ 1);
790 bcopy (name
, dirname
, dirend
- name
);
791 dirname
[dirend
- name
] = '\0';
793 return dir_file_exists_p (dirname
, slash
+ 1);
796 /* Mark FILENAME as `impossible' for `file_impossible_p'.
797 This means an attempt has been made to search for FILENAME
798 as an intermediate file, and it has failed. */
801 file_impossible (filename
)
802 register char *filename
;
805 register char *p
= filename
;
806 register struct directory
*dir
;
807 register struct dirfile
*new;
810 dirend
= strrchr (p
, ']');
812 dirend
= strrchr (p
, ':');
814 if (dirend
== (char *)1)
815 dir
= find_directory ("[]");
817 dirend
= strrchr (p
, '/');
818 # ifdef HAVE_DOS_PATHS
819 /* Forward and backslashes might be mixed. We need the rightmost one. */
821 char *bslash
= strrchr(p
, '\\');
822 if (!dirend
|| bslash
> dirend
)
824 /* The case of "d:file". */
825 if (!dirend
&& p
[0] && p
[1] == ':')
828 # endif /* HAVE_DOS_PATHS */
831 dir
= find_directory ("");
832 # else /* !VMS && !AMIGA */
833 dir
= find_directory (".");
839 char *slash
= dirend
;
844 #ifdef HAVE_DOS_PATHS
845 /* d:/ and d: are *very* different... */
846 if (dirend
< p
+ 3 && p
[1] == ':' &&
847 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
850 dirname
= (char *) alloca (dirend
- p
+ 1);
851 bcopy (p
, dirname
, dirend
- p
);
852 dirname
[dirend
- p
] = '\0';
854 dir
= find_directory (dirname
);
855 filename
= p
= slash
+ 1;
858 if (dir
->contents
== 0)
860 /* The directory could not be stat'd. We allocate a contents
861 structure for it, but leave it out of the contents hash table. */
862 dir
->contents
= (struct directory_contents
*)
863 xmalloc (sizeof (struct directory_contents
));
864 bzero ((char *) dir
->contents
, sizeof (struct directory_contents
));
867 if (dir
->contents
->dirfiles
.ht_vec
== 0)
869 hash_init (&dir
->contents
->dirfiles
, DIRFILE_BUCKETS
,
870 dirfile_hash_1
, dirfile_hash_2
, dirfile_hash_cmp
);
873 /* Make a new entry and put it in the table. */
875 new = (struct dirfile
*) xmalloc (sizeof (struct dirfile
));
876 new->name
= xstrdup (filename
);
877 new->length
= strlen (filename
);
879 hash_insert (&dir
->contents
->dirfiles
, new);
882 /* Return nonzero if FILENAME has been marked impossible. */
885 file_impossible_p (filename
)
889 register char *p
= filename
;
890 register struct directory_contents
*dir
;
891 register struct dirfile
*dirfile
;
892 struct dirfile dirfile_key
;
895 dirend
= strrchr (filename
, ']');
897 dir
= find_directory ("[]")->contents
;
899 dirend
= strrchr (filename
, '/');
900 #ifdef HAVE_DOS_PATHS
901 /* Forward and backslashes might be mixed. We need the rightmost one. */
903 char *bslash
= strrchr(filename
, '\\');
904 if (!dirend
|| bslash
> dirend
)
906 /* The case of "d:file". */
907 if (!dirend
&& filename
[0] && filename
[1] == ':')
908 dirend
= filename
+ 1;
910 #endif /* HAVE_DOS_PATHS */
913 dir
= find_directory ("")->contents
;
914 #else /* !VMS && !AMIGA */
915 dir
= find_directory (".")->contents
;
921 char *slash
= dirend
;
922 if (dirend
== filename
)
926 #ifdef HAVE_DOS_PATHS
927 /* d:/ and d: are *very* different... */
928 if (dirend
< filename
+ 3 && filename
[1] == ':' &&
929 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
932 dirname
= (char *) alloca (dirend
- filename
+ 1);
933 bcopy (p
, dirname
, dirend
- p
);
934 dirname
[dirend
- p
] = '\0';
936 dir
= find_directory (dirname
)->contents
;
937 p
= filename
= slash
+ 1;
940 if (dir
== 0 || dir
->dirfiles
.ht_vec
== 0)
941 /* There are no files entered for this directory. */
945 filename
= dosify (p
);
947 #ifdef HAVE_CASE_INSENSITIVE_FS
948 filename
= downcase (p
);
951 filename
= vmsify (p
, 1);
954 dirfile_key
.name
= filename
;
955 dirfile_key
.length
= strlen (filename
);
956 dirfile
= (struct dirfile
*) hash_find_item (&dir
->dirfiles
, &dirfile_key
);
958 return dirfile
->impossible
;
963 /* Return the already allocated name in the
964 directory hash table that matches DIR. */
970 return find_directory (dir
)->name
;
973 /* Print the data base of directories. */
976 print_dir_data_base ()
978 register unsigned int files
;
979 register unsigned int impossible
;
980 register struct directory
**dir_slot
;
981 register struct directory
**dir_end
;
983 puts (_("\n# Directories\n"));
985 files
= impossible
= 0;
987 dir_slot
= (struct directory
**) directories
.ht_vec
;
988 dir_end
= dir_slot
+ directories
.ht_size
;
989 for ( ; dir_slot
< dir_end
; dir_slot
++)
991 register struct directory
*dir
= *dir_slot
;
992 if (! HASH_VACANT (dir
))
994 if (dir
->contents
== 0)
995 printf (_("# %s: could not be stat'd.\n"), dir
->name
);
996 else if (dir
->contents
->dirfiles
.ht_vec
== 0)
999 printf (_("# %s (key %s, mtime %d): could not be opened.\n"),
1000 dir
->name
, dir
->contents
->path_key
,dir
->contents
->mtime
);
1001 #else /* WINDOWS32 */
1003 printf (_("# %s (device %d, inode [%d,%d,%d]): could not be opened.\n"),
1004 dir
->name
, dir
->contents
->dev
,
1005 dir
->contents
->ino
[0], dir
->contents
->ino
[1],
1006 dir
->contents
->ino
[2]);
1008 printf (_("# %s (device %ld, inode %ld): could not be opened.\n"),
1009 dir
->name
, (long int) dir
->contents
->dev
,
1010 (long int) dir
->contents
->ino
);
1012 #endif /* WINDOWS32 */
1016 register unsigned int f
= 0;
1017 register unsigned int im
= 0;
1018 register struct dirfile
**files_slot
;
1019 register struct dirfile
**files_end
;
1021 files_slot
= (struct dirfile
**) dir
->contents
->dirfiles
.ht_vec
;
1022 files_end
= files_slot
+ dir
->contents
->dirfiles
.ht_size
;
1023 for ( ; files_slot
< files_end
; files_slot
++)
1025 register struct dirfile
*df
= *files_slot
;
1026 if (! HASH_VACANT (df
))
1035 printf (_("# %s (key %s, mtime %d): "),
1036 dir
->name
, dir
->contents
->path_key
, dir
->contents
->mtime
);
1037 #else /* WINDOWS32 */
1039 printf (_("# %s (device %d, inode [%d,%d,%d]): "),
1040 dir
->name
, dir
->contents
->dev
,
1041 dir
->contents
->ino
[0], dir
->contents
->ino
[1],
1042 dir
->contents
->ino
[2]);
1044 printf (_("# %s (device %ld, inode %ld): "),
1046 (long)dir
->contents
->dev
, (long)dir
->contents
->ino
);
1048 #endif /* WINDOWS32 */
1050 fputs (_("No"), stdout
);
1053 fputs (_(" files, "), stdout
);
1055 fputs (_("no"), stdout
);
1058 fputs (_(" impossibilities"), stdout
);
1059 if (dir
->contents
->dirstream
== 0)
1062 puts (_(" so far."));
1069 fputs ("\n# ", stdout
);
1071 fputs (_("No"), stdout
);
1073 printf ("%u", files
);
1074 fputs (_(" files, "), stdout
);
1075 if (impossible
== 0)
1076 fputs (_("no"), stdout
);
1078 printf ("%u", impossible
);
1079 printf (_(" impossibilities in %lu directories.\n"), directories
.ht_fill
);
1082 /* Hooks for globbing. */
1086 /* Structure describing state of iterating through a directory hash table. */
1090 struct directory_contents
*contents
; /* The directory being read. */
1091 struct dirfile
**dirfile_slot
; /* Current slot in table. */
1094 /* Forward declarations. */
1095 static __ptr_t open_dirstream
PARAMS ((const char *));
1096 static struct dirent
*read_dirstream
PARAMS ((__ptr_t
));
1099 open_dirstream (directory
)
1100 const char *directory
;
1102 struct dirstream
*new;
1103 struct directory
*dir
= find_directory ((char *)directory
);
1105 if (dir
->contents
== 0 || dir
->contents
->dirfiles
.ht_vec
== 0)
1106 /* DIR->contents is nil if the directory could not be stat'd.
1107 DIR->contents->dirfiles is nil if it could not be opened. */
1110 /* Read all the contents of the directory now. There is no benefit
1111 in being lazy, since glob will want to see every file anyway. */
1113 (void) dir_contents_file_exists_p (dir
->contents
, (char *) 0);
1115 new = (struct dirstream
*) xmalloc (sizeof (struct dirstream
));
1116 new->contents
= dir
->contents
;
1117 new->dirfile_slot
= (struct dirfile
**) new->contents
->dirfiles
.ht_vec
;
1119 return (__ptr_t
) new;
1122 static struct dirent
*
1123 read_dirstream (stream
)
1126 struct dirstream
*const ds
= (struct dirstream
*) stream
;
1127 struct directory_contents
*dc
= ds
->contents
;
1128 struct dirfile
**dirfile_end
= (struct dirfile
**) dc
->dirfiles
.ht_vec
+ dc
->dirfiles
.ht_size
;
1130 static unsigned int bufsz
;
1132 while (ds
->dirfile_slot
< dirfile_end
)
1134 register struct dirfile
*df
= *ds
->dirfile_slot
++;
1135 if (! HASH_VACANT (df
) && !df
->impossible
)
1137 /* The glob interface wants a `struct dirent',
1140 unsigned int len
= df
->length
+ 1;
1141 if (sizeof *d
- sizeof d
->d_name
+ len
> bufsz
)
1146 if (sizeof *d
- sizeof d
->d_name
+ len
> bufsz
)
1147 bufsz
= sizeof *d
- sizeof d
->d_name
+ len
;
1148 buf
= xmalloc (bufsz
);
1150 d
= (struct dirent
*) buf
;
1152 #ifdef _DIRENT_HAVE_D_NAMLEN
1153 d
->d_namlen
= len
- 1;
1155 #ifdef _DIRENT_HAVE_D_TYPE
1156 d
->d_type
= DT_UNKNOWN
;
1158 memcpy (d
->d_name
, df
->name
, len
);
1174 /* On 64 bit ReliantUNIX (5.44 and above) in LFS mode, stat() is actually a
1175 * macro for stat64(). If stat is a macro, make a local wrapper function to
1182 # define local_stat stat
1184 static int local_stat (path
, buf
)
1188 return stat (path
, buf
);
1196 /* Bogus sunos4 compiler complains (!) about & before functions. */
1197 gl
->gl_opendir
= open_dirstream
;
1198 gl
->gl_readdir
= read_dirstream
;
1199 gl
->gl_closedir
= ansi_free
;
1200 gl
->gl_stat
= local_stat
;
1201 /* We don't bother setting gl_lstat, since glob never calls it.
1202 The slot is only there for compatibility with 4.4 BSD. */
1206 hash_init_directories ()
1208 hash_init (&directories
, DIRECTORY_BUCKETS
,
1209 directory_hash_1
, directory_hash_2
, directory_hash_cmp
);
1210 hash_init (&directory_contents
, DIRECTORY_BUCKETS
,
1211 directory_contents_hash_1
, directory_contents_hash_2
, directory_contents_hash_cmp
);