Mercurial > emacs
annotate lisp/ange-ftp.el @ 9672:fdc268ab037d
(latex-mode): Recognize \item etc. that have no arg
because only a comment follows.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 23 Oct 1994 20:39:25 +0000 |
parents | 1bfdc32d5744 |
children | f54857d6c2f7 |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
1106 | 2 |
7298 | 3 ;;; Copyright (C) 1989,90,91,92,93,94 Free Software Foundation, Inc. |
1106 | 4 ;;; |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
6 ;; Keywords: comm | |
1106 | 7 ;;; |
8 ;;; This program is free software; you can redistribute it and/or modify | |
9 ;;; it under the terms of the GNU General Public License as published by | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
10 ;;; the Free Software Foundation; either version 2, or (at your option) |
1106 | 11 ;;; any later version. |
12 ;;; | |
13 ;;; This program is distributed in the hope that it will be useful, | |
14 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 ;;; GNU General Public License for more details. | |
17 ;;; | |
18 ;;; A copy of the GNU General Public License can be obtained from this | |
19 ;;; program's author (send electronic mail to ange@hplb.hpl.hp.com) or from | |
20 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
21 ;;; 02139, USA. | |
22 | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
23 ;;; Commentary: |
1106 | 24 ;;; |
25 ;;; This package attempts to make accessing files and directories using FTP | |
26 ;;; from within GNU Emacs as simple and transparent as possible. A subset of | |
27 ;;; the common file-handling routines are extended to interact with FTP. | |
28 | |
29 ;;; Usage: | |
30 ;;; | |
31 ;;; Some of the common GNU Emacs file-handling operations have been made | |
32 ;;; FTP-smart. If one of these routines is given a filename that matches | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
33 ;;; '/user@host:name' then it will spawn an FTP process connecting to machine |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
34 ;;; 'host' as account 'user' and perform its operation on the file 'name'. |
1106 | 35 ;;; |
36 ;;; For example: if find-file is given a filename of: | |
37 ;;; | |
38 ;;; /ange@anorman:/tmp/notes | |
39 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
40 ;;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as |
1106 | 41 ;;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the |
42 ;;; contents of that file as if it were on the local filesystem. If ange-ftp | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
43 ;;; needs a password to connect then it reads one in the echo area. |
1106 | 44 |
45 ;;; Extended filename syntax: | |
46 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
47 ;;; The default extended filename syntax is '/user@host:name', where the |
1106 | 48 ;;; 'user@' part may be omitted. This syntax can be customised to a certain |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
49 ;;; extent by changing ange-ftp-name-format. There are limitations. |
1106 | 50 ;;; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
51 ;;; If the user part is omitted then ange-ftp generates a default user |
1106 | 52 ;;; instead whose value depends on the variable ange-ftp-default-user. |
53 | |
54 ;;; Passwords: | |
55 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
56 ;;; A password is required for each host/user pair. Ange-ftp reads passwords |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
57 ;;; as needed. You can also specify a password with ange-ftp-set-passwd, or |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
58 ;;; in a *valid* ~/.netrc file. |
1106 | 59 |
60 ;;; Passwords for user "anonymous": | |
61 ;;; | |
1174 | 62 ;;; Passwords for the user "anonymous" (or "ftp") are handled |
63 ;;; specially. The variable `ange-ftp-generate-anonymous-password' | |
64 ;;; controls what happens: if the value of this variable is a string, | |
65 ;;; then this is used as the password; if non-nil (the default), then | |
66 ;;; a password is created from the name of the user and the hostname | |
67 ;;; of the machine on which GNU Emacs is running; if nil then the user | |
68 ;;; is prompted for a password as normal. | |
1106 | 69 |
70 ;;; "Dumb" UNIX hosts: | |
71 ;;; | |
72 ;;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
73 ;;; used. | |
74 ;;; | |
75 ;;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
76 ;;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
77 ;;; that this change will take effect for the current GNU Emacs session only. | |
78 ;;; See below for a discussion of non-UNIX hosts. If a large number of | |
79 ;;; machines with similar hostnames have this problem then it is easier to set | |
80 ;;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
81 ;;; is unable to automatically recognize dumb unix hosts. | |
82 | |
83 ;;; File name completion: | |
84 ;;; | |
85 ;;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
86 ;;; To do filename completion, ange-ftp needs a listing from the remote host. | |
87 ;;; Therefore, for very slow connections, it might not save any time. | |
88 | |
89 ;;; FTP processes: | |
90 ;;; | |
91 ;;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
92 ;;; purposes. Some FTP servers will close the connection after a period of | |
93 ;;; time, but ange-ftp should be able to quietly reconnect the next time that | |
94 ;;; the process is needed. | |
95 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
96 ;;; Killing the "*ftp user@host*" buffer also kills the ftp process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
97 ;;; This should not cause ange-ftp any grief. |
1106 | 98 |
99 ;;; Binary file transfers: | |
100 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
101 ;;; By default ange-ftp transfers files in ASCII mode. If a file being |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
102 ;;; transferred matches the value of ange-ftp-binary-file-name-regexp then |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
103 ;;; binary mode is used for that transfer. |
1106 | 104 |
105 ;;; Account passwords: | |
106 ;;; | |
107 ;;; Some FTP servers require an additional password which is sent by the | |
108 ;;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
109 ;;; specify an account password by either calling ange-ftp-set-account, or by | |
110 ;;; specifying an account token in the .netrc file. If the account password | |
111 ;;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
112 ;;; command upon starting the FTP process. | |
113 | |
114 ;;; Preloading: | |
115 ;;; | |
116 ;;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
117 ;;; not the site-load.el file in order for the documentation strings for the | |
118 ;;; functions being overloaded to be available. | |
119 | |
120 ;;; Status reports: | |
121 ;;; | |
122 ;;; Most ange-ftp commands that talk to the FTP process output a status | |
123 ;;; message on what they are doing. In addition, ange-ftp can take advantage | |
124 ;;; of the FTP client's HASH command to display the status of transferring | |
125 ;;; files and listing directories. See the documentation for the variables | |
126 ;;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
127 ;;; ange-ftp-process-verbose for more details. | |
128 | |
129 ;;; Gateways: | |
130 ;;; | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
131 ;;; Sometimes it is necessary for the FTP process to be run on a different |
1106 | 132 ;;; machine than the machine running GNU Emacs. This can happen when the |
133 ;;; local machine has restrictions on what hosts it can access. | |
134 ;;; | |
135 ;;; ange-ftp has support for running the ftp process on a different (gateway) | |
136 ;;; machine. The way it works is as follows: | |
137 ;;; | |
138 ;;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
139 ;;; that doesn't have the access restrictions. | |
140 ;;; | |
141 ;;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
142 ;;; that matches hosts that can be contacted from running a local ftp | |
143 ;;; process, but fails to match hosts that can't be accessed locally. For | |
144 ;;; example: | |
145 ;;; | |
146 ;;; "\\.hp\\.com$\\|^[^.]*$" | |
147 ;;; | |
148 ;;; will match all hosts that are in the .hp.com domain, or don't have an | |
149 ;;; explicit domain in their name, but will fail to match hosts with | |
150 ;;; explicit domains or that are specified by their ip address. | |
151 ;;; | |
152 ;;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
153 ;;; the *same* name between the local machine and the gateway machine. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
154 ;;; This directory is necessary for temporary files created by ange-ftp. |
1106 | 155 ;;; |
156 ;;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
157 ;;; this directory plus an identifying filename prefix. For example: | |
158 ;;; | |
159 ;;; "/nfs/hplose/ange/ange-ftp" | |
160 ;;; | |
161 ;;; where /nfs/hplose/ange is a directory that is shared between the | |
162 ;;; gateway machine and the local machine. | |
163 ;;; | |
164 ;;; The simplest way of getting a ftp process running on the gateway machine | |
165 ;;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
166 ;;; can't do this for some reason such as security then points 7 onwards will | |
167 ;;; discuss an alternative approach. | |
168 ;;; | |
169 ;;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
170 ;;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
171 ;;; | |
172 ;;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
173 ;;; isn't already. This tells ange-ftp that you are using a remote shell | |
174 ;;; rather than logging in using telnet or rlogin. | |
175 ;;; | |
176 ;;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
177 ;;; the gateway machine. If you have to use telnet or rlogin to get to the | |
178 ;;; gateway machine then follow the instructions below. | |
179 ;;; | |
180 ;;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
181 ;;; that lets you log onto the gateway machine. This may be something like | |
182 ;;; telnet or rlogin. | |
183 ;;; | |
184 ;;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
185 ;;; expression that matches the prompt you get when you login to the | |
186 ;;; gateway machine. Be very specific here; this regexp must not match | |
187 ;;; *anything* in your login banner except this prompt. | |
188 ;;; shell-prompt-pattern is far too general as it appears to match some | |
189 ;;; login banners from Sun machines. For example: | |
190 ;;; | |
191 ;;; "^$*$ *" | |
192 ;;; | |
193 ;;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
194 ;;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
195 ;;; machine. | |
196 ;;; | |
197 ;;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
198 ;;; that will put the pty connected to the gateway machine into a | |
199 ;;; no-echoing mode, and will strip off carriage-returns from output from | |
200 ;;; the gateway machine. For example: | |
201 ;;; | |
202 ;;; "stty -onlcr -echo" | |
203 ;;; | |
204 ;;; will work on HP-UX machines, whereas: | |
205 ;;; | |
206 ;;; "stty -echo nl" | |
207 ;;; | |
208 ;;; appears to work for some Sun machines. | |
209 ;;; | |
210 ;;; That's all there is to it. | |
211 | |
212 ;;; Smart gateways: | |
213 ;;; | |
214 ;;; If you have a "smart" ftp program that allows you to issue commands like | |
215 ;;; "USER foo@bar" which do nice proxy things, then look at the variables | |
216 ;;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
217 ;;; |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
218 ;;; Otherwise, if there is an alternate ftp program that implements proxy in |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
219 ;;; a transparent way (i.e. w/o specifying the proxy host), that will |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
220 ;;; connect you directly to the desired destination host: |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
221 ;;; Set ange-ftp-gateway-ftp-program-name to that program's name. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
222 ;;; Set ange-ftp-local-host-regexp to a value as stated earlier on. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
223 ;;; Leave ange-ftp-gateway-host set to nil. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
224 ;;; Set ange-ftp-smart-gateway to t. |
1106 | 225 |
226 ;;; Tips for using ange-ftp: | |
227 ;;; | |
228 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
229 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
230 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
231 ;;; there is a chance you might connect to an ULTRIX machine (such as | |
232 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
233 ;;; the side effect that dired will have problems with symlinks whose names | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
234 ;;; end in an @. If you get yourself into this situation then editing |
1106 | 235 ;;; dired's ls-switches to remove "F", will temporarily fix things. |
236 ;;; | |
237 ;;; 2. If you know that you are connecting to a certain non-UNIX machine | |
238 ;;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
239 ;;; then setting the appropriate host-type regexp | |
240 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
241 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
242 ;;; ange-ftp's inability to recognize the host-type as a bug. | |
243 ;;; | |
244 ;;; 3. For slow connections, you might get "listing unreadable" error | |
245 ;;; messages, or get an empty buffer for a file that you know has something | |
246 ;;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
247 ;;; Its default value is 5 which is plenty for reasonable connections. | |
248 ;;; However, for some transatlantic connections I set this to 20. | |
249 ;;; | |
250 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
251 ;;; copying the file to the local machine, compressing it there, and then | |
252 ;;; sending it back. Binary file transfers between machines of different | |
253 ;;; architectures can be a risky business. Test things out first on some | |
254 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
255 ;;; moving them through the local machine. Again, be careful when doing | |
256 ;;; this with binary files on non-Unix machines. | |
257 ;;; | |
258 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
259 ;;; (list of dired commands for which confirmation is not asked). You | |
260 ;;; might want to reconsider your setting of this variable, because you | |
261 ;;; might want confirmation for more commands on remote direds than on | |
262 ;;; local direds. For example, I strongly recommend that you not include | |
263 ;;; compress and uncompress in this list. If there is enough demand it | |
264 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
265 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
266 ;;; is a list of commands for which confirmation would be suppressed. Then | |
267 ;;; remote dired listings would take their (buffer-local) value of | |
268 ;;; dired-no-confirm from this alist. Who votes for this? | |
269 | |
270 ;;; --------------------------------------------------------------------- | |
271 ;;; Non-UNIX support: | |
272 ;;; --------------------------------------------------------------------- | |
273 | |
274 ;;; VMS support: | |
275 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
276 ;;; Ange-ftp has full support for VMS hosts. It |
1106 | 277 ;;; should be able to automatically recognize any VMS machine. However, if it |
278 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
279 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
280 ;;; would be grateful if you would report any failures to automatically | |
281 ;;; recognize a VMS host as a bug. | |
282 ;;; | |
283 ;;; Filename Syntax: | |
284 ;;; | |
285 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
286 ;;; UNIX-y way. For example: | |
287 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
288 ;;; would be entered as: | |
289 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
290 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
291 ;;; [.CSV.POLICY]RULES.MEM | |
292 ;;; you would type: | |
293 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
294 ;;; | |
295 ;;; A legal VMS filename is of the form: FILE.TYPE;## | |
296 ;;; where FILE can be up to 39 characters | |
297 ;;; TYPE can be up to 39 characters | |
298 ;;; ## is a version number (an integer between 1 and 32,767) | |
299 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
300 ;;; $ cannot begin a filename, and - cannot be used as the first or last | |
301 ;;; character. | |
302 ;;; | |
303 ;;; Tips: | |
304 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
305 ;;; Therefore, to access a VMS file, you must enter the filename with upper | |
306 ;;; case letters. | |
307 ;;; 2. To access the latest version of file under VMS, you use the filename | |
308 ;;; without the ";" and version number. You should always edit the latest | |
309 ;;; version of a file. If you want to edit an earlier version, copy it to a | |
310 ;;; new file first. This has nothing to do with ange-ftp, but is simply | |
311 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
312 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
313 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
314 ;;; that VMS will not allow you to save the file because it will refuse to | |
315 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
316 ;;; attach the buffer to this file. To get out of this situation, M-x | |
317 ;;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
318 ;;; latest version of the file. For this reason, in dired "f" |
1106 | 319 ;;; (dired-find-file), always loads the file sans version, whereas "v", |
320 ;;; (dired-view-file), always loads the explicit version number. The | |
321 ;;; reasoning being that it reasonable to view old versions of a file, but | |
322 ;;; not to edit them. | |
323 ;;; 3. EMACS has a feature in which it does environment variable substitution | |
324 ;;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
325 ;;; by typing $$. |
1106 | 326 |
327 ;;; MTS support: | |
328 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
329 ;;; Ange-ftp has full support for hosts running |
1106 | 330 ;;; the Michigan terminal system. It should be able to automatically |
331 ;;; recognize any MTS machine. However, if it fails to do this, you can use | |
332 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
333 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
334 ;;; would report any failures to automatically recognize a MTS host as a bug. | |
335 ;;; | |
336 ;;; Filename syntax: | |
337 ;;; | |
338 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
339 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
340 ;;; entered as | |
341 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
342 ;;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
343 ;;; to access a file in another account, you must have access permission for | |
344 ;;; it. If FILE were in your own account, then you could enter it in a | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
345 ;;; relative name fashion as |
1106 | 346 ;;; /YYYY@mtsg.ubc.ca:FILE |
347 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
348 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
349 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
350 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
351 ;;; is. | |
352 | |
353 ;;; CMS support: | |
354 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
355 ;;; Ange-ftp has full support for hosts running |
1106 | 356 ;;; CMS. It should be able to automatically recognize any CMS machine. |
357 ;;; However, if it fails to do this, you can use the command | |
358 ;;; ange-ftp-add-cms-host. As well, you can set the variable | |
359 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
360 ;;; would report any failures to automatically recognize a CMS host as a bug. | |
361 ;;; | |
362 ;;; Filename syntax: | |
363 ;;; | |
364 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
365 ;;; treated as UNIX directories. For example to access the file READ.ME in | |
366 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
367 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
368 ;;; If *.301 is the default minidisk for this account, you could access | |
369 ;;; FOO.BAR on this minidisk as | |
370 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
371 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
372 ;;; up to 8 characters. Again, beware that CMS filenames are always upper | |
373 ;;; case, and hence must be entered as such. | |
374 ;;; | |
375 ;;; Tips: | |
376 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
377 ;;; need an account password. To have ange-ftp send an account password, | |
378 ;;; you can either include it in your .netrc file, or use | |
379 ;;; ange-ftp-set-account. | |
380 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
381 ;;; can fix this. | |
382 ;;; | |
383 ;;; ------------------------------------------------------------------ | |
384 ;;; Bugs: | |
385 ;;; ------------------------------------------------------------------ | |
386 ;;; | |
387 ;;; 1. Umask problems: | |
388 ;;; Be warned that files created by using ange-ftp will take account of the | |
389 ;;; umask of the ftp daemon process rather than the umask of the creating | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
390 ;;; user. This is particularly important when logging in as the root user. |
1106 | 391 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make |
392 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
393 ;;; suspect that there is something similar on other systems. | |
394 ;;; | |
395 ;;; 2. Some combinations of FTP clients and servers break and get out of sync | |
396 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
397 ;;; machines cause this problem for some FTP clients. Using | |
7418
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
398 ;;; ange-ftp-kill-ftp-process can restart the ftp process, which |
1106 | 399 ;;; should get things back in synch. |
400 ;;; | |
401 ;;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
402 ;;; you provide a valid filename for the remote operating system. | |
403 ;;; If you do not, then the remote FTP server will most likely | |
404 ;;; translate your filename in some way. This may cause ange-ftp to | |
405 ;;; get confused about what exactly is the name of the file. The | |
406 ;;; most common causes of this are using lower case filenames on systems | |
407 ;;; which support only upper case, and using filenames which are too | |
408 ;;; long. | |
409 ;;; | |
410 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
411 ;;; | |
412 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
413 ;;; for some reason creates a FTP process that only talks via pipes then | |
414 ;;; ange-ftp won't be getting the information it requires at the time that | |
415 ;;; it wants it since pipes flush at different times to pty's. One | |
416 ;;; disgusting way around this problem is to talk to the FTP process via | |
417 ;;; rlogin which does the 'right' things with pty's. | |
418 ;;; | |
419 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
420 ;;; worried about this too much. Eventually, we should have some caching | |
421 ;;; of the current minidisk. | |
422 ;;; | |
423 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
424 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
425 ;;; to it. This is (understandably) beyond ange-ftp. | |
426 ;;; | |
427 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
428 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
429 ;;; will use binary mode for the copy. Between systems of different | |
430 ;;; architecture, this still may not be enough to guarantee the integrity | |
431 ;;; of binary files. Binary file transfers from VMS machines are | |
432 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
433 ;;; an alist of OS type, regexp pairs? | |
434 ;;; | |
435 ;;; 9. The code to do compression of files over ftp is not as careful as it | |
436 ;;; should be. It deletes the old remote version of the file, before | |
437 ;;; actually checking if the local to remote transfer of the compressed | |
438 ;;; file succeeds. Of course to delete the original version of the file | |
439 ;;; after transferring the compressed version back is also dangerous, | |
440 ;;; because some OS's have severe restrictions on the length of filenames, | |
441 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
442 ;;; truncated. Then, ange-ftp would delete the only remaining version of | |
443 ;;; the file. Maybe ange-ftp should make backups when it compresses files | |
444 ;;; (of course, the backup "~" could also be truncated off, sigh...). | |
445 ;;; Suggestions? | |
446 ;;; | |
447 | |
448 ;;; 10. If a dir listing is attempted for an empty directory on (at least | |
449 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
450 ;;; I don't know how to get ange-ftp work to around it. | |
451 ;;; | |
452 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
453 ;;; containing spaces, but beware that the remote ftpd may not like them | |
454 ;;; much. | |
455 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
456 ;;; 12. The dired support for non-Unix-like systems does not currently work. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
457 ;;; It needs to be reimplemented by modifying the parse-...-listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
458 ;;; functions to convert the directory listing to ls -l format. |
1106 | 459 ;;; |
460 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
461 ;;; with a trailing @ in a ls -alF listing. In order to account for this | |
462 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
463 ;;; parsing a listing with the F switch. This will cause ange-ftp to | |
464 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
465 ;;; ends in an @. ange-ftp will correct itself if you take F out of the | |
466 ;;; dired ls switches (C-u s will allow you to edit the switches). The | |
467 ;;; dired buffer will be automatically reverted, which will allow ange-ftp | |
468 ;;; to fix its files hashtable. A cookie to anyone who can think of a | |
469 ;;; fast, sure-fire way to recognize ULTRIX over ftp. | |
470 | |
471 ;;; If you find any bugs or problems with this package, PLEASE either e-mail | |
472 ;;; the above author, or send a message to the ange-ftp-lovers mailing list | |
473 ;;; below. Ideas and constructive comments are especially welcome. | |
474 | |
475 ;;; ange-ftp-lovers: | |
476 ;;; | |
477 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
478 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
479 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
480 ;;; the mailing list. | |
481 ;;; | |
482 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
483 ;;; list, please mail one of the following addresses: | |
484 ;;; | |
485 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
486 ;;; or | |
487 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
488 ;;; | |
489 ;;; Please don't forget the -request part. | |
490 ;;; | |
491 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
492 ;;; following addresses: | |
493 ;;; | |
494 ;;; ange-ftp-lovers@anorman.hpl.hp.com | |
495 ;;; or | |
496 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
497 ;;; | |
498 ;;; Alternatively, there is a mailing list that only gets announcements of new | |
499 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
500 ;;; subscribed to by e-mailing to the -request address as above. Please make | |
501 ;;; it clear in the request which mailing list you wish to join. | |
502 | |
503 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
504 ;;; from: | |
505 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
506 ;;; or: | |
507 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
508 ;;; or: | |
509 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
510 | |
511 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
512 ;;; | |
513 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
514 | |
515 ;;; ----------------------------------------------------------- | |
516 ;;; Technical information on this package: | |
517 ;;; ----------------------------------------------------------- | |
518 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
519 ;;; ange-ftp works by putting a handler on file-name-handler-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
520 ;;; which is called by many primitives, and a few non-primitives, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
521 ;;; whenever they see a file name of the appropriate sort. |
1106 | 522 |
523 ;;; Checklist for adding non-UNIX support for TYPE | |
524 ;;; | |
525 ;;; The following functions may need TYPE versions: | |
526 ;;; (not all functions will be needed for every OS) | |
527 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
528 ;;; ange-ftp-fix-name-for-TYPE |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
529 ;;; ange-ftp-fix-dir-name-for-TYPE |
1106 | 530 ;;; ange-ftp-TYPE-host |
531 ;;; ange-ftp-TYPE-add-host | |
532 ;;; ange-ftp-parse-TYPE-listing | |
533 ;;; ange-ftp-TYPE-delete-file-entry | |
534 ;;; ange-ftp-TYPE-add-file-entry | |
535 ;;; ange-ftp-TYPE-file-name-as-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
536 ;;; ange-ftp-TYPE-make-compressed-filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
537 ;;; ange-ftp-TYPE-file-name-sans-versions |
1106 | 538 ;;; |
539 ;;; Variables: | |
540 ;;; | |
541 ;;; ange-ftp-TYPE-host-regexp | |
542 ;;; May need to add TYPE to ange-ftp-dumb-host-types | |
543 ;;; | |
544 ;;; Check the following functions for OS dependent coding: | |
545 ;;; | |
546 ;;; ange-ftp-host-type | |
547 ;;; ange-ftp-guess-host-type | |
548 ;;; ange-ftp-allow-child-lookup | |
549 | |
550 ;;; Host type conventions: | |
551 ;;; | |
552 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
553 ;;; (mostly) follow the following conventions for remote host types. At | |
554 ;;; least, I think that future code should try to follow these conventions, | |
555 ;;; and the current code should eventually be made compliant. | |
556 ;;; | |
557 ;;; nil = local host type, whatever that is (probably unix). | |
558 ;;; Think nil as in "not a remote host". This value is used by | |
559 ;;; ange-ftp-dired-host-type for local buffers. | |
560 ;;; | |
561 ;;; t = a remote host of unknown type. Think t is in true, it's remote. | |
562 ;;; Currently, 'unix is used as the default remote host type. | |
563 ;;; Maybe we should use t. | |
564 ;;; | |
565 ;;; 'type = a remote host of TYPE type. | |
566 ;;; | |
567 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
568 ;;; program called list. This is currently only used for Unix | |
569 ;;; dl (descriptive listings), when ange-ftp-dired-host-type | |
570 ;;; is set to 'unix:dl. | |
571 | |
572 ;;; Bug report codes: | |
573 ;;; | |
574 ;;; Because of their naive faith in this code, there are certain situations | |
575 ;;; which the writers of this program believe could never happen. However, | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
576 ;;; being realists they have put calls to `error' in the program at these |
1106 | 577 ;;; points. These errors provide a code, which is an integer, greater than 1. |
578 ;;; To aid debugging. the error codes, and the functions in which they reside | |
579 ;;; are listed below. | |
580 ;;; | |
581 ;;; 1: See ange-ftp-ls | |
582 ;;; | |
583 | |
584 ;;; ----------------------------------------------------------- | |
585 ;;; Hall of fame: | |
586 ;;; ----------------------------------------------------------- | |
587 ;;; | |
588 ;;; Thanks to Roland McGrath for improving the filename syntax handling, | |
589 ;;; for suggesting many enhancements and for numerous cleanups to the code. | |
590 ;;; | |
591 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
592 ;;; | |
593 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
594 ;;; dired / shell auto-loading. | |
595 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
596 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and |
1106 | 597 ;;; bugfixes. |
598 ;;; | |
599 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
600 ;;; VOS support, and hostname completion. | |
601 ;;; | |
602 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
603 ;;; with file-name expansion, efficiency worries, stylistic concerns and many | |
604 ;;; bugfixes. | |
605 ;;; | |
606 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
607 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
608 ;;; auto-recognition of the host type. | |
609 ;;; | |
610 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
611 ;;; | |
612 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
613 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
614 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
615 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
616 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
617 ;;; whose names I've forgotten who have helped to debug and fix problems with | |
618 ;;; ange-ftp.el. | |
619 | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
620 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
621 ;;; Code: |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 |
1106 | 624 ;;;; ------------------------------------------------------------ |
625 ;;;; User customization variables. | |
626 ;;;; ------------------------------------------------------------ | |
627 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
628 (defvar ange-ftp-name-format |
1106 | 629 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
630 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
631 This is a list of the form \(REGEXP HOST USER NAME\), |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
632 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
633 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 634 parenthesized expressions in REGEXP for the components (in that order).") |
635 | |
636 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
637 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
638 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
639 | |
640 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
641 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 642 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 643 |
644 (defvar ange-ftp-good-msgs | |
645 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 646 "*Regular expression matching ftp \"success\" messages.") |
1106 | 647 |
648 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
649 ;; Also CMS machines use a multiline 550- reply to say that you | |
650 ;; don't have write permission. ange-ftp gets into multi-line skip | |
651 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
652 ;; when it gets the 550 line, as it should. | |
653 | |
654 (defvar ange-ftp-skip-msgs | |
655 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
656 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
657 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") | |
7042 | 658 "*Regular expression matching ftp messages that can be ignored.") |
1106 | 659 |
660 (defvar ange-ftp-fatal-msgs | |
661 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
662 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 663 "*Regular expression matching ftp messages that indicate serious errors. |
664 These mean that the FTP process should (or already has) been killed.") | |
1106 | 665 |
666 (defvar ange-ftp-gateway-fatal-msgs | |
667 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
7042 | 668 "*Regular expression matching login failure messages from rlogin/telnet.") |
1106 | 669 |
670 (defvar ange-ftp-xfer-size-msgs | |
671 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
672 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
673 | |
674 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
675 "*Template used to create temporary files.") | |
676 | |
677 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
678 "*Template used to create temporary files when ftp-ing through a gateway. | |
679 Files starting with this prefix need to be accessible from BOTH the local | |
680 machine and the gateway machine, and need to have the SAME name on both | |
681 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
682 cross-mounted.") | |
683 | |
684 (defvar ange-ftp-netrc-filename "~/.netrc" | |
685 "*File in .netrc format to search for passwords.") | |
686 | |
687 (defvar ange-ftp-disable-netrc-security-check nil | |
688 "*If non-nil avoid checking permissions on the .netrc file.") | |
689 | |
690 (defvar ange-ftp-default-user nil | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
691 "*User name to use when none is specied in a file name. |
1106 | 692 If nil, then the name under which the user is logged in is used. |
693 If non-nil but not a string, the user is prompted for the name.") | |
694 | |
695 (defvar ange-ftp-default-password nil | |
696 "*Password to use when the user is the same as ange-ftp-default-user.") | |
697 | |
698 (defvar ange-ftp-default-account nil | |
699 "*Account password to use when the user is the same as ange-ftp-default-user.") | |
700 | |
1174 | 701 (defvar ange-ftp-generate-anonymous-password t |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
702 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
703 If a string, then use that string as the password. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
704 If nil, prompt the user for a password.") |
1106 | 705 |
706 (defvar ange-ftp-dumb-unix-host-regexp nil | |
7042 | 707 "*If non-nil, regexp matching hosts on which `dir' command lists directory.") |
1106 | 708 |
709 (defvar ange-ftp-binary-file-name-regexp | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
710 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 711 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|" |
5171
85aadd2a80ba
(ange-ftp-binary-file-name-regexp): Accept .tgz and .taz files.
Richard M. Stallman <rms@gnu.org>
parents:
5067
diff
changeset
|
712 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|" |
85aadd2a80ba
(ange-ftp-binary-file-name-regexp): Accept .tgz and .taz files.
Richard M. Stallman <rms@gnu.org>
parents:
5067
diff
changeset
|
713 "\\.taz$\\|\\.tgz$") |
1106 | 714 "*If a file matches this regexp then it is transferred in binary mode.") |
715 | |
716 (defvar ange-ftp-gateway-host nil | |
717 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
718 | |
719 (defvar ange-ftp-local-host-regexp ".*" | |
7042 | 720 "*Regexp selecting hosts which can be reached directly with ftp. |
721 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
722 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.") |
1106 | 723 |
724 (defvar ange-ftp-gateway-program-interactive nil | |
7042 | 725 "*If non-nil then the gateway program should give a shell prompt. |
726 Both telnet and rlogin do something like this.") | |
1106 | 727 |
728 (defvar ange-ftp-gateway-program (if (eq system-type 'hpux) "remsh" "rsh") | |
7042 | 729 "*Name of program to spawn a shell on the gateway machine. |
730 Valid candidates are rsh (remsh on hp-ux), telnet and rlogin. See | |
731 also the gateway variable above.") | |
1106 | 732 |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
733 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
7042 | 734 "*Regexp matching prompt after complete login sequence on gateway machine. |
735 A match for this means the shell is now awaiting input. Make this regexp as | |
1106 | 736 strict as possible; it shouldn't match *anything* at all except the user's |
737 initial prompt. The above string will fail under most SUN-3's since it | |
738 matches the login banner.") | |
739 | |
740 (defvar ange-ftp-gateway-setup-term-command | |
741 (if (eq system-type 'hpux) | |
742 "stty -onlcr -echo\n" | |
743 "stty -echo nl\n") | |
7042 | 744 "*Set up terminal after logging in to the gateway machine. |
745 This command should stop the terminal from echoing each command, and | |
746 arrange to strip out trailing ^M characters.") | |
1106 | 747 |
748 (defvar ange-ftp-smart-gateway nil | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
749 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
750 Don't bother telnetting, etc., already connected to desired host transparently, |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
751 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.") |
1106 | 752 |
753 (defvar ange-ftp-smart-gateway-port "21" | |
754 "*Port on gateway machine to use when smart gateway is in operation.") | |
755 | |
756 (defvar ange-ftp-send-hash t | |
757 "*If non-nil, send the HASH command to the FTP client.") | |
758 | |
759 (defvar ange-ftp-binary-hash-mark-size nil | |
760 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
761 If NIL, this variable will be locally overridden if the FTP client outputs a | |
762 suitable response to the HASH command. If non-NIL then this value takes | |
763 precedence over the local value.") | |
764 | |
765 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
766 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
767 This variable is buffer-local and will be locally overridden if the FTP client | |
768 outputs a suitable response to the HASH command.") | |
769 | |
770 (defvar ange-ftp-process-verbose t | |
771 "*If non-NIL then be chatty about interaction with the FTP process.") | |
772 | |
773 (defvar ange-ftp-ftp-program-name "ftp" | |
774 "*Name of FTP program to run.") | |
775 | |
776 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
777 "*Name of FTP program to run when accessing non-local hosts. |
1106 | 778 Some AT&T folks claim to use something called `pftp' here.") |
779 | |
780 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
781 "*A list of arguments passed to the FTP program when started.") | |
782 | |
783 (defvar ange-ftp-nslookup-program nil | |
784 "*If non-NIL then a string naming nslookup program." ) | |
785 | |
786 (defvar ange-ftp-make-backup-files () | |
3416
5bd76dd4c6bd
(ange-ftp-make-backup-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3394
diff
changeset
|
787 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 788 |
789 (defvar ange-ftp-retry-time 5 | |
7042 | 790 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
791 This might need to be increased for very slow connections.") | |
1106 | 792 |
793 (defvar ange-ftp-auto-save 0 | |
794 "If 1, allows ange-ftp files to be auto-saved. | |
795 If 0, suppresses auto-saving of ange-ftp files. | |
796 Don't use any other value.") | |
797 | |
798 ;;;; ------------------------------------------------------------ | |
799 ;;;; Hash table support. | |
800 ;;;; ------------------------------------------------------------ | |
801 | |
802 (require 'backquote) | |
803 | |
804 (defun ange-ftp-make-hashtable (&optional size) | |
805 "Make an obarray suitable for use as a hashtable. | |
806 SIZE, if supplied, should be a prime number." | |
807 (make-vector (or size 31) 0)) | |
808 | |
809 (defun ange-ftp-map-hashtable (fun tbl) | |
810 "Call FUNCTION on each key and value in HASHTABLE." | |
811 (mapatoms | |
812 (function | |
813 (lambda (sym) | |
814 (funcall fun (get sym 'key) (get sym 'val)))) | |
815 tbl)) | |
816 | |
817 (defmacro ange-ftp-make-hash-key (key) | |
818 "Convert KEY into a suitable key for a hashtable." | |
819 (` (if (stringp (, key)) | |
820 (, key) | |
821 (prin1-to-string (, key))))) | |
822 | |
823 (defun ange-ftp-get-hash-entry (key tbl) | |
824 "Return the value associated with KEY in HASHTABLE." | |
825 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
826 (and sym (get sym 'val)))) | |
827 | |
828 (defun ange-ftp-put-hash-entry (key val tbl) | |
829 "Record an association between KEY and VALUE in HASHTABLE." | |
830 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
831 (put sym 'val val) | |
832 (put sym 'key key))) | |
833 | |
834 (defun ange-ftp-del-hash-entry (key tbl) | |
835 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
836 (let* ((len (length tbl)) | |
837 (new-tbl (ange-ftp-make-hashtable len)) | |
838 (i (1- len))) | |
839 (ange-ftp-map-hashtable | |
840 (function | |
841 (lambda (k v) | |
842 (or (equal k key) | |
843 (ange-ftp-put-hash-entry k v new-tbl)))) | |
844 tbl) | |
845 (while (>= i 0) | |
846 (aset tbl i (aref new-tbl i)) | |
847 (setq i (1- i))) | |
848 tbl)) | |
849 | |
850 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
851 "Return whether there is an association for KEY in TABLE." | |
852 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
853 | |
854 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 855 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 856 (sort (all-completions "" tbl) |
857 (function string-lessp))) | |
858 | |
859 ;;;; ------------------------------------------------------------ | |
860 ;;;; Internal variables. | |
861 ;;;; ------------------------------------------------------------ | |
862 | |
9664 | 863 (defconst ange-ftp-version "$Revision: 1.59 $") |
1106 | 864 |
865 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
866 "Buffer name to hold directory listing data received from ftp process.") | |
867 | |
868 (defvar ange-ftp-netrc-modtime nil | |
869 "Last modified time of the netrc file from file-attributes.") | |
870 | |
871 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
872 "Hash table holding associations between HOST, USER pairs.") | |
873 | |
874 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
875 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
876 | |
877 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
878 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
879 | |
880 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
881 "Hash table for storing directories and their respective files.") | |
882 | |
883 (defvar ange-ftp-ls-cache-lsargs nil | |
884 "Last set of args used by ange-ftp-ls.") | |
885 | |
886 (defvar ange-ftp-ls-cache-file nil | |
887 "Last file passed to ange-ftp-ls.") | |
888 | |
889 (defvar ange-ftp-ls-cache-res nil | |
890 "Last result returned from ange-ftp-ls.") | |
891 | |
892 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
893 | |
894 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
895 | |
896 ;; These are local variables in each FTP process buffer. | |
897 (defvar ange-ftp-hash-mark-unit nil) | |
898 (defvar ange-ftp-hash-mark-count nil) | |
899 (defvar ange-ftp-xfer-size nil) | |
900 (defvar ange-ftp-process-string nil) | |
901 (defvar ange-ftp-process-result-line nil) | |
902 (defvar ange-ftp-process-busy nil) | |
903 (defvar ange-ftp-process-result nil) | |
904 (defvar ange-ftp-process-multi-skip nil) | |
905 (defvar ange-ftp-process-msg nil) | |
906 (defvar ange-ftp-process-continue nil) | |
907 (defvar ange-ftp-last-percent nil) | |
908 | |
909 ;; These variables are bound by one function and examined by another. | |
910 ;; Leave them void globally for error checking. | |
911 (defvar ange-ftp-this-file) | |
912 (defvar ange-ftp-this-dir) | |
913 (defvar ange-ftp-this-user) | |
914 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
915 (defvar ange-ftp-this-msg) |
1106 | 916 (defvar ange-ftp-completion-ignored-pattern) |
917 (defvar ange-ftp-trample-marker) | |
918 | |
919 ;; New error symbols. | |
920 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
921 ;; (put 'ftp-error 'error-message "FTP error") | |
922 | |
923 ;;; ------------------------------------------------------------ | |
924 ;;; Match-data support (stolen from Kyle I think) | |
925 ;;; ------------------------------------------------------------ | |
926 | |
927 (defmacro ange-ftp-save-match-data (&rest body) | |
928 "Execute the BODY forms, restoring the global value of the match data. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
929 Also makes matching case-sensitive within BODY." |
1106 | 930 (let ((original (make-symbol "match-data")) |
931 case-fold-search) | |
932 (list | |
933 'let (list (list original '(match-data))) | |
934 (list 'unwind-protect | |
935 (cons 'progn body) | |
936 (list 'store-match-data original))))) | |
937 | |
938 (put 'ange-ftp-save-match-data 'lisp-indent-hook 0) | |
939 (put 'ange-ftp-save-match-data 'edebug-form-hook '(&rest form)) | |
940 | |
941 ;;; ------------------------------------------------------------ | |
942 ;;; Enhanced message support. | |
943 ;;; ------------------------------------------------------------ | |
944 | |
945 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
946 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
947 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 948 (let ((msg (apply (function format) fmt args)) |
949 (max (window-width (minibuffer-window)))) | |
950 (if (>= (length msg) max) | |
951 (setq msg (concat "> " (substring msg (- 3 max))))) | |
952 (message "%s" msg))) | |
953 | |
954 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
955 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
956 If the optional parameter NEW is given and the non-directory parts match, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
957 only return the directory part of FILE." |
1106 | 958 (ange-ftp-save-match-data |
959 (if (and default-directory | |
960 (string-match (concat "^" | |
961 (regexp-quote default-directory) | |
962 ".") file)) | |
963 (setq file (substring file (1- (match-end 0))))) | |
964 (if (and new | |
965 (string-equal (file-name-nondirectory file) | |
966 (file-name-nondirectory new))) | |
967 (setq file (file-name-directory file))) | |
968 (or file "./"))) | |
969 | |
970 ;;;; ------------------------------------------------------------ | |
971 ;;;; User / Host mapping support. | |
972 ;;;; ------------------------------------------------------------ | |
973 | |
974 (defun ange-ftp-set-user (host user) | |
975 "For a given HOST, set or change the default USER." | |
976 (interactive "sHost: \nsUser: ") | |
977 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
978 | |
979 (defun ange-ftp-get-user (host) | |
980 "Given a HOST, return the default USER." | |
981 (ange-ftp-parse-netrc) | |
982 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
983 (or user | |
984 (prog1 | |
985 (setq user | |
986 (cond ((stringp ange-ftp-default-user) | |
987 ;; We have a default name. Use it. | |
988 ange-ftp-default-user) | |
989 (ange-ftp-default-user | |
990 ;; Ask the user. | |
991 (let ((enable-recursive-minibuffers t)) | |
992 (read-string (format "User for %s: " host) | |
993 (user-login-name)))) | |
994 ;; Default to the user's login name. | |
995 (t | |
996 (user-login-name)))) | |
997 (ange-ftp-set-user host user))))) | |
998 | |
999 ;;;; ------------------------------------------------------------ | |
1000 ;;;; Password support. | |
1001 ;;;; ------------------------------------------------------------ | |
1002 | |
1003 (defun ange-ftp-read-passwd (prompt &optional default) | |
1004 "Read a password, echoing `.' for each character typed. | |
1005 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
1006 Optional DEFAULT is password to start with." | |
1007 (let ((pass (if default default "")) | |
1008 (c 0) | |
1009 (echo-keystrokes 0) | |
1010 (cursor-in-echo-area t)) | |
1011 (while (progn (message "%s%s" | |
1012 prompt | |
1013 (make-string (length pass) ?.)) | |
1014 (setq c (read-char)) | |
1015 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1016 (if (= c ?\C-u) | |
1017 (setq pass "") | |
1018 (if (and (/= c ?\b) (/= c ?\177)) | |
1019 (setq pass (concat pass (char-to-string c))) | |
1020 (if (> (length pass) 0) | |
1021 (setq pass (substring pass 0 -1)))))) | |
1022 (message "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1023 (ange-ftp-repaint-minibuffer) |
1106 | 1024 pass)) |
1025 | |
1026 (defmacro ange-ftp-generate-passwd-key (host user) | |
1027 (` (concat (, host) "/" (, user)))) | |
1028 | |
1029 (defmacro ange-ftp-lookup-passwd (host user) | |
1030 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1031 ange-ftp-passwd-hashtable))) | |
1032 | |
1033 (defun ange-ftp-set-passwd (host user passwd) | |
1034 "For a given HOST and USER, set or change the associated PASSWORD." | |
1035 (interactive (list (read-string "Host: ") | |
1036 (read-string "User: ") | |
1037 (ange-ftp-read-passwd "Password: "))) | |
1038 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1039 passwd | |
1040 ange-ftp-passwd-hashtable)) | |
1041 | |
1042 (defun ange-ftp-get-host-with-passwd (user) | |
1043 "Given a USER, return a host we know the password for." | |
1044 (ange-ftp-parse-netrc) | |
1045 (catch 'found-one | |
1046 (ange-ftp-map-hashtable | |
1047 (function (lambda (host val) | |
1048 (if (ange-ftp-lookup-passwd host user) | |
1049 (throw 'found-one host)))) | |
1050 ange-ftp-user-hashtable) | |
1051 (ange-ftp-save-match-data | |
1052 (ange-ftp-map-hashtable | |
1053 (function | |
1054 (lambda (key value) | |
1055 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1056 (let ((host (substring key 0 (match-beginning 1)))) | |
1057 (if (and (string-equal user (substring key (match-end 1))) | |
1058 value) | |
1059 (throw 'found-one host)))))) | |
1060 ange-ftp-passwd-hashtable)) | |
1061 nil)) | |
1062 | |
1063 (defun ange-ftp-get-passwd (host user) | |
1064 "Return the password for specified HOST and USER, asking user if necessary." | |
1065 (ange-ftp-parse-netrc) | |
1066 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1067 ;; look up password in the hash table first; user might have overridden the |
1106 | 1068 ;; defaults. |
1069 (cond ((ange-ftp-lookup-passwd host user)) | |
1070 | |
1071 ;; see if default user and password set from the .netrc file. | |
1072 ((and (stringp ange-ftp-default-user) | |
1073 ange-ftp-default-password | |
1074 (string-equal user ange-ftp-default-user)) | |
1075 ange-ftp-default-password) | |
1076 | |
1077 ;; anonymous ftp password is handled specially since there is an | |
1078 ;; unwritten rule about how that is used on the Internet. | |
1079 ((and (or (string-equal user "anonymous") | |
1080 (string-equal user "ftp")) | |
1081 ange-ftp-generate-anonymous-password) | |
1082 (if (stringp ange-ftp-generate-anonymous-password) | |
1083 ange-ftp-generate-anonymous-password | |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
1084 user-mail-address)) |
1106 | 1085 |
1086 ;; see if same user has logged in to other hosts; if so then prompt | |
1087 ;; with the password that was used there. | |
1088 (t | |
1089 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1090 (passwd (if other | |
1091 | |
1092 ;; found another machine with the same user. | |
1093 ;; Try that account. | |
1094 (ange-ftp-read-passwd | |
1095 (format "passwd for %s@%s (same as %s@%s): " | |
1096 user host user other) | |
1097 (ange-ftp-lookup-passwd other user)) | |
1098 | |
1099 ;; I give up. Ask the user for the password. | |
1100 (ange-ftp-read-passwd | |
1101 (format "Password for %s@%s: " user host))))) | |
1102 (ange-ftp-set-passwd host user passwd) | |
1103 passwd)))) | |
1104 | |
1105 ;;;; ------------------------------------------------------------ | |
1106 ;;;; Account support | |
1107 ;;;; ------------------------------------------------------------ | |
1108 | |
1109 ;; Account passwords must be either specified in the .netrc file, or set | |
1110 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1111 ;; check to see whether the FTP process is actually prompting for an account | |
1112 ;; password. | |
1113 | |
1114 (defun ange-ftp-set-account (host user account) | |
1115 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1116 (interactive (list (read-string "Host: ") | |
1117 (read-string "User: ") | |
1118 (ange-ftp-read-passwd "Account password: "))) | |
1119 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1120 account | |
1121 ange-ftp-account-hashtable)) | |
1122 | |
1123 (defun ange-ftp-get-account (host user) | |
1124 "Given a HOST and USER, return the FTP account." | |
1125 (ange-ftp-parse-netrc) | |
1126 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1127 ange-ftp-account-hashtable) | |
1128 (and (stringp ange-ftp-default-user) | |
1129 (string-equal user ange-ftp-default-user) | |
1130 ange-ftp-default-account))) | |
1131 | |
1132 ;;;; ------------------------------------------------------------ | |
1133 ;;;; ~/.netrc support | |
1134 ;;;; ------------------------------------------------------------ | |
1135 | |
1136 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1137 "Return the filename that FILE references, following all symbolic links." |
1106 | 1138 (let (temp) |
1139 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1140 (setq file | |
1141 (if (file-name-absolute-p temp) | |
1142 temp | |
1143 (concat (file-name-directory file) temp))))) | |
1144 file) | |
1145 | |
7042 | 1146 ;; Move along current line looking for the value of the TOKEN. |
1147 ;; Valid separators between TOKEN and its value are commas and | |
1148 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1149 | |
1106 | 1150 (defun ange-ftp-parse-netrc-token (token limit) |
1151 (if (search-forward token limit t) | |
1152 (let (beg) | |
1153 (skip-chars-forward ", \t\r\n" limit) | |
1154 (if (eq (following-char) ?\") ;quoted token value | |
1155 (progn (forward-char 1) | |
1156 (setq beg (point)) | |
1157 (skip-chars-forward "^\"" limit) | |
1158 (forward-char 1) | |
1159 (buffer-substring beg (1- (point)))) | |
1160 (setq beg (point)) | |
1161 (skip-chars-forward "^, \t\r\n" limit) | |
1162 (buffer-substring beg (point)))))) | |
1163 | |
7042 | 1164 ;; Extract the values for the tokens `machine', `login', |
1165 ;; `password' and `account' in the current buffer. If successful, | |
1166 ;; record the information found. | |
1167 | |
1106 | 1168 (defun ange-ftp-parse-netrc-group () |
1169 (let ((start (point)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1170 (end (save-excursion |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1171 (if (looking-at "machine\\>") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1172 ;; Skip `machine' and the machine name that follows. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1173 (progn |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1174 (skip-chars-forward "^ \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1175 (skip-chars-forward " \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1176 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1177 ;; Skip `default'. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1178 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1179 ;; Find start of the next `machine' or `default' |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1180 ;; or the end of the buffer. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1181 (if (re-search-forward "machine\\>\\|default\\>" nil t) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1182 (match-beginning 0) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1183 (point-max)))) |
1106 | 1184 machine login password account) |
1185 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1186 login (ange-ftp-parse-netrc-token "login" end) | |
1187 password (ange-ftp-parse-netrc-token "password" end) | |
1188 account (ange-ftp-parse-netrc-token "account" end)) | |
1189 (if (and machine login) | |
1190 ;; found a `machine` token. | |
1191 (progn | |
1192 (ange-ftp-set-user machine login) | |
1193 (ange-ftp-set-passwd machine login password) | |
1194 (and account | |
1195 (ange-ftp-set-account machine login account))) | |
1196 (goto-char start) | |
1197 (if (search-forward "default" end t) | |
1198 ;; found a `default' token | |
1199 (progn | |
1200 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1201 password (ange-ftp-parse-netrc-token "password" end) | |
1202 account (ange-ftp-parse-netrc-token "account" end)) | |
1203 (and login | |
1204 (setq ange-ftp-default-user login)) | |
1205 (and password | |
1206 (setq ange-ftp-default-password password)) | |
1207 (and account | |
1208 (setq ange-ftp-default-account account))))) | |
1209 (goto-char end))) | |
1210 | |
7042 | 1211 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1212 ;; the correct permissions then extract the \`machine\', \`login\', | |
1213 ;; \`password\' and \`account\' information from within. | |
1214 | |
1106 | 1215 (defun ange-ftp-parse-netrc () |
1216 ;; We set this before actually doing it to avoid the possibility | |
1217 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1218 (interactive) | |
1219 (let* ((file (ange-ftp-chase-symlinks | |
1220 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1221 (attr (ange-ftp-real-file-attributes file))) | |
1222 (if (and attr ; file exists. | |
1223 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1224 (ange-ftp-save-match-data | |
1225 (if (or ange-ftp-disable-netrc-security-check | |
1226 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1227 (string-match ".r..------" (nth 8 attr)))) | |
1228 (save-excursion | |
1229 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1230 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1231 ;; with the bit of logic below we should be able to have | |
1232 ;; encrypted .netrc files. | |
1233 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1234 (ange-ftp-real-insert-file-contents file) | |
1235 (setq buffer-file-name file) | |
1236 (setq default-directory (file-name-directory file)) | |
1237 (normal-mode t) | |
1238 (mapcar 'funcall find-file-hooks) | |
1239 (setq buffer-file-name nil) | |
1240 (goto-char (point-min)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1241 (skip-chars-forward " \t\n") |
1106 | 1242 (while (not (eobp)) |
1243 (ange-ftp-parse-netrc-group)) | |
1244 (kill-buffer (current-buffer))) | |
1245 (ange-ftp-message "%s either not owned by you or badly protected." | |
1246 ange-ftp-netrc-filename) | |
1247 (sit-for 1)) | |
1248 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1249 | |
7042 | 1250 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1251 ;; completion is done in the root directory. | |
1252 | |
1106 | 1253 (defun ange-ftp-generate-root-prefixes () |
1254 (ange-ftp-parse-netrc) | |
1255 (ange-ftp-save-match-data | |
1256 (let (res) | |
1257 (ange-ftp-map-hashtable | |
1258 (function | |
1259 (lambda (key value) | |
1260 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1261 (let ((host (substring key 0 (match-beginning 1))) | |
1262 (user (substring key (match-end 1)))) | |
1263 (setq res (cons (list (concat user "@" host ":")) | |
1264 res)))))) | |
1265 ange-ftp-passwd-hashtable) | |
1266 (ange-ftp-map-hashtable | |
1267 (function (lambda (host user) | |
1268 (setq res (cons (list (concat host ":")) | |
1269 res)))) | |
1270 ange-ftp-user-hashtable) | |
1271 (or res (list nil))))) | |
1272 | |
1273 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1274 ;;;; Remote file name syntax support. |
1106 | 1275 ;;;; ------------------------------------------------------------ |
1276 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1277 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1278 "Extract the Nth ftp file name component from NS." |
1106 | 1279 (` (let ((elt (nth (, n) (, ns)))) |
1280 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1281 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1282 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1283 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1284 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1285 |
7042 | 1286 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1287 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1288 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1289 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1290 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1291 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1292 ange-ftp-ftp-name-res |
1106 | 1293 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1294 (if (string-match (car ange-ftp-name-format) name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1295 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1296 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1297 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1298 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1299 (if (zerop (length user)) |
1300 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1301 (list host user name)) |
1106 | 1302 nil))))) |
1303 | |
7042 | 1304 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1305 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1306 (defun ange-ftp-replace-name-component (fullname name) |
1106 | 1307 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1308 (if (string-match (car ange-ftp-name-format) fullname) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1309 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1310 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1311 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1312 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1313 (substring fullname (match-end elt))))))) |
1106 | 1314 |
1315 ;;;; ------------------------------------------------------------ | |
1316 ;;;; Miscellaneous utils. | |
1317 ;;;; ------------------------------------------------------------ | |
1318 | |
1319 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1320 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1321 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1322 (defun ange-ftp-repaint-minibuffer () |
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1323 "Clear any existing minibuffer message; let the minibuffer contents show." |
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1324 (message nil)) |
1106 | 1325 |
7042 | 1326 ;; Return the name of the buffer that collects output from the ftp process |
1327 ;; connected to the given HOST and USER pair. | |
1106 | 1328 (defun ange-ftp-ftp-process-buffer (host user) |
1329 (concat "*ftp " user "@" host "*")) | |
1330 | |
7042 | 1331 ;; Display the last chunk of output from the ftp process for the given HOST |
1332 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1333 (defun ange-ftp-error (host user msg) |
1334 (let ((cur (selected-window)) | |
1335 (pop-up-windows t)) | |
1336 (pop-to-buffer | |
1337 (get-buffer-create | |
1338 (ange-ftp-ftp-process-buffer host user))) | |
1339 (goto-char (point-max)) | |
1340 (select-window cur)) | |
1341 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1342 | |
1343 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1344 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1345 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1346 (ange-ftp-ftp-name buffer-file-name)) |
1106 | 1347 (progn |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1348 (make-local-variable 'make-backup-files) |
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1349 (setq make-backup-files ange-ftp-make-backup-files) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
1350 (auto-save-mode ange-ftp-auto-save)))) |
1106 | 1351 |
1352 (defun ange-ftp-kill-ftp-process (buffer) | |
1242
82774f4b69dd
(ange-ftp-kill-ftp-process): Delete spurious ".
Richard M. Stallman <rms@gnu.org>
parents:
1233
diff
changeset
|
1353 "Kill the FTP process associated with BUFFER. |
1233 | 1354 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1355 then kill the related ftp process." |
1356 (interactive "bKill FTP process associated with buffer: ") | |
1357 (if (null buffer) | |
1358 (setq buffer (current-buffer))) | |
1359 (let ((file (or (buffer-file-name) default-directory))) | |
1360 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1361 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1362 (if parsed |
1363 (let ((host (nth 0 parsed)) | |
1364 (user (nth 1 parsed))) | |
1365 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1366 | |
1367 (defun ange-ftp-quote-string (string) | |
1368 "Quote any characters in STRING that may confuse the ftp process." | |
1369 (apply (function concat) | |
1370 (mapcar (function | |
1371 (lambda (char) | |
1372 (if (or (<= char ? ) | |
1373 (> char ?\~) | |
1374 (= char ?\") | |
1375 (= char ?\\)) | |
1376 (vector ?\\ char) | |
1377 (vector char)))) | |
1378 string))) | |
1379 | |
1380 (defun ange-ftp-barf-if-not-directory (directory) | |
1381 (or (file-directory-p directory) | |
1382 (signal 'file-error | |
1383 (list "Opening directory" | |
1384 (if (file-exists-p directory) | |
1385 "not a directory" | |
1386 "no such file or directory") | |
1387 directory)))) | |
1388 | |
1389 ;;;; ------------------------------------------------------------ | |
1390 ;;;; FTP process filter support. | |
1391 ;;;; ------------------------------------------------------------ | |
1392 | |
1393 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1394 "Look at the given LINE from the ftp process PROC. |
1395 Try to categorize it into one of four categories: | |
1396 good, skip, fatal, or unknown." | |
1106 | 1397 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1398 (setq ange-ftp-xfer-size | |
1399 (ash (string-to-int (substring line | |
1400 (match-beginning 1) | |
1401 (match-end 1))) | |
1402 -10))) | |
1403 ((string-match ange-ftp-skip-msgs line) | |
1404 t) | |
1405 ((string-match ange-ftp-good-msgs line) | |
1406 (setq ange-ftp-process-busy nil | |
1407 ange-ftp-process-result t | |
1408 ange-ftp-process-result-line line)) | |
9664 | 1409 ;; Check this before checking for errors. |
1410 ;; Otherwise the last line of these three seems to be an error: | |
1411 ;; 230-see a significant impact from the move. For those of you who can't | |
1412 ;; 230-use DNS to resolve hostnames and get an error message like | |
1413 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
9662
ca4987708cc0
(ange-ftp-process-handle-line): Check for a
Richard M. Stallman <rms@gnu.org>
parents:
9627
diff
changeset
|
1414 ((string-match ange-ftp-multi-msgs line) |
ca4987708cc0
(ange-ftp-process-handle-line): Check for a
Richard M. Stallman <rms@gnu.org>
parents:
9627
diff
changeset
|
1415 (setq ange-ftp-process-multi-skip t)) |
1106 | 1416 ((string-match ange-ftp-fatal-msgs line) |
1417 (delete-process proc) | |
1418 (setq ange-ftp-process-busy nil | |
1419 ange-ftp-process-result-line line)) | |
1420 (ange-ftp-process-multi-skip | |
1421 t) | |
1422 (t | |
1423 (setq ange-ftp-process-busy nil | |
1424 ange-ftp-process-result-line line)))) | |
1425 | |
1426 (defun ange-ftp-set-xfer-size (host user bytes) | |
1427 "Set the size of the next FTP transfer in bytes." | |
1428 (let ((proc (ange-ftp-get-process host user))) | |
1429 (if proc | |
1430 (let ((buf (process-buffer proc))) | |
1431 (if buf | |
1432 (save-excursion | |
1433 (set-buffer buf) | |
1434 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1435 | |
1436 (defun ange-ftp-process-handle-hash (str) | |
1437 "Remove hash marks from STRING and display count so far." | |
1438 (setq str (concat (substring str 0 (match-beginning 0)) | |
1439 (substring str (match-end 0))) | |
1440 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1441 (match-beginning 0)) | |
1442 ange-ftp-hash-mark-count)) | |
1443 (and ange-ftp-process-msg | |
1444 ange-ftp-process-verbose | |
1445 (not (eq (selected-window) (minibuffer-window))) | |
1446 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1447 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1448 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1449 ange-ftp-hash-mark-count) | |
1450 -6))) | |
1451 (if (zerop ange-ftp-xfer-size) | |
1452 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1453 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1454 ;; cut out the redisplay of identical %-age messages. | |
1455 (if (not (eq percent ange-ftp-last-percent)) | |
1456 (progn | |
1457 (setq ange-ftp-last-percent percent) | |
1458 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1459 str) | |
1460 | |
7042 | 1461 ;; Call the function specified by CONT. CONT can be either a function |
1462 ;; or a list of a function and some args. The first two parameters | |
1463 ;; passed to the function will be RESULT and LINE. The remaining args | |
1464 ;; will be taken from CONT if a list was passed. | |
1465 | |
1106 | 1466 (defun ange-ftp-call-cont (cont result line) |
1467 (if cont | |
1468 (if (and (listp cont) | |
1469 (not (eq (car cont) 'lambda))) | |
1470 (apply (car cont) result line (cdr cont)) | |
1471 (funcall cont result line)))) | |
1472 | |
7042 | 1473 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1474 ;; on to ange-ftp-process-handle-line to deal with. | |
1475 | |
1106 | 1476 (defun ange-ftp-process-filter (proc str) |
1477 (let ((buffer (process-buffer proc)) | |
1478 (old-buffer (current-buffer))) | |
1479 | |
1480 ;; see if the buffer is still around... it could have been deleted. | |
1481 (if (buffer-name buffer) | |
1482 (unwind-protect | |
1483 (ange-ftp-save-match-data | |
1484 (set-buffer (process-buffer proc)) | |
1485 | |
1486 ;; handle hash mark printing | |
1487 (and ange-ftp-hash-mark-unit | |
1488 ange-ftp-process-busy | |
1489 (string-match "^#+$" str) | |
1490 (setq str (ange-ftp-process-handle-hash str))) | |
6822
69c4ca88cf5e
(ange-ftp-process-filter, ange-ftp-gwp-filter): Call comint-output-filter.
Karl Heuer <kwzh@gnu.org>
parents:
6309
diff
changeset
|
1491 (comint-output-filter proc str) |
1106 | 1492 (if ange-ftp-process-busy |
1493 (progn | |
1494 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1495 str)) | |
1496 | |
1497 ;; if we gave an empty password to the USER command earlier | |
1498 ;; then we should send a null password now. | |
1499 (if (string-match "Password: *$" ange-ftp-process-string) | |
1500 (send-string proc "\n")))) | |
1501 (while (and ange-ftp-process-busy | |
1502 (string-match "\n" ange-ftp-process-string)) | |
1503 (let ((line (substring ange-ftp-process-string | |
1504 0 | |
1505 (match-beginning 0)))) | |
1506 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1507 (match-end 0))) | |
1508 (while (string-match "^ftp> *" line) | |
1509 (setq line (substring line (match-end 0)))) | |
1510 (ange-ftp-process-handle-line line proc))) | |
1511 | |
1512 ;; has the ftp client finished? if so then do some clean-up | |
1513 ;; actions. | |
1514 (if (not ange-ftp-process-busy) | |
1515 (progn | |
1516 ;; reset the xfer size | |
1517 (setq ange-ftp-xfer-size 0) | |
1518 | |
1519 ;; issue the "done" message since we've finished. | |
1520 (if (and ange-ftp-process-msg | |
1521 ange-ftp-process-verbose | |
1522 ange-ftp-process-result) | |
1523 (progn | |
1524 (ange-ftp-message "%s...done" ange-ftp-process-msg) | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1525 (ange-ftp-repaint-minibuffer) |
1106 | 1526 (setq ange-ftp-process-msg nil))) |
1527 | |
1528 ;; is there a continuation we should be calling? if so, | |
1529 ;; we'd better call it, making sure we only call it once. | |
1530 (if ange-ftp-process-continue | |
1531 (let ((cont ange-ftp-process-continue)) | |
1532 (setq ange-ftp-process-continue nil) | |
1533 (ange-ftp-call-cont cont | |
1534 ange-ftp-process-result | |
1535 ange-ftp-process-result-line)))))) | |
1536 (set-buffer old-buffer))))) | |
1537 | |
1538 (defun ange-ftp-process-sentinel (proc str) | |
1539 "When ftp process changes state, nuke all file-entries in cache." | |
1540 (ange-ftp-save-match-data | |
1541 (let ((name (process-name proc))) | |
1542 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name) | |
1543 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
1544 (host (substring name (match-beginning 2) (match-end 2)))) | |
1545 (ange-ftp-wipe-file-entries host user)))) | |
1546 (setq ange-ftp-ls-cache-file nil))) | |
1547 | |
1548 ;;;; ------------------------------------------------------------ | |
1549 ;;;; Gateway support. | |
1550 ;;;; ------------------------------------------------------------ | |
1551 | |
1552 (defun ange-ftp-use-gateway-p (host) | |
1553 "Returns whether to access this host via a normal (non-smart) gateway." | |
1554 ;; yes, I know that I could simplify the following expression, but it is | |
1555 ;; clearer (to me at least) this way. | |
1556 (and (not ange-ftp-smart-gateway) | |
1557 (ange-ftp-save-match-data | |
1558 (not (string-match ange-ftp-local-host-regexp host))))) | |
1559 | |
1560 (defun ange-ftp-use-smart-gateway-p (host) | |
1561 "Returns whether to access this host via a smart gateway." | |
1562 (and ange-ftp-smart-gateway | |
1563 (ange-ftp-save-match-data | |
1564 (not (string-match ange-ftp-local-host-regexp host))))) | |
1565 | |
1566 | |
1567 ;;; ------------------------------------------------------------ | |
1568 ;;; Temporary file location and deletion... | |
1569 ;;; ------------------------------------------------------------ | |
1570 | |
1571 (defvar ange-ftp-tmp-name-files ()) | |
1572 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1573 (defvar ange-ftp-pid nil) | |
1574 | |
1575 (defun ange-ftp-get-pid () | |
1576 "Half-hearted attempt to get the current process's id." | |
1577 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1578 | |
1579 (defun ange-ftp-make-tmp-name (host) | |
1580 "This routine will return the name of a new file." | |
1581 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1582 ange-ftp-gateway-tmp-name-template | |
1583 ange-ftp-tmp-name-template)) | |
1584 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1585 (start ?a) | |
1586 file entry) | |
1587 (while | |
1588 (progn | |
1589 (setq file (format "%s%c%s" template start pid)) | |
1590 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1591 (or (memq entry ange-ftp-tmp-name-files) | |
1592 (ange-ftp-real-file-exists-p file))) | |
1593 (if (> (setq start (1+ start)) ?z) | |
1594 (progn | |
1595 (setq template (concat template "X")) | |
1596 (setq start ?a)))) | |
1597 (setq ange-ftp-tmp-name-files | |
1598 (cons entry ange-ftp-tmp-name-files)) | |
1599 file)) | |
1600 | |
1601 (defun ange-ftp-del-tmp-name (temp) | |
1602 (setq ange-ftp-tmp-name-files | |
1603 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1604 ange-ftp-tmp-name-files)) | |
1605 (condition-case () | |
1606 (ange-ftp-real-delete-file temp) | |
1607 (error nil))) | |
1608 | |
1609 ;;;; ------------------------------------------------------------ | |
1610 ;;;; Interactive gateway program support. | |
1611 ;;;; ------------------------------------------------------------ | |
1612 | |
1613 (defvar ange-ftp-gwp-running t) | |
1614 (defvar ange-ftp-gwp-status nil) | |
1615 | |
1616 (defun ange-ftp-gwp-sentinel (proc str) | |
1617 (setq ange-ftp-gwp-running nil)) | |
1618 | |
1619 (defun ange-ftp-gwp-filter (proc str) | |
1620 (ange-ftp-save-match-data | |
6822
69c4ca88cf5e
(ange-ftp-process-filter, ange-ftp-gwp-filter): Call comint-output-filter.
Karl Heuer <kwzh@gnu.org>
parents:
6309
diff
changeset
|
1621 (comint-output-filter proc str) |
1106 | 1622 (cond ((string-match "login: *$" str) |
1623 (send-string proc | |
1624 (concat | |
1625 (let ((ange-ftp-default-user t)) | |
1626 (ange-ftp-get-user ange-ftp-gateway-host)) | |
1627 "\n"))) | |
1628 ((string-match "Password: *$" str) | |
1629 (send-string proc | |
1630 (concat | |
1631 (ange-ftp-get-passwd ange-ftp-gateway-host | |
1632 (ange-ftp-get-user | |
1633 ange-ftp-gateway-host)) | |
1634 "\n"))) | |
1635 ((string-match ange-ftp-gateway-fatal-msgs str) | |
1636 (delete-process proc) | |
1637 (setq ange-ftp-gwp-running nil)) | |
1638 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1639 (setq ange-ftp-gwp-running nil | |
1640 ange-ftp-gwp-status t))))) | |
1641 | |
1642 (defun ange-ftp-gwp-start (host user name args) | |
1643 "Login to the gateway machine and fire up an ftp process." | |
1644 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1645 ;; It would be nice to make process-connection-type nil, |
1646 ;; but that doesn't work: ftp never responds. | |
1647 ;; Can anyone find a fix for that? | |
1648 (proc (let ((process-connection-type t)) | |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1649 (start-process name name |
7042 | 1650 ange-ftp-gateway-program |
1651 ange-ftp-gateway-host))) | |
1106 | 1652 (ftp (mapconcat (function identity) args " "))) |
1653 (process-kill-without-query proc) | |
1654 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1655 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1656 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1657 (set-buffer (process-buffer proc)) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1658 (internal-ange-ftp-mode) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1659 (set-marker (process-mark proc) (point))) |
1106 | 1660 (setq ange-ftp-gwp-running t |
1661 ange-ftp-gwp-status nil) | |
1662 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1663 (while ange-ftp-gwp-running ;perform login sequence | |
1664 (accept-process-output proc)) | |
1665 (if (not ange-ftp-gwp-status) | |
1666 (ange-ftp-error host user "unable to login to gateway")) | |
1667 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1668 (setq ange-ftp-gwp-running t | |
1669 ange-ftp-gwp-status nil) | |
1670 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1671 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1672 (accept-process-output proc)) | |
1673 (if (not ange-ftp-gwp-status) | |
1674 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1675 (setq ange-ftp-gwp-running t | |
1676 ange-ftp-gwp-status nil) | |
1677 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1678 proc)) | |
1679 | |
1680 ;;;; ------------------------------------------------------------ | |
1681 ;;;; Support for sending commands to the ftp process. | |
1682 ;;;; ------------------------------------------------------------ | |
1683 | |
1684 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1685 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1686 MSG is an optional message to output before and after the command. | |
1687 If CONT is non-NIL then it is either a function or a list of function and | |
1688 some arguments. The function will be called when the ftp command has completed. | |
1689 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1690 is whether the command was successful, and LINE is the line from the FTP | |
1691 process that caused the command to complete. | |
1692 If NOWAIT is given then the routine will return immediately the command has | |
1693 been queued with no result. CONT will still be called, however." | |
1694 (if (memq (process-status proc) '(run open)) | |
1695 (save-excursion | |
1696 (set-buffer (process-buffer proc)) | |
1697 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1698 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1699 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1700 ;; It is bad to allow quitting in a filter, but getting hung |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1701 ;; is worse. By binding quit-flag to nil, we might avoid |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1702 ;; most of the probability of getting screwed because the user |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1703 ;; wants to quit some command. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1704 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1705 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1706 (accept-process-output))) |
1106 | 1707 (setq ange-ftp-process-string "" |
1708 ange-ftp-process-result-line "" | |
1709 ange-ftp-process-busy t | |
1710 ange-ftp-process-result nil | |
1711 ange-ftp-process-multi-skip nil | |
1712 ange-ftp-process-msg msg | |
1713 ange-ftp-process-continue cont | |
1714 ange-ftp-hash-mark-count 0 | |
1715 ange-ftp-last-percent -1 | |
1716 cmd (concat cmd "\n")) | |
1717 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1718 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1719 (move-marker comint-last-input-start (point)) |
1106 | 1720 ;; don't insert the password into the buffer on the USER command. |
1721 (ange-ftp-save-match-data | |
1722 (if (string-match "^user \"[^\"]*\"" cmd) | |
1723 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1724 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1725 (move-marker comint-last-input-end (point)) |
1106 | 1726 (send-string proc cmd) |
1727 (set-marker (process-mark proc) (point)) | |
1728 (if nowait | |
1729 nil | |
1730 ;; hang around for command to complete | |
1731 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1732 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1733 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1734 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1735 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1736 (accept-process-output proc))) |
1106 | 1737 (if cont |
1738 nil ;cont has already been called | |
1739 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1740 | |
1741 (defun ange-ftp-nslookup-host (host) | |
1742 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1743 (interactive "sHost: ") | |
1744 (if ange-ftp-nslookup-program | |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1745 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1746 (if (file-accessible-directory-p default-directory) |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1747 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1748 exec-directory)) |
7042 | 1749 ;; It would be nice to make process-connection-type nil, |
1750 ;; but that doesn't work: ftp never responds. | |
1751 ;; Can anyone find a fix for that? | |
1752 (proc (let ((process-connection-type t)) | |
1753 (start-process " *nslookup*" " *nslookup*" | |
1754 ange-ftp-nslookup-program host))) | |
1106 | 1755 (res host)) |
1756 (process-kill-without-query proc) | |
1757 (save-excursion | |
1758 (set-buffer (process-buffer proc)) | |
1759 (while (memq (process-status proc) '(run open)) | |
1760 (accept-process-output proc)) | |
1761 (goto-char (point-min)) | |
1762 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1763 (setq res (buffer-substring (match-beginning 1) | |
1764 (match-end 1)))) | |
1765 (kill-buffer (current-buffer))) | |
1766 res) | |
1767 host)) | |
1768 | |
1769 (defun ange-ftp-start-process (host user name) | |
1770 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1771 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1772 on the gateway machine to do the ftp instead." | |
1773 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1774 (use-smart-ftp (and (not ange-ftp-gateway-host) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1775 (ange-ftp-use-smart-gateway-p host))) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1776 (ftp-prog (if (or use-gateway |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1777 use-smart-ftp) |
1106 | 1778 ange-ftp-gateway-ftp-program-name |
1779 ange-ftp-ftp-program-name)) | |
1780 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
7418
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1781 ;; Without the following binding, ange-ftp-start-process |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1782 ;; recurses on file-accessible-directory-p, since it needs to |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1783 ;; restart its process in order to determine anything about |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1784 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1785 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1786 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1787 (if (file-accessible-directory-p default-directory) |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1788 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1789 exec-directory)) |
1106 | 1790 proc) |
7042 | 1791 ;; It would be nice to make process-connection-type nil, |
1792 ;; but that doesn't work: ftp never responds. | |
1793 ;; Can anyone find a fix for that? | |
1794 (let ((process-connection-type t)) | |
1795 (if use-gateway | |
1796 (if ange-ftp-gateway-program-interactive | |
1797 (setq proc (ange-ftp-gwp-start host user name args)) | |
1798 (setq proc (apply 'start-process name name | |
1799 (append (list ange-ftp-gateway-program | |
1800 ange-ftp-gateway-host) | |
1801 args)))) | |
1802 (setq proc (apply 'start-process name name args)))) | |
1106 | 1803 (process-kill-without-query proc) |
1804 (save-excursion | |
1805 (set-buffer (process-buffer proc)) | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1806 (internal-ange-ftp-mode)) |
1106 | 1807 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1808 (set-process-filter proc (function ange-ftp-process-filter)) | |
1809 (accept-process-output proc) ;wait for ftp startup message | |
1810 proc)) | |
1811 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1812 (defun internal-ange-ftp-mode () |
7113
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1813 "Major mode for interacting with the FTP process. |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1814 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1815 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1816 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1817 (comint-mode) |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1818 (setq major-mode 'internal-ange-ftp-mode) |
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1819 (setq mode-name "Internal Ange-ftp") |
1106 | 1820 (let ((proc (get-buffer-process (current-buffer)))) |
1821 (goto-char (point-max)) | |
1822 (set-marker (process-mark proc) (point)) | |
1823 (make-local-variable 'ange-ftp-process-string) | |
1824 (setq ange-ftp-process-string "") | |
1825 (make-local-variable 'ange-ftp-process-busy) | |
1826 (make-local-variable 'ange-ftp-process-result) | |
1827 (make-local-variable 'ange-ftp-process-msg) | |
1828 (make-local-variable 'ange-ftp-process-multi-skip) | |
1829 (make-local-variable 'ange-ftp-process-result-line) | |
1830 (make-local-variable 'ange-ftp-process-continue) | |
1831 (make-local-variable 'ange-ftp-hash-mark-count) | |
1832 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1833 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1834 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1835 (make-local-variable 'ange-ftp-xfer-size) | |
1836 (make-local-variable 'ange-ftp-last-percent) | |
1837 (setq ange-ftp-hash-mark-count 0) | |
1838 (setq ange-ftp-xfer-size 0) | |
7113
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1839 (setq ange-ftp-process-result-line "") |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1840 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1841 (setq comint-prompt-regexp "^ftp> ") |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1842 (make-local-variable 'paragraph-start) |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1843 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1844 |
1845 (defun ange-ftp-smart-login (host user pass account proc) | |
1846 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1847 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1848 host specified in ``ange-ftp-gateway-host''." | |
1849 (let ((result (ange-ftp-raw-send-cmd | |
1850 proc | |
1851 (format "open %s %s" | |
1852 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1853 ange-ftp-smart-gateway-port) | |
1854 (format "Opening FTP connection to %s via %s" | |
1855 host | |
1856 ange-ftp-gateway-host)))) | |
1857 (or (car result) | |
1858 (ange-ftp-error host user | |
1859 (concat "OPEN request failed: " | |
1860 (cdr result)))) | |
1861 (setq result (ange-ftp-raw-send-cmd | |
1862 proc (format "user \"%s\"@%s %s %s" | |
1863 user | |
1864 (ange-ftp-nslookup-host host) | |
1865 pass | |
1866 account) | |
1867 (format "Logging in as user %s@%s" | |
1868 user host))) | |
1869 (or (car result) | |
1870 (progn | |
1871 (ange-ftp-set-passwd host user nil) ; reset password | |
1872 (ange-ftp-set-account host user nil) ; reset account | |
1873 (ange-ftp-error host user | |
1874 (concat "USER request failed: " | |
1875 (cdr result))))))) | |
1876 | |
1877 (defun ange-ftp-normal-login (host user pass account proc) | |
1878 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1879 PROC is the process to the FTP-client." | |
1880 (let ((result (ange-ftp-raw-send-cmd | |
1881 proc | |
1882 (format "open %s" (ange-ftp-nslookup-host host)) | |
1883 (format "Opening FTP connection to %s" host)))) | |
1884 (or (car result) | |
1885 (ange-ftp-error host user | |
1886 (concat "OPEN request failed: " | |
1887 (cdr result)))) | |
1888 (setq result (ange-ftp-raw-send-cmd | |
1889 proc | |
1890 (format "user \"%s\" %s %s" user pass account) | |
1891 (format "Logging in as user %s@%s" user host))) | |
1892 (or (car result) | |
1893 (progn | |
1894 (ange-ftp-set-passwd host user nil) ;reset password. | |
1895 (ange-ftp-set-account host user nil) ;reset account. | |
1896 (ange-ftp-error host user | |
1897 (concat "USER request failed: " | |
1898 (cdr result))))))) | |
1899 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1900 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1901 (defvar ange-ftp-hash-mark-msgs |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1902 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1903 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1904 | |
1905 (defun ange-ftp-guess-hash-mark-size (proc) | |
1906 (if ange-ftp-send-hash | |
1907 (save-excursion | |
1908 (set-buffer (process-buffer proc)) | |
1909 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1910 (result (car status)) | |
1911 (line (cdr status))) | |
1912 (ange-ftp-save-match-data | |
1913 (if (string-match ange-ftp-hash-mark-msgs line) | |
1914 (let ((size (string-to-int | |
1915 (substring line | |
1916 (match-beginning 1) | |
1917 (match-end 1))))) | |
1918 (setq ange-ftp-ascii-hash-mark-size size | |
1919 ange-ftp-hash-mark-unit (ash size -4)) | |
1920 | |
1921 ;; if a default value for this is set, use that value. | |
1922 (or ange-ftp-binary-hash-mark-size | |
1923 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1924 | |
1925 (defun ange-ftp-get-process (host user) | |
7042 | 1926 "Return an FTP subprocess connected to HOST and logged in as USER. |
1927 Create a new process if needed." | |
1106 | 1928 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
1929 (proc (get-process name))) | |
1930 (if (and proc (memq (process-status proc) '(run open))) | |
1931 proc | |
1932 (let ((pass (ange-ftp-quote-string | |
1933 (ange-ftp-get-passwd host user))) | |
1934 (account (ange-ftp-quote-string | |
1935 (ange-ftp-get-account host user)))) | |
1936 ;; grab a suitable process. | |
1937 (setq proc (ange-ftp-start-process host user name)) | |
1938 | |
1939 ;; login to FTP server. | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1940 (if (and (ange-ftp-use-smart-gateway-p host) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1941 ange-ftp-gateway-host) |
1106 | 1942 (ange-ftp-smart-login host user pass account proc) |
1943 (ange-ftp-normal-login host user pass account proc)) | |
1944 | |
1945 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1946 ;; fatal if this command fails. | |
1947 (ange-ftp-guess-hash-mark-size proc) | |
1948 | |
1949 ;; Guess at the host type. | |
1950 (ange-ftp-guess-host-type host user) | |
1951 | |
1952 ;; Run any user-specified hooks. Note that proc, host and user are | |
1953 ;; dynamically bound at this point. | |
1954 (run-hooks 'ange-ftp-process-startup-hook)) | |
1955 proc))) | |
1956 | |
1957 ;; Variables for caching host and host-type | |
1958 (defvar ange-ftp-host-cache nil) | |
1959 (defvar ange-ftp-host-type-cache nil) | |
1960 | |
1961 ;; If ange-ftp-host-type is called with the optional user | |
1962 ;; argument, it will attempt to guess the host type by connecting | |
1963 ;; as user, if necessary. For efficiency, I have tried to give this | |
1964 ;; optional second argument only when necessary. Have I missed any calls | |
1965 ;; to ange-ftp-host-type where it should have been supplied? | |
1966 | |
1967 (defun ange-ftp-host-type (host &optional user) | |
1968 "Return a symbol which represents the type of the HOST given. | |
1969 If the optional argument USER is given, attempts to guess the | |
1970 host-type by logging in as USER." | |
1971 (if (eq host ange-ftp-host-cache) | |
1972 ange-ftp-host-type-cache | |
1973 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
1974 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
1975 ange-ftp-host-type-cache | |
1976 (setq ange-ftp-host-cache host | |
1977 ange-ftp-host-type-cache | |
1978 (cond ((ange-ftp-dumb-unix-host host) | |
1979 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1980 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1981 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1982 ;; 'vos) |
1106 | 1983 ((and (fboundp 'ange-ftp-vms-host) |
1984 (ange-ftp-vms-host host)) | |
1985 'vms) | |
1986 ((and (fboundp 'ange-ftp-mts-host) | |
1987 (ange-ftp-mts-host host)) | |
1988 'mts) | |
1989 ((and (fboundp 'ange-ftp-cms-host) | |
1990 (ange-ftp-cms-host host)) | |
1991 'cms) | |
1992 (t | |
1993 'unix)))))) | |
1994 | |
1995 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
1996 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
1997 ;; without sacrificing speed. Also, having separate variables | |
1998 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
1999 ;; set an alist to indicate that a host is of a given type. Even with | |
2000 ;; automatic host type recognition, setting a regexp is still a good idea | |
2001 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2002 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2003 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2004 "Alist saying how to convert file name to the host's syntax. |
2005 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2006 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2007 TYPE.") |
2008 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2009 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2010 "Alist saying how to convert directory name to the host's syntax. |
2011 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2012 which can change UNIX directory name into a directory name more suitable |
1106 | 2013 for a host of type TYPE.") |
2014 | |
2015 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2016 ;; *** is only 1 host type that can take ls-style listing options. | |
2017 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2018 "List of host types that can't take UNIX ls-style listing options.") | |
2019 | |
2020 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2021 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2022 MSG is an optional status message to be output before and after issuing the | |
2023 command. | |
2024 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2025 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2026 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2027 ;; capability. |
2028 (let ((cmd0 (car cmd)) | |
2029 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2030 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2031 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2032 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2033 cmd2 cmd3 host-type fix-name-func) |
1106 | 2034 |
2035 (cond | |
2036 | |
2037 ;; pwd case (We don't care what host-type.) | |
2038 ((null cmd1)) | |
2039 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2040 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2041 ((progn |
2042 (setq cmd2 (nth 2 cmd) | |
2043 host-type (ange-ftp-host-type host user)) | |
2044 ;; This will trigger an FTP login, if one doesn't exist | |
2045 (eq cmd0 'dir)) | |
2046 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2047 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2048 'identity) |
2049 cmd1) | |
2050 cmd3 (nth 3 cmd)) | |
2051 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2052 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2053 ;; be happy.) | |
2054 (and (eq host-type 'unix) | |
2055 (string-match "/$" cmd1) | |
2056 (not (string-match "R" cmd3)) | |
2057 (setq cmd1 (concat cmd1 "."))) | |
2058 ;; If the remote ls can take switches, put them in | |
2059 (or (memq host-type ange-ftp-dumb-host-types) | |
2060 (setq cmd0 'ls | |
2061 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2062 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2063 ;; First argument is the remote name |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2064 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2065 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2066 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2067 'identity)) |
1106 | 2068 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2069 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2070 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2071 ;; Second argument is the remote name |
1106 | 2072 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2073 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2074 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2075 ;; Both arguments are remote names |
1106 | 2076 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2077 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2078 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2079 |
2080 ;; Turn the command into one long string | |
2081 (setq cmd0 (symbol-name cmd0)) | |
2082 (setq cmd (concat cmd0 | |
2083 (and cmd1 (concat " " cmd1)) | |
2084 (and cmd2 (concat " " cmd2)))) | |
2085 | |
2086 ;; Actually send the resulting command. | |
2087 (let (afsc-result | |
2088 afsc-line) | |
2089 (ange-ftp-raw-send-cmd | |
2090 (ange-ftp-get-process host user) | |
2091 cmd | |
2092 msg | |
2093 (list | |
2094 (function (lambda (result line host user | |
2095 cmd msg cont nowait) | |
2096 (or cont | |
2097 (setq afsc-result result | |
2098 afsc-line line)) | |
2099 (if result | |
2100 (ange-ftp-call-cont cont result line) | |
2101 (ange-ftp-raw-send-cmd | |
2102 (ange-ftp-get-process host user) | |
2103 cmd | |
2104 msg | |
2105 (list | |
2106 (function (lambda (result line cont) | |
2107 (or cont | |
2108 (setq afsc-result result | |
2109 afsc-line line)) | |
2110 (ange-ftp-call-cont cont result line))) | |
2111 cont) | |
2112 nowait)))) | |
2113 host user cmd msg cont nowait) | |
2114 nowait) | |
2115 | |
2116 (if nowait | |
2117 nil | |
2118 (if cont | |
2119 nil | |
2120 (cons afsc-result afsc-line)))))) | |
2121 | |
2122 ;; It might be nice to message users about the host type identified, | |
2123 ;; but there is so much other messaging going on, it would not be | |
2124 ;; seen. No point in slowing things down just so users can read | |
2125 ;; a host type message. | |
2126 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2127 (defconst ange-ftp-cms-name-template |
1106 | 2128 (concat |
2129 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2130 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2131 (defconst ange-ftp-vms-name-template |
1106 | 2132 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2133 (defconst ange-ftp-mts-name-template |
1106 | 2134 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2135 | |
2136 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2137 "Guess at the the host type of HOST. |
2138 Works by doing a pwd and examining the directory syntax." | |
1106 | 2139 (let ((host-type (ange-ftp-host-type host)) |
2140 (key (concat host "/" user "/~"))) | |
2141 (if (eq host-type 'unix) | |
2142 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2143 (ange-ftp-save-match-data | |
2144 (let* ((result (ange-ftp-get-pwd host user)) | |
2145 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2146 fix-name-func) |
1106 | 2147 (cond ((null dir) |
2148 (message "Warning! Unable to get home directory") | |
2149 (sit-for 1) | |
2150 (if (string-match | |
2151 "^450 No current working directory defined$" | |
2152 (cdr result)) | |
2153 | |
2154 ;; We'll assume that if pwd bombs with this | |
2155 ;; error message, then it's CMS. | |
2156 (progn | |
2157 (ange-ftp-add-cms-host host) | |
2158 (setq ange-ftp-host-cache host | |
2159 ange-ftp-host-type-cache 'cms)))) | |
2160 | |
2161 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2162 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2163 (ange-ftp-add-vms-host host) |
2164 ;; The add-host functions clear the host type cache. | |
2165 ;; Therefore, need to set the cache afterwards. | |
2166 (setq ange-ftp-host-cache host | |
2167 ange-ftp-host-type-cache 'vms)) | |
2168 | |
2169 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2170 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2171 (ange-ftp-add-mts-host host) |
2172 (setq ange-ftp-host-cache host | |
2173 ange-ftp-host-type-cache 'mts)) | |
2174 | |
2175 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2176 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2177 (ange-ftp-add-cms-host host) |
2178 (setq ange-ftp-host-cache host | |
2179 ange-ftp-host-type-cache 'cms)) | |
2180 | |
2181 ;; assume UN*X | |
2182 (t | |
2183 (setq ange-ftp-host-cache host | |
2184 ange-ftp-host-type-cache 'unix))) | |
2185 | |
2186 ;; Now that we have done a pwd, might as well put it in | |
2187 ;; the expand-dir hashtable. | |
2188 (let ((ange-ftp-this-user user) | |
2189 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2190 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2191 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2192 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2193 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2194 (ange-ftp-put-hash-entry key dir |
2195 ange-ftp-expand-dir-hashtable)))) | |
2196 | |
2197 ;; In the special case of CMS make sure that know the | |
2198 ;; expansion of the home minidisk now, because we will | |
2199 ;; be doing a lot of cd's. | |
2200 (if (and (eq host-type 'cms) | |
2201 (not (ange-ftp-hash-entry-exists-p | |
2202 key ange-ftp-expand-dir-hashtable))) | |
2203 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2204 (if dir | |
2205 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2206 ange-ftp-expand-dir-hashtable) | |
2207 (message "Warning! Unable to get home directory") | |
2208 (sit-for 1)))))) | |
2209 | |
2210 | |
2211 ;;;; ------------------------------------------------------------ | |
2212 ;;;; Remote file and directory listing support. | |
2213 ;;;; ------------------------------------------------------------ | |
2214 | |
7042 | 2215 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2216 ;; to take switch arguments. | |
1106 | 2217 (defun ange-ftp-dumb-unix-host (host) |
2218 (and ange-ftp-dumb-unix-host-regexp | |
2219 (ange-ftp-save-match-data | |
2220 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
2221 | |
2222 (defun ange-ftp-add-dumb-unix-host (host) | |
2223 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2224 (interactive | |
2225 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2226 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2227 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2228 (if (not (ange-ftp-dumb-unix-host host)) |
2229 (setq ange-ftp-dumb-unix-host-regexp | |
2230 (concat "^" (regexp-quote host) "$" | |
2231 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2232 ange-ftp-dumb-unix-host-regexp) | |
2233 ange-ftp-host-cache nil))) | |
2234 | |
2235 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2236 "Alist saying how to parse directory listings for certain OS types. |
2237 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2238 which can parse the output from a DIR listing for a host of type TYPE.") |
2239 | |
2240 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2241 ;; an error if file is not an ange-ftp-name |
1106 | 2242 ;; (This should never happen.) |
2243 ;; an error if either the listing is unreadable or there is an ftp error. | |
2244 ;; the listing (a string), if everything works. | |
2245 ;; | |
2246 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2247 ;; an error if not an ange-ftp-name |
1106 | 2248 ;; error if listing is unreable (most likely caused by a slow connection) |
2249 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2250 ;; directory on a remote unix machine usually (except | |
2251 ;; maybe for dumb hosts) returns an ls error, but no | |
2252 ;; ftp error, if the same is done on a VMS machine, | |
2253 ;; an ftp error is returned. Need to trap the error | |
2254 ;; so we can go on and try to list the parent.) | |
2255 ;; the listing, if everything works. | |
2256 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2257 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2258 ;; in the wildcard case. Then we make a relative directory listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2259 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2260 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2261 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2262 "Return the output of an `DIR' or `ls' command done over ftp. |
2263 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2264 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2265 away in the internal cache." | |
2266 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2267 ;; full directory listings. | |
2268 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2269 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2270 (if parsed |
2271 (let* ((host (nth 0 parsed)) | |
2272 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2273 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2274 (key (directory-file-name ange-ftp-this-file)) |
2275 (host-type (ange-ftp-host-type host user)) | |
2276 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2277 result | |
2278 temp | |
2279 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2280 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2281 (setq name |
1106 | 2282 (ange-ftp-real-file-name-as-directory |
2283 (ange-ftp-expand-dir host user "~")))) | |
2284 (if (and ange-ftp-ls-cache-file | |
2285 (string-equal key ange-ftp-ls-cache-file) | |
2286 ;; Don't care about lsargs for dumb hosts. | |
2287 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2288 ange-ftp-ls-cache-res | |
2289 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2290 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2291 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2292 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2293 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2294 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2295 (unwind-protect |
2296 (if (car (setq result (ange-ftp-send-cmd | |
2297 host | |
2298 user | |
2299 lscmd | |
2300 (format "Listing %s" | |
2301 (ange-ftp-abbreviate-filename | |
2302 ange-ftp-this-file))))) | |
2303 (save-excursion | |
2304 (set-buffer (get-buffer-create | |
2305 ange-ftp-data-buffer-name)) | |
2306 (erase-buffer) | |
2307 (if (ange-ftp-real-file-readable-p temp) | |
2308 (ange-ftp-real-insert-file-contents temp) | |
2309 (sleep-for ange-ftp-retry-time) | |
2310 ;wait for file to possibly appear | |
2311 (if (ange-ftp-real-file-readable-p temp) | |
2312 ;; Try again. | |
2313 (ange-ftp-real-insert-file-contents temp) | |
2314 (ange-ftp-error host user | |
2315 (format | |
2316 "list data file %s not readable" | |
2317 temp)))) | |
2318 (if parse | |
2319 (ange-ftp-set-files | |
2320 ange-ftp-this-file | |
2321 (if (setq | |
2322 parse-func | |
2323 (cdr (assq host-type | |
2324 ange-ftp-parse-list-func-alist))) | |
2325 (funcall parse-func) | |
2326 (ange-ftp-parse-dired-listing lsargs)))) | |
2327 (setq ange-ftp-ls-cache-file key | |
2328 ange-ftp-ls-cache-lsargs lsargs | |
2329 ; For dumb hosts-types this is | |
2330 ; meaningless but harmless. | |
2331 ange-ftp-ls-cache-res (buffer-string)) | |
2332 ;; (kill-buffer (current-buffer)) | |
2333 ange-ftp-ls-cache-res) | |
2334 (if no-error | |
2335 nil | |
2336 (ange-ftp-error host user | |
2337 (concat "DIR failed: " (cdr result))))) | |
2338 (ange-ftp-del-tmp-name temp)))) | |
2339 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2340 | |
2341 ;;;; ------------------------------------------------------------ | |
2342 ;;;; Directory information caching support. | |
2343 ;;;; ------------------------------------------------------------ | |
2344 | |
2345 (defconst ange-ftp-date-regexp | |
2346 (concat | |
2347 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2348 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2349 | |
2350 (defvar ange-ftp-add-file-entry-alist nil | |
7043
acf840ff5c1c
(ange-ftp-add-file-entry-alist): Fix typo in prev change.
Richard M. Stallman <rms@gnu.org>
parents:
7042
diff
changeset
|
2351 "Alist saying how to add file entries on certain OS types. |
7042 | 2352 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2353 is a function to be used to add a file entry for the OS TYPE. The |
2354 main reason for this alist is to deal with file versions in VMS.") | |
2355 | |
2356 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2357 "Alist saying how to delete files on certain OS types. |
2358 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2359 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2360 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2361 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2362 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2363 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2364 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2365 (car (ange-ftp-ftp-name name))) |
1106 | 2366 ange-ftp-add-file-entry-alist)) |
2367 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2368 name dir-p) |
1106 | 2369 (setq ange-ftp-ls-cache-file nil)) |
2370 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2371 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2372 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2373 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2374 (car (ange-ftp-ftp-name name))) |
1106 | 2375 ange-ftp-delete-file-entry-alist)) |
2376 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2377 name dir-p) |
1106 | 2378 (setq ange-ftp-ls-cache-file nil)) |
2379 | |
2380 (defmacro ange-ftp-parse-filename () | |
2381 ;;Extract the filename from the current line of a dired-like listing. | |
2382 (` (let ((eol (progn (end-of-line) (point)))) | |
2383 (beginning-of-line) | |
2384 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2385 (progn | |
2386 (skip-chars-forward " ") | |
2387 (skip-chars-forward "^ " eol) | |
2388 (skip-chars-forward " " eol) | |
2389 ;; We bomb on filenames starting with a space. | |
2390 (buffer-substring (point) eol)))))) | |
2391 | |
2392 ;; This deals with the F switch. Should also do something about | |
2393 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2394 ;; switch. See Sebastian's dired-get-filename. | |
2395 | |
2396 (defmacro ange-ftp-ls-parser () | |
2397 ;; Note that switches is dynamically bound. | |
2398 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2399 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2400 (used-F (and (stringp switches) | |
2401 (string-match "F" switches))) | |
2402 file-type symlink directory file) | |
2403 (while (setq file (ange-ftp-parse-filename)) | |
2404 (beginning-of-line) | |
2405 (skip-chars-forward "\t 0-9") | |
2406 (setq file-type (following-char) | |
2407 directory (eq file-type ?d)) | |
2408 (if (eq file-type ?l) | |
2409 (if (string-match " -> " file) | |
2410 (setq symlink (substring file (match-end 0)) | |
2411 file (substring file 0 (match-beginning 0))) | |
2412 ;; Shouldn't happen | |
2413 (setq symlink "")) | |
2414 (setq symlink nil)) | |
2415 ;; Only do a costly regexp search if the F switch was used. | |
2416 (if (and used-F | |
2417 (not (string-equal file "")) | |
2418 (looking-at | |
2419 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2420 (let ((socket (eq file-type ?s)) | |
2421 (executable | |
2422 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2423 (string-match "[xst]" | |
2424 (concat | |
2425 (buffer-substring | |
2426 (match-beginning 1) | |
2427 (match-end 1)) | |
2428 (buffer-substring | |
2429 (match-beginning 2) | |
2430 (match-end 2)) | |
2431 (buffer-substring | |
2432 (match-beginning 3) | |
2433 (match-end 3))))))) | |
2434 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2435 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2436 ;; seem to believe in the F-switch | |
2437 (if (or (and symlink (string-match "@$" file)) | |
2438 (and directory (string-match "/$" file)) | |
2439 (and executable (string-match "*$" file)) | |
2440 (and socket (string-match "=$" file))) | |
2441 (setq file (substring file 0 -1))))) | |
2442 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2443 (forward-line 1)) | |
2444 (ange-ftp-put-hash-entry "." t tbl) | |
2445 (ange-ftp-put-hash-entry ".." t tbl) | |
2446 tbl))) | |
2447 | |
2448 ;;; The dl stuff for descriptive listings | |
2449 | |
2450 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2451 "Regexp matching directories which are listed in dl format. |
2452 This regexp should not be anchored with a trailing `$', because it should | |
2453 match subdirectories as well.") | |
1106 | 2454 |
2455 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2456 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2457 (interactive |
2458 (list (read-string "Directory: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2459 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2460 (and name (ange-ftp-ftp-name name) |
1106 | 2461 (file-name-directory name)))))) |
2462 (if (not (and ange-ftp-dl-dir-regexp | |
2463 (string-match ange-ftp-dl-dir-regexp dir))) | |
2464 (setq ange-ftp-dl-dir-regexp | |
2465 (concat "^" (regexp-quote dir) | |
2466 (and ange-ftp-dl-dir-regexp "\\|") | |
2467 ange-ftp-dl-dir-regexp)))) | |
2468 | |
2469 (defmacro ange-ftp-dl-parser () | |
2470 ;; Parse the current buffer, which is assumed to be a descriptive | |
2471 ;; listing, and return a hashtable. | |
2472 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2473 (while (not (eobp)) | |
2474 (ange-ftp-put-hash-entry | |
2475 (buffer-substring (point) | |
2476 (progn | |
2477 (skip-chars-forward "^ /\n") | |
2478 (point))) | |
2479 (eq (following-char) ?/) | |
2480 tbl) | |
2481 (forward-line 1)) | |
2482 (ange-ftp-put-hash-entry "." t tbl) | |
2483 (ange-ftp-put-hash-entry ".." t tbl) | |
2484 tbl))) | |
2485 | |
7042 | 2486 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2487 ;; format, and return a hashtable as the result. If the listing is not really | |
2488 ;; a listing, then return nil. | |
2489 | |
1106 | 2490 (defun ange-ftp-parse-dired-listing (&optional switches) |
2491 (ange-ftp-save-match-data | |
2492 (cond | |
2493 ((looking-at "^total [0-9]+$") | |
2494 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2495 ;; Some systems put in a blank line here. |
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2496 (if (eolp) (forward-line 1)) |
1106 | 2497 (ange-ftp-ls-parser)) |
2498 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2499 ;; It's an ls error message. | |
2500 nil) | |
2501 ((eobp) ; i.e. (zerop (buffer-size)) | |
2502 ;; This could be one of: | |
2503 ;; (1) An Ultrix ls error message | |
2504 ;; (2) A listing with the A switch of an empty directory | |
2505 ;; on a machine which doesn't give a total line. | |
2506 ;; (3) The twilight zone. | |
2507 ;; We'll assume (1) for now. | |
2508 nil) | |
2509 ((re-search-forward ange-ftp-date-regexp nil t) | |
2510 (beginning-of-line) | |
2511 (ange-ftp-ls-parser)) | |
2512 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2513 ;; It's a dl listing (I hope). | |
2514 ;; file is bound by the call to ange-ftp-ls | |
2515 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2516 (beginning-of-line) | |
2517 (ange-ftp-dl-parser)) | |
2518 (t nil)))) | |
2519 | |
2520 (defun ange-ftp-set-files (directory files) | |
2521 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2522 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2523 files ange-ftp-files-hashtable))) | |
2524 | |
2525 (defun ange-ftp-get-files (directory &optional no-error) | |
2526 "Given a given DIRECTORY, return a hashtable of file entries. | |
2527 This will give an error or return nil, depending on the value of | |
2528 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2529 (setq directory (file-name-as-directory directory)) ;normalize | |
2530 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
2531 (ange-ftp-save-match-data | |
2532 (and (ange-ftp-ls directory | |
2533 ;; This is an efficiency hack. We try to | |
2534 ;; anticipate what sort of listing dired | |
2535 ;; might want, and cache just such a listing. | |
2536 (if (and (boundp 'dired-actual-switches) | |
2537 (stringp dired-actual-switches) | |
2538 ;; We allow the A switch, which lists | |
2539 ;; all files except "." and "..". | |
2540 ;; This is OK because we manually | |
2541 ;; insert these entries | |
2542 ;; in the hash table. | |
2543 (string-match | |
2544 "[aA]" dired-actual-switches) | |
2545 (string-match | |
2546 "l" dired-actual-switches) | |
2547 (not (string-match | |
2548 "R" dired-actual-switches))) | |
2549 dired-actual-switches | |
2550 (if (and (boundp 'dired-listing-switches) | |
2551 (stringp dired-listing-switches) | |
2552 (string-match | |
2553 "[aA]" dired-listing-switches) | |
2554 (string-match | |
2555 "l" dired-listing-switches) | |
2556 (not (string-match | |
2557 "R" dired-listing-switches))) | |
2558 dired-listing-switches | |
2559 "-al")) | |
2560 t no-error) | |
2561 (ange-ftp-get-hash-entry | |
2562 directory ange-ftp-files-hashtable))))) | |
2563 | |
7042 | 2564 ;; Given NAME, return the file part that can be used for looking up the |
2565 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2566 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2567 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2568 (if (string-equal file "") |
2569 "." | |
2570 file)))) | |
2571 | |
7042 | 2572 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2573 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2574 ;; rather than listing its parent directory. This is used for efficiency so | |
2575 ;; that a wasted listing is not done: | |
2576 ;; 1. When looking for a .dired file in dired-x.el. | |
2577 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2578 ;; subdirectory. This is of course an OS dependent judgement. | |
2579 | |
1106 | 2580 (defmacro ange-ftp-allow-child-lookup (dir file) |
2581 (` (not | |
2582 (let* ((efile (, file)) ; expand once. | |
2583 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2584 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2585 (host-type (ange-ftp-host-type |
2586 (car parsed)))) | |
2587 (or | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2588 ;;; This variable seems not to exist in Emacs 19 -- rms. |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2589 ;;; ;; Deal with dired |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2590 ;;; (and (boundp 'dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2591 ;;; (stringp dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2592 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2593 ;; No dots in dir names in vms. |
2594 (and (eq host-type 'vms) | |
2595 (string-match "\\." efile)) | |
2596 ;; No subdirs in mts of cms. | |
2597 (and (memq host-type '(mts cms)) | |
2598 (not (string-equal "/" (nth 2 parsed))))))))) | |
2599 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2600 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2601 "Given NAME, return whether there is a file entry for it." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2602 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2603 (dir (file-name-directory name)) |
1106 | 2604 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2605 (file (ange-ftp-get-file-part name))) |
1106 | 2606 (if ent |
2607 (ange-ftp-hash-entry-exists-p file ent) | |
2608 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2609 (setq ent (ange-ftp-get-files name t)) |
1106 | 2610 ;; Try a child lookup. i.e. try to list file as a |
2611 ;; subdirectory of dir. This is a good idea because | |
2612 ;; we may not have read permission for file's parent. Also, | |
2613 ;; people tend to work down directory trees anyway. We use | |
2614 ;; no-error ;; because if file does not exist as a subdir., | |
2615 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2616 ;; will simply send back the ls | |
2617 ;; error message. | |
2618 (ange-ftp-get-hash-entry "." ent)) | |
2619 ;; Child lookup failed. Try the parent. If this bombs, | |
2620 ;; we are at wits end -- signal an error. | |
2621 ;; Problem: If this signals an error, the error message | |
2622 ;; may not have a lot to do with what went wrong. | |
2623 (ange-ftp-hash-entry-exists-p file | |
2624 (ange-ftp-get-files dir)))))) | |
2625 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2626 (defun ange-ftp-get-file-entry (name) |
1233 | 2627 "Given NAME, return the given file entry. |
2628 The entry will be either t for a directory, nil for a normal file, | |
2629 or a string for a symlink. If the file isn't in the hashtable, | |
2630 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2631 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2632 (dir (file-name-directory name)) |
1106 | 2633 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2634 (file (ange-ftp-get-file-part name))) |
1106 | 2635 (if ent |
2636 (ange-ftp-get-hash-entry file ent) | |
2637 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2638 (setq ent (ange-ftp-get-files name t)) |
1106 | 2639 (ange-ftp-get-hash-entry "." ent)) |
2640 ;; i.e. it's a directory by child lookup | |
2641 (ange-ftp-get-hash-entry file | |
2642 (ange-ftp-get-files dir)))))) | |
2643 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2644 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2645 (if dir-p |
2646 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2647 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2648 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2649 (setq name (directory-file-name name)))) |
1106 | 2650 ;; Note that file-name-as-directory followed by directory-file-name |
2651 ;; serves to canonicalize directory file names to their unix form. | |
2652 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2653 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2654 ange-ftp-files-hashtable))) |
2655 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2656 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2657 files)))) |
2658 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2659 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2660 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2661 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2662 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2663 ange-ftp-files-hashtable))) |
2664 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2665 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2666 dir-p |
2667 files)))) | |
2668 | |
2669 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2670 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2671 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2672 (ange-ftp-map-hashtable | |
2673 (function | |
2674 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2675 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2676 (if parsed |
2677 (let ((h (nth 0 parsed)) | |
2678 (u (nth 1 parsed))) | |
2679 (or (and (equal host h) (equal user u)) | |
2680 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2681 ange-ftp-files-hashtable) | |
2682 (setq ange-ftp-files-hashtable new-tbl))) | |
2683 | |
2684 ;;;; ------------------------------------------------------------ | |
2685 ;;;; File transfer mode support. | |
2686 ;;;; ------------------------------------------------------------ | |
2687 | |
2688 (defun ange-ftp-set-binary-mode (host user) | |
2689 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2690 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2691 (if (not (car result)) | |
2692 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2693 (save-excursion | |
2694 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2695 (setq ange-ftp-hash-mark-unit (ash ange-ftp-binary-hash-mark-size -4)))))) | |
2696 | |
2697 (defun ange-ftp-set-ascii-mode (host user) | |
2698 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2699 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2700 (if (not (car result)) | |
2701 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2702 (save-excursion | |
2703 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2704 (setq ange-ftp-hash-mark-unit (ash ange-ftp-ascii-hash-mark-size -4)))))) | |
2705 | |
2706 (defun ange-ftp-cd (host user dir) | |
2707 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2708 (or (car result) | |
2709 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2710 | |
2711 (defun ange-ftp-get-pwd (host user) | |
2712 "Attempts to get the current working directory for the given HOST/USER pair. | |
2713 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2714 and LINE is the relevant success or fail line from the FTP-client." | |
2715 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2716 (line (cdr result)) | |
2717 dir) | |
2718 (if (car result) | |
2719 (ange-ftp-save-match-data | |
2720 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
2721 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2722 (setq dir (substring line | |
2723 (match-beginning 1) | |
2724 (match-end 1)))))) | |
2725 (cons dir line))) | |
2726 | |
2727 ;;; ------------------------------------------------------------ | |
2728 ;;; expand-file-name and friends...which currently don't work | |
2729 ;;; ------------------------------------------------------------ | |
2730 | |
2731 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2732 "Return the result of doing a PWD in the current FTP session. |
2733 Use the connection to machine HOST | |
1106 | 2734 logged in as user USER and cd'd to directory DIR." |
2735 (let* ((host-type (ange-ftp-host-type host user)) | |
2736 ;; It is more efficient to call ange-ftp-host-type | |
2737 ;; before binding res, because ange-ftp-host-type sometimes | |
2738 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2739 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2740 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2741 (key (concat host "/" user "/" dir)) |
2742 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2743 (or res | |
2744 (progn | |
2745 (or | |
2746 (string-equal user "anonymous") | |
2747 (string-equal user "ftp") | |
2748 (not (eq host-type 'unix)) | |
2749 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2750 "\\|" | |
2751 ange-ftp-good-msgs)) | |
2752 (result (ange-ftp-send-cmd host user | |
2753 (list 'get dir "/dev/null") | |
2754 (format "expanding %s" dir))) | |
2755 (line (cdr result))) | |
2756 (setq res | |
2757 (if (string-match ange-ftp-expand-dir-regexp line) | |
2758 (substring line | |
2759 (match-beginning 1) | |
2760 (match-end 1)))))) | |
2761 (or res | |
2762 (if (string-equal dir "~") | |
2763 (setq res (car (ange-ftp-get-pwd host user))) | |
2764 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2765 (unwind-protect | |
2766 (and (ange-ftp-cd host user dir) | |
2767 (setq res (car (ange-ftp-get-pwd host user)))) | |
2768 (ange-ftp-cd host user home))))) | |
2769 (if res | |
2770 (let ((ange-ftp-this-user user) | |
2771 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2772 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2773 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2774 (ange-ftp-put-hash-entry |
2775 key res ange-ftp-expand-dir-hashtable))) | |
2776 res)))) | |
2777 | |
2778 (defun ange-ftp-canonize-filename (n) | |
2779 "Take a string and short-circuit //, /. and /.." | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2780 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2781 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2782 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2783 (if parsed |
2784 (let ((host (car parsed)) | |
2785 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2786 (name (nth 2 parsed))) |
1106 | 2787 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2788 ;; See if remote name is absolute. If so then just expand it and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2789 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2790 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2791 name) |
1106 | 2792 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2793 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2794 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2795 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2796 (let* ((tilda (substring name |
1106 | 2797 (match-beginning 0) |
2798 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2799 (rest (substring name (match-end 0))) |
1106 | 2800 (dir (ange-ftp-expand-dir host user tilda))) |
2801 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2802 (setq name (concat dir rest)) |
1106 | 2803 (error "User \"%s\" is not known" |
2804 (substring tilda 1))))) | |
2805 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2806 ;; relative name. Tack on homedir and re-expand. |
1106 | 2807 (t |
2808 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2809 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2810 (setq name (concat |
1106 | 2811 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2812 name)) |
1106 | 2813 (error "Unable to obtain CWD"))))) |
2814 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2815 ;; If name starts with //, preserve that, for apollo system. |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2816 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2817 (progn |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2818 (setq name (ange-ftp-real-expand-file-name name)) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2819 |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2820 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2821 (setq name (substring name 1))))) |
1106 | 2822 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2824 (ange-ftp-replace-name-component n name)) |
1106 | 2825 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2826 ;; non-ange-ftp name. Just expand normally. |
1106 | 2827 (if (eq (string-to-char n) ?/) |
2828 (ange-ftp-real-expand-file-name n) | |
2829 (ange-ftp-real-expand-file-name | |
2830 (ange-ftp-real-file-name-nondirectory n) | |
2831 (ange-ftp-real-file-name-directory n)))))) | |
2832 | |
2833 (defun ange-ftp-expand-file-name (name &optional default) | |
2834 "Documented as original." | |
2835 (ange-ftp-save-match-data | |
2836 (if (eq (string-to-char name) ?/) | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2837 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users |
1106 | 2838 (setq name (substring name (1- (match-end 0))))) |
2839 ((string-match "/~" name) | |
2840 (setq name (substring name (1- (match-end 0)))))))) | |
2841 (cond ((eq (string-to-char name) ?~) | |
2842 (ange-ftp-real-expand-file-name name)) | |
2843 ((eq (string-to-char name) ?/) | |
2844 (ange-ftp-canonize-filename name)) | |
2845 ((zerop (length name)) | |
2846 (ange-ftp-canonize-filename (or default default-directory))) | |
2847 ((ange-ftp-canonize-filename | |
2848 (concat (file-name-as-directory (or default default-directory)) | |
2849 name)))))) | |
2850 | |
2851 ;;; These are problems--they are currently not enabled. | |
2852 | |
2853 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 2854 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 2855 FUNC converts a filename to a directory name for the operating |
2856 system TYPE.") | |
2857 | |
2858 (defun ange-ftp-file-name-as-directory (name) | |
2859 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2860 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2861 (if parsed |
2862 (if (string-equal (nth 2 parsed) "") | |
2863 name | |
2864 (funcall (or (cdr (assq | |
2865 (ange-ftp-host-type (car parsed)) | |
2866 ange-ftp-file-name-as-directory-alist)) | |
2867 'ange-ftp-real-file-name-as-directory) | |
2868 name)) | |
2869 (ange-ftp-real-file-name-as-directory name)))) | |
2870 | |
2871 (defun ange-ftp-file-name-directory (name) | |
2872 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2873 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2874 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2875 (let ((filename (nth 2 parsed))) |
1106 | 2876 (if (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2877 (string-match "^~[^/]*$" filename)) |
1106 | 2878 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2879 (ange-ftp-replace-name-component |
1106 | 2880 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2881 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2882 (ange-ftp-real-file-name-directory name)))) |
2883 | |
2884 (defun ange-ftp-file-name-nondirectory (name) | |
2885 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2886 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2887 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2888 (let ((filename (nth 2 parsed))) |
1106 | 2889 (if (ange-ftp-save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2890 (string-match "^~[^/]*$" filename)) |
1106 | 2891 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2892 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2893 (ange-ftp-real-file-name-nondirectory name)))) |
2894 | |
2895 (defun ange-ftp-directory-file-name (dir) | |
2896 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2897 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2898 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2899 (ange-ftp-replace-name-component |
1106 | 2900 dir |
2901 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2902 (ange-ftp-real-directory-file-name dir)))) | |
2903 | |
2904 | |
2905 ;;; Hooks that handle Emacs primitives. | |
2906 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2907 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2908 (defun ange-ftp-binary-file (file) |
2909 (ange-ftp-save-match-data | |
2910 (string-match ange-ftp-binary-file-name-regexp file))) | |
2911 | |
2912 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2913 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2914 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2915 (if parsed |
2916 (let* ((host (nth 0 parsed)) | |
2917 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2918 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2919 (temp (ange-ftp-make-tmp-name host)) |
2920 (binary (ange-ftp-binary-file filename)) | |
2921 (cmd (if append 'append 'put)) | |
2922 (abbr (ange-ftp-abbreviate-filename filename))) | |
2923 (unwind-protect | |
2924 (progn | |
2925 (let ((executing-macro t) | |
2926 (filename (buffer-file-name)) | |
2927 (mod-p (buffer-modified-p))) | |
2928 (unwind-protect | |
2929 (ange-ftp-real-write-region start end temp nil visit) | |
2930 ;; cleanup forms | |
2931 (setq buffer-file-name filename) | |
2932 (set-buffer-modified-p mod-p))) | |
2933 (if binary | |
2934 (ange-ftp-set-binary-mode host user)) | |
2935 | |
2936 ;; tell the process filter what size the transfer will be. | |
2937 (let ((attr (file-attributes temp))) | |
2938 (if attr | |
2939 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2940 | |
2941 ;; put or append the file. | |
2942 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2943 (list cmd temp name) |
1106 | 2944 (format "Writing %s" abbr)))) |
2945 (or (car result) | |
2946 (signal 'ftp-error | |
2947 (list | |
2948 "Opening output file" | |
2949 (format "FTP Error: \"%s\"" (cdr result)) | |
2950 filename))))) | |
2951 (ange-ftp-del-tmp-name temp) | |
2952 (if binary | |
2953 (ange-ftp-set-ascii-mode host user))) | |
2954 (if (eq visit t) | |
2955 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2956 (set-visited-file-modtime '(0 0)) |
1106 | 2957 (ange-ftp-set-buffer-mode) |
2958 (setq buffer-file-name filename) | |
2959 (set-buffer-modified-p nil))) | |
2960 (ange-ftp-message "Wrote %s" abbr) | |
2961 (ange-ftp-add-file-entry filename)) | |
2962 (ange-ftp-real-write-region start end filename append visit)))) | |
2963 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2964 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 2965 (barf-if-buffer-read-only) |
2966 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2967 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2968 (if parsed |
2969 (progn | |
2970 (if visit | |
2971 (setq buffer-file-name filename)) | |
2972 (if (or (file-exists-p filename) | |
2973 (progn | |
2974 (setq ange-ftp-ls-cache-file nil) | |
2975 (ange-ftp-del-hash-entry (file-name-directory filename) | |
2976 ange-ftp-files-hashtable) | |
2977 (file-exists-p filename))) | |
2978 (let* ((host (nth 0 parsed)) | |
2979 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2980 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2981 (temp (ange-ftp-make-tmp-name host)) |
2982 (binary (ange-ftp-binary-file filename)) | |
2983 (abbr (ange-ftp-abbreviate-filename filename)) | |
2984 size) | |
2985 (unwind-protect | |
2986 (progn | |
2987 (if binary | |
2988 (ange-ftp-set-binary-mode host user)) | |
2989 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2990 (list 'get name temp) |
1106 | 2991 (format "Retrieving %s" abbr)))) |
2992 (or (car result) | |
2993 (signal 'ftp-error | |
2994 (list | |
2995 "Opening input file" | |
2996 (format "FTP Error: \"%s\"" (cdr result)) | |
2997 filename)))) | |
2998 (if (or (ange-ftp-real-file-readable-p temp) | |
2999 (sleep-for ange-ftp-retry-time) | |
3000 ;; Wait for file to hopefully appear. | |
3001 (ange-ftp-real-file-readable-p temp)) | |
3002 (setq | |
3003 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3004 (nth 1 (ange-ftp-real-insert-file-contents |
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3005 temp visit beg end replace))) |
1106 | 3006 (signal 'ftp-error |
3007 (list | |
3008 "Opening input file:" | |
3009 (format | |
3010 "FTP Error: %s not arrived or readable" | |
3011 filename))))) | |
3012 (if binary | |
3013 (ange-ftp-set-ascii-mode host user)) | |
3014 (ange-ftp-del-tmp-name temp)) | |
3015 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3016 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3017 (set-visited-file-modtime '(0 0)) |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3018 (setq buffer-file-name filename))) |
1106 | 3019 (list filename size)) |
3020 (signal 'file-error | |
3021 (list | |
3022 "Opening input file" | |
3023 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3024 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3025 |
3026 (defun ange-ftp-expand-symlink (file dir) | |
3027 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3028 (ange-ftp-replace-name-component dir file) |
1106 | 3029 (expand-file-name file dir))) |
3030 | |
3031 (defun ange-ftp-file-symlink-p (file) | |
3032 ;; call ange-ftp-expand-file-name rather than the normal | |
3033 ;; expand-file-name to stop loops when using a package that | |
3034 ;; redefines both file-symlink-p and expand-file-name. | |
3035 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3036 (if (ange-ftp-ftp-name file) |
1106 | 3037 (let ((file-ent |
3038 (ange-ftp-get-hash-entry | |
3039 (ange-ftp-get-file-part file) | |
3040 (ange-ftp-get-files (file-name-directory file))))) | |
3041 (if (stringp file-ent) | |
3042 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3043 (ange-ftp-replace-name-component |
1106 | 3044 (file-name-directory file) file-ent) |
3045 file-ent))) | |
3046 (ange-ftp-real-file-symlink-p file))) | |
3047 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3048 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3049 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3050 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3051 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3052 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3053 (if (stringp file-ent) |
3054 (file-exists-p | |
3055 (ange-ftp-expand-symlink file-ent | |
3056 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3057 (directory-file-name name)))) |
1106 | 3058 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3059 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3060 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3061 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3062 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3063 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3064 ;; We do a file-name-as-directory on name here because some |
1106 | 3065 ;; machines (VMS) use a .DIR to indicate the filename associated |
3066 ;; with a directory. This needs to be canonicalized. | |
3067 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3068 (ange-ftp-file-name-as-directory name)))) |
1106 | 3069 (if (stringp file-ent) |
3070 (file-directory-p | |
3071 (ange-ftp-expand-symlink file-ent | |
3072 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3073 (directory-file-name name)))) |
1106 | 3074 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3075 (ange-ftp-real-file-directory-p name))) |
1106 | 3076 |
3077 (defun ange-ftp-directory-files (directory &optional full match | |
3078 &rest v19-args) | |
3079 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3080 (if (ange-ftp-ftp-name directory) |
1106 | 3081 (progn |
3082 (ange-ftp-barf-if-not-directory directory) | |
3083 (let ((tail (ange-ftp-hash-table-keys | |
3084 (ange-ftp-get-files directory))) | |
3085 files f) | |
3086 (setq directory (file-name-as-directory directory)) | |
3087 (ange-ftp-save-match-data | |
3088 (while tail | |
3089 (setq f (car tail) | |
3090 tail (cdr tail)) | |
3091 (if (or (not match) (string-match match f)) | |
3092 (setq files | |
3093 (cons (if full (concat directory f) f) files))))) | |
3094 (nreverse files))) | |
3095 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3096 | |
3097 (defun ange-ftp-file-attributes (file) | |
3098 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3099 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3100 (if parsed |
3101 (let ((part (ange-ftp-get-file-part file)) | |
3102 (files (ange-ftp-get-files (file-name-directory file)))) | |
3103 (if (ange-ftp-hash-entry-exists-p part files) | |
3104 (let ((host (nth 0 parsed)) | |
3105 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3106 (name (nth 2 parsed)) |
1106 | 3107 (dirp (ange-ftp-get-hash-entry part files))) |
3108 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3109 (ange-ftp-expand-symlink dirp | |
3110 (file-name-directory file)) | |
3111 dirp) ;0 file type | |
3112 -1 ;1 link count | |
3113 -1 ;2 uid | |
3114 -1 ;3 gid | |
3115 '(0 0) ;4 atime | |
3116 '(0 0) ;5 mtime | |
3117 '(0 0) ;6 ctime | |
3118 -1 ;7 size | |
3119 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3120 "?????????") ;8 mode | |
3121 nil ;9 gid weird | |
3122 ;; Hack to give remote files a unique "inode number". | |
3123 ;; It's actually the sum of the characters in its name. | |
3124 (apply '+ (nconc (mapcar 'identity host) | |
3125 (mapcar 'identity user) | |
3126 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3127 (directory-file-name name)))) |
1106 | 3128 -1 ;11 device number [v19 only] |
3129 )))) | |
3130 (ange-ftp-real-file-attributes file)))) | |
3131 | |
3132 (defun ange-ftp-file-writable-p (file) | |
3133 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3134 (if (ange-ftp-ftp-name file) |
1106 | 3135 (or (file-exists-p file) ;guess here for speed |
3136 (file-directory-p (file-name-directory file))) | |
3137 (ange-ftp-real-file-writable-p file))) | |
3138 | |
3139 (defun ange-ftp-file-readable-p (file) | |
3140 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3141 (if (ange-ftp-ftp-name file) |
1106 | 3142 (file-exists-p file) |
3143 (ange-ftp-real-file-readable-p file))) | |
3144 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3145 (defun ange-ftp-file-executable-p (file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3146 (setq file (expand-file-name file)) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3147 (if (ange-ftp-ftp-name file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3148 (file-exists-p file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3149 (ange-ftp-real-file-executable-p file))) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3150 |
1106 | 3151 (defun ange-ftp-delete-file (file) |
3152 (interactive "fDelete file: ") | |
3153 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3154 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3155 (if parsed |
3156 (let* ((host (nth 0 parsed)) | |
3157 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3158 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3159 (abbr (ange-ftp-abbreviate-filename file)) |
3160 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3161 (list 'delete name) |
1106 | 3162 (format "Deleting %s" abbr)))) |
3163 (or (car result) | |
3164 (signal 'ftp-error | |
3165 (list | |
3166 "Removing old name" | |
3167 (format "FTP Error: \"%s\"" (cdr result)) | |
3168 file))) | |
3169 (ange-ftp-delete-file-entry file)) | |
3170 (ange-ftp-real-delete-file file)))) | |
3171 | |
3172 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3173 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3174 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3175 t |
3176 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3177 | |
3178 ;;;; ------------------------------------------------------------ | |
3179 ;;;; File copying support... totally re-written 6/24/92. | |
3180 ;;;; ------------------------------------------------------------ | |
3181 | |
3182 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3183 (if (file-exists-p absname) | |
3184 (if (not interactive) | |
3185 (signal 'file-already-exists (list absname)) | |
3186 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3187 absname querystring))) | |
3188 (signal 'file-already-exists (list absname)))))) | |
3189 | |
3190 ;; async local copy commented out for now since I don't seem to get | |
3191 ;; the process sentinel called for some processes. | |
3192 ;; | |
3193 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3194 ;; keep-date cont) | |
3195 ;; "Kludge to copy a local file and call a continuation when the copy | |
3196 ;; finishes." | |
3197 ;; ;; check to see if we can overwrite | |
3198 ;; (if (or (not ok-if-already-exists) | |
3199 ;; (numberp ok-if-already-exists)) | |
3200 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3201 ;; (numberp ok-if-already-exists))) | |
3202 ;; (let ((proc (start-process " *copy*" | |
3203 ;; (generate-new-buffer "*copy*") | |
3204 ;; "cp" | |
3205 ;; filename | |
3206 ;; newname)) | |
3207 ;; res) | |
3208 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3209 ;; (process-kill-without-query proc) | |
3210 ;; (save-excursion | |
3211 ;; (set-buffer (process-buffer proc)) | |
3212 ;; (make-variable-buffer-local 'copy-cont) | |
3213 ;; (setq copy-cont cont)))) | |
3214 ;; | |
3215 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3216 ;; (save-excursion | |
3217 ;; (set-buffer (process-buffer proc)) | |
3218 ;; (let ((cont copy-cont) | |
3219 ;; (result (buffer-string))) | |
3220 ;; (unwind-protect | |
3221 ;; (if (and (string-equal status "finished\n") | |
3222 ;; (zerop (length result))) | |
3223 ;; (ange-ftp-call-cont cont t nil) | |
3224 ;; (ange-ftp-call-cont cont | |
3225 ;; nil | |
3226 ;; (if (zerop (length result)) | |
3227 ;; (substring status 0 -1) | |
3228 ;; (substring result 0 -1)))) | |
3229 ;; (kill-buffer (current-buffer)))))) | |
3230 | |
3231 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
3232 ;; asynchronously if asked nicely. |
1106 | 3233 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3234 keep-date &optional msg cont nowait) | |
3235 (setq filename (expand-file-name filename) | |
3236 newname (expand-file-name newname)) | |
3237 | |
3238 ;; canonicalize newname if a directory. | |
3239 (if (file-directory-p newname) | |
3240 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3241 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3242 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3243 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3244 |
3245 ;; local file to local file copy? | |
3246 (if (and (not f-parsed) (not t-parsed)) | |
3247 (progn | |
3248 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3249 keep-date) | |
3250 (if cont | |
3251 (ange-ftp-call-cont cont t "Copied locally"))) | |
3252 ;; one or both files are remote. | |
3253 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3254 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3255 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3256 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3257 (t-host (and t-parsed (nth 0 t-parsed))) | |
3258 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3259 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3260 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3261 (binary (or (ange-ftp-binary-file filename) | |
3262 (ange-ftp-binary-file newname))) | |
3263 temp1 | |
3264 temp2) | |
3265 | |
3266 ;; check to see if we can overwrite | |
3267 (if (or (not ok-if-already-exists) | |
3268 (numberp ok-if-already-exists)) | |
3269 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3270 (numberp ok-if-already-exists))) | |
3271 | |
3272 ;; do the copying. | |
3273 (if f-parsed | |
3274 | |
3275 ;; filename was remote. | |
3276 (progn | |
3277 (if (or (ange-ftp-use-gateway-p f-host) | |
3278 t-parsed) | |
3279 ;; have to use intermediate file if we are getting via | |
3280 ;; gateway machine or we are doing a remote to remote copy. | |
3281 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3282 | |
3283 (if binary | |
3284 (ange-ftp-set-binary-mode f-host f-user)) | |
3285 | |
3286 (ange-ftp-send-cmd | |
3287 f-host | |
3288 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3289 (list 'get f-name (or temp1 newname)) |
1106 | 3290 (or msg |
3291 (if (and temp1 t-parsed) | |
3292 (format "Getting %s" f-abbr) | |
3293 (format "Copying %s to %s" f-abbr t-abbr))) | |
3294 (list (function ange-ftp-cf1) | |
3295 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3296 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3297 t-parsed t-host t-user t-name t-abbr |
1106 | 3298 temp1 temp2 cont nowait) |
3299 nowait)) | |
3300 | |
3301 ;; filename wasn't remote. newname must be remote. call the | |
3302 ;; function which does the remainder of the copying work. | |
3303 (ange-ftp-cf1 t nil | |
3304 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3305 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3306 t-parsed t-host t-user t-name t-abbr |
1106 | 3307 nil nil cont nowait)))))) |
3308 | |
3309 ;; next part of copying routine. | |
3310 (defun ange-ftp-cf1 (result line | |
3311 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3312 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3313 t-parsed t-host t-user t-name t-abbr |
1106 | 3314 temp1 temp2 cont nowait) |
3315 (if line | |
3316 ;; filename must have been remote, and we must have just done a GET. | |
3317 (unwind-protect | |
3318 (or result | |
3319 ;; GET failed for some reason. Clean up and get out. | |
3320 (progn | |
3321 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3322 (or cont | |
3323 (signal 'ftp-error (list "Opening input file" | |
3324 (format "FTP Error: \"%s\"" line) | |
3325 filename))))) | |
3326 ;; cleanup | |
3327 (if binary | |
3328 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3329 | |
3330 (if result | |
3331 ;; We now have to copy either temp1 or filename to newname. | |
3332 (if t-parsed | |
3333 | |
3334 ;; newname was remote. | |
3335 (progn | |
3336 (if (ange-ftp-use-gateway-p t-host) | |
3337 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3338 | |
3339 ;; make sure data is moved into the right place for the | |
3340 ;; outgoing transfer. gateway temporary files complicate | |
3341 ;; things nicely. | |
3342 (if temp1 | |
3343 (if temp2 | |
3344 (if (string-equal temp1 temp2) | |
3345 (setq temp1 nil) | |
3346 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3347 (setq temp2 temp1 temp1 nil)) | |
3348 (if temp2 | |
3349 (ange-ftp-real-copy-file filename temp2 t))) | |
3350 | |
3351 (if binary | |
3352 (ange-ftp-set-binary-mode t-host t-user)) | |
3353 | |
3354 ;; tell the process filter what size the file is. | |
3355 (let ((attr (file-attributes (or temp2 filename)))) | |
3356 (if attr | |
3357 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3358 | |
3359 (ange-ftp-send-cmd | |
3360 t-host | |
3361 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3362 (list 'put (or temp2 filename) t-name) |
1106 | 3363 (or msg |
3364 (if (and temp2 f-parsed) | |
3365 (format "Putting %s" newname) | |
3366 (format "Copying %s to %s" f-abbr t-abbr))) | |
3367 (list (function ange-ftp-cf2) | |
3368 newname t-host t-user binary temp1 temp2 cont) | |
3369 nowait)) | |
3370 | |
3371 ;; newname wasn't remote. | |
3372 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3373 | |
3374 ;; first copy failed, tell caller | |
3375 (ange-ftp-call-cont cont result line))) | |
3376 | |
3377 ;; last part of copying routine. | |
3378 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3379 (unwind-protect | |
3380 (if line | |
3381 ;; result from doing a local to remote copy. | |
3382 (unwind-protect | |
3383 (progn | |
3384 (or result | |
3385 (or cont | |
3386 (signal 'ftp-error | |
3387 (list "Opening output file" | |
3388 (format "FTP Error: \"%s\"" line) | |
3389 newname)))) | |
3390 | |
3391 (ange-ftp-add-file-entry newname)) | |
3392 | |
3393 ;; cleanup. | |
3394 (if binary | |
3395 (ange-ftp-set-ascii-mode t-host t-user))) | |
3396 | |
3397 ;; newname was local. | |
3398 (if temp1 | |
3399 (ange-ftp-real-copy-file temp1 newname t))) | |
3400 | |
3401 ;; clean up | |
3402 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3403 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3404 (ange-ftp-call-cont cont result line))) | |
3405 | |
3406 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3407 keep-date) | |
3408 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3409 (ange-ftp-copy-file-internal filename | |
3410 newname | |
3411 ok-if-already-exists | |
3412 keep-date | |
3413 nil | |
3414 nil | |
3415 (interactive-p))) | |
3416 | |
3417 ;;;; ------------------------------------------------------------ | |
3418 ;;;; File renaming support. | |
3419 ;;;; ------------------------------------------------------------ | |
3420 | |
3421 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed | |
3422 binary) | |
3423 "Rename remote file FILE to remote file NEWNAME." | |
3424 (let ((f-host (nth 0 f-parsed)) | |
3425 (f-user (nth 1 f-parsed)) | |
3426 (t-host (nth 0 t-parsed)) | |
3427 (t-user (nth 1 t-parsed))) | |
3428 (if (and (string-equal f-host t-host) | |
3429 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3430 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3431 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3432 (cmd (list 'rename f-name t-name)) |
1106 | 3433 (fabbr (ange-ftp-abbreviate-filename filename)) |
3434 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3435 (result (ange-ftp-send-cmd f-host f-user cmd | |
3436 (format "Renaming %s to %s" | |
3437 fabbr | |
3438 nabbr)))) | |
3439 (or (car result) | |
3440 (signal 'ftp-error | |
3441 (list | |
3442 "Renaming" | |
3443 (format "FTP Error: \"%s\"" (cdr result)) | |
3444 filename | |
3445 newname))) | |
3446 (ange-ftp-add-file-entry newname) | |
3447 (ange-ftp-delete-file-entry filename)) | |
3448 (ange-ftp-copy-file-internal filename newname t nil) | |
3449 (delete-file filename)))) | |
3450 | |
3451 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3452 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3453 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3454 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3455 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3456 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3457 (let (ange-ftp-process-verbose) | |
3458 (delete-file filename)))) | |
3459 | |
3460 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3461 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3462 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3463 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3464 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3465 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3466 (let (ange-ftp-process-verbose) | |
3467 (delete-file filename)))) | |
3468 | |
3469 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3470 (interactive "fRename file: \nFRename %s to file: \np") | |
3471 (setq filename (expand-file-name filename)) | |
3472 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3473 (let* ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3474 (t-parsed (ange-ftp-ftp-name newname)) |
1106 | 3475 (binary (if (or f-parsed t-parsed) (ange-ftp-binary-file filename)))) |
3476 (if (and (or f-parsed t-parsed) | |
3477 (or (not ok-if-already-exists) | |
3478 (numberp ok-if-already-exists))) | |
3479 (ange-ftp-barf-or-query-if-file-exists | |
3480 newname | |
3481 "rename to it" | |
3482 (numberp ok-if-already-exists))) | |
3483 (if f-parsed | |
3484 (if t-parsed | |
3485 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3486 t-parsed binary) | |
3487 (ange-ftp-rename-remote-to-local filename newname)) | |
3488 (if t-parsed | |
3489 (ange-ftp-rename-local-to-remote filename newname) | |
3490 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3491 | |
3492 ;;;; ------------------------------------------------------------ | |
3493 ;;;; File name completion support. | |
3494 ;;;; ------------------------------------------------------------ | |
3495 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3496 ;; If the file entry SYM is a symlink, returns whether its file exists. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3497 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3498 (defun ange-ftp-file-entry-active-p (sym) |
3499 (let ((val (get sym 'val))) | |
3500 (or (not (stringp val)) | |
3501 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3502 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3503 ;; If the file entry is not a directory (nor a symlink pointing to a directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3504 ;; returns whether the file (or file pointed to by the symlink) is ignored |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3505 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3506 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3507 ;; are used as free variables. |
1106 | 3508 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3509 (let ((val (get sym 'val)) | |
3510 (symname (symbol-name sym))) | |
3511 (if (stringp val) | |
3512 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3513 (or (file-directory-p file) | |
3514 (and (file-exists-p file) | |
3515 (not (string-match ange-ftp-completion-ignored-pattern | |
3516 symname))))) | |
3517 (or val ; is a directory name | |
3518 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3519 | |
3520 (defun ange-ftp-file-name-all-completions (file dir) | |
3521 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3522 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3523 (progn |
3524 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3525 (setq ange-ftp-this-dir | |
3526 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3527 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3528 (completions | |
3529 (all-completions file tbl | |
3530 (function ange-ftp-file-entry-active-p)))) | |
3531 | |
3532 ;; see whether each matching file is a directory or not... | |
3533 (mapcar | |
3534 (function | |
3535 (lambda (file) | |
3536 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3537 (if (and ent | |
3538 (or (not (stringp ent)) | |
3539 (file-directory-p | |
3540 (ange-ftp-expand-symlink ent | |
3541 ange-ftp-this-dir)))) | |
3542 (concat file "/") | |
3543 file)))) | |
3544 completions))) | |
3545 | |
3546 (if (string-equal "/" ange-ftp-this-dir) | |
3547 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3548 (ange-ftp-real-file-name-all-completions file | |
3549 ange-ftp-this-dir)) | |
3550 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3551 | |
3552 (defun ange-ftp-file-name-completion (file dir) | |
3553 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3554 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3555 (progn |
3556 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3557 (if (equal file "") | |
3558 "" | |
3559 (setq ange-ftp-this-dir | |
3560 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3561 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3562 (ange-ftp-completion-ignored-pattern | |
3563 (mapconcat (function | |
3564 (lambda (s) (if (stringp s) | |
3565 (concat (regexp-quote s) "$") | |
3566 "/"))) ; / never in filename | |
3567 completion-ignored-extensions | |
3568 "\\|"))) | |
3569 (ange-ftp-save-match-data | |
3570 (or (ange-ftp-file-name-completion-1 | |
3571 file tbl ange-ftp-this-dir | |
3572 (function ange-ftp-file-entry-not-ignored-p)) | |
3573 (ange-ftp-file-name-completion-1 | |
3574 file tbl ange-ftp-this-dir | |
3575 (function ange-ftp-file-entry-active-p))))))) | |
3576 | |
3577 (if (string-equal "/" ange-ftp-this-dir) | |
3578 (try-completion | |
3579 file | |
3580 (nconc (ange-ftp-generate-root-prefixes) | |
3581 (mapcar 'list | |
3582 (ange-ftp-real-file-name-all-completions file "/")))) | |
3583 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3584 | |
3585 | |
3586 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3587 (let ((bestmatch (try-completion file tbl predicate))) | |
3588 (if bestmatch | |
3589 (if (eq bestmatch t) | |
3590 (if (file-directory-p (expand-file-name file dir)) | |
3591 (concat file "/") | |
3592 t) | |
3593 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3594 (file-directory-p | |
3595 (expand-file-name bestmatch dir))) | |
3596 (concat bestmatch "/") | |
3597 bestmatch))))) | |
3598 | |
3599 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3600 ;; ange-ftp's cache whilst doing filename completion. | |
3601 ;; | |
3602 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3603 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3604 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3605 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3606 ;; to the directory part of the contents of the current buffer. |
1106 | 3607 (defun ange-ftp-re-read-dir (&optional dir) |
3608 (interactive) | |
3609 (if dir | |
3610 (setq dir (expand-file-name dir)) | |
3611 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3612 (if (ange-ftp-ftp-name dir) |
1106 | 3613 (progn |
3614 (setq ange-ftp-ls-cache-file nil) | |
3615 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3616 (ange-ftp-get-files dir t)))) | |
3617 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3618 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3619 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3620 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3621 (let ((parent (file-name-directory (directory-file-name dir)))) |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3622 (or (file-exists-p parent) |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3623 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3624 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3625 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3626 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3627 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3628 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3629 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3630 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3631 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3632 ;; directory-name name as an arg. Argh!! This is a bug. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3633 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3634 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3635 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3636 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3637 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3638 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3639 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3640 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3641 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3642 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3643 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3644 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3645 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3646 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3647 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3648 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3649 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3650 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3651 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3652 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3653 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3654 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3655 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3657 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3658 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3659 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3660 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3661 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3662 ;; directory-name name as an arg. Argh!! This is a bug. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3663 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3664 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3665 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3666 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3667 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3668 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3669 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3670 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3672 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3673 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3674 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3675 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3677 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3678 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3679 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3685 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3686 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3687 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3688 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 (if pa1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 (let* ((tmp1 (ange-ftp-make-tmp-name (car pa1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 (bin1 (ange-ftp-binary-file fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3695 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3696 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3697 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3698 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3699 (if (ange-ftp-ftp-name file) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3700 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3701 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3702 (list (concat file ".elc") (concat file ".el") file))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3703 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3704 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3705 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3706 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3707 (ftp-error nil))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3708 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3709 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3710 (funcall 'load copy noerror nomessage nosuffix) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3711 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3712 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3713 (signal 'file-error (list "Cannot open load file" file))))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3714 (ange-ftp-real-load file noerror nomessage nosuffix))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3715 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3716 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3717 (defun ange-ftp-unhandled-file-name-directory (filename) |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3718 (file-name-directory ange-ftp-tmp-name-template)) |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3719 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3720 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 ;; files, because some OS's (unlike UNIX) do not allow a filename to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 "Alist of host-type-specific functions to process file names for compression. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3727 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3728 FUNC should take one argument, a file name, and return a list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3729 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3730 COMPRESSING should be t if the specified file should be compressed, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3731 and nil if it should be uncompressed (that is, if it is a compressed file). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3732 NEWNAME should be the name to give the new compressed or uncompressed file.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3733 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3734 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3735 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3736 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3737 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3738 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3739 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3740 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3741 (let* ((decision |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3742 (ange-ftp-save-match-data (funcall conversion-func name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3743 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3744 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3745 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3746 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3747 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3748 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3749 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3750 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3751 ;; Copy FILE to this machine, compress it, and copy out to NFILE. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3752 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3753 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3754 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3755 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3756 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3757 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3758 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3759 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3760 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3761 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3762 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3763 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3764 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3765 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3766 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3767 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3768 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3769 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3770 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3771 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3772 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3773 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3774 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3775 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3776 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3777 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3778 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3779 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3781 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3782 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3783 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3784 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3785 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3786 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3787 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3788 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3789 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3790 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3791 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3792 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3793 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3794 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3795 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3796 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3797 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3798 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3799 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3800 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3801 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3802 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3803 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3804 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3805 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3806 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3807 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3808 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3809 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3810 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3811 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3812 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3813 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3814 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3815 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3816 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3817 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3818 |
1106 | 3819 ;;; Define the handler for special file names |
3820 ;;; that causes ange-ftp to be invoked. | |
3821 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3822 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3823 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3824 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3825 (if fn (apply fn args) |
7143
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3826 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3827 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3828 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3829 ;;; This regexp takes care of real ange-ftp file names (with a slash |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3830 ;;; and colon). |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3831 ;;;###autoload |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3832 (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3833 (setq file-name-handler-alist |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3834 (cons '("^/[^/:]*[^/:]:" . ange-ftp-hook-function) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3835 file-name-handler-alist))) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3836 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3837 ;;; This regexp recognizes and absolute filenames with only one component, |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3838 ;;; for the sake of hostname completion. |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3839 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3840 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3841 (setq file-name-handler-alist |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3842 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3843 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3844 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3845 ;;; The above two forms are sufficient to cause this file to be loaded |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3846 ;;; if the user ever uses a file name with a colon in it. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3847 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3848 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3849 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3850 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3851 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3852 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3853 ;;; Now say where to find the handlers for particular operations. |
1106 | 3854 |
3855 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3856 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3857 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3858 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3859 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3860 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3861 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3862 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3863 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3864 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3865 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3866 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3867 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3868 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3869 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3870 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3871 (put 'verify-visited-file-modtime 'ange-ftp | |
3872 'ange-ftp-verify-visited-file-modtime) | |
3873 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3874 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3875 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3876 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3877 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3878 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3879 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3880 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3881 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3882 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3883 (put 'unhandled-file-name-directory 'ange-ftp |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3884 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3885 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3886 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3887 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3888 (put 'load 'ange-ftp 'ange-ftp-load) |
1454
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3889 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3890 ;; Turn off truename processing to save time. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3891 ;; Treat each name as its own truename. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3892 (put 'file-truename 'ange-ftp 'identity) |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3893 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3894 ;; Turn off RCS/SCCS processing to save time. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3895 ;; This returns nil for any file name as argument. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3896 (put 'vc-registered 'ange-ftp 'null) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3897 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3898 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3899 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3900 |
7042 | 3901 (defun ange-ftp-run-real-handler (operation args) |
3902 (let ((inhibit-file-name-handlers | |
3903 (cons 'ange-ftp-hook-function | |
7143
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3904 (cons 'ange-ftp-completion-hook-function |
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3905 (and (eq inhibit-file-name-operation operation) |
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3906 inhibit-file-name-handlers)))) |
7042 | 3907 (inhibit-file-name-operation operation)) |
3908 (apply operation args))) | |
3909 | |
1106 | 3910 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 3911 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 3912 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 3913 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 3914 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 3915 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 3916 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 3917 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 3918 (defun ange-ftp-real-expand-file-name (&rest args) |
7042 | 3919 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 3920 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 3921 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 3922 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 3923 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 3924 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 3925 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 3926 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 3927 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 3928 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 3929 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 3930 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 3931 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 3932 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 3933 (ange-ftp-run-real-handler 'file-readable-p args)) |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3934 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 3935 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 3936 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 3937 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 3938 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 3939 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 3940 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 3941 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 3942 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 3943 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 3944 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 3945 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 3946 (defun ange-ftp-real-write-region (&rest args) |
7042 | 3947 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 3948 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 3949 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 3950 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 3951 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 3952 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 3953 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 3954 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 3955 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 3956 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 3957 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 3958 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 3959 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3960 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 3961 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3962 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 3963 (ange-ftp-run-real-handler 'file-name-sans-versions args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3964 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 3965 (ange-ftp-run-real-handler 'shell-command args)) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3966 (defun ange-ftp-real-load (&rest args) |
7042 | 3967 (ange-ftp-run-real-handler 'load args)) |
1106 | 3968 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3969 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3970 ;; I have turned off the support for using dired on foreign directory formats. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3971 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3972 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3973 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3974 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3975 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3976 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3977 ;; Some of the old dired hooks would still be needed even if this is done. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3978 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3979 ;; So the format conversion should be all that is needed. |
1106 | 3980 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3981 (defun ange-ftp-insert-directory (file switches &optional wildcard full) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3982 (let ((short (ange-ftp-abbreviate-filename file)) |
7747
40d992ff4662
(ange-ftp-insert-directory): Expand file name to
Richard M. Stallman <rms@gnu.org>
parents:
7664
diff
changeset
|
3983 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3984 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3985 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3986 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3987 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3988 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3989 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3990 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 3991 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3992 (defun ange-ftp-dired-uncache (dir) |
4887
78c004148b7c
(ange-ftp-dired-uncache): Fix parens so that `(setq ...' is a result
Brian Fox <bfox@gnu.org>
parents:
4674
diff
changeset
|
3993 (if (ange-ftp-ftp-name (expand-file-name dir)) |
78c004148b7c
(ange-ftp-dired-uncache): Fix parens so that `(setq ...' is a result
Brian Fox <bfox@gnu.org>
parents:
4674
diff
changeset
|
3994 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3995 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3996 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3997 "Alist of mapping host type into function to remove file version numbers.") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3998 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3999 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4000 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4001 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4002 host-type func) |
1106 | 4003 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4004 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4005 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4006 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4007 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4008 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4009 |
4010 (defvar ange-ftp-remote-shell-file-name | |
4011 (if (memq system-type '(hpux usg-unix-v)) ; hope that's right | |
4012 "remsh" | |
4013 "rsh") | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 "Name of command to run a remote shell, for ange-ftp.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4015 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 ;;; This doesn't work yet; a new hook needs to be created. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4018 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4020 (host (nth 0 parsed)) |
4021 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4022 (name (nth 2 parsed))) |
1106 | 4023 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4025 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4026 (setq command (concat "cd " name "; " command))) |
1106 | 4027 (setq command |
4028 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4029 ; on a hp-ux machine I tried | |
4030 ange-ftp-remote-shell-file-name host command)) | |
4031 (ange-ftp-message "Remote command '%s' ..." command) | |
4032 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4033 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4034 ;; default-directory is in ange-ftp syntax for remote file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4035 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 ;;; Thisis not hooked up yet. |
1106 | 4038 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4039 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4040 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 (if (ange-ftp-ftp-name default-directory) |
1106 | 4042 ;; Can't use ange-ftp-dired-host-type here because the current |
4043 ;; buffer is *dired-check-process output* | |
4044 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 (cond ((equal "chmod" program) |
1106 | 4046 (ange-ftp-call-chmod arguments)) |
4047 ;; ((equal "chgrp" program)) | |
4048 ;; ((equal dired-chown-program program)) | |
4049 (t (error "Unknown remote command: %s" program))) | |
4050 (ftp-error (insert (format "%s: %s, %s\n" | |
4051 (nth 1 oops) | |
4052 (nth 2 oops) | |
4053 (nth 3 oops)))) | |
4054 (error (insert (format "%s\n" (nth 1 oops))))) | |
4055 (apply 'call-process program nil (not discard) nil arguments))) | |
4056 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 ;;; This currently does not work; it is never called. |
1106 | 4058 (defun ange-ftp-call-chmod (args) |
4059 (if (< (length args) 2) | |
4060 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4061 (let ((mode (car args))) | |
4062 (mapcar | |
4063 (function | |
4064 (lambda (file) | |
4065 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4066 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4067 (if parsed |
4068 (let* ((host (nth 0 parsed)) | |
4069 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4070 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4071 (abbr (ange-ftp-abbreviate-filename file)) |
4072 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4073 (list 'chmod mode name) |
1106 | 4074 (format "doing chmod %s" |
4075 abbr)))) | |
4076 (or (car result) | |
4077 (ange-ftp-error host user | |
4078 (format "chmod: %s: \"%s\"" | |
4079 file | |
4080 (cdr result))))))))) | |
4081 (cdr args))) | |
4082 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
4083 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4084 ;;; This is turned off because it has nothing properly to do |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4085 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4086 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4087 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4088 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4089 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4090 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4091 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4092 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4093 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4094 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4095 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4096 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4097 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4098 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4099 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4100 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4101 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4102 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4103 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4105 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4106 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4107 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4108 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4109 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4110 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4111 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4112 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4113 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4114 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4115 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4116 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4117 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4118 ;; ;; it is only worth calling the alternative function for remote files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4119 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4120 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4121 ;; ;; we can only call the name constructor for dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4122 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4123 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 ;; ;; use the process-filter driven routine rather than the iterative one. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4126 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4130 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4133 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4134 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4137 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4139 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4140 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4141 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4143 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4147 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;; success-count buffer) |
1106 | 4155 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4156 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4160 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4164 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4174 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;;ESC or `q' to not overwrite any of the remaining files, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; ;; gets a chance to delete it (in case of a move). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4189 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4191 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4193 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4222 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; (dired-add-file to actual-marker-char)) |
1106 | 4255 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4256 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4260 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4262 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4263 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4274 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 ;; (set-buffer old-buf)))) |
1106 | 4289 |
4290 ;;;; ----------------------------------------------- | |
4291 ;;;; Unix Descriptive Listing (dl) Support | |
4292 ;;;; ----------------------------------------------- | |
4293 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 ;; and because I don't understand what it's supposed to be for. --rms. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4302 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4306 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; "In dired, move to the first character of the filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4315 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4316 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4317 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4318 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4319 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4320 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4321 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4322 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4323 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4324 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4325 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4326 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4327 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4328 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4329 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4330 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4331 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4333 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4334 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4338 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4340 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4341 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4342 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4343 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4344 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4345 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4346 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4348 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4351 |
4352 ;;;; ------------------------------------------------------------ | |
4353 ;;;; VOS support (VOS support is probably broken, | |
4354 ;;;; but I don't know anything about VOS.) | |
4355 ;;;; ------------------------------------------------------------ | |
4356 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4357 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4358 ; (setq name (copy-sequence name)) |
1106 | 4359 ; (let ((from (if reverse ?\> ?\/)) |
4360 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4361 ; (i (1- (length name)))) |
1106 | 4362 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4364 ; (aset name i to)) |
1106 | 4365 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 ; name)) |
1106 | 4367 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4370 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4371 ; ange-ftp-fix-name-func-alist))) |
1106 | 4372 ; |
4373 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4374 ; (setq ange-ftp-dumb-host-types | |
4375 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4376 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4379 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4381 ; "" "/") |
4382 ; "*"))) | |
4383 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4384 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4385 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4386 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4388 ; |
4389 ;(defvar ange-ftp-vos-host-regexp nil | |
4390 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4391 ; | |
4392 ;(defun ange-ftp-vos-host (host) | |
4393 ; (and ange-ftp-vos-host-regexp | |
4394 ; (ange-ftp-save-match-data | |
4395 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4396 ; | |
4397 ;(defun ange-ftp-parse-vos-listing () | |
4398 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4399 ;format, and return a hashtable as the result." | |
4400 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4401 ; (type-list | |
4402 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4403 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4404 ; type-regexp type-is-dir type-col file) | |
4405 ; (goto-char (point-min)) | |
4406 ; (ange-ftp-save-match-data | |
4407 ; (while type-list | |
4408 ; (setq type-regexp (car (car type-list)) | |
4409 ; type-is-dir (nth 1 (car type-list)) | |
4410 ; type-col (nth 2 (car type-list)) | |
4411 ; type-list (cdr type-list)) | |
4412 ; (if (re-search-forward type-regexp nil t) | |
4413 ; (while (eq (char-after (point)) ? ) | |
4414 ; (move-to-column type-col) | |
4415 ; (setq file (buffer-substring (point) | |
4416 ; (progn | |
4417 ; (end-of-line 1) | |
4418 ; (point)))) | |
4419 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4420 ; (forward-line 1)))) | |
4421 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4422 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4423 ; tbl)) | |
4424 ; | |
4425 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4426 ; (setq ange-ftp-parse-list-func-alist | |
4427 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4428 ; ange-ftp-parse-list-func-alist))) | |
4429 | |
4430 ;;;; ------------------------------------------------------------ | |
4431 ;;;; VMS support. | |
4432 ;;;; ------------------------------------------------------------ | |
4433 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4434 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4435 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 (defun ange-ftp-fix-name-for-vms (name &optional reverse) |
1106 | 4437 (ange-ftp-save-match-data |
4438 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4439 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4440 (let (drive dir file) |
4441 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4442 (setq drive (substring name |
1106 | 4443 (match-beginning 1) |
4444 (match-end 1)))) | |
4445 (if (match-beginning 2) | |
4446 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4447 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4448 (if (match-beginning 3) |
4449 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4450 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4451 (and dir |
4452 (setq dir (apply (function concat) | |
4453 (mapcar (function | |
4454 (lambda (char) | |
4455 (if (= char ?.) | |
4456 (vector ?/) | |
4457 (vector char)))) | |
4458 (substring dir 1 -1))))) | |
4459 (concat (and drive | |
4460 (concat "/" drive "/")) | |
4461 dir (and dir "/") | |
4462 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4463 (error "name %s didn't match" name)) |
1106 | 4464 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4465 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4466 (setq drive (substring name 1 |
1106 | 4467 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4468 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4469 (setq tmp (file-name-directory name)) |
1106 | 4470 (if tmp |
4471 (setq dir (apply (function concat) | |
4472 (mapcar (function | |
4473 (lambda (char) | |
4474 (if (= char ?/) | |
4475 (vector ?.) | |
4476 (vector char)))) | |
4477 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4478 (setq file (file-name-nondirectory name)) |
1106 | 4479 (concat drive |
4480 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4481 file))))) | |
4482 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4483 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4484 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4485 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4486 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4487 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4488 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4489 ange-ftp-fix-name-func-alist))) |
1106 | 4490 |
4491 (or (memq 'vms ange-ftp-dumb-host-types) | |
4492 (setq ange-ftp-dumb-host-types | |
4493 (cons 'vms ange-ftp-dumb-host-types))) | |
4494 | |
4495 ;; It is important that this function barf for directories for which we know | |
4496 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4497 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4498 ;; might succeed, but give erroneous info. This last case is particularly | |
4499 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4500 ;; to list a directory. | |
4501 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4502 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4503 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4504 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4505 ;; think so, because expand-filename should have already short-circuited | |
4506 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4507 (cond ((string-equal dir-name "/") |
1106 | 4508 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4509 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4510 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4511 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4512 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4513 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4514 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4515 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4516 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4517 |
4518 (defvar ange-ftp-vms-host-regexp nil) | |
4519 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4520 ;; Return non-nil if HOST is running VMS. |
1106 | 4521 (defun ange-ftp-vms-host (host) |
4522 (and ange-ftp-vms-host-regexp | |
4523 (ange-ftp-save-match-data | |
4524 (string-match ange-ftp-vms-host-regexp host)))) | |
4525 | |
4526 ;; Because some VMS ftp servers convert filenames to lower case | |
4527 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4528 | |
4529 (defconst ange-ftp-vms-filename-regexp | |
4530 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4531 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." |
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4532 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4533 "Regular expression to match for a valid VMS file name in Dired buffer. |
4534 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4535 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4536 Other orders of $ and _ seem to all work just fine.") | |
4537 | |
4538 ;; These parsing functions are as general as possible because the syntax | |
4539 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4540 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4541 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4542 ;; from vms.weird.net, then too bad. | |
4543 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4544 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4545 (defun ange-ftp-parse-vms-filename () |
4546 (if (re-search-forward | |
4547 ange-ftp-vms-filename-regexp | |
4548 nil t) | |
4549 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4550 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4551 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4552 ;; format, and return a hashtable as the result. |
1106 | 4553 (defun ange-ftp-parse-vms-listing () |
4554 (let ((tbl (ange-ftp-make-hashtable)) | |
4555 file) | |
4556 (goto-char (point-min)) | |
4557 (ange-ftp-save-match-data | |
4558 (while (setq file (ange-ftp-parse-vms-filename)) | |
4559 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4560 ;; deal with directories | |
4561 (ange-ftp-put-hash-entry | |
4562 (substring file 0 (match-beginning 0)) t tbl) | |
4563 (ange-ftp-put-hash-entry file nil tbl) | |
4564 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4565 ;; sans extension | |
4566 (ange-ftp-put-hash-entry | |
4567 (substring file 0 (match-beginning 0)) nil tbl))) | |
4568 (forward-line 1)) | |
4569 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4570 ;; make sure that the listing isn't complete garbage before putting | |
4571 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4572 ;; either of these. | |
4573 (ange-ftp-put-hash-entry "." t tbl) | |
4574 (ange-ftp-put-hash-entry ".." t tbl)) | |
4575 tbl)) | |
4576 | |
4577 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4578 (setq ange-ftp-parse-list-func-alist | |
4579 (cons '(vms . ange-ftp-parse-vms-listing) | |
4580 ange-ftp-parse-list-func-alist))) | |
4581 | |
4582 ;; This version only deletes file entries which have | |
4583 ;; explicit version numbers, because that is all VMS allows. | |
4584 | |
4585 ;; Can the following two functions be speeded up using file | |
4586 ;; completion functions? | |
4587 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4588 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4589 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4590 (ange-ftp-internal-delete-file-entry name t) |
1106 | 4591 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4592 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4593 (if (string-match ";[0-9]+$" file) |
4594 ;; In VMS you can't delete a file without an explicit | |
4595 ;; version number, or wild-card (e.g. FOO;*) | |
4596 ;; For now, we give up on wildcards. | |
4597 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4598 (file-name-directory name) |
1106 | 4599 ange-ftp-files-hashtable))) |
4600 (if files | |
4601 (let* ((root (substring file 0 | |
4602 (match-beginning 0))) | |
4603 (regexp (concat "^" | |
4604 (regexp-quote root) | |
4605 ";[0-9]+$")) | |
4606 versions) | |
4607 (ange-ftp-del-hash-entry file files) | |
4608 ;; Now we need to check if there are any | |
4609 ;; versions left. If not, then delete the | |
4610 ;; root entry. | |
4611 (mapatoms | |
4612 '(lambda (sym) | |
4613 (and (string-match regexp (get sym 'key)) | |
4614 (setq versions t))) | |
4615 files) | |
4616 (or versions | |
4617 (ange-ftp-del-hash-entry root files)))))))))) | |
4618 | |
4619 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4620 (setq ange-ftp-delete-file-entry-alist | |
4621 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4622 ange-ftp-delete-file-entry-alist))) | |
4623 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4624 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4625 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4626 (ange-ftp-internal-add-file-entry name t) |
1106 | 4627 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4628 (file-name-directory name) |
1106 | 4629 ange-ftp-files-hashtable))) |
4630 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4631 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4632 (ange-ftp-save-match-data |
4633 (if (string-match ";[0-9]+$" file) | |
4634 (ange-ftp-put-hash-entry | |
4635 (substring file 0 (match-beginning 0)) | |
4636 nil files) | |
4637 ;; Need to figure out what version of the file | |
4638 ;; is being added. | |
4639 (let ((regexp (concat "^" | |
4640 (regexp-quote file) | |
4641 ";\\([0-9]+\\)$")) | |
4642 (version 0)) | |
4643 (mapatoms | |
4644 '(lambda (sym) | |
4645 (let ((name (get sym 'key))) | |
4646 (and (string-match regexp name) | |
4647 (setq version | |
4648 (max version | |
4649 (string-to-int | |
4650 (substring name | |
4651 (match-beginning 1) | |
4652 (match-end 1)))))))) | |
4653 files) | |
4654 (setq version (1+ version)) | |
4655 (ange-ftp-put-hash-entry | |
4656 (concat file ";" (int-to-string version)) | |
4657 nil files)))) | |
4658 (ange-ftp-put-hash-entry file nil files)))))) | |
4659 | |
4660 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4661 (setq ange-ftp-add-file-entry-alist | |
4662 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4663 ange-ftp-add-file-entry-alist))) | |
4664 | |
4665 | |
4666 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4667 "Mark HOST as the name of a machine running VMS." |
1106 | 4668 (interactive |
4669 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
4670 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4671 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4672 (if (not (ange-ftp-vms-host host)) |
4673 (setq ange-ftp-vms-host-regexp | |
4674 (concat "^" (regexp-quote host) "$" | |
4675 (and ange-ftp-vms-host-regexp "\\|") | |
4676 ange-ftp-vms-host-regexp) | |
4677 ange-ftp-host-cache nil))) | |
4678 | |
4679 | |
4680 (defun ange-ftp-vms-file-name-as-directory (name) | |
4681 (ange-ftp-save-match-data | |
4682 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
4683 (setq name (substring name 0 (match-beginning 0)))) | |
4684 (ange-ftp-real-file-name-as-directory name))) | |
4685 | |
4686 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4687 (setq ange-ftp-file-name-as-directory-alist | |
4688 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4689 ange-ftp-file-name-as-directory-alist))) | |
4690 | |
4691 ;;; Tree dired support: | |
4692 | |
4693 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4694 ;; dired-vms.el | |
4695 | |
4696 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4697 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4698 ;;;; Beware that the ftpd may put the device in front of the filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4699 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4700 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4701 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4702 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4703 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4704 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4706 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4707 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4708 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4709 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4710 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4711 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4712 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4713 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4714 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4715 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4716 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4717 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4718 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4719 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4720 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4721 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4722 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4723 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4724 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4725 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4726 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4727 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4728 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4729 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4730 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4733 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;; "In dired, move to first char of filename on this line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 ;;Returns position (point) or nil if no filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4737 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4743 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4745 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4746 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4747 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4764 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4767 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4769 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4789 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4791 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4793 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4795 |
4796 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4797 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4798 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4799 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4800 | |
4801 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4812 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4814 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4816 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4818 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 ;;;; When the filename is too long, VMS will use two lines to list a file |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;;;; (damn them!) This will confuse dired. To solve this, need to convince |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 ;;;; (forward-line 1). This would require a number of changes to dired.el. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4829 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4831 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4833 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4835 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4836 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4837 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4838 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4840 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 (defun ange-ftp-vms-sans-version (name) |
1106 | 4843 (ange-ftp-save-match-data |
4844 (if (string-match ";[0-9]+$" name) | |
4845 (substring name 0 (match-beginning 0)) | |
4846 name))) | |
4847 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 ;;;;; The vms version of clean-directory has 2 more optional args |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 ;;;;; than the usual dired version. This is so that it can be used by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4860 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4861 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4862 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4863 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4866 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4867 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4879 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4880 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4881 ;; ;; put on ange-ftp-file-version-alist an element of the form |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4883 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4885 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4894 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4895 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4896 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4898 ;; ;; Look at each file. If it is a numeric backup file, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4900 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4902 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4903 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4905 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4907 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4908 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4909 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4910 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4911 ;; ;; "If it looks like file FN has versions, return a list of the versions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4912 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 ;; ;;The caller may want to flag some of these files for deletion." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4920 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4929 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4931 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4934 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4938 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 ;; (setq base-version-list ; there was a base version to which |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4946 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4947 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4948 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4952 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4957 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4958 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4959 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4960 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4961 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4962 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4963 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4964 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4965 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4967 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4971 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4975 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4976 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4977 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4979 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4982 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 4990 |
4991 | |
4992 ;;;; ------------------------------------------------------------ | |
4993 ;;;; MTS support | |
4994 ;;;; ------------------------------------------------------------ | |
4995 | |
4996 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 (defun ange-ftp-fix-name-for-mts (name &optional reverse) |
1106 | 5000 (ange-ftp-save-match-data |
5001 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5003 (let (acct file) |
5004 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5006 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 (setq file (substring name |
1106 | 5008 (match-beginning 2) (match-end 2)))) |
5009 (concat (and acct (concat "/" acct "/")) | |
5010 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5015 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5019 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5025 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 (if (string-equal dir-name "/") |
1106 | 5027 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5028 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5029 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5030 ((string-equal dir-name "") |
1106 | 5031 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5032 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5034 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5036 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5038 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5040 |
5041 (or (memq 'mts ange-ftp-dumb-host-types) | |
5042 (setq ange-ftp-dumb-host-types | |
5043 (cons 'mts ange-ftp-dumb-host-types))) | |
5044 | |
5045 (defvar ange-ftp-mts-host-regexp nil) | |
5046 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 ;; Return non-nil if HOST is running MTS. |
1106 | 5048 (defun ange-ftp-mts-host (host) |
5049 (and ange-ftp-mts-host-regexp | |
5050 (ange-ftp-save-match-data | |
5051 (string-match ange-ftp-mts-host-regexp host)))) | |
5052 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5053 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5054 (defun ange-ftp-parse-mts-listing () |
5055 (let ((tbl (ange-ftp-make-hashtable))) | |
5056 (goto-char (point-min)) | |
5057 (ange-ftp-save-match-data | |
5058 (while (re-search-forward ange-ftp-date-regexp nil t) | |
5059 (end-of-line) | |
5060 (skip-chars-backward " ") | |
5061 (let ((end (point))) | |
5062 (skip-chars-backward "-A-Z0-9_.!") | |
5063 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5064 (forward-line 1))) | |
5065 ;; Don't need to bother with .. | |
5066 (ange-ftp-put-hash-entry "." t tbl) | |
5067 tbl)) | |
5068 | |
5069 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5070 (setq ange-ftp-parse-list-func-alist | |
5071 (cons '(mts . ange-ftp-parse-mts-listing) | |
5072 ange-ftp-parse-list-func-alist))) | |
5073 | |
5074 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 "Mark HOST as the name of a machine running MTS." |
1106 | 5076 (interactive |
5077 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
5078 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5080 (if (not (ange-ftp-mts-host host)) |
5081 (setq ange-ftp-mts-host-regexp | |
5082 (concat "^" (regexp-quote host) "$" | |
5083 (and ange-ftp-mts-host-regexp "\\|") | |
5084 ange-ftp-mts-host-regexp) | |
5085 ange-ftp-host-cache nil))) | |
5086 | |
5087 ;;; Tree dired support: | |
5088 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5089 ;;;; There aren't too many systems left that use MTS. This dired support will |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5090 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 ;;;; implement ftp in the same way. If not, it might be necessary to make the |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5092 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5094 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 ;; "In dired, move to first char of filename on this line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 ;;Returns position (point) or nil if no filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5101 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5105 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5106 ;; ;; When listing an account other than the users own account it appends |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5107 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5108 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5110 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5111 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5112 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5114 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5115 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5116 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5117 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5118 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5119 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5120 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5121 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5122 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5123 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5124 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5125 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5126 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5127 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5128 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5129 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5130 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5131 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5132 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5133 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5134 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5135 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5137 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5138 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5139 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5143 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5145 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5147 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5148 |
5149 ;;;; ------------------------------------------------------------ | |
5150 ;;;; CMS support | |
5151 ;;;; ------------------------------------------------------------ | |
5152 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 ;; Since CMS doesn't have any full file name syntax, we have to fudge |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
5154 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5155 ;; to try to remember the current minidisk, because if the connection |
5156 ;; is closed and needs to be reopened, we will find ourselves back in | |
5157 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5158 ;; usually close the connection after 5 minutes of inactivity. | |
5159 | |
5160 ;; Have I got the filename character set right? | |
5161 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 (defun ange-ftp-fix-name-for-cms (name &optional reverse) |
1106 | 5163 (ange-ftp-save-match-data |
5164 (if reverse | |
5165 ;; Since we only convert output from a pwd in this direction, | |
5166 ;; we'll assume that it's a minidisk, and make it into a | |
5167 ;; directory file name. Note that the expand-dir-hashtable | |
5168 ;; stores directories without the trailing /. Is this | |
5169 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 (concat "/" name) |
1106 | 5171 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5174 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 (let ((file (substring name (match-beginning 2) |
1106 | 5176 (match-end 2))) |
5177 (cmd (concat "cd " minidisk)) | |
5178 | |
5179 ;; Note that host and user are bound in the call | |
5180 ;; to ange-ftp-send-cmd | |
5181 (proc (ange-ftp-get-process ange-ftp-this-host | |
5182 ange-ftp-this-user))) | |
5183 | |
5184 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5185 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5186 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5187 file |
5188 ;; failed... try ONCE more. | |
5189 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5190 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5192 ange-ftp-this-msg))) |
1106 | 5193 (if (car result) |
5194 file | |
5195 ;; failed. give up. | |
5196 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5197 (format "cd to minidisk %s failed: %s" | |
5198 minidisk (cdr result))))))) | |
5199 ;; return the minidisk | |
5200 minidisk)) | |
5201 (error "Invalid CMS filename"))))) | |
5202 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5203 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5205 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5206 ange-ftp-fix-name-func-alist))) |
1106 | 5207 |
5208 (or (memq 'cms ange-ftp-dumb-host-types) | |
5209 (setq ange-ftp-dumb-host-types | |
5210 (cons 'cms ange-ftp-dumb-host-types))) | |
5211 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5212 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5213 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5214 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5215 ((string-equal "/" dir-name) |
1106 | 5216 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5217 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5218 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5219 ;; host and user are bound in the call to ange-ftp-send-cmd |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5220 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5221 (cmd (concat "cd " minidisk)) |
5222 (file (if (match-beginning 2) | |
5223 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 (substring dir-name (match-beginning 2) |
1106 | 5225 (match-end 2)) |
5226 ;; use the wild-card | |
5227 "*"))) | |
5228 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5229 file | |
5230 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5231 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5232 ange-ftp-this-user)) |
1106 | 5233 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5234 (if (car result) | |
5235 file | |
5236 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5238 (format "cd to minidisk %s failed: " |
5239 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5242 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5243 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5244 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5245 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5246 |
5247 (defvar ange-ftp-cms-host-regexp nil | |
5248 "Regular expression to match hosts running the CMS operating system.") | |
5249 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5250 ;; Return non-nil if HOST is running CMS. |
1106 | 5251 (defun ange-ftp-cms-host (host) |
5252 (and ange-ftp-cms-host-regexp | |
5253 (ange-ftp-save-match-data | |
5254 (string-match ange-ftp-cms-host-regexp host)))) | |
5255 | |
5256 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5257 "Mark HOST as the name of a CMS host." |
1106 | 5258 (interactive |
5259 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
5260 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5261 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5262 (if (not (ange-ftp-cms-host host)) |
5263 (setq ange-ftp-cms-host-regexp | |
5264 (concat "^" (regexp-quote host) "$" | |
5265 (and ange-ftp-cms-host-regexp "\\|") | |
5266 ange-ftp-cms-host-regexp) | |
5267 ange-ftp-host-cache nil))) | |
5268 | |
5269 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5270 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5271 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5272 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5273 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5274 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5275 ;; exist. It would be nice if completion worked for minidisks, as we | |
5276 ;; discover them. | |
5277 ; (let* ((dir-file (directory-file-name file)) | |
5278 ; (root (file-name-directory dir-file)) | |
5279 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5280 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5281 ; (if root-tbl | |
5282 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5283 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5284 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5285 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5286 ; (ange-ftp-set-files root root-tbl))) | |
5287 ;; Now do the usual parsing | |
5288 (let ((tbl (ange-ftp-make-hashtable))) | |
5289 (goto-char (point-min)) | |
5290 (ange-ftp-save-match-data | |
5291 (while | |
5292 (re-search-forward | |
5293 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5294 (ange-ftp-put-hash-entry | |
5295 (concat (buffer-substring (match-beginning 1) | |
5296 (match-end 1)) | |
5297 "." | |
5298 (buffer-substring (match-beginning 2) | |
5299 (match-end 2))) | |
5300 nil tbl) | |
5301 (forward-line 1)) | |
5302 (ange-ftp-put-hash-entry "." t tbl)) | |
5303 tbl)) | |
5304 | |
5305 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5306 (setq ange-ftp-parse-list-func-alist | |
5307 (cons '(cms . ange-ftp-parse-cms-listing) | |
5308 ange-ftp-parse-list-func-alist))) | |
5309 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5310 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5311 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5312 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5313 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5314 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5315 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5316 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5317 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5318 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5319 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5320 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5321 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5322 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5323 ;; ;; CMS has no total line, so we insert a blank line for |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5324 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5325 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5326 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5327 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5328 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5329 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5330 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5331 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5332 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5333 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5334 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5335 ;; "In dired, move to the first char of filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5336 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5337 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5338 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5339 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5340 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5341 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5342 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5343 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5344 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5345 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5346 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5347 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5348 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5349 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5350 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5351 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5352 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5353 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5354 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5355 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5356 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5357 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5358 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5361 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5362 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5363 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5365 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5366 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5369 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5370 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5373 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5374 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5375 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5377 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5378 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5379 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5380 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5382 |
5383 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5386 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5387 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5388 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5389 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5390 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5392 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5400 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5401 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5404 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5406 |
5407 ;;;; ------------------------------------------------------------ | |
5408 ;;;; Finally provide package. | |
5409 ;;;; ------------------------------------------------------------ | |
5410 | |
5411 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5412 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5413 ;;; ange-ftp.el ends here |