Update copyright year to 2015
[emacs.git] / src / dired.c
blob3ca400eafe94e8fbf84178042d8fb3be75d1ef07
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 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. */
65 static ptrdiff_t
66 dirent_namelen (struct dirent *dp)
68 #ifdef _D_EXACT_NAMLEN
69 return _D_EXACT_NAMLEN (dp);
70 #else
71 return strlen (dp->d_name);
72 #endif
75 static DIR *
76 open_directory (char const *name, int *fdp)
78 DIR *d;
79 int fd, opendir_errno;
81 block_input ();
83 #ifdef DOS_NT
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. */
87 fd = 0;
88 d = opendir (name);
89 opendir_errno = errno;
90 #else
91 fd = emacs_open (name, O_RDONLY | O_DIRECTORY, 0);
92 if (fd < 0)
94 opendir_errno = errno;
95 d = 0;
97 else
99 d = fdopendir (fd);
100 opendir_errno = errno;
101 if (! d)
102 emacs_close (fd);
104 #endif
106 unblock_input ();
108 *fdp = fd;
109 errno = opendir_errno;
110 return d;
113 #ifdef WINDOWSNT
114 void
115 directory_files_internal_w32_unwind (Lisp_Object arg)
117 Vw32_get_true_file_attributes = arg;
119 #endif
121 static void
122 directory_files_internal_unwind (void *dh)
124 DIR *d = dh;
125 block_input ();
126 closedir (d);
127 unblock_input ();
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. */
135 Lisp_Object
136 directory_files_internal (Lisp_Object directory, Lisp_Object full,
137 Lisp_Object match, Lisp_Object nosort, bool attrs,
138 Lisp_Object id_format)
140 DIR *d;
141 int fd;
142 ptrdiff_t directory_nbytes;
143 Lisp_Object list, dirfilename, encoded_directory;
144 struct re_pattern_buffer *bufp = NULL;
145 bool needsep = 0;
146 ptrdiff_t count = SPECPDL_INDEX ();
147 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
148 struct dirent *dp;
149 #ifdef WINDOWSNT
150 Lisp_Object w32_save = Qnil;
151 #endif
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);
165 if (!NILP (match))
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. */
174 # ifdef WINDOWSNT
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
185 indirectly. */
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);
195 if (d == NULL)
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);
203 #ifdef WINDOWSNT
204 if (attrs)
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;
219 else
220 Vw32_get_true_file_attributes = Qt;
223 #endif
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)))
231 needsep = 1;
233 /* Loop reading blocks until EOF or error. */
234 for (;;)
236 ptrdiff_t len;
237 bool wanted = 0;
238 Lisp_Object name, finalname;
239 struct gcpro gcpro1, gcpro2;
241 errno = 0;
242 dp = readdir (d);
243 if (!dp)
245 if (errno == EAGAIN || errno == EINTR)
247 QUIT;
248 continue;
250 break;
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,
258 though. */
259 name = DECODE_FILE (name);
260 len = SBYTES (name);
262 /* Now that we have unwind_protect in place, we might as well
263 allow matching to be interrupted. */
264 immediate_quit = 1;
265 QUIT;
267 if (NILP (match)
268 || re_search (bufp, SSDATA (name), len, 0, len, 0) >= 0)
269 wanted = 1;
271 immediate_quit = 0;
273 if (wanted)
275 if (!NILP (full))
277 Lisp_Object fullname;
278 ptrdiff_t nbytes = len + directory_nbytes + needsep;
279 ptrdiff_t nchars;
281 fullname = make_uninit_multibyte_string (nbytes, nbytes);
282 memcpy (SDATA (fullname), SDATA (directory),
283 directory_nbytes);
285 if (needsep)
286 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
288 memcpy (SDATA (fullname) + directory_nbytes + needsep,
289 SDATA (name), len);
291 nchars = multibyte_chars_in_text (SDATA (fullname), nbytes);
293 /* Some bug somewhere. */
294 if (nchars > nbytes)
295 emacs_abort ();
297 STRING_SET_CHARS (fullname, nchars);
298 if (nchars == nbytes)
299 STRING_SET_UNIBYTE (fullname);
301 finalname = fullname;
303 else
304 finalname = name;
306 if (attrs)
308 Lisp_Object fileattrs
309 = file_attributes (fd, dp->d_name, id_format);
310 list = Fcons (Fcons (finalname, fileattrs), list);
312 else
313 list = Fcons (finalname, list);
316 UNGCPRO;
319 block_input ();
320 closedir (d);
321 unblock_input ();
322 #ifdef WINDOWSNT
323 if (attrs)
324 Vw32_get_true_file_attributes = w32_save;
325 #endif
327 /* Discard the unwind protect. */
328 specpdl_ptr = specpdl + count;
330 if (NILP (nosort))
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)
350 Lisp_Object handler;
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);
356 if (!NILP (handler))
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',
375 which see. */)
376 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
378 Lisp_Object handler;
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);
384 if (!NILP (handler))
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,
393 Lisp_Object);
395 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
396 2, 3, 0,
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)
410 Lisp_Object handler;
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);
416 if (!NILP (handler))
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);
422 if (!NILP (handler))
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)
434 Lisp_Object handler;
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);
440 if (!NILP (handler))
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);
446 if (!NILP (handler))
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;
455 static Lisp_Object
456 file_name_completion (Lisp_Object file, Lisp_Object dirname, bool all_flag,
457 Lisp_Object predicate)
459 DIR *d;
460 int fd;
461 ptrdiff_t bestmatchsize = 0;
462 int matchcount = 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;
469 struct stat st;
470 bool directoryp;
471 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
472 well as "." and "..". Until shown otherwise, assume we can't exclude
473 anything. */
474 bool includeall = 1;
475 ptrdiff_t count = SPECPDL_INDEX ();
476 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
478 elt = Qnil;
480 CHECK_STRING (file);
482 bestmatch = Qnil;
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);
498 if (!d)
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) */
505 while (1)
507 struct dirent *dp;
508 ptrdiff_t len;
509 bool canexclude = 0;
511 errno = 0;
512 dp = readdir (d);
513 if (!dp)
515 if (errno == EAGAIN || errno == EINTR)
517 QUIT;
518 continue;
520 break;
523 len = dirent_namelen (dp);
525 QUIT;
526 if (len < SCHARS (encoded_file)
527 || (scmp (dp->d_name, SSDATA (encoded_file),
528 SCHARS (encoded_file))
529 >= 0))
530 continue;
532 if (file_name_completion_stat (fd, dp, &st) < 0)
533 continue;
535 directoryp = S_ISDIR (st.st_mode) != 0;
536 tem = Qnil;
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. */
540 if (!all_flag)
542 ptrdiff_t skip;
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. */
550 && matchcount > 1
551 && !includeall /* This match may allow includeall to 0. */
552 && len >= bestmatchsize
553 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
554 continue;
555 #endif
557 if (directoryp)
559 #ifndef TRIVIAL_DIRECTORY_ENTRY
560 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
561 #endif
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))
565 canexclude = 1;
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))
572 ptrdiff_t elt_len;
573 char *p1;
575 elt = XCAR (tem);
576 if (!STRINGP (elt))
577 continue;
578 /* Need to encode ELT, since scmp compares unibyte
579 strings only. */
580 elt = ENCODE_FILE (elt);
581 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
582 if (elt_len <= 0)
583 continue;
584 p1 = SSDATA (elt);
585 if (p1[elt_len] != '/')
586 continue;
587 skip = len - elt_len;
588 if (skip < 0)
589 continue;
591 if (scmp (dp->d_name + skip, p1, elt_len) >= 0)
592 continue;
593 break;
596 else
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))
605 elt = XCAR (tem);
606 if (!STRINGP (elt)) continue;
607 /* Need to encode ELT, since scmp compares unibyte
608 strings only. */
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))
614 >= 0)
615 continue;
616 break;
620 /* If an ignored-extensions match was found,
621 don't process this name as a completion. */
622 if (CONSP (tem))
623 canexclude = 1;
625 if (!includeall && canexclude)
626 /* We're not including all files and this file can be excluded. */
627 continue;
629 if (includeall && !canexclude)
630 { /* If we have one non-excludable file, we want to exclude the
631 excludable files. */
632 includeall = 0;
633 /* Throw away any previous excludable match found. */
634 bestmatch = Qnil;
635 bestmatchsize = 0;
636 matchcount = 0;
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);
645 Lisp_Object regexps;
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)
653 break;
655 else
657 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
658 regexps = XCDR (regexps))
659 if (fast_string_match (XCAR (regexps), name) < 0)
660 break;
663 if (CONSP (regexps))
664 continue;
667 /* This is a possible completion */
668 if (directoryp)
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))
675 Lisp_Object val;
676 struct gcpro gcpro1;
678 GCPRO1 (name);
679 val = call1 (predicate, name);
680 UNGCPRO;
682 if (NILP (val))
683 continue;
686 /* Suitably record this match. */
688 matchcount += matchcount <= 1;
690 if (all_flag)
691 bestmatch = Fcons (name, bestmatch);
692 else if (NILP (bestmatch))
694 bestmatch = name;
695 bestmatchsize = SCHARS (name);
697 else
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));
702 Lisp_Object cmp
703 = Fcompare_strings (bestmatch, zero,
704 make_number (compare),
705 name, zero,
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
723 of the input. */
724 /* If there is more than one exact match aside from
725 case, and one of them is exact including case,
726 prefer that one. */
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)),
734 file, zero,
735 Qnil,
736 Qnil),
737 EQ (Qt, cmp))
738 && (cmp = Fcompare_strings (bestmatch, zero,
739 make_number (SCHARS (file)),
740 file, zero,
741 Qnil,
742 Qnil),
743 ! EQ (Qt, cmp))))
744 bestmatch = name;
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. */
758 && matchcount > 1)
759 break;
764 UNGCPRO;
765 /* This closes the directory. */
766 bestmatch = unbind_to (count, bestmatch);
768 if (all_flag || NILP (bestmatch))
769 return 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)))
773 return Qt;
774 bestmatch = Fsubstring (bestmatch, make_number (0),
775 make_number (bestmatchsize));
776 return bestmatch;
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. */
784 static ptrdiff_t
785 scmp (const char *s1, const char *s2, ptrdiff_t len)
787 register ptrdiff_t l = len;
789 if (completion_ignore_case)
791 while (l
792 && (downcase ((unsigned char) *s1++)
793 == downcase ((unsigned char) *s2++)))
794 l--;
796 else
798 while (l && *s1++ == *s2++)
799 l--;
801 if (l == 0)
802 return -1;
803 else
804 return len - l;
807 static int
808 file_name_completion_stat (int fd, struct dirent *dp, struct stat *st_addr)
810 int value;
812 #ifdef MSDOS
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;
821 #endif /* MSDOS */
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);
829 #ifdef MSDOS
830 _djstat_flags = save_djstat_flags;
831 #endif /* MSDOS */
832 return value;
835 static char *
836 stat_uname (struct stat *st)
838 #ifdef WINDOWSNT
839 return st->st_uname;
840 #else
841 struct passwd *pw = getpwuid (st->st_uid);
843 if (pw)
844 return pw->pw_name;
845 else
846 return NULL;
847 #endif
850 static char *
851 stat_gname (struct stat *st)
853 #ifdef WINDOWSNT
854 return st->st_gname;
855 #else
856 struct group *gr = getgrgid (st->st_gid);
858 if (gr)
859 return gr->gr_name;
860 else
861 return NULL;
862 #endif
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.
887 7. Size in bytes.
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',
903 which see.
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)
909 Lisp_Object encoded;
910 Lisp_Object handler;
912 filename = internal_condition_case_2 (Fexpand_file_name, filename, Qnil,
913 Qt, Fidentity);
914 if (!STRINGP (filename))
915 return Qnil;
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);
920 if (!NILP (handler))
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);
925 else
926 return call3 (handler, Qfile_attributes, filename, id_format);
929 encoded = ENCODE_FILE (filename);
930 return file_attributes (AT_FDCWD, SSDATA (encoded), id_format);
933 static Lisp_Object
934 file_attributes (int fd, char const *name, Lisp_Object id_format)
936 Lisp_Object values[12];
937 struct stat s;
938 int lstat_result;
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;
946 #ifdef WINDOWSNT
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
950 to be accurate. */
951 w32_stat_get_owner_group = 1;
952 #endif
954 lstat_result = fstatat (fd, name, &s, AT_SYMLINK_NOFOLLOW);
956 #ifdef WINDOWSNT
957 w32_stat_get_owner_group = 0;
958 #endif
960 if (lstat_result < 0)
961 return Qnil;
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)))
969 block_input ();
970 uname = stat_uname (&s);
971 gname = stat_gname (&s);
972 unblock_input ();
974 if (uname)
975 values[2] = DECODE_SYSTEM (build_unibyte_string (uname));
976 else
977 values[2] = make_fixnum_or_float (s.st_uid);
978 if (gname)
979 values[3] = DECODE_SYSTEM (build_unibyte_string (gname));
980 else
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);
992 else
993 values[7] = make_fixnum_or_float (s.st_size);
995 filemodestring (&s, modes);
996 values[8] = make_string (modes, 10);
997 values[9] = Qt;
998 values[10] = INTEGER_TO_CONS (s.st_ino);
999 values[11] = INTEGER_TO_CONS (s.st_dev);
1001 return Flist (ARRAYELTS (values), 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'. */)
1017 (void)
1019 Lisp_Object users = Qnil;
1020 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1021 struct passwd *pw;
1023 while ((pw = getpwent ()))
1024 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
1026 endpwent ();
1027 #endif
1028 if (EQ (users, Qnil))
1029 /* At least current user is always known. */
1030 users = list1 (Vuser_real_login_name);
1031 return users;
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. */)
1037 (void)
1039 Lisp_Object groups = Qnil;
1040 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1041 struct group *gr;
1043 while ((gr = getgrent ()))
1044 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1046 endgrent ();
1047 #endif
1048 return groups;
1051 void
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;