Mercurial > emacs
annotate src/dired.c @ 7018:aa83a7152b11
(rmail-font-lock-keywords): New variable.
(compilation-mode-font-lock-keywords): New variable.
(font-lock-set-defaults): Use those vars in those modes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 22 Apr 1994 07:30:30 +0000 |
parents | c24ac406a87b |
children | 6915bf781a38 |
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; |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
96 extern Lisp_Object Vcompletion_regexp_list; |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
97 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
|
98 |
153 | 99 Lisp_Object Vcompletion_ignored_extensions; |
100 | |
101 Lisp_Object Qcompletion_ignore_case; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
102 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
103 Lisp_Object Qdirectory_files; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
104 Lisp_Object Qfile_name_completion; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
105 Lisp_Object Qfile_name_all_completions; |
847 | 106 Lisp_Object Qfile_attributes; |
153 | 107 |
108 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, | |
109 "Return a list of names of files in DIRECTORY.\n\ | |
110 There are three optional arguments:\n\ | |
111 If FULL is non-nil, absolute pathnames of the files are returned.\n\ | |
112 If MATCH is non-nil, only pathnames containing that regexp are returned.\n\ | |
113 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ | |
114 NOSORT is useful if you plan to sort the result yourself.") | |
115 (dirname, full, match, nosort) | |
116 Lisp_Object dirname, full, match, nosort; | |
117 { | |
118 DIR *d; | |
119 int length; | |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
120 Lisp_Object list, name, dirfilename; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
121 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
122 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
123 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
124 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
125 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
126 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
127 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
128 Lisp_Object args[6]; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
129 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
130 args[0] = handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
131 args[1] = Qdirectory_files; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
132 args[2] = dirname; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
133 args[3] = full; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
134 args[4] = match; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
135 args[5] = nosort; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
136 return Ffuncall (6, args); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
137 } |
153 | 138 |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
139 { |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
140 struct gcpro gcpro1, gcpro2; |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
141 |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
142 /* 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
|
143 Ffuncall, and cause a GC. */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
144 GCPRO1 (match); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
145 dirname = Fexpand_file_name (dirname, Qnil); |
2183 | 146 UNGCPRO; |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
147 GCPRO2 (match, dirname); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
148 dirfilename = Fdirectory_file_name (dirname); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
149 UNGCPRO; |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
150 } |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
151 |
485 | 152 if (!NILP (match)) |
153 | 153 { |
154 CHECK_STRING (match, 3); | |
808 | 155 |
156 /* MATCH might be a flawed regular expression. Rather than | |
157 catching and signalling our own errors, we just call | |
158 compile_pattern to do the work for us. */ | |
153 | 159 #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
|
160 compile_pattern (match, &searchbuf, 0, |
153 | 161 buffer_defaults.downcase_table->contents); |
162 #else | |
808 | 163 compile_pattern (match, &searchbuf, 0, 0); |
153 | 164 #endif |
165 } | |
166 | |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
167 /* 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
|
168 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
|
169 |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
170 /* 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
|
171 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
|
172 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
|
173 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
|
174 d = opendir (XSTRING (dirfilename)->data); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
175 if (! d) |
153 | 176 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
177 | |
178 list = Qnil; | |
179 length = XSTRING (dirname)->size; | |
180 | |
181 /* Loop reading blocks */ | |
182 while (1) | |
183 { | |
184 DIRENTRY *dp = readdir (d); | |
185 int len; | |
186 | |
187 if (!dp) break; | |
188 len = NAMLEN (dp); | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
189 if (DIRENTRY_NONEMPTY (dp)) |
153 | 190 { |
485 | 191 if (NILP (match) |
153 | 192 || (0 <= re_search (&searchbuf, dp->d_name, len, 0, len, 0))) |
193 { | |
485 | 194 if (!NILP (full)) |
153 | 195 { |
196 int index = XSTRING (dirname)->size; | |
197 int total = len + index; | |
198 #ifndef VMS | |
199 if (length == 0 | |
200 || XSTRING (dirname)->data[length - 1] != '/') | |
201 total++; | |
202 #endif /* VMS */ | |
203 | |
204 name = make_uninit_string (total); | |
205 bcopy (XSTRING (dirname)->data, XSTRING (name)->data, | |
206 index); | |
207 #ifndef VMS | |
208 if (length == 0 | |
209 || XSTRING (dirname)->data[length - 1] != '/') | |
210 XSTRING (name)->data[index++] = '/'; | |
211 #endif /* VMS */ | |
212 bcopy (dp->d_name, XSTRING (name)->data + index, len); | |
213 } | |
214 else | |
215 name = make_string (dp->d_name, len); | |
216 list = Fcons (name, list); | |
217 } | |
218 } | |
219 } | |
220 closedir (d); | |
485 | 221 if (!NILP (nosort)) |
153 | 222 return list; |
223 return Fsort (Fnreverse (list), Qstring_lessp); | |
224 } | |
225 | |
226 Lisp_Object file_name_completion (); | |
227 | |
228 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
229 2, 2, 0, | |
230 "Complete file name FILE in directory DIR.\n\ | |
231 Returns the longest string\n\ | |
232 common to all filenames in DIR that start with FILE.\n\ | |
233 If there is only one and FILE matches it exactly, returns t.\n\ | |
234 Returns nil if DIR contains no name starting with FILE.") | |
235 (file, dirname) | |
236 Lisp_Object file, dirname; | |
237 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
238 Lisp_Object handler; |
153 | 239 /* Don't waste time trying to complete a null string. |
240 Besides, this case happens when user is being asked for | |
241 a directory name and has supplied one ending in a /. | |
242 We would not want to add anything in that case | |
243 even if there are some unique characters in that directory. */ | |
244 if (XTYPE (file) == Lisp_String && XSTRING (file)->size == 0) | |
245 return file; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
246 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
247 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
248 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
249 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
250 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
251 return call3 (handler, Qfile_name_completion, file, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
252 |
153 | 253 return file_name_completion (file, dirname, 0, 0); |
254 } | |
255 | |
256 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
257 Sfile_name_all_completions, 2, 2, 0, | |
258 "Return a list of all completions of file name FILE in directory DIR.\n\ | |
259 These are all file names in directory DIR which begin with FILE.") | |
260 (file, dirname) | |
261 Lisp_Object file, dirname; | |
262 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
263 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
264 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
265 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
266 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
267 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
268 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
269 return call3 (handler, Qfile_name_all_completions, file, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
270 |
153 | 271 return file_name_completion (file, dirname, 1, 0); |
272 } | |
273 | |
274 Lisp_Object | |
275 file_name_completion (file, dirname, all_flag, ver_flag) | |
276 Lisp_Object file, dirname; | |
277 int all_flag, ver_flag; | |
278 { | |
279 DIR *d; | |
280 DIRENTRY *dp; | |
281 int bestmatchsize, skip; | |
282 register int compare, matchsize; | |
283 unsigned char *p1, *p2; | |
284 int matchcount = 0; | |
285 Lisp_Object bestmatch, tem, elt, name; | |
286 struct stat st; | |
287 int directoryp; | |
288 int passcount; | |
289 int count = specpdl_ptr - specpdl; | |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
290 struct gcpro gcpro1, gcpro2, gcpro3; |
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
291 |
153 | 292 #ifdef VMS |
293 extern DIRENTRY * readdirver (); | |
294 | |
295 DIRENTRY *((* readfunc) ()); | |
296 | |
297 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
298 specbind (Qcompletion_ignore_case, Qt); | |
299 | |
300 readfunc = readdir; | |
301 if (ver_flag) | |
302 readfunc = readdirver; | |
303 file = Fupcase (file); | |
304 #else /* not VMS */ | |
305 CHECK_STRING (file, 0); | |
306 #endif /* not VMS */ | |
307 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
308 #ifdef FILE_SYSTEM_CASE |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
309 file = FILE_SYSTEM_CASE (file); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
310 #endif |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
311 bestmatch = Qnil; |
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
312 GCPRO3 (file, dirname, bestmatch); |
153 | 313 dirname = Fexpand_file_name (dirname, Qnil); |
314 | |
315 /* With passcount = 0, ignore files that end in an ignored extension. | |
316 If nothing found then try again with passcount = 1, don't ignore them. | |
317 If looking for all completions, start with passcount = 1, | |
318 so always take even the ignored ones. | |
319 | |
320 ** It would not actually be helpful to the user to ignore any possible | |
321 completions when making a list of them.** */ | |
322 | |
485 | 323 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
153 | 324 { |
325 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data))) | |
326 report_file_error ("Opening directory", Fcons (dirname, Qnil)); | |
327 | |
328 /* Loop reading blocks */ | |
329 /* (att3b compiler bug requires do a null comparison this way) */ | |
330 while (1) | |
331 { | |
332 DIRENTRY *dp; | |
333 int len; | |
334 | |
335 #ifdef VMS | |
336 dp = (*readfunc) (d); | |
337 #else | |
338 dp = readdir (d); | |
339 #endif | |
340 if (!dp) break; | |
341 | |
342 len = NAMLEN (dp); | |
343 | |
485 | 344 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
153 | 345 goto quit; |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
346 if (! DIRENTRY_NONEMPTY (dp) |
153 | 347 || len < XSTRING (file)->size |
348 || 0 <= scmp (dp->d_name, XSTRING (file)->data, | |
349 XSTRING (file)->size)) | |
350 continue; | |
351 | |
352 if (file_name_completion_stat (dirname, dp, &st) < 0) | |
353 continue; | |
354 | |
355 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
356 tem = Qnil; | |
357 if (!directoryp) | |
358 { | |
359 /* Compare extensions-to-be-ignored against end of this file name */ | |
360 /* if name is not an exact match against specified string */ | |
361 if (!passcount && len > XSTRING (file)->size) | |
362 /* and exit this for loop if a match is found */ | |
363 for (tem = Vcompletion_ignored_extensions; | |
364 CONSP (tem); tem = XCONS (tem)->cdr) | |
365 { | |
366 elt = XCONS (tem)->car; | |
367 if (XTYPE (elt) != Lisp_String) continue; | |
368 skip = len - XSTRING (elt)->size; | |
369 if (skip < 0) continue; | |
370 | |
371 if (0 <= scmp (dp->d_name + skip, | |
372 XSTRING (elt)->data, | |
373 XSTRING (elt)->size)) | |
374 continue; | |
375 break; | |
376 } | |
377 } | |
378 | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
379 /* If an ignored-extensions match was found, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
380 don't process this name as a completion. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
381 if (!passcount && CONSP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
382 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
383 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
384 if (!passcount) |
153 | 385 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
386 Lisp_Object regexps; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
387 Lisp_Object zero; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
388 XFASTINT (zero) = 0; |
153 | 389 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
390 /* Ignore this element if it fails to match all the regexps. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
391 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
392 regexps = XCONS (regexps)->cdr) |
153 | 393 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
394 tem = Fstring_match (XCONS (regexps)->car, elt, zero); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
395 if (NILP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
396 break; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
397 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
398 if (CONSP (regexps)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
399 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
400 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
401 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
402 /* Update computation of how much all possible completions match */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
403 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
404 matchcount++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
405 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
406 if (all_flag || NILP (bestmatch)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
407 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
408 /* This is a possible completion */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
409 if (directoryp) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
410 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
411 /* This completion is a directory; make it end with '/' */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
412 name = Ffile_name_as_directory (make_string (dp->d_name, len)); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
413 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
414 else |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
415 name = make_string (dp->d_name, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
416 if (all_flag) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
417 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
418 bestmatch = Fcons (name, bestmatch); |
153 | 419 } |
420 else | |
421 { | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
422 bestmatch = name; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
423 bestmatchsize = XSTRING (name)->size; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
424 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
425 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
426 else |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
427 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
428 compare = min (bestmatchsize, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
429 p1 = XSTRING (bestmatch)->data; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
430 p2 = (unsigned char *) dp->d_name; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
431 matchsize = scmp(p1, p2, compare); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
432 if (matchsize < 0) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
433 matchsize = compare; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
434 if (completion_ignore_case) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
435 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
436 /* If this is an exact match except for case, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
437 use it as the best match rather than one that is not |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
438 an exact match. This way, we get the case pattern |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
439 of the actual match. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
440 if ((matchsize == len |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
441 && matchsize + !!directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
442 < XSTRING (bestmatch)->size) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
443 || |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
444 /* If there is no exact match ignoring case, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
445 prefer a match that does not change the case |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
446 of the input. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
447 (((matchsize == len) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
448 == |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
449 (matchsize + !!directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
450 == XSTRING (bestmatch)->size)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
451 /* If there is more than one exact match aside from |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
452 case, and one of them is exact including case, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
453 prefer that one. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
454 && !bcmp (p2, XSTRING (file)->data, XSTRING (file)->size) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
455 && bcmp (p1, XSTRING (file)->data, XSTRING (file)->size))) |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
456 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
457 bestmatch = make_string (dp->d_name, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
458 if (directoryp) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
459 bestmatch = Ffile_name_as_directory (bestmatch); |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
460 } |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
461 } |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
462 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
463 /* If this dirname all matches, see if implicit following |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
464 slash does too. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
465 if (directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
466 && compare == matchsize |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
467 && bestmatchsize > matchsize |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
468 && p1[matchsize] == '/') |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
469 matchsize++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
470 bestmatchsize = matchsize; |
153 | 471 } |
472 } | |
473 closedir (d); | |
474 } | |
475 | |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
476 UNGCPRO; |
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
477 bestmatch = unbind_to (count, bestmatch); |
153 | 478 |
485 | 479 if (all_flag || NILP (bestmatch)) |
153 | 480 return bestmatch; |
481 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size) | |
482 return Qt; | |
483 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize)); | |
484 quit: | |
485 if (d) closedir (d); | |
486 Vquit_flag = Qnil; | |
487 return Fsignal (Qquit, Qnil); | |
488 } | |
489 | |
490 file_name_completion_stat (dirname, dp, st_addr) | |
491 Lisp_Object dirname; | |
492 DIRENTRY *dp; | |
493 struct stat *st_addr; | |
494 { | |
495 int len = NAMLEN (dp); | |
496 int pos = XSTRING (dirname)->size; | |
497 char *fullname = (char *) alloca (len + pos + 2); | |
498 | |
499 bcopy (XSTRING (dirname)->data, fullname, pos); | |
500 #ifndef VMS | |
501 if (fullname[pos - 1] != '/') | |
502 fullname[pos++] = '/'; | |
503 #endif | |
504 | |
505 bcopy (dp->d_name, fullname + pos, len); | |
506 fullname[pos + len] = 0; | |
507 | |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
508 #ifdef S_IFLNK |
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
509 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
|
510 #else |
153 | 511 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
|
512 #endif |
153 | 513 } |
514 | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
515 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
516 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
517 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
|
518 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
|
519 "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
|
520 (file, dirname) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
521 Lisp_Object file, dirname; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
522 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
523 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
|
524 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
525 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
526 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
|
527 "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
|
528 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
|
529 (filename) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
530 Lisp_Object filename; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
531 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
532 Lisp_Object retval; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
533 struct FAB fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
534 struct RAB rab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
535 struct XABFHC xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
536 int status; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
537 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
538 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
|
539 fab = cc$rms_fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
540 xabfhc = cc$rms_xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
541 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
|
542 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
|
543 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
|
544 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
|
545 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
|
546 return Qnil; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
547 sys$close (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
548 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
|
549 return Qnil; /* No version limit */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
550 else |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
551 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
|
552 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
553 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
554 #endif /* VMS */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
555 |
153 | 556 Lisp_Object |
557 make_time (time) | |
558 int time; | |
559 { | |
560 return Fcons (make_number (time >> 16), | |
561 Fcons (make_number (time & 0177777), Qnil)); | |
562 } | |
563 | |
564 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0, | |
565 "Return a list of attributes of file FILENAME.\n\ | |
566 Value is nil if specified file cannot be opened.\n\ | |
567 Otherwise, list elements are:\n\ | |
568 0. t for directory, string (name linked to) for symbolic link, or nil.\n\ | |
569 1. Number of links to file.\n\ | |
570 2. File uid.\n\ | |
571 3. File gid.\n\ | |
572 4. Last access time, as a list of two integers.\n\ | |
573 First integer has high-order 16 bits of time, second has low 16 bits.\n\ | |
574 5. Last modification time, likewise.\n\ | |
575 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
|
576 7. Size in bytes (-1, if number is out of range).\n\ |
153 | 577 8. File modes, as a string of ten letters or dashes as in ls -l.\n\ |
578 9. t iff file's gid would change if file were deleted and recreated.\n\ | |
579 10. inode number.\n\ | |
580 11. Device number.\n\ | |
581 \n\ | |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
582 If file does not exist, returns nil.") |
153 | 583 (filename) |
584 Lisp_Object filename; | |
585 { | |
586 Lisp_Object values[12]; | |
587 Lisp_Object dirname; | |
588 struct stat s; | |
589 struct stat sdir; | |
590 char modes[10]; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
591 Lisp_Object handler; |
153 | 592 |
593 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
594 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
595 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
596 call the corresponding file handler. */ |
1681
a03b87a92614
* fileio.c (find_file_handler): Rename this to
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
597 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
598 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
599 return call2 (handler, Qfile_attributes, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
600 |
153 | 601 if (lstat (XSTRING (filename)->data, &s) < 0) |
602 return Qnil; | |
603 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
604 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
605 { |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
606 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
|
607 int l = strlen (tmpnam); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
608 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
609 if (l >= 5 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
610 && S_ISREG (s.st_mode) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
611 && (stricmp (&tmpnam[l - 4], ".com") == 0 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
612 || stricmp (&tmpnam[l - 4], ".exe") == 0 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
613 || stricmp (&tmpnam[l - 4], ".bat") == 0)) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
614 { |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
615 s.st_mode |= S_IEXEC; |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
616 } |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
617 } |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
618 #endif /* MSDOS */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
619 |
153 | 620 switch (s.st_mode & S_IFMT) |
621 { | |
622 default: | |
623 values[0] = Qnil; break; | |
624 case S_IFDIR: | |
625 values[0] = Qt; break; | |
626 #ifdef S_IFLNK | |
627 case S_IFLNK: | |
628 values[0] = Ffile_symlink_p (filename); break; | |
629 #endif | |
630 } | |
631 values[1] = make_number (s.st_nlink); | |
632 values[2] = make_number (s.st_uid); | |
633 values[3] = make_number (s.st_gid); | |
634 values[4] = make_time (s.st_atime); | |
635 values[5] = make_time (s.st_mtime); | |
636 values[6] = make_time (s.st_ctime); | |
6860
c24ac406a87b
(Ffile_attributes): Cast st_size to int.
Richard M. Stallman <rms@gnu.org>
parents:
6680
diff
changeset
|
637 values[7] = make_number ((int) 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
|
638 /* 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
|
639 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
|
640 XSETINT (values[7], -1); |
153 | 641 filemodestring (&s, modes); |
642 values[8] = make_string (modes, 10); | |
643 #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
|
644 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
153 | 645 #endif |
646 #ifdef BSD4_2 /* file gid will be dir gid */ | |
647 dirname = Ffile_name_directory (filename); | |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
648 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) |
153 | 649 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
650 else /* if we can't tell, assume worst */ | |
651 values[9] = Qt; | |
652 #else /* file gid will be egid */ | |
653 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil; | |
654 #endif /* BSD4_2 (or BSD4_3) */ | |
655 #ifdef BSD4_3 | |
656 #undef BSD4_2 /* ok, you can look again without throwing up */ | |
657 #endif | |
658 values[10] = make_number (s.st_ino); | |
659 values[11] = make_number (s.st_dev); | |
660 return Flist (sizeof(values) / sizeof(values[0]), values); | |
661 } | |
662 | |
663 syms_of_dired () | |
664 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
665 Qdirectory_files = intern ("directory-files"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
666 Qfile_name_completion = intern ("file-name-completion"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
667 Qfile_name_all_completions = intern ("file-name-all-completions"); |
847 | 668 Qfile_attributes = intern ("file-attributes"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
669 |
153 | 670 defsubr (&Sdirectory_files); |
671 defsubr (&Sfile_name_completion); | |
672 #ifdef VMS | |
673 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
|
674 defsubr (&Sfile_version_limit); |
153 | 675 #endif /* VMS */ |
676 defsubr (&Sfile_name_all_completions); | |
677 defsubr (&Sfile_attributes); | |
678 | |
679 #ifdef VMS | |
680 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
681 staticpro (&Qcompletion_ignore_case); | |
682 #endif /* VMS */ | |
683 | |
684 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
685 "*Completion ignores filenames ending in any string in this list.\n\ | |
686 This variable does not affect lists of possible completions,\n\ | |
687 but does affect the commands that actually do completions."); | |
688 Vcompletion_ignored_extensions = Qnil; | |
689 } |