1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2014 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
10 (at 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>
42 #include "character.h"
48 #include "blockinput.h"
51 #include "msdos.h" /* for fstatat */
54 static Lisp_Object Qdirectory_files
;
55 static Lisp_Object Qdirectory_files_and_attributes
;
56 static Lisp_Object Qfile_name_completion
;
57 static Lisp_Object Qfile_name_all_completions
;
58 static Lisp_Object Qfile_attributes
;
59 static Lisp_Object Qfile_attributes_lessp
;
61 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
62 static Lisp_Object
file_attributes (int, char const *, Lisp_Object
);
64 /* Return the number of bytes in DP's name. */
66 dirent_namelen (struct dirent
*dp
)
68 #ifdef _D_EXACT_NAMLEN
69 return _D_EXACT_NAMLEN (dp
);
71 return strlen (dp
->d_name
);
76 open_directory (char const *name
, int *fdp
)
79 int fd
, opendir_errno
;
84 /* Directories cannot be opened. The emulation assumes that any
85 file descriptor other than AT_FDCWD corresponds to the most
86 recently opened directory. This hack is good enough for Emacs. */
89 opendir_errno
= errno
;
91 fd
= emacs_open (name
, O_RDONLY
| O_DIRECTORY
, 0);
94 opendir_errno
= errno
;
100 opendir_errno
= errno
;
109 errno
= opendir_errno
;
115 directory_files_internal_w32_unwind (Lisp_Object arg
)
117 Vw32_get_true_file_attributes
= arg
;
122 directory_files_internal_unwind (void *dh
)
130 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
131 If not ATTRS, return a list of directory filenames;
132 if ATTRS, return a list of directory filenames and their attributes.
133 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
136 directory_files_internal (Lisp_Object directory
, Lisp_Object full
,
137 Lisp_Object match
, Lisp_Object nosort
, bool attrs
,
138 Lisp_Object id_format
)
142 ptrdiff_t directory_nbytes
;
143 Lisp_Object list
, dirfilename
, encoded_directory
;
144 struct re_pattern_buffer
*bufp
= NULL
;
146 ptrdiff_t count
= SPECPDL_INDEX ();
147 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
150 Lisp_Object w32_save
= Qnil
;
153 /* Don't let the compiler optimize away all copies of DIRECTORY,
154 which would break GC; see Bug#16986. Although this is required
155 only in the common case where GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS,
156 it shouldn't break anything in the other cases. */
157 Lisp_Object
volatile directory_volatile
= directory
;
159 /* Because of file name handlers, these functions might call
160 Ffuncall, and cause a GC. */
161 list
= encoded_directory
= dirfilename
= Qnil
;
162 GCPRO5 (match
, directory
, list
, dirfilename
, encoded_directory
);
163 dirfilename
= Fdirectory_file_name (directory
);
167 CHECK_STRING (match
);
169 /* MATCH might be a flawed regular expression. Rather than
170 catching and signaling our own errors, we just call
171 compile_pattern to do the work for us. */
172 /* Pass 1 for the MULTIBYTE arg
173 because we do make multibyte strings if the contents warrant. */
175 /* Windows users want case-insensitive wildcards. */
176 bufp
= compile_pattern (match
, 0,
177 BVAR (&buffer_defaults
, case_canon_table
), 0, 1);
178 # else /* !WINDOWSNT */
179 bufp
= compile_pattern (match
, 0, Qnil
, 0, 1);
180 # endif /* !WINDOWSNT */
183 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
184 run_pre_post_conversion_on_str which calls Lisp directly and
186 if (STRING_MULTIBYTE (dirfilename
))
187 dirfilename
= ENCODE_FILE (dirfilename
);
188 encoded_directory
= (STRING_MULTIBYTE (directory
)
189 ? ENCODE_FILE (directory
) : directory
);
191 /* Now *bufp is the compiled form of MATCH; don't call anything
192 which might compile a new regexp until we're done with the loop! */
194 d
= open_directory (SSDATA (dirfilename
), &fd
);
196 report_file_error ("Opening directory", directory
);
198 /* Unfortunately, we can now invoke expand-file-name and
199 file-attributes on filenames, both of which can throw, so we must
200 do a proper unwind-protect. */
201 record_unwind_protect_ptr (directory_files_internal_unwind
, d
);
206 extern int is_slow_fs (const char *);
208 /* Do this only once to avoid doing it (in w32.c:stat) for each
209 file in the directory, when we call Ffile_attributes below. */
210 record_unwind_protect (directory_files_internal_w32_unwind
,
211 Vw32_get_true_file_attributes
);
212 w32_save
= Vw32_get_true_file_attributes
;
213 if (EQ (Vw32_get_true_file_attributes
, Qlocal
))
215 /* w32.c:stat will notice these bindings and avoid calling
216 GetDriveType for each file. */
217 if (is_slow_fs (SDATA (dirfilename
)))
218 Vw32_get_true_file_attributes
= Qnil
;
220 Vw32_get_true_file_attributes
= Qt
;
225 directory_nbytes
= SBYTES (directory
);
226 re_match_object
= Qt
;
228 /* Decide whether we need to add a directory separator. */
229 if (directory_nbytes
== 0
230 || !IS_ANY_SEP (SREF (directory
, directory_nbytes
- 1)))
233 /* Loop reading blocks until EOF or error. */
238 Lisp_Object name
, finalname
;
239 struct gcpro gcpro1
, gcpro2
;
245 if (errno
== EAGAIN
|| errno
== EINTR
)
253 len
= dirent_namelen (dp
);
254 name
= finalname
= make_unibyte_string (dp
->d_name
, len
);
255 GCPRO2 (finalname
, name
);
257 /* Note: DECODE_FILE can GC; it should protect its argument,
259 name
= DECODE_FILE (name
);
262 /* Now that we have unwind_protect in place, we might as well
263 allow matching to be interrupted. */
268 || re_search (bufp
, SSDATA (name
), len
, 0, len
, 0) >= 0)
277 Lisp_Object fullname
;
278 ptrdiff_t nbytes
= len
+ directory_nbytes
+ needsep
;
281 fullname
= make_uninit_multibyte_string (nbytes
, nbytes
);
282 memcpy (SDATA (fullname
), SDATA (directory
),
286 SSET (fullname
, directory_nbytes
, DIRECTORY_SEP
);
288 memcpy (SDATA (fullname
) + directory_nbytes
+ needsep
,
291 nchars
= multibyte_chars_in_text (SDATA (fullname
), nbytes
);
293 /* Some bug somewhere. */
297 STRING_SET_CHARS (fullname
, nchars
);
298 if (nchars
== nbytes
)
299 STRING_SET_UNIBYTE (fullname
);
301 finalname
= fullname
;
308 Lisp_Object fileattrs
309 = file_attributes (fd
, dp
->d_name
, id_format
);
310 list
= Fcons (Fcons (finalname
, fileattrs
), list
);
313 list
= Fcons (finalname
, list
);
324 Vw32_get_true_file_attributes
= w32_save
;
327 /* Discard the unwind protect. */
328 specpdl_ptr
= specpdl
+ count
;
331 list
= Fsort (Fnreverse (list
),
332 attrs
? Qfile_attributes_lessp
: Qstring_lessp
);
334 (void) directory_volatile
;
335 RETURN_UNGCPRO (list
);
339 DEFUN ("directory-files", Fdirectory_files
, Sdirectory_files
, 1, 4, 0,
340 doc
: /* Return a list of names of files in DIRECTORY.
341 There are three optional arguments:
342 If FULL is non-nil, return absolute file names. Otherwise return names
343 that are relative to the specified directory.
344 If MATCH is non-nil, mention only file names that match the regexp MATCH.
345 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
346 Otherwise, the list returned is sorted with `string-lessp'.
347 NOSORT is useful if you plan to sort the result yourself. */)
348 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
)
351 directory
= Fexpand_file_name (directory
, Qnil
);
353 /* If the file name has special constructs in it,
354 call the corresponding file handler. */
355 handler
= Ffind_file_name_handler (directory
, Qdirectory_files
);
357 return call5 (handler
, Qdirectory_files
, directory
,
358 full
, match
, nosort
);
360 return directory_files_internal (directory
, full
, match
, nosort
, 0, Qnil
);
363 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes
,
364 Sdirectory_files_and_attributes
, 1, 5, 0,
365 doc
: /* Return a list of names of files and their attributes in DIRECTORY.
366 There are four optional arguments:
367 If FULL is non-nil, return absolute file names. Otherwise return names
368 that are relative to the specified directory.
369 If MATCH is non-nil, mention only file names that match the regexp MATCH.
370 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
371 NOSORT is useful if you plan to sort the result yourself.
372 ID-FORMAT specifies the preferred format of attributes uid and gid, see
373 `file-attributes' for further documentation.
374 On MS-Windows, performance depends on `w32-get-true-file-attributes',
376 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
, Lisp_Object id_format
)
379 directory
= Fexpand_file_name (directory
, Qnil
);
381 /* If the file name has special constructs in it,
382 call the corresponding file handler. */
383 handler
= Ffind_file_name_handler (directory
, Qdirectory_files_and_attributes
);
385 return call6 (handler
, Qdirectory_files_and_attributes
,
386 directory
, full
, match
, nosort
, id_format
);
388 return directory_files_internal (directory
, full
, match
, nosort
, 1, id_format
);
392 static Lisp_Object
file_name_completion (Lisp_Object
, Lisp_Object
, bool,
395 DEFUN ("file-name-completion", Ffile_name_completion
, Sfile_name_completion
,
397 doc
: /* Complete file name FILE in directory DIRECTORY.
398 Returns the longest string
399 common to all file names in DIRECTORY that start with FILE.
400 If there is only one and FILE matches it exactly, returns t.
401 Returns nil if DIRECTORY contains no name starting with FILE.
403 If PREDICATE is non-nil, call PREDICATE with each possible
404 completion (in absolute form) and ignore it if PREDICATE returns nil.
406 This function ignores some of the possible completions as
407 determined by the variable `completion-ignored-extensions', which see. */)
408 (Lisp_Object file
, Lisp_Object directory
, Lisp_Object predicate
)
411 directory
= Fexpand_file_name (directory
, Qnil
);
413 /* If the directory name has special constructs in it,
414 call the corresponding file handler. */
415 handler
= Ffind_file_name_handler (directory
, Qfile_name_completion
);
417 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
419 /* If the file name has special constructs in it,
420 call the corresponding file handler. */
421 handler
= Ffind_file_name_handler (file
, Qfile_name_completion
);
423 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
425 return file_name_completion (file
, directory
, 0, predicate
);
428 DEFUN ("file-name-all-completions", Ffile_name_all_completions
,
429 Sfile_name_all_completions
, 2, 2, 0,
430 doc
: /* Return a list of all completions of file name FILE in directory DIRECTORY.
431 These are all file names in directory DIRECTORY which begin with FILE. */)
432 (Lisp_Object file
, Lisp_Object directory
)
435 directory
= Fexpand_file_name (directory
, Qnil
);
437 /* If the directory name has special constructs in it,
438 call the corresponding file handler. */
439 handler
= Ffind_file_name_handler (directory
, Qfile_name_all_completions
);
441 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
443 /* If the file name has special constructs in it,
444 call the corresponding file handler. */
445 handler
= Ffind_file_name_handler (file
, Qfile_name_all_completions
);
447 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
449 return file_name_completion (file
, directory
, 1, Qnil
);
452 static int file_name_completion_stat (int, struct dirent
*, struct stat
*);
453 static Lisp_Object Qdefault_directory
;
456 file_name_completion (Lisp_Object file
, Lisp_Object dirname
, bool all_flag
,
457 Lisp_Object predicate
)
461 ptrdiff_t bestmatchsize
= 0;
463 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
464 If ALL_FLAG is 0, BESTMATCH is either nil
465 or the best match so far, not decoded. */
466 Lisp_Object bestmatch
, tem
, elt
, name
;
467 Lisp_Object encoded_file
;
468 Lisp_Object encoded_dir
;
471 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
472 well as "." and "..". Until shown otherwise, assume we can't exclude
475 ptrdiff_t count
= SPECPDL_INDEX ();
476 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
483 encoded_file
= encoded_dir
= Qnil
;
484 GCPRO5 (file
, dirname
, bestmatch
, encoded_file
, encoded_dir
);
485 specbind (Qdefault_directory
, dirname
);
487 /* Do completion on the encoded file name
488 because the other names in the directory are (we presume)
489 encoded likewise. We decode the completed string at the end. */
490 /* Actually, this is not quite true any more: we do most of the completion
491 work with decoded file names, but we still do some filtering based
492 on the encoded file name. */
493 encoded_file
= STRING_MULTIBYTE (file
) ? ENCODE_FILE (file
) : file
;
495 encoded_dir
= ENCODE_FILE (Fdirectory_file_name (dirname
));
497 d
= open_directory (SSDATA (encoded_dir
), &fd
);
499 report_file_error ("Opening directory", dirname
);
501 record_unwind_protect_ptr (directory_files_internal_unwind
, d
);
503 /* Loop reading blocks */
504 /* (att3b compiler bug requires do a null comparison this way) */
515 if (errno
== EAGAIN
|| errno
== EINTR
)
523 len
= dirent_namelen (dp
);
526 if (len
< SCHARS (encoded_file
)
527 || (scmp (dp
->d_name
, SSDATA (encoded_file
),
528 SCHARS (encoded_file
))
532 if (file_name_completion_stat (fd
, dp
, &st
) < 0)
535 directoryp
= S_ISDIR (st
.st_mode
) != 0;
537 /* If all_flag is set, always include all.
538 It would not actually be helpful to the user to ignore any possible
539 completions when making a list of them. */
544 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
545 /* If this entry matches the current bestmatch, the only
546 thing it can do is increase matchcount, so don't bother
547 investigating it any further. */
548 if (!completion_ignore_case
549 /* The return result depends on whether it's the sole match. */
551 && !includeall
/* This match may allow includeall to 0. */
552 && len
>= bestmatchsize
553 && 0 > scmp (dp
->d_name
, SSDATA (bestmatch
), bestmatchsize
))
559 #ifndef TRIVIAL_DIRECTORY_ENTRY
560 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
562 /* "." and ".." are never interesting as completions, and are
563 actually in the way in a directory with only one file. */
564 if (TRIVIAL_DIRECTORY_ENTRY (dp
->d_name
))
566 else if (len
> SCHARS (encoded_file
))
567 /* Ignore directories if they match an element of
568 completion-ignored-extensions which ends in a slash. */
569 for (tem
= Vcompletion_ignored_extensions
;
570 CONSP (tem
); tem
= XCDR (tem
))
578 /* Need to encode ELT, since scmp compares unibyte
580 elt
= ENCODE_FILE (elt
);
581 elt_len
= SCHARS (elt
) - 1; /* -1 for trailing / */
585 if (p1
[elt_len
] != '/')
587 skip
= len
- elt_len
;
591 if (scmp (dp
->d_name
+ skip
, p1
, elt_len
) >= 0)
598 /* Compare extensions-to-be-ignored against end of this file name */
599 /* if name is not an exact match against specified string */
600 if (len
> SCHARS (encoded_file
))
601 /* and exit this for loop if a match is found */
602 for (tem
= Vcompletion_ignored_extensions
;
603 CONSP (tem
); tem
= XCDR (tem
))
606 if (!STRINGP (elt
)) continue;
607 /* Need to encode ELT, since scmp compares unibyte
609 elt
= ENCODE_FILE (elt
);
610 skip
= len
- SCHARS (elt
);
611 if (skip
< 0) continue;
613 if (scmp (dp
->d_name
+ skip
, SSDATA (elt
), SCHARS (elt
))
620 /* If an ignored-extensions match was found,
621 don't process this name as a completion. */
625 if (!includeall
&& canexclude
)
626 /* We're not including all files and this file can be excluded. */
629 if (includeall
&& !canexclude
)
630 { /* If we have one non-excludable file, we want to exclude the
633 /* Throw away any previous excludable match found. */
639 /* FIXME: If we move this `decode' earlier we can eliminate
640 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
641 name
= make_unibyte_string (dp
->d_name
, len
);
642 name
= DECODE_FILE (name
);
647 /* Ignore this element if it fails to match all the regexps. */
648 if (completion_ignore_case
)
650 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
651 regexps
= XCDR (regexps
))
652 if (fast_string_match_ignore_case (XCAR (regexps
), name
) < 0)
657 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
658 regexps
= XCDR (regexps
))
659 if (fast_string_match (XCAR (regexps
), name
) < 0)
667 /* This is a possible completion */
669 /* This completion is a directory; make it end with '/'. */
670 name
= Ffile_name_as_directory (name
);
672 /* Test the predicate, if any. */
673 if (!NILP (predicate
))
679 val
= call1 (predicate
, name
);
686 /* Suitably record this match. */
688 matchcount
+= matchcount
<= 1;
691 bestmatch
= Fcons (name
, bestmatch
);
692 else if (NILP (bestmatch
))
695 bestmatchsize
= SCHARS (name
);
699 Lisp_Object zero
= make_number (0);
700 /* FIXME: This is a copy of the code in Ftry_completion. */
701 ptrdiff_t compare
= min (bestmatchsize
, SCHARS (name
));
703 = Fcompare_strings (bestmatch
, zero
,
704 make_number (compare
),
706 make_number (compare
),
707 completion_ignore_case
? Qt
: Qnil
);
708 ptrdiff_t matchsize
= EQ (cmp
, Qt
) ? compare
: eabs (XINT (cmp
)) - 1;
710 if (completion_ignore_case
)
712 /* If this is an exact match except for case,
713 use it as the best match rather than one that is not
714 an exact match. This way, we get the case pattern
715 of the actual match. */
716 /* This tests that the current file is an exact match
717 but BESTMATCH is not (it is too long). */
718 if ((matchsize
== SCHARS (name
)
719 && matchsize
+ directoryp
< SCHARS (bestmatch
))
721 /* If there is no exact match ignoring case,
722 prefer a match that does not change the case
724 /* If there is more than one exact match aside from
725 case, and one of them is exact including case,
727 /* This == checks that, of current file and BESTMATCH,
728 either both or neither are exact. */
729 (((matchsize
== SCHARS (name
))
731 (matchsize
+ directoryp
== SCHARS (bestmatch
)))
732 && (cmp
= Fcompare_strings (name
, zero
,
733 make_number (SCHARS (file
)),
738 && (cmp
= Fcompare_strings (bestmatch
, zero
,
739 make_number (SCHARS (file
)),
746 bestmatchsize
= matchsize
;
748 /* If the best completion so far is reduced to the string
749 we're trying to complete, then we already know there's no
750 other completion, so there's no point looking any further. */
751 if (matchsize
<= SCHARS (file
)
752 && !includeall
/* A future match may allow includeall to 0. */
753 /* If completion-ignore-case is non-nil, don't
754 short-circuit because we want to find the best
755 possible match *including* case differences. */
756 && (!completion_ignore_case
|| matchsize
== 0)
757 /* The return value depends on whether it's the sole match. */
765 /* This closes the directory. */
766 bestmatch
= unbind_to (count
, bestmatch
);
768 if (all_flag
|| NILP (bestmatch
))
770 /* Return t if the supplied string is an exact match (counting case);
771 it does not require any change to be made. */
772 if (matchcount
== 1 && !NILP (Fequal (bestmatch
, file
)))
774 bestmatch
= Fsubstring (bestmatch
, make_number (0),
775 make_number (bestmatchsize
));
779 /* Compare exactly LEN chars of strings at S1 and S2,
780 ignoring case if appropriate.
781 Return -1 if strings match,
782 else number of chars that match at the beginning. */
785 scmp (const char *s1
, const char *s2
, ptrdiff_t len
)
787 register ptrdiff_t l
= len
;
789 if (completion_ignore_case
)
792 && (downcase ((unsigned char) *s1
++)
793 == downcase ((unsigned char) *s2
++)))
798 while (l
&& *s1
++ == *s2
++)
808 file_name_completion_stat (int fd
, struct dirent
*dp
, struct stat
*st_addr
)
813 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
814 but aren't required here. Avoid computing the following fields:
815 st_inode, st_size and st_nlink for directories, and the execute bits
816 in st_mode for non-directory files with non-standard extensions. */
818 unsigned short save_djstat_flags
= _djstat_flags
;
820 _djstat_flags
= _STAT_INODE
| _STAT_EXEC_MAGIC
| _STAT_DIRSIZE
;
823 /* We want to return success if a link points to a nonexistent file,
824 but we want to return the status for what the link points to,
825 in case it is a directory. */
826 value
= fstatat (fd
, dp
->d_name
, st_addr
, AT_SYMLINK_NOFOLLOW
);
827 if (value
== 0 && S_ISLNK (st_addr
->st_mode
))
828 fstatat (fd
, dp
->d_name
, st_addr
, 0);
830 _djstat_flags
= save_djstat_flags
;
836 stat_uname (struct stat
*st
)
841 struct passwd
*pw
= getpwuid (st
->st_uid
);
851 stat_gname (struct stat
*st
)
856 struct group
*gr
= getgrgid (st
->st_gid
);
865 DEFUN ("file-attributes", Ffile_attributes
, Sfile_attributes
, 1, 2, 0,
866 doc
: /* Return a list of attributes of file FILENAME.
867 Value is nil if specified file cannot be opened.
869 ID-FORMAT specifies the preferred format of attributes uid and gid (see
870 below) - valid values are 'string and 'integer. The latter is the
871 default, but we plan to change that, so you should specify a non-nil value
872 for ID-FORMAT if you use the returned uid or gid.
874 Elements of the attribute list are:
875 0. t for directory, string (name linked to) for symbolic link, or nil.
876 1. Number of links to file.
877 2. File uid as a string or a number. If a string value cannot be
878 looked up, a numeric value, either an integer or a float, is returned.
879 3. File gid, likewise.
880 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
881 same style as (current-time).
882 (See a note below about access time on FAT-based filesystems.)
883 5. Last modification time, likewise. This is the time of the last
884 change to the file's contents.
885 6. Last status change time, likewise. This is the time of last change
886 to the file's attributes: owner and group, access mode bits, etc.
888 This is a floating point number if the size is too large for an integer.
889 8. File modes, as a string of ten letters or dashes as in ls -l.
890 9. An unspecified value, present only for backward compatibility.
891 10. inode number. If it is larger than what an Emacs integer can hold,
892 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
893 If even HIGH is too large for an Emacs integer, this is instead of the form
894 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
895 and finally the low 16 bits.
896 11. Filesystem device number. If it is larger than what the Emacs
897 integer can hold, this is a cons cell, similar to the inode number.
899 On most filesystems, the combination of the inode and the device
900 number uniquely identifies the file.
902 On MS-Windows, performance depends on `w32-get-true-file-attributes',
905 On some FAT-based filesystems, only the date of last access is recorded,
906 so last access time will always be midnight of that day. */)
907 (Lisp_Object filename
, Lisp_Object id_format
)
912 filename
= internal_condition_case_2 (Fexpand_file_name
, filename
, Qnil
,
914 if (!STRINGP (filename
))
917 /* If the file name has special constructs in it,
918 call the corresponding file handler. */
919 handler
= Ffind_file_name_handler (filename
, Qfile_attributes
);
921 { /* Only pass the extra arg if it is used to help backward compatibility
922 with old file handlers which do not implement the new arg. --Stef */
923 if (NILP (id_format
))
924 return call2 (handler
, Qfile_attributes
, filename
);
926 return call3 (handler
, Qfile_attributes
, filename
, id_format
);
929 encoded
= ENCODE_FILE (filename
);
930 return file_attributes (AT_FDCWD
, SSDATA (encoded
), id_format
);
934 file_attributes (int fd
, char const *name
, Lisp_Object id_format
)
936 Lisp_Object values
[12];
940 /* An array to hold the mode string generated by filemodestring,
941 including its terminating space and null byte. */
942 char modes
[sizeof "-rwxr-xr-x "];
944 char *uname
= NULL
, *gname
= NULL
;
947 /* We usually don't request accurate owner and group info, because
948 it can be very expensive on Windows to get that, and most callers
949 of 'lstat' don't need that. But here we do want that information
951 w32_stat_get_owner_group
= 1;
954 lstat_result
= fstatat (fd
, name
, &s
, AT_SYMLINK_NOFOLLOW
);
957 w32_stat_get_owner_group
= 0;
960 if (lstat_result
< 0)
963 values
[0] = (S_ISLNK (s
.st_mode
) ? emacs_readlinkat (fd
, name
)
964 : S_ISDIR (s
.st_mode
) ? Qt
: Qnil
);
965 values
[1] = make_number (s
.st_nlink
);
967 if (!(NILP (id_format
) || EQ (id_format
, Qinteger
)))
970 uname
= stat_uname (&s
);
971 gname
= stat_gname (&s
);
975 values
[2] = DECODE_SYSTEM (build_unibyte_string (uname
));
977 values
[2] = make_fixnum_or_float (s
.st_uid
);
979 values
[3] = DECODE_SYSTEM (build_unibyte_string (gname
));
981 values
[3] = make_fixnum_or_float (s
.st_gid
);
983 values
[4] = make_lisp_time (get_stat_atime (&s
));
984 values
[5] = make_lisp_time (get_stat_mtime (&s
));
985 values
[6] = make_lisp_time (get_stat_ctime (&s
));
987 /* If the file size is a 4-byte type, assume that files of sizes in
988 the 2-4 GiB range wrap around to negative values, as this is a
989 common bug on older 32-bit platforms. */
990 if (sizeof (s
.st_size
) == 4)
991 values
[7] = make_fixnum_or_float (s
.st_size
& 0xffffffffu
);
993 values
[7] = make_fixnum_or_float (s
.st_size
);
995 filemodestring (&s
, modes
);
996 values
[8] = make_string (modes
, 10);
998 values
[10] = INTEGER_TO_CONS (s
.st_ino
);
999 values
[11] = INTEGER_TO_CONS (s
.st_dev
);
1001 return Flist (sizeof (values
) / sizeof (values
[0]), values
);
1004 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp
, Sfile_attributes_lessp
, 2, 2, 0,
1005 doc
: /* Return t if first arg file attributes list is less than second.
1006 Comparison is in lexicographic order and case is significant. */)
1007 (Lisp_Object f1
, Lisp_Object f2
)
1009 return Fstring_lessp (Fcar (f1
), Fcar (f2
));
1013 DEFUN ("system-users", Fsystem_users
, Ssystem_users
, 0, 0, 0,
1014 doc
: /* Return a list of user names currently registered in the system.
1015 If we don't know how to determine that on this platform, just
1016 return a list with one element, taken from `user-real-login-name'. */)
1019 Lisp_Object users
= Qnil
;
1020 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1023 while ((pw
= getpwent ()))
1024 users
= Fcons (DECODE_SYSTEM (build_string (pw
->pw_name
)), users
);
1028 if (EQ (users
, Qnil
))
1029 /* At least current user is always known. */
1030 users
= list1 (Vuser_real_login_name
);
1034 DEFUN ("system-groups", Fsystem_groups
, Ssystem_groups
, 0, 0, 0,
1035 doc
: /* Return a list of user group names currently registered in the system.
1036 The value may be nil if not supported on this platform. */)
1039 Lisp_Object groups
= Qnil
;
1040 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1043 while ((gr
= getgrent ()))
1044 groups
= Fcons (DECODE_SYSTEM (build_string (gr
->gr_name
)), groups
);
1052 syms_of_dired (void)
1054 DEFSYM (Qdirectory_files
, "directory-files");
1055 DEFSYM (Qdirectory_files_and_attributes
, "directory-files-and-attributes");
1056 DEFSYM (Qfile_name_completion
, "file-name-completion");
1057 DEFSYM (Qfile_name_all_completions
, "file-name-all-completions");
1058 DEFSYM (Qfile_attributes
, "file-attributes");
1059 DEFSYM (Qfile_attributes_lessp
, "file-attributes-lessp");
1060 DEFSYM (Qdefault_directory
, "default-directory");
1062 defsubr (&Sdirectory_files
);
1063 defsubr (&Sdirectory_files_and_attributes
);
1064 defsubr (&Sfile_name_completion
);
1065 defsubr (&Sfile_name_all_completions
);
1066 defsubr (&Sfile_attributes
);
1067 defsubr (&Sfile_attributes_lessp
);
1068 defsubr (&Ssystem_users
);
1069 defsubr (&Ssystem_groups
);
1071 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions
,
1072 doc
: /* Completion ignores file names ending in any string in this list.
1073 It does not ignore them if all possible completions end in one of
1074 these strings or when displaying a list of completions.
1075 It ignores directory names if they match any string in this list which
1076 ends in a slash. */);
1077 Vcompletion_ignored_extensions
= Qnil
;