Mercurial > emacs
annotate src/dired.c @ 13407:5ebb99bc06bb
[HAVE_NTGUI]: Include win32.h.
HAVE_NTGUI] (struct frame_glyphs): Include pixel fields.
Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Tue, 07 Nov 1995 07:13:46 +0000 |
| parents | 7c38c6da4aae |
| children | 93b67f07b194 |
| 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 | |
| 12244 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 153 | 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; | |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
116 int dirnamelen; |
|
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; | |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
177 dirnamelen = XSTRING (dirname)->size; |
| 153 | 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 { |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
194 int afterdirindex = dirnamelen; |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
195 int total = len + dirnamelen; |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
196 int needsep = 0; |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
197 |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
198 /* Decide whether we need to add a directory separator. */ |
| 153 | 199 #ifndef VMS |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
200 if (dirnamelen == 0 |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
201 || !IS_ANY_SEP (XSTRING (dirname)->data[dirnamelen - 1])) |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
202 needsep = 1; |
| 153 | 203 #endif /* VMS */ |
| 204 | |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
205 name = make_uninit_string (total + needsep); |
| 153 | 206 bcopy (XSTRING (dirname)->data, XSTRING (name)->data, |
|
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
207 dirnamelen); |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
208 if (needsep) |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
209 XSTRING (name)->data[afterdirindex++] = DIRECTORY_SEP; |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
210 bcopy (dp->d_name, |
|
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
211 XSTRING (name)->data + afterdirindex, len); |
| 153 | 212 } |
| 213 else | |
| 214 name = make_string (dp->d_name, len); | |
| 215 list = Fcons (name, list); | |
| 216 } | |
| 217 } | |
| 218 } | |
| 219 closedir (d); | |
| 485 | 220 if (!NILP (nosort)) |
| 153 | 221 return list; |
| 222 return Fsort (Fnreverse (list), Qstring_lessp); | |
| 223 } | |
| 224 | |
| 225 Lisp_Object file_name_completion (); | |
| 226 | |
| 227 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
| 228 2, 2, 0, | |
| 229 "Complete file name FILE in directory DIR.\n\ | |
| 230 Returns the longest string\n\ | |
| 231 common to all filenames in DIR that start with FILE.\n\ | |
| 232 If there is only one and FILE matches it exactly, returns t.\n\ | |
| 233 Returns nil if DIR contains no name starting with FILE.") | |
| 234 (file, dirname) | |
| 235 Lisp_Object file, dirname; | |
| 236 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
237 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
238 |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
239 /* If the directory name has special constructs in it, |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
240 call the corresponding file handler. */ |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
241 handler = Ffind_file_name_handler (dirname, Qfile_name_completion); |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
242 if (!NILP (handler)) |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
243 return call3 (handler, Qfile_name_completion, file, dirname); |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
244 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
245 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
246 call the corresponding file handler. */ |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
247 handler = Ffind_file_name_handler (file, Qfile_name_completion); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
248 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
249 return call3 (handler, Qfile_name_completion, file, dirname); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
250 |
| 153 | 251 return file_name_completion (file, dirname, 0, 0); |
| 252 } | |
| 253 | |
| 254 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
| 255 Sfile_name_all_completions, 2, 2, 0, | |
| 256 "Return a list of all completions of file name FILE in directory DIR.\n\ | |
| 257 These are all file names in directory DIR which begin with FILE.") | |
| 258 (file, dirname) | |
| 259 Lisp_Object file, dirname; | |
| 260 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
261 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
262 |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
263 /* If the directory name has special constructs in it, |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
264 call the corresponding file handler. */ |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
265 handler = Ffind_file_name_handler (dirname, Qfile_name_all_completions); |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
266 if (!NILP (handler)) |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
267 return call3 (handler, Qfile_name_all_completions, file, dirname); |
|
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
268 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
269 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
270 call the corresponding file handler. */ |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
271 handler = Ffind_file_name_handler (file, Qfile_name_all_completions); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
272 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
273 return call3 (handler, Qfile_name_all_completions, file, dirname); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
274 |
| 153 | 275 return file_name_completion (file, dirname, 1, 0); |
| 276 } | |
| 277 | |
| 278 Lisp_Object | |
| 279 file_name_completion (file, dirname, all_flag, ver_flag) | |
| 280 Lisp_Object file, dirname; | |
| 281 int all_flag, ver_flag; | |
| 282 { | |
| 283 DIR *d; | |
| 284 DIRENTRY *dp; | |
| 285 int bestmatchsize, skip; | |
| 286 register int compare, matchsize; | |
| 287 unsigned char *p1, *p2; | |
| 288 int matchcount = 0; | |
| 289 Lisp_Object bestmatch, tem, elt, name; | |
| 290 struct stat st; | |
| 291 int directoryp; | |
| 292 int passcount; | |
| 293 int count = specpdl_ptr - specpdl; | |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
294 struct gcpro gcpro1, gcpro2, gcpro3; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
295 |
| 153 | 296 #ifdef VMS |
| 297 extern DIRENTRY * readdirver (); | |
| 298 | |
| 299 DIRENTRY *((* readfunc) ()); | |
| 300 | |
| 301 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
| 302 specbind (Qcompletion_ignore_case, Qt); | |
| 303 | |
| 304 readfunc = readdir; | |
| 305 if (ver_flag) | |
| 306 readfunc = readdirver; | |
| 307 file = Fupcase (file); | |
| 308 #else /* not VMS */ | |
| 309 CHECK_STRING (file, 0); | |
| 310 #endif /* not VMS */ | |
| 311 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
312 #ifdef FILE_SYSTEM_CASE |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
313 file = FILE_SYSTEM_CASE (file); |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
314 #endif |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
315 bestmatch = Qnil; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
316 GCPRO3 (file, dirname, bestmatch); |
| 153 | 317 dirname = Fexpand_file_name (dirname, Qnil); |
| 318 | |
| 319 /* With passcount = 0, ignore files that end in an ignored extension. | |
| 320 If nothing found then try again with passcount = 1, don't ignore them. | |
| 321 If looking for all completions, start with passcount = 1, | |
| 322 so always take even the ignored ones. | |
| 323 | |
| 324 ** It would not actually be helpful to the user to ignore any possible | |
| 325 completions when making a list of them.** */ | |
| 326 | |
| 485 | 327 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
| 153 | 328 { |
| 329 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data))) | |
| 330 report_file_error ("Opening directory", Fcons (dirname, Qnil)); | |
| 331 | |
| 332 /* Loop reading blocks */ | |
| 333 /* (att3b compiler bug requires do a null comparison this way) */ | |
| 334 while (1) | |
| 335 { | |
| 336 DIRENTRY *dp; | |
| 337 int len; | |
| 338 | |
| 339 #ifdef VMS | |
| 340 dp = (*readfunc) (d); | |
| 341 #else | |
| 342 dp = readdir (d); | |
| 343 #endif | |
| 344 if (!dp) break; | |
| 345 | |
| 346 len = NAMLEN (dp); | |
| 347 | |
| 485 | 348 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
| 153 | 349 goto quit; |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
350 if (! DIRENTRY_NONEMPTY (dp) |
| 153 | 351 || len < XSTRING (file)->size |
| 352 || 0 <= scmp (dp->d_name, XSTRING (file)->data, | |
| 353 XSTRING (file)->size)) | |
| 354 continue; | |
| 355 | |
| 356 if (file_name_completion_stat (dirname, dp, &st) < 0) | |
| 357 continue; | |
| 358 | |
| 359 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
| 360 tem = Qnil; | |
|
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
361 if (directoryp) |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
362 { |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
363 #ifndef TRIVIAL_DIRECTORY_ENTRY |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
364 #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
|
365 #endif |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
366 /* "." 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
|
367 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
|
368 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
|
369 continue; |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
370 } |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
371 else |
| 153 | 372 { |
| 373 /* Compare extensions-to-be-ignored against end of this file name */ | |
| 374 /* if name is not an exact match against specified string */ | |
| 375 if (!passcount && len > XSTRING (file)->size) | |
| 376 /* and exit this for loop if a match is found */ | |
| 377 for (tem = Vcompletion_ignored_extensions; | |
| 378 CONSP (tem); tem = XCONS (tem)->cdr) | |
| 379 { | |
| 380 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
|
381 if (!STRINGP (elt)) continue; |
| 153 | 382 skip = len - XSTRING (elt)->size; |
| 383 if (skip < 0) continue; | |
| 384 | |
| 385 if (0 <= scmp (dp->d_name + skip, | |
| 386 XSTRING (elt)->data, | |
| 387 XSTRING (elt)->size)) | |
| 388 continue; | |
| 389 break; | |
| 390 } | |
| 391 } | |
| 392 | |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
393 /* If an ignored-extensions match was found, |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
394 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
|
395 if (!passcount && CONSP (tem)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
396 continue; |
|
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 (!passcount) |
| 153 | 399 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
400 Lisp_Object regexps; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
401 Lisp_Object zero; |
|
9302
4c75b1a56398
(file_name_completion): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9171
diff
changeset
|
402 XSETFASTINT (zero, 0); |
| 153 | 403 |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
404 /* 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
|
405 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
406 regexps = XCONS (regexps)->cdr) |
| 153 | 407 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
408 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
|
409 if (NILP (tem)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
410 break; |
|
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 if (CONSP (regexps)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
413 continue; |
|
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 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
416 /* 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
|
417 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
418 matchcount++; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
419 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
420 if (all_flag || NILP (bestmatch)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
421 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
422 /* This is a possible completion */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
423 if (directoryp) |
|
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 /* 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
|
426 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
|
427 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
428 else |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
429 name = make_string (dp->d_name, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
430 if (all_flag) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
431 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
432 bestmatch = Fcons (name, bestmatch); |
| 153 | 433 } |
| 434 else | |
| 435 { | |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
436 bestmatch = name; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
437 bestmatchsize = XSTRING (name)->size; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
438 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
439 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
440 else |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
441 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
442 compare = min (bestmatchsize, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
443 p1 = XSTRING (bestmatch)->data; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
444 p2 = (unsigned char *) dp->d_name; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
445 matchsize = scmp(p1, p2, compare); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
446 if (matchsize < 0) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
447 matchsize = compare; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
448 if (completion_ignore_case) |
|
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 /* 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
|
451 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
|
452 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
|
453 of the actual match. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
454 if ((matchsize == len |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
455 && matchsize + !!directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
456 < XSTRING (bestmatch)->size) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
457 || |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
458 /* 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
|
459 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
|
460 of the input. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
461 (((matchsize == len) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
462 == |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
463 (matchsize + !!directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
464 == XSTRING (bestmatch)->size)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
465 /* 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
|
466 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
|
467 prefer that one. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
468 && !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
|
469 && 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
|
470 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
471 bestmatch = make_string (dp->d_name, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
472 if (directoryp) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
473 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
|
474 } |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
475 } |
|
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
476 |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
477 /* 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
|
478 slash does too. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
479 if (directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
480 && compare == matchsize |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
481 && 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
|
482 && IS_ANY_SEP (p1[matchsize])) |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
483 matchsize++; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
484 bestmatchsize = matchsize; |
| 153 | 485 } |
| 486 } | |
| 487 closedir (d); | |
| 488 } | |
| 489 | |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
490 UNGCPRO; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
491 bestmatch = unbind_to (count, bestmatch); |
| 153 | 492 |
| 485 | 493 if (all_flag || NILP (bestmatch)) |
| 153 | 494 return bestmatch; |
| 495 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size) | |
| 496 return Qt; | |
| 497 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize)); | |
| 498 quit: | |
| 499 if (d) closedir (d); | |
| 500 Vquit_flag = Qnil; | |
| 501 return Fsignal (Qquit, Qnil); | |
| 502 } | |
| 503 | |
| 504 file_name_completion_stat (dirname, dp, st_addr) | |
| 505 Lisp_Object dirname; | |
| 506 DIRENTRY *dp; | |
| 507 struct stat *st_addr; | |
| 508 { | |
| 509 int len = NAMLEN (dp); | |
| 510 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
|
511 int value; |
| 153 | 512 char *fullname = (char *) alloca (len + pos + 2); |
| 513 | |
| 514 bcopy (XSTRING (dirname)->data, fullname, pos); | |
| 515 #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
|
516 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
|
517 fullname[pos++] = DIRECTORY_SEP; |
| 153 | 518 #endif |
| 519 | |
| 520 bcopy (dp->d_name, fullname + pos, len); | |
| 521 fullname[pos + len] = 0; | |
| 522 | |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
523 #ifdef S_IFLNK |
|
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
524 /* 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
|
525 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
|
526 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
|
527 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
|
528 stat (fullname, st_addr); |
|
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
529 return value; |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
530 #else |
| 153 | 531 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
|
532 #endif |
| 153 | 533 } |
| 534 | |
|
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
535 #ifdef VMS |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
536 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
537 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
|
538 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
|
539 "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
|
540 (file, dirname) |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
541 Lisp_Object file, dirname; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
542 { |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
543 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
|
544 } |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
545 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
546 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
|
547 "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
|
548 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
|
549 (filename) |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
550 Lisp_Object filename; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
551 { |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
552 Lisp_Object retval; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
553 struct FAB fab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
554 struct RAB rab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
555 struct XABFHC xabfhc; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
556 int status; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
557 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
558 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
|
559 fab = cc$rms_fab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
560 xabfhc = cc$rms_xabfhc; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
561 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
|
562 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
|
563 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
|
564 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
|
565 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
|
566 return Qnil; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
567 sys$close (&fab, 0, 0); |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
568 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
|
569 return Qnil; /* No version limit */ |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
570 else |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
571 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
|
572 } |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
573 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
574 #endif /* VMS */ |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
575 |
| 153 | 576 Lisp_Object |
| 577 make_time (time) | |
| 578 int time; | |
| 579 { | |
| 580 return Fcons (make_number (time >> 16), | |
| 581 Fcons (make_number (time & 0177777), Qnil)); | |
| 582 } | |
| 583 | |
| 584 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0, | |
| 585 "Return a list of attributes of file FILENAME.\n\ | |
| 586 Value is nil if specified file cannot be opened.\n\ | |
| 587 Otherwise, list elements are:\n\ | |
| 588 0. t for directory, string (name linked to) for symbolic link, or nil.\n\ | |
| 589 1. Number of links to file.\n\ | |
| 590 2. File uid.\n\ | |
| 591 3. File gid.\n\ | |
| 592 4. Last access time, as a list of two integers.\n\ | |
| 593 First integer has high-order 16 bits of time, second has low 16 bits.\n\ | |
| 594 5. Last modification time, likewise.\n\ | |
| 595 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
|
596 7. Size in bytes (-1, if number is out of range).\n\ |
| 153 | 597 8. File modes, as a string of ten letters or dashes as in ls -l.\n\ |
| 598 9. t iff file's gid would change if file were deleted and recreated.\n\ | |
| 599 10. inode number.\n\ | |
| 600 11. Device number.\n\ | |
| 601 \n\ | |
|
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
602 If file does not exist, returns nil.") |
| 153 | 603 (filename) |
| 604 Lisp_Object filename; | |
| 605 { | |
| 606 Lisp_Object values[12]; | |
| 607 Lisp_Object dirname; | |
| 608 struct stat s; | |
| 609 struct stat sdir; | |
| 610 char modes[10]; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
611 Lisp_Object handler; |
| 153 | 612 |
| 613 filename = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
614 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
615 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
616 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
617 handler = Ffind_file_name_handler (filename, Qfile_attributes); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
618 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
619 return call2 (handler, Qfile_attributes, filename); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
620 |
| 153 | 621 if (lstat (XSTRING (filename)->data, &s) < 0) |
| 622 return Qnil; | |
| 623 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
624 #ifdef MSDOS |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
625 { |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
626 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
|
627 int l = strlen (tmpnam); |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
628 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
629 if (l >= 5 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
630 && S_ISREG (s.st_mode) |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
631 && (stricmp (&tmpnam[l - 4], ".com") == 0 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
632 || stricmp (&tmpnam[l - 4], ".exe") == 0 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
633 || stricmp (&tmpnam[l - 4], ".bat") == 0)) |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
634 { |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
635 s.st_mode |= S_IEXEC; |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
636 } |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
637 } |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
638 #endif /* MSDOS */ |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
639 |
| 153 | 640 switch (s.st_mode & S_IFMT) |
| 641 { | |
| 642 default: | |
| 643 values[0] = Qnil; break; | |
| 644 case S_IFDIR: | |
| 645 values[0] = Qt; break; | |
| 646 #ifdef S_IFLNK | |
| 647 case S_IFLNK: | |
| 648 values[0] = Ffile_symlink_p (filename); break; | |
| 649 #endif | |
| 650 } | |
| 651 values[1] = make_number (s.st_nlink); | |
| 652 values[2] = make_number (s.st_uid); | |
| 653 values[3] = make_number (s.st_gid); | |
| 654 values[4] = make_time (s.st_atime); | |
| 655 values[5] = make_time (s.st_mtime); | |
| 656 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
|
657 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
|
658 /* 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
|
659 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
|
660 XSETINT (values[7], -1); |
| 153 | 661 filemodestring (&s, modes); |
| 662 values[8] = make_string (modes, 10); | |
| 663 #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
|
664 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
| 153 | 665 #endif |
| 666 #ifdef BSD4_2 /* file gid will be dir gid */ | |
| 667 dirname = Ffile_name_directory (filename); | |
|
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
668 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) |
| 153 | 669 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
| 670 else /* if we can't tell, assume worst */ | |
| 671 values[9] = Qt; | |
| 672 #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
|
673 #ifdef WINDOWSNT |
|
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
674 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
|
675 #else /* not WINDOWSNT */ |
| 153 | 676 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
|
677 #endif /* not WINDOWSNT */ |
| 153 | 678 #endif /* BSD4_2 (or BSD4_3) */ |
| 679 #ifdef BSD4_3 | |
| 680 #undef BSD4_2 /* ok, you can look again without throwing up */ | |
| 681 #endif | |
|
9787
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
682 #ifdef WINDOWSNT |
|
11380
18e41c75b89a
(Ffile_attributes) [WINDOWSNT]: Removed syntax errors.
Karl Heuer <kwzh@gnu.org>
parents:
11176
diff
changeset
|
683 /* Fill in the inode and device values specially...see nt.c. */ |
|
18e41c75b89a
(Ffile_attributes) [WINDOWSNT]: Removed syntax errors.
Karl Heuer <kwzh@gnu.org>
parents:
11176
diff
changeset
|
684 if (!get_inode_and_device_vals (filename, &values[10], &values[11])) { |
|
9787
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
685 return Qnil; |
|
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
686 } |
|
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
687 #else /* not WINDOWSNT */ |
| 153 | 688 values[10] = make_number (s.st_ino); |
| 689 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
|
690 #endif /* not WINDOWSNT */ |
| 153 | 691 return Flist (sizeof(values) / sizeof(values[0]), values); |
| 692 } | |
| 693 | |
| 694 syms_of_dired () | |
| 695 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
696 Qdirectory_files = intern ("directory-files"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
697 Qfile_name_completion = intern ("file-name-completion"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
698 Qfile_name_all_completions = intern ("file-name-all-completions"); |
| 847 | 699 Qfile_attributes = intern ("file-attributes"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
700 |
| 153 | 701 defsubr (&Sdirectory_files); |
| 702 defsubr (&Sfile_name_completion); | |
| 703 #ifdef VMS | |
| 704 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
|
705 defsubr (&Sfile_version_limit); |
| 153 | 706 #endif /* VMS */ |
| 707 defsubr (&Sfile_name_all_completions); | |
| 708 defsubr (&Sfile_attributes); | |
| 709 | |
| 710 #ifdef VMS | |
| 711 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
| 712 staticpro (&Qcompletion_ignore_case); | |
| 713 #endif /* VMS */ | |
| 714 | |
| 715 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
| 716 "*Completion ignores filenames ending in any string in this list.\n\ | |
| 717 This variable does not affect lists of possible completions,\n\ | |
| 718 but does affect the commands that actually do completions."); | |
| 719 Vcompletion_ignored_extensions = Qnil; | |
| 720 } |
