1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2013 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"
50 static Lisp_Object Qdirectory_files
;
51 static Lisp_Object Qdirectory_files_and_attributes
;
52 static Lisp_Object Qfile_name_completion
;
53 static Lisp_Object Qfile_name_all_completions
;
54 static Lisp_Object Qfile_attributes
;
55 static Lisp_Object Qfile_attributes_lessp
;
57 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
58 static Lisp_Object
file_attributes (int, char const *, Lisp_Object
);
60 /* Return the number of bytes in DP's name. */
62 dirent_namelen (struct dirent
*dp
)
64 #ifdef _D_EXACT_NAMLEN
65 return _D_EXACT_NAMLEN (dp
);
67 return strlen (dp
->d_name
);
72 open_directory (char const *name
, int *fdp
)
75 int fd
, opendir_errno
;
80 /* Directories cannot be opened. The emulation assumes that any
81 file descriptor other than AT_FDCWD corresponds to the most
82 recently opened directory. This hack is good enough for Emacs. */
85 opendir_errno
= errno
;
87 fd
= emacs_open (name
, O_RDONLY
| O_DIRECTORY
, 0);
90 opendir_errno
= errno
;
96 opendir_errno
= errno
;
105 errno
= opendir_errno
;
111 directory_files_internal_w32_unwind (Lisp_Object arg
)
113 Vw32_get_true_file_attributes
= arg
;
119 directory_files_internal_unwind (Lisp_Object dh
)
121 DIR *d
= XSAVE_POINTER (dh
, 0);
128 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
129 If not ATTRS, return a list of directory filenames;
130 if ATTRS, return a list of directory filenames and their attributes.
131 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
134 directory_files_internal (Lisp_Object directory
, Lisp_Object full
,
135 Lisp_Object match
, Lisp_Object nosort
, bool attrs
,
136 Lisp_Object id_format
)
140 ptrdiff_t directory_nbytes
;
141 Lisp_Object list
, dirfilename
, encoded_directory
;
142 struct re_pattern_buffer
*bufp
= NULL
;
144 ptrdiff_t count
= SPECPDL_INDEX ();
145 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
148 Lisp_Object w32_save
= Qnil
;
151 /* Because of file name handlers, these functions might call
152 Ffuncall, and cause a GC. */
153 list
= encoded_directory
= dirfilename
= Qnil
;
154 GCPRO5 (match
, directory
, list
, dirfilename
, encoded_directory
);
155 dirfilename
= Fdirectory_file_name (directory
);
159 CHECK_STRING (match
);
161 /* MATCH might be a flawed regular expression. Rather than
162 catching and signaling our own errors, we just call
163 compile_pattern to do the work for us. */
164 /* Pass 1 for the MULTIBYTE arg
165 because we do make multibyte strings if the contents warrant. */
167 /* Windows users want case-insensitive wildcards. */
168 bufp
= compile_pattern (match
, 0,
169 BVAR (&buffer_defaults
, case_canon_table
), 0, 1);
170 # else /* !WINDOWSNT */
171 bufp
= compile_pattern (match
, 0, Qnil
, 0, 1);
172 # endif /* !WINDOWSNT */
175 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
176 run_pre_post_conversion_on_str which calls Lisp directly and
178 if (STRING_MULTIBYTE (dirfilename
))
179 dirfilename
= ENCODE_FILE (dirfilename
);
180 encoded_directory
= (STRING_MULTIBYTE (directory
)
181 ? ENCODE_FILE (directory
) : directory
);
183 /* Now *bufp is the compiled form of MATCH; don't call anything
184 which might compile a new regexp until we're done with the loop! */
186 d
= open_directory (SSDATA (dirfilename
), &fd
);
188 report_file_error ("Opening directory", Fcons (directory
, Qnil
));
190 /* Unfortunately, we can now invoke expand-file-name and
191 file-attributes on filenames, both of which can throw, so we must
192 do a proper unwind-protect. */
193 record_unwind_protect (directory_files_internal_unwind
,
194 make_save_pointer (d
));
199 extern int is_slow_fs (const char *);
201 /* Do this only once to avoid doing it (in w32.c:stat) for each
202 file in the directory, when we call Ffile_attributes below. */
203 record_unwind_protect (directory_files_internal_w32_unwind
,
204 Vw32_get_true_file_attributes
);
205 w32_save
= Vw32_get_true_file_attributes
;
206 if (EQ (Vw32_get_true_file_attributes
, Qlocal
))
208 /* w32.c:stat will notice these bindings and avoid calling
209 GetDriveType for each file. */
210 if (is_slow_fs (SDATA (dirfilename
)))
211 Vw32_get_true_file_attributes
= Qnil
;
213 Vw32_get_true_file_attributes
= Qt
;
218 directory_nbytes
= SBYTES (directory
);
219 re_match_object
= Qt
;
221 /* Decide whether we need to add a directory separator. */
222 if (directory_nbytes
== 0
223 || !IS_ANY_SEP (SREF (directory
, directory_nbytes
- 1)))
226 /* Loop reading blocks until EOF or error. */
231 Lisp_Object name
, finalname
;
232 struct gcpro gcpro1
, gcpro2
;
238 if (errno
== EAGAIN
|| errno
== EINTR
)
246 len
= dirent_namelen (dp
);
247 name
= finalname
= make_unibyte_string (dp
->d_name
, len
);
248 GCPRO2 (finalname
, name
);
250 /* Note: DECODE_FILE can GC; it should protect its argument,
252 name
= DECODE_FILE (name
);
255 /* Now that we have unwind_protect in place, we might as well
256 allow matching to be interrupted. */
261 || (0 <= re_search (bufp
, SSDATA (name
), len
, 0, len
, 0)))
270 Lisp_Object fullname
;
271 ptrdiff_t nbytes
= len
+ directory_nbytes
+ needsep
;
274 fullname
= make_uninit_multibyte_string (nbytes
, nbytes
);
275 memcpy (SDATA (fullname
), SDATA (directory
),
279 SSET (fullname
, directory_nbytes
, DIRECTORY_SEP
);
281 memcpy (SDATA (fullname
) + directory_nbytes
+ needsep
,
284 nchars
= chars_in_text (SDATA (fullname
), nbytes
);
286 /* Some bug somewhere. */
290 STRING_SET_CHARS (fullname
, nchars
);
291 if (nchars
== nbytes
)
292 STRING_SET_UNIBYTE (fullname
);
294 finalname
= fullname
;
301 Lisp_Object fileattrs
302 = file_attributes (fd
, dp
->d_name
, id_format
);
303 list
= Fcons (Fcons (finalname
, fileattrs
), list
);
306 list
= Fcons (finalname
, list
);
317 Vw32_get_true_file_attributes
= w32_save
;
320 /* Discard the unwind protect. */
321 specpdl_ptr
= specpdl
+ count
;
324 list
= Fsort (Fnreverse (list
),
325 attrs
? Qfile_attributes_lessp
: Qstring_lessp
);
327 RETURN_UNGCPRO (list
);
331 DEFUN ("directory-files", Fdirectory_files
, Sdirectory_files
, 1, 4, 0,
332 doc
: /* Return a list of names of files in DIRECTORY.
333 There are three optional arguments:
334 If FULL is non-nil, return absolute file names. Otherwise return names
335 that are relative to the specified directory.
336 If MATCH is non-nil, mention only file names that match the regexp MATCH.
337 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
338 Otherwise, the list returned is sorted with `string-lessp'.
339 NOSORT is useful if you plan to sort the result yourself. */)
340 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
)
343 directory
= Fexpand_file_name (directory
, Qnil
);
345 /* If the file name has special constructs in it,
346 call the corresponding file handler. */
347 handler
= Ffind_file_name_handler (directory
, Qdirectory_files
);
349 return call5 (handler
, Qdirectory_files
, directory
,
350 full
, match
, nosort
);
352 return directory_files_internal (directory
, full
, match
, nosort
, 0, Qnil
);
355 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes
,
356 Sdirectory_files_and_attributes
, 1, 5, 0,
357 doc
: /* Return a list of names of files and their attributes in DIRECTORY.
358 There are four optional arguments:
359 If FULL is non-nil, return absolute file names. Otherwise return names
360 that are relative to the specified directory.
361 If MATCH is non-nil, mention only file names that match the regexp MATCH.
362 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
363 NOSORT is useful if you plan to sort the result yourself.
364 ID-FORMAT specifies the preferred format of attributes uid and gid, see
365 `file-attributes' for further documentation.
366 On MS-Windows, performance depends on `w32-get-true-file-attributes',
368 (Lisp_Object directory
, Lisp_Object full
, Lisp_Object match
, Lisp_Object nosort
, Lisp_Object id_format
)
371 directory
= Fexpand_file_name (directory
, Qnil
);
373 /* If the file name has special constructs in it,
374 call the corresponding file handler. */
375 handler
= Ffind_file_name_handler (directory
, Qdirectory_files_and_attributes
);
377 return call6 (handler
, Qdirectory_files_and_attributes
,
378 directory
, full
, match
, nosort
, id_format
);
380 return directory_files_internal (directory
, full
, match
, nosort
, 1, id_format
);
384 static Lisp_Object
file_name_completion (Lisp_Object
, Lisp_Object
, bool,
387 DEFUN ("file-name-completion", Ffile_name_completion
, Sfile_name_completion
,
389 doc
: /* Complete file name FILE in directory DIRECTORY.
390 Returns the longest string
391 common to all file names in DIRECTORY that start with FILE.
392 If there is only one and FILE matches it exactly, returns t.
393 Returns nil if DIRECTORY contains no name starting with FILE.
395 If PREDICATE is non-nil, call PREDICATE with each possible
396 completion (in absolute form) and ignore it if PREDICATE returns nil.
398 This function ignores some of the possible completions as
399 determined by the variable `completion-ignored-extensions', which see. */)
400 (Lisp_Object file
, Lisp_Object directory
, Lisp_Object predicate
)
403 directory
= Fexpand_file_name (directory
, Qnil
);
405 /* If the directory name has special constructs in it,
406 call the corresponding file handler. */
407 handler
= Ffind_file_name_handler (directory
, Qfile_name_completion
);
409 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
411 /* If the file name has special constructs in it,
412 call the corresponding file handler. */
413 handler
= Ffind_file_name_handler (file
, Qfile_name_completion
);
415 return call4 (handler
, Qfile_name_completion
, file
, directory
, predicate
);
417 return file_name_completion (file
, directory
, 0, predicate
);
420 DEFUN ("file-name-all-completions", Ffile_name_all_completions
,
421 Sfile_name_all_completions
, 2, 2, 0,
422 doc
: /* Return a list of all completions of file name FILE in directory DIRECTORY.
423 These are all file names in directory DIRECTORY which begin with FILE. */)
424 (Lisp_Object file
, Lisp_Object directory
)
427 directory
= Fexpand_file_name (directory
, Qnil
);
429 /* If the directory name has special constructs in it,
430 call the corresponding file handler. */
431 handler
= Ffind_file_name_handler (directory
, Qfile_name_all_completions
);
433 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
435 /* If the file name has special constructs in it,
436 call the corresponding file handler. */
437 handler
= Ffind_file_name_handler (file
, Qfile_name_all_completions
);
439 return call3 (handler
, Qfile_name_all_completions
, file
, directory
);
441 return file_name_completion (file
, directory
, 1, Qnil
);
444 static int file_name_completion_stat (int, struct dirent
*, struct stat
*);
445 static Lisp_Object Qdefault_directory
;
448 file_name_completion (Lisp_Object file
, Lisp_Object dirname
, bool all_flag
,
449 Lisp_Object predicate
)
453 ptrdiff_t bestmatchsize
= 0;
455 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
456 If ALL_FLAG is 0, BESTMATCH is either nil
457 or the best match so far, not decoded. */
458 Lisp_Object bestmatch
, tem
, elt
, name
;
459 Lisp_Object encoded_file
;
460 Lisp_Object encoded_dir
;
463 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
464 well as "." and "..". Until shown otherwise, assume we can't exclude
467 ptrdiff_t count
= SPECPDL_INDEX ();
468 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
475 encoded_file
= encoded_dir
= Qnil
;
476 GCPRO5 (file
, dirname
, bestmatch
, encoded_file
, encoded_dir
);
477 specbind (Qdefault_directory
, dirname
);
479 /* Do completion on the encoded file name
480 because the other names in the directory are (we presume)
481 encoded likewise. We decode the completed string at the end. */
482 /* Actually, this is not quite true any more: we do most of the completion
483 work with decoded file names, but we still do some filtering based
484 on the encoded file name. */
485 encoded_file
= STRING_MULTIBYTE (file
) ? ENCODE_FILE (file
) : file
;
487 encoded_dir
= ENCODE_FILE (dirname
);
489 d
= open_directory (SSDATA (Fdirectory_file_name (encoded_dir
)), &fd
);
491 report_file_error ("Opening directory", Fcons (dirname
, Qnil
));
493 record_unwind_protect (directory_files_internal_unwind
,
494 make_save_pointer (d
));
496 /* Loop reading blocks */
497 /* (att3b compiler bug requires do a null comparison this way) */
508 if (errno
== EAGAIN
|| errno
== EINTR
)
516 len
= dirent_namelen (dp
);
519 if (len
< SCHARS (encoded_file
)
520 || 0 <= scmp (dp
->d_name
, SSDATA (encoded_file
),
521 SCHARS (encoded_file
)))
524 if (file_name_completion_stat (fd
, dp
, &st
) < 0)
527 directoryp
= S_ISDIR (st
.st_mode
) != 0;
529 /* If all_flag is set, always include all.
530 It would not actually be helpful to the user to ignore any possible
531 completions when making a list of them. */
536 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
537 /* If this entry matches the current bestmatch, the only
538 thing it can do is increase matchcount, so don't bother
539 investigating it any further. */
540 if (!completion_ignore_case
541 /* The return result depends on whether it's the sole match. */
543 && !includeall
/* This match may allow includeall to 0. */
544 && len
>= bestmatchsize
545 && 0 > scmp (dp
->d_name
, SSDATA (bestmatch
), bestmatchsize
))
551 #ifndef TRIVIAL_DIRECTORY_ENTRY
552 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
554 /* "." and ".." are never interesting as completions, and are
555 actually in the way in a directory with only one file. */
556 if (TRIVIAL_DIRECTORY_ENTRY (dp
->d_name
))
558 else if (len
> SCHARS (encoded_file
))
559 /* Ignore directories if they match an element of
560 completion-ignored-extensions which ends in a slash. */
561 for (tem
= Vcompletion_ignored_extensions
;
562 CONSP (tem
); tem
= XCDR (tem
))
570 /* Need to encode ELT, since scmp compares unibyte
572 elt
= ENCODE_FILE (elt
);
573 elt_len
= SCHARS (elt
) - 1; /* -1 for trailing / */
577 if (p1
[elt_len
] != '/')
579 skip
= len
- elt_len
;
583 if (0 <= scmp (dp
->d_name
+ skip
, p1
, elt_len
))
590 /* Compare extensions-to-be-ignored against end of this file name */
591 /* if name is not an exact match against specified string */
592 if (len
> SCHARS (encoded_file
))
593 /* and exit this for loop if a match is found */
594 for (tem
= Vcompletion_ignored_extensions
;
595 CONSP (tem
); tem
= XCDR (tem
))
598 if (!STRINGP (elt
)) continue;
599 /* Need to encode ELT, since scmp compares unibyte
601 elt
= ENCODE_FILE (elt
);
602 skip
= len
- SCHARS (elt
);
603 if (skip
< 0) continue;
605 if (0 <= scmp (dp
->d_name
+ skip
,
613 /* If an ignored-extensions match was found,
614 don't process this name as a completion. */
618 if (!includeall
&& canexclude
)
619 /* We're not including all files and this file can be excluded. */
622 if (includeall
&& !canexclude
)
623 { /* If we have one non-excludable file, we want to exclude the
626 /* Throw away any previous excludable match found. */
632 /* FIXME: If we move this `decode' earlier we can eliminate
633 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
634 name
= make_unibyte_string (dp
->d_name
, len
);
635 name
= DECODE_FILE (name
);
640 /* Ignore this element if it fails to match all the regexps. */
641 if (completion_ignore_case
)
643 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
644 regexps
= XCDR (regexps
))
645 if (fast_string_match_ignore_case (XCAR (regexps
), name
) < 0)
650 for (regexps
= Vcompletion_regexp_list
; CONSP (regexps
);
651 regexps
= XCDR (regexps
))
652 if (fast_string_match (XCAR (regexps
), name
) < 0)
660 /* This is a possible completion */
662 /* This completion is a directory; make it end with '/'. */
663 name
= Ffile_name_as_directory (name
);
665 /* Test the predicate, if any. */
666 if (!NILP (predicate
))
672 val
= call1 (predicate
, name
);
679 /* Suitably record this match. */
681 matchcount
+= matchcount
<= 1;
684 bestmatch
= Fcons (name
, bestmatch
);
685 else if (NILP (bestmatch
))
688 bestmatchsize
= SCHARS (name
);
692 Lisp_Object zero
= make_number (0);
693 /* FIXME: This is a copy of the code in Ftry_completion. */
694 ptrdiff_t compare
= min (bestmatchsize
, SCHARS (name
));
696 = Fcompare_strings (bestmatch
, zero
,
697 make_number (compare
),
699 make_number (compare
),
700 completion_ignore_case
? Qt
: Qnil
);
701 ptrdiff_t matchsize
= EQ (cmp
, Qt
) ? compare
: eabs (XINT (cmp
)) - 1;
703 if (completion_ignore_case
)
705 /* If this is an exact match except for case,
706 use it as the best match rather than one that is not
707 an exact match. This way, we get the case pattern
708 of the actual match. */
709 /* This tests that the current file is an exact match
710 but BESTMATCH is not (it is too long). */
711 if ((matchsize
== SCHARS (name
)
712 && matchsize
+ directoryp
< SCHARS (bestmatch
))
714 /* If there is no exact match ignoring case,
715 prefer a match that does not change the case
717 /* If there is more than one exact match aside from
718 case, and one of them is exact including case,
720 /* This == checks that, of current file and BESTMATCH,
721 either both or neither are exact. */
722 (((matchsize
== SCHARS (name
))
724 (matchsize
+ directoryp
== SCHARS (bestmatch
)))
725 && (cmp
= Fcompare_strings (name
, zero
,
726 make_number (SCHARS (file
)),
731 && (cmp
= Fcompare_strings (bestmatch
, zero
,
732 make_number (SCHARS (file
)),
739 bestmatchsize
= matchsize
;
741 /* If the best completion so far is reduced to the string
742 we're trying to complete, then we already know there's no
743 other completion, so there's no point looking any further. */
744 if (matchsize
<= SCHARS (file
)
745 && !includeall
/* A future match may allow includeall to 0. */
746 /* If completion-ignore-case is non-nil, don't
747 short-circuit because we want to find the best
748 possible match *including* case differences. */
749 && (!completion_ignore_case
|| matchsize
== 0)
750 /* The return value depends on whether it's the sole match. */
758 /* This closes the directory. */
759 bestmatch
= unbind_to (count
, bestmatch
);
761 if (all_flag
|| NILP (bestmatch
))
763 /* Return t if the supplied string is an exact match (counting case);
764 it does not require any change to be made. */
765 if (matchcount
== 1 && !NILP (Fequal (bestmatch
, file
)))
767 bestmatch
= Fsubstring (bestmatch
, make_number (0),
768 make_number (bestmatchsize
));
772 /* Compare exactly LEN chars of strings at S1 and S2,
773 ignoring case if appropriate.
774 Return -1 if strings match,
775 else number of chars that match at the beginning. */
778 scmp (const char *s1
, const char *s2
, ptrdiff_t len
)
780 register ptrdiff_t l
= len
;
782 if (completion_ignore_case
)
785 && (downcase ((unsigned char) *s1
++)
786 == downcase ((unsigned char) *s2
++)))
791 while (l
&& *s1
++ == *s2
++)
801 file_name_completion_stat (int fd
, struct dirent
*dp
, struct stat
*st_addr
)
806 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
807 but aren't required here. Avoid computing the following fields:
808 st_inode, st_size and st_nlink for directories, and the execute bits
809 in st_mode for non-directory files with non-standard extensions. */
811 unsigned short save_djstat_flags
= _djstat_flags
;
813 _djstat_flags
= _STAT_INODE
| _STAT_EXEC_MAGIC
| _STAT_DIRSIZE
;
816 /* We want to return success if a link points to a nonexistent file,
817 but we want to return the status for what the link points to,
818 in case it is a directory. */
819 value
= fstatat (fd
, dp
->d_name
, st_addr
, AT_SYMLINK_NOFOLLOW
);
820 if (value
== 0 && S_ISLNK (st_addr
->st_mode
))
821 fstatat (fd
, dp
->d_name
, st_addr
, 0);
823 _djstat_flags
= save_djstat_flags
;
829 stat_uname (struct stat
*st
)
834 struct passwd
*pw
= getpwuid (st
->st_uid
);
844 stat_gname (struct stat
*st
)
849 struct group
*gr
= getgrgid (st
->st_gid
);
858 DEFUN ("file-attributes", Ffile_attributes
, Sfile_attributes
, 1, 2, 0,
859 doc
: /* Return a list of attributes of file FILENAME.
860 Value is nil if specified file cannot be opened.
862 ID-FORMAT specifies the preferred format of attributes uid and gid (see
863 below) - valid values are 'string and 'integer. The latter is the
864 default, but we plan to change that, so you should specify a non-nil value
865 for ID-FORMAT if you use the returned uid or gid.
867 Elements of the attribute list are:
868 0. t for directory, string (name linked to) for symbolic link, or nil.
869 1. Number of links to file.
870 2. File uid as a string or a number. If a string value cannot be
871 looked up, a numeric value, either an integer or a float, is returned.
872 3. File gid, likewise.
873 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
874 same style as (current-time).
875 (See a note below about access time on FAT-based filesystems.)
876 5. Last modification time, likewise. This is the time of the last
877 change to the file's contents.
878 6. Last status change time, likewise. This is the time of last change
879 to the file's attributes: owner and group, access mode bits, etc.
881 This is a floating point number if the size is too large for an integer.
882 8. File modes, as a string of ten letters or dashes as in ls -l.
883 9. An unspecified value, present only for backward compatibility.
884 10. inode number. If it is larger than what an Emacs integer can hold,
885 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
886 If even HIGH is too large for an Emacs integer, this is instead of the form
887 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
888 and finally the low 16 bits.
889 11. Filesystem device number. If it is larger than what the Emacs
890 integer can hold, this is a cons cell, similar to the inode number.
892 On most filesystems, the combination of the inode and the device
893 number uniquely identifies the file.
895 On MS-Windows, performance depends on `w32-get-true-file-attributes',
898 On some FAT-based filesystems, only the date of last access is recorded,
899 so last access time will always be midnight of that day. */)
900 (Lisp_Object filename
, Lisp_Object id_format
)
905 filename
= Fexpand_file_name (filename
, Qnil
);
907 /* If the file name has special constructs in it,
908 call the corresponding file handler. */
909 handler
= Ffind_file_name_handler (filename
, Qfile_attributes
);
911 { /* Only pass the extra arg if it is used to help backward compatibility
912 with old file handlers which do not implement the new arg. --Stef */
913 if (NILP (id_format
))
914 return call2 (handler
, Qfile_attributes
, filename
);
916 return call3 (handler
, Qfile_attributes
, filename
, id_format
);
919 encoded
= ENCODE_FILE (filename
);
920 return file_attributes (AT_FDCWD
, SSDATA (encoded
), id_format
);
924 file_attributes (int fd
, char const *name
, Lisp_Object id_format
)
926 Lisp_Object values
[12];
930 /* An array to hold the mode string generated by filemodestring,
931 including its terminating space and null byte. */
932 char modes
[sizeof "-rwxr-xr-x "];
934 char *uname
= NULL
, *gname
= NULL
;
937 /* We usually don't request accurate owner and group info, because
938 it can be very expensive on Windows to get that, and most callers
939 of 'lstat' don't need that. But here we do want that information
941 w32_stat_get_owner_group
= 1;
944 lstat_result
= fstatat (fd
, name
, &s
, AT_SYMLINK_NOFOLLOW
);
947 w32_stat_get_owner_group
= 0;
950 if (lstat_result
< 0)
953 values
[0] = (S_ISLNK (s
.st_mode
) ? emacs_readlinkat (fd
, name
)
954 : S_ISDIR (s
.st_mode
) ? Qt
: Qnil
);
955 values
[1] = make_number (s
.st_nlink
);
957 if (!(NILP (id_format
) || EQ (id_format
, Qinteger
)))
960 uname
= stat_uname (&s
);
961 gname
= stat_gname (&s
);
965 values
[2] = DECODE_SYSTEM (build_string (uname
));
967 values
[2] = make_fixnum_or_float (s
.st_uid
);
969 values
[3] = DECODE_SYSTEM (build_string (gname
));
971 values
[3] = make_fixnum_or_float (s
.st_gid
);
973 values
[4] = make_lisp_time (get_stat_atime (&s
));
974 values
[5] = make_lisp_time (get_stat_mtime (&s
));
975 values
[6] = make_lisp_time (get_stat_ctime (&s
));
977 /* If the file size is a 4-byte type, assume that files of sizes in
978 the 2-4 GiB range wrap around to negative values, as this is a
979 common bug on older 32-bit platforms. */
980 if (sizeof (s
.st_size
) == 4)
981 values
[7] = make_fixnum_or_float (s
.st_size
& 0xffffffffu
);
983 values
[7] = make_fixnum_or_float (s
.st_size
);
985 filemodestring (&s
, modes
);
986 values
[8] = make_string (modes
, 10);
988 values
[10] = INTEGER_TO_CONS (s
.st_ino
);
989 values
[11] = INTEGER_TO_CONS (s
.st_dev
);
991 return Flist (sizeof (values
) / sizeof (values
[0]), values
);
994 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp
, Sfile_attributes_lessp
, 2, 2, 0,
995 doc
: /* Return t if first arg file attributes list is less than second.
996 Comparison is in lexicographic order and case is significant. */)
997 (Lisp_Object f1
, Lisp_Object f2
)
999 return Fstring_lessp (Fcar (f1
), Fcar (f2
));
1003 DEFUN ("system-users", Fsystem_users
, Ssystem_users
, 0, 0, 0,
1004 doc
: /* Return a list of user names currently registered in the system.
1005 If we don't know how to determine that on this platform, just
1006 return a list with one element, taken from `user-real-login-name'. */)
1009 Lisp_Object users
= Qnil
;
1010 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1013 while ((pw
= getpwent ()))
1014 users
= Fcons (DECODE_SYSTEM (build_string (pw
->pw_name
)), users
);
1018 if (EQ (users
, Qnil
))
1019 /* At least current user is always known. */
1020 users
= Fcons (Vuser_real_login_name
, Qnil
);
1024 DEFUN ("system-groups", Fsystem_groups
, Ssystem_groups
, 0, 0, 0,
1025 doc
: /* Return a list of user group names currently registered in the system.
1026 The value may be nil if not supported on this platform. */)
1029 Lisp_Object groups
= Qnil
;
1030 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1033 while ((gr
= getgrent ()))
1034 groups
= Fcons (DECODE_SYSTEM (build_string (gr
->gr_name
)), groups
);
1042 syms_of_dired (void)
1044 DEFSYM (Qdirectory_files
, "directory-files");
1045 DEFSYM (Qdirectory_files_and_attributes
, "directory-files-and-attributes");
1046 DEFSYM (Qfile_name_completion
, "file-name-completion");
1047 DEFSYM (Qfile_name_all_completions
, "file-name-all-completions");
1048 DEFSYM (Qfile_attributes
, "file-attributes");
1049 DEFSYM (Qfile_attributes_lessp
, "file-attributes-lessp");
1050 DEFSYM (Qdefault_directory
, "default-directory");
1052 defsubr (&Sdirectory_files
);
1053 defsubr (&Sdirectory_files_and_attributes
);
1054 defsubr (&Sfile_name_completion
);
1055 defsubr (&Sfile_name_all_completions
);
1056 defsubr (&Sfile_attributes
);
1057 defsubr (&Sfile_attributes_lessp
);
1058 defsubr (&Ssystem_users
);
1059 defsubr (&Ssystem_groups
);
1061 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions
,
1062 doc
: /* Completion ignores file names ending in any string in this list.
1063 It does not ignore them if all possible completions end in one of
1064 these strings or when displaying a list of completions.
1065 It ignores directory names if they match any string in this list which
1066 ends in a slash. */);
1067 Vcompletion_ignored_extensions
= Qnil
;