Remove unnecessary casts involving pointers.
[bpt/emacs.git] / src / dired.c
CommitLineData
14d55bce 1/* Lisp functions for making directory listings.
acaf905b 2 Copyright (C) 1985-1986, 1993-1994, 1999-2012 Free Software Foundation, Inc.
14d55bce
RS
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
14d55bce 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
14d55bce
RS
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
14d55bce
RS
18
19
3964b9a7
RS
20#include <config.h>
21
14d55bce
RS
22#include <stdio.h>
23#include <sys/types.h>
24#include <sys/stat.h>
d7306fe6 25#include <setjmp.h>
14d55bce 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>
dfcf069d 33#include <unistd.h>
dfcf069d 34
d6717cdb
JB
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
1c97e857 47#ifdef HAVE_DIRENT_H
14d55bce
RS
48
49#include <dirent.h>
50#define DIRENTRY struct dirent
14d55bce 51
1c97e857 52#else /* not HAVE_DIRENT_H */
14d55bce 53
14d55bce 54#include <sys/dir.h>
851cab13
DL
55#include <sys/stat.h>
56
14d55bce 57#define DIRENTRY struct direct
14d55bce 58
361358ea
JB
59extern DIR *opendir (char *);
60extern struct direct *readdir (DIR *);
14d55bce 61
1c97e857 62#endif /* HAVE_DIRENT_H */
128ecc89 63
d209feed 64#include <filemode.h>
d35af63c 65#include <stat-time.h>
d209feed 66
9f8c08a7 67#ifdef MSDOS
128ecc89
RS
68#define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
69#else
70#define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
14d55bce
RS
71#endif
72
14d55bce 73#include "lisp.h"
fa8459a3 74#include "systime.h"
e5560ff7 75#include "character.h"
14d55bce
RS
76#include "buffer.h"
77#include "commands.h"
bd33479f
KH
78#include "charset.h"
79#include "coding.h"
14d55bce 80#include "regex.h"
8c8a7c58 81#include "blockinput.h"
14d55bce 82
955cbe7b
PE
83static Lisp_Object Qdirectory_files;
84static Lisp_Object Qdirectory_files_and_attributes;
85static Lisp_Object Qfile_name_completion;
86static Lisp_Object Qfile_name_all_completions;
87static Lisp_Object Qfile_attributes;
88static Lisp_Object Qfile_attributes_lessp;
b3f04ced 89
d311d28c 90static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
14d55bce 91\f
65156807
EZ
92#ifdef WINDOWSNT
93Lisp_Object
94directory_files_internal_w32_unwind (Lisp_Object arg)
95{
96 Vw32_get_true_file_attributes = arg;
97 return Qnil;
98}
99#endif
2488aba5 100
4a6bea26 101static Lisp_Object
971de7fb 102directory_files_internal_unwind (Lisp_Object dh)
2488aba5 103{
9d291bdf 104 DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer;
d15b573e 105 BLOCK_INPUT;
2488aba5 106 closedir (d);
d15b573e 107 UNBLOCK_INPUT;
2488aba5
AI
108 return Qnil;
109}
110
177c0ea7 111/* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
4424b255 112 When ATTRS is zero, return a list of directory filenames; when
6b61353c
KH
113 non-zero, return a list of directory filenames and their attributes.
114 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
f69f9da1 115
4424b255 116Lisp_Object
971de7fb 117directory_files_internal (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, int attrs, Lisp_Object id_format)
14d55bce
RS
118{
119 DIR *d;
d311d28c 120 ptrdiff_t directory_nbytes;
388ac098 121 Lisp_Object list, dirfilename, encoded_directory;
6bbd7a29 122 struct re_pattern_buffer *bufp = NULL;
96d64004 123 int needsep = 0;
d311d28c 124 ptrdiff_t count = SPECPDL_INDEX ();
388ac098 125 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
8e42f043 126 DIRENTRY *dp;
65156807
EZ
127#ifdef WINDOWSNT
128 Lisp_Object w32_save = Qnil;
129#endif
32f4334d 130
96d64004 131 /* Because of file name handlers, these functions might call
6155fae1 132 Ffuncall, and cause a GC. */
388ac098
GM
133 list = encoded_directory = dirfilename = Qnil;
134 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
96d64004 135 dirfilename = Fdirectory_file_name (directory);
6155fae1 136
265a9e55 137 if (!NILP (match))
14d55bce 138 {
b7826503 139 CHECK_STRING (match);
ebb9e16f
JB
140
141 /* MATCH might be a flawed regular expression. Rather than
8e6208c5 142 catching and signaling our own errors, we just call
ebb9e16f 143 compile_pattern to do the work for us. */
c872c6b2
RS
144 /* Pass 1 for the MULTIBYTE arg
145 because we do make multibyte strings if the contents warrant. */
1a9fbabe
EZ
146# ifdef WINDOWSNT
147 /* Windows users want case-insensitive wildcards. */
148 bufp = compile_pattern (match, 0,
4b4deea2 149 BVAR (&buffer_defaults, case_canon_table), 0, 1);
1a9fbabe 150# else /* !WINDOWSNT */
3e937712 151 bufp = compile_pattern (match, 0, Qnil, 0, 1);
1a9fbabe 152# endif /* !WINDOWSNT */
14d55bce
RS
153 }
154
b3edfc9b 155 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
388ac098
GM
156 run_pre_post_conversion_on_str which calls Lisp directly and
157 indirectly. */
6c8b4f07
SM
158 if (STRING_MULTIBYTE (dirfilename))
159 dirfilename = ENCODE_FILE (dirfilename);
160 encoded_directory = (STRING_MULTIBYTE (directory)
161 ? ENCODE_FILE (directory) : directory);
24c2a54f 162
e50c66d3 163 /* Now *bufp is the compiled form of MATCH; don't call anything
6155fae1
JB
164 which might compile a new regexp until we're done with the loop! */
165
d15b573e 166 BLOCK_INPUT;
42a5b22f 167 d = opendir (SSDATA (dirfilename));
d15b573e 168 UNBLOCK_INPUT;
388ac098 169 if (d == NULL)
23bd240f 170 report_file_error ("Opening directory", Fcons (directory, Qnil));
14d55bce 171
2488aba5
AI
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,
9d291bdf 176 make_save_value (d, 0));
2488aba5 177
65156807
EZ
178#ifdef WINDOWSNT
179 if (attrs)
180 {
65156807
EZ
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 {
65156807
EZ
190 /* w32.c:stat will notice these bindings and avoid calling
191 GetDriveType for each file. */
b6046155 192 if (is_slow_fs (SDATA (dirfilename)))
65156807
EZ
193 Vw32_get_true_file_attributes = Qnil;
194 else
195 Vw32_get_true_file_attributes = Qt;
196 }
197 }
198#endif
199
d5db4077 200 directory_nbytes = SBYTES (directory);
c81a9bdc 201 re_match_object = Qt;
14d55bce 202
96d64004 203 /* Decide whether we need to add a directory separator. */
388ac098 204 if (directory_nbytes == 0
d5db4077 205 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
96d64004 206 needsep = 1;
96d64004 207
8e42f043 208 /* Loop reading blocks until EOF or error. */
f69f9da1 209 for (;;)
14d55bce 210 {
f69f9da1
GM
211 errno = 0;
212 dp = readdir (d);
213
9d291bdf 214 if (dp == NULL && (0
f69f9da1 215#ifdef EAGAIN
9d291bdf
SM
216 || errno == EAGAIN
217#endif
218#ifdef EINTR
219 || errno == EINTR
f69f9da1 220#endif
9d291bdf
SM
221 ))
222 { QUIT; continue; }
177c0ea7 223
f69f9da1
GM
224 if (dp == NULL)
225 break;
226
128ecc89 227 if (DIRENTRY_NONEMPTY (dp))
14d55bce 228 {
d311d28c 229 ptrdiff_t len;
2488aba5 230 int wanted = 0;
388ac098 231 Lisp_Object name, finalname;
dbf31225 232 struct gcpro gcpro1, gcpro2;
e23f810c
KH
233
234 len = NAMLEN (dp);
9ad4f3e5 235 name = finalname = make_unibyte_string (dp->d_name, len);
dbf31225 236 GCPRO2 (finalname, name);
177c0ea7 237
6c8b4f07 238 /* Note: DECODE_FILE can GC; it should protect its argument,
388ac098
GM
239 though. */
240 name = DECODE_FILE (name);
d5db4077 241 len = SBYTES (name);
e23f810c 242
2488aba5
AI
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
265a9e55 248 if (NILP (match)
42a5b22f 249 || (0 <= re_search (bufp, SSDATA (name), len, 0, len, 0)))
388ac098 250 wanted = 1;
2488aba5
AI
251
252 immediate_quit = 0;
253
254 if (wanted)
14d55bce 255 {
265a9e55 256 if (!NILP (full))
14d55bce 257 {
e23f810c 258 Lisp_Object fullname;
d311d28c
PE
259 ptrdiff_t nbytes = len + directory_nbytes + needsep;
260 ptrdiff_t nchars;
5617588f 261
388ac098 262 fullname = make_uninit_multibyte_string (nbytes, nbytes);
72af86bd
AS
263 memcpy (SDATA (fullname), SDATA (directory),
264 directory_nbytes);
177c0ea7 265
5617588f 266 if (needsep)
d549c5db 267 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
177c0ea7 268
72af86bd
AS
269 memcpy (SDATA (fullname) + directory_nbytes + needsep,
270 SDATA (name), len);
177c0ea7 271
d5db4077 272 nchars = chars_in_text (SDATA (fullname), nbytes);
388ac098
GM
273
274 /* Some bug somewhere. */
275 if (nchars > nbytes)
276 abort ();
177c0ea7 277
437fcd47 278 STRING_SET_CHARS (fullname, nchars);
388ac098 279 if (nchars == nbytes)
d5db4077 280 STRING_SET_UNIBYTE (fullname);
177c0ea7 281
4424b255
GV
282 finalname = fullname;
283 }
aab9c564
KH
284 else
285 finalname = name;
4424b255
GV
286
287 if (attrs)
288 {
289 /* Construct an expanded filename for the directory entry.
290 Use the decoded names for input to Ffile_attributes. */
388ac098 291 Lisp_Object decoded_fullname, fileattrs;
dbf31225 292 struct gcpro gcpro1, gcpro2;
388ac098
GM
293
294 decoded_fullname = fileattrs = Qnil;
dbf31225 295 GCPRO2 (decoded_fullname, fileattrs);
4424b255 296
388ac098 297 /* Both Fexpand_file_name and Ffile_attributes can GC. */
4424b255 298 decoded_fullname = Fexpand_file_name (name, directory);
6b61353c 299 fileattrs = Ffile_attributes (decoded_fullname, id_format);
4424b255
GV
300
301 list = Fcons (Fcons (finalname, fileattrs), list);
dbf31225 302 UNGCPRO;
4424b255
GV
303 }
304 else
388ac098 305 list = Fcons (finalname, list);
14d55bce 306 }
388ac098 307
dbf31225 308 UNGCPRO;
14d55bce
RS
309 }
310 }
2488aba5 311
d15b573e 312 BLOCK_INPUT;
14d55bce 313 closedir (d);
d15b573e 314 UNBLOCK_INPUT;
65156807
EZ
315#ifdef WINDOWSNT
316 if (attrs)
317 Vw32_get_true_file_attributes = w32_save;
318#endif
2488aba5
AI
319
320 /* Discard the unwind protect. */
321 specpdl_ptr = specpdl + count;
322
388ac098
GM
323 if (NILP (nosort))
324 list = Fsort (Fnreverse (list),
325 attrs ? Qfile_attributes_lessp : Qstring_lessp);
177c0ea7 326
388ac098 327 RETURN_UNGCPRO (list);
14d55bce 328}
4424b255
GV
329
330
331DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
335c5470
PJ
332 doc: /* Return a list of names of files in DIRECTORY.
333There are three optional arguments:
334If FULL is non-nil, return absolute file names. Otherwise return names
335 that are relative to the specified directory.
336If MATCH is non-nil, mention only file names that match the regexp MATCH.
337If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
a489517b
JB
338 Otherwise, the list returned is sorted with `string-lessp'.
339 NOSORT is useful if you plan to sort the result yourself. */)
5842a27b 340 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort)
4424b255
GV
341{
342 Lisp_Object handler;
4ece81a6 343 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
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))
6b61353c
KH
349 return call5 (handler, Qdirectory_files, directory,
350 full, match, nosort);
4424b255 351
6b61353c 352 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
4424b255
GV
353}
354
335c5470 355DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
6b61353c 356 Sdirectory_files_and_attributes, 1, 5, 0,
335c5470 357 doc: /* Return a list of names of files and their attributes in DIRECTORY.
6b61353c 358There are four optional arguments:
335c5470
PJ
359If FULL is non-nil, return absolute file names. Otherwise return names
360 that are relative to the specified directory.
361If MATCH is non-nil, mention only file names that match the regexp MATCH.
362If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
6b61353c
KH
363 NOSORT is useful if you plan to sort the result yourself.
364ID-FORMAT specifies the preferred format of attributes uid and gid, see
6c5665e9
EZ
365`file-attributes' for further documentation.
366On MS-Windows, performance depends on `w32-get-true-file-attributes',
367which see. */)
5842a27b 368 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
4424b255
GV
369{
370 Lisp_Object handler;
4ece81a6 371 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
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))
6b61353c
KH
377 return call6 (handler, Qdirectory_files_and_attributes,
378 directory, full, match, nosort, id_format);
4424b255 379
6b61353c 380 return directory_files_internal (directory, full, match, nosort, 1, id_format);
4424b255
GV
381}
382
14d55bce 383\f
16390cd2
PE
384static Lisp_Object file_name_completion
385 (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag,
386 Lisp_Object predicate);
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
abfb1932 418 return file_name_completion (file, directory, 0, 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
abfb1932 442 return file_name_completion (file, directory, 1, 0, Qnil);
14d55bce
RS
443}
444
438105ed 445static int file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr);
955cbe7b 446static Lisp_Object Qdefault_directory;
dfcf069d 447
16390cd2 448static Lisp_Object
971de7fb 449file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate)
14d55bce
RS
450{
451 DIR *d;
d311d28c 452 ptrdiff_t bestmatchsize = 0;
14d55bce 453 int matchcount = 0;
abfb1932
RS
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. */
14d55bce 457 Lisp_Object bestmatch, tem, elt, name;
24c2a54f
RS
458 Lisp_Object encoded_file;
459 Lisp_Object encoded_dir;
14d55bce
RS
460 struct stat st;
461 int directoryp;
3271a8f5
SM
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;
d311d28c 466 ptrdiff_t count = SPECPDL_INDEX ();
24c2a54f 467 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3fcc88cc 468
6bbd7a29
GM
469 elt = Qnil;
470
b7826503 471 CHECK_STRING (file);
14d55bce 472
14d55bce 473 bestmatch = Qnil;
24c2a54f
RS
474 encoded_file = encoded_dir = Qnil;
475 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
01bb4018 476 specbind (Qdefault_directory, dirname);
14d55bce 477
24c2a54f
RS
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. */
2a54a229
SM
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. */
6c8b4f07 484 encoded_file = STRING_MULTIBYTE (file) ? ENCODE_FILE (file) : file;
24c2a54f
RS
485
486 encoded_dir = ENCODE_FILE (dirname);
487
3271a8f5 488 BLOCK_INPUT;
42a5b22f 489 d = opendir (SSDATA (Fdirectory_file_name (encoded_dir)));
3271a8f5
SM
490 UNBLOCK_INPUT;
491 if (!d)
492 report_file_error ("Opening directory", Fcons (dirname, Qnil));
14d55bce 493
3271a8f5
SM
494 record_unwind_protect (directory_files_internal_unwind,
495 make_save_value (d, 0));
14d55bce 496
3271a8f5
SM
497 /* Loop reading blocks */
498 /* (att3b compiler bug requires do a null comparison this way) */
499 while (1)
14d55bce 500 {
3271a8f5 501 DIRENTRY *dp;
d311d28c 502 ptrdiff_t len;
3271a8f5 503 int canexclude = 0;
14d55bce 504
3271a8f5
SM
505 errno = 0;
506 dp = readdir (d);
507 if (dp == NULL && (0
9d291bdf 508# ifdef EAGAIN
3271a8f5 509 || errno == EAGAIN
9d291bdf
SM
510# endif
511# ifdef EINTR
3271a8f5 512 || errno == EINTR
9d291bdf 513# endif
3271a8f5
SM
514 ))
515 { QUIT; continue; }
9d291bdf 516
3271a8f5 517 if (!dp) break;
14d55bce 518
3271a8f5 519 len = NAMLEN (dp);
14d55bce 520
3271a8f5
SM
521 QUIT;
522 if (! DIRENTRY_NONEMPTY (dp)
523 || len < SCHARS (encoded_file)
4f043d0f 524 || 0 <= scmp (dp->d_name, SSDATA (encoded_file),
3271a8f5
SM
525 SCHARS (encoded_file)))
526 continue;
14d55bce 527
3271a8f5
SM
528 if (file_name_completion_stat (encoded_dir, dp, &st) < 0)
529 continue;
14d55bce 530
f68c809d 531 directoryp = S_ISDIR (st.st_mode);
3271a8f5
SM
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 {
d311d28c 538 ptrdiff_t skip;
2cd298e2 539
7519c40d 540#if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
2cd298e2
SM
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
4f043d0f 549 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
2cd298e2 550 continue;
7519c40d 551#endif
2cd298e2 552
3271a8f5 553 if (directoryp)
ad456ad4
RS
554 {
555#ifndef TRIVIAL_DIRECTORY_ENTRY
556#define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
557#endif
abfb1932
RS
558 /* "." and ".." are never interesting as completions, and are
559 actually in the way in a directory with only one file. */
3271a8f5
SM
560 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
561 canexclude = 1;
562 else if (len > SCHARS (encoded_file))
d013f29b
EZ
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 {
d311d28c 568 ptrdiff_t elt_len;
4f043d0f 569 char *p1;
d013f29b
EZ
570
571 elt = XCAR (tem);
572 if (!STRINGP (elt))
573 continue;
a74aaa9d
EZ
574 /* Need to encode ELT, since scmp compares unibyte
575 strings only. */
576 elt = ENCODE_FILE (elt);
d5db4077 577 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
7a8d465a 578 if (elt_len <= 0)
d013f29b 579 continue;
4f043d0f 580 p1 = SSDATA (elt);
d013f29b
EZ
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 }
ad456ad4
RS
591 }
592 else
3271a8f5 593 {
14d55bce
RS
594 /* Compare extensions-to-be-ignored against end of this file name */
595 /* if name is not an exact match against specified string */
3271a8f5 596 if (len > SCHARS (encoded_file))
14d55bce
RS
597 /* and exit this for loop if a match is found */
598 for (tem = Vcompletion_ignored_extensions;
70949dac 599 CONSP (tem); tem = XCDR (tem))
14d55bce 600 {
70949dac 601 elt = XCAR (tem);
88cf1852 602 if (!STRINGP (elt)) continue;
a74aaa9d
EZ
603 /* Need to encode ELT, since scmp compares unibyte
604 strings only. */
605 elt = ENCODE_FILE (elt);
d5db4077 606 skip = len - SCHARS (elt);
14d55bce
RS
607 if (skip < 0) continue;
608
609 if (0 <= scmp (dp->d_name + skip,
4f043d0f 610 SSDATA (elt),
d5db4077 611 SCHARS (elt)))
14d55bce
RS
612 continue;
613 break;
614 }
615 }
616
f676868d
KH
617 /* If an ignored-extensions match was found,
618 don't process this name as a completion. */
3271a8f5
SM
619 if (CONSP (tem))
620 canexclude = 1;
f676868d 621
3271a8f5
SM
622 if (!includeall && canexclude)
623 /* We're not including all files and this file can be excluded. */
624 continue;
9c691c00 625
3271a8f5
SM
626 if (includeall && !canexclude)
627 { /* If we have one non-excludable file, we want to exclude the
4c36be58 628 excludable files. */
3271a8f5
SM
629 includeall = 0;
630 /* Throw away any previous excludable match found. */
631 bestmatch = Qnil;
632 bestmatchsize = 0;
633 matchcount = 0;
f676868d 634 }
3271a8f5
SM
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;
3271a8f5
SM
643
644 /* Ignore this element if it fails to match all the regexps. */
cc524e3b
CY
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
3271a8f5
SM
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;
dbf31225 673 struct gcpro gcpro1;
14d55bce 674
dbf31225 675 GCPRO1 (name);
3271a8f5 676 val = call1 (predicate, name);
dbf31225 677 UNGCPRO;
c4c52bb7 678
3271a8f5
SM
679 if (NILP (val))
680 continue;
681 }
abfb1932 682
3271a8f5 683 /* Suitably record this match. */
14d55bce 684
d311d28c 685 matchcount += matchcount <= 1;
f676868d 686
3271a8f5
SM
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. */
d311d28c 698 ptrdiff_t compare = min (bestmatchsize, SCHARS (name));
38b2c076 699 Lisp_Object cmp
3271a8f5
SM
700 = Fcompare_strings (bestmatch, zero,
701 make_number (compare),
702 name, zero,
703 make_number (compare),
704 completion_ignore_case ? Qt : Qnil);
d311d28c 705 ptrdiff_t matchsize
38b2c076
PE
706 = (EQ (cmp, Qt) ? compare
707 : XINT (cmp) < 0 ? - XINT (cmp) - 1
708 : XINT (cmp) - 1);
3271a8f5
SM
709
710 if (completion_ignore_case)
f676868d 711 {
3271a8f5
SM
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)
2cd298e2 719 && matchsize + !!directoryp < SCHARS (bestmatch))
3271a8f5
SM
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)))
38b2c076 732 && (cmp = Fcompare_strings (name, zero,
3271a8f5
SM
733 make_number (SCHARS (file)),
734 file, zero,
735 Qnil,
736 Qnil),
38b2c076
PE
737 EQ (Qt, cmp))
738 && (cmp = Fcompare_strings (bestmatch, zero,
3271a8f5
SM
739 make_number (SCHARS (file)),
740 file, zero,
741 Qnil,
742 Qnil),
38b2c076 743 ! EQ (Qt, cmp))))
3271a8f5 744 bestmatch = name;
14d55bce 745 }
3271a8f5 746 bestmatchsize = matchsize;
2cd298e2
SM
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
14d55bce 761 }
14d55bce
RS
762 }
763
3fcc88cc 764 UNGCPRO;
3271a8f5 765 /* This closes the directory. */
c3a3229c 766 bestmatch = unbind_to (count, bestmatch);
14d55bce 767
265a9e55 768 if (all_flag || NILP (bestmatch))
2a54a229 769 return bestmatch;
928b5acc
SM
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)))
14d55bce 773 return Qt;
24c2a54f
RS
774 bestmatch = Fsubstring (bestmatch, make_number (0),
775 make_number (bestmatchsize));
24c2a54f 776 return bestmatch;
14d55bce
RS
777}
778
b3f04ced
RS
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
d311d28c
PE
784static ptrdiff_t
785scmp (const char *s1, const char *s2, ptrdiff_t len)
b3f04ced 786{
d311d28c 787 register ptrdiff_t l = len;
b3f04ced
RS
788
789 if (completion_ignore_case)
790 {
4f043d0f 791 while (l
5da9919f
PE
792 && (downcase ((unsigned char) *s1++)
793 == downcase ((unsigned char) *s2++)))
b3f04ced
RS
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
dfcf069d 807static int
438105ed 808file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr)
14d55bce 809{
d311d28c
PE
810 ptrdiff_t len = NAMLEN (dp);
811 ptrdiff_t pos = SCHARS (dirname);
7e3cf34f 812 int value;
d311d28c 813 USE_SAFE_ALLOCA;
98c6f1e3 814 char *fullname = SAFE_ALLOCA (len + pos + 2);
14d55bce 815
04924ee3 816#ifdef MSDOS
04924ee3
RS
817 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
818 but aren't required here. Avoid computing the following fields:
819 st_inode, st_size and st_nlink for directories, and the execute bits
820 in st_mode for non-directory files with non-standard extensions. */
821
822 unsigned short save_djstat_flags = _djstat_flags;
823
824 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
04924ee3
RS
825#endif /* MSDOS */
826
72af86bd 827 memcpy (fullname, SDATA (dirname), pos);
0b39d75d
RS
828 if (!IS_DIRECTORY_SEP (fullname[pos - 1]))
829 fullname[pos++] = DIRECTORY_SEP;
14d55bce 830
72af86bd 831 memcpy (fullname + pos, dp->d_name, len);
14d55bce
RS
832 fullname[pos + len] = 0;
833
7e3cf34f
RS
834 /* We want to return success if a link points to a nonexistent file,
835 but we want to return the status for what the link points to,
836 in case it is a directory. */
837 value = lstat (fullname, st_addr);
f68c809d
PE
838 if (value == 0 && S_ISLNK (st_addr->st_mode))
839 stat (fullname, st_addr);
04924ee3 840#ifdef MSDOS
04924ee3 841 _djstat_flags = save_djstat_flags;
04924ee3 842#endif /* MSDOS */
d311d28c 843 SAFE_FREE ();
04924ee3 844 return value;
14d55bce
RS
845}
846\f
8aaaec6b
EZ
847static char *
848stat_uname (struct stat *st)
849{
850#ifdef WINDOWSNT
851 return st->st_uname;
852#else
853 struct passwd *pw = (struct passwd *) getpwuid (st->st_uid);
854
855 if (pw)
856 return pw->pw_name;
857 else
858 return NULL;
859#endif
860}
861
862static char *
863stat_gname (struct stat *st)
864{
865#ifdef WINDOWSNT
866 return st->st_gname;
867#else
868 struct group *gr = (struct group *) getgrgid (st->st_gid);
869
870 if (gr)
871 return gr->gr_name;
872 else
873 return NULL;
874#endif
875}
876
6b61353c 877DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
335c5470
PJ
878 doc: /* Return a list of attributes of file FILENAME.
879Value is nil if specified file cannot be opened.
6b61353c
KH
880
881ID-FORMAT specifies the preferred format of attributes uid and gid (see
e42cd1a7
JB
882below) - valid values are 'string and 'integer. The latter is the
883default, but we plan to change that, so you should specify a non-nil value
884for ID-FORMAT if you use the returned uid or gid.
6b61353c
KH
885
886Elements of the attribute list are:
335c5470
PJ
887 0. t for directory, string (name linked to) for symbolic link, or nil.
888 1. Number of links to file.
78e7d1fe
EZ
889 2. File uid as a string or a number. If a string value cannot be
890 looked up, a numeric value, either an integer or a float, is returned.
6b61353c 891 3. File gid, likewise.
d35af63c
PE
892 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
893 same style as (current-time).
e02131a2
EZ
894 (See a note below about access time on FAT-based filesystems.)
895 5. Last modification time, likewise. This is the time of the last
896 change to the file's contents.
897 6. Last status change time, likewise. This is the time of last change
898 to the file's attributes: owner and group, access mode bits, etc.
335c5470
PJ
899 7. Size in bytes.
900 This is a floating point number if the size is too large for an integer.
901 8. File modes, as a string of ten letters or dashes as in ls -l.
e0f24100 902 9. t if file's gid would change if file were deleted and recreated.
be44ca6c
PE
90310. inode number. If it is larger than what an Emacs integer can hold,
904 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
905 If even HIGH is too large for an Emacs integer, this is instead of the form
906 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
e02131a2
EZ
907 and finally the low 16 bits.
90811. Filesystem device number. If it is larger than what the Emacs
909 integer can hold, this is a cons cell, similar to the inode number.
910
911On most filesystems, the combination of the inode and the device
912number uniquely identifies the file.
6c5665e9
EZ
913
914On MS-Windows, performance depends on `w32-get-true-file-attributes',
21f73755
EZ
915which see.
916
917On some FAT-based filesystems, only the date of last access is recorded,
918so last access time will always be midnight of that day. */)
5842a27b 919 (Lisp_Object filename, Lisp_Object id_format)
14d55bce
RS
920{
921 Lisp_Object values[12];
24c2a54f 922 Lisp_Object encoded;
14d55bce 923 struct stat s;
98601119 924#ifdef BSD4_2
b3edfc9b 925 Lisp_Object dirname;
14d55bce 926 struct stat sdir;
98601119 927#endif /* BSD4_2 */
4ad89555
PE
928
929 /* An array to hold the mode string generated by filemodestring,
930 including its terminating space and null byte. */
931 char modes[sizeof "-rwxr-xr-x "];
932
32f4334d 933 Lisp_Object handler;
7435aef8 934 struct gcpro gcpro1;
51105b13 935 char *uname = NULL, *gname = NULL;
14d55bce
RS
936
937 filename = Fexpand_file_name (filename, Qnil);
32f4334d
RS
938
939 /* If the file name has special constructs in it,
940 call the corresponding file handler. */
a617e913 941 handler = Ffind_file_name_handler (filename, Qfile_attributes);
32f4334d 942 if (!NILP (handler))
6b61353c
KH
943 { /* Only pass the extra arg if it is used to help backward compatibility
944 with old file handlers which do not implement the new arg. --Stef */
945 if (NILP (id_format))
946 return call2 (handler, Qfile_attributes, filename);
947 else
948 return call3 (handler, Qfile_attributes, filename, id_format);
949 }
32f4334d 950
7435aef8 951 GCPRO1 (filename);
24c2a54f 952 encoded = ENCODE_FILE (filename);
7435aef8 953 UNGCPRO;
24c2a54f 954
42a5b22f 955 if (lstat (SSDATA (encoded), &s) < 0)
14d55bce
RS
956 return Qnil;
957
8d40723d
PE
958 values[0] = (S_ISLNK (s.st_mode) ? Ffile_symlink_p (filename)
959 : S_ISDIR (s.st_mode) ? Qt : Qnil);
14d55bce 960 values[1] = make_number (s.st_nlink);
51105b13
EZ
961
962 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
6b61353c 963 {
8c8a7c58 964 BLOCK_INPUT;
8aaaec6b 965 uname = stat_uname (&s);
8aaaec6b 966 gname = stat_gname (&s);
8c8a7c58 967 UNBLOCK_INPUT;
6b61353c 968 }
51105b13 969 if (uname)
80904120 970 values[2] = DECODE_SYSTEM (build_string (uname));
51105b13 971 else
58a12889 972 values[2] = make_fixnum_or_float (s.st_uid);
51105b13 973 if (gname)
80904120 974 values[3] = DECODE_SYSTEM (build_string (gname));
51105b13 975 else
58a12889 976 values[3] = make_fixnum_or_float (s.st_gid);
51105b13 977
d35af63c
PE
978 values[4] = make_lisp_time (get_stat_atime (&s));
979 values[5] = make_lisp_time (get_stat_mtime (&s));
980 values[6] = make_lisp_time (get_stat_ctime (&s));
83c77d31
PE
981
982 /* If the file size is a 4-byte type, assume that files of sizes in
983 the 2-4 GiB range wrap around to negative values, as this is a
984 common bug on older 32-bit platforms. */
985 if (sizeof (s.st_size) == 4)
986 values[7] = make_fixnum_or_float (s.st_size & 0xffffffffu);
987 else
988 values[7] = make_fixnum_or_float (s.st_size);
4bc12672 989
14d55bce
RS
990 filemodestring (&s, modes);
991 values[8] = make_string (modes, 10);
98601119 992#ifdef BSD4_2 /* file gid will be dir gid */
14d55bce 993 dirname = Ffile_name_directory (filename);
24c2a54f
RS
994 if (! NILP (dirname))
995 encoded = ENCODE_FILE (dirname);
d5db4077 996 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0)
01388a3d 997 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
14d55bce
RS
998 else /* if we can't tell, assume worst */
999 values[9] = Qt;
1000#else /* file gid will be egid */
01388a3d 1001 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
98601119 1002#endif /* not BSD4_2 */
be44ca6c
PE
1003 values[10] = INTEGER_TO_CONS (s.st_ino);
1004 values[11] = INTEGER_TO_CONS (s.st_dev);
68c45bf0 1005
5e617bc2 1006 return Flist (sizeof (values) / sizeof (values[0]), values);
14d55bce 1007}
4424b255
GV
1008
1009DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
335c5470
PJ
1010 doc: /* Return t if first arg file attributes list is less than second.
1011Comparison is in lexicographic order and case is significant. */)
5842a27b 1012 (Lisp_Object f1, Lisp_Object f2)
4424b255
GV
1013{
1014 return Fstring_lessp (Fcar (f1), Fcar (f2));
1015}
14d55bce 1016\f
316411f0
DA
1017
1018DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
1019 doc: /* Return a list of user names currently registered in the system.
e5a36063
GM
1020If we don't know how to determine that on this platform, just
1021return a list with one element, taken from `user-real-login-name'. */)
316411f0
DA
1022 (void)
1023{
1024 Lisp_Object users = Qnil;
aba027e8 1025#if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
316411f0
DA
1026 struct passwd *pw;
1027
1028 while ((pw = getpwent ()))
1029 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
1030
1031 endpwent ();
1032#endif
1033 if (EQ (users, Qnil))
1034 /* At least current user is always known. */
1035 users = Fcons (Vuser_real_login_name, Qnil);
1036 return users;
1037}
1038
1039DEFUN ("system-groups", Fsystem_groups, Ssystem_groups, 0, 0, 0,
1040 doc: /* Return a list of user group names currently registered in the system.
1041The value may be nil if not supported on this platform. */)
1042 (void)
1043{
1044 Lisp_Object groups = Qnil;
aba027e8 1045#if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
316411f0 1046 struct group *gr;
316411f0
DA
1047
1048 while ((gr = getgrent ()))
1049 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1050
1051 endgrent ();
1052#endif
1053 return groups;
1054}
1055
dfcf069d 1056void
971de7fb 1057syms_of_dired (void)
14d55bce 1058{
cd3520a4
JB
1059 DEFSYM (Qdirectory_files, "directory-files");
1060 DEFSYM (Qdirectory_files_and_attributes, "directory-files-and-attributes");
1061 DEFSYM (Qfile_name_completion, "file-name-completion");
1062 DEFSYM (Qfile_name_all_completions, "file-name-all-completions");
1063 DEFSYM (Qfile_attributes, "file-attributes");
1064 DEFSYM (Qfile_attributes_lessp, "file-attributes-lessp");
1065 DEFSYM (Qdefault_directory, "default-directory");
a2d3836c 1066
14d55bce 1067 defsubr (&Sdirectory_files);
4424b255 1068 defsubr (&Sdirectory_files_and_attributes);
14d55bce 1069 defsubr (&Sfile_name_completion);
14d55bce
RS
1070 defsubr (&Sfile_name_all_completions);
1071 defsubr (&Sfile_attributes);
4424b255 1072 defsubr (&Sfile_attributes_lessp);
316411f0
DA
1073 defsubr (&Ssystem_users);
1074 defsubr (&Ssystem_groups);
14d55bce 1075
29208e82 1076 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions,
407a52c4
LT
1077 doc: /* Completion ignores file names ending in any string in this list.
1078It does not ignore them if all possible completions end in one of
1079these strings or when displaying a list of completions.
1080It ignores directory names if they match any string in this list which
1081ends in a slash. */);
14d55bce
RS
1082 Vcompletion_ignored_extensions = Qnil;
1083}