Mercurial > emacs
annotate src/dired.c @ 5834:5391898ea85c
(calendar-print-mayan-date): Use new error arg to calendar-cursor-to-date.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 07 Feb 1994 20:55:00 +0000 |
parents | ededb7b52564 |
children | 3d314bef071a |
rev | line source |
---|---|
153 | 1 /* Lisp functions for making directory listings. |
2961 | 2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc. |
153 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <stdio.h> | |
22 #include <sys/types.h> | |
23 #include <sys/stat.h> | |
24 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3707
diff
changeset
|
25 #include <config.h> |
153 | 26 |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
27 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
28 #include <string.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
29 #include <rms.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
30 #include <rmsdef.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
31 #endif |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
32 |
2117
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
33 /* The d_nameln member of a struct dirent includes the '\0' character |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
34 on some systems, but not on others. What's worse, you can't tell |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
35 at compile-time which one it will be, since it really depends on |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
36 the sort of system providing the filesystem you're reading from, |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
37 not the system you are running on. Paul Eggert |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
38 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
39 SunOS 4.1.2 host, reading a directory that is remote-mounted from a |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
40 Solaris 2.1 host and is in a native Solaris 2.1 filesystem. |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
41 |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
42 Since applying strlen to the name always works, we'll just do that. */ |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
43 #define NAMLEN(p) strlen (p->d_name) |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
44 |
153 | 45 #ifdef SYSV_SYSTEM_DIR |
46 | |
47 #include <dirent.h> | |
48 #define DIRENTRY struct dirent | |
49 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
50 #else /* not SYSV_SYSTEM_DIR */ |
153 | 51 |
52 #ifdef NONSYSTEM_DIR_LIBRARY | |
53 #include "ndir.h" | |
54 #else /* not NONSYSTEM_DIR_LIBRARY */ | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
55 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
56 #include <dirent.h> |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
57 #else |
153 | 58 #include <sys/dir.h> |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
59 #endif |
153 | 60 #endif /* not NONSYSTEM_DIR_LIBRARY */ |
61 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
62 #ifndef MSDOS |
153 | 63 #define DIRENTRY struct direct |
64 | |
65 extern DIR *opendir (); | |
66 extern struct direct *readdir (); | |
67 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
68 #endif /* not MSDOS */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
69 #endif /* not SYSV_SYSTEM_DIR */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
70 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
71 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
72 #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
73 #else |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
74 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino) |
153 | 75 #endif |
76 | |
77 #include "lisp.h" | |
78 #include "buffer.h" | |
79 #include "commands.h" | |
80 | |
81 #include "regex.h" | |
82 | |
2371
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
83 /* A search buffer, with a fastmap allocated and ready to go. */ |
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
84 extern struct re_pattern_buffer searchbuf; |
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
85 |
153 | 86 #define min(a, b) ((a) < (b) ? (a) : (b)) |
87 | |
88 /* if system does not have symbolic links, it does not have lstat. | |
89 In that case, use ordinary stat instead. */ | |
90 | |
91 #ifndef S_IFLNK | |
92 #define lstat stat | |
93 #endif | |
94 | |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
95 extern int completion_ignore_case; |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
96 extern Lisp_Object Ffind_file_name_handler (); |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
97 |
153 | 98 Lisp_Object Vcompletion_ignored_extensions; |
99 | |
100 Lisp_Object Qcompletion_ignore_case; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
101 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
102 Lisp_Object Qdirectory_files; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
103 Lisp_Object Qfile_name_completion; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
104 Lisp_Object Qfile_name_all_completions; |
847 | 105 Lisp_Object Qfile_attributes; |
153 | 106 |
107 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, | |
108 "Return a list of names of files in DIRECTORY.\n\ | |
109 There are three optional arguments:\n\ | |
110 If FULL is non-nil, absolute pathnames of the files are returned.\n\ | |
111 If MATCH is non-nil, only pathnames containing that regexp are returned.\n\ | |
112 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ | |
113 NOSORT is useful if you plan to sort the result yourself.") | |
114 (dirname, full, match, nosort) | |
115 Lisp_Object dirname, full, match, nosort; | |
116 { | |
117 DIR *d; | |
118 int length; | |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
119 Lisp_Object list, name, dirfilename; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
120 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
121 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
122 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
123 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
124 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
125 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
126 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
127 Lisp_Object args[6]; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
128 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
129 args[0] = handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
130 args[1] = Qdirectory_files; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
131 args[2] = dirname; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
132 args[3] = full; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
133 args[4] = match; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
134 args[5] = nosort; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
135 return Ffuncall (6, args); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
136 } |
153 | 137 |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
138 { |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
139 struct gcpro gcpro1, gcpro2; |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
140 |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
141 /* Because of file name handlers, these functions might call |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
142 Ffuncall, and cause a GC. */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
143 GCPRO1 (match); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
144 dirname = Fexpand_file_name (dirname, Qnil); |
2183 | 145 UNGCPRO; |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
146 GCPRO2 (match, dirname); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
147 dirfilename = Fdirectory_file_name (dirname); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
148 UNGCPRO; |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
149 } |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
150 |
485 | 151 if (!NILP (match)) |
153 | 152 { |
153 CHECK_STRING (match, 3); | |
808 | 154 |
155 /* MATCH might be a flawed regular expression. Rather than | |
156 catching and signalling our own errors, we just call | |
157 compile_pattern to do the work for us. */ | |
153 | 158 #ifdef VMS |
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1509
diff
changeset
|
159 compile_pattern (match, &searchbuf, 0, |
153 | 160 buffer_defaults.downcase_table->contents); |
161 #else | |
808 | 162 compile_pattern (match, &searchbuf, 0, 0); |
153 | 163 #endif |
164 } | |
165 | |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
166 /* Now searchbuf is the compiled form of MATCH; don't call anything |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
167 which might compile a new regexp until we're done with the loop! */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
168 |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
169 /* Do this opendir after anything which might signal an error; if |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
170 an error is signalled while the directory stream is open, we |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
171 have to make sure it gets closed, and setting up an |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
172 unwind_protect to do so would be a pain. */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
173 d = opendir (XSTRING (dirfilename)->data); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
174 if (! d) |
153 | 175 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
176 | |
177 list = Qnil; | |
178 length = XSTRING (dirname)->size; | |
179 | |
180 /* Loop reading blocks */ | |
181 while (1) | |
182 { | |
183 DIRENTRY *dp = readdir (d); | |
184 int len; | |
185 | |
186 if (!dp) break; | |
187 len = NAMLEN (dp); | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
188 if (DIRENTRY_NONEMPTY (dp)) |
153 | 189 { |
485 | 190 if (NILP (match) |
153 | 191 || (0 <= re_search (&searchbuf, dp->d_name, len, 0, len, 0))) |
192 { | |
485 | 193 if (!NILP (full)) |
153 | 194 { |
195 int index = XSTRING (dirname)->size; | |
196 int total = len + index; | |
197 #ifndef VMS | |
198 if (length == 0 | |
199 || XSTRING (dirname)->data[length - 1] != '/') | |
200 total++; | |
201 #endif /* VMS */ | |
202 | |
203 name = make_uninit_string (total); | |
204 bcopy (XSTRING (dirname)->data, XSTRING (name)->data, | |
205 index); | |
206 #ifndef VMS | |
207 if (length == 0 | |
208 || XSTRING (dirname)->data[length - 1] != '/') | |
209 XSTRING (name)->data[index++] = '/'; | |
210 #endif /* VMS */ | |
211 bcopy (dp->d_name, XSTRING (name)->data + index, len); | |
212 } | |
213 else | |
214 name = make_string (dp->d_name, len); | |
215 list = Fcons (name, list); | |
216 } | |
217 } | |
218 } | |
219 closedir (d); | |
485 | 220 if (!NILP (nosort)) |
153 | 221 return list; |
222 return Fsort (Fnreverse (list), Qstring_lessp); | |
223 } | |
224 | |
225 Lisp_Object file_name_completion (); | |
226 | |
227 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
228 2, 2, 0, | |
229 "Complete file name FILE in directory DIR.\n\ | |
230 Returns the longest string\n\ | |
231 common to all filenames in DIR that start with FILE.\n\ | |
232 If there is only one and FILE matches it exactly, returns t.\n\ | |
233 Returns nil if DIR contains no name starting with FILE.") | |
234 (file, dirname) | |
235 Lisp_Object file, dirname; | |
236 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
237 Lisp_Object handler; |
153 | 238 /* Don't waste time trying to complete a null string. |
239 Besides, this case happens when user is being asked for | |
240 a directory name and has supplied one ending in a /. | |
241 We would not want to add anything in that case | |
242 even if there are some unique characters in that directory. */ | |
243 if (XTYPE (file) == Lisp_String && XSTRING (file)->size == 0) | |
244 return file; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
245 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
246 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
247 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
248 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
249 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
250 return call3 (handler, Qfile_name_completion, file, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
251 |
153 | 252 return file_name_completion (file, dirname, 0, 0); |
253 } | |
254 | |
255 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
256 Sfile_name_all_completions, 2, 2, 0, | |
257 "Return a list of all completions of file name FILE in directory DIR.\n\ | |
258 These are all file names in directory DIR which begin with FILE.") | |
259 (file, dirname) | |
260 Lisp_Object file, dirname; | |
261 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
262 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
263 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
264 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
265 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
266 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
267 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
268 return call3 (handler, Qfile_name_all_completions, file, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
269 |
153 | 270 return file_name_completion (file, dirname, 1, 0); |
271 } | |
272 | |
273 Lisp_Object | |
274 file_name_completion (file, dirname, all_flag, ver_flag) | |
275 Lisp_Object file, dirname; | |
276 int all_flag, ver_flag; | |
277 { | |
278 DIR *d; | |
279 DIRENTRY *dp; | |
280 int bestmatchsize, skip; | |
281 register int compare, matchsize; | |
282 unsigned char *p1, *p2; | |
283 int matchcount = 0; | |
284 Lisp_Object bestmatch, tem, elt, name; | |
285 struct stat st; | |
286 int directoryp; | |
287 int passcount; | |
288 int count = specpdl_ptr - specpdl; | |
289 #ifdef VMS | |
290 extern DIRENTRY * readdirver (); | |
291 | |
292 DIRENTRY *((* readfunc) ()); | |
293 | |
294 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
295 specbind (Qcompletion_ignore_case, Qt); | |
296 | |
297 readfunc = readdir; | |
298 if (ver_flag) | |
299 readfunc = readdirver; | |
300 file = Fupcase (file); | |
301 #else /* not VMS */ | |
302 CHECK_STRING (file, 0); | |
303 #endif /* not VMS */ | |
304 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
305 #ifdef FILE_SYSTEM_CASE |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
306 file = FILE_SYSTEM_CASE (file); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
307 #endif |
153 | 308 dirname = Fexpand_file_name (dirname, Qnil); |
309 bestmatch = Qnil; | |
310 | |
311 /* With passcount = 0, ignore files that end in an ignored extension. | |
312 If nothing found then try again with passcount = 1, don't ignore them. | |
313 If looking for all completions, start with passcount = 1, | |
314 so always take even the ignored ones. | |
315 | |
316 ** It would not actually be helpful to the user to ignore any possible | |
317 completions when making a list of them.** */ | |
318 | |
485 | 319 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
153 | 320 { |
321 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data))) | |
322 report_file_error ("Opening directory", Fcons (dirname, Qnil)); | |
323 | |
324 /* Loop reading blocks */ | |
325 /* (att3b compiler bug requires do a null comparison this way) */ | |
326 while (1) | |
327 { | |
328 DIRENTRY *dp; | |
329 int len; | |
330 | |
331 #ifdef VMS | |
332 dp = (*readfunc) (d); | |
333 #else | |
334 dp = readdir (d); | |
335 #endif | |
336 if (!dp) break; | |
337 | |
338 len = NAMLEN (dp); | |
339 | |
485 | 340 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
153 | 341 goto quit; |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
342 if (! DIRENTRY_NONEMPTY (dp) |
153 | 343 || len < XSTRING (file)->size |
344 || 0 <= scmp (dp->d_name, XSTRING (file)->data, | |
345 XSTRING (file)->size)) | |
346 continue; | |
347 | |
348 if (file_name_completion_stat (dirname, dp, &st) < 0) | |
349 continue; | |
350 | |
351 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
352 tem = Qnil; | |
353 if (!directoryp) | |
354 { | |
355 /* Compare extensions-to-be-ignored against end of this file name */ | |
356 /* if name is not an exact match against specified string */ | |
357 if (!passcount && len > XSTRING (file)->size) | |
358 /* and exit this for loop if a match is found */ | |
359 for (tem = Vcompletion_ignored_extensions; | |
360 CONSP (tem); tem = XCONS (tem)->cdr) | |
361 { | |
362 elt = XCONS (tem)->car; | |
363 if (XTYPE (elt) != Lisp_String) continue; | |
364 skip = len - XSTRING (elt)->size; | |
365 if (skip < 0) continue; | |
366 | |
367 if (0 <= scmp (dp->d_name + skip, | |
368 XSTRING (elt)->data, | |
369 XSTRING (elt)->size)) | |
370 continue; | |
371 break; | |
372 } | |
373 } | |
374 | |
375 /* Unless an ignored-extensions match was found, | |
376 process this name as a completion */ | |
377 if (passcount || !CONSP (tem)) | |
378 { | |
379 /* Update computation of how much all possible completions match */ | |
380 | |
381 matchcount++; | |
382 | |
485 | 383 if (all_flag || NILP (bestmatch)) |
153 | 384 { |
385 /* This is a possible completion */ | |
386 if (directoryp) | |
387 { | |
388 /* This completion is a directory; make it end with '/' */ | |
389 name = Ffile_name_as_directory (make_string (dp->d_name, len)); | |
390 } | |
391 else | |
392 name = make_string (dp->d_name, len); | |
393 if (all_flag) | |
394 { | |
395 bestmatch = Fcons (name, bestmatch); | |
396 } | |
397 else | |
398 { | |
399 bestmatch = name; | |
400 bestmatchsize = XSTRING (name)->size; | |
401 } | |
402 } | |
403 else | |
404 { | |
405 compare = min (bestmatchsize, len); | |
406 p1 = XSTRING (bestmatch)->data; | |
407 p2 = (unsigned char *) dp->d_name; | |
408 matchsize = scmp(p1, p2, compare); | |
409 if (matchsize < 0) | |
410 matchsize = compare; | |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
411 if (completion_ignore_case) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
412 { |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
413 /* If this is an exact match except for case, |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
414 use it as the best match rather than one that is not |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
415 an exact match. This way, we get the case pattern |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
416 of the actual match. */ |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
417 if ((matchsize == len |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
418 && matchsize + !!directoryp |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
419 < XSTRING (bestmatch)->size) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
420 || |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
421 /* If there is no exact match ignoring case, |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
422 prefer a match that does not change the case |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
423 of the input. */ |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
424 (((matchsize == len) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
425 == |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
426 (matchsize + !!directoryp |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
427 == XSTRING (bestmatch)->size)) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
428 /* If there is more than one exact match aside from |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
429 case, and one of them is exact including case, |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
430 prefer that one. */ |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
431 && !bcmp (p2, XSTRING (file)->data, XSTRING (file)->size) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
432 && bcmp (p1, XSTRING (file)->data, XSTRING (file)->size))) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
433 { |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
434 bestmatch = make_string (dp->d_name, len); |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
435 if (directoryp) |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
436 bestmatch = Ffile_name_as_directory (bestmatch); |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
437 } |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
438 } |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
439 |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
440 /* If this dirname all matches, see if implicit following |
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
441 slash does too. */ |
153 | 442 if (directoryp |
443 && compare == matchsize | |
444 && bestmatchsize > matchsize | |
445 && p1[matchsize] == '/') | |
446 matchsize++; | |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
447 bestmatchsize = matchsize; |
153 | 448 } |
449 } | |
450 } | |
451 closedir (d); | |
452 } | |
453 | |
454 unbind_to (count, Qnil); | |
455 | |
485 | 456 if (all_flag || NILP (bestmatch)) |
153 | 457 return bestmatch; |
458 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size) | |
459 return Qt; | |
460 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize)); | |
461 quit: | |
462 if (d) closedir (d); | |
463 Vquit_flag = Qnil; | |
464 return Fsignal (Qquit, Qnil); | |
465 } | |
466 | |
467 file_name_completion_stat (dirname, dp, st_addr) | |
468 Lisp_Object dirname; | |
469 DIRENTRY *dp; | |
470 struct stat *st_addr; | |
471 { | |
472 int len = NAMLEN (dp); | |
473 int pos = XSTRING (dirname)->size; | |
474 char *fullname = (char *) alloca (len + pos + 2); | |
475 | |
476 bcopy (XSTRING (dirname)->data, fullname, pos); | |
477 #ifndef VMS | |
478 if (fullname[pos - 1] != '/') | |
479 fullname[pos++] = '/'; | |
480 #endif | |
481 | |
482 bcopy (dp->d_name, fullname + pos, len); | |
483 fullname[pos + len] = 0; | |
484 | |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
485 #ifdef S_IFLNK |
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
486 return lstat (fullname, st_addr); |
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
487 #else |
153 | 488 return stat (fullname, st_addr); |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
489 #endif |
153 | 490 } |
491 | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
492 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
493 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
494 DEFUN ("file-name-all-versions", Ffile_name_all_versions, |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
495 Sfile_name_all_versions, 2, 2, 0, |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
496 "Return a list of all versions of file name FILE in directory DIR.") |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
497 (file, dirname) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
498 Lisp_Object file, dirname; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
499 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
500 return file_name_completion (file, dirname, 1, 1); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
501 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
502 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
503 DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0, |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
504 "Return the maximum number of versions allowed for FILE.\n\ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
505 Returns nil if the file cannot be opened or if there is no version limit.") |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
506 (filename) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
507 Lisp_Object filename; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
508 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
509 Lisp_Object retval; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
510 struct FAB fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
511 struct RAB rab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
512 struct XABFHC xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
513 int status; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
514 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
515 filename = Fexpand_file_name (filename, Qnil); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
516 fab = cc$rms_fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
517 xabfhc = cc$rms_xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
518 fab.fab$l_fna = XSTRING (filename)->data; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
519 fab.fab$b_fns = strlen (fab.fab$l_fna); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
520 fab.fab$l_xab = (char *) &xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
521 status = sys$open (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
522 if (status != RMS$_NORMAL) /* Probably non-existent file */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
523 return Qnil; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
524 sys$close (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
525 if (xabfhc.xab$w_verlimit == 32767) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
526 return Qnil; /* No version limit */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
527 else |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
528 return make_number (xabfhc.xab$w_verlimit); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
529 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
530 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
531 #endif /* VMS */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
532 |
153 | 533 Lisp_Object |
534 make_time (time) | |
535 int time; | |
536 { | |
537 return Fcons (make_number (time >> 16), | |
538 Fcons (make_number (time & 0177777), Qnil)); | |
539 } | |
540 | |
541 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0, | |
542 "Return a list of attributes of file FILENAME.\n\ | |
543 Value is nil if specified file cannot be opened.\n\ | |
544 Otherwise, list elements are:\n\ | |
545 0. t for directory, string (name linked to) for symbolic link, or nil.\n\ | |
546 1. Number of links to file.\n\ | |
547 2. File uid.\n\ | |
548 3. File gid.\n\ | |
549 4. Last access time, as a list of two integers.\n\ | |
550 First integer has high-order 16 bits of time, second has low 16 bits.\n\ | |
551 5. Last modification time, likewise.\n\ | |
552 6. Last status change time, likewise.\n\ | |
3707
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
553 7. Size in bytes (-1, if number is out of range).\n\ |
153 | 554 8. File modes, as a string of ten letters or dashes as in ls -l.\n\ |
555 9. t iff file's gid would change if file were deleted and recreated.\n\ | |
556 10. inode number.\n\ | |
557 11. Device number.\n\ | |
558 \n\ | |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
559 If file does not exist, returns nil.") |
153 | 560 (filename) |
561 Lisp_Object filename; | |
562 { | |
563 Lisp_Object values[12]; | |
564 Lisp_Object dirname; | |
565 struct stat s; | |
566 struct stat sdir; | |
567 char modes[10]; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
568 Lisp_Object handler; |
153 | 569 |
570 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
571 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
572 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
573 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
574 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
575 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
576 return call2 (handler, Qfile_attributes, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
577 |
153 | 578 if (lstat (XSTRING (filename)->data, &s) < 0) |
579 return Qnil; | |
580 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
581 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
582 { |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
583 char *tmpnam = XSTRING (Ffile_name_nondirectory (filename))->data; |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
584 int l = strlen (tmpnam); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
585 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
586 if (l >= 5 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
587 && S_ISREG (s.st_mode) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
588 && (stricmp (&tmpnam[l - 4], ".com") == 0 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
589 || stricmp (&tmpnam[l - 4], ".exe") == 0 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
590 || stricmp (&tmpnam[l - 4], ".bat") == 0)) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
591 { |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
592 s.st_mode |= S_IEXEC; |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
593 } |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
594 } |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
595 #endif /* MSDOS */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
596 |
153 | 597 switch (s.st_mode & S_IFMT) |
598 { | |
599 default: | |
600 values[0] = Qnil; break; | |
601 case S_IFDIR: | |
602 values[0] = Qt; break; | |
603 #ifdef S_IFLNK | |
604 case S_IFLNK: | |
605 values[0] = Ffile_symlink_p (filename); break; | |
606 #endif | |
607 } | |
608 values[1] = make_number (s.st_nlink); | |
609 values[2] = make_number (s.st_uid); | |
610 values[3] = make_number (s.st_gid); | |
611 values[4] = make_time (s.st_atime); | |
612 values[5] = make_time (s.st_mtime); | |
613 values[6] = make_time (s.st_ctime); | |
614 values[7] = make_number (s.st_size); | |
3707
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
615 /* If the size is out of range, give back -1. */ |
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
616 if (XINT (values[7]) != s.st_size) |
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
617 XSETINT (values[7], -1); |
153 | 618 filemodestring (&s, modes); |
619 values[8] = make_string (modes, 10); | |
620 #ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */ | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
621 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
153 | 622 #endif |
623 #ifdef BSD4_2 /* file gid will be dir gid */ | |
624 dirname = Ffile_name_directory (filename); | |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
625 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) |
153 | 626 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
627 else /* if we can't tell, assume worst */ | |
628 values[9] = Qt; | |
629 #else /* file gid will be egid */ | |
630 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil; | |
631 #endif /* BSD4_2 (or BSD4_3) */ | |
632 #ifdef BSD4_3 | |
633 #undef BSD4_2 /* ok, you can look again without throwing up */ | |
634 #endif | |
635 values[10] = make_number (s.st_ino); | |
636 values[11] = make_number (s.st_dev); | |
637 return Flist (sizeof(values) / sizeof(values[0]), values); | |
638 } | |
639 | |
640 syms_of_dired () | |
641 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
642 Qdirectory_files = intern ("directory-files"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
643 Qfile_name_completion = intern ("file-name-completion"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
644 Qfile_name_all_completions = intern ("file-name-all-completions"); |
847 | 645 Qfile_attributes = intern ("file-attributes"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
646 |
153 | 647 defsubr (&Sdirectory_files); |
648 defsubr (&Sfile_name_completion); | |
649 #ifdef VMS | |
650 defsubr (&Sfile_name_all_versions); | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
651 defsubr (&Sfile_version_limit); |
153 | 652 #endif /* VMS */ |
653 defsubr (&Sfile_name_all_completions); | |
654 defsubr (&Sfile_attributes); | |
655 | |
656 #ifdef VMS | |
657 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
658 staticpro (&Qcompletion_ignore_case); | |
659 #endif /* VMS */ | |
660 | |
661 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
662 "*Completion ignores filenames ending in any string in this list.\n\ | |
663 This variable does not affect lists of possible completions,\n\ | |
664 but does affect the commands that actually do completions."); | |
665 Vcompletion_ignored_extensions = Qnil; | |
666 } |