1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2016 Free Software
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 #include <sys/types.h>
38 #include <stat-time.h>
47 #include "msdos.h" /* for fstatat */
50 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
51 static Lisp_Object
file_attributes (int, char const *, Lisp_Object
);
53 /* Return the number of bytes in DP's name. */
55 dirent_namelen (struct dirent
*dp
)
57 #ifdef _D_EXACT_NAMLEN
58 return _D_EXACT_NAMLEN (dp
);
60 return strlen (dp
->d_name
);
65 open_directory (Lisp_Object dirname
, int *fdp
)
67 char *name
= SSDATA (dirname
);
69 int fd
, opendir_errno
;
72 /* Directories cannot be opened. The emulation assumes that any
73 file descriptor other than AT_FDCWD corresponds to the most
74 recently opened directory. This hack is good enough for Emacs. */
77 opendir_errno
= errno
;
79 fd
= emacs_open (name
, O_RDONLY
| O_DIRECTORY
, 0);
82 opendir_errno
= errno
;
88 opendir_errno
= errno
;
95 report_file_errno ("Opening directory", dirname
, opendir_errno
);
102 directory_files_internal_w32_unwind (Lisp_Object arg
)
104 Vw32_get_true_file_attributes
= arg
;
109 directory_files_internal_unwind (void *d
)
114 /* Return the next directory entry from DIR; DIR's name is DIRNAME.
115 If there are no more directory entries, return a null pointer.
116 Signal any unrecoverable errors. */
118 static struct dirent
*
119 read_dirent (DIR *dir
, Lisp_Object dirname
)
124 struct dirent
*dp
= readdir (dir
);
125 if (dp
|| errno
== 0)
127 if (! (errno
== EAGAIN
|| errno
== EINTR
))
130 /* The MS-Windows implementation of 'opendir' doesn't
131 actually open a directory until the first call to
132 'readdir'. If 'readdir' fails to open the directory, it
133 sets errno to ENOENT or EACCES, see w32.c. */
134 if (errno
== ENOENT
|| errno
== EACCES
)
135 report_file_error ("Opening directory", dirname
);
137 report_file_error ("Reading directory", dirname
);
143 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
144 If not ATTRS, return a list of directory filenames;
145 if ATTRS, return a list of directory filenames and their attributes.
146 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
149 directory_files_internal (Lisp_Object directory
, Lisp_Object full
,
150 Lisp_Object match
, Lisp_Object nosort
, bool attrs
,
151 Lisp_Object id_format
)
153 ptrdiff_t directory_nbytes
;
154 Lisp_Object list
, dirfilename
, encoded_directory
;
155 struct re_pattern_buffer
*bufp
= NULL
;
157 ptrdiff_t count
= SPECPDL_INDEX ();
159 Lisp_Object w32_save
= Qnil
;
162 /* Don't let the compiler optimize away all copies of DIRECTORY,
163 which would break GC; see Bug#16986. */
164 Lisp_Object
volatile directory_volatile
= directory
;
166 /* Because of file name handlers, these functions might call
167 Ffuncall, and cause a GC. */
168 list
= encoded_directory
= dirfilename
= Qnil
;
169 dirfilename
= Fdirectory_file_name (directory
);
173 CHECK_STRING (match
);
175 /* MATCH might be a flawed regular expression. Rather than
176 catching and signaling our own errors, we just call
177 compile_pattern to do the work for us. */
178 /* Pass 1 for the MULTIBYTE arg
179 because we do make multibyte strings if the contents warrant. */
181 /* Windows users want case-insensitive wildcards. */
182 bufp
= compile_pattern (match
, 0,
183 BVAR (&buffer_defaults
, case_canon_table
), 0, 1);
184 # else /* !WINDOWSNT */
185 bufp
= compile_pattern (match
, 0, Qnil
, 0, 1);
186 # endif /* !WINDOWSNT */
189 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
190 run_pre_post_conversion_on_str which calls Lisp directly and
192 dirfilename
= ENCODE_FILE (dirfilename
);
193 encoded_directory
= ENCODE_FILE (directory
);
195 /* Now *bufp is the compiled form of MATCH; don't call anything
196 which might compile a new regexp until we're done with the loop! */
199 DIR *d
= open_directory (dirfilename
, &fd
);
201 /* Unfortunately, we can now invoke expand-file-name and
202 file-attributes on filenames, both of which can throw, so we must
203 do a proper unwind-protect. */
204 record_unwind_protect_ptr (directory_files_internal_unwind
, d
);
209 extern int is_slow_fs (const char *);
211 /* Do this only once to avoid doing it (in w32.c:stat) for each
212 file in the directory, when we call Ffile_attributes below. */
213 record_unwind_protect (directory_files_internal_w32_unwind
,
214 Vw32_get_true_file_attributes
);
215 w32_save
= Vw32_get_true_file_attributes
;
216 if (EQ (Vw32_get_true_file_attributes
, Qlocal
))
218 /* w32.c:stat will notice these bindings and avoid calling
219 GetDriveType for each file. */
220 if (is_slow_fs (SDATA (dirfilename
)))
221 Vw32_get_true_file_attributes
= Qnil
;
223 Vw32_get_true_file_attributes
= Qt
;
228 directory_nbytes
= SBYTES (directory
);
229 re_match_object
= Qt
;
231 /* Decide whether we need to add a directory separator. */
232 if (directory_nbytes
== 0
233 || !IS_ANY_SEP (SREF (directory
, directory_nbytes
- 1)))
236 /* Loop reading directory entries. */
237 for (struct dirent
*dp
; (dp
= read_dirent (d
, directory
)); )
239 ptrdiff_t len
= dirent_namelen (dp
);
240 Lisp_Object name
= make_unibyte_string (dp
->d_name
, len
);
241 Lisp_Object finalname
= name
;
243 /* Note: DECODE_FILE can GC; it should protect its argument,
245 name
= DECODE_FILE (name
);
248 /* Now that we have unwind_protect in place, we might as well
249 allow matching to be interrupted. */
253 bool wanted
= (NILP (match
)
254 || re_search (bufp
, SSDATA (name
), len
, 0, len
, 0) >= 0);
262 Lisp_Object fullname
;
263 ptrdiff_t nbytes
= len
+ directory_nbytes
+ needsep
;
266 fullname
= make_uninit_multibyte_string (nbytes
, nbytes
);
267 memcpy (SDATA (fullname
), SDATA (directory
),
271 SSET (fullname
, directory_nbytes
, DIRECTORY_SEP
);
273 memcpy (SDATA (fullname
) + directory_nbytes
+ needsep
,
276 nchars
= multibyte_chars_in_text (SDATA (fullname
), nbytes
);
278 /* Some bug somewhere. */
282 STRING_SET_CHARS (fullname
, nchars
);
283 if (nchars
== nbytes
)
284 STRING_SET_UNIBYTE (fullname
);
286 finalname
= fullname
;
293 Lisp_Object fileattrs
294 = file_attributes (fd
, dp
->d_name
, id_format
);
295 list
= Fcons (Fcons (finalname
, fileattrs
), list
);
298 list
= Fcons (finalname
, list
);
305 Vw32_get_true_file_attributes
= w32_save
;
308 /* Discard the unwind protect. */
309 specpdl_ptr
= specpdl
+ count
;
312 list
= Fsort (Fnreverse (list
),
313 attrs
? Qfile_attributes_lessp
: Qstring_lessp
);
315 (void) directory_volatile
;
320 DEFUN ("directory-files", Fdirectory_files
, Sdirectory_files
, 1, 4, 0,
321 doc
: /* Return a list of names of files in DIRECTORY.
322 There are three optional arguments:
323 If FULL is non-nil, return absolute file names. Otherwise return names
324 that are relative to the specified directory.
325 If MATCH is non-nil, mention only file names that match the regexp MATCH.
326 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
327 Otherwise, the list returned is sorted with `string-lessp'.
328 NOSORT is useful if you plan to sort the result yourself. */)
329 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
)
332 directory
= Fexpand_file_name (directory
, Qnil
);
334 /* If the file name has special constructs in it,
335 call the corresponding file handler. */
336 handler
= Ffind_file_name_handler (directory
, Qdirectory_files
);
338 return call5 (handler
, Qdirectory_files
, directory
,
339 full
, match
, nosort
);
341 return directory_files_internal (directory
, full
, match
, nosort
, 0, Qnil
);
344 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes
,
345 Sdirectory_files_and_attributes
, 1, 5, 0,
346 doc
: /* Return a list of names of files and their attributes in DIRECTORY.
347 There are four optional arguments:
348 If FULL is non-nil, return absolute file names. Otherwise return names
349 that are relative to the specified directory.
350 If MATCH is non-nil, mention only file names that match the regexp MATCH.
351 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
352 NOSORT is useful if you plan to sort the result yourself.
353 ID-FORMAT specifies the preferred format of attributes uid and gid, see
354 `file-attributes' for further documentation.
355 On MS-Windows, performance depends on `w32-get-true-file-attributes',
357 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
, Lisp_Object id_format
)
360 directory
= Fexpand_file_name (directory
, Qnil
);
362 /* If the file name has special constructs in it,
363 call the corresponding file handler. */
364 handler
= Ffind_file_name_handler (directory
, Qdirectory_files_and_attributes
);
366 return call6 (handler
, Qdirectory_files_and_attributes
,
367 directory
, full
, match
, nosort
, id_format
);
369 return directory_files_internal (directory
, full
, match
, nosort
, 1, id_format
);
373 static Lisp_Object
file_name_completion (Lisp_Object
, Lisp_Object
, bool,
376 DEFUN ("file-name-completion", Ffile_name_completion
, Sfile_name_completion
,
378 doc
: /* Complete file name FILE in directory DIRECTORY.
379 Returns the longest string
380 common to all file names in DIRECTORY that start with FILE.
381 If there is only one and FILE matches it exactly, returns t.
382 Returns nil if DIRECTORY contains no name starting with FILE.
384 If PREDICATE is non-nil, call PREDICATE with each possible
385 completion (in absolute form) and ignore it if PREDICATE returns nil.
387 This function ignores some of the possible completions as determined
388 by the variables `completion-regexp-list' and
389 `completion-ignored-extensions', which see. `completion-regexp-list'
390 is matched against file and directory names relative to DIRECTORY. */)
391 (Lisp_Object file
, Lisp_Object directory
, Lisp_Object predicate
)
394 directory
= Fexpand_file_name (directory
, Qnil
);
396 /* If the directory name has special constructs in it,
397 call the corresponding file handler. */
398 handler
= Ffind_file_name_handler (directory
, Qfile_name_completion
);
400 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
402 /* If the file name has special constructs in it,
403 call the corresponding file handler. */
404 handler
= Ffind_file_name_handler (file
, Qfile_name_completion
);
406 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
408 return file_name_completion (file
, directory
, 0, predicate
);
411 DEFUN ("file-name-all-completions", Ffile_name_all_completions
,
412 Sfile_name_all_completions
, 2, 2, 0,
413 doc
: /* Return a list of all completions of file name FILE in directory DIRECTORY.
414 These are all file names in directory DIRECTORY which begin with FILE.
416 This function ignores some of the possible completions as determined
417 by the variables `completion-regexp-list' and
418 `completion-ignored-extensions', which see. `completion-regexp-list'
419 is matched against file and directory names relative to DIRECTORY. */)
420 (Lisp_Object file
, Lisp_Object directory
)
423 directory
= Fexpand_file_name (directory
, Qnil
);
425 /* If the directory name has special constructs in it,
426 call the corresponding file handler. */
427 handler
= Ffind_file_name_handler (directory
, Qfile_name_all_completions
);
429 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
431 /* If the file name has special constructs in it,
432 call the corresponding file handler. */
433 handler
= Ffind_file_name_handler (file
, Qfile_name_all_completions
);
435 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
437 return file_name_completion (file
, directory
, 1, Qnil
);
440 static int file_name_completion_stat (int, struct dirent
*, struct stat
*);
443 file_name_completion (Lisp_Object file
, Lisp_Object dirname
, bool all_flag
,
444 Lisp_Object predicate
)
446 ptrdiff_t bestmatchsize
= 0;
448 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
449 If ALL_FLAG is 0, BESTMATCH is either nil
450 or the best match so far, not decoded. */
451 Lisp_Object bestmatch
, tem
, elt
, name
;
452 Lisp_Object encoded_file
;
453 Lisp_Object encoded_dir
;
456 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
457 well as "." and "..". Until shown otherwise, assume we can't exclude
460 bool check_decoded
= false;
461 ptrdiff_t count
= SPECPDL_INDEX ();
468 encoded_file
= encoded_dir
= Qnil
;
469 specbind (Qdefault_directory
, dirname
);
471 /* Do completion on the encoded file name
472 because the other names in the directory are (we presume)
473 encoded likewise. We decode the completed string at the end. */
474 /* Actually, this is not quite true any more: we do most of the completion
475 work with decoded file names, but we still do some filtering based
476 on the encoded file name. */
477 encoded_file
= ENCODE_FILE (file
);
478 encoded_dir
= ENCODE_FILE (Fdirectory_file_name (dirname
));
480 Lisp_Object file_encoding
= Vfile_name_coding_system
;
481 if (NILP (Vfile_name_coding_system
))
482 file_encoding
= Vdefault_file_name_coding_system
;
483 /* If the file-name encoding decomposes characters, as we do for
484 HFS+ filesystems, we need to make an additional comparison of
485 decoded names in order to filter false positives, such as "a"
486 falsely matching "a-ring". */
487 if (!NILP (file_encoding
)
488 && !NILP (Fplist_get (Fcoding_system_plist (file_encoding
),
489 Qdecomposed_characters
)))
491 check_decoded
= true;
492 if (STRING_MULTIBYTE (file
))
494 /* Recompute FILE to make sure any decomposed characters in
495 it are re-composed by the post-read-conversion.
496 Otherwise, any decomposed characters will be rejected by
497 the additional check below. */
498 file
= DECODE_FILE (encoded_file
);
502 DIR *d
= open_directory (encoded_dir
, &fd
);
503 record_unwind_protect_ptr (directory_files_internal_unwind
, d
);
505 /* Loop reading directory entries. */
506 for (struct dirent
*dp
; (dp
= read_dirent (d
, dirname
)); )
508 ptrdiff_t len
= dirent_namelen (dp
);
512 if (len
< SCHARS (encoded_file
)
513 || (scmp (dp
->d_name
, SSDATA (encoded_file
),
514 SCHARS (encoded_file
))
518 if (file_name_completion_stat (fd
, dp
, &st
) < 0)
521 directoryp
= S_ISDIR (st
.st_mode
) != 0;
523 /* If all_flag is set, always include all.
524 It would not actually be helpful to the user to ignore any possible
525 completions when making a list of them. */
530 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
531 /* If this entry matches the current bestmatch, the only
532 thing it can do is increase matchcount, so don't bother
533 investigating it any further. */
534 if (!completion_ignore_case
535 /* The return result depends on whether it's the sole match. */
537 && !includeall
/* This match may allow includeall to 0. */
538 && len
>= bestmatchsize
539 && 0 > scmp (dp
->d_name
, SSDATA (bestmatch
), bestmatchsize
))
545 #ifndef TRIVIAL_DIRECTORY_ENTRY
546 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
548 /* "." and ".." are never interesting as completions, and are
549 actually in the way in a directory with only one file. */
550 if (TRIVIAL_DIRECTORY_ENTRY (dp
->d_name
))
552 else if (len
> SCHARS (encoded_file
))
553 /* Ignore directories if they match an element of
554 completion-ignored-extensions which ends in a slash. */
555 for (tem
= Vcompletion_ignored_extensions
;
556 CONSP (tem
); tem
= XCDR (tem
))
564 /* Need to encode ELT, since scmp compares unibyte
566 elt
= ENCODE_FILE (elt
);
567 elt_len
= SCHARS (elt
) - 1; /* -1 for trailing / */
571 if (p1
[elt_len
] != '/')
573 skip
= len
- elt_len
;
577 if (scmp (dp
->d_name
+ skip
, p1
, elt_len
) >= 0)
584 /* Compare extensions-to-be-ignored against end of this file name */
585 /* if name is not an exact match against specified string */
586 if (len
> SCHARS (encoded_file
))
587 /* and exit this for loop if a match is found */
588 for (tem
= Vcompletion_ignored_extensions
;
589 CONSP (tem
); tem
= XCDR (tem
))
592 if (!STRINGP (elt
)) continue;
593 /* Need to encode ELT, since scmp compares unibyte
595 elt
= ENCODE_FILE (elt
);
596 skip
= len
- SCHARS (elt
);
597 if (skip
< 0) continue;
599 if (scmp (dp
->d_name
+ skip
, SSDATA (elt
), SCHARS (elt
))
606 /* If an ignored-extensions match was found,
607 don't process this name as a completion. */
611 if (!includeall
&& canexclude
)
612 /* We're not including all files and this file can be excluded. */
615 if (includeall
&& !canexclude
)
616 { /* If we have one non-excludable file, we want to exclude the
619 /* Throw away any previous excludable match found. */
625 /* FIXME: If we move this `decode' earlier we can eliminate
626 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
627 name
= make_unibyte_string (dp
->d_name
, len
);
628 name
= DECODE_FILE (name
);
631 Lisp_Object regexps
, table
= (completion_ignore_case
632 ? Vascii_canon_table
: Qnil
);
634 /* Ignore this element if it fails to match all the regexps. */
635 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
636 regexps
= XCDR (regexps
))
637 if (fast_string_match_internal (XCAR (regexps
), name
, table
) < 0)
644 /* This is a possible completion */
646 /* This completion is a directory; make it end with '/'. */
647 name
= Ffile_name_as_directory (name
);
649 /* Test the predicate, if any. */
650 if (!NILP (predicate
) && NILP (call1 (predicate
, name
)))
653 /* Reject entries where the encoded strings match, but the
654 decoded don't. For example, "a" should not match "a-ring" on
655 file systems that store decomposed characters. */
656 Lisp_Object zero
= make_number (0);
658 if (check_decoded
&& SCHARS (file
) <= SCHARS (name
))
660 /* FIXME: This is a copy of the code below. */
661 ptrdiff_t compare
= SCHARS (file
);
663 = Fcompare_strings (name
, zero
, make_number (compare
),
664 file
, zero
, make_number (compare
),
665 completion_ignore_case
? Qt
: Qnil
);
670 /* Suitably record this match. */
672 matchcount
+= matchcount
<= 1;
675 bestmatch
= Fcons (name
, bestmatch
);
676 else if (NILP (bestmatch
))
679 bestmatchsize
= SCHARS (name
);
683 /* FIXME: This is a copy of the code in Ftry_completion. */
684 ptrdiff_t compare
= min (bestmatchsize
, SCHARS (name
));
686 = Fcompare_strings (bestmatch
, zero
, make_number (compare
),
687 name
, zero
, make_number (compare
),
688 completion_ignore_case
? Qt
: Qnil
);
689 ptrdiff_t matchsize
= EQ (cmp
, Qt
) ? compare
: eabs (XINT (cmp
)) - 1;
691 if (completion_ignore_case
)
693 /* If this is an exact match except for case,
694 use it as the best match rather than one that is not
695 an exact match. This way, we get the case pattern
696 of the actual match. */
697 /* This tests that the current file is an exact match
698 but BESTMATCH is not (it is too long). */
699 if ((matchsize
== SCHARS (name
)
700 && matchsize
+ directoryp
< SCHARS (bestmatch
))
702 /* If there is no exact match ignoring case,
703 prefer a match that does not change the case
705 /* If there is more than one exact match aside from
706 case, and one of them is exact including case,
708 /* This == checks that, of current file and BESTMATCH,
709 either both or neither are exact. */
710 (((matchsize
== SCHARS (name
))
712 (matchsize
+ directoryp
== SCHARS (bestmatch
)))
713 && (cmp
= Fcompare_strings (name
, zero
,
714 make_number (SCHARS (file
)),
719 && (cmp
= Fcompare_strings (bestmatch
, zero
,
720 make_number (SCHARS (file
)),
727 bestmatchsize
= matchsize
;
729 /* If the best completion so far is reduced to the string
730 we're trying to complete, then we already know there's no
731 other completion, so there's no point looking any further. */
732 if (matchsize
<= SCHARS (file
)
733 && !includeall
/* A future match may allow includeall to 0. */
734 /* If completion-ignore-case is non-nil, don't
735 short-circuit because we want to find the best
736 possible match *including* case differences. */
737 && (!completion_ignore_case
|| matchsize
== 0)
738 /* The return value depends on whether it's the sole match. */
745 /* This closes the directory. */
746 bestmatch
= unbind_to (count
, bestmatch
);
748 if (all_flag
|| NILP (bestmatch
))
750 /* Return t if the supplied string is an exact match (counting case);
751 it does not require any change to be made. */
752 if (matchcount
== 1 && !NILP (Fequal (bestmatch
, file
)))
754 bestmatch
= Fsubstring (bestmatch
, make_number (0),
755 make_number (bestmatchsize
));
759 /* Compare exactly LEN chars of strings at S1 and S2,
760 ignoring case if appropriate.
761 Return -1 if strings match,
762 else number of chars that match at the beginning. */
765 scmp (const char *s1
, const char *s2
, ptrdiff_t len
)
767 register ptrdiff_t l
= len
;
769 if (completion_ignore_case
)
772 && (downcase ((unsigned char) *s1
++)
773 == downcase ((unsigned char) *s2
++)))
778 while (l
&& *s1
++ == *s2
++)
788 file_name_completion_stat (int fd
, struct dirent
*dp
, struct stat
*st_addr
)
793 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
794 but aren't required here. Avoid computing the following fields:
795 st_inode, st_size and st_nlink for directories, and the execute bits
796 in st_mode for non-directory files with non-standard extensions. */
798 unsigned short save_djstat_flags
= _djstat_flags
;
800 _djstat_flags
= _STAT_INODE
| _STAT_EXEC_MAGIC
| _STAT_DIRSIZE
;
803 /* We want to return success if a link points to a nonexistent file,
804 but we want to return the status for what the link points to,
805 in case it is a directory. */
806 value
= fstatat (fd
, dp
->d_name
, st_addr
, AT_SYMLINK_NOFOLLOW
);
807 if (value
== 0 && S_ISLNK (st_addr
->st_mode
))
808 fstatat (fd
, dp
->d_name
, st_addr
, 0);
810 _djstat_flags
= save_djstat_flags
;
816 stat_uname (struct stat
*st
)
821 struct passwd
*pw
= getpwuid (st
->st_uid
);
831 stat_gname (struct stat
*st
)
836 struct group
*gr
= getgrgid (st
->st_gid
);
845 DEFUN ("file-attributes", Ffile_attributes
, Sfile_attributes
, 1, 2, 0,
846 doc
: /* Return a list of attributes of file FILENAME.
847 Value is nil if specified file cannot be opened.
849 ID-FORMAT specifies the preferred format of attributes uid and gid (see
850 below) - valid values are `string' and `integer'. The latter is the
851 default, but we plan to change that, so you should specify a non-nil value
852 for ID-FORMAT if you use the returned uid or gid.
854 To access the elements returned, the following access functions are
855 provided: `file-attribute-type', `file-attribute-link-number',
856 `file-attribute-user-id', `file-attribute-group-id',
857 `file-attribute-access-time', `file-attribute-modification-time',
858 `file-attribute-status-change-time', `file-attribute-size',
859 `file-attribute-modes', `file-attribute-inode-number', and
860 `file-attribute-device-number'.
862 Elements of the attribute list are:
863 0. t for directory, string (name linked to) for symbolic link, or nil.
864 1. Number of links to file.
865 2. File uid as a string or a number. If a string value cannot be
866 looked up, a numeric value, either an integer or a float, is returned.
867 3. File gid, likewise.
868 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
869 same style as (current-time).
870 (See a note below about access time on FAT-based filesystems.)
871 5. Last modification time, likewise. This is the time of the last
872 change to the file's contents.
873 6. Last status change time, likewise. This is the time of last change
874 to the file's attributes: owner and group, access mode bits, etc.
876 This is a floating point number if the size is too large for an integer.
877 8. File modes, as a string of ten letters or dashes as in ls -l.
878 9. An unspecified value, present only for backward compatibility.
879 10. inode number. If it is larger than what an Emacs integer can hold,
880 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
881 If even HIGH is too large for an Emacs integer, this is instead of the form
882 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
883 and finally the low 16 bits.
884 11. Filesystem device number. If it is larger than what the Emacs
885 integer can hold, this is a cons cell, similar to the inode number.
887 On most filesystems, the combination of the inode and the device
888 number uniquely identifies the file.
890 On MS-Windows, performance depends on `w32-get-true-file-attributes',
893 On some FAT-based filesystems, only the date of last access is recorded,
894 so last access time will always be midnight of that day. */)
895 (Lisp_Object filename
, Lisp_Object id_format
)
900 filename
= internal_condition_case_2 (Fexpand_file_name
, filename
, Qnil
,
902 if (!STRINGP (filename
))
905 /* If the file name has special constructs in it,
906 call the corresponding file handler. */
907 handler
= Ffind_file_name_handler (filename
, Qfile_attributes
);
909 { /* Only pass the extra arg if it is used to help backward compatibility
910 with old file handlers which do not implement the new arg. --Stef */
911 if (NILP (id_format
))
912 return call2 (handler
, Qfile_attributes
, filename
);
914 return call3 (handler
, Qfile_attributes
, filename
, id_format
);
917 encoded
= ENCODE_FILE (filename
);
918 return file_attributes (AT_FDCWD
, SSDATA (encoded
), id_format
);
922 file_attributes (int fd
, char const *name
, Lisp_Object id_format
)
927 /* An array to hold the mode string generated by filemodestring,
928 including its terminating space and null byte. */
929 char modes
[sizeof "-rwxr-xr-x "];
931 char *uname
= NULL
, *gname
= NULL
;
934 /* We usually don't request accurate owner and group info, because
935 it can be very expensive on Windows to get that, and most callers
936 of 'lstat' don't need that. But here we do want that information
938 w32_stat_get_owner_group
= 1;
941 lstat_result
= fstatat (fd
, name
, &s
, AT_SYMLINK_NOFOLLOW
);
944 w32_stat_get_owner_group
= 0;
947 if (lstat_result
< 0)
950 if (!(NILP (id_format
) || EQ (id_format
, Qinteger
)))
952 uname
= stat_uname (&s
);
953 gname
= stat_gname (&s
);
956 filemodestring (&s
, modes
);
959 (S_ISLNK (s
.st_mode
) ? emacs_readlinkat (fd
, name
)
960 : S_ISDIR (s
.st_mode
) ? Qt
: Qnil
),
961 make_number (s
.st_nlink
),
963 ? DECODE_SYSTEM (build_unibyte_string (uname
))
964 : make_fixnum_or_float (s
.st_uid
)),
966 ? DECODE_SYSTEM (build_unibyte_string (gname
))
967 : make_fixnum_or_float (s
.st_gid
)),
968 make_lisp_time (get_stat_atime (&s
)),
969 make_lisp_time (get_stat_mtime (&s
)),
970 make_lisp_time (get_stat_ctime (&s
)),
972 /* If the file size is a 4-byte type, assume that
973 files of sizes in the 2-4 GiB range wrap around to
974 negative values, as this is a common bug on older
976 make_fixnum_or_float (sizeof (s
.st_size
) == 4
977 ? s
.st_size
& 0xffffffffu
980 make_string (modes
, 10),
982 INTEGER_TO_CONS (s
.st_ino
),
983 INTEGER_TO_CONS (s
.st_dev
));
986 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp
, Sfile_attributes_lessp
, 2, 2, 0,
987 doc
: /* Return t if first arg file attributes list is less than second.
988 Comparison is in lexicographic order and case is significant. */)
989 (Lisp_Object f1
, Lisp_Object f2
)
991 return Fstring_lessp (Fcar (f1
), Fcar (f2
));
995 DEFUN ("system-users", Fsystem_users
, Ssystem_users
, 0, 0, 0,
996 doc
: /* Return a list of user names currently registered in the system.
997 If we don't know how to determine that on this platform, just
998 return a list with one element, taken from `user-real-login-name'. */)
1001 Lisp_Object users
= Qnil
;
1002 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1005 while ((pw
= getpwent ()))
1006 users
= Fcons (DECODE_SYSTEM (build_string (pw
->pw_name
)), users
);
1010 if (EQ (users
, Qnil
))
1011 /* At least current user is always known. */
1012 users
= list1 (Vuser_real_login_name
);
1016 DEFUN ("system-groups", Fsystem_groups
, Ssystem_groups
, 0, 0, 0,
1017 doc
: /* Return a list of user group names currently registered in the system.
1018 The value may be nil if not supported on this platform. */)
1021 Lisp_Object groups
= Qnil
;
1022 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1025 while ((gr
= getgrent ()))
1026 groups
= Fcons (DECODE_SYSTEM (build_string (gr
->gr_name
)), groups
);
1034 syms_of_dired (void)
1036 DEFSYM (Qdirectory_files
, "directory-files");
1037 DEFSYM (Qdirectory_files_and_attributes
, "directory-files-and-attributes");
1038 DEFSYM (Qfile_name_completion
, "file-name-completion");
1039 DEFSYM (Qfile_name_all_completions
, "file-name-all-completions");
1040 DEFSYM (Qfile_attributes
, "file-attributes");
1041 DEFSYM (Qfile_attributes_lessp
, "file-attributes-lessp");
1042 DEFSYM (Qdefault_directory
, "default-directory");
1043 DEFSYM (Qdecomposed_characters
, "decomposed-characters");
1045 defsubr (&Sdirectory_files
);
1046 defsubr (&Sdirectory_files_and_attributes
);
1047 defsubr (&Sfile_name_completion
);
1048 defsubr (&Sfile_name_all_completions
);
1049 defsubr (&Sfile_attributes
);
1050 defsubr (&Sfile_attributes_lessp
);
1051 defsubr (&Ssystem_users
);
1052 defsubr (&Ssystem_groups
);
1054 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions
,
1055 doc
: /* Completion ignores file names ending in any string in this list.
1056 It does not ignore them if all possible completions end in one of
1057 these strings or when displaying a list of completions.
1058 It ignores directory names if they match any string in this list which
1059 ends in a slash. */);
1060 Vcompletion_ignored_extensions
= Qnil
;