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