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