emacs-lisp/package.el (package--read-pkg-desc): Fix tar-desc reference.
[emacs.git] / src / dired.c
blob5038e04cd014eedeb6bc2ccf39a25e27b7f2487f
1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2015 Free Software
3 Foundation, Inc.
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/>. */
21 #include <config.h>
23 #include <stdio.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
27 #ifdef HAVE_PWD_H
28 #include <pwd.h>
29 #endif
30 #include <grp.h>
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <unistd.h>
36 #include <dirent.h>
37 #include <filemode.h>
38 #include <stat-time.h>
40 #include "lisp.h"
41 #include "systime.h"
42 #include "character.h"
43 #include "buffer.h"
44 #include "commands.h"
45 #include "charset.h"
46 #include "coding.h"
47 #include "regex.h"
48 #include "blockinput.h"
50 #ifdef MSDOS
51 #include "msdos.h" /* for fstatat */
52 #endif
54 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
55 static Lisp_Object file_attributes (int, char const *, Lisp_Object);
57 /* Return the number of bytes in DP's name. */
58 static ptrdiff_t
59 dirent_namelen (struct dirent *dp)
61 #ifdef _D_EXACT_NAMLEN
62 return _D_EXACT_NAMLEN (dp);
63 #else
64 return strlen (dp->d_name);
65 #endif
68 static DIR *
69 open_directory (Lisp_Object dirname, int *fdp)
71 char *name = SSDATA (dirname);
72 DIR *d;
73 int fd, opendir_errno;
75 block_input ();
77 #ifdef DOS_NT
78 /* Directories cannot be opened. The emulation assumes that any
79 file descriptor other than AT_FDCWD corresponds to the most
80 recently opened directory. This hack is good enough for Emacs. */
81 fd = 0;
82 d = opendir (name);
83 opendir_errno = errno;
84 #else
85 fd = emacs_open (name, O_RDONLY | O_DIRECTORY, 0);
86 if (fd < 0)
88 opendir_errno = errno;
89 d = 0;
91 else
93 d = fdopendir (fd);
94 opendir_errno = errno;
95 if (! d)
96 emacs_close (fd);
98 #endif
100 unblock_input ();
102 if (!d)
103 report_file_errno ("Opening directory", dirname, opendir_errno);
104 *fdp = fd;
105 return d;
108 #ifdef WINDOWSNT
109 void
110 directory_files_internal_w32_unwind (Lisp_Object arg)
112 Vw32_get_true_file_attributes = arg;
114 #endif
116 static void
117 directory_files_internal_unwind (void *dh)
119 DIR *d = dh;
120 block_input ();
121 closedir (d);
122 unblock_input ();
125 /* Return the next directory entry from DIR; DIR's name is DIRNAME.
126 If there are no more directory entries, return a null pointer.
127 Signal any unrecoverable errors. */
129 static struct dirent *
130 read_dirent (DIR *dir, Lisp_Object dirname)
132 while (true)
134 errno = 0;
135 struct dirent *dp = readdir (dir);
136 if (dp || errno == 0)
137 return dp;
138 if (! (errno == EAGAIN || errno == EINTR))
140 #ifdef WINDOWSNT
141 /* The MS-Windows implementation of 'opendir' doesn't
142 actually open a directory until the first call to
143 'readdir'. If 'readdir' fails to open the directory, it
144 sets errno to ENOENT or EACCES, see w32.c. */
145 if (errno == ENOENT || errno == EACCES)
146 report_file_error ("Opening directory", dirname);
147 #endif
148 report_file_error ("Reading directory", dirname);
150 QUIT;
154 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
155 If not ATTRS, return a list of directory filenames;
156 if ATTRS, return a list of directory filenames and their attributes.
157 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
159 Lisp_Object
160 directory_files_internal (Lisp_Object directory, Lisp_Object full,
161 Lisp_Object match, Lisp_Object nosort, bool attrs,
162 Lisp_Object id_format)
164 ptrdiff_t directory_nbytes;
165 Lisp_Object list, dirfilename, encoded_directory;
166 struct re_pattern_buffer *bufp = NULL;
167 bool needsep = 0;
168 ptrdiff_t count = SPECPDL_INDEX ();
169 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
170 #ifdef WINDOWSNT
171 Lisp_Object w32_save = Qnil;
172 #endif
174 /* Don't let the compiler optimize away all copies of DIRECTORY,
175 which would break GC; see Bug#16986. Although this is required
176 only in the common case where GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS,
177 it shouldn't break anything in the other cases. */
178 Lisp_Object volatile directory_volatile = directory;
180 /* Because of file name handlers, these functions might call
181 Ffuncall, and cause a GC. */
182 list = encoded_directory = dirfilename = Qnil;
183 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
184 dirfilename = Fdirectory_file_name (directory);
186 if (!NILP (match))
188 CHECK_STRING (match);
190 /* MATCH might be a flawed regular expression. Rather than
191 catching and signaling our own errors, we just call
192 compile_pattern to do the work for us. */
193 /* Pass 1 for the MULTIBYTE arg
194 because we do make multibyte strings if the contents warrant. */
195 # ifdef WINDOWSNT
196 /* Windows users want case-insensitive wildcards. */
197 bufp = compile_pattern (match, 0,
198 BVAR (&buffer_defaults, case_canon_table), 0, 1);
199 # else /* !WINDOWSNT */
200 bufp = compile_pattern (match, 0, Qnil, 0, 1);
201 # endif /* !WINDOWSNT */
204 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
205 run_pre_post_conversion_on_str which calls Lisp directly and
206 indirectly. */
207 dirfilename = ENCODE_FILE (dirfilename);
208 encoded_directory = ENCODE_FILE (directory);
210 /* Now *bufp is the compiled form of MATCH; don't call anything
211 which might compile a new regexp until we're done with the loop! */
213 int fd;
214 DIR *d = open_directory (dirfilename, &fd);
216 /* Unfortunately, we can now invoke expand-file-name and
217 file-attributes on filenames, both of which can throw, so we must
218 do a proper unwind-protect. */
219 record_unwind_protect_ptr (directory_files_internal_unwind, d);
221 #ifdef WINDOWSNT
222 if (attrs)
224 extern int is_slow_fs (const char *);
226 /* Do this only once to avoid doing it (in w32.c:stat) for each
227 file in the directory, when we call Ffile_attributes below. */
228 record_unwind_protect (directory_files_internal_w32_unwind,
229 Vw32_get_true_file_attributes);
230 w32_save = Vw32_get_true_file_attributes;
231 if (EQ (Vw32_get_true_file_attributes, Qlocal))
233 /* w32.c:stat will notice these bindings and avoid calling
234 GetDriveType for each file. */
235 if (is_slow_fs (SDATA (dirfilename)))
236 Vw32_get_true_file_attributes = Qnil;
237 else
238 Vw32_get_true_file_attributes = Qt;
241 #endif
243 directory_nbytes = SBYTES (directory);
244 re_match_object = Qt;
246 /* Decide whether we need to add a directory separator. */
247 if (directory_nbytes == 0
248 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
249 needsep = 1;
251 /* Loop reading directory entries. */
252 for (struct dirent *dp; (dp = read_dirent (d, directory)); )
254 ptrdiff_t len = dirent_namelen (dp);
255 Lisp_Object name = make_unibyte_string (dp->d_name, len);
256 Lisp_Object finalname = name;
257 struct gcpro gcpro1, gcpro2;
258 GCPRO2 (finalname, name);
260 /* Note: DECODE_FILE can GC; it should protect its argument,
261 though. */
262 name = DECODE_FILE (name);
263 len = SBYTES (name);
265 /* Now that we have unwind_protect in place, we might as well
266 allow matching to be interrupted. */
267 immediate_quit = 1;
268 QUIT;
270 bool wanted = (NILP (match)
271 || re_search (bufp, SSDATA (name), len, 0, len, 0) >= 0);
273 immediate_quit = 0;
275 if (wanted)
277 if (!NILP (full))
279 Lisp_Object fullname;
280 ptrdiff_t nbytes = len + directory_nbytes + needsep;
281 ptrdiff_t nchars;
283 fullname = make_uninit_multibyte_string (nbytes, nbytes);
284 memcpy (SDATA (fullname), SDATA (directory),
285 directory_nbytes);
287 if (needsep)
288 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
290 memcpy (SDATA (fullname) + directory_nbytes + needsep,
291 SDATA (name), len);
293 nchars = multibyte_chars_in_text (SDATA (fullname), nbytes);
295 /* Some bug somewhere. */
296 if (nchars > nbytes)
297 emacs_abort ();
299 STRING_SET_CHARS (fullname, nchars);
300 if (nchars == nbytes)
301 STRING_SET_UNIBYTE (fullname);
303 finalname = fullname;
305 else
306 finalname = name;
308 if (attrs)
310 Lisp_Object fileattrs
311 = file_attributes (fd, dp->d_name, id_format);
312 list = Fcons (Fcons (finalname, fileattrs), list);
314 else
315 list = Fcons (finalname, list);
318 UNGCPRO;
321 block_input ();
322 closedir (d);
323 unblock_input ();
324 #ifdef WINDOWSNT
325 if (attrs)
326 Vw32_get_true_file_attributes = w32_save;
327 #endif
329 /* Discard the unwind protect. */
330 specpdl_ptr = specpdl + count;
332 if (NILP (nosort))
333 list = Fsort (Fnreverse (list),
334 attrs ? Qfile_attributes_lessp : Qstring_lessp);
336 (void) directory_volatile;
337 RETURN_UNGCPRO (list);
341 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
342 doc: /* Return a list of names of files in DIRECTORY.
343 There are three optional arguments:
344 If FULL is non-nil, return absolute file names. Otherwise return names
345 that are relative to the specified directory.
346 If MATCH is non-nil, mention only file names that match the regexp MATCH.
347 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
348 Otherwise, the list returned is sorted with `string-lessp'.
349 NOSORT is useful if you plan to sort the result yourself. */)
350 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort)
352 Lisp_Object handler;
353 directory = Fexpand_file_name (directory, Qnil);
355 /* If the file name has special constructs in it,
356 call the corresponding file handler. */
357 handler = Ffind_file_name_handler (directory, Qdirectory_files);
358 if (!NILP (handler))
359 return call5 (handler, Qdirectory_files, directory,
360 full, match, nosort);
362 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
365 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
366 Sdirectory_files_and_attributes, 1, 5, 0,
367 doc: /* Return a list of names of files and their attributes in DIRECTORY.
368 There are four optional arguments:
369 If FULL is non-nil, return absolute file names. Otherwise return names
370 that are relative to the specified directory.
371 If MATCH is non-nil, mention only file names that match the regexp MATCH.
372 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
373 NOSORT is useful if you plan to sort the result yourself.
374 ID-FORMAT specifies the preferred format of attributes uid and gid, see
375 `file-attributes' for further documentation.
376 On MS-Windows, performance depends on `w32-get-true-file-attributes',
377 which see. */)
378 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
380 Lisp_Object handler;
381 directory = Fexpand_file_name (directory, Qnil);
383 /* If the file name has special constructs in it,
384 call the corresponding file handler. */
385 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
386 if (!NILP (handler))
387 return call6 (handler, Qdirectory_files_and_attributes,
388 directory, full, match, nosort, id_format);
390 return directory_files_internal (directory, full, match, nosort, 1, id_format);
394 static Lisp_Object file_name_completion (Lisp_Object, Lisp_Object, bool,
395 Lisp_Object);
397 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
398 2, 3, 0,
399 doc: /* Complete file name FILE in directory DIRECTORY.
400 Returns the longest string
401 common to all file names in DIRECTORY that start with FILE.
402 If there is only one and FILE matches it exactly, returns t.
403 Returns nil if DIRECTORY contains no name starting with FILE.
405 If PREDICATE is non-nil, call PREDICATE with each possible
406 completion (in absolute form) and ignore it if PREDICATE returns nil.
408 This function ignores some of the possible completions as
409 determined by the variable `completion-ignored-extensions', which see. */)
410 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate)
412 Lisp_Object handler;
413 directory = Fexpand_file_name (directory, Qnil);
415 /* If the directory name has special constructs in it,
416 call the corresponding file handler. */
417 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
418 if (!NILP (handler))
419 return call4 (handler, Qfile_name_completion, file, directory, predicate);
421 /* If the file name has special constructs in it,
422 call the corresponding file handler. */
423 handler = Ffind_file_name_handler (file, Qfile_name_completion);
424 if (!NILP (handler))
425 return call4 (handler, Qfile_name_completion, file, directory, predicate);
427 return file_name_completion (file, directory, 0, predicate);
430 DEFUN ("file-name-all-completions", Ffile_name_all_completions,
431 Sfile_name_all_completions, 2, 2, 0,
432 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
433 These are all file names in directory DIRECTORY which begin with FILE. */)
434 (Lisp_Object file, Lisp_Object directory)
436 Lisp_Object handler;
437 directory = Fexpand_file_name (directory, Qnil);
439 /* If the directory name has special constructs in it,
440 call the corresponding file handler. */
441 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
442 if (!NILP (handler))
443 return call3 (handler, Qfile_name_all_completions, file, directory);
445 /* If the file name has special constructs in it,
446 call the corresponding file handler. */
447 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
448 if (!NILP (handler))
449 return call3 (handler, Qfile_name_all_completions, file, directory);
451 return file_name_completion (file, directory, 1, Qnil);
454 static int file_name_completion_stat (int, struct dirent *, struct stat *);
456 static Lisp_Object
457 file_name_completion (Lisp_Object file, Lisp_Object dirname, bool all_flag,
458 Lisp_Object predicate)
460 ptrdiff_t bestmatchsize = 0;
461 int matchcount = 0;
462 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
463 If ALL_FLAG is 0, BESTMATCH is either nil
464 or the best match so far, not decoded. */
465 Lisp_Object bestmatch, tem, elt, name;
466 Lisp_Object encoded_file;
467 Lisp_Object encoded_dir;
468 struct stat st;
469 bool directoryp;
470 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
471 well as "." and "..". Until shown otherwise, assume we can't exclude
472 anything. */
473 bool includeall = 1;
474 ptrdiff_t count = SPECPDL_INDEX ();
475 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
477 elt = Qnil;
479 CHECK_STRING (file);
481 bestmatch = Qnil;
482 encoded_file = encoded_dir = Qnil;
483 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
484 specbind (Qdefault_directory, dirname);
486 /* Do completion on the encoded file name
487 because the other names in the directory are (we presume)
488 encoded likewise. We decode the completed string at the end. */
489 /* Actually, this is not quite true any more: we do most of the completion
490 work with decoded file names, but we still do some filtering based
491 on the encoded file name. */
492 encoded_file = ENCODE_FILE (file);
493 encoded_dir = ENCODE_FILE (Fdirectory_file_name (dirname));
494 int fd;
495 DIR *d = open_directory (encoded_dir, &fd);
496 record_unwind_protect_ptr (directory_files_internal_unwind, d);
498 /* Loop reading directory entries. */
499 for (struct dirent *dp; (dp = read_dirent (d, dirname)); )
501 ptrdiff_t len = dirent_namelen (dp);
502 bool canexclude = 0;
504 QUIT;
505 if (len < SCHARS (encoded_file)
506 || (scmp (dp->d_name, SSDATA (encoded_file),
507 SCHARS (encoded_file))
508 >= 0))
509 continue;
511 if (file_name_completion_stat (fd, dp, &st) < 0)
512 continue;
514 directoryp = S_ISDIR (st.st_mode) != 0;
515 tem = Qnil;
516 /* If all_flag is set, always include all.
517 It would not actually be helpful to the user to ignore any possible
518 completions when making a list of them. */
519 if (!all_flag)
521 ptrdiff_t skip;
523 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
524 /* If this entry matches the current bestmatch, the only
525 thing it can do is increase matchcount, so don't bother
526 investigating it any further. */
527 if (!completion_ignore_case
528 /* The return result depends on whether it's the sole match. */
529 && matchcount > 1
530 && !includeall /* This match may allow includeall to 0. */
531 && len >= bestmatchsize
532 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
533 continue;
534 #endif
536 if (directoryp)
538 #ifndef TRIVIAL_DIRECTORY_ENTRY
539 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
540 #endif
541 /* "." and ".." are never interesting as completions, and are
542 actually in the way in a directory with only one file. */
543 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
544 canexclude = 1;
545 else if (len > SCHARS (encoded_file))
546 /* Ignore directories if they match an element of
547 completion-ignored-extensions which ends in a slash. */
548 for (tem = Vcompletion_ignored_extensions;
549 CONSP (tem); tem = XCDR (tem))
551 ptrdiff_t elt_len;
552 char *p1;
554 elt = XCAR (tem);
555 if (!STRINGP (elt))
556 continue;
557 /* Need to encode ELT, since scmp compares unibyte
558 strings only. */
559 elt = ENCODE_FILE (elt);
560 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
561 if (elt_len <= 0)
562 continue;
563 p1 = SSDATA (elt);
564 if (p1[elt_len] != '/')
565 continue;
566 skip = len - elt_len;
567 if (skip < 0)
568 continue;
570 if (scmp (dp->d_name + skip, p1, elt_len) >= 0)
571 continue;
572 break;
575 else
577 /* Compare extensions-to-be-ignored against end of this file name */
578 /* if name is not an exact match against specified string */
579 if (len > SCHARS (encoded_file))
580 /* and exit this for loop if a match is found */
581 for (tem = Vcompletion_ignored_extensions;
582 CONSP (tem); tem = XCDR (tem))
584 elt = XCAR (tem);
585 if (!STRINGP (elt)) continue;
586 /* Need to encode ELT, since scmp compares unibyte
587 strings only. */
588 elt = ENCODE_FILE (elt);
589 skip = len - SCHARS (elt);
590 if (skip < 0) continue;
592 if (scmp (dp->d_name + skip, SSDATA (elt), SCHARS (elt))
593 >= 0)
594 continue;
595 break;
599 /* If an ignored-extensions match was found,
600 don't process this name as a completion. */
601 if (CONSP (tem))
602 canexclude = 1;
604 if (!includeall && canexclude)
605 /* We're not including all files and this file can be excluded. */
606 continue;
608 if (includeall && !canexclude)
609 { /* If we have one non-excludable file, we want to exclude the
610 excludable files. */
611 includeall = 0;
612 /* Throw away any previous excludable match found. */
613 bestmatch = Qnil;
614 bestmatchsize = 0;
615 matchcount = 0;
618 /* FIXME: If we move this `decode' earlier we can eliminate
619 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
620 name = make_unibyte_string (dp->d_name, len);
621 name = DECODE_FILE (name);
624 Lisp_Object regexps, table = (completion_ignore_case
625 ? Vascii_canon_table : Qnil);
627 /* Ignore this element if it fails to match all the regexps. */
628 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
629 regexps = XCDR (regexps))
630 if (fast_string_match_internal (XCAR (regexps), name, table) < 0)
631 break;
633 if (CONSP (regexps))
634 continue;
637 /* This is a possible completion */
638 if (directoryp)
639 /* This completion is a directory; make it end with '/'. */
640 name = Ffile_name_as_directory (name);
642 /* Test the predicate, if any. */
643 if (!NILP (predicate))
645 Lisp_Object val;
646 struct gcpro gcpro1;
648 GCPRO1 (name);
649 val = call1 (predicate, name);
650 UNGCPRO;
652 if (NILP (val))
653 continue;
656 /* Suitably record this match. */
658 matchcount += matchcount <= 1;
660 if (all_flag)
661 bestmatch = Fcons (name, bestmatch);
662 else if (NILP (bestmatch))
664 bestmatch = name;
665 bestmatchsize = SCHARS (name);
667 else
669 Lisp_Object zero = make_number (0);
670 /* FIXME: This is a copy of the code in Ftry_completion. */
671 ptrdiff_t compare = min (bestmatchsize, SCHARS (name));
672 Lisp_Object cmp
673 = Fcompare_strings (bestmatch, zero,
674 make_number (compare),
675 name, zero,
676 make_number (compare),
677 completion_ignore_case ? Qt : Qnil);
678 ptrdiff_t matchsize = EQ (cmp, Qt) ? compare : eabs (XINT (cmp)) - 1;
680 if (completion_ignore_case)
682 /* If this is an exact match except for case,
683 use it as the best match rather than one that is not
684 an exact match. This way, we get the case pattern
685 of the actual match. */
686 /* This tests that the current file is an exact match
687 but BESTMATCH is not (it is too long). */
688 if ((matchsize == SCHARS (name)
689 && matchsize + directoryp < SCHARS (bestmatch))
691 /* If there is no exact match ignoring case,
692 prefer a match that does not change the case
693 of the input. */
694 /* If there is more than one exact match aside from
695 case, and one of them is exact including case,
696 prefer that one. */
697 /* This == checks that, of current file and BESTMATCH,
698 either both or neither are exact. */
699 (((matchsize == SCHARS (name))
701 (matchsize + directoryp == SCHARS (bestmatch)))
702 && (cmp = Fcompare_strings (name, zero,
703 make_number (SCHARS (file)),
704 file, zero,
705 Qnil,
706 Qnil),
707 EQ (Qt, cmp))
708 && (cmp = Fcompare_strings (bestmatch, zero,
709 make_number (SCHARS (file)),
710 file, zero,
711 Qnil,
712 Qnil),
713 ! EQ (Qt, cmp))))
714 bestmatch = name;
716 bestmatchsize = matchsize;
718 /* If the best completion so far is reduced to the string
719 we're trying to complete, then we already know there's no
720 other completion, so there's no point looking any further. */
721 if (matchsize <= SCHARS (file)
722 && !includeall /* A future match may allow includeall to 0. */
723 /* If completion-ignore-case is non-nil, don't
724 short-circuit because we want to find the best
725 possible match *including* case differences. */
726 && (!completion_ignore_case || matchsize == 0)
727 /* The return value depends on whether it's the sole match. */
728 && matchcount > 1)
729 break;
734 UNGCPRO;
735 /* This closes the directory. */
736 bestmatch = unbind_to (count, bestmatch);
738 if (all_flag || NILP (bestmatch))
739 return bestmatch;
740 /* Return t if the supplied string is an exact match (counting case);
741 it does not require any change to be made. */
742 if (matchcount == 1 && !NILP (Fequal (bestmatch, file)))
743 return Qt;
744 bestmatch = Fsubstring (bestmatch, make_number (0),
745 make_number (bestmatchsize));
746 return bestmatch;
749 /* Compare exactly LEN chars of strings at S1 and S2,
750 ignoring case if appropriate.
751 Return -1 if strings match,
752 else number of chars that match at the beginning. */
754 static ptrdiff_t
755 scmp (const char *s1, const char *s2, ptrdiff_t len)
757 register ptrdiff_t l = len;
759 if (completion_ignore_case)
761 while (l
762 && (downcase ((unsigned char) *s1++)
763 == downcase ((unsigned char) *s2++)))
764 l--;
766 else
768 while (l && *s1++ == *s2++)
769 l--;
771 if (l == 0)
772 return -1;
773 else
774 return len - l;
777 static int
778 file_name_completion_stat (int fd, struct dirent *dp, struct stat *st_addr)
780 int value;
782 #ifdef MSDOS
783 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
784 but aren't required here. Avoid computing the following fields:
785 st_inode, st_size and st_nlink for directories, and the execute bits
786 in st_mode for non-directory files with non-standard extensions. */
788 unsigned short save_djstat_flags = _djstat_flags;
790 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
791 #endif /* MSDOS */
793 /* We want to return success if a link points to a nonexistent file,
794 but we want to return the status for what the link points to,
795 in case it is a directory. */
796 value = fstatat (fd, dp->d_name, st_addr, AT_SYMLINK_NOFOLLOW);
797 if (value == 0 && S_ISLNK (st_addr->st_mode))
798 fstatat (fd, dp->d_name, st_addr, 0);
799 #ifdef MSDOS
800 _djstat_flags = save_djstat_flags;
801 #endif /* MSDOS */
802 return value;
805 static char *
806 stat_uname (struct stat *st)
808 #ifdef WINDOWSNT
809 return st->st_uname;
810 #else
811 struct passwd *pw = getpwuid (st->st_uid);
813 if (pw)
814 return pw->pw_name;
815 else
816 return NULL;
817 #endif
820 static char *
821 stat_gname (struct stat *st)
823 #ifdef WINDOWSNT
824 return st->st_gname;
825 #else
826 struct group *gr = getgrgid (st->st_gid);
828 if (gr)
829 return gr->gr_name;
830 else
831 return NULL;
832 #endif
835 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
836 doc: /* Return a list of attributes of file FILENAME.
837 Value is nil if specified file cannot be opened.
839 ID-FORMAT specifies the preferred format of attributes uid and gid (see
840 below) - valid values are 'string and 'integer. The latter is the
841 default, but we plan to change that, so you should specify a non-nil value
842 for ID-FORMAT if you use the returned uid or gid.
844 Elements of the attribute list are:
845 0. t for directory, string (name linked to) for symbolic link, or nil.
846 1. Number of links to file.
847 2. File uid as a string or a number. If a string value cannot be
848 looked up, a numeric value, either an integer or a float, is returned.
849 3. File gid, likewise.
850 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
851 same style as (current-time).
852 (See a note below about access time on FAT-based filesystems.)
853 5. Last modification time, likewise. This is the time of the last
854 change to the file's contents.
855 6. Last status change time, likewise. This is the time of last change
856 to the file's attributes: owner and group, access mode bits, etc.
857 7. Size in bytes.
858 This is a floating point number if the size is too large for an integer.
859 8. File modes, as a string of ten letters or dashes as in ls -l.
860 9. An unspecified value, present only for backward compatibility.
861 10. inode number. If it is larger than what an Emacs integer can hold,
862 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
863 If even HIGH is too large for an Emacs integer, this is instead of the form
864 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
865 and finally the low 16 bits.
866 11. Filesystem device number. If it is larger than what the Emacs
867 integer can hold, this is a cons cell, similar to the inode number.
869 On most filesystems, the combination of the inode and the device
870 number uniquely identifies the file.
872 On MS-Windows, performance depends on `w32-get-true-file-attributes',
873 which see.
875 On some FAT-based filesystems, only the date of last access is recorded,
876 so last access time will always be midnight of that day. */)
877 (Lisp_Object filename, Lisp_Object id_format)
879 Lisp_Object encoded;
880 Lisp_Object handler;
882 filename = internal_condition_case_2 (Fexpand_file_name, filename, Qnil,
883 Qt, Fidentity);
884 if (!STRINGP (filename))
885 return Qnil;
887 /* If the file name has special constructs in it,
888 call the corresponding file handler. */
889 handler = Ffind_file_name_handler (filename, Qfile_attributes);
890 if (!NILP (handler))
891 { /* Only pass the extra arg if it is used to help backward compatibility
892 with old file handlers which do not implement the new arg. --Stef */
893 if (NILP (id_format))
894 return call2 (handler, Qfile_attributes, filename);
895 else
896 return call3 (handler, Qfile_attributes, filename, id_format);
899 encoded = ENCODE_FILE (filename);
900 return file_attributes (AT_FDCWD, SSDATA (encoded), id_format);
903 static Lisp_Object
904 file_attributes (int fd, char const *name, Lisp_Object id_format)
906 struct stat s;
907 int lstat_result;
909 /* An array to hold the mode string generated by filemodestring,
910 including its terminating space and null byte. */
911 char modes[sizeof "-rwxr-xr-x "];
913 char *uname = NULL, *gname = NULL;
915 #ifdef WINDOWSNT
916 /* We usually don't request accurate owner and group info, because
917 it can be very expensive on Windows to get that, and most callers
918 of 'lstat' don't need that. But here we do want that information
919 to be accurate. */
920 w32_stat_get_owner_group = 1;
921 #endif
923 lstat_result = fstatat (fd, name, &s, AT_SYMLINK_NOFOLLOW);
925 #ifdef WINDOWSNT
926 w32_stat_get_owner_group = 0;
927 #endif
929 if (lstat_result < 0)
930 return Qnil;
932 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
934 block_input ();
935 uname = stat_uname (&s);
936 gname = stat_gname (&s);
937 unblock_input ();
940 filemodestring (&s, modes);
942 return CALLN (Flist,
943 (S_ISLNK (s.st_mode) ? emacs_readlinkat (fd, name)
944 : S_ISDIR (s.st_mode) ? Qt : Qnil),
945 make_number (s.st_nlink),
946 (uname
947 ? DECODE_SYSTEM (build_unibyte_string (uname))
948 : make_fixnum_or_float (s.st_uid)),
949 (gname
950 ? DECODE_SYSTEM (build_unibyte_string (gname))
951 : make_fixnum_or_float (s.st_gid)),
952 make_lisp_time (get_stat_atime (&s)),
953 make_lisp_time (get_stat_mtime (&s)),
954 make_lisp_time (get_stat_ctime (&s)),
956 /* If the file size is a 4-byte type, assume that
957 files of sizes in the 2-4 GiB range wrap around to
958 negative values, as this is a common bug on older
959 32-bit platforms. */
960 make_fixnum_or_float (sizeof (s.st_size) == 4
961 ? s.st_size & 0xffffffffu
962 : s.st_size),
964 make_string (modes, 10),
966 INTEGER_TO_CONS (s.st_ino),
967 INTEGER_TO_CONS (s.st_dev));
970 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
971 doc: /* Return t if first arg file attributes list is less than second.
972 Comparison is in lexicographic order and case is significant. */)
973 (Lisp_Object f1, Lisp_Object f2)
975 return Fstring_lessp (Fcar (f1), Fcar (f2));
979 DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
980 doc: /* Return a list of user names currently registered in the system.
981 If we don't know how to determine that on this platform, just
982 return a list with one element, taken from `user-real-login-name'. */)
983 (void)
985 Lisp_Object users = Qnil;
986 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
987 struct passwd *pw;
989 while ((pw = getpwent ()))
990 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
992 endpwent ();
993 #endif
994 if (EQ (users, Qnil))
995 /* At least current user is always known. */
996 users = list1 (Vuser_real_login_name);
997 return users;
1000 DEFUN ("system-groups", Fsystem_groups, Ssystem_groups, 0, 0, 0,
1001 doc: /* Return a list of user group names currently registered in the system.
1002 The value may be nil if not supported on this platform. */)
1003 (void)
1005 Lisp_Object groups = Qnil;
1006 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1007 struct group *gr;
1009 while ((gr = getgrent ()))
1010 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1012 endgrent ();
1013 #endif
1014 return groups;
1017 void
1018 syms_of_dired (void)
1020 DEFSYM (Qdirectory_files, "directory-files");
1021 DEFSYM (Qdirectory_files_and_attributes, "directory-files-and-attributes");
1022 DEFSYM (Qfile_name_completion, "file-name-completion");
1023 DEFSYM (Qfile_name_all_completions, "file-name-all-completions");
1024 DEFSYM (Qfile_attributes, "file-attributes");
1025 DEFSYM (Qfile_attributes_lessp, "file-attributes-lessp");
1026 DEFSYM (Qdefault_directory, "default-directory");
1028 defsubr (&Sdirectory_files);
1029 defsubr (&Sdirectory_files_and_attributes);
1030 defsubr (&Sfile_name_completion);
1031 defsubr (&Sfile_name_all_completions);
1032 defsubr (&Sfile_attributes);
1033 defsubr (&Sfile_attributes_lessp);
1034 defsubr (&Ssystem_users);
1035 defsubr (&Ssystem_groups);
1037 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions,
1038 doc: /* Completion ignores file names ending in any string in this list.
1039 It does not ignore them if all possible completions end in one of
1040 these strings or when displaying a list of completions.
1041 It ignores directory names if they match any string in this list which
1042 ends in a slash. */);
1043 Vcompletion_ignored_extensions = Qnil;