]> code.delx.au - gnu-emacs/blob - src/dired.c
Merge from emacs-24
[gnu-emacs] / src / dired.c
1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2012 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <setjmp.h>
26
27 #ifdef HAVE_PWD_H
28 #include <pwd.h>
29 #endif
30 #include <grp.h>
31
32 #include <errno.h>
33 #include <unistd.h>
34
35 /* The d_nameln member of a struct dirent includes the '\0' character
36 on some systems, but not on others. What's worse, you can't tell
37 at compile-time which one it will be, since it really depends on
38 the sort of system providing the filesystem you're reading from,
39 not the system you are running on. Paul Eggert
40 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
41 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
42 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
43
44 Since applying strlen to the name always works, we'll just do that. */
45 #define NAMLEN(p) strlen (p->d_name)
46
47 #ifdef HAVE_DIRENT_H
48
49 #include <dirent.h>
50 #define DIRENTRY struct dirent
51
52 #else /* not HAVE_DIRENT_H */
53
54 #include <sys/dir.h>
55 #include <sys/stat.h>
56
57 #define DIRENTRY struct direct
58
59 extern DIR *opendir (char *);
60 extern struct direct *readdir (DIR *);
61
62 #endif /* HAVE_DIRENT_H */
63
64 #include <filemode.h>
65 #include <stat-time.h>
66
67 #ifdef MSDOS
68 #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
69 #else
70 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
71 #endif
72
73 #include "lisp.h"
74 #include "systime.h"
75 #include "character.h"
76 #include "buffer.h"
77 #include "commands.h"
78 #include "charset.h"
79 #include "coding.h"
80 #include "regex.h"
81 #include "blockinput.h"
82
83 static Lisp_Object Qdirectory_files;
84 static Lisp_Object Qdirectory_files_and_attributes;
85 static Lisp_Object Qfile_name_completion;
86 static Lisp_Object Qfile_name_all_completions;
87 static Lisp_Object Qfile_attributes;
88 static Lisp_Object Qfile_attributes_lessp;
89
90 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
91 \f
92 #ifdef WINDOWSNT
93 Lisp_Object
94 directory_files_internal_w32_unwind (Lisp_Object arg)
95 {
96 Vw32_get_true_file_attributes = arg;
97 return Qnil;
98 }
99 #endif
100
101 static Lisp_Object
102 directory_files_internal_unwind (Lisp_Object dh)
103 {
104 DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer;
105 BLOCK_INPUT;
106 closedir (d);
107 UNBLOCK_INPUT;
108 return Qnil;
109 }
110
111 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
112 When ATTRS is zero, return a list of directory filenames; when
113 non-zero, return a list of directory filenames and their attributes.
114 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
115
116 Lisp_Object
117 directory_files_internal (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, int attrs, Lisp_Object id_format)
118 {
119 DIR *d;
120 ptrdiff_t directory_nbytes;
121 Lisp_Object list, dirfilename, encoded_directory;
122 struct re_pattern_buffer *bufp = NULL;
123 int needsep = 0;
124 ptrdiff_t count = SPECPDL_INDEX ();
125 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
126 DIRENTRY *dp;
127 #ifdef WINDOWSNT
128 Lisp_Object w32_save = Qnil;
129 #endif
130
131 /* Because of file name handlers, these functions might call
132 Ffuncall, and cause a GC. */
133 list = encoded_directory = dirfilename = Qnil;
134 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
135 dirfilename = Fdirectory_file_name (directory);
136
137 if (!NILP (match))
138 {
139 CHECK_STRING (match);
140
141 /* MATCH might be a flawed regular expression. Rather than
142 catching and signaling our own errors, we just call
143 compile_pattern to do the work for us. */
144 /* Pass 1 for the MULTIBYTE arg
145 because we do make multibyte strings if the contents warrant. */
146 # ifdef WINDOWSNT
147 /* Windows users want case-insensitive wildcards. */
148 bufp = compile_pattern (match, 0,
149 BVAR (&buffer_defaults, case_canon_table), 0, 1);
150 # else /* !WINDOWSNT */
151 bufp = compile_pattern (match, 0, Qnil, 0, 1);
152 # endif /* !WINDOWSNT */
153 }
154
155 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
156 run_pre_post_conversion_on_str which calls Lisp directly and
157 indirectly. */
158 if (STRING_MULTIBYTE (dirfilename))
159 dirfilename = ENCODE_FILE (dirfilename);
160 encoded_directory = (STRING_MULTIBYTE (directory)
161 ? ENCODE_FILE (directory) : directory);
162
163 /* Now *bufp is the compiled form of MATCH; don't call anything
164 which might compile a new regexp until we're done with the loop! */
165
166 BLOCK_INPUT;
167 d = opendir (SSDATA (dirfilename));
168 UNBLOCK_INPUT;
169 if (d == NULL)
170 report_file_error ("Opening directory", Fcons (directory, Qnil));
171
172 /* Unfortunately, we can now invoke expand-file-name and
173 file-attributes on filenames, both of which can throw, so we must
174 do a proper unwind-protect. */
175 record_unwind_protect (directory_files_internal_unwind,
176 make_save_value (d, 0));
177
178 #ifdef WINDOWSNT
179 if (attrs)
180 {
181 extern int is_slow_fs (const char *);
182
183 /* Do this only once to avoid doing it (in w32.c:stat) for each
184 file in the directory, when we call Ffile_attributes below. */
185 record_unwind_protect (directory_files_internal_w32_unwind,
186 Vw32_get_true_file_attributes);
187 w32_save = Vw32_get_true_file_attributes;
188 if (EQ (Vw32_get_true_file_attributes, Qlocal))
189 {
190 /* w32.c:stat will notice these bindings and avoid calling
191 GetDriveType for each file. */
192 if (is_slow_fs (SDATA (dirfilename)))
193 Vw32_get_true_file_attributes = Qnil;
194 else
195 Vw32_get_true_file_attributes = Qt;
196 }
197 }
198 #endif
199
200 directory_nbytes = SBYTES (directory);
201 re_match_object = Qt;
202
203 /* Decide whether we need to add a directory separator. */
204 if (directory_nbytes == 0
205 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
206 needsep = 1;
207
208 /* Loop reading blocks until EOF or error. */
209 for (;;)
210 {
211 errno = 0;
212 dp = readdir (d);
213
214 if (dp == NULL && (0
215 #ifdef EAGAIN
216 || errno == EAGAIN
217 #endif
218 #ifdef EINTR
219 || errno == EINTR
220 #endif
221 ))
222 { QUIT; continue; }
223
224 if (dp == NULL)
225 break;
226
227 if (DIRENTRY_NONEMPTY (dp))
228 {
229 ptrdiff_t len;
230 int wanted = 0;
231 Lisp_Object name, finalname;
232 struct gcpro gcpro1, gcpro2;
233
234 len = NAMLEN (dp);
235 name = finalname = make_unibyte_string (dp->d_name, len);
236 GCPRO2 (finalname, name);
237
238 /* Note: DECODE_FILE can GC; it should protect its argument,
239 though. */
240 name = DECODE_FILE (name);
241 len = SBYTES (name);
242
243 /* Now that we have unwind_protect in place, we might as well
244 allow matching to be interrupted. */
245 immediate_quit = 1;
246 QUIT;
247
248 if (NILP (match)
249 || (0 <= re_search (bufp, SSDATA (name), len, 0, len, 0)))
250 wanted = 1;
251
252 immediate_quit = 0;
253
254 if (wanted)
255 {
256 if (!NILP (full))
257 {
258 Lisp_Object fullname;
259 ptrdiff_t nbytes = len + directory_nbytes + needsep;
260 ptrdiff_t nchars;
261
262 fullname = make_uninit_multibyte_string (nbytes, nbytes);
263 memcpy (SDATA (fullname), SDATA (directory),
264 directory_nbytes);
265
266 if (needsep)
267 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
268
269 memcpy (SDATA (fullname) + directory_nbytes + needsep,
270 SDATA (name), len);
271
272 nchars = chars_in_text (SDATA (fullname), nbytes);
273
274 /* Some bug somewhere. */
275 if (nchars > nbytes)
276 abort ();
277
278 STRING_SET_CHARS (fullname, nchars);
279 if (nchars == nbytes)
280 STRING_SET_UNIBYTE (fullname);
281
282 finalname = fullname;
283 }
284 else
285 finalname = name;
286
287 if (attrs)
288 {
289 /* Construct an expanded filename for the directory entry.
290 Use the decoded names for input to Ffile_attributes. */
291 Lisp_Object decoded_fullname, fileattrs;
292 struct gcpro gcpro1, gcpro2;
293
294 decoded_fullname = fileattrs = Qnil;
295 GCPRO2 (decoded_fullname, fileattrs);
296
297 /* Both Fexpand_file_name and Ffile_attributes can GC. */
298 decoded_fullname = Fexpand_file_name (name, directory);
299 fileattrs = Ffile_attributes (decoded_fullname, id_format);
300
301 list = Fcons (Fcons (finalname, fileattrs), list);
302 UNGCPRO;
303 }
304 else
305 list = Fcons (finalname, list);
306 }
307
308 UNGCPRO;
309 }
310 }
311
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
319
320 /* Discard the unwind protect. */
321 specpdl_ptr = specpdl + count;
322
323 if (NILP (nosort))
324 list = Fsort (Fnreverse (list),
325 attrs ? Qfile_attributes_lessp : Qstring_lessp);
326
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
385 (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag,
386 Lisp_Object predicate);
387
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.
395
396 If PREDICATE is non-nil, call PREDICATE with each possible
397 completion (in absolute form) and ignore it if PREDICATE returns nil.
398
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)
402 {
403 Lisp_Object handler;
404 directory = Fexpand_file_name (directory, Qnil);
405
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);
411
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);
417
418 return file_name_completion (file, directory, 0, 0, predicate);
419 }
420
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)
426 {
427 Lisp_Object handler;
428 directory = Fexpand_file_name (directory, Qnil);
429
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);
435
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);
441
442 return file_name_completion (file, directory, 1, 0, Qnil);
443 }
444
445 static int file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr);
446 static Lisp_Object Qdefault_directory;
447
448 static Lisp_Object
449 file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate)
450 {
451 DIR *d;
452 ptrdiff_t bestmatchsize = 0;
453 int matchcount = 0;
454 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
455 If ALL_FLAG is 0, BESTMATCH is either nil
456 or the best match so far, not decoded. */
457 Lisp_Object bestmatch, tem, elt, name;
458 Lisp_Object encoded_file;
459 Lisp_Object encoded_dir;
460 struct stat st;
461 int directoryp;
462 /* If includeall is zero, exclude files in completion-ignored-extensions as
463 well as "." and "..". Until shown otherwise, assume we can't exclude
464 anything. */
465 int includeall = 1;
466 ptrdiff_t count = SPECPDL_INDEX ();
467 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
468
469 elt = Qnil;
470
471 CHECK_STRING (file);
472
473 bestmatch = Qnil;
474 encoded_file = encoded_dir = Qnil;
475 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
476 specbind (Qdefault_directory, dirname);
477
478 /* Do completion on the encoded file name
479 because the other names in the directory are (we presume)
480 encoded likewise. We decode the completed string at the end. */
481 /* Actually, this is not quite true any more: we do most of the completion
482 work with decoded file names, but we still do some filtering based
483 on the encoded file name. */
484 encoded_file = STRING_MULTIBYTE (file) ? ENCODE_FILE (file) : file;
485
486 encoded_dir = ENCODE_FILE (dirname);
487
488 BLOCK_INPUT;
489 d = opendir (SSDATA (Fdirectory_file_name (encoded_dir)));
490 UNBLOCK_INPUT;
491 if (!d)
492 report_file_error ("Opening directory", Fcons (dirname, Qnil));
493
494 record_unwind_protect (directory_files_internal_unwind,
495 make_save_value (d, 0));
496
497 /* Loop reading blocks */
498 /* (att3b compiler bug requires do a null comparison this way) */
499 while (1)
500 {
501 DIRENTRY *dp;
502 ptrdiff_t len;
503 int canexclude = 0;
504
505 errno = 0;
506 dp = readdir (d);
507 if (dp == NULL && (0
508 # ifdef EAGAIN
509 || errno == EAGAIN
510 # endif
511 # ifdef EINTR
512 || errno == EINTR
513 # endif
514 ))
515 { QUIT; continue; }
516
517 if (!dp) break;
518
519 len = NAMLEN (dp);
520
521 QUIT;
522 if (! DIRENTRY_NONEMPTY (dp)
523 || len < SCHARS (encoded_file)
524 || 0 <= scmp (dp->d_name, SSDATA (encoded_file),
525 SCHARS (encoded_file)))
526 continue;
527
528 if (file_name_completion_stat (encoded_dir, dp, &st) < 0)
529 continue;
530
531 directoryp = S_ISDIR (st.st_mode);
532 tem = Qnil;
533 /* If all_flag is set, always include all.
534 It would not actually be helpful to the user to ignore any possible
535 completions when making a list of them. */
536 if (!all_flag)
537 {
538 ptrdiff_t skip;
539
540 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
541 /* If this entry matches the current bestmatch, the only
542 thing it can do is increase matchcount, so don't bother
543 investigating it any further. */
544 if (!completion_ignore_case
545 /* The return result depends on whether it's the sole match. */
546 && matchcount > 1
547 && !includeall /* This match may allow includeall to 0. */
548 && len >= bestmatchsize
549 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
550 continue;
551 #endif
552
553 if (directoryp)
554 {
555 #ifndef TRIVIAL_DIRECTORY_ENTRY
556 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
557 #endif
558 /* "." and ".." are never interesting as completions, and are
559 actually in the way in a directory with only one file. */
560 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
561 canexclude = 1;
562 else if (len > SCHARS (encoded_file))
563 /* Ignore directories if they match an element of
564 completion-ignored-extensions which ends in a slash. */
565 for (tem = Vcompletion_ignored_extensions;
566 CONSP (tem); tem = XCDR (tem))
567 {
568 ptrdiff_t elt_len;
569 char *p1;
570
571 elt = XCAR (tem);
572 if (!STRINGP (elt))
573 continue;
574 /* Need to encode ELT, since scmp compares unibyte
575 strings only. */
576 elt = ENCODE_FILE (elt);
577 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
578 if (elt_len <= 0)
579 continue;
580 p1 = SSDATA (elt);
581 if (p1[elt_len] != '/')
582 continue;
583 skip = len - elt_len;
584 if (skip < 0)
585 continue;
586
587 if (0 <= scmp (dp->d_name + skip, p1, elt_len))
588 continue;
589 break;
590 }
591 }
592 else
593 {
594 /* Compare extensions-to-be-ignored against end of this file name */
595 /* if name is not an exact match against specified string */
596 if (len > SCHARS (encoded_file))
597 /* and exit this for loop if a match is found */
598 for (tem = Vcompletion_ignored_extensions;
599 CONSP (tem); tem = XCDR (tem))
600 {
601 elt = XCAR (tem);
602 if (!STRINGP (elt)) continue;
603 /* Need to encode ELT, since scmp compares unibyte
604 strings only. */
605 elt = ENCODE_FILE (elt);
606 skip = len - SCHARS (elt);
607 if (skip < 0) continue;
608
609 if (0 <= scmp (dp->d_name + skip,
610 SSDATA (elt),
611 SCHARS (elt)))
612 continue;
613 break;
614 }
615 }
616
617 /* If an ignored-extensions match was found,
618 don't process this name as a completion. */
619 if (CONSP (tem))
620 canexclude = 1;
621
622 if (!includeall && canexclude)
623 /* We're not including all files and this file can be excluded. */
624 continue;
625
626 if (includeall && !canexclude)
627 { /* If we have one non-excludable file, we want to exclude the
628 excludable files. */
629 includeall = 0;
630 /* Throw away any previous excludable match found. */
631 bestmatch = Qnil;
632 bestmatchsize = 0;
633 matchcount = 0;
634 }
635 }
636 /* FIXME: If we move this `decode' earlier we can eliminate
637 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
638 name = make_unibyte_string (dp->d_name, len);
639 name = DECODE_FILE (name);
640
641 {
642 Lisp_Object regexps;
643
644 /* Ignore this element if it fails to match all the regexps. */
645 if (completion_ignore_case)
646 {
647 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
648 regexps = XCDR (regexps))
649 if (fast_string_match_ignore_case (XCAR (regexps), name) < 0)
650 break;
651 }
652 else
653 {
654 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
655 regexps = XCDR (regexps))
656 if (fast_string_match (XCAR (regexps), name) < 0)
657 break;
658 }
659
660 if (CONSP (regexps))
661 continue;
662 }
663
664 /* This is a possible completion */
665 if (directoryp)
666 /* This completion is a directory; make it end with '/'. */
667 name = Ffile_name_as_directory (name);
668
669 /* Test the predicate, if any. */
670 if (!NILP (predicate))
671 {
672 Lisp_Object val;
673 struct gcpro gcpro1;
674
675 GCPRO1 (name);
676 val = call1 (predicate, name);
677 UNGCPRO;
678
679 if (NILP (val))
680 continue;
681 }
682
683 /* Suitably record this match. */
684
685 matchcount += matchcount <= 1;
686
687 if (all_flag)
688 bestmatch = Fcons (name, bestmatch);
689 else if (NILP (bestmatch))
690 {
691 bestmatch = name;
692 bestmatchsize = SCHARS (name);
693 }
694 else
695 {
696 Lisp_Object zero = make_number (0);
697 /* FIXME: This is a copy of the code in Ftry_completion. */
698 ptrdiff_t compare = min (bestmatchsize, SCHARS (name));
699 Lisp_Object cmp
700 = Fcompare_strings (bestmatch, zero,
701 make_number (compare),
702 name, zero,
703 make_number (compare),
704 completion_ignore_case ? Qt : Qnil);
705 ptrdiff_t matchsize
706 = (EQ (cmp, Qt) ? compare
707 : XINT (cmp) < 0 ? - XINT (cmp) - 1
708 : XINT (cmp) - 1);
709
710 if (completion_ignore_case)
711 {
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))
720 ||
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))
730 ==
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;
745 }
746 bestmatchsize = matchsize;
747
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;
760
761 }
762 }
763
764 UNGCPRO;
765 /* This closes the directory. */
766 bestmatch = unbind_to (count, bestmatch);
767
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;
777 }
778
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. */
783
784 static ptrdiff_t
785 scmp (const char *s1, const char *s2, ptrdiff_t len)
786 {
787 register ptrdiff_t l = len;
788
789 if (completion_ignore_case)
790 {
791 while (l
792 && (downcase ((unsigned char) *s1++)
793 == downcase ((unsigned char) *s2++)))
794 l--;
795 }
796 else
797 {
798 while (l && *s1++ == *s2++)
799 l--;
800 }
801 if (l == 0)
802 return -1;
803 else
804 return len - l;
805 }
806
807 static int
808 file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr)
809 {
810 ptrdiff_t len = NAMLEN (dp);
811 ptrdiff_t pos = SCHARS (dirname);
812 int value;
813 char *fullname;
814 USE_SAFE_ALLOCA;
815 SAFE_ALLOCA (fullname, char *, len + pos + 2);
816
817 #ifdef MSDOS
818 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
819 but aren't required here. Avoid computing the following fields:
820 st_inode, st_size and st_nlink for directories, and the execute bits
821 in st_mode for non-directory files with non-standard extensions. */
822
823 unsigned short save_djstat_flags = _djstat_flags;
824
825 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
826 #endif /* MSDOS */
827
828 memcpy (fullname, SDATA (dirname), pos);
829 if (!IS_DIRECTORY_SEP (fullname[pos - 1]))
830 fullname[pos++] = DIRECTORY_SEP;
831
832 memcpy (fullname + pos, dp->d_name, len);
833 fullname[pos + len] = 0;
834
835 /* We want to return success if a link points to a nonexistent file,
836 but we want to return the status for what the link points to,
837 in case it is a directory. */
838 value = lstat (fullname, st_addr);
839 if (value == 0 && S_ISLNK (st_addr->st_mode))
840 stat (fullname, st_addr);
841 #ifdef MSDOS
842 _djstat_flags = save_djstat_flags;
843 #endif /* MSDOS */
844 SAFE_FREE ();
845 return value;
846 }
847 \f
848 static char *
849 stat_uname (struct stat *st)
850 {
851 #ifdef WINDOWSNT
852 return st->st_uname;
853 #else
854 struct passwd *pw = (struct passwd *) getpwuid (st->st_uid);
855
856 if (pw)
857 return pw->pw_name;
858 else
859 return NULL;
860 #endif
861 }
862
863 static char *
864 stat_gname (struct stat *st)
865 {
866 #ifdef WINDOWSNT
867 return st->st_gname;
868 #else
869 struct group *gr = (struct group *) getgrgid (st->st_gid);
870
871 if (gr)
872 return gr->gr_name;
873 else
874 return NULL;
875 #endif
876 }
877
878 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
879 doc: /* Return a list of attributes of file FILENAME.
880 Value is nil if specified file cannot be opened.
881
882 ID-FORMAT specifies the preferred format of attributes uid and gid (see
883 below) - valid values are 'string and 'integer. The latter is the
884 default, but we plan to change that, so you should specify a non-nil value
885 for ID-FORMAT if you use the returned uid or gid.
886
887 Elements of the attribute list are:
888 0. t for directory, string (name linked to) for symbolic link, or nil.
889 1. Number of links to file.
890 2. File uid as a string or a number. If a string value cannot be
891 looked up, a numeric value, either an integer or a float, is returned.
892 3. File gid, likewise.
893 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
894 same style as (current-time).
895 (See a note below about access time on FAT-based filesystems.)
896 5. Last modification time, likewise. This is the time of the last
897 change to the file's contents.
898 6. Last status change time, likewise. This is the time of last change
899 to the file's attributes: owner and group, access mode bits, etc.
900 7. Size in bytes.
901 This is a floating point number if the size is too large for an integer.
902 8. File modes, as a string of ten letters or dashes as in ls -l.
903 9. t if file's gid would change if file were deleted and recreated.
904 10. inode number. If it is larger than what an Emacs integer can hold,
905 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
906 If even HIGH is too large for an Emacs integer, this is instead of the form
907 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
908 and finally the low 16 bits.
909 11. Filesystem device number. If it is larger than what the Emacs
910 integer can hold, this is a cons cell, similar to the inode number.
911
912 On most filesystems, the combination of the inode and the device
913 number uniquely identifies the file.
914
915 On MS-Windows, performance depends on `w32-get-true-file-attributes',
916 which see.
917
918 On some FAT-based filesystems, only the date of last access is recorded,
919 so last access time will always be midnight of that day. */)
920 (Lisp_Object filename, Lisp_Object id_format)
921 {
922 Lisp_Object values[12];
923 Lisp_Object encoded;
924 struct stat s;
925 #ifdef BSD4_2
926 Lisp_Object dirname;
927 struct stat sdir;
928 #endif /* BSD4_2 */
929
930 /* An array to hold the mode string generated by filemodestring,
931 including its terminating space and null byte. */
932 char modes[sizeof "-rwxr-xr-x "];
933
934 Lisp_Object handler;
935 struct gcpro gcpro1;
936 char *uname = NULL, *gname = NULL;
937
938 filename = Fexpand_file_name (filename, Qnil);
939
940 /* If the file name has special constructs in it,
941 call the corresponding file handler. */
942 handler = Ffind_file_name_handler (filename, Qfile_attributes);
943 if (!NILP (handler))
944 { /* Only pass the extra arg if it is used to help backward compatibility
945 with old file handlers which do not implement the new arg. --Stef */
946 if (NILP (id_format))
947 return call2 (handler, Qfile_attributes, filename);
948 else
949 return call3 (handler, Qfile_attributes, filename, id_format);
950 }
951
952 GCPRO1 (filename);
953 encoded = ENCODE_FILE (filename);
954 UNGCPRO;
955
956 if (lstat (SSDATA (encoded), &s) < 0)
957 return Qnil;
958
959 values[0] = (S_ISLNK (s.st_mode) ? Ffile_symlink_p (filename)
960 : S_ISDIR (s.st_mode) ? Qt : Qnil);
961 values[1] = make_number (s.st_nlink);
962
963 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
964 {
965 BLOCK_INPUT;
966 uname = stat_uname (&s);
967 gname = stat_gname (&s);
968 UNBLOCK_INPUT;
969 }
970 if (uname)
971 values[2] = DECODE_SYSTEM (build_string (uname));
972 else
973 values[2] = make_fixnum_or_float (s.st_uid);
974 if (gname)
975 values[3] = DECODE_SYSTEM (build_string (gname));
976 else
977 values[3] = make_fixnum_or_float (s.st_gid);
978
979 values[4] = make_lisp_time (get_stat_atime (&s));
980 values[5] = make_lisp_time (get_stat_mtime (&s));
981 values[6] = make_lisp_time (get_stat_ctime (&s));
982
983 /* If the file size is a 4-byte type, assume that files of sizes in
984 the 2-4 GiB range wrap around to negative values, as this is a
985 common bug on older 32-bit platforms. */
986 if (sizeof (s.st_size) == 4)
987 values[7] = make_fixnum_or_float (s.st_size & 0xffffffffu);
988 else
989 values[7] = make_fixnum_or_float (s.st_size);
990
991 filemodestring (&s, modes);
992 values[8] = make_string (modes, 10);
993 #ifdef BSD4_2 /* file gid will be dir gid */
994 dirname = Ffile_name_directory (filename);
995 if (! NILP (dirname))
996 encoded = ENCODE_FILE (dirname);
997 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0)
998 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
999 else /* if we can't tell, assume worst */
1000 values[9] = Qt;
1001 #else /* file gid will be egid */
1002 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
1003 #endif /* not BSD4_2 */
1004 values[10] = INTEGER_TO_CONS (s.st_ino);
1005 values[11] = INTEGER_TO_CONS (s.st_dev);
1006
1007 return Flist (sizeof (values) / sizeof (values[0]), values);
1008 }
1009
1010 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
1011 doc: /* Return t if first arg file attributes list is less than second.
1012 Comparison is in lexicographic order and case is significant. */)
1013 (Lisp_Object f1, Lisp_Object f2)
1014 {
1015 return Fstring_lessp (Fcar (f1), Fcar (f2));
1016 }
1017 \f
1018
1019 DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
1020 doc: /* Return a list of user names currently registered in the system.
1021 If we don't know how to determine that on this platform, just
1022 return a list with one element, taken from `user-real-login-name'. */)
1023 (void)
1024 {
1025 Lisp_Object users = Qnil;
1026 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
1027 struct passwd *pw;
1028
1029 while ((pw = getpwent ()))
1030 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
1031
1032 endpwent ();
1033 #endif
1034 if (EQ (users, Qnil))
1035 /* At least current user is always known. */
1036 users = Fcons (Vuser_real_login_name, Qnil);
1037 return users;
1038 }
1039
1040 DEFUN ("system-groups", Fsystem_groups, Ssystem_groups, 0, 0, 0,
1041 doc: /* Return a list of user group names currently registered in the system.
1042 The value may be nil if not supported on this platform. */)
1043 (void)
1044 {
1045 Lisp_Object groups = Qnil;
1046 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1047 struct group *gr;
1048
1049 while ((gr = getgrent ()))
1050 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1051
1052 endgrent ();
1053 #endif
1054 return groups;
1055 }
1056
1057 void
1058 syms_of_dired (void)
1059 {
1060 DEFSYM (Qdirectory_files, "directory-files");
1061 DEFSYM (Qdirectory_files_and_attributes, "directory-files-and-attributes");
1062 DEFSYM (Qfile_name_completion, "file-name-completion");
1063 DEFSYM (Qfile_name_all_completions, "file-name-all-completions");
1064 DEFSYM (Qfile_attributes, "file-attributes");
1065 DEFSYM (Qfile_attributes_lessp, "file-attributes-lessp");
1066 DEFSYM (Qdefault_directory, "default-directory");
1067
1068 defsubr (&Sdirectory_files);
1069 defsubr (&Sdirectory_files_and_attributes);
1070 defsubr (&Sfile_name_completion);
1071 defsubr (&Sfile_name_all_completions);
1072 defsubr (&Sfile_attributes);
1073 defsubr (&Sfile_attributes_lessp);
1074 defsubr (&Ssystem_users);
1075 defsubr (&Ssystem_groups);
1076
1077 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions,
1078 doc: /* Completion ignores file names ending in any string in this list.
1079 It does not ignore them if all possible completions end in one of
1080 these strings or when displaying a list of completions.
1081 It ignores directory names if they match any string in this list which
1082 ends in a slash. */);
1083 Vcompletion_ignored_extensions = Qnil;
1084 }