Use bool for boolean in xmenu.c, xml.c
[emacs.git] / src / dired.c
blob9026c5678ef4ecbc01fb270e8b69c67ae3afdbc6
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 (char const *name, int *fdp)
71 DIR *d;
72 int fd, opendir_errno;
74 block_input ();
76 #ifdef DOS_NT
77 /* Directories cannot be opened. The emulation assumes that any
78 file descriptor other than AT_FDCWD corresponds to the most
79 recently opened directory. This hack is good enough for Emacs. */
80 fd = 0;
81 d = opendir (name);
82 opendir_errno = errno;
83 #else
84 fd = emacs_open (name, O_RDONLY | O_DIRECTORY, 0);
85 if (fd < 0)
87 opendir_errno = errno;
88 d = 0;
90 else
92 d = fdopendir (fd);
93 opendir_errno = errno;
94 if (! d)
95 emacs_close (fd);
97 #endif
99 unblock_input ();
101 *fdp = fd;
102 errno = opendir_errno;
103 return d;
106 #ifdef WINDOWSNT
107 void
108 directory_files_internal_w32_unwind (Lisp_Object arg)
110 Vw32_get_true_file_attributes = arg;
112 #endif
114 static void
115 directory_files_internal_unwind (void *dh)
117 DIR *d = dh;
118 block_input ();
119 closedir (d);
120 unblock_input ();
123 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
124 If not ATTRS, return a list of directory filenames;
125 if ATTRS, return a list of directory filenames and their attributes.
126 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
128 Lisp_Object
129 directory_files_internal (Lisp_Object directory, Lisp_Object full,
130 Lisp_Object match, Lisp_Object nosort, bool attrs,
131 Lisp_Object id_format)
133 DIR *d;
134 int fd;
135 ptrdiff_t directory_nbytes;
136 Lisp_Object list, dirfilename, encoded_directory;
137 struct re_pattern_buffer *bufp = NULL;
138 bool needsep = 0;
139 ptrdiff_t count = SPECPDL_INDEX ();
140 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
141 struct dirent *dp;
142 #ifdef WINDOWSNT
143 Lisp_Object w32_save = Qnil;
144 #endif
146 /* Don't let the compiler optimize away all copies of DIRECTORY,
147 which would break GC; see Bug#16986. Although this is required
148 only in the common case where GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS,
149 it shouldn't break anything in the other cases. */
150 Lisp_Object volatile directory_volatile = directory;
152 /* Because of file name handlers, these functions might call
153 Ffuncall, and cause a GC. */
154 list = encoded_directory = dirfilename = Qnil;
155 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
156 dirfilename = Fdirectory_file_name (directory);
158 if (!NILP (match))
160 CHECK_STRING (match);
162 /* MATCH might be a flawed regular expression. Rather than
163 catching and signaling our own errors, we just call
164 compile_pattern to do the work for us. */
165 /* Pass 1 for the MULTIBYTE arg
166 because we do make multibyte strings if the contents warrant. */
167 # ifdef WINDOWSNT
168 /* Windows users want case-insensitive wildcards. */
169 bufp = compile_pattern (match, 0,
170 BVAR (&buffer_defaults, case_canon_table), 0, 1);
171 # else /* !WINDOWSNT */
172 bufp = compile_pattern (match, 0, Qnil, 0, 1);
173 # endif /* !WINDOWSNT */
176 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
177 run_pre_post_conversion_on_str which calls Lisp directly and
178 indirectly. */
179 if (STRING_MULTIBYTE (dirfilename))
180 dirfilename = ENCODE_FILE (dirfilename);
181 encoded_directory = (STRING_MULTIBYTE (directory)
182 ? ENCODE_FILE (directory) : directory);
184 /* Now *bufp is the compiled form of MATCH; don't call anything
185 which might compile a new regexp until we're done with the loop! */
187 d = open_directory (SSDATA (dirfilename), &fd);
188 if (d == NULL)
189 report_file_error ("Opening directory", directory);
191 /* Unfortunately, we can now invoke expand-file-name and
192 file-attributes on filenames, both of which can throw, so we must
193 do a proper unwind-protect. */
194 record_unwind_protect_ptr (directory_files_internal_unwind, d);
196 #ifdef WINDOWSNT
197 if (attrs)
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;
212 else
213 Vw32_get_true_file_attributes = Qt;
216 #endif
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)))
224 needsep = 1;
226 /* Loop reading blocks until EOF or error. */
227 for (;;)
229 ptrdiff_t len;
230 bool wanted = 0;
231 Lisp_Object name, finalname;
232 struct gcpro gcpro1, gcpro2;
234 errno = 0;
235 dp = readdir (d);
236 if (!dp)
238 if (errno == EAGAIN || errno == EINTR)
240 QUIT;
241 continue;
243 break;
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,
251 though. */
252 name = DECODE_FILE (name);
253 len = SBYTES (name);
255 /* Now that we have unwind_protect in place, we might as well
256 allow matching to be interrupted. */
257 immediate_quit = 1;
258 QUIT;
260 if (NILP (match)
261 || re_search (bufp, SSDATA (name), len, 0, len, 0) >= 0)
262 wanted = 1;
264 immediate_quit = 0;
266 if (wanted)
268 if (!NILP (full))
270 Lisp_Object fullname;
271 ptrdiff_t nbytes = len + directory_nbytes + needsep;
272 ptrdiff_t nchars;
274 fullname = make_uninit_multibyte_string (nbytes, nbytes);
275 memcpy (SDATA (fullname), SDATA (directory),
276 directory_nbytes);
278 if (needsep)
279 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
281 memcpy (SDATA (fullname) + directory_nbytes + needsep,
282 SDATA (name), len);
284 nchars = multibyte_chars_in_text (SDATA (fullname), nbytes);
286 /* Some bug somewhere. */
287 if (nchars > nbytes)
288 emacs_abort ();
290 STRING_SET_CHARS (fullname, nchars);
291 if (nchars == nbytes)
292 STRING_SET_UNIBYTE (fullname);
294 finalname = fullname;
296 else
297 finalname = name;
299 if (attrs)
301 Lisp_Object fileattrs
302 = file_attributes (fd, dp->d_name, id_format);
303 list = Fcons (Fcons (finalname, fileattrs), list);
305 else
306 list = Fcons (finalname, list);
309 UNGCPRO;
312 block_input ();
313 closedir (d);
314 unblock_input ();
315 #ifdef WINDOWSNT
316 if (attrs)
317 Vw32_get_true_file_attributes = w32_save;
318 #endif
320 /* Discard the unwind protect. */
321 specpdl_ptr = specpdl + count;
323 if (NILP (nosort))
324 list = Fsort (Fnreverse (list),
325 attrs ? Qfile_attributes_lessp : Qstring_lessp);
327 (void) directory_volatile;
328 RETURN_UNGCPRO (list);
332 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
333 doc: /* Return a list of names of files in DIRECTORY.
334 There are three optional arguments:
335 If FULL is non-nil, return absolute file names. Otherwise return names
336 that are relative to the specified directory.
337 If MATCH is non-nil, mention only file names that match the regexp MATCH.
338 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
339 Otherwise, the list returned is sorted with `string-lessp'.
340 NOSORT is useful if you plan to sort the result yourself. */)
341 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort)
343 Lisp_Object handler;
344 directory = Fexpand_file_name (directory, Qnil);
346 /* If the file name has special constructs in it,
347 call the corresponding file handler. */
348 handler = Ffind_file_name_handler (directory, Qdirectory_files);
349 if (!NILP (handler))
350 return call5 (handler, Qdirectory_files, directory,
351 full, match, nosort);
353 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
356 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
357 Sdirectory_files_and_attributes, 1, 5, 0,
358 doc: /* Return a list of names of files and their attributes in DIRECTORY.
359 There are four optional arguments:
360 If FULL is non-nil, return absolute file names. Otherwise return names
361 that are relative to the specified directory.
362 If MATCH is non-nil, mention only file names that match the regexp MATCH.
363 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
364 NOSORT is useful if you plan to sort the result yourself.
365 ID-FORMAT specifies the preferred format of attributes uid and gid, see
366 `file-attributes' for further documentation.
367 On MS-Windows, performance depends on `w32-get-true-file-attributes',
368 which see. */)
369 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
371 Lisp_Object handler;
372 directory = Fexpand_file_name (directory, Qnil);
374 /* If the file name has special constructs in it,
375 call the corresponding file handler. */
376 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
377 if (!NILP (handler))
378 return call6 (handler, Qdirectory_files_and_attributes,
379 directory, full, match, nosort, id_format);
381 return directory_files_internal (directory, full, match, nosort, 1, id_format);
385 static Lisp_Object file_name_completion (Lisp_Object, Lisp_Object, bool,
386 Lisp_Object);
388 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
389 2, 3, 0,
390 doc: /* Complete file name FILE in directory DIRECTORY.
391 Returns the longest string
392 common to all file names in DIRECTORY that start with FILE.
393 If there is only one and FILE matches it exactly, returns t.
394 Returns nil if DIRECTORY contains no name starting with FILE.
396 If PREDICATE is non-nil, call PREDICATE with each possible
397 completion (in absolute form) and ignore it if PREDICATE returns nil.
399 This function ignores some of the possible completions as
400 determined by the variable `completion-ignored-extensions', which see. */)
401 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate)
403 Lisp_Object handler;
404 directory = Fexpand_file_name (directory, Qnil);
406 /* If the directory name has special constructs in it,
407 call the corresponding file handler. */
408 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
409 if (!NILP (handler))
410 return call4 (handler, Qfile_name_completion, file, directory, predicate);
412 /* If the file name has special constructs in it,
413 call the corresponding file handler. */
414 handler = Ffind_file_name_handler (file, Qfile_name_completion);
415 if (!NILP (handler))
416 return call4 (handler, Qfile_name_completion, file, directory, predicate);
418 return file_name_completion (file, directory, 0, predicate);
421 DEFUN ("file-name-all-completions", Ffile_name_all_completions,
422 Sfile_name_all_completions, 2, 2, 0,
423 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
424 These are all file names in directory DIRECTORY which begin with FILE. */)
425 (Lisp_Object file, Lisp_Object directory)
427 Lisp_Object handler;
428 directory = Fexpand_file_name (directory, Qnil);
430 /* If the directory name has special constructs in it,
431 call the corresponding file handler. */
432 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
433 if (!NILP (handler))
434 return call3 (handler, Qfile_name_all_completions, file, directory);
436 /* If the file name has special constructs in it,
437 call the corresponding file handler. */
438 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
439 if (!NILP (handler))
440 return call3 (handler, Qfile_name_all_completions, file, directory);
442 return file_name_completion (file, directory, 1, Qnil);
445 static int file_name_completion_stat (int, struct dirent *, struct stat *);
447 static Lisp_Object
448 file_name_completion (Lisp_Object file, Lisp_Object dirname, bool all_flag,
449 Lisp_Object predicate)
451 DIR *d;
452 int fd;
453 ptrdiff_t bestmatchsize = 0;
454 int matchcount = 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;
461 struct stat st;
462 bool directoryp;
463 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
464 well as "." and "..". Until shown otherwise, assume we can't exclude
465 anything. */
466 bool includeall = 1;
467 ptrdiff_t count = SPECPDL_INDEX ();
468 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
470 elt = Qnil;
472 CHECK_STRING (file);
474 bestmatch = Qnil;
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 (Fdirectory_file_name (dirname));
489 d = open_directory (SSDATA (encoded_dir), &fd);
490 if (!d)
491 report_file_error ("Opening directory", dirname);
493 record_unwind_protect_ptr (directory_files_internal_unwind, d);
495 /* Loop reading blocks */
496 /* (att3b compiler bug requires do a null comparison this way) */
497 while (1)
499 struct dirent *dp;
500 ptrdiff_t len;
501 bool canexclude = 0;
503 errno = 0;
504 dp = readdir (d);
505 if (!dp)
507 if (errno == EAGAIN || errno == EINTR)
509 QUIT;
510 continue;
512 break;
515 len = dirent_namelen (dp);
517 QUIT;
518 if (len < SCHARS (encoded_file)
519 || (scmp (dp->d_name, SSDATA (encoded_file),
520 SCHARS (encoded_file))
521 >= 0))
522 continue;
524 if (file_name_completion_stat (fd, dp, &st) < 0)
525 continue;
527 directoryp = S_ISDIR (st.st_mode) != 0;
528 tem = Qnil;
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. */
532 if (!all_flag)
534 ptrdiff_t skip;
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. */
542 && matchcount > 1
543 && !includeall /* This match may allow includeall to 0. */
544 && len >= bestmatchsize
545 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
546 continue;
547 #endif
549 if (directoryp)
551 #ifndef TRIVIAL_DIRECTORY_ENTRY
552 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
553 #endif
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))
557 canexclude = 1;
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))
564 ptrdiff_t elt_len;
565 char *p1;
567 elt = XCAR (tem);
568 if (!STRINGP (elt))
569 continue;
570 /* Need to encode ELT, since scmp compares unibyte
571 strings only. */
572 elt = ENCODE_FILE (elt);
573 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
574 if (elt_len <= 0)
575 continue;
576 p1 = SSDATA (elt);
577 if (p1[elt_len] != '/')
578 continue;
579 skip = len - elt_len;
580 if (skip < 0)
581 continue;
583 if (scmp (dp->d_name + skip, p1, elt_len) >= 0)
584 continue;
585 break;
588 else
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))
597 elt = XCAR (tem);
598 if (!STRINGP (elt)) continue;
599 /* Need to encode ELT, since scmp compares unibyte
600 strings only. */
601 elt = ENCODE_FILE (elt);
602 skip = len - SCHARS (elt);
603 if (skip < 0) continue;
605 if (scmp (dp->d_name + skip, SSDATA (elt), SCHARS (elt))
606 >= 0)
607 continue;
608 break;
612 /* If an ignored-extensions match was found,
613 don't process this name as a completion. */
614 if (CONSP (tem))
615 canexclude = 1;
617 if (!includeall && canexclude)
618 /* We're not including all files and this file can be excluded. */
619 continue;
621 if (includeall && !canexclude)
622 { /* If we have one non-excludable file, we want to exclude the
623 excludable files. */
624 includeall = 0;
625 /* Throw away any previous excludable match found. */
626 bestmatch = Qnil;
627 bestmatchsize = 0;
628 matchcount = 0;
631 /* FIXME: If we move this `decode' earlier we can eliminate
632 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
633 name = make_unibyte_string (dp->d_name, len);
634 name = DECODE_FILE (name);
637 Lisp_Object regexps, table = (completion_ignore_case
638 ? Vascii_canon_table : Qnil);
640 /* Ignore this element if it fails to match all the regexps. */
641 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
642 regexps = XCDR (regexps))
643 if (fast_string_match_internal (XCAR (regexps), name, table) < 0)
644 break;
646 if (CONSP (regexps))
647 continue;
650 /* This is a possible completion */
651 if (directoryp)
652 /* This completion is a directory; make it end with '/'. */
653 name = Ffile_name_as_directory (name);
655 /* Test the predicate, if any. */
656 if (!NILP (predicate))
658 Lisp_Object val;
659 struct gcpro gcpro1;
661 GCPRO1 (name);
662 val = call1 (predicate, name);
663 UNGCPRO;
665 if (NILP (val))
666 continue;
669 /* Suitably record this match. */
671 matchcount += matchcount <= 1;
673 if (all_flag)
674 bestmatch = Fcons (name, bestmatch);
675 else if (NILP (bestmatch))
677 bestmatch = name;
678 bestmatchsize = SCHARS (name);
680 else
682 Lisp_Object zero = make_number (0);
683 /* FIXME: This is a copy of the code in Ftry_completion. */
684 ptrdiff_t compare = min (bestmatchsize, SCHARS (name));
685 Lisp_Object cmp
686 = Fcompare_strings (bestmatch, zero,
687 make_number (compare),
688 name, zero,
689 make_number (compare),
690 completion_ignore_case ? Qt : Qnil);
691 ptrdiff_t matchsize = EQ (cmp, Qt) ? compare : eabs (XINT (cmp)) - 1;
693 if (completion_ignore_case)
695 /* If this is an exact match except for case,
696 use it as the best match rather than one that is not
697 an exact match. This way, we get the case pattern
698 of the actual match. */
699 /* This tests that the current file is an exact match
700 but BESTMATCH is not (it is too long). */
701 if ((matchsize == SCHARS (name)
702 && matchsize + directoryp < SCHARS (bestmatch))
704 /* If there is no exact match ignoring case,
705 prefer a match that does not change the case
706 of the input. */
707 /* If there is more than one exact match aside from
708 case, and one of them is exact including case,
709 prefer that one. */
710 /* This == checks that, of current file and BESTMATCH,
711 either both or neither are exact. */
712 (((matchsize == SCHARS (name))
714 (matchsize + directoryp == SCHARS (bestmatch)))
715 && (cmp = Fcompare_strings (name, zero,
716 make_number (SCHARS (file)),
717 file, zero,
718 Qnil,
719 Qnil),
720 EQ (Qt, cmp))
721 && (cmp = Fcompare_strings (bestmatch, zero,
722 make_number (SCHARS (file)),
723 file, zero,
724 Qnil,
725 Qnil),
726 ! EQ (Qt, cmp))))
727 bestmatch = name;
729 bestmatchsize = matchsize;
731 /* If the best completion so far is reduced to the string
732 we're trying to complete, then we already know there's no
733 other completion, so there's no point looking any further. */
734 if (matchsize <= SCHARS (file)
735 && !includeall /* A future match may allow includeall to 0. */
736 /* If completion-ignore-case is non-nil, don't
737 short-circuit because we want to find the best
738 possible match *including* case differences. */
739 && (!completion_ignore_case || matchsize == 0)
740 /* The return value depends on whether it's the sole match. */
741 && matchcount > 1)
742 break;
747 UNGCPRO;
748 /* This closes the directory. */
749 bestmatch = unbind_to (count, bestmatch);
751 if (all_flag || NILP (bestmatch))
752 return bestmatch;
753 /* Return t if the supplied string is an exact match (counting case);
754 it does not require any change to be made. */
755 if (matchcount == 1 && !NILP (Fequal (bestmatch, file)))
756 return Qt;
757 bestmatch = Fsubstring (bestmatch, make_number (0),
758 make_number (bestmatchsize));
759 return bestmatch;
762 /* Compare exactly LEN chars of strings at S1 and S2,
763 ignoring case if appropriate.
764 Return -1 if strings match,
765 else number of chars that match at the beginning. */
767 static ptrdiff_t
768 scmp (const char *s1, const char *s2, ptrdiff_t len)
770 register ptrdiff_t l = len;
772 if (completion_ignore_case)
774 while (l
775 && (downcase ((unsigned char) *s1++)
776 == downcase ((unsigned char) *s2++)))
777 l--;
779 else
781 while (l && *s1++ == *s2++)
782 l--;
784 if (l == 0)
785 return -1;
786 else
787 return len - l;
790 static int
791 file_name_completion_stat (int fd, struct dirent *dp, struct stat *st_addr)
793 int value;
795 #ifdef MSDOS
796 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
797 but aren't required here. Avoid computing the following fields:
798 st_inode, st_size and st_nlink for directories, and the execute bits
799 in st_mode for non-directory files with non-standard extensions. */
801 unsigned short save_djstat_flags = _djstat_flags;
803 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
804 #endif /* MSDOS */
806 /* We want to return success if a link points to a nonexistent file,
807 but we want to return the status for what the link points to,
808 in case it is a directory. */
809 value = fstatat (fd, dp->d_name, st_addr, AT_SYMLINK_NOFOLLOW);
810 if (value == 0 && S_ISLNK (st_addr->st_mode))
811 fstatat (fd, dp->d_name, st_addr, 0);
812 #ifdef MSDOS
813 _djstat_flags = save_djstat_flags;
814 #endif /* MSDOS */
815 return value;
818 static char *
819 stat_uname (struct stat *st)
821 #ifdef WINDOWSNT
822 return st->st_uname;
823 #else
824 struct passwd *pw = getpwuid (st->st_uid);
826 if (pw)
827 return pw->pw_name;
828 else
829 return NULL;
830 #endif
833 static char *
834 stat_gname (struct stat *st)
836 #ifdef WINDOWSNT
837 return st->st_gname;
838 #else
839 struct group *gr = getgrgid (st->st_gid);
841 if (gr)
842 return gr->gr_name;
843 else
844 return NULL;
845 #endif
848 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
849 doc: /* Return a list of attributes of file FILENAME.
850 Value is nil if specified file cannot be opened.
852 ID-FORMAT specifies the preferred format of attributes uid and gid (see
853 below) - valid values are 'string and 'integer. The latter is the
854 default, but we plan to change that, so you should specify a non-nil value
855 for ID-FORMAT if you use the returned uid or gid.
857 Elements of the attribute list are:
858 0. t for directory, string (name linked to) for symbolic link, or nil.
859 1. Number of links to file.
860 2. File uid as a string or a number. If a string value cannot be
861 looked up, a numeric value, either an integer or a float, is returned.
862 3. File gid, likewise.
863 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
864 same style as (current-time).
865 (See a note below about access time on FAT-based filesystems.)
866 5. Last modification time, likewise. This is the time of the last
867 change to the file's contents.
868 6. Last status change time, likewise. This is the time of last change
869 to the file's attributes: owner and group, access mode bits, etc.
870 7. Size in bytes.
871 This is a floating point number if the size is too large for an integer.
872 8. File modes, as a string of ten letters or dashes as in ls -l.
873 9. An unspecified value, present only for backward compatibility.
874 10. inode number. If it is larger than what an Emacs integer can hold,
875 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
876 If even HIGH is too large for an Emacs integer, this is instead of the form
877 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
878 and finally the low 16 bits.
879 11. Filesystem device number. If it is larger than what the Emacs
880 integer can hold, this is a cons cell, similar to the inode number.
882 On most filesystems, the combination of the inode and the device
883 number uniquely identifies the file.
885 On MS-Windows, performance depends on `w32-get-true-file-attributes',
886 which see.
888 On some FAT-based filesystems, only the date of last access is recorded,
889 so last access time will always be midnight of that day. */)
890 (Lisp_Object filename, Lisp_Object id_format)
892 Lisp_Object encoded;
893 Lisp_Object handler;
895 filename = internal_condition_case_2 (Fexpand_file_name, filename, Qnil,
896 Qt, Fidentity);
897 if (!STRINGP (filename))
898 return Qnil;
900 /* If the file name has special constructs in it,
901 call the corresponding file handler. */
902 handler = Ffind_file_name_handler (filename, Qfile_attributes);
903 if (!NILP (handler))
904 { /* Only pass the extra arg if it is used to help backward compatibility
905 with old file handlers which do not implement the new arg. --Stef */
906 if (NILP (id_format))
907 return call2 (handler, Qfile_attributes, filename);
908 else
909 return call3 (handler, Qfile_attributes, filename, id_format);
912 encoded = ENCODE_FILE (filename);
913 return file_attributes (AT_FDCWD, SSDATA (encoded), id_format);
916 static Lisp_Object
917 file_attributes (int fd, char const *name, Lisp_Object id_format)
919 Lisp_Object values[12];
920 struct stat s;
921 int lstat_result;
923 /* An array to hold the mode string generated by filemodestring,
924 including its terminating space and null byte. */
925 char modes[sizeof "-rwxr-xr-x "];
927 char *uname = NULL, *gname = NULL;
929 #ifdef WINDOWSNT
930 /* We usually don't request accurate owner and group info, because
931 it can be very expensive on Windows to get that, and most callers
932 of 'lstat' don't need that. But here we do want that information
933 to be accurate. */
934 w32_stat_get_owner_group = 1;
935 #endif
937 lstat_result = fstatat (fd, name, &s, AT_SYMLINK_NOFOLLOW);
939 #ifdef WINDOWSNT
940 w32_stat_get_owner_group = 0;
941 #endif
943 if (lstat_result < 0)
944 return Qnil;
946 values[0] = (S_ISLNK (s.st_mode) ? emacs_readlinkat (fd, name)
947 : S_ISDIR (s.st_mode) ? Qt : Qnil);
948 values[1] = make_number (s.st_nlink);
950 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
952 block_input ();
953 uname = stat_uname (&s);
954 gname = stat_gname (&s);
955 unblock_input ();
957 if (uname)
958 values[2] = DECODE_SYSTEM (build_unibyte_string (uname));
959 else
960 values[2] = make_fixnum_or_float (s.st_uid);
961 if (gname)
962 values[3] = DECODE_SYSTEM (build_unibyte_string (gname));
963 else
964 values[3] = make_fixnum_or_float (s.st_gid);
966 values[4] = make_lisp_time (get_stat_atime (&s));
967 values[5] = make_lisp_time (get_stat_mtime (&s));
968 values[6] = make_lisp_time (get_stat_ctime (&s));
970 /* If the file size is a 4-byte type, assume that files of sizes in
971 the 2-4 GiB range wrap around to negative values, as this is a
972 common bug on older 32-bit platforms. */
973 if (sizeof (s.st_size) == 4)
974 values[7] = make_fixnum_or_float (s.st_size & 0xffffffffu);
975 else
976 values[7] = make_fixnum_or_float (s.st_size);
978 filemodestring (&s, modes);
979 values[8] = make_string (modes, 10);
980 values[9] = Qt;
981 values[10] = INTEGER_TO_CONS (s.st_ino);
982 values[11] = INTEGER_TO_CONS (s.st_dev);
984 return Flist (ARRAYELTS (values), values);
987 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
988 doc: /* Return t if first arg file attributes list is less than second.
989 Comparison is in lexicographic order and case is significant. */)
990 (Lisp_Object f1, Lisp_Object f2)
992 return Fstring_lessp (Fcar (f1), Fcar (f2));
996 DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
997 doc: /* Return a list of user names currently registered in the system.
998 If we don't know how to determine that on this platform, just
999 return a list with one element, taken from `user-real-login-name'. */)
1000 (void)
1002 Lisp_Object users = Qnil;
1003 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1004 struct passwd *pw;
1006 while ((pw = getpwent ()))
1007 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
1009 endpwent ();
1010 #endif
1011 if (EQ (users, Qnil))
1012 /* At least current user is always known. */
1013 users = list1 (Vuser_real_login_name);
1014 return users;
1017 DEFUN ("system-groups", Fsystem_groups, Ssystem_groups, 0, 0, 0,
1018 doc: /* Return a list of user group names currently registered in the system.
1019 The value may be nil if not supported on this platform. */)
1020 (void)
1022 Lisp_Object groups = Qnil;
1023 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1024 struct group *gr;
1026 while ((gr = getgrent ()))
1027 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1029 endgrent ();
1030 #endif
1031 return groups;
1034 void
1035 syms_of_dired (void)
1037 DEFSYM (Qdirectory_files, "directory-files");
1038 DEFSYM (Qdirectory_files_and_attributes, "directory-files-and-attributes");
1039 DEFSYM (Qfile_name_completion, "file-name-completion");
1040 DEFSYM (Qfile_name_all_completions, "file-name-all-completions");
1041 DEFSYM (Qfile_attributes, "file-attributes");
1042 DEFSYM (Qfile_attributes_lessp, "file-attributes-lessp");
1043 DEFSYM (Qdefault_directory, "default-directory");
1045 defsubr (&Sdirectory_files);
1046 defsubr (&Sdirectory_files_and_attributes);
1047 defsubr (&Sfile_name_completion);
1048 defsubr (&Sfile_name_all_completions);
1049 defsubr (&Sfile_attributes);
1050 defsubr (&Sfile_attributes_lessp);
1051 defsubr (&Ssystem_users);
1052 defsubr (&Ssystem_groups);
1054 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions,
1055 doc: /* Completion ignores file names ending in any string in this list.
1056 It does not ignore them if all possible completions end in one of
1057 these strings or when displaying a list of completions.
1058 It ignores directory names if they match any string in this list which
1059 ends in a slash. */);
1060 Vcompletion_ignored_extensions = Qnil;