1 /* Directory hashing for GNU Make.
2 Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 2002,2003 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. */
73 dosify (char *filename
)
75 static char dos_filename
[14];
79 if (filename
== 0 || _USE_LFN
)
82 /* FIXME: what about filenames which violate
83 8+3 constraints, like "config.h.in", or ".emacs"? */
84 if (strpbrk (filename
, "\"*+,;<=>?[\\]|") != 0)
89 /* First, transform the name part. */
90 for (i
= 0; *filename
!= '\0' && i
< 8 && *filename
!= '.'; ++i
)
91 *df
++ = tolower ((unsigned char)*filename
++);
93 /* Now skip to the next dot. */
94 while (*filename
!= '\0' && *filename
!= '.')
96 if (*filename
!= '\0')
99 for (i
= 0; *filename
!= '\0' && i
< 3 && *filename
!= '.'; ++i
)
100 *df
++ = tolower ((unsigned char)*filename
++);
103 /* Look for more dots. */
104 while (*filename
!= '\0' && *filename
!= '.')
106 if (*filename
== '.')
111 #endif /* __MSDOS__ */
114 #include "pathstuff.h"
121 #ifdef HAVE_CASE_INSENSITIVE_FS
123 downcase (char *filename
)
126 static char new_filename
[136];
128 static char new_filename
[PATH_MAX
];
138 /* First, transform the name part. */
139 for (i
= 0; *filename
!= '\0'; ++i
)
141 *df
++ = tolower ((unsigned char)*filename
);
149 #endif /* HAVE_CASE_INSENSITIVE_FS */
154 vms_hash (char *name
)
161 unsigned char uc
= *name
;
162 h
= (h
<< 4) + (isupper (uc
) ? tolower (uc
) : uc
);
174 /* fake stat entry for a directory */
176 vmsstat_dir (char *name
, struct stat
*st
)
182 dir
= opendir (name
);
186 s
= strchr (name
, ':'); /* find device */
190 st
->st_dev
= (char *)vms_hash (name
);
201 st
->st_ino
[0] = h
& 0xff;
202 st
->st_ino
[1] = h
& 0xff00;
203 st
->st_ino
[2] = h
>> 16;
209 /* Hash table of directories. */
211 #ifndef DIRECTORY_BUCKETS
212 #define DIRECTORY_BUCKETS 199
215 struct directory_contents
217 dev_t dev
; /* Device and inode numbers of this dir. */
220 * Inode means nothing on WINDOWS32. Even file key information is
221 * unreliable because it is random per file open and undefined
222 * for remote filesystems. The most unique attribute I can
223 * come up with is the fully qualified name of the directory. Beware
224 * though, this is also unreliable. I'm open to suggestion on a better
225 * way to emulate inode.
229 int mtime
; /* controls check for stale directory cache */
230 int fs_flags
; /* FS_FAT, FS_NTFS, ... */
233 #define FS_UNKNOWN 0x4
240 #endif /* WINDOWS32 */
241 struct hash_table dirfiles
; /* Files in this directory. */
242 DIR *dirstream
; /* Stream reading this directory. */
246 directory_contents_hash_1 (const void *key_0
)
248 struct directory_contents
const *key
= (struct directory_contents
const *) key_0
;
253 ISTRING_HASH_1 (key
->path_key
, hash
);
254 hash
^= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) key
->ctime
;
257 hash
= (((unsigned int) key
->dev
<< 4)
258 ^ ((unsigned int) key
->ino
[0]
259 + (unsigned int) key
->ino
[1]
260 + (unsigned int) key
->ino
[2]));
262 hash
= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) key
->ino
;
264 #endif /* WINDOWS32 */
269 directory_contents_hash_2 (const void *key_0
)
271 struct directory_contents
const *key
= (struct directory_contents
const *) key_0
;
276 ISTRING_HASH_2 (key
->path_key
, hash
);
277 hash
^= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) ~key
->ctime
;
280 hash
= (((unsigned int) key
->dev
<< 4)
281 ^ ~((unsigned int) key
->ino
[0]
282 + (unsigned int) key
->ino
[1]
283 + (unsigned int) key
->ino
[2]));
285 hash
= ((unsigned int) key
->dev
<< 4) ^ (unsigned int) ~key
->ino
;
287 #endif /* WINDOWS32 */
293 directory_contents_hash_cmp (const void *xv
, const void *yv
)
295 struct directory_contents
const *x
= (struct directory_contents
const *) xv
;
296 struct directory_contents
const *y
= (struct directory_contents
const *) yv
;
300 ISTRING_COMPARE (x
->path_key
, y
->path_key
, result
);
303 result
= x
->ctime
- y
->ctime
;
308 result
= x
->ino
[0] - y
->ino
[0];
311 result
= x
->ino
[1] - y
->ino
[1];
314 result
= x
->ino
[2] - y
->ino
[2];
318 result
= x
->ino
- y
->ino
;
322 #endif /* WINDOWS32 */
324 return x
->dev
- y
->dev
;
327 /* Table of directory contents hashed by device and inode number. */
328 static struct hash_table directory_contents
;
332 char *name
; /* Name of the directory. */
334 /* The directory's contents. This data may be shared by several
335 entries in the hash table, which refer to the same directory
336 (identified uniquely by `dev' and `ino') under different names. */
337 struct directory_contents
*contents
;
341 directory_hash_1 (const void *key
)
343 return_ISTRING_HASH_1 (((struct directory
const *) key
)->name
);
347 directory_hash_2 (const void *key
)
349 return_ISTRING_HASH_2 (((struct directory
const *) key
)->name
);
353 directory_hash_cmp (const void *x
, const void *y
)
355 return_ISTRING_COMPARE (((struct directory
const *) x
)->name
,
356 ((struct directory
const *) y
)->name
);
359 /* Table of directories hashed by name. */
360 static struct hash_table directories
;
362 /* Never have more than this many directories open at once. */
364 #define MAX_OPEN_DIRECTORIES 10
366 static unsigned int open_directories
= 0;
369 /* Hash table of files in each directory. */
373 char *name
; /* Name of the file. */
375 short impossible
; /* This file is impossible. */
379 dirfile_hash_1 (const void *key
)
381 return_ISTRING_HASH_1 (((struct dirfile
const *) key
)->name
);
385 dirfile_hash_2 (const void *key
)
387 return_ISTRING_HASH_2 (((struct dirfile
const *) key
)->name
);
391 dirfile_hash_cmp (const void *xv
, const void *yv
)
393 struct dirfile
const *x
= ((struct dirfile
const *) xv
);
394 struct dirfile
const *y
= ((struct dirfile
const *) yv
);
395 int result
= x
->length
- y
->length
;
398 return_ISTRING_COMPARE (x
->name
, y
->name
);
401 #ifndef DIRFILE_BUCKETS
402 #define DIRFILE_BUCKETS 107
405 static int dir_contents_file_exists_p
PARAMS ((struct directory_contents
*dir
, char *filename
));
406 static struct directory
*find_directory
PARAMS ((char *name
));
408 /* Find the directory named NAME and return its `struct directory'. */
410 static struct directory
*
411 find_directory (char *name
)
414 register struct directory
*dir
;
415 register struct directory
**dir_slot
;
416 struct directory dir_key
;
420 char fs_label
[BUFSIZ
];
421 char fs_type
[BUFSIZ
];
427 if ((*name
== '.') && (*(name
+1) == 0))
430 name
= vmsify (name
,1);
434 dir_slot
= (struct directory
**) hash_find_slot (&directories
, &dir_key
);
437 if (HASH_VACANT (dir
))
441 /* The directory was not found. Create a new entry for it. */
443 p
= name
+ strlen (name
);
444 dir
= (struct directory
*) xmalloc (sizeof (struct directory
));
445 dir
->name
= savestring (name
, p
- name
);
446 hash_insert_at (&directories
, dir
, dir_slot
);
447 /* The directory is not in the name hash table.
448 Find its device and inode numbers, and look it up by them. */
451 /* Remove any trailing '\'. Windows32 stat fails even on valid
452 directories if they end in '\'. */
458 r
= vmsstat_dir (name
, &st
);
460 EINTRLOOP (r
, stat (name
, &st
));
464 /* Put back the trailing '\'. If we don't, we're permanently
465 truncating the value! */
472 /* Couldn't stat the directory. Mark this by
473 setting the `contents' member to a nil pointer. */
478 /* Search the contents hash table; device and inode are the key. */
480 struct directory_contents
*dc
;
481 struct directory_contents
**dc_slot
;
482 struct directory_contents dc_key
;
484 dc_key
.dev
= st
.st_dev
;
486 dc_key
.path_key
= w32_path
= w32ify (name
, 1);
487 dc_key
.ctime
= st
.st_ctime
;
490 dc_key
.ino
[0] = st
.st_ino
[0];
491 dc_key
.ino
[1] = st
.st_ino
[1];
492 dc_key
.ino
[2] = st
.st_ino
[2];
494 dc_key
.ino
= st
.st_ino
;
497 dc_slot
= (struct directory_contents
**) hash_find_slot (&directory_contents
, &dc_key
);
500 if (HASH_VACANT (dc
))
502 /* Nope; this really is a directory we haven't seen before. */
504 dc
= (struct directory_contents
*)
505 xmalloc (sizeof (struct directory_contents
));
507 /* Enter it in the contents hash table. */
510 dc
->path_key
= xstrdup (w32_path
);
511 dc
->ctime
= st
.st_ctime
;
512 dc
->mtime
= st
.st_mtime
;
515 * NTFS is the only WINDOWS32 filesystem that bumps mtime
516 * on a directory when files are added/deleted from
520 if (GetVolumeInformation(w32_path
,
521 fs_label
, sizeof (fs_label
),
523 &fs_flags
, fs_type
, sizeof (fs_type
)) == FALSE
)
524 dc
->fs_flags
= FS_UNKNOWN
;
525 else if (!strcmp(fs_type
, "FAT"))
526 dc
->fs_flags
= FS_FAT
;
527 else if (!strcmp(fs_type
, "NTFS"))
528 dc
->fs_flags
= FS_NTFS
;
530 dc
->fs_flags
= FS_UNKNOWN
;
533 dc
->ino
[0] = st
.st_ino
[0];
534 dc
->ino
[1] = st
.st_ino
[1];
535 dc
->ino
[2] = st
.st_ino
[2];
539 #endif /* WINDOWS32 */
540 hash_insert_at (&directory_contents
, dc
, dc_slot
);
541 ENULLLOOP (dc
->dirstream
, opendir (name
));
542 if (dc
->dirstream
== 0)
543 /* Couldn't open the directory. Mark this by
544 setting the `files' member to a nil pointer. */
545 dc
->dirfiles
.ht_vec
= 0;
548 hash_init (&dc
->dirfiles
, DIRFILE_BUCKETS
,
549 dirfile_hash_1
, dirfile_hash_2
, dirfile_hash_cmp
);
550 /* Keep track of how many directories are open. */
552 if (open_directories
== MAX_OPEN_DIRECTORIES
)
553 /* We have too many directories open already.
554 Read the entire directory and then close it. */
555 (void) dir_contents_file_exists_p (dc
, (char *) 0);
559 /* Point the name-hashed entry for DIR at its contents data. */
567 /* Return 1 if the name FILENAME is entered in DIR's hash table.
568 FILENAME must contain no slashes. */
571 dir_contents_file_exists_p (struct directory_contents
*dir
, char *filename
)
581 if (dir
== 0 || dir
->dirfiles
.ht_vec
== 0)
583 /* The directory could not be stat'd or opened. */
587 filename
= dosify (filename
);
590 #ifdef HAVE_CASE_INSENSITIVE_FS
591 filename
= downcase (filename
);
596 _fnlwr (filename
); /* lower case for FAT drives */
600 filename
= vmsify (filename
,0);
606 struct dirfile dirfile_key
;
608 if (*filename
== '\0')
610 /* Checking if the directory exists. */
613 dirfile_key
.name
= filename
;
614 dirfile_key
.length
= strlen (filename
);
615 df
= (struct dirfile
*) hash_find_item (&dir
->dirfiles
, &dirfile_key
);
618 return !df
->impossible
;
622 /* The file was not found in the hashed list.
623 Try to read the directory further. */
625 if (dir
->dirstream
== 0)
629 * Check to see if directory has changed since last read. FAT
630 * filesystems force a rehash always as mtime does not change
631 * on directories (ugh!).
634 && (dir
->fs_flags
& FS_FAT
635 || (stat(dir
->path_key
, &st
) == 0
636 && st
.st_mtime
> dir
->mtime
)))
638 /* reset date stamp to show most recent re-process */
639 dir
->mtime
= st
.st_mtime
;
641 /* make sure directory can still be opened */
642 dir
->dirstream
= opendir(dir
->path_key
);
647 return 0; /* couldn't re-read - fail */
651 /* The directory has been all read in. */
657 /* Enter the file in the hash table. */
659 struct dirfile dirfile_key
;
660 struct dirfile
**dirfile_slot
;
662 ENULLLOOP (d
, readdir (dir
->dirstream
));
666 #if defined(VMS) && defined(HAVE_DIRENT_H)
667 /* In VMS we get file versions too, which have to be stripped off */
669 char *p
= strrchr (d
->d_name
, ';');
674 if (!REAL_DIR_ENTRY (d
))
678 dirfile_key
.name
= d
->d_name
;
679 dirfile_key
.length
= len
;
680 dirfile_slot
= (struct dirfile
**) hash_find_slot (&dir
->dirfiles
, &dirfile_key
);
683 * If re-reading a directory, don't cache files that have
684 * already been discovered.
686 if (! rehash
|| HASH_VACANT (*dirfile_slot
))
689 df
= (struct dirfile
*) xmalloc (sizeof (struct dirfile
));
690 df
->name
= savestring (d
->d_name
, len
);
693 hash_insert_at (&dir
->dirfiles
, df
, dirfile_slot
);
695 /* Check if the name matches the one we're searching for. */
696 if (filename
!= 0 && strieq (d
->d_name
, filename
))
702 /* If the directory has been completely read in,
703 close the stream and reset the pointer to nil. */
707 closedir (dir
->dirstream
);
713 /* Return 1 if the name FILENAME in directory DIRNAME
714 is entered in the dir hash table.
715 FILENAME must contain no slashes. */
718 dir_file_exists_p (char *dirname
, char *filename
)
720 return dir_contents_file_exists_p (find_directory (dirname
)->contents
,
724 /* Return 1 if the file named NAME exists. */
727 file_exists_p (char *name
)
735 return ar_member_date (name
) != (time_t) -1;
739 dirend
= strrchr (name
, ']');
741 dirend
= strrchr (name
, ':');
742 if (dirend
== (char *)0)
743 return dir_file_exists_p ("[]", name
);
745 dirend
= strrchr (name
, '/');
746 #ifdef HAVE_DOS_PATHS
747 /* Forward and backslashes might be mixed. We need the rightmost one. */
749 char *bslash
= strrchr(name
, '\\');
750 if (!dirend
|| bslash
> dirend
)
752 /* The case of "d:file". */
753 if (!dirend
&& name
[0] && name
[1] == ':')
756 #endif /* HAVE_DOS_PATHS */
759 return dir_file_exists_p (".", name
);
760 #else /* !VMS && !AMIGA */
761 return dir_file_exists_p ("", name
);
770 #ifdef HAVE_DOS_PATHS
771 /* d:/ and d: are *very* different... */
772 if (dirend
< name
+ 3 && name
[1] == ':' &&
773 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
776 dirname
= (char *) alloca (dirend
- name
+ 1);
777 bcopy (name
, dirname
, dirend
- name
);
778 dirname
[dirend
- name
] = '\0';
780 return dir_file_exists_p (dirname
, slash
+ 1);
783 /* Mark FILENAME as `impossible' for `file_impossible_p'.
784 This means an attempt has been made to search for FILENAME
785 as an intermediate file, and it has failed. */
788 file_impossible (char *filename
)
791 register char *p
= filename
;
792 register struct directory
*dir
;
793 register struct dirfile
*new;
796 dirend
= strrchr (p
, ']');
798 dirend
= strrchr (p
, ':');
800 if (dirend
== (char *)1)
801 dir
= find_directory ("[]");
803 dirend
= strrchr (p
, '/');
804 # ifdef HAVE_DOS_PATHS
805 /* Forward and backslashes might be mixed. We need the rightmost one. */
807 char *bslash
= strrchr(p
, '\\');
808 if (!dirend
|| bslash
> dirend
)
810 /* The case of "d:file". */
811 if (!dirend
&& p
[0] && p
[1] == ':')
814 # endif /* HAVE_DOS_PATHS */
817 dir
= find_directory ("");
818 # else /* !VMS && !AMIGA */
819 dir
= find_directory (".");
825 char *slash
= dirend
;
830 #ifdef HAVE_DOS_PATHS
831 /* d:/ and d: are *very* different... */
832 if (dirend
< p
+ 3 && p
[1] == ':' &&
833 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
836 dirname
= (char *) alloca (dirend
- p
+ 1);
837 bcopy (p
, dirname
, dirend
- p
);
838 dirname
[dirend
- p
] = '\0';
840 dir
= find_directory (dirname
);
841 filename
= p
= slash
+ 1;
844 if (dir
->contents
== 0)
846 /* The directory could not be stat'd. We allocate a contents
847 structure for it, but leave it out of the contents hash table. */
848 dir
->contents
= (struct directory_contents
*)
849 xmalloc (sizeof (struct directory_contents
));
850 bzero ((char *) dir
->contents
, sizeof (struct directory_contents
));
853 if (dir
->contents
->dirfiles
.ht_vec
== 0)
855 hash_init (&dir
->contents
->dirfiles
, DIRFILE_BUCKETS
,
856 dirfile_hash_1
, dirfile_hash_2
, dirfile_hash_cmp
);
859 /* Make a new entry and put it in the table. */
861 new = (struct dirfile
*) xmalloc (sizeof (struct dirfile
));
862 new->name
= xstrdup (filename
);
863 new->length
= strlen (filename
);
865 hash_insert (&dir
->contents
->dirfiles
, new);
868 /* Return nonzero if FILENAME has been marked impossible. */
871 file_impossible_p (char *filename
)
874 register char *p
= filename
;
875 register struct directory_contents
*dir
;
876 register struct dirfile
*dirfile
;
877 struct dirfile dirfile_key
;
880 dirend
= strrchr (filename
, ']');
882 dir
= find_directory ("[]")->contents
;
884 dirend
= strrchr (filename
, '/');
885 #ifdef HAVE_DOS_PATHS
886 /* Forward and backslashes might be mixed. We need the rightmost one. */
888 char *bslash
= strrchr(filename
, '\\');
889 if (!dirend
|| bslash
> dirend
)
891 /* The case of "d:file". */
892 if (!dirend
&& filename
[0] && filename
[1] == ':')
893 dirend
= filename
+ 1;
895 #endif /* HAVE_DOS_PATHS */
898 dir
= find_directory ("")->contents
;
899 #else /* !VMS && !AMIGA */
900 dir
= find_directory (".")->contents
;
906 char *slash
= dirend
;
907 if (dirend
== filename
)
911 #ifdef HAVE_DOS_PATHS
912 /* d:/ and d: are *very* different... */
913 if (dirend
< filename
+ 3 && filename
[1] == ':' &&
914 (*dirend
== '/' || *dirend
== '\\' || *dirend
== ':'))
917 dirname
= (char *) alloca (dirend
- filename
+ 1);
918 bcopy (p
, dirname
, dirend
- p
);
919 dirname
[dirend
- p
] = '\0';
921 dir
= find_directory (dirname
)->contents
;
922 p
= filename
= slash
+ 1;
925 if (dir
== 0 || dir
->dirfiles
.ht_vec
== 0)
926 /* There are no files entered for this directory. */
930 filename
= dosify (p
);
932 #ifdef HAVE_CASE_INSENSITIVE_FS
933 filename
= downcase (p
);
936 filename
= vmsify (p
, 1);
939 dirfile_key
.name
= filename
;
940 dirfile_key
.length
= strlen (filename
);
941 dirfile
= (struct dirfile
*) hash_find_item (&dir
->dirfiles
, &dirfile_key
);
943 return dirfile
->impossible
;
948 /* Return the already allocated name in the
949 directory hash table that matches DIR. */
954 return find_directory (dir
)->name
;
957 /* Print the data base of directories. */
960 print_dir_data_base (void)
962 register unsigned int files
;
963 register unsigned int impossible
;
964 register struct directory
**dir_slot
;
965 register struct directory
**dir_end
;
967 puts (_("\n# Directories\n"));
969 files
= impossible
= 0;
971 dir_slot
= (struct directory
**) directories
.ht_vec
;
972 dir_end
= dir_slot
+ directories
.ht_size
;
973 for ( ; dir_slot
< dir_end
; dir_slot
++)
975 register struct directory
*dir
= *dir_slot
;
976 if (! HASH_VACANT (dir
))
978 if (dir
->contents
== 0)
979 printf (_("# %s: could not be stat'd.\n"), dir
->name
);
980 else if (dir
->contents
->dirfiles
.ht_vec
== 0)
983 printf (_("# %s (key %s, mtime %d): could not be opened.\n"),
984 dir
->name
, dir
->contents
->path_key
,dir
->contents
->mtime
);
985 #else /* WINDOWS32 */
987 printf (_("# %s (device %d, inode [%d,%d,%d]): could not be opened.\n"),
988 dir
->name
, dir
->contents
->dev
,
989 dir
->contents
->ino
[0], dir
->contents
->ino
[1],
990 dir
->contents
->ino
[2]);
992 printf (_("# %s (device %ld, inode %ld): could not be opened.\n"),
993 dir
->name
, (long int) dir
->contents
->dev
,
994 (long int) dir
->contents
->ino
);
996 #endif /* WINDOWS32 */
1000 register unsigned int f
= 0;
1001 register unsigned int im
= 0;
1002 register struct dirfile
**files_slot
;
1003 register struct dirfile
**files_end
;
1005 files_slot
= (struct dirfile
**) dir
->contents
->dirfiles
.ht_vec
;
1006 files_end
= files_slot
+ dir
->contents
->dirfiles
.ht_size
;
1007 for ( ; files_slot
< files_end
; files_slot
++)
1009 register struct dirfile
*df
= *files_slot
;
1010 if (! HASH_VACANT (df
))
1019 printf (_("# %s (key %s, mtime %d): "),
1020 dir
->name
, dir
->contents
->path_key
, dir
->contents
->mtime
);
1021 #else /* WINDOWS32 */
1023 printf (_("# %s (device %d, inode [%d,%d,%d]): "),
1024 dir
->name
, dir
->contents
->dev
,
1025 dir
->contents
->ino
[0], dir
->contents
->ino
[1],
1026 dir
->contents
->ino
[2]);
1028 printf (_("# %s (device %ld, inode %ld): "),
1030 (long)dir
->contents
->dev
, (long)dir
->contents
->ino
);
1032 #endif /* WINDOWS32 */
1034 fputs (_("No"), stdout
);
1037 fputs (_(" files, "), stdout
);
1039 fputs (_("no"), stdout
);
1042 fputs (_(" impossibilities"), stdout
);
1043 if (dir
->contents
->dirstream
== 0)
1046 puts (_(" so far."));
1053 fputs ("\n# ", stdout
);
1055 fputs (_("No"), stdout
);
1057 printf ("%u", files
);
1058 fputs (_(" files, "), stdout
);
1059 if (impossible
== 0)
1060 fputs (_("no"), stdout
);
1062 printf ("%u", impossible
);
1063 printf (_(" impossibilities in %lu directories.\n"), directories
.ht_fill
);
1066 /* Hooks for globbing. */
1070 /* Structure describing state of iterating through a directory hash table. */
1074 struct directory_contents
*contents
; /* The directory being read. */
1075 struct dirfile
**dirfile_slot
; /* Current slot in table. */
1078 /* Forward declarations. */
1079 static __ptr_t open_dirstream
PARAMS ((const char *));
1080 static struct dirent
*read_dirstream
PARAMS ((__ptr_t
));
1083 open_dirstream (const char *directory
)
1085 struct dirstream
*new;
1086 struct directory
*dir
= find_directory ((char *)directory
);
1088 if (dir
->contents
== 0 || dir
->contents
->dirfiles
.ht_vec
== 0)
1089 /* DIR->contents is nil if the directory could not be stat'd.
1090 DIR->contents->dirfiles is nil if it could not be opened. */
1093 /* Read all the contents of the directory now. There is no benefit
1094 in being lazy, since glob will want to see every file anyway. */
1096 (void) dir_contents_file_exists_p (dir
->contents
, (char *) 0);
1098 new = (struct dirstream
*) xmalloc (sizeof (struct dirstream
));
1099 new->contents
= dir
->contents
;
1100 new->dirfile_slot
= (struct dirfile
**) new->contents
->dirfiles
.ht_vec
;
1102 return (__ptr_t
) new;
1105 static struct dirent
*
1106 read_dirstream (__ptr_t stream
)
1108 struct dirstream
*const ds
= (struct dirstream
*) stream
;
1109 struct directory_contents
*dc
= ds
->contents
;
1110 struct dirfile
**dirfile_end
= (struct dirfile
**) dc
->dirfiles
.ht_vec
+ dc
->dirfiles
.ht_size
;
1112 static unsigned int bufsz
;
1114 while (ds
->dirfile_slot
< dirfile_end
)
1116 register struct dirfile
*df
= *ds
->dirfile_slot
++;
1117 if (! HASH_VACANT (df
) && !df
->impossible
)
1119 /* The glob interface wants a `struct dirent',
1122 unsigned int len
= df
->length
+ 1;
1123 if (sizeof *d
- sizeof d
->d_name
+ len
> bufsz
)
1128 if (sizeof *d
- sizeof d
->d_name
+ len
> bufsz
)
1129 bufsz
= sizeof *d
- sizeof d
->d_name
+ len
;
1130 buf
= xmalloc (bufsz
);
1132 d
= (struct dirent
*) buf
;
1134 # if __MINGW32_VERSION_MAJOR < 3 || (__MINGW32_VERSION_MAJOR == 3 && \
1135 __MINGW32_VERSION_MINOR == 0)
1136 d
->d_name
= xmalloc(len
);
1140 #ifdef _DIRENT_HAVE_D_NAMLEN
1141 d
->d_namlen
= len
- 1;
1143 #ifdef _DIRENT_HAVE_D_TYPE
1144 d
->d_type
= DT_UNKNOWN
;
1146 memcpy (d
->d_name
, df
->name
, len
);
1161 /* On 64 bit ReliantUNIX (5.44 and above) in LFS mode, stat() is actually a
1162 * macro for stat64(). If stat is a macro, make a local wrapper function to
1167 extern int stat
PARAMS ((const char *path
, struct stat
*sbuf
));
1169 # define local_stat stat
1172 local_stat (const char *path
, struct stat
*buf
)
1176 EINTRLOOP (e
, stat (path
, buf
));
1182 dir_setup_glob (glob_t
*gl
)
1184 /* Bogus sunos4 compiler complains (!) about & before functions. */
1185 gl
->gl_opendir
= open_dirstream
;
1186 gl
->gl_readdir
= read_dirstream
;
1187 gl
->gl_closedir
= ansi_free
;
1188 gl
->gl_stat
= local_stat
;
1189 /* We don't bother setting gl_lstat, since glob never calls it.
1190 The slot is only there for compatibility with 4.4 BSD. */
1194 hash_init_directories (void)
1196 hash_init (&directories
, DIRECTORY_BUCKETS
,
1197 directory_hash_1
, directory_hash_2
, directory_hash_cmp
);
1198 hash_init (&directory_contents
, DIRECTORY_BUCKETS
,
1199 directory_contents_hash_1
, directory_contents_hash_2
, directory_contents_hash_cmp
);