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