]> code.delx.au - gnu-emacs/blob - src/dired.c
(command-line-processed): Doc fix.
[gnu-emacs] / src / dired.c
1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24
25 #include <stdio.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28
29 #include "systime.h"
30 #include <errno.h>
31
32 #ifdef VMS
33 #include <string.h>
34 #include <rms.h>
35 #include <rmsdef.h>
36 #endif
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
42 /* The d_nameln member of a struct dirent includes the '\0' character
43 on some systems, but not on others. What's worse, you can't tell
44 at compile-time which one it will be, since it really depends on
45 the sort of system providing the filesystem you're reading from,
46 not the system you are running on. Paul Eggert
47 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
48 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
49 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
50
51 Since applying strlen to the name always works, we'll just do that. */
52 #define NAMLEN(p) strlen (p->d_name)
53
54 #ifdef SYSV_SYSTEM_DIR
55
56 #include <dirent.h>
57 #define DIRENTRY struct dirent
58
59 #else /* not SYSV_SYSTEM_DIR */
60
61 #ifdef NONSYSTEM_DIR_LIBRARY
62 #include "ndir.h"
63 #else /* not NONSYSTEM_DIR_LIBRARY */
64 #ifdef MSDOS
65 #include <dirent.h>
66 #else
67 #include <sys/dir.h>
68 #endif
69 #endif /* not NONSYSTEM_DIR_LIBRARY */
70
71 #include <sys/stat.h>
72
73 #ifndef MSDOS
74 #define DIRENTRY struct direct
75
76 extern DIR *opendir ();
77 extern struct direct *readdir ();
78
79 #endif /* not MSDOS */
80 #endif /* not SYSV_SYSTEM_DIR */
81
82 #ifdef MSDOS
83 #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
84 #else
85 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
86 #endif
87
88 #include "lisp.h"
89 #include "buffer.h"
90 #include "commands.h"
91 #include "charset.h"
92 #include "coding.h"
93 #include "regex.h"
94
95 /* Returns a search buffer, with a fastmap allocated and ready to go. */
96 extern struct re_pattern_buffer *compile_pattern ();
97
98 /* From filemode.c. Can't go in Lisp.h because of `stat'. */
99 extern void filemodestring P_ ((struct stat *, char *));
100
101 /* if system does not have symbolic links, it does not have lstat.
102 In that case, use ordinary stat instead. */
103
104 #ifndef S_IFLNK
105 #define lstat stat
106 #endif
107
108 extern int completion_ignore_case;
109 extern Lisp_Object Vcompletion_regexp_list;
110 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
111
112 Lisp_Object Vcompletion_ignored_extensions;
113 Lisp_Object Qcompletion_ignore_case;
114 Lisp_Object Qdirectory_files;
115 Lisp_Object Qdirectory_files_and_attributes;
116 Lisp_Object Qfile_name_completion;
117 Lisp_Object Qfile_name_all_completions;
118 Lisp_Object Qfile_attributes;
119 Lisp_Object Qfile_attributes_lessp;
120 \f
121
122 Lisp_Object
123 directory_files_internal_unwind (dh)
124 Lisp_Object dh;
125 {
126 DIR *d = (DIR *) ((XINT (XCAR (dh)) << 16) + XINT (XCDR (dh)));
127 closedir (d);
128 return Qnil;
129 }
130
131 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
132 When ATTRS is zero, return a list of directory filenames; when
133 non-zero, return a list of directory filenames and their attributes. */
134
135 Lisp_Object
136 directory_files_internal (directory, full, match, nosort, attrs)
137 Lisp_Object directory, full, match, nosort;
138 int attrs;
139 {
140 DIR *d;
141 int directory_nbytes;
142 Lisp_Object list, dirfilename, encoded_directory;
143 struct re_pattern_buffer *bufp = NULL;
144 int needsep = 0;
145 int count = specpdl_ptr - specpdl;
146 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
147 DIRENTRY *dp;
148 int retry_p;
149
150 /* Because of file name handlers, these functions might call
151 Ffuncall, and cause a GC. */
152 list = encoded_directory = dirfilename = Qnil;
153 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
154 directory = Fexpand_file_name (directory, Qnil);
155 dirfilename = Fdirectory_file_name (directory);
156
157 if (!NILP (match))
158 {
159 CHECK_STRING (match);
160
161 /* MATCH might be a flawed regular expression. Rather than
162 catching and signaling our own errors, we just call
163 compile_pattern to do the work for us. */
164 /* Pass 1 for the MULTIBYTE arg
165 because we do make multibyte strings if the contents warrant. */
166 #ifdef VMS
167 bufp = compile_pattern (match, 0,
168 buffer_defaults.downcase_table, 0, 1);
169 #else
170 bufp = compile_pattern (match, 0, Qnil, 0, 1);
171 #endif
172 }
173
174 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
175 run_pre_post_conversion_on_str which calls Lisp directly and
176 indirectly. */
177 dirfilename = ENCODE_FILE (dirfilename);
178 encoded_directory = ENCODE_FILE (directory);
179
180 /* Now *bufp is the compiled form of MATCH; don't call anything
181 which might compile a new regexp until we're done with the loop! */
182
183 /* Do this opendir after anything which might signal an error; if
184 an error is signaled while the directory stream is open, we
185 have to make sure it gets closed, and setting up an
186 unwind_protect to do so would be a pain. */
187 retry:
188
189 d = opendir (XSTRING (dirfilename)->data);
190 if (d == NULL)
191 report_file_error ("Opening directory", Fcons (directory, Qnil));
192
193 /* Unfortunately, we can now invoke expand-file-name and
194 file-attributes on filenames, both of which can throw, so we must
195 do a proper unwind-protect. */
196 record_unwind_protect (directory_files_internal_unwind,
197 Fcons (make_number (((unsigned long) d) >> 16),
198 make_number (((unsigned long) d) & 0xffff)));
199
200 directory_nbytes = STRING_BYTES (XSTRING (directory));
201 re_match_object = Qt;
202
203 /* Decide whether we need to add a directory separator. */
204 #ifndef VMS
205 if (directory_nbytes == 0
206 || !IS_ANY_SEP (XSTRING (directory)->data[directory_nbytes - 1]))
207 needsep = 1;
208 #endif /* not VMS */
209
210 /* Loop reading blocks until EOF or error. */
211 for (;;)
212 {
213 errno = 0;
214 dp = readdir (d);
215
216 #ifdef EAGAIN
217 if (dp == NULL && errno == EAGAIN)
218 continue;
219 #endif
220
221 if (dp == NULL)
222 break;
223
224 if (DIRENTRY_NONEMPTY (dp))
225 {
226 int len;
227 int wanted = 0;
228 Lisp_Object name, finalname;
229 struct gcpro gcpro1, gcpro2;
230
231 len = NAMLEN (dp);
232 name = finalname = make_unibyte_string (dp->d_name, len);
233 GCPRO2 (finalname, name);
234
235 /* Note: ENCODE_FILE can GC; it should protect its argument,
236 though. */
237 name = DECODE_FILE (name);
238 len = STRING_BYTES (XSTRING (name));
239
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
245 if (NILP (match)
246 || (0 <= re_search (bufp, XSTRING (name)->data, len, 0, len, 0)))
247 wanted = 1;
248
249 immediate_quit = 0;
250
251 if (wanted)
252 {
253 if (!NILP (full))
254 {
255 Lisp_Object fullname;
256 int nbytes = len + directory_nbytes + needsep;
257 int nchars;
258
259 fullname = make_uninit_multibyte_string (nbytes, nbytes);
260 bcopy (XSTRING (directory)->data, XSTRING (fullname)->data,
261 directory_nbytes);
262
263 if (needsep)
264 XSTRING (fullname)->data[directory_nbytes] = DIRECTORY_SEP;
265
266 bcopy (XSTRING (name)->data,
267 XSTRING (fullname)->data + directory_nbytes + needsep,
268 len);
269
270 nchars = chars_in_text (XSTRING (fullname)->data, nbytes);
271
272 /* Some bug somewhere. */
273 if (nchars > nbytes)
274 abort ();
275
276 XSTRING (fullname)->size = nchars;
277 if (nchars == nbytes)
278 SET_STRING_BYTES (XSTRING (fullname), -1);
279
280 finalname = fullname;
281 }
282 else
283 finalname = name;
284
285 if (attrs)
286 {
287 /* Construct an expanded filename for the directory entry.
288 Use the decoded names for input to Ffile_attributes. */
289 Lisp_Object decoded_fullname, fileattrs;
290 struct gcpro gcpro1, gcpro2;
291
292 decoded_fullname = fileattrs = Qnil;
293 GCPRO2 (decoded_fullname, fileattrs);
294
295 /* Both Fexpand_file_name and Ffile_attributes can GC. */
296 decoded_fullname = Fexpand_file_name (name, directory);
297 fileattrs = Ffile_attributes (decoded_fullname);
298
299 list = Fcons (Fcons (finalname, fileattrs), list);
300 UNGCPRO;
301 }
302 else
303 list = Fcons (finalname, list);
304 }
305
306 UNGCPRO;
307 }
308 }
309
310 retry_p = 0;
311 #ifdef EINTR
312 retry_p |= errno == EINTR;
313 #endif
314
315 closedir (d);
316
317 /* Discard the unwind protect. */
318 specpdl_ptr = specpdl + count;
319
320 if (retry_p)
321 {
322 list = Qnil;
323 goto retry;
324 }
325
326 if (NILP (nosort))
327 list = Fsort (Fnreverse (list),
328 attrs ? Qfile_attributes_lessp : Qstring_lessp);
329
330 RETURN_UNGCPRO (list);
331 }
332
333
334 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
335 doc: /* Return a list of names of files in DIRECTORY.
336 There are three optional arguments:
337 If FULL is non-nil, return absolute file names. Otherwise return names
338 that are relative to the specified directory.
339 If MATCH is non-nil, mention only file names that match the regexp MATCH.
340 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
341 NOSORT is useful if you plan to sort the result yourself. */)
342 (directory, full, match, nosort)
343 Lisp_Object directory, full, match, nosort;
344 {
345 Lisp_Object handler;
346
347 /* If the file name has special constructs in it,
348 call the corresponding file handler. */
349 handler = Ffind_file_name_handler (directory, Qdirectory_files);
350 if (!NILP (handler))
351 {
352 Lisp_Object args[6];
353
354 args[0] = handler;
355 args[1] = Qdirectory_files;
356 args[2] = directory;
357 args[3] = full;
358 args[4] = match;
359 args[5] = nosort;
360 return Ffuncall (6, args);
361 }
362
363 return directory_files_internal (directory, full, match, nosort, 0);
364 }
365
366 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
367 Sdirectory_files_and_attributes, 1, 4, 0,
368 doc: /* Return a list of names of files and their attributes in DIRECTORY.
369 There are three optional arguments:
370 If FULL is non-nil, return absolute file names. Otherwise return names
371 that are relative to the specified directory.
372 If MATCH is non-nil, mention only file names that match the regexp MATCH.
373 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
374 NOSORT is useful if you plan to sort the result yourself. */)
375 (directory, full, match, nosort)
376 Lisp_Object directory, full, match, nosort;
377 {
378 Lisp_Object handler;
379
380 /* If the file name has special constructs in it,
381 call the corresponding file handler. */
382 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
383 if (!NILP (handler))
384 {
385 Lisp_Object args[6];
386
387 args[0] = handler;
388 args[1] = Qdirectory_files_and_attributes;
389 args[2] = directory;
390 args[3] = full;
391 args[4] = match;
392 args[5] = nosort;
393 return Ffuncall (6, args);
394 }
395
396 return directory_files_internal (directory, full, match, nosort, 1);
397 }
398
399 \f
400 Lisp_Object file_name_completion ();
401
402 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
403 2, 2, 0,
404 doc: /* Complete file name FILE in directory DIRECTORY.
405 Returns the longest string
406 common to all file names in DIRECTORY that start with FILE.
407 If there is only one and FILE matches it exactly, returns t.
408 Returns nil if DIR contains no name starting with FILE.
409
410 This function ignores some of the possible completions as
411 determined by the variable `completion-ignored-extensions', which see. */)
412 (file, directory)
413 Lisp_Object file, directory;
414 {
415 Lisp_Object handler;
416
417 /* If the directory name has special constructs in it,
418 call the corresponding file handler. */
419 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
420 if (!NILP (handler))
421 return call3 (handler, Qfile_name_completion, file, directory);
422
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_completion);
426 if (!NILP (handler))
427 return call3 (handler, Qfile_name_completion, file, directory);
428
429 return file_name_completion (file, directory, 0, 0);
430 }
431
432 DEFUN ("file-name-all-completions", Ffile_name_all_completions,
433 Sfile_name_all_completions, 2, 2, 0,
434 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
435 These are all file names in directory DIRECTORY which begin with FILE. */)
436 (file, directory)
437 Lisp_Object file, directory;
438 {
439 Lisp_Object handler;
440
441 /* If the directory name has special constructs in it,
442 call the corresponding file handler. */
443 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
444 if (!NILP (handler))
445 return call3 (handler, Qfile_name_all_completions, file, directory);
446
447 /* If the file name has special constructs in it,
448 call the corresponding file handler. */
449 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
450 if (!NILP (handler))
451 return call3 (handler, Qfile_name_all_completions, file, directory);
452
453 return file_name_completion (file, directory, 1, 0);
454 }
455
456 static int file_name_completion_stat ();
457
458 Lisp_Object
459 file_name_completion (file, dirname, all_flag, ver_flag)
460 Lisp_Object file, dirname;
461 int all_flag, ver_flag;
462 {
463 DIR *d;
464 int bestmatchsize = 0, skip;
465 register int compare, matchsize;
466 unsigned char *p1, *p2;
467 int matchcount = 0;
468 Lisp_Object bestmatch, tem, elt, name;
469 Lisp_Object encoded_file;
470 Lisp_Object encoded_dir;
471 struct stat st;
472 int directoryp;
473 int passcount;
474 int count = specpdl_ptr - specpdl;
475 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
476
477 elt = Qnil;
478
479 #ifdef VMS
480 extern DIRENTRY * readdirver ();
481
482 DIRENTRY *((* readfunc) ());
483
484 /* Filename completion on VMS ignores case, since VMS filesys does. */
485 specbind (Qcompletion_ignore_case, Qt);
486
487 readfunc = readdir;
488 if (ver_flag)
489 readfunc = readdirver;
490 file = Fupcase (file);
491 #else /* not VMS */
492 CHECK_STRING (file);
493 #endif /* not VMS */
494
495 #ifdef FILE_SYSTEM_CASE
496 file = FILE_SYSTEM_CASE (file);
497 #endif
498 bestmatch = Qnil;
499 encoded_file = encoded_dir = Qnil;
500 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
501 dirname = Fexpand_file_name (dirname, Qnil);
502
503 /* Do completion on the encoded file name
504 because the other names in the directory are (we presume)
505 encoded likewise. We decode the completed string at the end. */
506 encoded_file = ENCODE_FILE (file);
507
508 encoded_dir = ENCODE_FILE (dirname);
509
510 /* With passcount = 0, ignore files that end in an ignored extension.
511 If nothing found then try again with passcount = 1, don't ignore them.
512 If looking for all completions, start with passcount = 1,
513 so always take even the ignored ones.
514
515 ** It would not actually be helpful to the user to ignore any possible
516 completions when making a list of them.** */
517
518 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++)
519 {
520 d = opendir (XSTRING (Fdirectory_file_name (encoded_dir))->data);
521 if (!d)
522 report_file_error ("Opening directory", Fcons (dirname, Qnil));
523
524 /* Loop reading blocks */
525 /* (att3b compiler bug requires do a null comparison this way) */
526 while (1)
527 {
528 DIRENTRY *dp;
529 int len;
530
531 #ifdef VMS
532 dp = (*readfunc) (d);
533 #else
534 dp = readdir (d);
535 #endif
536 if (!dp) break;
537
538 len = NAMLEN (dp);
539
540 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
541 goto quit;
542 if (! DIRENTRY_NONEMPTY (dp)
543 || len < XSTRING (encoded_file)->size
544 || 0 <= scmp (dp->d_name, XSTRING (encoded_file)->data,
545 XSTRING (encoded_file)->size))
546 continue;
547
548 if (file_name_completion_stat (encoded_dir, dp, &st) < 0)
549 continue;
550
551 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
552 tem = Qnil;
553 if (directoryp)
554 {
555 #ifndef TRIVIAL_DIRECTORY_ENTRY
556 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
557 #endif
558 /* "." and ".." are never interesting as completions, but are
559 actually in the way in a directory contains only one file. */
560 if (!passcount && TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
561 continue;
562 if (!passcount && len > XSTRING (encoded_file)->size)
563 /* Ignore directories if they match an element of
564 completion-ignored-extensions which ends in a slash. */
565 for (tem = Vcompletion_ignored_extensions;
566 CONSP (tem); tem = XCDR (tem))
567 {
568 int elt_len;
569
570 elt = XCAR (tem);
571 if (!STRINGP (elt))
572 continue;
573 elt_len = XSTRING (elt)->size - 1; /* -1 for trailing / */
574 if (elt_len <= 0)
575 continue;
576 p1 = XSTRING (elt)->data;
577 if (p1[elt_len] != '/')
578 continue;
579 skip = len - elt_len;
580 if (skip < 0)
581 continue;
582
583 if (0 <= scmp (dp->d_name + skip, p1, elt_len))
584 continue;
585 break;
586 }
587 }
588 else
589 {
590 /* Compare extensions-to-be-ignored against end of this file name */
591 /* if name is not an exact match against specified string */
592 if (!passcount && len > XSTRING (encoded_file)->size)
593 /* and exit this for loop if a match is found */
594 for (tem = Vcompletion_ignored_extensions;
595 CONSP (tem); tem = XCDR (tem))
596 {
597 elt = XCAR (tem);
598 if (!STRINGP (elt)) continue;
599 skip = len - XSTRING (elt)->size;
600 if (skip < 0) continue;
601
602 if (0 <= scmp (dp->d_name + skip,
603 XSTRING (elt)->data,
604 XSTRING (elt)->size))
605 continue;
606 break;
607 }
608 }
609
610 /* If an ignored-extensions match was found,
611 don't process this name as a completion. */
612 if (!passcount && CONSP (tem))
613 continue;
614
615 if (!passcount)
616 {
617 Lisp_Object regexps;
618 Lisp_Object zero;
619 XSETFASTINT (zero, 0);
620
621 /* Ignore this element if it fails to match all the regexps. */
622 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
623 regexps = XCDR (regexps))
624 {
625 tem = Fstring_match (XCAR (regexps),
626 make_string (dp->d_name, len), zero);
627 if (NILP (tem))
628 break;
629 }
630 if (CONSP (regexps))
631 continue;
632 }
633
634 /* Update computation of how much all possible completions match */
635
636 matchcount++;
637
638 if (all_flag || NILP (bestmatch))
639 {
640 /* This is a possible completion */
641 if (directoryp)
642 {
643 /* This completion is a directory; make it end with '/' */
644 name = Ffile_name_as_directory (make_string (dp->d_name, len));
645 }
646 else
647 name = make_string (dp->d_name, len);
648 if (all_flag)
649 {
650 name = DECODE_FILE (name);
651 bestmatch = Fcons (name, bestmatch);
652 }
653 else
654 {
655 bestmatch = name;
656 bestmatchsize = XSTRING (name)->size;
657 }
658 }
659 else
660 {
661 compare = min (bestmatchsize, len);
662 p1 = XSTRING (bestmatch)->data;
663 p2 = (unsigned char *) dp->d_name;
664 matchsize = scmp(p1, p2, compare);
665 if (matchsize < 0)
666 matchsize = compare;
667 if (completion_ignore_case)
668 {
669 /* If this is an exact match except for case,
670 use it as the best match rather than one that is not
671 an exact match. This way, we get the case pattern
672 of the actual match. */
673 /* This tests that the current file is an exact match
674 but BESTMATCH is not (it is too long). */
675 if ((matchsize == len
676 && matchsize + !!directoryp
677 < XSTRING (bestmatch)->size)
678 ||
679 /* If there is no exact match ignoring case,
680 prefer a match that does not change the case
681 of the input. */
682 /* If there is more than one exact match aside from
683 case, and one of them is exact including case,
684 prefer that one. */
685 /* This == checks that, of current file and BESTMATCH,
686 either both or neither are exact. */
687 (((matchsize == len)
688 ==
689 (matchsize + !!directoryp
690 == XSTRING (bestmatch)->size))
691 && !bcmp (p2, XSTRING (encoded_file)->data, XSTRING (encoded_file)->size)
692 && bcmp (p1, XSTRING (encoded_file)->data, XSTRING (encoded_file)->size)))
693 {
694 bestmatch = make_string (dp->d_name, len);
695 if (directoryp)
696 bestmatch = Ffile_name_as_directory (bestmatch);
697 }
698 }
699
700 /* If this dirname all matches, see if implicit following
701 slash does too. */
702 if (directoryp
703 && compare == matchsize
704 && bestmatchsize > matchsize
705 && IS_ANY_SEP (p1[matchsize]))
706 matchsize++;
707 bestmatchsize = matchsize;
708 }
709 }
710 closedir (d);
711 }
712
713 UNGCPRO;
714 bestmatch = unbind_to (count, bestmatch);
715
716 if (all_flag || NILP (bestmatch))
717 {
718 if (STRINGP (bestmatch))
719 bestmatch = DECODE_FILE (bestmatch);
720 return bestmatch;
721 }
722 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size)
723 return Qt;
724 bestmatch = Fsubstring (bestmatch, make_number (0),
725 make_number (bestmatchsize));
726 /* Now that we got the right initial segment of BESTMATCH,
727 decode it from the coding system in use. */
728 bestmatch = DECODE_FILE (bestmatch);
729 return bestmatch;
730
731 quit:
732 if (d) closedir (d);
733 Vquit_flag = Qnil;
734 return Fsignal (Qquit, Qnil);
735 }
736
737 static int
738 file_name_completion_stat (dirname, dp, st_addr)
739 Lisp_Object dirname;
740 DIRENTRY *dp;
741 struct stat *st_addr;
742 {
743 int len = NAMLEN (dp);
744 int pos = XSTRING (dirname)->size;
745 int value;
746 char *fullname = (char *) alloca (len + pos + 2);
747
748 #ifdef MSDOS
749 #if __DJGPP__ > 1
750 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
751 but aren't required here. Avoid computing the following fields:
752 st_inode, st_size and st_nlink for directories, and the execute bits
753 in st_mode for non-directory files with non-standard extensions. */
754
755 unsigned short save_djstat_flags = _djstat_flags;
756
757 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
758 #endif /* __DJGPP__ > 1 */
759 #endif /* MSDOS */
760
761 bcopy (XSTRING (dirname)->data, fullname, pos);
762 #ifndef VMS
763 if (!IS_DIRECTORY_SEP (fullname[pos - 1]))
764 fullname[pos++] = DIRECTORY_SEP;
765 #endif
766
767 bcopy (dp->d_name, fullname + pos, len);
768 fullname[pos + len] = 0;
769
770 #ifdef S_IFLNK
771 /* We want to return success if a link points to a nonexistent file,
772 but we want to return the status for what the link points to,
773 in case it is a directory. */
774 value = lstat (fullname, st_addr);
775 stat (fullname, st_addr);
776 return value;
777 #else
778 value = stat (fullname, st_addr);
779 #ifdef MSDOS
780 #if __DJGPP__ > 1
781 _djstat_flags = save_djstat_flags;
782 #endif /* __DJGPP__ > 1 */
783 #endif /* MSDOS */
784 return value;
785 #endif /* S_IFLNK */
786 }
787 \f
788 #ifdef VMS
789
790 DEFUN ("file-name-all-versions", Ffile_name_all_versions,
791 Sfile_name_all_versions, 2, 2, 0,
792 doc: /* Return a list of all versions of file name FILE in directory DIRECTORY. */)
793 (file, directory)
794 Lisp_Object file, directory;
795 {
796 return file_name_completion (file, directory, 1, 1);
797 }
798
799 DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0,
800 doc: /* Return the maximum number of versions allowed for FILE.
801 Returns nil if the file cannot be opened or if there is no version limit. */)
802 (filename)
803 Lisp_Object filename;
804 {
805 Lisp_Object retval;
806 struct FAB fab;
807 struct RAB rab;
808 struct XABFHC xabfhc;
809 int status;
810
811 filename = Fexpand_file_name (filename, Qnil);
812 fab = cc$rms_fab;
813 xabfhc = cc$rms_xabfhc;
814 fab.fab$l_fna = XSTRING (filename)->data;
815 fab.fab$b_fns = strlen (fab.fab$l_fna);
816 fab.fab$l_xab = (char *) &xabfhc;
817 status = sys$open (&fab, 0, 0);
818 if (status != RMS$_NORMAL) /* Probably non-existent file */
819 return Qnil;
820 sys$close (&fab, 0, 0);
821 if (xabfhc.xab$w_verlimit == 32767)
822 return Qnil; /* No version limit */
823 else
824 return make_number (xabfhc.xab$w_verlimit);
825 }
826
827 #endif /* VMS */
828 \f
829 Lisp_Object
830 make_time (time)
831 time_t time;
832 {
833 return Fcons (make_number (time >> 16),
834 Fcons (make_number (time & 0177777), Qnil));
835 }
836
837 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0,
838 doc: /* Return a list of attributes of file FILENAME.
839 Value is nil if specified file cannot be opened.
840 Otherwise, list elements are:
841 0. t for directory, string (name linked to) for symbolic link, or nil.
842 1. Number of links to file.
843 2. File uid.
844 3. File gid.
845 4. Last access time, as a list of two integers.
846 First integer has high-order 16 bits of time, second has low 16 bits.
847 5. Last modification time, likewise.
848 6. Last status change time, likewise.
849 7. Size in bytes.
850 This is a floating point number if the size is too large for an integer.
851 8. File modes, as a string of ten letters or dashes as in ls -l.
852 9. t iff file's gid would change if file were deleted and recreated.
853 10. inode number. If inode number is larger than the Emacs integer,
854 this is a cons cell containing two integers: first the high part,
855 then the low 16 bits.
856 11. Device number. If it is larger than the Emacs integer, this is
857 a cons cell, similar to the inode number.
858
859 If file does not exist, returns nil. */)
860 (filename)
861 Lisp_Object filename;
862 {
863 Lisp_Object values[12];
864 Lisp_Object encoded;
865 struct stat s;
866 #if defined (BSD4_2) || defined (BSD4_3)
867 Lisp_Object dirname;
868 struct stat sdir;
869 #endif
870 char modes[10];
871 Lisp_Object handler;
872
873 filename = Fexpand_file_name (filename, Qnil);
874
875 /* If the file name has special constructs in it,
876 call the corresponding file handler. */
877 handler = Ffind_file_name_handler (filename, Qfile_attributes);
878 if (!NILP (handler))
879 return call2 (handler, Qfile_attributes, filename);
880
881 encoded = ENCODE_FILE (filename);
882
883 if (lstat (XSTRING (encoded)->data, &s) < 0)
884 return Qnil;
885
886 switch (s.st_mode & S_IFMT)
887 {
888 default:
889 values[0] = Qnil; break;
890 case S_IFDIR:
891 values[0] = Qt; break;
892 #ifdef S_IFLNK
893 case S_IFLNK:
894 values[0] = Ffile_symlink_p (filename); break;
895 #endif
896 }
897 values[1] = make_number (s.st_nlink);
898 values[2] = make_number (s.st_uid);
899 values[3] = make_number (s.st_gid);
900 values[4] = make_time (s.st_atime);
901 values[5] = make_time (s.st_mtime);
902 values[6] = make_time (s.st_ctime);
903 values[7] = make_number (s.st_size);
904 /* If the size is out of range for an integer, return a float. */
905 if (XINT (values[7]) != s.st_size)
906 values[7] = make_float ((double)s.st_size);
907 filemodestring (&s, modes);
908 values[8] = make_string (modes, 10);
909 #if defined (BSD4_2) || defined (BSD4_3) /* file gid will be dir gid */
910 dirname = Ffile_name_directory (filename);
911 if (! NILP (dirname))
912 encoded = ENCODE_FILE (dirname);
913 if (! NILP (dirname) && stat (XSTRING (encoded)->data, &sdir) == 0)
914 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
915 else /* if we can't tell, assume worst */
916 values[9] = Qt;
917 #else /* file gid will be egid */
918 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
919 #endif /* BSD4_2 (or BSD4_3) */
920 /* Cast -1 to avoid warning if int is not as wide as VALBITS. */
921 if (FIXNUM_OVERFLOW_P (s.st_ino))
922 /* To allow inode numbers larger than VALBITS, separate the bottom
923 16 bits. */
924 values[10] = Fcons (make_number (s.st_ino >> 16),
925 make_number (s.st_ino & 0xffff));
926 else
927 /* But keep the most common cases as integers. */
928 values[10] = make_number (s.st_ino);
929
930 /* Likewise for device. */
931 if (FIXNUM_OVERFLOW_P (s.st_dev))
932 values[11] = Fcons (make_number (s.st_dev >> 16),
933 make_number (s.st_dev & 0xffff));
934 else
935 values[11] = make_number (s.st_dev);
936
937 return Flist (sizeof(values) / sizeof(values[0]), values);
938 }
939
940 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
941 doc: /* Return t if first arg file attributes list is less than second.
942 Comparison is in lexicographic order and case is significant. */)
943 (f1, f2)
944 Lisp_Object f1, f2;
945 {
946 return Fstring_lessp (Fcar (f1), Fcar (f2));
947 }
948 \f
949 void
950 syms_of_dired ()
951 {
952 Qdirectory_files = intern ("directory-files");
953 Qdirectory_files_and_attributes = intern ("directory-files-and-attributes");
954 Qfile_name_completion = intern ("file-name-completion");
955 Qfile_name_all_completions = intern ("file-name-all-completions");
956 Qfile_attributes = intern ("file-attributes");
957 Qfile_attributes_lessp = intern ("file-attributes-lessp");
958
959 staticpro (&Qdirectory_files);
960 staticpro (&Qdirectory_files_and_attributes);
961 staticpro (&Qfile_name_completion);
962 staticpro (&Qfile_name_all_completions);
963 staticpro (&Qfile_attributes);
964 staticpro (&Qfile_attributes_lessp);
965
966 defsubr (&Sdirectory_files);
967 defsubr (&Sdirectory_files_and_attributes);
968 defsubr (&Sfile_name_completion);
969 #ifdef VMS
970 defsubr (&Sfile_name_all_versions);
971 defsubr (&Sfile_version_limit);
972 #endif /* VMS */
973 defsubr (&Sfile_name_all_completions);
974 defsubr (&Sfile_attributes);
975 defsubr (&Sfile_attributes_lessp);
976
977 #ifdef VMS
978 Qcompletion_ignore_case = intern ("completion-ignore-case");
979 staticpro (&Qcompletion_ignore_case);
980 #endif /* VMS */
981
982 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
983 doc: /* *Completion ignores filenames ending in any string in this list.
984 Directories are ignored if they match any string in this list which
985 ends in a slash.
986 This variable does not affect lists of possible completions,
987 but does affect the commands that actually do completions. */);
988 Vcompletion_ignored_extensions = Qnil;
989 }