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