Add 2009 to copyright years.
[bpt/emacs.git] / src / dired.c
CommitLineData
14d55bce 1/* Lisp functions for making directory listings.
0b5538bd 2 Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001, 2002, 2003,
8cabe764 3 2004, 2005, 2006, 2007, 2008 Free Software 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>
68c45bf0 33
dfcf069d
AS
34#ifdef HAVE_UNISTD_H
35#include <unistd.h>
36#endif
37
d6717cdb
JB
38/* The d_nameln member of a struct dirent includes the '\0' character
39 on some systems, but not on others. What's worse, you can't tell
40 at compile-time which one it will be, since it really depends on
41 the sort of system providing the filesystem you're reading from,
42 not the system you are running on. Paul Eggert
43 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
44 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
45 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
46
47 Since applying strlen to the name always works, we'll just do that. */
48#define NAMLEN(p) strlen (p->d_name)
49
14d55bce
RS
50#ifdef SYSV_SYSTEM_DIR
51
52#include <dirent.h>
53#define DIRENTRY struct dirent
14d55bce 54
128ecc89 55#else /* not SYSV_SYSTEM_DIR */
14d55bce 56
128ecc89
RS
57#ifdef MSDOS
58#include <dirent.h>
59#else
14d55bce 60#include <sys/dir.h>
128ecc89 61#endif
14d55bce 62
851cab13
DL
63#include <sys/stat.h>
64
128ecc89 65#ifndef MSDOS
14d55bce 66#define DIRENTRY struct direct
14d55bce
RS
67
68extern DIR *opendir ();
69extern struct direct *readdir ();
70
128ecc89
RS
71#endif /* not MSDOS */
72#endif /* not SYSV_SYSTEM_DIR */
73
8f7f8c65
EZ
74/* Some versions of Cygwin don't have d_ino in `struct dirent'. */
75#if defined(MSDOS) || defined(__CYGWIN__)
128ecc89
RS
76#define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
77#else
78#define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
14d55bce
RS
79#endif
80
14d55bce 81#include "lisp.h"
fa8459a3 82#include "systime.h"
14d55bce
RS
83#include "buffer.h"
84#include "commands.h"
d2f6dae8 85#include "character.h"
bd33479f
KH
86#include "charset.h"
87#include "coding.h"
14d55bce 88#include "regex.h"
8c8a7c58 89#include "blockinput.h"
14d55bce 90
e50c66d3
KH
91/* Returns a search buffer, with a fastmap allocated and ready to go. */
92extern struct re_pattern_buffer *compile_pattern ();
c7e466e1 93
851cab13
DL
94/* From filemode.c. Can't go in Lisp.h because of `stat'. */
95extern void filemodestring P_ ((struct stat *, char *));
96
14d55bce
RS
97/* if system does not have symbolic links, it does not have lstat.
98 In that case, use ordinary stat instead. */
99
100#ifndef S_IFLNK
101#define lstat stat
102#endif
103
97e98a56 104extern int completion_ignore_case;
ecd3f8b2 105extern Lisp_Object Qcompletion_ignore_case;
f676868d 106extern Lisp_Object Vcompletion_regexp_list;
ccbcf979 107
14d55bce 108Lisp_Object Vcompletion_ignored_extensions;
32f4334d 109Lisp_Object Qdirectory_files;
4424b255 110Lisp_Object Qdirectory_files_and_attributes;
32f4334d
RS
111Lisp_Object Qfile_name_completion;
112Lisp_Object Qfile_name_all_completions;
434e6714 113Lisp_Object Qfile_attributes;
4424b255 114Lisp_Object Qfile_attributes_lessp;
b3f04ced
RS
115
116static int scmp P_ ((unsigned char *, unsigned char *, int));
14d55bce 117\f
2488aba5
AI
118
119Lisp_Object
120directory_files_internal_unwind (dh)
121 Lisp_Object dh;
122{
9d291bdf 123 DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer;
d15b573e 124 BLOCK_INPUT;
2488aba5 125 closedir (d);
d15b573e 126 UNBLOCK_INPUT;
2488aba5
AI
127 return Qnil;
128}
129
177c0ea7 130/* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
4424b255 131 When ATTRS is zero, return a list of directory filenames; when
6b61353c
KH
132 non-zero, return a list of directory filenames and their attributes.
133 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
f69f9da1 134
4424b255 135Lisp_Object
6b61353c 136directory_files_internal (directory, full, match, nosort, attrs, id_format)
23bd240f 137 Lisp_Object directory, full, match, nosort;
4424b255 138 int attrs;
6b61353c 139 Lisp_Object id_format;
14d55bce
RS
140{
141 DIR *d;
388ac098
GM
142 int directory_nbytes;
143 Lisp_Object list, dirfilename, encoded_directory;
6bbd7a29 144 struct re_pattern_buffer *bufp = NULL;
96d64004 145 int needsep = 0;
aed13378 146 int count = SPECPDL_INDEX ();
388ac098 147 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
8e42f043 148 DIRENTRY *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,
168 buffer_defaults.case_canon_table, 0, 1);
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
d15b573e 185 BLOCK_INPUT;
d5db4077 186 d = opendir (SDATA (dirfilename));
d15b573e 187 UNBLOCK_INPUT;
388ac098 188 if (d == NULL)
23bd240f 189 report_file_error ("Opening directory", Fcons (directory, Qnil));
14d55bce 190
2488aba5
AI
191 /* Unfortunately, we can now invoke expand-file-name and
192 file-attributes on filenames, both of which can throw, so we must
193 do a proper unwind-protect. */
194 record_unwind_protect (directory_files_internal_unwind,
9d291bdf 195 make_save_value (d, 0));
2488aba5 196
d5db4077 197 directory_nbytes = SBYTES (directory);
c81a9bdc 198 re_match_object = Qt;
14d55bce 199
96d64004 200 /* Decide whether we need to add a directory separator. */
388ac098 201 if (directory_nbytes == 0
d5db4077 202 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
96d64004 203 needsep = 1;
96d64004 204
8e42f043 205 /* Loop reading blocks until EOF or error. */
f69f9da1 206 for (;;)
14d55bce 207 {
f69f9da1
GM
208 errno = 0;
209 dp = readdir (d);
210
9d291bdf 211 if (dp == NULL && (0
f69f9da1 212#ifdef EAGAIN
9d291bdf
SM
213 || errno == EAGAIN
214#endif
215#ifdef EINTR
216 || errno == EINTR
f69f9da1 217#endif
9d291bdf
SM
218 ))
219 { QUIT; continue; }
177c0ea7 220
f69f9da1
GM
221 if (dp == NULL)
222 break;
223
128ecc89 224 if (DIRENTRY_NONEMPTY (dp))
14d55bce 225 {
e23f810c 226 int len;
2488aba5 227 int wanted = 0;
388ac098
GM
228 Lisp_Object name, finalname;
229 struct gcpro gcpro1, gcpro2;
e23f810c
KH
230
231 len = NAMLEN (dp);
9ad4f3e5 232 name = finalname = make_unibyte_string (dp->d_name, len);
388ac098 233 GCPRO2 (finalname, name);
177c0ea7 234
6c8b4f07 235 /* Note: DECODE_FILE can GC; it should protect its argument,
388ac098
GM
236 though. */
237 name = DECODE_FILE (name);
d5db4077 238 len = SBYTES (name);
e23f810c 239
2488aba5
AI
240 /* Now that we have unwind_protect in place, we might as well
241 allow matching to be interrupted. */
242 immediate_quit = 1;
243 QUIT;
244
265a9e55 245 if (NILP (match)
d5db4077 246 || (0 <= re_search (bufp, SDATA (name), len, 0, len, 0)))
388ac098 247 wanted = 1;
2488aba5
AI
248
249 immediate_quit = 0;
250
251 if (wanted)
14d55bce 252 {
265a9e55 253 if (!NILP (full))
14d55bce 254 {
e23f810c 255 Lisp_Object fullname;
388ac098
GM
256 int nbytes = len + directory_nbytes + needsep;
257 int nchars;
5617588f 258
388ac098 259 fullname = make_uninit_multibyte_string (nbytes, nbytes);
d5db4077 260 bcopy (SDATA (directory), SDATA (fullname),
388ac098 261 directory_nbytes);
177c0ea7 262
5617588f 263 if (needsep)
d549c5db 264 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
177c0ea7 265
d5db4077
KR
266 bcopy (SDATA (name),
267 SDATA (fullname) + directory_nbytes + needsep,
388ac098 268 len);
177c0ea7 269
d5db4077 270 nchars = chars_in_text (SDATA (fullname), nbytes);
388ac098
GM
271
272 /* Some bug somewhere. */
273 if (nchars > nbytes)
274 abort ();
177c0ea7 275
437fcd47 276 STRING_SET_CHARS (fullname, nchars);
388ac098 277 if (nchars == nbytes)
d5db4077 278 STRING_SET_UNIBYTE (fullname);
177c0ea7 279
4424b255
GV
280 finalname = fullname;
281 }
aab9c564
KH
282 else
283 finalname = name;
4424b255
GV
284
285 if (attrs)
286 {
287 /* Construct an expanded filename for the directory entry.
288 Use the decoded names for input to Ffile_attributes. */
388ac098
GM
289 Lisp_Object decoded_fullname, fileattrs;
290 struct gcpro gcpro1, gcpro2;
291
292 decoded_fullname = fileattrs = Qnil;
293 GCPRO2 (decoded_fullname, fileattrs);
4424b255 294
388ac098 295 /* Both Fexpand_file_name and Ffile_attributes can GC. */
4424b255 296 decoded_fullname = Fexpand_file_name (name, directory);
6b61353c 297 fileattrs = Ffile_attributes (decoded_fullname, id_format);
4424b255
GV
298
299 list = Fcons (Fcons (finalname, fileattrs), list);
388ac098 300 UNGCPRO;
4424b255
GV
301 }
302 else
388ac098 303 list = Fcons (finalname, list);
14d55bce 304 }
388ac098
GM
305
306 UNGCPRO;
14d55bce
RS
307 }
308 }
2488aba5 309
d15b573e 310 BLOCK_INPUT;
14d55bce 311 closedir (d);
d15b573e 312 UNBLOCK_INPUT;
2488aba5
AI
313
314 /* Discard the unwind protect. */
315 specpdl_ptr = specpdl + count;
316
388ac098
GM
317 if (NILP (nosort))
318 list = Fsort (Fnreverse (list),
319 attrs ? Qfile_attributes_lessp : Qstring_lessp);
177c0ea7 320
388ac098 321 RETURN_UNGCPRO (list);
14d55bce 322}
4424b255
GV
323
324
325DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
335c5470
PJ
326 doc: /* Return a list of names of files in DIRECTORY.
327There are three optional arguments:
328If FULL is non-nil, return absolute file names. Otherwise return names
329 that are relative to the specified directory.
330If MATCH is non-nil, mention only file names that match the regexp MATCH.
331If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
e933b15e
CY
332 Otherwise, the list returned is sorted with `stringp-lessp'.
333 NOSORT is useful if you plan to sort the result yourself. */)
335c5470 334 (directory, full, match, nosort)
4424b255
GV
335 Lisp_Object directory, full, match, nosort;
336{
337 Lisp_Object handler;
4ece81a6 338 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
339
340 /* If the file name has special constructs in it,
341 call the corresponding file handler. */
342 handler = Ffind_file_name_handler (directory, Qdirectory_files);
343 if (!NILP (handler))
6b61353c
KH
344 return call5 (handler, Qdirectory_files, directory,
345 full, match, nosort);
4424b255 346
6b61353c 347 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
4424b255
GV
348}
349
335c5470 350DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
6b61353c 351 Sdirectory_files_and_attributes, 1, 5, 0,
335c5470 352 doc: /* Return a list of names of files and their attributes in DIRECTORY.
6b61353c 353There are four optional arguments:
335c5470
PJ
354If FULL is non-nil, return absolute file names. Otherwise return names
355 that are relative to the specified directory.
356If MATCH is non-nil, mention only file names that match the regexp MATCH.
357If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
6b61353c
KH
358 NOSORT is useful if you plan to sort the result yourself.
359ID-FORMAT specifies the preferred format of attributes uid and gid, see
6c5665e9
EZ
360`file-attributes' for further documentation.
361On MS-Windows, performance depends on `w32-get-true-file-attributes',
362which see. */)
6b61353c
KH
363 (directory, full, match, nosort, id_format)
364 Lisp_Object directory, full, match, nosort, id_format;
4424b255
GV
365{
366 Lisp_Object handler;
4ece81a6 367 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
368
369 /* If the file name has special constructs in it,
370 call the corresponding file handler. */
371 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
372 if (!NILP (handler))
6b61353c
KH
373 return call6 (handler, Qdirectory_files_and_attributes,
374 directory, full, match, nosort, id_format);
4424b255 375
6b61353c 376 return directory_files_internal (directory, full, match, nosort, 1, id_format);
4424b255
GV
377}
378
14d55bce
RS
379\f
380Lisp_Object file_name_completion ();
381
382DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
abfb1932 383 2, 3, 0,
335c5470
PJ
384 doc: /* Complete file name FILE in directory DIRECTORY.
385Returns the longest string
386common to all file names in DIRECTORY that start with FILE.
387If there is only one and FILE matches it exactly, returns t.
2f60660a 388Returns nil if DIRECTORY contains no name starting with FILE.
335c5470 389
b6ce54d6
RS
390If PREDICATE is non-nil, call PREDICATE with each possible
391completion (in absolute form) and ignore it if PREDICATE returns nil.
392
335c5470
PJ
393This function ignores some of the possible completions as
394determined by the variable `completion-ignored-extensions', which see. */)
abfb1932
RS
395 (file, directory, predicate)
396 Lisp_Object file, directory, predicate;
14d55bce 397{
32f4334d 398 Lisp_Object handler;
32f4334d 399
8436e231 400 /* If the directory name has special constructs in it,
32f4334d 401 call the corresponding file handler. */
23bd240f 402 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
32f4334d 403 if (!NILP (handler))
abfb1932 404 return call4 (handler, Qfile_name_completion, file, directory, predicate);
32f4334d 405
8436e231
RS
406 /* If the file name has special constructs in it,
407 call the corresponding file handler. */
408 handler = Ffind_file_name_handler (file, Qfile_name_completion);
409 if (!NILP (handler))
abfb1932 410 return call4 (handler, Qfile_name_completion, file, directory, predicate);
8436e231 411
abfb1932 412 return file_name_completion (file, directory, 0, 0, predicate);
14d55bce
RS
413}
414
415DEFUN ("file-name-all-completions", Ffile_name_all_completions,
335c5470
PJ
416 Sfile_name_all_completions, 2, 2, 0,
417 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
418These are all file names in directory DIRECTORY which begin with FILE. */)
419 (file, directory)
23bd240f 420 Lisp_Object file, directory;
14d55bce 421{
32f4334d
RS
422 Lisp_Object handler;
423
8436e231 424 /* If the directory name has special constructs in it,
32f4334d 425 call the corresponding file handler. */
23bd240f 426 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
32f4334d 427 if (!NILP (handler))
23bd240f 428 return call3 (handler, Qfile_name_all_completions, file, directory);
32f4334d 429
8436e231
RS
430 /* If the file name has special constructs in it,
431 call the corresponding file handler. */
432 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
433 if (!NILP (handler))
23bd240f 434 return call3 (handler, Qfile_name_all_completions, file, directory);
8436e231 435
abfb1932 436 return file_name_completion (file, directory, 1, 0, Qnil);
14d55bce
RS
437}
438
dfcf069d 439static int file_name_completion_stat ();
01bb4018 440Lisp_Object Qdefault_directory;
dfcf069d 441
14d55bce 442Lisp_Object
abfb1932 443file_name_completion (file, dirname, all_flag, ver_flag, predicate)
14d55bce
RS
444 Lisp_Object file, dirname;
445 int all_flag, ver_flag;
abfb1932 446 Lisp_Object predicate;
14d55bce
RS
447{
448 DIR *d;
3271a8f5 449 int bestmatchsize = 0;
14d55bce 450 int matchcount = 0;
abfb1932
RS
451 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
452 If ALL_FLAG is 0, BESTMATCH is either nil
453 or the best match so far, not decoded. */
14d55bce 454 Lisp_Object bestmatch, tem, elt, name;
24c2a54f
RS
455 Lisp_Object encoded_file;
456 Lisp_Object encoded_dir;
14d55bce
RS
457 struct stat st;
458 int directoryp;
3271a8f5
SM
459 /* If includeall is zero, exclude files in completion-ignored-extensions as
460 well as "." and "..". Until shown otherwise, assume we can't exclude
461 anything. */
462 int includeall = 1;
aed13378 463 int count = SPECPDL_INDEX ();
24c2a54f 464 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3fcc88cc 465
6bbd7a29
GM
466 elt = Qnil;
467
b7826503 468 CHECK_STRING (file);
14d55bce 469
128ecc89
RS
470#ifdef FILE_SYSTEM_CASE
471 file = FILE_SYSTEM_CASE (file);
472#endif
14d55bce 473 bestmatch = Qnil;
24c2a54f
RS
474 encoded_file = encoded_dir = Qnil;
475 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
3fcc88cc 476 dirname = Fexpand_file_name (dirname, Qnil);
01bb4018 477 specbind (Qdefault_directory, dirname);
14d55bce 478
24c2a54f
RS
479 /* Do completion on the encoded file name
480 because the other names in the directory are (we presume)
481 encoded likewise. We decode the completed string at the end. */
2a54a229
SM
482 /* Actually, this is not quite true any more: we do most of the completion
483 work with decoded file names, but we still do some filtering based
484 on the encoded file name. */
6c8b4f07 485 encoded_file = STRING_MULTIBYTE (file) ? ENCODE_FILE (file) : file;
24c2a54f
RS
486
487 encoded_dir = ENCODE_FILE (dirname);
488
3271a8f5
SM
489 BLOCK_INPUT;
490 d = opendir (SDATA (Fdirectory_file_name (encoded_dir)));
491 UNBLOCK_INPUT;
492 if (!d)
493 report_file_error ("Opening directory", Fcons (dirname, Qnil));
14d55bce 494
3271a8f5
SM
495 record_unwind_protect (directory_files_internal_unwind,
496 make_save_value (d, 0));
14d55bce 497
3271a8f5
SM
498 /* Loop reading blocks */
499 /* (att3b compiler bug requires do a null comparison this way) */
500 while (1)
14d55bce 501 {
3271a8f5
SM
502 DIRENTRY *dp;
503 int len;
504 int canexclude = 0;
14d55bce 505
3271a8f5
SM
506 errno = 0;
507 dp = readdir (d);
508 if (dp == NULL && (0
9d291bdf 509# ifdef EAGAIN
3271a8f5 510 || errno == EAGAIN
9d291bdf
SM
511# endif
512# ifdef EINTR
3271a8f5 513 || errno == EINTR
9d291bdf 514# endif
3271a8f5
SM
515 ))
516 { QUIT; continue; }
9d291bdf 517
3271a8f5 518 if (!dp) break;
14d55bce 519
3271a8f5 520 len = NAMLEN (dp);
14d55bce 521
3271a8f5
SM
522 QUIT;
523 if (! DIRENTRY_NONEMPTY (dp)
524 || len < SCHARS (encoded_file)
525 || 0 <= scmp (dp->d_name, SDATA (encoded_file),
526 SCHARS (encoded_file)))
527 continue;
14d55bce 528
3271a8f5
SM
529 if (file_name_completion_stat (encoded_dir, dp, &st) < 0)
530 continue;
14d55bce 531
3271a8f5
SM
532 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
533 tem = Qnil;
534 /* If all_flag is set, always include all.
535 It would not actually be helpful to the user to ignore any possible
536 completions when making a list of them. */
537 if (!all_flag)
538 {
539 int skip;
540 if (directoryp)
ad456ad4
RS
541 {
542#ifndef TRIVIAL_DIRECTORY_ENTRY
543#define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
544#endif
abfb1932
RS
545 /* "." and ".." are never interesting as completions, and are
546 actually in the way in a directory with only one file. */
3271a8f5
SM
547 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
548 canexclude = 1;
549 else if (len > SCHARS (encoded_file))
d013f29b
EZ
550 /* Ignore directories if they match an element of
551 completion-ignored-extensions which ends in a slash. */
552 for (tem = Vcompletion_ignored_extensions;
553 CONSP (tem); tem = XCDR (tem))
554 {
555 int elt_len;
2a54a229 556 unsigned char *p1;
d013f29b
EZ
557
558 elt = XCAR (tem);
559 if (!STRINGP (elt))
560 continue;
a74aaa9d
EZ
561 /* Need to encode ELT, since scmp compares unibyte
562 strings only. */
563 elt = ENCODE_FILE (elt);
d5db4077 564 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
7a8d465a 565 if (elt_len <= 0)
d013f29b 566 continue;
d5db4077 567 p1 = SDATA (elt);
d013f29b
EZ
568 if (p1[elt_len] != '/')
569 continue;
570 skip = len - elt_len;
571 if (skip < 0)
572 continue;
573
574 if (0 <= scmp (dp->d_name + skip, p1, elt_len))
575 continue;
576 break;
577 }
ad456ad4
RS
578 }
579 else
3271a8f5 580 {
14d55bce
RS
581 /* Compare extensions-to-be-ignored against end of this file name */
582 /* if name is not an exact match against specified string */
3271a8f5 583 if (len > SCHARS (encoded_file))
14d55bce
RS
584 /* and exit this for loop if a match is found */
585 for (tem = Vcompletion_ignored_extensions;
70949dac 586 CONSP (tem); tem = XCDR (tem))
14d55bce 587 {
70949dac 588 elt = XCAR (tem);
88cf1852 589 if (!STRINGP (elt)) continue;
a74aaa9d
EZ
590 /* Need to encode ELT, since scmp compares unibyte
591 strings only. */
592 elt = ENCODE_FILE (elt);
d5db4077 593 skip = len - SCHARS (elt);
14d55bce
RS
594 if (skip < 0) continue;
595
596 if (0 <= scmp (dp->d_name + skip,
d5db4077
KR
597 SDATA (elt),
598 SCHARS (elt)))
14d55bce
RS
599 continue;
600 break;
601 }
602 }
603
f676868d
KH
604 /* If an ignored-extensions match was found,
605 don't process this name as a completion. */
3271a8f5
SM
606 if (CONSP (tem))
607 canexclude = 1;
f676868d 608
3271a8f5
SM
609 if (!includeall && canexclude)
610 /* We're not including all files and this file can be excluded. */
611 continue;
9c691c00 612
3271a8f5
SM
613 if (includeall && !canexclude)
614 { /* If we have one non-excludable file, we want to exclude the
615 excudable files. */
616 includeall = 0;
617 /* Throw away any previous excludable match found. */
618 bestmatch = Qnil;
619 bestmatchsize = 0;
620 matchcount = 0;
f676868d 621 }
3271a8f5
SM
622 }
623 /* FIXME: If we move this `decode' earlier we can eliminate
624 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
625 name = make_unibyte_string (dp->d_name, len);
626 name = DECODE_FILE (name);
627
628 {
629 Lisp_Object regexps;
630 Lisp_Object zero;
631 XSETFASTINT (zero, 0);
632
633 /* Ignore this element if it fails to match all the regexps. */
cc524e3b
CY
634 if (completion_ignore_case)
635 {
636 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
637 regexps = XCDR (regexps))
638 if (fast_string_match_ignore_case (XCAR (regexps), name) < 0)
639 break;
640 }
641 else
642 {
643 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
644 regexps = XCDR (regexps))
645 if (fast_string_match (XCAR (regexps), name) < 0)
646 break;
647 }
648
3271a8f5
SM
649 if (CONSP (regexps))
650 continue;
651 }
652
653 /* This is a possible completion */
654 if (directoryp)
655 /* This completion is a directory; make it end with '/'. */
656 name = Ffile_name_as_directory (name);
657
658 /* Test the predicate, if any. */
659 if (!NILP (predicate))
660 {
661 Lisp_Object val;
662 struct gcpro gcpro1;
14d55bce 663
3271a8f5
SM
664 GCPRO1 (name);
665 val = call1 (predicate, name);
666 UNGCPRO;
c4c52bb7 667
3271a8f5
SM
668 if (NILP (val))
669 continue;
670 }
abfb1932 671
3271a8f5 672 /* Suitably record this match. */
14d55bce 673
3271a8f5 674 matchcount++;
f676868d 675
3271a8f5
SM
676 if (all_flag)
677 bestmatch = Fcons (name, bestmatch);
678 else if (NILP (bestmatch))
679 {
680 bestmatch = name;
681 bestmatchsize = SCHARS (name);
682 }
683 else
684 {
685 Lisp_Object zero = make_number (0);
686 /* FIXME: This is a copy of the code in Ftry_completion. */
687 int compare = min (bestmatchsize, SCHARS (name));
688 Lisp_Object tem
689 = Fcompare_strings (bestmatch, zero,
690 make_number (compare),
691 name, zero,
692 make_number (compare),
693 completion_ignore_case ? Qt : Qnil);
694 int matchsize
695 = (EQ (tem, Qt) ? compare
696 : XINT (tem) < 0 ? - XINT (tem) - 1
697 : XINT (tem) - 1);
698
699 if (completion_ignore_case)
f676868d 700 {
3271a8f5
SM
701 /* If this is an exact match except for case,
702 use it as the best match rather than one that is not
703 an exact match. This way, we get the case pattern
704 of the actual match. */
705 /* This tests that the current file is an exact match
706 but BESTMATCH is not (it is too long). */
707 if ((matchsize == SCHARS (name)
708 && matchsize + !!directoryp
709 < SCHARS (bestmatch))
710 ||
711 /* If there is no exact match ignoring case,
712 prefer a match that does not change the case
713 of the input. */
714 /* If there is more than one exact match aside from
715 case, and one of them is exact including case,
716 prefer that one. */
717 /* This == checks that, of current file and BESTMATCH,
718 either both or neither are exact. */
719 (((matchsize == SCHARS (name))
720 ==
721 (matchsize + !!directoryp == SCHARS (bestmatch)))
722 && (tem = Fcompare_strings (name, zero,
723 make_number (SCHARS (file)),
724 file, zero,
725 Qnil,
726 Qnil),
727 EQ (Qt, tem))
728 && (tem = Fcompare_strings (bestmatch, zero,
729 make_number (SCHARS (file)),
730 file, zero,
731 Qnil,
732 Qnil),
733 ! EQ (Qt, tem))))
734 bestmatch = name;
14d55bce 735 }
3271a8f5 736 bestmatchsize = matchsize;
14d55bce 737 }
14d55bce
RS
738 }
739
3fcc88cc 740 UNGCPRO;
3271a8f5 741 /* This closes the directory. */
c3a3229c 742 bestmatch = unbind_to (count, bestmatch);
14d55bce 743
265a9e55 744 if (all_flag || NILP (bestmatch))
2a54a229 745 return bestmatch;
928b5acc
SM
746 /* Return t if the supplied string is an exact match (counting case);
747 it does not require any change to be made. */
748 if (matchcount == 1 && !NILP (Fequal (bestmatch, file)))
14d55bce 749 return Qt;
24c2a54f
RS
750 bestmatch = Fsubstring (bestmatch, make_number (0),
751 make_number (bestmatchsize));
24c2a54f 752 return bestmatch;
14d55bce
RS
753}
754
b3f04ced
RS
755/* Compare exactly LEN chars of strings at S1 and S2,
756 ignoring case if appropriate.
757 Return -1 if strings match,
758 else number of chars that match at the beginning. */
759
760static int
761scmp (s1, s2, len)
762 register unsigned char *s1, *s2;
763 int len;
764{
765 register int l = len;
766
767 if (completion_ignore_case)
768 {
769 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
770 l--;
771 }
772 else
773 {
774 while (l && *s1++ == *s2++)
775 l--;
776 }
777 if (l == 0)
778 return -1;
779 else
780 return len - l;
781}
782
dfcf069d 783static int
14d55bce
RS
784file_name_completion_stat (dirname, dp, st_addr)
785 Lisp_Object dirname;
786 DIRENTRY *dp;
787 struct stat *st_addr;
788{
789 int len = NAMLEN (dp);
d5db4077 790 int pos = SCHARS (dirname);
7e3cf34f 791 int value;
14d55bce
RS
792 char *fullname = (char *) alloca (len + pos + 2);
793
04924ee3
RS
794#ifdef MSDOS
795#if __DJGPP__ > 1
796 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
797 but aren't required here. Avoid computing the following fields:
798 st_inode, st_size and st_nlink for directories, and the execute bits
799 in st_mode for non-directory files with non-standard extensions. */
800
801 unsigned short save_djstat_flags = _djstat_flags;
802
803 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
804#endif /* __DJGPP__ > 1 */
805#endif /* MSDOS */
806
d5db4077 807 bcopy (SDATA (dirname), fullname, pos);
0b39d75d
RS
808 if (!IS_DIRECTORY_SEP (fullname[pos - 1]))
809 fullname[pos++] = DIRECTORY_SEP;
14d55bce
RS
810
811 bcopy (dp->d_name, fullname + pos, len);
812 fullname[pos + len] = 0;
813
a889bd0e 814#ifdef S_IFLNK
7e3cf34f
RS
815 /* We want to return success if a link points to a nonexistent file,
816 but we want to return the status for what the link points to,
817 in case it is a directory. */
818 value = lstat (fullname, st_addr);
819 stat (fullname, st_addr);
820 return value;
a889bd0e 821#else
04924ee3
RS
822 value = stat (fullname, st_addr);
823#ifdef MSDOS
824#if __DJGPP__ > 1
825 _djstat_flags = save_djstat_flags;
826#endif /* __DJGPP__ > 1 */
827#endif /* MSDOS */
828 return value;
829#endif /* S_IFLNK */
14d55bce
RS
830}
831\f
832Lisp_Object
833make_time (time)
e5124be7 834 time_t time;
14d55bce
RS
835{
836 return Fcons (make_number (time >> 16),
837 Fcons (make_number (time & 0177777), Qnil));
838}
839
8aaaec6b
EZ
840static char *
841stat_uname (struct stat *st)
842{
843#ifdef WINDOWSNT
844 return st->st_uname;
845#else
846 struct passwd *pw = (struct passwd *) getpwuid (st->st_uid);
847
848 if (pw)
849 return pw->pw_name;
850 else
851 return NULL;
852#endif
853}
854
855static char *
856stat_gname (struct stat *st)
857{
858#ifdef WINDOWSNT
859 return st->st_gname;
860#else
861 struct group *gr = (struct group *) getgrgid (st->st_gid);
862
863 if (gr)
864 return gr->gr_name;
865 else
866 return NULL;
867#endif
868}
869
6b61353c 870DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
335c5470
PJ
871 doc: /* Return a list of attributes of file FILENAME.
872Value is nil if specified file cannot be opened.
6b61353c
KH
873
874ID-FORMAT specifies the preferred format of attributes uid and gid (see
875below) - valid values are 'string and 'integer. The latter is the default,
876but we plan to change that, so you should specify a non-nil value for
877ID-FORMAT if you use the returned uid or gid.
878
879Elements of the attribute list are:
335c5470
PJ
880 0. t for directory, string (name linked to) for symbolic link, or nil.
881 1. Number of links to file.
6b61353c
KH
882 2. File uid as a string or an integer. If a string value cannot be
883 looked up, the integer value is returned.
884 3. File gid, likewise.
335c5470
PJ
885 4. Last access time, as a list of two integers.
886 First integer has high-order 16 bits of time, second has low 16 bits.
887 5. Last modification time, likewise.
888 6. Last status change time, likewise.
889 7. Size in bytes.
890 This is a floating point number if the size is too large for an integer.
891 8. File modes, as a string of ten letters or dashes as in ls -l.
e0f24100 892 9. t if file's gid would change if file were deleted and recreated.
335c5470 89310. inode number. If inode number is larger than the Emacs integer,
e058f331
EZ
894 but still fits into a 32-bit number, this is a cons cell containing two
895 integers: first the high part, then the low 16 bits. If the inode number
896 is wider than 32 bits, this is a cons cell containing three integers:
897 first the high 24 bits, then middle 24 bits, and finally the low 16 bits.
335c5470 89811. Device number. If it is larger than the Emacs integer, this is
6c5665e9
EZ
899 a cons cell, similar to the inode number.
900
901On MS-Windows, performance depends on `w32-get-true-file-attributes',
902which see. */)
6b61353c
KH
903 (filename, id_format)
904 Lisp_Object filename, id_format;
14d55bce
RS
905{
906 Lisp_Object values[12];
24c2a54f 907 Lisp_Object encoded;
14d55bce 908 struct stat s;
0a974c85 909#if defined (BSD4_2) || defined (BSD4_3)
b3edfc9b 910 Lisp_Object dirname;
14d55bce 911 struct stat sdir;
b3edfc9b 912#endif
14d55bce 913 char modes[10];
32f4334d 914 Lisp_Object handler;
7435aef8 915 struct gcpro gcpro1;
1cab27d2 916 EMACS_INT ino, uid, gid;
8aaaec6b 917 char *uname, *gname;
14d55bce
RS
918
919 filename = Fexpand_file_name (filename, Qnil);
32f4334d
RS
920
921 /* If the file name has special constructs in it,
922 call the corresponding file handler. */
a617e913 923 handler = Ffind_file_name_handler (filename, Qfile_attributes);
32f4334d 924 if (!NILP (handler))
6b61353c
KH
925 { /* Only pass the extra arg if it is used to help backward compatibility
926 with old file handlers which do not implement the new arg. --Stef */
927 if (NILP (id_format))
928 return call2 (handler, Qfile_attributes, filename);
929 else
930 return call3 (handler, Qfile_attributes, filename, id_format);
931 }
32f4334d 932
7435aef8 933 GCPRO1 (filename);
24c2a54f 934 encoded = ENCODE_FILE (filename);
7435aef8 935 UNGCPRO;
24c2a54f 936
d5db4077 937 if (lstat (SDATA (encoded), &s) < 0)
14d55bce
RS
938 return Qnil;
939
940 switch (s.st_mode & S_IFMT)
941 {
942 default:
943 values[0] = Qnil; break;
944 case S_IFDIR:
945 values[0] = Qt; break;
946#ifdef S_IFLNK
947 case S_IFLNK:
948 values[0] = Ffile_symlink_p (filename); break;
949#endif
950 }
951 values[1] = make_number (s.st_nlink);
1cab27d2
EZ
952 uid = s.st_uid;
953 gid = s.st_gid;
6b61353c
KH
954 if (NILP (id_format) || EQ (id_format, Qinteger))
955 {
1cab27d2
EZ
956 values[2] = make_fixnum_or_float (uid);
957 values[3] = make_fixnum_or_float (gid);
6b61353c
KH
958 }
959 else
960 {
8c8a7c58 961 BLOCK_INPUT;
8aaaec6b
EZ
962 uname = stat_uname (&s);
963 values[2] = (uname ? build_string (uname)
1cab27d2 964 : make_fixnum_or_float (uid));
8aaaec6b
EZ
965 gname = stat_gname (&s);
966 values[3] = (gname ? build_string (gname)
1cab27d2 967 : make_fixnum_or_float (gid));
8c8a7c58 968 UNBLOCK_INPUT;
6b61353c 969 }
14d55bce
RS
970 values[4] = make_time (s.st_atime);
971 values[5] = make_time (s.st_mtime);
972 values[6] = make_time (s.st_ctime);
68c45bf0 973 values[7] = make_number (s.st_size);
cb1846b4 974 /* If the size is out of range for an integer, return a float. */
60fc6069 975 if (XINT (values[7]) != s.st_size)
cb1846b4 976 values[7] = make_float ((double)s.st_size);
4bc12672
JR
977 /* If the size is negative, and its type is long, convert it back to
978 positive. */
979 if (s.st_size < 0 && sizeof (s.st_size) == sizeof (long))
980 values[7] = make_float ((double) ((unsigned long) s.st_size));
981
14d55bce
RS
982 filemodestring (&s, modes);
983 values[8] = make_string (modes, 10);
0a974c85 984#if defined (BSD4_2) || defined (BSD4_3) /* file gid will be dir gid */
14d55bce 985 dirname = Ffile_name_directory (filename);
24c2a54f
RS
986 if (! NILP (dirname))
987 encoded = ENCODE_FILE (dirname);
d5db4077 988 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0)
01388a3d 989 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
14d55bce
RS
990 else /* if we can't tell, assume worst */
991 values[9] = Qt;
992#else /* file gid will be egid */
01388a3d 993 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
14d55bce 994#endif /* BSD4_2 (or BSD4_3) */
b55445d6 995 /* Shut up GCC warnings in FIXNUM_OVERFLOW_P below. */
e058f331
EZ
996 if (sizeof (s.st_ino) > sizeof (ino))
997 ino = (EMACS_INT)(s.st_ino & 0xffffffff);
998 else
999 ino = s.st_ino;
1000 if (!FIXNUM_OVERFLOW_P (ino)
1001 && (sizeof (s.st_ino) <= sizeof (ino) || (s.st_ino & ~INTMASK) == 0))
1002 /* Keep the most common cases as integers. */
1003 values[10] = make_number (ino);
1004 else if (sizeof (s.st_ino) <= sizeof (ino)
1005 || ((s.st_ino >> 16) & ~INTMASK) == 0)
4c637faa
RS
1006 /* To allow inode numbers larger than VALBITS, separate the bottom
1007 16 bits. */
e058f331
EZ
1008 values[10] = Fcons (make_number ((EMACS_INT)(s.st_ino >> 16)),
1009 make_number ((EMACS_INT)(s.st_ino & 0xffff)));
4c637faa 1010 else
e058f331
EZ
1011 {
1012 /* To allow inode numbers beyond 32 bits, separate into 2 24-bit
ff8ddc7b 1013 high parts and a 16-bit bottom part.
25ae5671
EZ
1014 The code on the next line avoids a compiler warning on
1015 systems where st_ino is 32 bit wide. (bug#766). */
ff8ddc7b 1016 EMACS_INT high_ino = s.st_ino >> 31 >> 1;
e058f331
EZ
1017 EMACS_INT low_ino = s.st_ino & 0xffffffff;
1018
1019 values[10] = Fcons (make_number (high_ino >> 8),
1020 Fcons (make_number (((high_ino & 0xff) << 16)
1021 + (low_ino >> 16)),
1022 make_number (low_ino & 0xffff)));
1023 }
68c45bf0 1024
7412d429
EZ
1025 /* Likewise for device, but don't let it become negative. We used
1026 to use FIXNUM_OVERFLOW_P here, but that won't catch large
1027 positive numbers such as 0xFFEEDDCC. */
1028 if ((EMACS_INT)s.st_dev < 0
1029 || (EMACS_INT)s.st_dev > MOST_POSITIVE_FIXNUM)
68c45bf0
PE
1030 values[11] = Fcons (make_number (s.st_dev >> 16),
1031 make_number (s.st_dev & 0xffff));
1032 else
1033 values[11] = make_number (s.st_dev);
1034
14d55bce
RS
1035 return Flist (sizeof(values) / sizeof(values[0]), values);
1036}
4424b255
GV
1037
1038DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
335c5470
PJ
1039 doc: /* Return t if first arg file attributes list is less than second.
1040Comparison is in lexicographic order and case is significant. */)
1041 (f1, f2)
4424b255
GV
1042 Lisp_Object f1, f2;
1043{
1044 return Fstring_lessp (Fcar (f1), Fcar (f2));
1045}
14d55bce 1046\f
dfcf069d 1047void
14d55bce
RS
1048syms_of_dired ()
1049{
32f4334d 1050 Qdirectory_files = intern ("directory-files");
4424b255 1051 Qdirectory_files_and_attributes = intern ("directory-files-and-attributes");
32f4334d
RS
1052 Qfile_name_completion = intern ("file-name-completion");
1053 Qfile_name_all_completions = intern ("file-name-all-completions");
434e6714 1054 Qfile_attributes = intern ("file-attributes");
4424b255 1055 Qfile_attributes_lessp = intern ("file-attributes-lessp");
01bb4018 1056 Qdefault_directory = intern ("default-directory");
32f4334d 1057
a2d3836c 1058 staticpro (&Qdirectory_files);
4424b255 1059 staticpro (&Qdirectory_files_and_attributes);
a2d3836c
EN
1060 staticpro (&Qfile_name_completion);
1061 staticpro (&Qfile_name_all_completions);
1062 staticpro (&Qfile_attributes);
4424b255 1063 staticpro (&Qfile_attributes_lessp);
01bb4018 1064 staticpro (&Qdefault_directory);
a2d3836c 1065
14d55bce 1066 defsubr (&Sdirectory_files);
4424b255 1067 defsubr (&Sdirectory_files_and_attributes);
14d55bce 1068 defsubr (&Sfile_name_completion);
14d55bce
RS
1069 defsubr (&Sfile_name_all_completions);
1070 defsubr (&Sfile_attributes);
4424b255 1071 defsubr (&Sfile_attributes_lessp);
14d55bce 1072
14d55bce 1073 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
407a52c4
LT
1074 doc: /* Completion ignores file names ending in any string in this list.
1075It does not ignore them if all possible completions end in one of
1076these strings or when displaying a list of completions.
1077It ignores directory names if they match any string in this list which
1078ends in a slash. */);
14d55bce
RS
1079 Vcompletion_ignored_extensions = Qnil;
1080}
6b61353c
KH
1081
1082/* arch-tag: 1ac8deca-4d8f-4d41-ade9-089154d98c03
1083 (do not change this comment) */