Mercurial > emacs
annotate lisp/ange-ftp.el @ 8163:d836abb05e48
(mkdir, removenullpaths): Put g in sed replace commands.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 07 Jul 1994 02:44:58 +0000 |
parents | 457dc75d1d60 |
children | 4cb8a2ab8f60 |
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. | |
217 | |
218 ;;; Tips for using ange-ftp: | |
219 ;;; | |
220 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
221 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
222 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
223 ;;; there is a chance you might connect to an ULTRIX machine (such as | |
224 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
225 ;;; 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
|
226 ;;; end in an @. If you get yourself into this situation then editing |
1106 | 227 ;;; dired's ls-switches to remove "F", will temporarily fix things. |
228 ;;; | |
229 ;;; 2. If you know that you are connecting to a certain non-UNIX machine | |
230 ;;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
231 ;;; then setting the appropriate host-type regexp | |
232 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
233 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
234 ;;; ange-ftp's inability to recognize the host-type as a bug. | |
235 ;;; | |
236 ;;; 3. For slow connections, you might get "listing unreadable" error | |
237 ;;; messages, or get an empty buffer for a file that you know has something | |
238 ;;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
239 ;;; Its default value is 5 which is plenty for reasonable connections. | |
240 ;;; However, for some transatlantic connections I set this to 20. | |
241 ;;; | |
242 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
243 ;;; copying the file to the local machine, compressing it there, and then | |
244 ;;; sending it back. Binary file transfers between machines of different | |
245 ;;; architectures can be a risky business. Test things out first on some | |
246 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
247 ;;; moving them through the local machine. Again, be careful when doing | |
248 ;;; this with binary files on non-Unix machines. | |
249 ;;; | |
250 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
251 ;;; (list of dired commands for which confirmation is not asked). You | |
252 ;;; might want to reconsider your setting of this variable, because you | |
253 ;;; might want confirmation for more commands on remote direds than on | |
254 ;;; local direds. For example, I strongly recommend that you not include | |
255 ;;; compress and uncompress in this list. If there is enough demand it | |
256 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
257 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
258 ;;; is a list of commands for which confirmation would be suppressed. Then | |
259 ;;; remote dired listings would take their (buffer-local) value of | |
260 ;;; dired-no-confirm from this alist. Who votes for this? | |
261 | |
262 ;;; --------------------------------------------------------------------- | |
263 ;;; Non-UNIX support: | |
264 ;;; --------------------------------------------------------------------- | |
265 | |
266 ;;; VMS support: | |
267 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
268 ;;; Ange-ftp has full support for VMS hosts. It |
1106 | 269 ;;; should be able to automatically recognize any VMS machine. However, if it |
270 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
271 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
272 ;;; would be grateful if you would report any failures to automatically | |
273 ;;; recognize a VMS host as a bug. | |
274 ;;; | |
275 ;;; Filename Syntax: | |
276 ;;; | |
277 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
278 ;;; UNIX-y way. For example: | |
279 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
280 ;;; would be entered as: | |
281 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
282 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
283 ;;; [.CSV.POLICY]RULES.MEM | |
284 ;;; you would type: | |
285 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
286 ;;; | |
287 ;;; A legal VMS filename is of the form: FILE.TYPE;## | |
288 ;;; where FILE can be up to 39 characters | |
289 ;;; TYPE can be up to 39 characters | |
290 ;;; ## is a version number (an integer between 1 and 32,767) | |
291 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
292 ;;; $ cannot begin a filename, and - cannot be used as the first or last | |
293 ;;; character. | |
294 ;;; | |
295 ;;; Tips: | |
296 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
297 ;;; Therefore, to access a VMS file, you must enter the filename with upper | |
298 ;;; case letters. | |
299 ;;; 2. To access the latest version of file under VMS, you use the filename | |
300 ;;; without the ";" and version number. You should always edit the latest | |
301 ;;; version of a file. If you want to edit an earlier version, copy it to a | |
302 ;;; new file first. This has nothing to do with ange-ftp, but is simply | |
303 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
304 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
305 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
306 ;;; that VMS will not allow you to save the file because it will refuse to | |
307 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
308 ;;; attach the buffer to this file. To get out of this situation, M-x | |
309 ;;; 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
|
310 ;;; latest version of the file. For this reason, in dired "f" |
1106 | 311 ;;; (dired-find-file), always loads the file sans version, whereas "v", |
312 ;;; (dired-view-file), always loads the explicit version number. The | |
313 ;;; reasoning being that it reasonable to view old versions of a file, but | |
314 ;;; not to edit them. | |
315 ;;; 3. EMACS has a feature in which it does environment variable substitution | |
316 ;;; 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
|
317 ;;; by typing $$. |
1106 | 318 |
319 ;;; MTS support: | |
320 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
321 ;;; Ange-ftp has full support for hosts running |
1106 | 322 ;;; the Michigan terminal system. It should be able to automatically |
323 ;;; recognize any MTS machine. However, if it fails to do this, you can use | |
324 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
325 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
326 ;;; would report any failures to automatically recognize a MTS host as a bug. | |
327 ;;; | |
328 ;;; Filename syntax: | |
329 ;;; | |
330 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
331 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
332 ;;; entered as | |
333 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
334 ;;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
335 ;;; to access a file in another account, you must have access permission for | |
336 ;;; 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
|
337 ;;; relative name fashion as |
1106 | 338 ;;; /YYYY@mtsg.ubc.ca:FILE |
339 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
340 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
341 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
342 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
343 ;;; is. | |
344 | |
345 ;;; CMS support: | |
346 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
347 ;;; Ange-ftp has full support for hosts running |
1106 | 348 ;;; CMS. It should be able to automatically recognize any CMS machine. |
349 ;;; However, if it fails to do this, you can use the command | |
350 ;;; ange-ftp-add-cms-host. As well, you can set the variable | |
351 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
352 ;;; would report any failures to automatically recognize a CMS host as a bug. | |
353 ;;; | |
354 ;;; Filename syntax: | |
355 ;;; | |
356 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
357 ;;; treated as UNIX directories. For example to access the file READ.ME in | |
358 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
359 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
360 ;;; If *.301 is the default minidisk for this account, you could access | |
361 ;;; FOO.BAR on this minidisk as | |
362 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
363 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
364 ;;; up to 8 characters. Again, beware that CMS filenames are always upper | |
365 ;;; case, and hence must be entered as such. | |
366 ;;; | |
367 ;;; Tips: | |
368 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
369 ;;; need an account password. To have ange-ftp send an account password, | |
370 ;;; you can either include it in your .netrc file, or use | |
371 ;;; ange-ftp-set-account. | |
372 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
373 ;;; can fix this. | |
374 ;;; | |
375 ;;; ------------------------------------------------------------------ | |
376 ;;; Bugs: | |
377 ;;; ------------------------------------------------------------------ | |
378 ;;; | |
379 ;;; 1. Umask problems: | |
380 ;;; Be warned that files created by using ange-ftp will take account of the | |
381 ;;; 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
|
382 ;;; user. This is particularly important when logging in as the root user. |
1106 | 383 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make |
384 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
385 ;;; suspect that there is something similar on other systems. | |
386 ;;; | |
387 ;;; 2. Some combinations of FTP clients and servers break and get out of sync | |
388 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
389 ;;; 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
|
390 ;;; ange-ftp-kill-ftp-process can restart the ftp process, which |
1106 | 391 ;;; should get things back in synch. |
392 ;;; | |
393 ;;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
394 ;;; you provide a valid filename for the remote operating system. | |
395 ;;; If you do not, then the remote FTP server will most likely | |
396 ;;; translate your filename in some way. This may cause ange-ftp to | |
397 ;;; get confused about what exactly is the name of the file. The | |
398 ;;; most common causes of this are using lower case filenames on systems | |
399 ;;; which support only upper case, and using filenames which are too | |
400 ;;; long. | |
401 ;;; | |
402 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
403 ;;; | |
404 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
405 ;;; for some reason creates a FTP process that only talks via pipes then | |
406 ;;; ange-ftp won't be getting the information it requires at the time that | |
407 ;;; it wants it since pipes flush at different times to pty's. One | |
408 ;;; disgusting way around this problem is to talk to the FTP process via | |
409 ;;; rlogin which does the 'right' things with pty's. | |
410 ;;; | |
411 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
412 ;;; worried about this too much. Eventually, we should have some caching | |
413 ;;; of the current minidisk. | |
414 ;;; | |
415 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
416 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
417 ;;; to it. This is (understandably) beyond ange-ftp. | |
418 ;;; | |
419 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
420 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
421 ;;; will use binary mode for the copy. Between systems of different | |
422 ;;; architecture, this still may not be enough to guarantee the integrity | |
423 ;;; of binary files. Binary file transfers from VMS machines are | |
424 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
425 ;;; an alist of OS type, regexp pairs? | |
426 ;;; | |
427 ;;; 9. The code to do compression of files over ftp is not as careful as it | |
428 ;;; should be. It deletes the old remote version of the file, before | |
429 ;;; actually checking if the local to remote transfer of the compressed | |
430 ;;; file succeeds. Of course to delete the original version of the file | |
431 ;;; after transferring the compressed version back is also dangerous, | |
432 ;;; because some OS's have severe restrictions on the length of filenames, | |
433 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
434 ;;; truncated. Then, ange-ftp would delete the only remaining version of | |
435 ;;; the file. Maybe ange-ftp should make backups when it compresses files | |
436 ;;; (of course, the backup "~" could also be truncated off, sigh...). | |
437 ;;; Suggestions? | |
438 ;;; | |
439 | |
440 ;;; 10. If a dir listing is attempted for an empty directory on (at least | |
441 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
442 ;;; I don't know how to get ange-ftp work to around it. | |
443 ;;; | |
444 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
445 ;;; containing spaces, but beware that the remote ftpd may not like them | |
446 ;;; much. | |
447 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
448 ;;; 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
|
449 ;;; It needs to be reimplemented by modifying the parse-...-listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
450 ;;; functions to convert the directory listing to ls -l format. |
1106 | 451 ;;; |
452 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
453 ;;; with a trailing @ in a ls -alF listing. In order to account for this | |
454 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
455 ;;; parsing a listing with the F switch. This will cause ange-ftp to | |
456 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
457 ;;; ends in an @. ange-ftp will correct itself if you take F out of the | |
458 ;;; dired ls switches (C-u s will allow you to edit the switches). The | |
459 ;;; dired buffer will be automatically reverted, which will allow ange-ftp | |
460 ;;; to fix its files hashtable. A cookie to anyone who can think of a | |
461 ;;; fast, sure-fire way to recognize ULTRIX over ftp. | |
462 | |
463 ;;; If you find any bugs or problems with this package, PLEASE either e-mail | |
464 ;;; the above author, or send a message to the ange-ftp-lovers mailing list | |
465 ;;; below. Ideas and constructive comments are especially welcome. | |
466 | |
467 ;;; ange-ftp-lovers: | |
468 ;;; | |
469 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
470 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
471 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
472 ;;; the mailing list. | |
473 ;;; | |
474 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
475 ;;; list, please mail one of the following addresses: | |
476 ;;; | |
477 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
478 ;;; or | |
479 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
480 ;;; | |
481 ;;; Please don't forget the -request part. | |
482 ;;; | |
483 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
484 ;;; following addresses: | |
485 ;;; | |
486 ;;; ange-ftp-lovers@anorman.hpl.hp.com | |
487 ;;; or | |
488 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
489 ;;; | |
490 ;;; Alternatively, there is a mailing list that only gets announcements of new | |
491 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
492 ;;; subscribed to by e-mailing to the -request address as above. Please make | |
493 ;;; it clear in the request which mailing list you wish to join. | |
494 | |
495 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
496 ;;; from: | |
497 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
498 ;;; or: | |
499 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
500 ;;; or: | |
501 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
502 | |
503 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
504 ;;; | |
505 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
506 | |
507 ;;; ----------------------------------------------------------- | |
508 ;;; Technical information on this package: | |
509 ;;; ----------------------------------------------------------- | |
510 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
511 ;;; 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
|
512 ;;; 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
|
513 ;;; whenever they see a file name of the appropriate sort. |
1106 | 514 |
515 ;;; Checklist for adding non-UNIX support for TYPE | |
516 ;;; | |
517 ;;; The following functions may need TYPE versions: | |
518 ;;; (not all functions will be needed for every OS) | |
519 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
520 ;;; ange-ftp-fix-name-for-TYPE |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
521 ;;; ange-ftp-fix-dir-name-for-TYPE |
1106 | 522 ;;; ange-ftp-TYPE-host |
523 ;;; ange-ftp-TYPE-add-host | |
524 ;;; ange-ftp-parse-TYPE-listing | |
525 ;;; ange-ftp-TYPE-delete-file-entry | |
526 ;;; ange-ftp-TYPE-add-file-entry | |
527 ;;; ange-ftp-TYPE-file-name-as-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
528 ;;; ange-ftp-TYPE-make-compressed-filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
529 ;;; ange-ftp-TYPE-file-name-sans-versions |
1106 | 530 ;;; |
531 ;;; Variables: | |
532 ;;; | |
533 ;;; ange-ftp-TYPE-host-regexp | |
534 ;;; May need to add TYPE to ange-ftp-dumb-host-types | |
535 ;;; | |
536 ;;; Check the following functions for OS dependent coding: | |
537 ;;; | |
538 ;;; ange-ftp-host-type | |
539 ;;; ange-ftp-guess-host-type | |
540 ;;; ange-ftp-allow-child-lookup | |
541 | |
542 ;;; Host type conventions: | |
543 ;;; | |
544 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
545 ;;; (mostly) follow the following conventions for remote host types. At | |
546 ;;; least, I think that future code should try to follow these conventions, | |
547 ;;; and the current code should eventually be made compliant. | |
548 ;;; | |
549 ;;; nil = local host type, whatever that is (probably unix). | |
550 ;;; Think nil as in "not a remote host". This value is used by | |
551 ;;; ange-ftp-dired-host-type for local buffers. | |
552 ;;; | |
553 ;;; t = a remote host of unknown type. Think t is in true, it's remote. | |
554 ;;; Currently, 'unix is used as the default remote host type. | |
555 ;;; Maybe we should use t. | |
556 ;;; | |
557 ;;; 'type = a remote host of TYPE type. | |
558 ;;; | |
559 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
560 ;;; program called list. This is currently only used for Unix | |
561 ;;; dl (descriptive listings), when ange-ftp-dired-host-type | |
562 ;;; is set to 'unix:dl. | |
563 | |
564 ;;; Bug report codes: | |
565 ;;; | |
566 ;;; Because of their naive faith in this code, there are certain situations | |
567 ;;; 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
|
568 ;;; being realists they have put calls to `error' in the program at these |
1106 | 569 ;;; points. These errors provide a code, which is an integer, greater than 1. |
570 ;;; To aid debugging. the error codes, and the functions in which they reside | |
571 ;;; are listed below. | |
572 ;;; | |
573 ;;; 1: See ange-ftp-ls | |
574 ;;; | |
575 | |
576 ;;; ----------------------------------------------------------- | |
577 ;;; Hall of fame: | |
578 ;;; ----------------------------------------------------------- | |
579 ;;; | |
580 ;;; Thanks to Roland McGrath for improving the filename syntax handling, | |
581 ;;; for suggesting many enhancements and for numerous cleanups to the code. | |
582 ;;; | |
583 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
584 ;;; | |
585 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
586 ;;; dired / shell auto-loading. | |
587 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
588 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and |
1106 | 589 ;;; bugfixes. |
590 ;;; | |
591 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
592 ;;; VOS support, and hostname completion. | |
593 ;;; | |
594 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
595 ;;; with file-name expansion, efficiency worries, stylistic concerns and many | |
596 ;;; bugfixes. | |
597 ;;; | |
598 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
599 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
600 ;;; auto-recognition of the host type. | |
601 ;;; | |
602 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
603 ;;; | |
604 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
605 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
606 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
607 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
608 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
609 ;;; whose names I've forgotten who have helped to debug and fix problems with | |
610 ;;; ange-ftp.el. | |
611 | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
612 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
613 ;;; Code: |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
614 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
615 |
1106 | 616 ;;;; ------------------------------------------------------------ |
617 ;;;; User customization variables. | |
618 ;;;; ------------------------------------------------------------ | |
619 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
620 (defvar ange-ftp-name-format |
1106 | 621 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 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
|
624 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
625 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 626 parenthesized expressions in REGEXP for the components (in that order).") |
627 | |
628 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
629 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
630 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
631 | |
632 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
633 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 634 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 635 |
636 (defvar ange-ftp-good-msgs | |
637 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 638 "*Regular expression matching ftp \"success\" messages.") |
1106 | 639 |
640 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
641 ;; Also CMS machines use a multiline 550- reply to say that you | |
642 ;; don't have write permission. ange-ftp gets into multi-line skip | |
643 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
644 ;; when it gets the 550 line, as it should. | |
645 | |
646 (defvar ange-ftp-skip-msgs | |
647 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
648 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
649 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") | |
7042 | 650 "*Regular expression matching ftp messages that can be ignored.") |
1106 | 651 |
652 (defvar ange-ftp-fatal-msgs | |
653 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
654 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 655 "*Regular expression matching ftp messages that indicate serious errors. |
656 These mean that the FTP process should (or already has) been killed.") | |
1106 | 657 |
658 (defvar ange-ftp-gateway-fatal-msgs | |
659 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
7042 | 660 "*Regular expression matching login failure messages from rlogin/telnet.") |
1106 | 661 |
662 (defvar ange-ftp-xfer-size-msgs | |
663 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
664 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
665 | |
666 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
667 "*Template used to create temporary files.") | |
668 | |
669 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
670 "*Template used to create temporary files when ftp-ing through a gateway. | |
671 Files starting with this prefix need to be accessible from BOTH the local | |
672 machine and the gateway machine, and need to have the SAME name on both | |
673 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
674 cross-mounted.") | |
675 | |
676 (defvar ange-ftp-netrc-filename "~/.netrc" | |
677 "*File in .netrc format to search for passwords.") | |
678 | |
679 (defvar ange-ftp-disable-netrc-security-check nil | |
680 "*If non-nil avoid checking permissions on the .netrc file.") | |
681 | |
682 (defvar ange-ftp-default-user nil | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
683 "*User name to use when none is specied in a file name. |
1106 | 684 If nil, then the name under which the user is logged in is used. |
685 If non-nil but not a string, the user is prompted for the name.") | |
686 | |
687 (defvar ange-ftp-default-password nil | |
688 "*Password to use when the user is the same as ange-ftp-default-user.") | |
689 | |
690 (defvar ange-ftp-default-account nil | |
691 "*Account password to use when the user is the same as ange-ftp-default-user.") | |
692 | |
1174 | 693 (defvar ange-ftp-generate-anonymous-password t |
1106 | 694 "*If t, use a password of user@host when logging in as the anonymous user. |
695 If a string then use that as the password. | |
696 If nil then prompt the user for a password.") | |
697 | |
698 (defvar ange-ftp-dumb-unix-host-regexp nil | |
7042 | 699 "*If non-nil, regexp matching hosts on which `dir' command lists directory.") |
1106 | 700 |
701 (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
|
702 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 703 "\\.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
|
704 "\\.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
|
705 "\\.taz$\\|\\.tgz$") |
1106 | 706 "*If a file matches this regexp then it is transferred in binary mode.") |
707 | |
708 (defvar ange-ftp-gateway-host nil | |
709 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
710 | |
711 (defvar ange-ftp-local-host-regexp ".*" | |
7042 | 712 "*Regexp selecting hosts which can be reached directly with ftp. |
713 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
1106 | 714 instead.") |
715 | |
716 (defvar ange-ftp-gateway-program-interactive nil | |
7042 | 717 "*If non-nil then the gateway program should give a shell prompt. |
718 Both telnet and rlogin do something like this.") | |
1106 | 719 |
720 (defvar ange-ftp-gateway-program (if (eq system-type 'hpux) "remsh" "rsh") | |
7042 | 721 "*Name of program to spawn a shell on the gateway machine. |
722 Valid candidates are rsh (remsh on hp-ux), telnet and rlogin. See | |
723 also the gateway variable above.") | |
1106 | 724 |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
725 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
7042 | 726 "*Regexp matching prompt after complete login sequence on gateway machine. |
727 A match for this means the shell is now awaiting input. Make this regexp as | |
1106 | 728 strict as possible; it shouldn't match *anything* at all except the user's |
729 initial prompt. The above string will fail under most SUN-3's since it | |
730 matches the login banner.") | |
731 | |
732 (defvar ange-ftp-gateway-setup-term-command | |
733 (if (eq system-type 'hpux) | |
734 "stty -onlcr -echo\n" | |
735 "stty -echo nl\n") | |
7042 | 736 "*Set up terminal after logging in to the gateway machine. |
737 This command should stop the terminal from echoing each command, and | |
738 arrange to strip out trailing ^M characters.") | |
1106 | 739 |
740 (defvar ange-ftp-smart-gateway nil | |
7042 | 741 "*Non-nil means the ftp gateway is smart. |
742 Don't bother telnetting, etc., just issue a user@host command instead.") | |
1106 | 743 |
744 (defvar ange-ftp-smart-gateway-port "21" | |
745 "*Port on gateway machine to use when smart gateway is in operation.") | |
746 | |
747 (defvar ange-ftp-send-hash t | |
748 "*If non-nil, send the HASH command to the FTP client.") | |
749 | |
750 (defvar ange-ftp-binary-hash-mark-size nil | |
751 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
752 If NIL, this variable will be locally overridden if the FTP client outputs a | |
753 suitable response to the HASH command. If non-NIL then this value takes | |
754 precedence over the local value.") | |
755 | |
756 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
757 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
758 This variable is buffer-local and will be locally overridden if the FTP client | |
759 outputs a suitable response to the HASH command.") | |
760 | |
761 (defvar ange-ftp-process-verbose t | |
762 "*If non-NIL then be chatty about interaction with the FTP process.") | |
763 | |
764 (defvar ange-ftp-ftp-program-name "ftp" | |
765 "*Name of FTP program to run.") | |
766 | |
767 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
768 "*Name of FTP program to run on gateway machine. | |
769 Some AT&T folks claim to use something called `pftp' here.") | |
770 | |
771 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
772 "*A list of arguments passed to the FTP program when started.") | |
773 | |
774 (defvar ange-ftp-nslookup-program nil | |
775 "*If non-NIL then a string naming nslookup program." ) | |
776 | |
777 (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
|
778 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 779 |
780 (defvar ange-ftp-retry-time 5 | |
7042 | 781 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
782 This might need to be increased for very slow connections.") | |
1106 | 783 |
784 (defvar ange-ftp-auto-save 0 | |
785 "If 1, allows ange-ftp files to be auto-saved. | |
786 If 0, suppresses auto-saving of ange-ftp files. | |
787 Don't use any other value.") | |
788 | |
789 ;;;; ------------------------------------------------------------ | |
790 ;;;; Hash table support. | |
791 ;;;; ------------------------------------------------------------ | |
792 | |
793 (require 'backquote) | |
794 | |
795 (defun ange-ftp-make-hashtable (&optional size) | |
796 "Make an obarray suitable for use as a hashtable. | |
797 SIZE, if supplied, should be a prime number." | |
798 (make-vector (or size 31) 0)) | |
799 | |
800 (defun ange-ftp-map-hashtable (fun tbl) | |
801 "Call FUNCTION on each key and value in HASHTABLE." | |
802 (mapatoms | |
803 (function | |
804 (lambda (sym) | |
805 (funcall fun (get sym 'key) (get sym 'val)))) | |
806 tbl)) | |
807 | |
808 (defmacro ange-ftp-make-hash-key (key) | |
809 "Convert KEY into a suitable key for a hashtable." | |
810 (` (if (stringp (, key)) | |
811 (, key) | |
812 (prin1-to-string (, key))))) | |
813 | |
814 (defun ange-ftp-get-hash-entry (key tbl) | |
815 "Return the value associated with KEY in HASHTABLE." | |
816 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
817 (and sym (get sym 'val)))) | |
818 | |
819 (defun ange-ftp-put-hash-entry (key val tbl) | |
820 "Record an association between KEY and VALUE in HASHTABLE." | |
821 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
822 (put sym 'val val) | |
823 (put sym 'key key))) | |
824 | |
825 (defun ange-ftp-del-hash-entry (key tbl) | |
826 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
827 (let* ((len (length tbl)) | |
828 (new-tbl (ange-ftp-make-hashtable len)) | |
829 (i (1- len))) | |
830 (ange-ftp-map-hashtable | |
831 (function | |
832 (lambda (k v) | |
833 (or (equal k key) | |
834 (ange-ftp-put-hash-entry k v new-tbl)))) | |
835 tbl) | |
836 (while (>= i 0) | |
837 (aset tbl i (aref new-tbl i)) | |
838 (setq i (1- i))) | |
839 tbl)) | |
840 | |
841 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
842 "Return whether there is an association for KEY in TABLE." | |
843 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
844 | |
845 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 846 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 847 (sort (all-completions "" tbl) |
848 (function string-lessp))) | |
849 | |
850 ;;;; ------------------------------------------------------------ | |
851 ;;;; Internal variables. | |
852 ;;;; ------------------------------------------------------------ | |
853 | |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
854 (defconst ange-ftp-version "$Revision: 1.54 $") |
1106 | 855 |
856 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
857 "Buffer name to hold directory listing data received from ftp process.") | |
858 | |
859 (defvar ange-ftp-netrc-modtime nil | |
860 "Last modified time of the netrc file from file-attributes.") | |
861 | |
862 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
863 "Hash table holding associations between HOST, USER pairs.") | |
864 | |
865 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
866 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
867 | |
868 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
869 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
870 | |
871 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
872 "Hash table for storing directories and their respective files.") | |
873 | |
874 (defvar ange-ftp-ls-cache-lsargs nil | |
875 "Last set of args used by ange-ftp-ls.") | |
876 | |
877 (defvar ange-ftp-ls-cache-file nil | |
878 "Last file passed to ange-ftp-ls.") | |
879 | |
880 (defvar ange-ftp-ls-cache-res nil | |
881 "Last result returned from ange-ftp-ls.") | |
882 | |
883 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
884 | |
885 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
886 | |
887 ;; These are local variables in each FTP process buffer. | |
888 (defvar ange-ftp-hash-mark-unit nil) | |
889 (defvar ange-ftp-hash-mark-count nil) | |
890 (defvar ange-ftp-xfer-size nil) | |
891 (defvar ange-ftp-process-string nil) | |
892 (defvar ange-ftp-process-result-line nil) | |
893 (defvar ange-ftp-process-busy nil) | |
894 (defvar ange-ftp-process-result nil) | |
895 (defvar ange-ftp-process-multi-skip nil) | |
896 (defvar ange-ftp-process-msg nil) | |
897 (defvar ange-ftp-process-continue nil) | |
898 (defvar ange-ftp-last-percent nil) | |
899 | |
900 ;; These variables are bound by one function and examined by another. | |
901 ;; Leave them void globally for error checking. | |
902 (defvar ange-ftp-this-file) | |
903 (defvar ange-ftp-this-dir) | |
904 (defvar ange-ftp-this-user) | |
905 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
906 (defvar ange-ftp-this-msg) |
1106 | 907 (defvar ange-ftp-completion-ignored-pattern) |
908 (defvar ange-ftp-trample-marker) | |
909 | |
910 ;; New error symbols. | |
911 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
912 ;; (put 'ftp-error 'error-message "FTP error") | |
913 | |
914 ;;; ------------------------------------------------------------ | |
915 ;;; Match-data support (stolen from Kyle I think) | |
916 ;;; ------------------------------------------------------------ | |
917 | |
918 (defmacro ange-ftp-save-match-data (&rest body) | |
919 "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
|
920 Also makes matching case-sensitive within BODY." |
1106 | 921 (let ((original (make-symbol "match-data")) |
922 case-fold-search) | |
923 (list | |
924 'let (list (list original '(match-data))) | |
925 (list 'unwind-protect | |
926 (cons 'progn body) | |
927 (list 'store-match-data original))))) | |
928 | |
929 (put 'ange-ftp-save-match-data 'lisp-indent-hook 0) | |
930 (put 'ange-ftp-save-match-data 'edebug-form-hook '(&rest form)) | |
931 | |
932 ;;; ------------------------------------------------------------ | |
933 ;;; Enhanced message support. | |
934 ;;; ------------------------------------------------------------ | |
935 | |
936 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
937 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
938 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 939 (let ((msg (apply (function format) fmt args)) |
940 (max (window-width (minibuffer-window)))) | |
941 (if (>= (length msg) max) | |
942 (setq msg (concat "> " (substring msg (- 3 max))))) | |
943 (message "%s" msg))) | |
944 | |
945 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
946 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
947 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
|
948 only return the directory part of FILE." |
1106 | 949 (ange-ftp-save-match-data |
950 (if (and default-directory | |
951 (string-match (concat "^" | |
952 (regexp-quote default-directory) | |
953 ".") file)) | |
954 (setq file (substring file (1- (match-end 0))))) | |
955 (if (and new | |
956 (string-equal (file-name-nondirectory file) | |
957 (file-name-nondirectory new))) | |
958 (setq file (file-name-directory file))) | |
959 (or file "./"))) | |
960 | |
961 ;;;; ------------------------------------------------------------ | |
962 ;;;; User / Host mapping support. | |
963 ;;;; ------------------------------------------------------------ | |
964 | |
965 (defun ange-ftp-set-user (host user) | |
966 "For a given HOST, set or change the default USER." | |
967 (interactive "sHost: \nsUser: ") | |
968 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
969 | |
970 (defun ange-ftp-get-user (host) | |
971 "Given a HOST, return the default USER." | |
972 (ange-ftp-parse-netrc) | |
973 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
974 (or user | |
975 (prog1 | |
976 (setq user | |
977 (cond ((stringp ange-ftp-default-user) | |
978 ;; We have a default name. Use it. | |
979 ange-ftp-default-user) | |
980 (ange-ftp-default-user | |
981 ;; Ask the user. | |
982 (let ((enable-recursive-minibuffers t)) | |
983 (read-string (format "User for %s: " host) | |
984 (user-login-name)))) | |
985 ;; Default to the user's login name. | |
986 (t | |
987 (user-login-name)))) | |
988 (ange-ftp-set-user host user))))) | |
989 | |
990 ;;;; ------------------------------------------------------------ | |
991 ;;;; Password support. | |
992 ;;;; ------------------------------------------------------------ | |
993 | |
994 (defun ange-ftp-read-passwd (prompt &optional default) | |
995 "Read a password, echoing `.' for each character typed. | |
996 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
997 Optional DEFAULT is password to start with." | |
998 (let ((pass (if default default "")) | |
999 (c 0) | |
1000 (echo-keystrokes 0) | |
1001 (cursor-in-echo-area t)) | |
1002 (while (progn (message "%s%s" | |
1003 prompt | |
1004 (make-string (length pass) ?.)) | |
1005 (setq c (read-char)) | |
1006 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1007 (if (= c ?\C-u) | |
1008 (setq pass "") | |
1009 (if (and (/= c ?\b) (/= c ?\177)) | |
1010 (setq pass (concat pass (char-to-string c))) | |
1011 (if (> (length pass) 0) | |
1012 (setq pass (substring pass 0 -1)))))) | |
1013 (message "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1014 (ange-ftp-repaint-minibuffer) |
1106 | 1015 pass)) |
1016 | |
1017 (defmacro ange-ftp-generate-passwd-key (host user) | |
1018 (` (concat (, host) "/" (, user)))) | |
1019 | |
1020 (defmacro ange-ftp-lookup-passwd (host user) | |
1021 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1022 ange-ftp-passwd-hashtable))) | |
1023 | |
1024 (defun ange-ftp-set-passwd (host user passwd) | |
1025 "For a given HOST and USER, set or change the associated PASSWORD." | |
1026 (interactive (list (read-string "Host: ") | |
1027 (read-string "User: ") | |
1028 (ange-ftp-read-passwd "Password: "))) | |
1029 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1030 passwd | |
1031 ange-ftp-passwd-hashtable)) | |
1032 | |
1033 (defun ange-ftp-get-host-with-passwd (user) | |
1034 "Given a USER, return a host we know the password for." | |
1035 (ange-ftp-parse-netrc) | |
1036 (catch 'found-one | |
1037 (ange-ftp-map-hashtable | |
1038 (function (lambda (host val) | |
1039 (if (ange-ftp-lookup-passwd host user) | |
1040 (throw 'found-one host)))) | |
1041 ange-ftp-user-hashtable) | |
1042 (ange-ftp-save-match-data | |
1043 (ange-ftp-map-hashtable | |
1044 (function | |
1045 (lambda (key value) | |
1046 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1047 (let ((host (substring key 0 (match-beginning 1)))) | |
1048 (if (and (string-equal user (substring key (match-end 1))) | |
1049 value) | |
1050 (throw 'found-one host)))))) | |
1051 ange-ftp-passwd-hashtable)) | |
1052 nil)) | |
1053 | |
1054 (defun ange-ftp-get-passwd (host user) | |
1055 "Return the password for specified HOST and USER, asking user if necessary." | |
1056 (ange-ftp-parse-netrc) | |
1057 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1058 ;; look up password in the hash table first; user might have overridden the |
1106 | 1059 ;; defaults. |
1060 (cond ((ange-ftp-lookup-passwd host user)) | |
1061 | |
1062 ;; see if default user and password set from the .netrc file. | |
1063 ((and (stringp ange-ftp-default-user) | |
1064 ange-ftp-default-password | |
1065 (string-equal user ange-ftp-default-user)) | |
1066 ange-ftp-default-password) | |
1067 | |
1068 ;; anonymous ftp password is handled specially since there is an | |
1069 ;; unwritten rule about how that is used on the Internet. | |
1070 ((and (or (string-equal user "anonymous") | |
1071 (string-equal user "ftp")) | |
1072 ange-ftp-generate-anonymous-password) | |
1073 (if (stringp ange-ftp-generate-anonymous-password) | |
1074 ange-ftp-generate-anonymous-password | |
1075 (concat (user-login-name) "@" (system-name)))) | |
1076 | |
1077 ;; see if same user has logged in to other hosts; if so then prompt | |
1078 ;; with the password that was used there. | |
1079 (t | |
1080 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1081 (passwd (if other | |
1082 | |
1083 ;; found another machine with the same user. | |
1084 ;; Try that account. | |
1085 (ange-ftp-read-passwd | |
1086 (format "passwd for %s@%s (same as %s@%s): " | |
1087 user host user other) | |
1088 (ange-ftp-lookup-passwd other user)) | |
1089 | |
1090 ;; I give up. Ask the user for the password. | |
1091 (ange-ftp-read-passwd | |
1092 (format "Password for %s@%s: " user host))))) | |
1093 (ange-ftp-set-passwd host user passwd) | |
1094 passwd)))) | |
1095 | |
1096 ;;;; ------------------------------------------------------------ | |
1097 ;;;; Account support | |
1098 ;;;; ------------------------------------------------------------ | |
1099 | |
1100 ;; Account passwords must be either specified in the .netrc file, or set | |
1101 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1102 ;; check to see whether the FTP process is actually prompting for an account | |
1103 ;; password. | |
1104 | |
1105 (defun ange-ftp-set-account (host user account) | |
1106 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1107 (interactive (list (read-string "Host: ") | |
1108 (read-string "User: ") | |
1109 (ange-ftp-read-passwd "Account password: "))) | |
1110 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1111 account | |
1112 ange-ftp-account-hashtable)) | |
1113 | |
1114 (defun ange-ftp-get-account (host user) | |
1115 "Given a HOST and USER, return the FTP account." | |
1116 (ange-ftp-parse-netrc) | |
1117 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1118 ange-ftp-account-hashtable) | |
1119 (and (stringp ange-ftp-default-user) | |
1120 (string-equal user ange-ftp-default-user) | |
1121 ange-ftp-default-account))) | |
1122 | |
1123 ;;;; ------------------------------------------------------------ | |
1124 ;;;; ~/.netrc support | |
1125 ;;;; ------------------------------------------------------------ | |
1126 | |
1127 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1128 "Return the filename that FILE references, following all symbolic links." |
1106 | 1129 (let (temp) |
1130 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1131 (setq file | |
1132 (if (file-name-absolute-p temp) | |
1133 temp | |
1134 (concat (file-name-directory file) temp))))) | |
1135 file) | |
1136 | |
7042 | 1137 ;; Move along current line looking for the value of the TOKEN. |
1138 ;; Valid separators between TOKEN and its value are commas and | |
1139 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1140 | |
1106 | 1141 (defun ange-ftp-parse-netrc-token (token limit) |
1142 (if (search-forward token limit t) | |
1143 (let (beg) | |
1144 (skip-chars-forward ", \t\r\n" limit) | |
1145 (if (eq (following-char) ?\") ;quoted token value | |
1146 (progn (forward-char 1) | |
1147 (setq beg (point)) | |
1148 (skip-chars-forward "^\"" limit) | |
1149 (forward-char 1) | |
1150 (buffer-substring beg (1- (point)))) | |
1151 (setq beg (point)) | |
1152 (skip-chars-forward "^, \t\r\n" limit) | |
1153 (buffer-substring beg (point)))))) | |
1154 | |
7042 | 1155 ;; Extract the values for the tokens `machine', `login', |
1156 ;; `password' and `account' in the current buffer. If successful, | |
1157 ;; record the information found. | |
1158 | |
1106 | 1159 (defun ange-ftp-parse-netrc-group () |
1160 (beginning-of-line) | |
1161 (let ((start (point)) | |
1162 (end (progn (re-search-forward "machine\\|default" | |
1163 (point-max) 'end 2) (point))) | |
1164 machine login password account) | |
1165 (goto-char start) | |
1166 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1167 login (ange-ftp-parse-netrc-token "login" end) | |
1168 password (ange-ftp-parse-netrc-token "password" end) | |
1169 account (ange-ftp-parse-netrc-token "account" end)) | |
1170 (if (and machine login) | |
1171 ;; found a `machine` token. | |
1172 (progn | |
1173 (ange-ftp-set-user machine login) | |
1174 (ange-ftp-set-passwd machine login password) | |
1175 (and account | |
1176 (ange-ftp-set-account machine login account))) | |
1177 (goto-char start) | |
1178 (if (search-forward "default" end t) | |
1179 ;; found a `default' token | |
1180 (progn | |
1181 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1182 password (ange-ftp-parse-netrc-token "password" end) | |
1183 account (ange-ftp-parse-netrc-token "account" end)) | |
1184 (and login | |
1185 (setq ange-ftp-default-user login)) | |
1186 (and password | |
1187 (setq ange-ftp-default-password password)) | |
1188 (and account | |
1189 (setq ange-ftp-default-account account))))) | |
1190 (goto-char end))) | |
1191 | |
7042 | 1192 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1193 ;; the correct permissions then extract the \`machine\', \`login\', | |
1194 ;; \`password\' and \`account\' information from within. | |
1195 | |
1106 | 1196 (defun ange-ftp-parse-netrc () |
1197 ;; We set this before actually doing it to avoid the possibility | |
1198 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1199 (interactive) | |
1200 (let* ((file (ange-ftp-chase-symlinks | |
1201 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1202 (attr (ange-ftp-real-file-attributes file))) | |
1203 (if (and attr ; file exists. | |
1204 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1205 (ange-ftp-save-match-data | |
1206 (if (or ange-ftp-disable-netrc-security-check | |
1207 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1208 (string-match ".r..------" (nth 8 attr)))) | |
1209 (save-excursion | |
1210 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1211 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1212 ;; with the bit of logic below we should be able to have | |
1213 ;; encrypted .netrc files. | |
1214 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1215 (ange-ftp-real-insert-file-contents file) | |
1216 (setq buffer-file-name file) | |
1217 (setq default-directory (file-name-directory file)) | |
1218 (normal-mode t) | |
1219 (mapcar 'funcall find-file-hooks) | |
1220 (setq buffer-file-name nil) | |
1221 (goto-char (point-min)) | |
1222 (while (not (eobp)) | |
1223 (ange-ftp-parse-netrc-group)) | |
1224 (kill-buffer (current-buffer))) | |
1225 (ange-ftp-message "%s either not owned by you or badly protected." | |
1226 ange-ftp-netrc-filename) | |
1227 (sit-for 1)) | |
1228 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1229 | |
7042 | 1230 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1231 ;; completion is done in the root directory. | |
1232 | |
1106 | 1233 (defun ange-ftp-generate-root-prefixes () |
1234 (ange-ftp-parse-netrc) | |
1235 (ange-ftp-save-match-data | |
1236 (let (res) | |
1237 (ange-ftp-map-hashtable | |
1238 (function | |
1239 (lambda (key value) | |
1240 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1241 (let ((host (substring key 0 (match-beginning 1))) | |
1242 (user (substring key (match-end 1)))) | |
1243 (setq res (cons (list (concat user "@" host ":")) | |
1244 res)))))) | |
1245 ange-ftp-passwd-hashtable) | |
1246 (ange-ftp-map-hashtable | |
1247 (function (lambda (host user) | |
1248 (setq res (cons (list (concat host ":")) | |
1249 res)))) | |
1250 ange-ftp-user-hashtable) | |
1251 (or res (list nil))))) | |
1252 | |
1253 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1254 ;;;; Remote file name syntax support. |
1106 | 1255 ;;;; ------------------------------------------------------------ |
1256 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1257 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1258 "Extract the Nth ftp file name component from NS." |
1106 | 1259 (` (let ((elt (nth (, n) (, ns)))) |
1260 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1261 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1262 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1263 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1264 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1265 |
7042 | 1266 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1267 ;; 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
|
1268 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1269 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1270 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1271 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1272 ange-ftp-ftp-name-res |
1106 | 1273 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1274 (if (string-match (car ange-ftp-name-format) name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1275 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1276 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1277 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1278 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1279 (if (zerop (length user)) |
1280 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1281 (list host user name)) |
1106 | 1282 nil))))) |
1283 | |
7042 | 1284 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1285 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1286 (defun ange-ftp-replace-name-component (fullname name) |
1106 | 1287 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1288 (if (string-match (car ange-ftp-name-format) fullname) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1289 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1290 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1291 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1292 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1293 (substring fullname (match-end elt))))))) |
1106 | 1294 |
1295 ;;;; ------------------------------------------------------------ | |
1296 ;;;; Miscellaneous utils. | |
1297 ;;;; ------------------------------------------------------------ | |
1298 | |
1299 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1300 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1301 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1302 (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
|
1303 "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
|
1304 (message nil)) |
1106 | 1305 |
7042 | 1306 ;; Return the name of the buffer that collects output from the ftp process |
1307 ;; connected to the given HOST and USER pair. | |
1106 | 1308 (defun ange-ftp-ftp-process-buffer (host user) |
1309 (concat "*ftp " user "@" host "*")) | |
1310 | |
7042 | 1311 ;; Display the last chunk of output from the ftp process for the given HOST |
1312 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1313 (defun ange-ftp-error (host user msg) |
1314 (let ((cur (selected-window)) | |
1315 (pop-up-windows t)) | |
1316 (pop-to-buffer | |
1317 (get-buffer-create | |
1318 (ange-ftp-ftp-process-buffer host user))) | |
1319 (goto-char (point-max)) | |
1320 (select-window cur)) | |
1321 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1322 | |
1323 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1324 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1325 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1326 (ange-ftp-ftp-name buffer-file-name)) |
1106 | 1327 (progn |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1328 (make-local-variable 'make-backup-files) |
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1329 (setq make-backup-files ange-ftp-make-backup-files) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
1330 (auto-save-mode ange-ftp-auto-save)))) |
1106 | 1331 |
1332 (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
|
1333 "Kill the FTP process associated with BUFFER. |
1233 | 1334 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1335 then kill the related ftp process." |
1336 (interactive "bKill FTP process associated with buffer: ") | |
1337 (if (null buffer) | |
1338 (setq buffer (current-buffer))) | |
1339 (let ((file (or (buffer-file-name) default-directory))) | |
1340 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1341 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1342 (if parsed |
1343 (let ((host (nth 0 parsed)) | |
1344 (user (nth 1 parsed))) | |
1345 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1346 | |
1347 (defun ange-ftp-quote-string (string) | |
1348 "Quote any characters in STRING that may confuse the ftp process." | |
1349 (apply (function concat) | |
1350 (mapcar (function | |
1351 (lambda (char) | |
1352 (if (or (<= char ? ) | |
1353 (> char ?\~) | |
1354 (= char ?\") | |
1355 (= char ?\\)) | |
1356 (vector ?\\ char) | |
1357 (vector char)))) | |
1358 string))) | |
1359 | |
1360 (defun ange-ftp-barf-if-not-directory (directory) | |
1361 (or (file-directory-p directory) | |
1362 (signal 'file-error | |
1363 (list "Opening directory" | |
1364 (if (file-exists-p directory) | |
1365 "not a directory" | |
1366 "no such file or directory") | |
1367 directory)))) | |
1368 | |
1369 ;;;; ------------------------------------------------------------ | |
1370 ;;;; FTP process filter support. | |
1371 ;;;; ------------------------------------------------------------ | |
1372 | |
1373 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1374 "Look at the given LINE from the ftp process PROC. |
1375 Try to categorize it into one of four categories: | |
1376 good, skip, fatal, or unknown." | |
1106 | 1377 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1378 (setq ange-ftp-xfer-size | |
1379 (ash (string-to-int (substring line | |
1380 (match-beginning 1) | |
1381 (match-end 1))) | |
1382 -10))) | |
1383 ((string-match ange-ftp-skip-msgs line) | |
1384 t) | |
1385 ((string-match ange-ftp-good-msgs line) | |
1386 (setq ange-ftp-process-busy nil | |
1387 ange-ftp-process-result t | |
1388 ange-ftp-process-result-line line)) | |
1389 ((string-match ange-ftp-fatal-msgs line) | |
1390 (delete-process proc) | |
1391 (setq ange-ftp-process-busy nil | |
1392 ange-ftp-process-result-line line)) | |
1393 ((string-match ange-ftp-multi-msgs line) | |
1394 (setq ange-ftp-process-multi-skip t)) | |
1395 (ange-ftp-process-multi-skip | |
1396 t) | |
1397 (t | |
1398 (setq ange-ftp-process-busy nil | |
1399 ange-ftp-process-result-line line)))) | |
1400 | |
1401 (defun ange-ftp-set-xfer-size (host user bytes) | |
1402 "Set the size of the next FTP transfer in bytes." | |
1403 (let ((proc (ange-ftp-get-process host user))) | |
1404 (if proc | |
1405 (let ((buf (process-buffer proc))) | |
1406 (if buf | |
1407 (save-excursion | |
1408 (set-buffer buf) | |
1409 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1410 | |
1411 (defun ange-ftp-process-handle-hash (str) | |
1412 "Remove hash marks from STRING and display count so far." | |
1413 (setq str (concat (substring str 0 (match-beginning 0)) | |
1414 (substring str (match-end 0))) | |
1415 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1416 (match-beginning 0)) | |
1417 ange-ftp-hash-mark-count)) | |
1418 (and ange-ftp-process-msg | |
1419 ange-ftp-process-verbose | |
1420 (not (eq (selected-window) (minibuffer-window))) | |
1421 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1422 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1423 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1424 ange-ftp-hash-mark-count) | |
1425 -6))) | |
1426 (if (zerop ange-ftp-xfer-size) | |
1427 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1428 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1429 ;; cut out the redisplay of identical %-age messages. | |
1430 (if (not (eq percent ange-ftp-last-percent)) | |
1431 (progn | |
1432 (setq ange-ftp-last-percent percent) | |
1433 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1434 str) | |
1435 | |
7042 | 1436 ;; Call the function specified by CONT. CONT can be either a function |
1437 ;; or a list of a function and some args. The first two parameters | |
1438 ;; passed to the function will be RESULT and LINE. The remaining args | |
1439 ;; will be taken from CONT if a list was passed. | |
1440 | |
1106 | 1441 (defun ange-ftp-call-cont (cont result line) |
1442 (if cont | |
1443 (if (and (listp cont) | |
1444 (not (eq (car cont) 'lambda))) | |
1445 (apply (car cont) result line (cdr cont)) | |
1446 (funcall cont result line)))) | |
1447 | |
7042 | 1448 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1449 ;; on to ange-ftp-process-handle-line to deal with. | |
1450 | |
1106 | 1451 (defun ange-ftp-process-filter (proc str) |
1452 (let ((buffer (process-buffer proc)) | |
1453 (old-buffer (current-buffer))) | |
1454 | |
1455 ;; see if the buffer is still around... it could have been deleted. | |
1456 (if (buffer-name buffer) | |
1457 (unwind-protect | |
1458 (ange-ftp-save-match-data | |
1459 (set-buffer (process-buffer proc)) | |
1460 | |
1461 ;; handle hash mark printing | |
1462 (and ange-ftp-hash-mark-unit | |
1463 ange-ftp-process-busy | |
1464 (string-match "^#+$" str) | |
1465 (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
|
1466 (comint-output-filter proc str) |
1106 | 1467 (if ange-ftp-process-busy |
1468 (progn | |
1469 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1470 str)) | |
1471 | |
1472 ;; if we gave an empty password to the USER command earlier | |
1473 ;; then we should send a null password now. | |
1474 (if (string-match "Password: *$" ange-ftp-process-string) | |
1475 (send-string proc "\n")))) | |
1476 (while (and ange-ftp-process-busy | |
1477 (string-match "\n" ange-ftp-process-string)) | |
1478 (let ((line (substring ange-ftp-process-string | |
1479 0 | |
1480 (match-beginning 0)))) | |
1481 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1482 (match-end 0))) | |
1483 (while (string-match "^ftp> *" line) | |
1484 (setq line (substring line (match-end 0)))) | |
1485 (ange-ftp-process-handle-line line proc))) | |
1486 | |
1487 ;; has the ftp client finished? if so then do some clean-up | |
1488 ;; actions. | |
1489 (if (not ange-ftp-process-busy) | |
1490 (progn | |
1491 ;; reset the xfer size | |
1492 (setq ange-ftp-xfer-size 0) | |
1493 | |
1494 ;; issue the "done" message since we've finished. | |
1495 (if (and ange-ftp-process-msg | |
1496 ange-ftp-process-verbose | |
1497 ange-ftp-process-result) | |
1498 (progn | |
1499 (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
|
1500 (ange-ftp-repaint-minibuffer) |
1106 | 1501 (setq ange-ftp-process-msg nil))) |
1502 | |
1503 ;; is there a continuation we should be calling? if so, | |
1504 ;; we'd better call it, making sure we only call it once. | |
1505 (if ange-ftp-process-continue | |
1506 (let ((cont ange-ftp-process-continue)) | |
1507 (setq ange-ftp-process-continue nil) | |
1508 (ange-ftp-call-cont cont | |
1509 ange-ftp-process-result | |
1510 ange-ftp-process-result-line)))))) | |
1511 (set-buffer old-buffer))))) | |
1512 | |
1513 (defun ange-ftp-process-sentinel (proc str) | |
1514 "When ftp process changes state, nuke all file-entries in cache." | |
1515 (ange-ftp-save-match-data | |
1516 (let ((name (process-name proc))) | |
1517 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name) | |
1518 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
1519 (host (substring name (match-beginning 2) (match-end 2)))) | |
1520 (ange-ftp-wipe-file-entries host user)))) | |
1521 (setq ange-ftp-ls-cache-file nil))) | |
1522 | |
1523 ;;;; ------------------------------------------------------------ | |
1524 ;;;; Gateway support. | |
1525 ;;;; ------------------------------------------------------------ | |
1526 | |
1527 (defun ange-ftp-use-gateway-p (host) | |
1528 "Returns whether to access this host via a normal (non-smart) gateway." | |
1529 ;; yes, I know that I could simplify the following expression, but it is | |
1530 ;; clearer (to me at least) this way. | |
1531 (and (not ange-ftp-smart-gateway) | |
1532 (ange-ftp-save-match-data | |
1533 (not (string-match ange-ftp-local-host-regexp host))))) | |
1534 | |
1535 (defun ange-ftp-use-smart-gateway-p (host) | |
1536 "Returns whether to access this host via a smart gateway." | |
1537 (and ange-ftp-smart-gateway | |
1538 (ange-ftp-save-match-data | |
1539 (not (string-match ange-ftp-local-host-regexp host))))) | |
1540 | |
1541 | |
1542 ;;; ------------------------------------------------------------ | |
1543 ;;; Temporary file location and deletion... | |
1544 ;;; ------------------------------------------------------------ | |
1545 | |
1546 (defvar ange-ftp-tmp-name-files ()) | |
1547 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1548 (defvar ange-ftp-pid nil) | |
1549 | |
1550 (defun ange-ftp-get-pid () | |
1551 "Half-hearted attempt to get the current process's id." | |
1552 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1553 | |
1554 (defun ange-ftp-make-tmp-name (host) | |
1555 "This routine will return the name of a new file." | |
1556 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1557 ange-ftp-gateway-tmp-name-template | |
1558 ange-ftp-tmp-name-template)) | |
1559 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1560 (start ?a) | |
1561 file entry) | |
1562 (while | |
1563 (progn | |
1564 (setq file (format "%s%c%s" template start pid)) | |
1565 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1566 (or (memq entry ange-ftp-tmp-name-files) | |
1567 (ange-ftp-real-file-exists-p file))) | |
1568 (if (> (setq start (1+ start)) ?z) | |
1569 (progn | |
1570 (setq template (concat template "X")) | |
1571 (setq start ?a)))) | |
1572 (setq ange-ftp-tmp-name-files | |
1573 (cons entry ange-ftp-tmp-name-files)) | |
1574 file)) | |
1575 | |
1576 (defun ange-ftp-del-tmp-name (temp) | |
1577 (setq ange-ftp-tmp-name-files | |
1578 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1579 ange-ftp-tmp-name-files)) | |
1580 (condition-case () | |
1581 (ange-ftp-real-delete-file temp) | |
1582 (error nil))) | |
1583 | |
1584 ;;;; ------------------------------------------------------------ | |
1585 ;;;; Interactive gateway program support. | |
1586 ;;;; ------------------------------------------------------------ | |
1587 | |
1588 (defvar ange-ftp-gwp-running t) | |
1589 (defvar ange-ftp-gwp-status nil) | |
1590 | |
1591 (defun ange-ftp-gwp-sentinel (proc str) | |
1592 (setq ange-ftp-gwp-running nil)) | |
1593 | |
1594 (defun ange-ftp-gwp-filter (proc str) | |
1595 (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
|
1596 (comint-output-filter proc str) |
1106 | 1597 (cond ((string-match "login: *$" str) |
1598 (send-string proc | |
1599 (concat | |
1600 (let ((ange-ftp-default-user t)) | |
1601 (ange-ftp-get-user ange-ftp-gateway-host)) | |
1602 "\n"))) | |
1603 ((string-match "Password: *$" str) | |
1604 (send-string proc | |
1605 (concat | |
1606 (ange-ftp-get-passwd ange-ftp-gateway-host | |
1607 (ange-ftp-get-user | |
1608 ange-ftp-gateway-host)) | |
1609 "\n"))) | |
1610 ((string-match ange-ftp-gateway-fatal-msgs str) | |
1611 (delete-process proc) | |
1612 (setq ange-ftp-gwp-running nil)) | |
1613 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1614 (setq ange-ftp-gwp-running nil | |
1615 ange-ftp-gwp-status t))))) | |
1616 | |
1617 (defun ange-ftp-gwp-start (host user name args) | |
1618 "Login to the gateway machine and fire up an ftp process." | |
1619 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1620 ;; It would be nice to make process-connection-type nil, |
1621 ;; but that doesn't work: ftp never responds. | |
1622 ;; Can anyone find a fix for that? | |
1623 (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
|
1624 (start-process name name |
7042 | 1625 ange-ftp-gateway-program |
1626 ange-ftp-gateway-host))) | |
1106 | 1627 (ftp (mapconcat (function identity) args " "))) |
1628 (process-kill-without-query proc) | |
1629 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1630 (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
|
1631 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1632 (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
|
1633 (internal-ange-ftp-mode) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1634 (set-marker (process-mark proc) (point))) |
1106 | 1635 (setq ange-ftp-gwp-running t |
1636 ange-ftp-gwp-status nil) | |
1637 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1638 (while ange-ftp-gwp-running ;perform login sequence | |
1639 (accept-process-output proc)) | |
1640 (if (not ange-ftp-gwp-status) | |
1641 (ange-ftp-error host user "unable to login to gateway")) | |
1642 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1643 (setq ange-ftp-gwp-running t | |
1644 ange-ftp-gwp-status nil) | |
1645 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1646 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1647 (accept-process-output proc)) | |
1648 (if (not ange-ftp-gwp-status) | |
1649 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1650 (setq ange-ftp-gwp-running t | |
1651 ange-ftp-gwp-status nil) | |
1652 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1653 proc)) | |
1654 | |
1655 ;;;; ------------------------------------------------------------ | |
1656 ;;;; Support for sending commands to the ftp process. | |
1657 ;;;; ------------------------------------------------------------ | |
1658 | |
1659 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1660 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1661 MSG is an optional message to output before and after the command. | |
1662 If CONT is non-NIL then it is either a function or a list of function and | |
1663 some arguments. The function will be called when the ftp command has completed. | |
1664 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1665 is whether the command was successful, and LINE is the line from the FTP | |
1666 process that caused the command to complete. | |
1667 If NOWAIT is given then the routine will return immediately the command has | |
1668 been queued with no result. CONT will still be called, however." | |
1669 (if (memq (process-status proc) '(run open)) | |
1670 (save-excursion | |
1671 (set-buffer (process-buffer proc)) | |
1672 (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
|
1673 ;; 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
|
1674 ;; 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
|
1675 ;; 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
|
1676 ;; 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
|
1677 ;; 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
|
1678 ;; 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
|
1679 (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
|
1680 (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
|
1681 (accept-process-output))) |
1106 | 1682 (setq ange-ftp-process-string "" |
1683 ange-ftp-process-result-line "" | |
1684 ange-ftp-process-busy t | |
1685 ange-ftp-process-result nil | |
1686 ange-ftp-process-multi-skip nil | |
1687 ange-ftp-process-msg msg | |
1688 ange-ftp-process-continue cont | |
1689 ange-ftp-hash-mark-count 0 | |
1690 ange-ftp-last-percent -1 | |
1691 cmd (concat cmd "\n")) | |
1692 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1693 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1694 (move-marker comint-last-input-start (point)) |
1106 | 1695 ;; don't insert the password into the buffer on the USER command. |
1696 (ange-ftp-save-match-data | |
1697 (if (string-match "^user \"[^\"]*\"" cmd) | |
1698 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1699 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1700 (move-marker comint-last-input-end (point)) |
1106 | 1701 (send-string proc cmd) |
1702 (set-marker (process-mark proc) (point)) | |
1703 (if nowait | |
1704 nil | |
1705 ;; hang around for command to complete | |
1706 (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
|
1707 ;; 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
|
1708 ;; 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
|
1709 (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
|
1710 (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
|
1711 (accept-process-output proc))) |
1106 | 1712 (if cont |
1713 nil ;cont has already been called | |
1714 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1715 | |
1716 (defun ange-ftp-nslookup-host (host) | |
1717 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1718 (interactive "sHost: ") | |
1719 (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
|
1720 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1721 (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
|
1722 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1723 exec-directory)) |
7042 | 1724 ;; It would be nice to make process-connection-type nil, |
1725 ;; but that doesn't work: ftp never responds. | |
1726 ;; Can anyone find a fix for that? | |
1727 (proc (let ((process-connection-type t)) | |
1728 (start-process " *nslookup*" " *nslookup*" | |
1729 ange-ftp-nslookup-program host))) | |
1106 | 1730 (res host)) |
1731 (process-kill-without-query proc) | |
1732 (save-excursion | |
1733 (set-buffer (process-buffer proc)) | |
1734 (while (memq (process-status proc) '(run open)) | |
1735 (accept-process-output proc)) | |
1736 (goto-char (point-min)) | |
1737 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1738 (setq res (buffer-substring (match-beginning 1) | |
1739 (match-end 1)))) | |
1740 (kill-buffer (current-buffer))) | |
1741 res) | |
1742 host)) | |
1743 | |
1744 (defun ange-ftp-start-process (host user name) | |
1745 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1746 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1747 on the gateway machine to do the ftp instead." | |
1748 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
1749 (ftp-prog (if use-gateway | |
1750 ange-ftp-gateway-ftp-program-name | |
1751 ange-ftp-ftp-program-name)) | |
1752 (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
|
1753 ;; 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
|
1754 ;; 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
|
1755 ;; 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
|
1756 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1757 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1758 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1759 (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
|
1760 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1761 exec-directory)) |
1106 | 1762 proc) |
7042 | 1763 ;; It would be nice to make process-connection-type nil, |
1764 ;; but that doesn't work: ftp never responds. | |
1765 ;; Can anyone find a fix for that? | |
1766 (let ((process-connection-type t)) | |
1767 (if use-gateway | |
1768 (if ange-ftp-gateway-program-interactive | |
1769 (setq proc (ange-ftp-gwp-start host user name args)) | |
1770 (setq proc (apply 'start-process name name | |
1771 (append (list ange-ftp-gateway-program | |
1772 ange-ftp-gateway-host) | |
1773 args)))) | |
1774 (setq proc (apply 'start-process name name args)))) | |
1106 | 1775 (process-kill-without-query proc) |
1776 (save-excursion | |
1777 (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
|
1778 (internal-ange-ftp-mode)) |
1106 | 1779 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1780 (set-process-filter proc (function ange-ftp-process-filter)) | |
1781 (accept-process-output proc) ;wait for ftp startup message | |
1782 proc)) | |
1783 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1784 (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
|
1785 "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
|
1786 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1787 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1788 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1789 (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
|
1790 (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
|
1791 (setq mode-name "Internal Ange-ftp") |
1106 | 1792 (let ((proc (get-buffer-process (current-buffer)))) |
1793 (goto-char (point-max)) | |
1794 (set-marker (process-mark proc) (point)) | |
1795 (make-local-variable 'ange-ftp-process-string) | |
1796 (setq ange-ftp-process-string "") | |
1797 (make-local-variable 'ange-ftp-process-busy) | |
1798 (make-local-variable 'ange-ftp-process-result) | |
1799 (make-local-variable 'ange-ftp-process-msg) | |
1800 (make-local-variable 'ange-ftp-process-multi-skip) | |
1801 (make-local-variable 'ange-ftp-process-result-line) | |
1802 (make-local-variable 'ange-ftp-process-continue) | |
1803 (make-local-variable 'ange-ftp-hash-mark-count) | |
1804 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1805 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1806 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1807 (make-local-variable 'ange-ftp-xfer-size) | |
1808 (make-local-variable 'ange-ftp-last-percent) | |
1809 (setq ange-ftp-hash-mark-count 0) | |
1810 (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
|
1811 (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
|
1812 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1813 (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
|
1814 (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
|
1815 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1816 |
1817 (defun ange-ftp-smart-login (host user pass account proc) | |
1818 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1819 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1820 host specified in ``ange-ftp-gateway-host''." | |
1821 (let ((result (ange-ftp-raw-send-cmd | |
1822 proc | |
1823 (format "open %s %s" | |
1824 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1825 ange-ftp-smart-gateway-port) | |
1826 (format "Opening FTP connection to %s via %s" | |
1827 host | |
1828 ange-ftp-gateway-host)))) | |
1829 (or (car result) | |
1830 (ange-ftp-error host user | |
1831 (concat "OPEN request failed: " | |
1832 (cdr result)))) | |
1833 (setq result (ange-ftp-raw-send-cmd | |
1834 proc (format "user \"%s\"@%s %s %s" | |
1835 user | |
1836 (ange-ftp-nslookup-host host) | |
1837 pass | |
1838 account) | |
1839 (format "Logging in as user %s@%s" | |
1840 user host))) | |
1841 (or (car result) | |
1842 (progn | |
1843 (ange-ftp-set-passwd host user nil) ; reset password | |
1844 (ange-ftp-set-account host user nil) ; reset account | |
1845 (ange-ftp-error host user | |
1846 (concat "USER request failed: " | |
1847 (cdr result))))))) | |
1848 | |
1849 (defun ange-ftp-normal-login (host user pass account proc) | |
1850 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1851 PROC is the process to the FTP-client." | |
1852 (let ((result (ange-ftp-raw-send-cmd | |
1853 proc | |
1854 (format "open %s" (ange-ftp-nslookup-host host)) | |
1855 (format "Opening FTP connection to %s" host)))) | |
1856 (or (car result) | |
1857 (ange-ftp-error host user | |
1858 (concat "OPEN request failed: " | |
1859 (cdr result)))) | |
1860 (setq result (ange-ftp-raw-send-cmd | |
1861 proc | |
1862 (format "user \"%s\" %s %s" user pass account) | |
1863 (format "Logging in as user %s@%s" user host))) | |
1864 (or (car result) | |
1865 (progn | |
1866 (ange-ftp-set-passwd host user nil) ;reset password. | |
1867 (ange-ftp-set-account host user nil) ;reset account. | |
1868 (ange-ftp-error host user | |
1869 (concat "USER request failed: " | |
1870 (cdr result))))))) | |
1871 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1872 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1873 (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
|
1874 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1875 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1876 | |
1877 (defun ange-ftp-guess-hash-mark-size (proc) | |
1878 (if ange-ftp-send-hash | |
1879 (save-excursion | |
1880 (set-buffer (process-buffer proc)) | |
1881 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1882 (result (car status)) | |
1883 (line (cdr status))) | |
1884 (ange-ftp-save-match-data | |
1885 (if (string-match ange-ftp-hash-mark-msgs line) | |
1886 (let ((size (string-to-int | |
1887 (substring line | |
1888 (match-beginning 1) | |
1889 (match-end 1))))) | |
1890 (setq ange-ftp-ascii-hash-mark-size size | |
1891 ange-ftp-hash-mark-unit (ash size -4)) | |
1892 | |
1893 ;; if a default value for this is set, use that value. | |
1894 (or ange-ftp-binary-hash-mark-size | |
1895 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1896 | |
1897 (defun ange-ftp-get-process (host user) | |
7042 | 1898 "Return an FTP subprocess connected to HOST and logged in as USER. |
1899 Create a new process if needed." | |
1106 | 1900 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
1901 (proc (get-process name))) | |
1902 (if (and proc (memq (process-status proc) '(run open))) | |
1903 proc | |
1904 (let ((pass (ange-ftp-quote-string | |
1905 (ange-ftp-get-passwd host user))) | |
1906 (account (ange-ftp-quote-string | |
1907 (ange-ftp-get-account host user)))) | |
1908 ;; grab a suitable process. | |
1909 (setq proc (ange-ftp-start-process host user name)) | |
1910 | |
1911 ;; login to FTP server. | |
1912 (if (ange-ftp-use-smart-gateway-p host) | |
1913 (ange-ftp-smart-login host user pass account proc) | |
1914 (ange-ftp-normal-login host user pass account proc)) | |
1915 | |
1916 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1917 ;; fatal if this command fails. | |
1918 (ange-ftp-guess-hash-mark-size proc) | |
1919 | |
1920 ;; Guess at the host type. | |
1921 (ange-ftp-guess-host-type host user) | |
1922 | |
1923 ;; Run any user-specified hooks. Note that proc, host and user are | |
1924 ;; dynamically bound at this point. | |
1925 (run-hooks 'ange-ftp-process-startup-hook)) | |
1926 proc))) | |
1927 | |
1928 ;; Variables for caching host and host-type | |
1929 (defvar ange-ftp-host-cache nil) | |
1930 (defvar ange-ftp-host-type-cache nil) | |
1931 | |
1932 ;; If ange-ftp-host-type is called with the optional user | |
1933 ;; argument, it will attempt to guess the host type by connecting | |
1934 ;; as user, if necessary. For efficiency, I have tried to give this | |
1935 ;; optional second argument only when necessary. Have I missed any calls | |
1936 ;; to ange-ftp-host-type where it should have been supplied? | |
1937 | |
1938 (defun ange-ftp-host-type (host &optional user) | |
1939 "Return a symbol which represents the type of the HOST given. | |
1940 If the optional argument USER is given, attempts to guess the | |
1941 host-type by logging in as USER." | |
1942 (if (eq host ange-ftp-host-cache) | |
1943 ange-ftp-host-type-cache | |
1944 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
1945 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
1946 ange-ftp-host-type-cache | |
1947 (setq ange-ftp-host-cache host | |
1948 ange-ftp-host-type-cache | |
1949 (cond ((ange-ftp-dumb-unix-host host) | |
1950 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1951 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1952 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1953 ;; 'vos) |
1106 | 1954 ((and (fboundp 'ange-ftp-vms-host) |
1955 (ange-ftp-vms-host host)) | |
1956 'vms) | |
1957 ((and (fboundp 'ange-ftp-mts-host) | |
1958 (ange-ftp-mts-host host)) | |
1959 'mts) | |
1960 ((and (fboundp 'ange-ftp-cms-host) | |
1961 (ange-ftp-cms-host host)) | |
1962 'cms) | |
1963 (t | |
1964 'unix)))))) | |
1965 | |
1966 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
1967 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
1968 ;; without sacrificing speed. Also, having separate variables | |
1969 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
1970 ;; set an alist to indicate that a host is of a given type. Even with | |
1971 ;; automatic host type recognition, setting a regexp is still a good idea | |
1972 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
1973 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1974 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 1975 "Alist saying how to convert file name to the host's syntax. |
1976 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
|
1977 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 1978 TYPE.") |
1979 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1980 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 1981 "Alist saying how to convert directory name to the host's syntax. |
1982 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
|
1983 which can change UNIX directory name into a directory name more suitable |
1106 | 1984 for a host of type TYPE.") |
1985 | |
1986 ;; *** Perhaps the sense of this variable should be inverted, since there | |
1987 ;; *** is only 1 host type that can take ls-style listing options. | |
1988 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
1989 "List of host types that can't take UNIX ls-style listing options.") | |
1990 | |
1991 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
1992 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
1993 MSG is an optional status message to be output before and after issuing the | |
1994 command. | |
1995 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
1996 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1997 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 1998 ;; capability. |
1999 (let ((cmd0 (car cmd)) | |
2000 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2001 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2002 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2003 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2004 cmd2 cmd3 host-type fix-name-func) |
1106 | 2005 |
2006 (cond | |
2007 | |
2008 ;; pwd case (We don't care what host-type.) | |
2009 ((null cmd1)) | |
2010 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2011 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2012 ((progn |
2013 (setq cmd2 (nth 2 cmd) | |
2014 host-type (ange-ftp-host-type host user)) | |
2015 ;; This will trigger an FTP login, if one doesn't exist | |
2016 (eq cmd0 'dir)) | |
2017 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2018 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2019 'identity) |
2020 cmd1) | |
2021 cmd3 (nth 3 cmd)) | |
2022 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2023 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2024 ;; be happy.) | |
2025 (and (eq host-type 'unix) | |
2026 (string-match "/$" cmd1) | |
2027 (not (string-match "R" cmd3)) | |
2028 (setq cmd1 (concat cmd1 "."))) | |
2029 ;; If the remote ls can take switches, put them in | |
2030 (or (memq host-type ange-ftp-dumb-host-types) | |
2031 (setq cmd0 'ls | |
2032 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2033 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2034 ;; 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
|
2035 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2036 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2037 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2038 'identity)) |
1106 | 2039 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2040 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2041 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2042 ;; Second argument is the remote name |
1106 | 2043 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2044 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2045 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2046 ;; Both arguments are remote names |
1106 | 2047 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2048 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2049 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2050 |
2051 ;; Turn the command into one long string | |
2052 (setq cmd0 (symbol-name cmd0)) | |
2053 (setq cmd (concat cmd0 | |
2054 (and cmd1 (concat " " cmd1)) | |
2055 (and cmd2 (concat " " cmd2)))) | |
2056 | |
2057 ;; Actually send the resulting command. | |
2058 (let (afsc-result | |
2059 afsc-line) | |
2060 (ange-ftp-raw-send-cmd | |
2061 (ange-ftp-get-process host user) | |
2062 cmd | |
2063 msg | |
2064 (list | |
2065 (function (lambda (result line host user | |
2066 cmd msg cont nowait) | |
2067 (or cont | |
2068 (setq afsc-result result | |
2069 afsc-line line)) | |
2070 (if result | |
2071 (ange-ftp-call-cont cont result line) | |
2072 (ange-ftp-raw-send-cmd | |
2073 (ange-ftp-get-process host user) | |
2074 cmd | |
2075 msg | |
2076 (list | |
2077 (function (lambda (result line cont) | |
2078 (or cont | |
2079 (setq afsc-result result | |
2080 afsc-line line)) | |
2081 (ange-ftp-call-cont cont result line))) | |
2082 cont) | |
2083 nowait)))) | |
2084 host user cmd msg cont nowait) | |
2085 nowait) | |
2086 | |
2087 (if nowait | |
2088 nil | |
2089 (if cont | |
2090 nil | |
2091 (cons afsc-result afsc-line)))))) | |
2092 | |
2093 ;; It might be nice to message users about the host type identified, | |
2094 ;; but there is so much other messaging going on, it would not be | |
2095 ;; seen. No point in slowing things down just so users can read | |
2096 ;; a host type message. | |
2097 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2098 (defconst ange-ftp-cms-name-template |
1106 | 2099 (concat |
2100 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2101 "[-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
|
2102 (defconst ange-ftp-vms-name-template |
1106 | 2103 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2104 (defconst ange-ftp-mts-name-template |
1106 | 2105 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2106 | |
2107 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2108 "Guess at the the host type of HOST. |
2109 Works by doing a pwd and examining the directory syntax." | |
1106 | 2110 (let ((host-type (ange-ftp-host-type host)) |
2111 (key (concat host "/" user "/~"))) | |
2112 (if (eq host-type 'unix) | |
2113 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2114 (ange-ftp-save-match-data | |
2115 (let* ((result (ange-ftp-get-pwd host user)) | |
2116 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2117 fix-name-func) |
1106 | 2118 (cond ((null dir) |
2119 (message "Warning! Unable to get home directory") | |
2120 (sit-for 1) | |
2121 (if (string-match | |
2122 "^450 No current working directory defined$" | |
2123 (cdr result)) | |
2124 | |
2125 ;; We'll assume that if pwd bombs with this | |
2126 ;; error message, then it's CMS. | |
2127 (progn | |
2128 (ange-ftp-add-cms-host host) | |
2129 (setq ange-ftp-host-cache host | |
2130 ange-ftp-host-type-cache 'cms)))) | |
2131 | |
2132 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2133 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2134 (ange-ftp-add-vms-host host) |
2135 ;; The add-host functions clear the host type cache. | |
2136 ;; Therefore, need to set the cache afterwards. | |
2137 (setq ange-ftp-host-cache host | |
2138 ange-ftp-host-type-cache 'vms)) | |
2139 | |
2140 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2141 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2142 (ange-ftp-add-mts-host host) |
2143 (setq ange-ftp-host-cache host | |
2144 ange-ftp-host-type-cache 'mts)) | |
2145 | |
2146 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2147 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2148 (ange-ftp-add-cms-host host) |
2149 (setq ange-ftp-host-cache host | |
2150 ange-ftp-host-type-cache 'cms)) | |
2151 | |
2152 ;; assume UN*X | |
2153 (t | |
2154 (setq ange-ftp-host-cache host | |
2155 ange-ftp-host-type-cache 'unix))) | |
2156 | |
2157 ;; Now that we have done a pwd, might as well put it in | |
2158 ;; the expand-dir hashtable. | |
2159 (let ((ange-ftp-this-user user) | |
2160 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2161 (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
|
2162 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2163 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2164 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2165 (ange-ftp-put-hash-entry key dir |
2166 ange-ftp-expand-dir-hashtable)))) | |
2167 | |
2168 ;; In the special case of CMS make sure that know the | |
2169 ;; expansion of the home minidisk now, because we will | |
2170 ;; be doing a lot of cd's. | |
2171 (if (and (eq host-type 'cms) | |
2172 (not (ange-ftp-hash-entry-exists-p | |
2173 key ange-ftp-expand-dir-hashtable))) | |
2174 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2175 (if dir | |
2176 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2177 ange-ftp-expand-dir-hashtable) | |
2178 (message "Warning! Unable to get home directory") | |
2179 (sit-for 1)))))) | |
2180 | |
2181 | |
2182 ;;;; ------------------------------------------------------------ | |
2183 ;;;; Remote file and directory listing support. | |
2184 ;;;; ------------------------------------------------------------ | |
2185 | |
7042 | 2186 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2187 ;; to take switch arguments. | |
1106 | 2188 (defun ange-ftp-dumb-unix-host (host) |
2189 (and ange-ftp-dumb-unix-host-regexp | |
2190 (ange-ftp-save-match-data | |
2191 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
2192 | |
2193 (defun ange-ftp-add-dumb-unix-host (host) | |
2194 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2195 (interactive | |
2196 (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
|
2197 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2198 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2199 (if (not (ange-ftp-dumb-unix-host host)) |
2200 (setq ange-ftp-dumb-unix-host-regexp | |
2201 (concat "^" (regexp-quote host) "$" | |
2202 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2203 ange-ftp-dumb-unix-host-regexp) | |
2204 ange-ftp-host-cache nil))) | |
2205 | |
2206 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2207 "Alist saying how to parse directory listings for certain OS types. |
2208 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2209 which can parse the output from a DIR listing for a host of type TYPE.") |
2210 | |
2211 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2212 ;; an error if file is not an ange-ftp-name |
1106 | 2213 ;; (This should never happen.) |
2214 ;; an error if either the listing is unreadable or there is an ftp error. | |
2215 ;; the listing (a string), if everything works. | |
2216 ;; | |
2217 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 ;; an error if not an ange-ftp-name |
1106 | 2219 ;; error if listing is unreable (most likely caused by a slow connection) |
2220 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2221 ;; directory on a remote unix machine usually (except | |
2222 ;; maybe for dumb hosts) returns an ls error, but no | |
2223 ;; ftp error, if the same is done on a VMS machine, | |
2224 ;; an ftp error is returned. Need to trap the error | |
2225 ;; so we can go on and try to list the parent.) | |
2226 ;; the listing, if everything works. | |
2227 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2228 ;; 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
|
2229 ;; 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
|
2230 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2231 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2232 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2233 "Return the output of an `DIR' or `ls' command done over ftp. |
2234 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2235 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2236 away in the internal cache." | |
2237 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2238 ;; full directory listings. | |
2239 (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
|
2240 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2241 (if parsed |
2242 (let* ((host (nth 0 parsed)) | |
2243 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2244 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2245 (key (directory-file-name ange-ftp-this-file)) |
2246 (host-type (ange-ftp-host-type host user)) | |
2247 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2248 result | |
2249 temp | |
2250 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2251 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2252 (setq name |
1106 | 2253 (ange-ftp-real-file-name-as-directory |
2254 (ange-ftp-expand-dir host user "~")))) | |
2255 (if (and ange-ftp-ls-cache-file | |
2256 (string-equal key ange-ftp-ls-cache-file) | |
2257 ;; Don't care about lsargs for dumb hosts. | |
2258 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2259 ange-ftp-ls-cache-res | |
2260 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2261 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2262 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2263 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2264 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2265 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2266 (unwind-protect |
2267 (if (car (setq result (ange-ftp-send-cmd | |
2268 host | |
2269 user | |
2270 lscmd | |
2271 (format "Listing %s" | |
2272 (ange-ftp-abbreviate-filename | |
2273 ange-ftp-this-file))))) | |
2274 (save-excursion | |
2275 (set-buffer (get-buffer-create | |
2276 ange-ftp-data-buffer-name)) | |
2277 (erase-buffer) | |
2278 (if (ange-ftp-real-file-readable-p temp) | |
2279 (ange-ftp-real-insert-file-contents temp) | |
2280 (sleep-for ange-ftp-retry-time) | |
2281 ;wait for file to possibly appear | |
2282 (if (ange-ftp-real-file-readable-p temp) | |
2283 ;; Try again. | |
2284 (ange-ftp-real-insert-file-contents temp) | |
2285 (ange-ftp-error host user | |
2286 (format | |
2287 "list data file %s not readable" | |
2288 temp)))) | |
2289 (if parse | |
2290 (ange-ftp-set-files | |
2291 ange-ftp-this-file | |
2292 (if (setq | |
2293 parse-func | |
2294 (cdr (assq host-type | |
2295 ange-ftp-parse-list-func-alist))) | |
2296 (funcall parse-func) | |
2297 (ange-ftp-parse-dired-listing lsargs)))) | |
2298 (setq ange-ftp-ls-cache-file key | |
2299 ange-ftp-ls-cache-lsargs lsargs | |
2300 ; For dumb hosts-types this is | |
2301 ; meaningless but harmless. | |
2302 ange-ftp-ls-cache-res (buffer-string)) | |
2303 ;; (kill-buffer (current-buffer)) | |
2304 ange-ftp-ls-cache-res) | |
2305 (if no-error | |
2306 nil | |
2307 (ange-ftp-error host user | |
2308 (concat "DIR failed: " (cdr result))))) | |
2309 (ange-ftp-del-tmp-name temp)))) | |
2310 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2311 | |
2312 ;;;; ------------------------------------------------------------ | |
2313 ;;;; Directory information caching support. | |
2314 ;;;; ------------------------------------------------------------ | |
2315 | |
2316 (defconst ange-ftp-date-regexp | |
2317 (concat | |
2318 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2319 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2320 | |
2321 (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
|
2322 "Alist saying how to add file entries on certain OS types. |
7042 | 2323 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2324 is a function to be used to add a file entry for the OS TYPE. The |
2325 main reason for this alist is to deal with file versions in VMS.") | |
2326 | |
2327 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2328 "Alist saying how to delete files on certain OS types. |
2329 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2330 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2331 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2332 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2333 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2334 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2335 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2336 (car (ange-ftp-ftp-name name))) |
1106 | 2337 ange-ftp-add-file-entry-alist)) |
2338 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2339 name dir-p) |
1106 | 2340 (setq ange-ftp-ls-cache-file nil)) |
2341 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2342 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2343 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2344 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2345 (car (ange-ftp-ftp-name name))) |
1106 | 2346 ange-ftp-delete-file-entry-alist)) |
2347 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2348 name dir-p) |
1106 | 2349 (setq ange-ftp-ls-cache-file nil)) |
2350 | |
2351 (defmacro ange-ftp-parse-filename () | |
2352 ;;Extract the filename from the current line of a dired-like listing. | |
2353 (` (let ((eol (progn (end-of-line) (point)))) | |
2354 (beginning-of-line) | |
2355 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2356 (progn | |
2357 (skip-chars-forward " ") | |
2358 (skip-chars-forward "^ " eol) | |
2359 (skip-chars-forward " " eol) | |
2360 ;; We bomb on filenames starting with a space. | |
2361 (buffer-substring (point) eol)))))) | |
2362 | |
2363 ;; This deals with the F switch. Should also do something about | |
2364 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2365 ;; switch. See Sebastian's dired-get-filename. | |
2366 | |
2367 (defmacro ange-ftp-ls-parser () | |
2368 ;; Note that switches is dynamically bound. | |
2369 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2370 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2371 (used-F (and (stringp switches) | |
2372 (string-match "F" switches))) | |
2373 file-type symlink directory file) | |
2374 (while (setq file (ange-ftp-parse-filename)) | |
2375 (beginning-of-line) | |
2376 (skip-chars-forward "\t 0-9") | |
2377 (setq file-type (following-char) | |
2378 directory (eq file-type ?d)) | |
2379 (if (eq file-type ?l) | |
2380 (if (string-match " -> " file) | |
2381 (setq symlink (substring file (match-end 0)) | |
2382 file (substring file 0 (match-beginning 0))) | |
2383 ;; Shouldn't happen | |
2384 (setq symlink "")) | |
2385 (setq symlink nil)) | |
2386 ;; Only do a costly regexp search if the F switch was used. | |
2387 (if (and used-F | |
2388 (not (string-equal file "")) | |
2389 (looking-at | |
2390 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2391 (let ((socket (eq file-type ?s)) | |
2392 (executable | |
2393 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2394 (string-match "[xst]" | |
2395 (concat | |
2396 (buffer-substring | |
2397 (match-beginning 1) | |
2398 (match-end 1)) | |
2399 (buffer-substring | |
2400 (match-beginning 2) | |
2401 (match-end 2)) | |
2402 (buffer-substring | |
2403 (match-beginning 3) | |
2404 (match-end 3))))))) | |
2405 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2406 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2407 ;; seem to believe in the F-switch | |
2408 (if (or (and symlink (string-match "@$" file)) | |
2409 (and directory (string-match "/$" file)) | |
2410 (and executable (string-match "*$" file)) | |
2411 (and socket (string-match "=$" file))) | |
2412 (setq file (substring file 0 -1))))) | |
2413 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2414 (forward-line 1)) | |
2415 (ange-ftp-put-hash-entry "." t tbl) | |
2416 (ange-ftp-put-hash-entry ".." t tbl) | |
2417 tbl))) | |
2418 | |
2419 ;;; The dl stuff for descriptive listings | |
2420 | |
2421 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2422 "Regexp matching directories which are listed in dl format. |
2423 This regexp should not be anchored with a trailing `$', because it should | |
2424 match subdirectories as well.") | |
1106 | 2425 |
2426 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2427 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2428 (interactive |
2429 (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
|
2430 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2431 (and name (ange-ftp-ftp-name name) |
1106 | 2432 (file-name-directory name)))))) |
2433 (if (not (and ange-ftp-dl-dir-regexp | |
2434 (string-match ange-ftp-dl-dir-regexp dir))) | |
2435 (setq ange-ftp-dl-dir-regexp | |
2436 (concat "^" (regexp-quote dir) | |
2437 (and ange-ftp-dl-dir-regexp "\\|") | |
2438 ange-ftp-dl-dir-regexp)))) | |
2439 | |
2440 (defmacro ange-ftp-dl-parser () | |
2441 ;; Parse the current buffer, which is assumed to be a descriptive | |
2442 ;; listing, and return a hashtable. | |
2443 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2444 (while (not (eobp)) | |
2445 (ange-ftp-put-hash-entry | |
2446 (buffer-substring (point) | |
2447 (progn | |
2448 (skip-chars-forward "^ /\n") | |
2449 (point))) | |
2450 (eq (following-char) ?/) | |
2451 tbl) | |
2452 (forward-line 1)) | |
2453 (ange-ftp-put-hash-entry "." t tbl) | |
2454 (ange-ftp-put-hash-entry ".." t tbl) | |
2455 tbl))) | |
2456 | |
7042 | 2457 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2458 ;; format, and return a hashtable as the result. If the listing is not really | |
2459 ;; a listing, then return nil. | |
2460 | |
1106 | 2461 (defun ange-ftp-parse-dired-listing (&optional switches) |
2462 (ange-ftp-save-match-data | |
2463 (cond | |
2464 ((looking-at "^total [0-9]+$") | |
2465 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2466 ;; 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
|
2467 (if (eolp) (forward-line 1)) |
1106 | 2468 (ange-ftp-ls-parser)) |
2469 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2470 ;; It's an ls error message. | |
2471 nil) | |
2472 ((eobp) ; i.e. (zerop (buffer-size)) | |
2473 ;; This could be one of: | |
2474 ;; (1) An Ultrix ls error message | |
2475 ;; (2) A listing with the A switch of an empty directory | |
2476 ;; on a machine which doesn't give a total line. | |
2477 ;; (3) The twilight zone. | |
2478 ;; We'll assume (1) for now. | |
2479 nil) | |
2480 ((re-search-forward ange-ftp-date-regexp nil t) | |
2481 (beginning-of-line) | |
2482 (ange-ftp-ls-parser)) | |
2483 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2484 ;; It's a dl listing (I hope). | |
2485 ;; file is bound by the call to ange-ftp-ls | |
2486 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2487 (beginning-of-line) | |
2488 (ange-ftp-dl-parser)) | |
2489 (t nil)))) | |
2490 | |
2491 (defun ange-ftp-set-files (directory files) | |
2492 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2493 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2494 files ange-ftp-files-hashtable))) | |
2495 | |
2496 (defun ange-ftp-get-files (directory &optional no-error) | |
2497 "Given a given DIRECTORY, return a hashtable of file entries. | |
2498 This will give an error or return nil, depending on the value of | |
2499 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2500 (setq directory (file-name-as-directory directory)) ;normalize | |
2501 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
2502 (ange-ftp-save-match-data | |
2503 (and (ange-ftp-ls directory | |
2504 ;; This is an efficiency hack. We try to | |
2505 ;; anticipate what sort of listing dired | |
2506 ;; might want, and cache just such a listing. | |
2507 (if (and (boundp 'dired-actual-switches) | |
2508 (stringp dired-actual-switches) | |
2509 ;; We allow the A switch, which lists | |
2510 ;; all files except "." and "..". | |
2511 ;; This is OK because we manually | |
2512 ;; insert these entries | |
2513 ;; in the hash table. | |
2514 (string-match | |
2515 "[aA]" dired-actual-switches) | |
2516 (string-match | |
2517 "l" dired-actual-switches) | |
2518 (not (string-match | |
2519 "R" dired-actual-switches))) | |
2520 dired-actual-switches | |
2521 (if (and (boundp 'dired-listing-switches) | |
2522 (stringp dired-listing-switches) | |
2523 (string-match | |
2524 "[aA]" dired-listing-switches) | |
2525 (string-match | |
2526 "l" dired-listing-switches) | |
2527 (not (string-match | |
2528 "R" dired-listing-switches))) | |
2529 dired-listing-switches | |
2530 "-al")) | |
2531 t no-error) | |
2532 (ange-ftp-get-hash-entry | |
2533 directory ange-ftp-files-hashtable))))) | |
2534 | |
7042 | 2535 ;; Given NAME, return the file part that can be used for looking up the |
2536 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2537 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2538 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2539 (if (string-equal file "") |
2540 "." | |
2541 file)))) | |
2542 | |
7042 | 2543 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2544 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2545 ;; rather than listing its parent directory. This is used for efficiency so | |
2546 ;; that a wasted listing is not done: | |
2547 ;; 1. When looking for a .dired file in dired-x.el. | |
2548 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2549 ;; subdirectory. This is of course an OS dependent judgement. | |
2550 | |
1106 | 2551 (defmacro ange-ftp-allow-child-lookup (dir file) |
2552 (` (not | |
2553 (let* ((efile (, file)) ; expand once. | |
2554 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2555 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2556 (host-type (ange-ftp-host-type |
2557 (car parsed)))) | |
2558 (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
|
2559 ;;; 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
|
2560 ;;; ;; 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
|
2561 ;;; (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
|
2562 ;;; (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
|
2563 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2564 ;; No dots in dir names in vms. |
2565 (and (eq host-type 'vms) | |
2566 (string-match "\\." efile)) | |
2567 ;; No subdirs in mts of cms. | |
2568 (and (memq host-type '(mts cms)) | |
2569 (not (string-equal "/" (nth 2 parsed))))))))) | |
2570 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2571 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2572 "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
|
2573 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2574 (dir (file-name-directory name)) |
1106 | 2575 (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
|
2576 (file (ange-ftp-get-file-part name))) |
1106 | 2577 (if ent |
2578 (ange-ftp-hash-entry-exists-p file ent) | |
2579 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2580 (setq ent (ange-ftp-get-files name t)) |
1106 | 2581 ;; Try a child lookup. i.e. try to list file as a |
2582 ;; subdirectory of dir. This is a good idea because | |
2583 ;; we may not have read permission for file's parent. Also, | |
2584 ;; people tend to work down directory trees anyway. We use | |
2585 ;; no-error ;; because if file does not exist as a subdir., | |
2586 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2587 ;; will simply send back the ls | |
2588 ;; error message. | |
2589 (ange-ftp-get-hash-entry "." ent)) | |
2590 ;; Child lookup failed. Try the parent. If this bombs, | |
2591 ;; we are at wits end -- signal an error. | |
2592 ;; Problem: If this signals an error, the error message | |
2593 ;; may not have a lot to do with what went wrong. | |
2594 (ange-ftp-hash-entry-exists-p file | |
2595 (ange-ftp-get-files dir)))))) | |
2596 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2597 (defun ange-ftp-get-file-entry (name) |
1233 | 2598 "Given NAME, return the given file entry. |
2599 The entry will be either t for a directory, nil for a normal file, | |
2600 or a string for a symlink. If the file isn't in the hashtable, | |
2601 this also returns nil." | |
1132
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-get-hash-entry 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 (ange-ftp-get-hash-entry "." ent)) |
2611 ;; i.e. it's a directory by child lookup | |
2612 (ange-ftp-get-hash-entry file | |
2613 (ange-ftp-get-files dir)))))) | |
2614 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2615 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2616 (if dir-p |
2617 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2618 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2619 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2620 (setq name (directory-file-name name)))) |
1106 | 2621 ;; Note that file-name-as-directory followed by directory-file-name |
2622 ;; serves to canonicalize directory file names to their unix form. | |
2623 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2624 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2625 ange-ftp-files-hashtable))) |
2626 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2627 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2628 files)))) |
2629 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2630 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2631 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2632 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2633 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2634 ange-ftp-files-hashtable))) |
2635 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2636 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2637 dir-p |
2638 files)))) | |
2639 | |
2640 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2641 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2642 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2643 (ange-ftp-map-hashtable | |
2644 (function | |
2645 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2646 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2647 (if parsed |
2648 (let ((h (nth 0 parsed)) | |
2649 (u (nth 1 parsed))) | |
2650 (or (and (equal host h) (equal user u)) | |
2651 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2652 ange-ftp-files-hashtable) | |
2653 (setq ange-ftp-files-hashtable new-tbl))) | |
2654 | |
2655 ;;;; ------------------------------------------------------------ | |
2656 ;;;; File transfer mode support. | |
2657 ;;;; ------------------------------------------------------------ | |
2658 | |
2659 (defun ange-ftp-set-binary-mode (host user) | |
2660 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2661 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2662 (if (not (car result)) | |
2663 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2664 (save-excursion | |
2665 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2666 (setq ange-ftp-hash-mark-unit (ash ange-ftp-binary-hash-mark-size -4)))))) | |
2667 | |
2668 (defun ange-ftp-set-ascii-mode (host user) | |
2669 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2670 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2671 (if (not (car result)) | |
2672 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2673 (save-excursion | |
2674 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2675 (setq ange-ftp-hash-mark-unit (ash ange-ftp-ascii-hash-mark-size -4)))))) | |
2676 | |
2677 (defun ange-ftp-cd (host user dir) | |
2678 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2679 (or (car result) | |
2680 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2681 | |
2682 (defun ange-ftp-get-pwd (host user) | |
2683 "Attempts to get the current working directory for the given HOST/USER pair. | |
2684 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2685 and LINE is the relevant success or fail line from the FTP-client." | |
2686 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2687 (line (cdr result)) | |
2688 dir) | |
2689 (if (car result) | |
2690 (ange-ftp-save-match-data | |
2691 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
2692 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2693 (setq dir (substring line | |
2694 (match-beginning 1) | |
2695 (match-end 1)))))) | |
2696 (cons dir line))) | |
2697 | |
2698 ;;; ------------------------------------------------------------ | |
2699 ;;; expand-file-name and friends...which currently don't work | |
2700 ;;; ------------------------------------------------------------ | |
2701 | |
2702 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2703 "Return the result of doing a PWD in the current FTP session. |
2704 Use the connection to machine HOST | |
1106 | 2705 logged in as user USER and cd'd to directory DIR." |
2706 (let* ((host-type (ange-ftp-host-type host user)) | |
2707 ;; It is more efficient to call ange-ftp-host-type | |
2708 ;; before binding res, because ange-ftp-host-type sometimes | |
2709 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2710 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2711 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2712 (key (concat host "/" user "/" dir)) |
2713 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2714 (or res | |
2715 (progn | |
2716 (or | |
2717 (string-equal user "anonymous") | |
2718 (string-equal user "ftp") | |
2719 (not (eq host-type 'unix)) | |
2720 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2721 "\\|" | |
2722 ange-ftp-good-msgs)) | |
2723 (result (ange-ftp-send-cmd host user | |
2724 (list 'get dir "/dev/null") | |
2725 (format "expanding %s" dir))) | |
2726 (line (cdr result))) | |
2727 (setq res | |
2728 (if (string-match ange-ftp-expand-dir-regexp line) | |
2729 (substring line | |
2730 (match-beginning 1) | |
2731 (match-end 1)))))) | |
2732 (or res | |
2733 (if (string-equal dir "~") | |
2734 (setq res (car (ange-ftp-get-pwd host user))) | |
2735 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2736 (unwind-protect | |
2737 (and (ange-ftp-cd host user dir) | |
2738 (setq res (car (ange-ftp-get-pwd host user)))) | |
2739 (ange-ftp-cd host user home))))) | |
2740 (if res | |
2741 (let ((ange-ftp-this-user user) | |
2742 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2743 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2744 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2745 (ange-ftp-put-hash-entry |
2746 key res ange-ftp-expand-dir-hashtable))) | |
2747 res)))) | |
2748 | |
2749 (defun ange-ftp-canonize-filename (n) | |
2750 "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
|
2751 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2752 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2753 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2754 (if parsed |
2755 (let ((host (car parsed)) | |
2756 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2757 (name (nth 2 parsed))) |
1106 | 2758 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2759 ;; 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
|
2760 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2761 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2762 name) |
1106 | 2763 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2764 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2765 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2766 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2767 (let* ((tilda (substring name |
1106 | 2768 (match-beginning 0) |
2769 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2770 (rest (substring name (match-end 0))) |
1106 | 2771 (dir (ange-ftp-expand-dir host user tilda))) |
2772 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2773 (setq name (concat dir rest)) |
1106 | 2774 (error "User \"%s\" is not known" |
2775 (substring tilda 1))))) | |
2776 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2777 ;; relative name. Tack on homedir and re-expand. |
1106 | 2778 (t |
2779 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2780 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2781 (setq name (concat |
1106 | 2782 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2783 name)) |
1106 | 2784 (error "Unable to obtain CWD"))))) |
2785 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2786 ;; 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
|
2787 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2788 (progn |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2789 (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
|
2790 |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2791 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2792 (setq name (substring name 1))))) |
1106 | 2793 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2794 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2795 (ange-ftp-replace-name-component n name)) |
1106 | 2796 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2797 ;; non-ange-ftp name. Just expand normally. |
1106 | 2798 (if (eq (string-to-char n) ?/) |
2799 (ange-ftp-real-expand-file-name n) | |
2800 (ange-ftp-real-expand-file-name | |
2801 (ange-ftp-real-file-name-nondirectory n) | |
2802 (ange-ftp-real-file-name-directory n)))))) | |
2803 | |
2804 (defun ange-ftp-expand-file-name (name &optional default) | |
2805 "Documented as original." | |
2806 (ange-ftp-save-match-data | |
2807 (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
|
2808 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users |
1106 | 2809 (setq name (substring name (1- (match-end 0))))) |
2810 ((string-match "/~" name) | |
2811 (setq name (substring name (1- (match-end 0)))))))) | |
2812 (cond ((eq (string-to-char name) ?~) | |
2813 (ange-ftp-real-expand-file-name name)) | |
2814 ((eq (string-to-char name) ?/) | |
2815 (ange-ftp-canonize-filename name)) | |
2816 ((zerop (length name)) | |
2817 (ange-ftp-canonize-filename (or default default-directory))) | |
2818 ((ange-ftp-canonize-filename | |
2819 (concat (file-name-as-directory (or default default-directory)) | |
2820 name)))))) | |
2821 | |
2822 ;;; These are problems--they are currently not enabled. | |
2823 | |
2824 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 2825 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 2826 FUNC converts a filename to a directory name for the operating |
2827 system TYPE.") | |
2828 | |
2829 (defun ange-ftp-file-name-as-directory (name) | |
2830 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2831 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2832 (if parsed |
2833 (if (string-equal (nth 2 parsed) "") | |
2834 name | |
2835 (funcall (or (cdr (assq | |
2836 (ange-ftp-host-type (car parsed)) | |
2837 ange-ftp-file-name-as-directory-alist)) | |
2838 'ange-ftp-real-file-name-as-directory) | |
2839 name)) | |
2840 (ange-ftp-real-file-name-as-directory name)))) | |
2841 | |
2842 (defun ange-ftp-file-name-directory (name) | |
2843 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2844 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2845 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2846 (let ((filename (nth 2 parsed))) |
1106 | 2847 (if (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2848 (string-match "^~[^/]*$" filename)) |
1106 | 2849 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2850 (ange-ftp-replace-name-component |
1106 | 2851 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2852 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2853 (ange-ftp-real-file-name-directory name)))) |
2854 | |
2855 (defun ange-ftp-file-name-nondirectory (name) | |
2856 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2857 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2858 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2859 (let ((filename (nth 2 parsed))) |
1106 | 2860 (if (ange-ftp-save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2861 (string-match "^~[^/]*$" filename)) |
1106 | 2862 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2863 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2864 (ange-ftp-real-file-name-nondirectory name)))) |
2865 | |
2866 (defun ange-ftp-directory-file-name (dir) | |
2867 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2868 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2869 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2870 (ange-ftp-replace-name-component |
1106 | 2871 dir |
2872 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2873 (ange-ftp-real-directory-file-name dir)))) | |
2874 | |
2875 | |
2876 ;;; Hooks that handle Emacs primitives. | |
2877 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2878 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2879 (defun ange-ftp-binary-file (file) |
2880 (ange-ftp-save-match-data | |
2881 (string-match ange-ftp-binary-file-name-regexp file))) | |
2882 | |
2883 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2884 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2885 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2886 (if parsed |
2887 (let* ((host (nth 0 parsed)) | |
2888 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2889 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2890 (temp (ange-ftp-make-tmp-name host)) |
2891 (binary (ange-ftp-binary-file filename)) | |
2892 (cmd (if append 'append 'put)) | |
2893 (abbr (ange-ftp-abbreviate-filename filename))) | |
2894 (unwind-protect | |
2895 (progn | |
2896 (let ((executing-macro t) | |
2897 (filename (buffer-file-name)) | |
2898 (mod-p (buffer-modified-p))) | |
2899 (unwind-protect | |
2900 (ange-ftp-real-write-region start end temp nil visit) | |
2901 ;; cleanup forms | |
2902 (setq buffer-file-name filename) | |
2903 (set-buffer-modified-p mod-p))) | |
2904 (if binary | |
2905 (ange-ftp-set-binary-mode host user)) | |
2906 | |
2907 ;; tell the process filter what size the transfer will be. | |
2908 (let ((attr (file-attributes temp))) | |
2909 (if attr | |
2910 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2911 | |
2912 ;; put or append the file. | |
2913 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2914 (list cmd temp name) |
1106 | 2915 (format "Writing %s" abbr)))) |
2916 (or (car result) | |
2917 (signal 'ftp-error | |
2918 (list | |
2919 "Opening output file" | |
2920 (format "FTP Error: \"%s\"" (cdr result)) | |
2921 filename))))) | |
2922 (ange-ftp-del-tmp-name temp) | |
2923 (if binary | |
2924 (ange-ftp-set-ascii-mode host user))) | |
2925 (if (eq visit t) | |
2926 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2927 (set-visited-file-modtime '(0 0)) |
1106 | 2928 (ange-ftp-set-buffer-mode) |
2929 (setq buffer-file-name filename) | |
2930 (set-buffer-modified-p nil))) | |
2931 (ange-ftp-message "Wrote %s" abbr) | |
2932 (ange-ftp-add-file-entry filename)) | |
2933 (ange-ftp-real-write-region start end filename append visit)))) | |
2934 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2935 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 2936 (barf-if-buffer-read-only) |
2937 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2938 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2939 (if parsed |
2940 (progn | |
2941 (if visit | |
2942 (setq buffer-file-name filename)) | |
2943 (if (or (file-exists-p filename) | |
2944 (progn | |
2945 (setq ange-ftp-ls-cache-file nil) | |
2946 (ange-ftp-del-hash-entry (file-name-directory filename) | |
2947 ange-ftp-files-hashtable) | |
2948 (file-exists-p filename))) | |
2949 (let* ((host (nth 0 parsed)) | |
2950 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2951 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2952 (temp (ange-ftp-make-tmp-name host)) |
2953 (binary (ange-ftp-binary-file filename)) | |
2954 (abbr (ange-ftp-abbreviate-filename filename)) | |
2955 size) | |
2956 (unwind-protect | |
2957 (progn | |
2958 (if binary | |
2959 (ange-ftp-set-binary-mode host user)) | |
2960 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2961 (list 'get name temp) |
1106 | 2962 (format "Retrieving %s" abbr)))) |
2963 (or (car result) | |
2964 (signal 'ftp-error | |
2965 (list | |
2966 "Opening input file" | |
2967 (format "FTP Error: \"%s\"" (cdr result)) | |
2968 filename)))) | |
2969 (if (or (ange-ftp-real-file-readable-p temp) | |
2970 (sleep-for ange-ftp-retry-time) | |
2971 ;; Wait for file to hopefully appear. | |
2972 (ange-ftp-real-file-readable-p temp)) | |
2973 (setq | |
2974 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2975 (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
|
2976 temp visit beg end replace))) |
1106 | 2977 (signal 'ftp-error |
2978 (list | |
2979 "Opening input file:" | |
2980 (format | |
2981 "FTP Error: %s not arrived or readable" | |
2982 filename))))) | |
2983 (if binary | |
2984 (ange-ftp-set-ascii-mode host user)) | |
2985 (ange-ftp-del-tmp-name temp)) | |
2986 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2987 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2988 (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
|
2989 (setq buffer-file-name filename))) |
1106 | 2990 (list filename size)) |
2991 (signal 'file-error | |
2992 (list | |
2993 "Opening input file" | |
2994 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2995 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 2996 |
2997 (defun ange-ftp-expand-symlink (file dir) | |
2998 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2999 (ange-ftp-replace-name-component dir file) |
1106 | 3000 (expand-file-name file dir))) |
3001 | |
3002 (defun ange-ftp-file-symlink-p (file) | |
3003 ;; call ange-ftp-expand-file-name rather than the normal | |
3004 ;; expand-file-name to stop loops when using a package that | |
3005 ;; redefines both file-symlink-p and expand-file-name. | |
3006 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3007 (if (ange-ftp-ftp-name file) |
1106 | 3008 (let ((file-ent |
3009 (ange-ftp-get-hash-entry | |
3010 (ange-ftp-get-file-part file) | |
3011 (ange-ftp-get-files (file-name-directory file))))) | |
3012 (if (stringp file-ent) | |
3013 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3014 (ange-ftp-replace-name-component |
1106 | 3015 (file-name-directory file) file-ent) |
3016 file-ent))) | |
3017 (ange-ftp-real-file-symlink-p file))) | |
3018 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3019 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3020 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3021 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3022 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3023 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3024 (if (stringp file-ent) |
3025 (file-exists-p | |
3026 (ange-ftp-expand-symlink file-ent | |
3027 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3028 (directory-file-name name)))) |
1106 | 3029 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3030 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3031 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3032 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3033 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3034 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3035 ;; We do a file-name-as-directory on name here because some |
1106 | 3036 ;; machines (VMS) use a .DIR to indicate the filename associated |
3037 ;; with a directory. This needs to be canonicalized. | |
3038 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3039 (ange-ftp-file-name-as-directory name)))) |
1106 | 3040 (if (stringp file-ent) |
3041 (file-directory-p | |
3042 (ange-ftp-expand-symlink file-ent | |
3043 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3044 (directory-file-name name)))) |
1106 | 3045 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3046 (ange-ftp-real-file-directory-p name))) |
1106 | 3047 |
3048 (defun ange-ftp-directory-files (directory &optional full match | |
3049 &rest v19-args) | |
3050 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3051 (if (ange-ftp-ftp-name directory) |
1106 | 3052 (progn |
3053 (ange-ftp-barf-if-not-directory directory) | |
3054 (let ((tail (ange-ftp-hash-table-keys | |
3055 (ange-ftp-get-files directory))) | |
3056 files f) | |
3057 (setq directory (file-name-as-directory directory)) | |
3058 (ange-ftp-save-match-data | |
3059 (while tail | |
3060 (setq f (car tail) | |
3061 tail (cdr tail)) | |
3062 (if (or (not match) (string-match match f)) | |
3063 (setq files | |
3064 (cons (if full (concat directory f) f) files))))) | |
3065 (nreverse files))) | |
3066 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3067 | |
3068 (defun ange-ftp-file-attributes (file) | |
3069 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3070 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3071 (if parsed |
3072 (let ((part (ange-ftp-get-file-part file)) | |
3073 (files (ange-ftp-get-files (file-name-directory file)))) | |
3074 (if (ange-ftp-hash-entry-exists-p part files) | |
3075 (let ((host (nth 0 parsed)) | |
3076 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3077 (name (nth 2 parsed)) |
1106 | 3078 (dirp (ange-ftp-get-hash-entry part files))) |
3079 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3080 (ange-ftp-expand-symlink dirp | |
3081 (file-name-directory file)) | |
3082 dirp) ;0 file type | |
3083 -1 ;1 link count | |
3084 -1 ;2 uid | |
3085 -1 ;3 gid | |
3086 '(0 0) ;4 atime | |
3087 '(0 0) ;5 mtime | |
3088 '(0 0) ;6 ctime | |
3089 -1 ;7 size | |
3090 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3091 "?????????") ;8 mode | |
3092 nil ;9 gid weird | |
3093 ;; Hack to give remote files a unique "inode number". | |
3094 ;; It's actually the sum of the characters in its name. | |
3095 (apply '+ (nconc (mapcar 'identity host) | |
3096 (mapcar 'identity user) | |
3097 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3098 (directory-file-name name)))) |
1106 | 3099 -1 ;11 device number [v19 only] |
3100 )))) | |
3101 (ange-ftp-real-file-attributes file)))) | |
3102 | |
3103 (defun ange-ftp-file-writable-p (file) | |
3104 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3105 (if (ange-ftp-ftp-name file) |
1106 | 3106 (or (file-exists-p file) ;guess here for speed |
3107 (file-directory-p (file-name-directory file))) | |
3108 (ange-ftp-real-file-writable-p file))) | |
3109 | |
3110 (defun ange-ftp-file-readable-p (file) | |
3111 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3112 (if (ange-ftp-ftp-name file) |
1106 | 3113 (file-exists-p file) |
3114 (ange-ftp-real-file-readable-p file))) | |
3115 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3116 (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
|
3117 (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
|
3118 (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
|
3119 (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
|
3120 (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
|
3121 |
1106 | 3122 (defun ange-ftp-delete-file (file) |
3123 (interactive "fDelete file: ") | |
3124 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3125 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3126 (if parsed |
3127 (let* ((host (nth 0 parsed)) | |
3128 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3129 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3130 (abbr (ange-ftp-abbreviate-filename file)) |
3131 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3132 (list 'delete name) |
1106 | 3133 (format "Deleting %s" abbr)))) |
3134 (or (car result) | |
3135 (signal 'ftp-error | |
3136 (list | |
3137 "Removing old name" | |
3138 (format "FTP Error: \"%s\"" (cdr result)) | |
3139 file))) | |
3140 (ange-ftp-delete-file-entry file)) | |
3141 (ange-ftp-real-delete-file file)))) | |
3142 | |
3143 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3144 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3145 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3146 t |
3147 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3148 | |
3149 ;;;; ------------------------------------------------------------ | |
3150 ;;;; File copying support... totally re-written 6/24/92. | |
3151 ;;;; ------------------------------------------------------------ | |
3152 | |
3153 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3154 (if (file-exists-p absname) | |
3155 (if (not interactive) | |
3156 (signal 'file-already-exists (list absname)) | |
3157 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3158 absname querystring))) | |
3159 (signal 'file-already-exists (list absname)))))) | |
3160 | |
3161 ;; async local copy commented out for now since I don't seem to get | |
3162 ;; the process sentinel called for some processes. | |
3163 ;; | |
3164 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3165 ;; keep-date cont) | |
3166 ;; "Kludge to copy a local file and call a continuation when the copy | |
3167 ;; finishes." | |
3168 ;; ;; check to see if we can overwrite | |
3169 ;; (if (or (not ok-if-already-exists) | |
3170 ;; (numberp ok-if-already-exists)) | |
3171 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3172 ;; (numberp ok-if-already-exists))) | |
3173 ;; (let ((proc (start-process " *copy*" | |
3174 ;; (generate-new-buffer "*copy*") | |
3175 ;; "cp" | |
3176 ;; filename | |
3177 ;; newname)) | |
3178 ;; res) | |
3179 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3180 ;; (process-kill-without-query proc) | |
3181 ;; (save-excursion | |
3182 ;; (set-buffer (process-buffer proc)) | |
3183 ;; (make-variable-buffer-local 'copy-cont) | |
3184 ;; (setq copy-cont cont)))) | |
3185 ;; | |
3186 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3187 ;; (save-excursion | |
3188 ;; (set-buffer (process-buffer proc)) | |
3189 ;; (let ((cont copy-cont) | |
3190 ;; (result (buffer-string))) | |
3191 ;; (unwind-protect | |
3192 ;; (if (and (string-equal status "finished\n") | |
3193 ;; (zerop (length result))) | |
3194 ;; (ange-ftp-call-cont cont t nil) | |
3195 ;; (ange-ftp-call-cont cont | |
3196 ;; nil | |
3197 ;; (if (zerop (length result)) | |
3198 ;; (substring status 0 -1) | |
3199 ;; (substring result 0 -1)))) | |
3200 ;; (kill-buffer (current-buffer)))))) | |
3201 | |
3202 ;; 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
|
3203 ;; asynchronously if asked nicely. |
1106 | 3204 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3205 keep-date &optional msg cont nowait) | |
3206 (setq filename (expand-file-name filename) | |
3207 newname (expand-file-name newname)) | |
3208 | |
3209 ;; canonicalize newname if a directory. | |
3210 (if (file-directory-p newname) | |
3211 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3212 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3213 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3214 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3215 |
3216 ;; local file to local file copy? | |
3217 (if (and (not f-parsed) (not t-parsed)) | |
3218 (progn | |
3219 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3220 keep-date) | |
3221 (if cont | |
3222 (ange-ftp-call-cont cont t "Copied locally"))) | |
3223 ;; one or both files are remote. | |
3224 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3225 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3226 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3227 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3228 (t-host (and t-parsed (nth 0 t-parsed))) | |
3229 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3230 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3231 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3232 (binary (or (ange-ftp-binary-file filename) | |
3233 (ange-ftp-binary-file newname))) | |
3234 temp1 | |
3235 temp2) | |
3236 | |
3237 ;; check to see if we can overwrite | |
3238 (if (or (not ok-if-already-exists) | |
3239 (numberp ok-if-already-exists)) | |
3240 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3241 (numberp ok-if-already-exists))) | |
3242 | |
3243 ;; do the copying. | |
3244 (if f-parsed | |
3245 | |
3246 ;; filename was remote. | |
3247 (progn | |
3248 (if (or (ange-ftp-use-gateway-p f-host) | |
3249 t-parsed) | |
3250 ;; have to use intermediate file if we are getting via | |
3251 ;; gateway machine or we are doing a remote to remote copy. | |
3252 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3253 | |
3254 (if binary | |
3255 (ange-ftp-set-binary-mode f-host f-user)) | |
3256 | |
3257 (ange-ftp-send-cmd | |
3258 f-host | |
3259 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3260 (list 'get f-name (or temp1 newname)) |
1106 | 3261 (or msg |
3262 (if (and temp1 t-parsed) | |
3263 (format "Getting %s" f-abbr) | |
3264 (format "Copying %s to %s" f-abbr t-abbr))) | |
3265 (list (function ange-ftp-cf1) | |
3266 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3267 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3268 t-parsed t-host t-user t-name t-abbr |
1106 | 3269 temp1 temp2 cont nowait) |
3270 nowait)) | |
3271 | |
3272 ;; filename wasn't remote. newname must be remote. call the | |
3273 ;; function which does the remainder of the copying work. | |
3274 (ange-ftp-cf1 t nil | |
3275 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3276 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3277 t-parsed t-host t-user t-name t-abbr |
1106 | 3278 nil nil cont nowait)))))) |
3279 | |
3280 ;; next part of copying routine. | |
3281 (defun ange-ftp-cf1 (result line | |
3282 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3283 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3284 t-parsed t-host t-user t-name t-abbr |
1106 | 3285 temp1 temp2 cont nowait) |
3286 (if line | |
3287 ;; filename must have been remote, and we must have just done a GET. | |
3288 (unwind-protect | |
3289 (or result | |
3290 ;; GET failed for some reason. Clean up and get out. | |
3291 (progn | |
3292 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3293 (or cont | |
3294 (signal 'ftp-error (list "Opening input file" | |
3295 (format "FTP Error: \"%s\"" line) | |
3296 filename))))) | |
3297 ;; cleanup | |
3298 (if binary | |
3299 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3300 | |
3301 (if result | |
3302 ;; We now have to copy either temp1 or filename to newname. | |
3303 (if t-parsed | |
3304 | |
3305 ;; newname was remote. | |
3306 (progn | |
3307 (if (ange-ftp-use-gateway-p t-host) | |
3308 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3309 | |
3310 ;; make sure data is moved into the right place for the | |
3311 ;; outgoing transfer. gateway temporary files complicate | |
3312 ;; things nicely. | |
3313 (if temp1 | |
3314 (if temp2 | |
3315 (if (string-equal temp1 temp2) | |
3316 (setq temp1 nil) | |
3317 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3318 (setq temp2 temp1 temp1 nil)) | |
3319 (if temp2 | |
3320 (ange-ftp-real-copy-file filename temp2 t))) | |
3321 | |
3322 (if binary | |
3323 (ange-ftp-set-binary-mode t-host t-user)) | |
3324 | |
3325 ;; tell the process filter what size the file is. | |
3326 (let ((attr (file-attributes (or temp2 filename)))) | |
3327 (if attr | |
3328 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3329 | |
3330 (ange-ftp-send-cmd | |
3331 t-host | |
3332 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3333 (list 'put (or temp2 filename) t-name) |
1106 | 3334 (or msg |
3335 (if (and temp2 f-parsed) | |
3336 (format "Putting %s" newname) | |
3337 (format "Copying %s to %s" f-abbr t-abbr))) | |
3338 (list (function ange-ftp-cf2) | |
3339 newname t-host t-user binary temp1 temp2 cont) | |
3340 nowait)) | |
3341 | |
3342 ;; newname wasn't remote. | |
3343 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3344 | |
3345 ;; first copy failed, tell caller | |
3346 (ange-ftp-call-cont cont result line))) | |
3347 | |
3348 ;; last part of copying routine. | |
3349 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3350 (unwind-protect | |
3351 (if line | |
3352 ;; result from doing a local to remote copy. | |
3353 (unwind-protect | |
3354 (progn | |
3355 (or result | |
3356 (or cont | |
3357 (signal 'ftp-error | |
3358 (list "Opening output file" | |
3359 (format "FTP Error: \"%s\"" line) | |
3360 newname)))) | |
3361 | |
3362 (ange-ftp-add-file-entry newname)) | |
3363 | |
3364 ;; cleanup. | |
3365 (if binary | |
3366 (ange-ftp-set-ascii-mode t-host t-user))) | |
3367 | |
3368 ;; newname was local. | |
3369 (if temp1 | |
3370 (ange-ftp-real-copy-file temp1 newname t))) | |
3371 | |
3372 ;; clean up | |
3373 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3374 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3375 (ange-ftp-call-cont cont result line))) | |
3376 | |
3377 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3378 keep-date) | |
3379 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3380 (ange-ftp-copy-file-internal filename | |
3381 newname | |
3382 ok-if-already-exists | |
3383 keep-date | |
3384 nil | |
3385 nil | |
3386 (interactive-p))) | |
3387 | |
3388 ;;;; ------------------------------------------------------------ | |
3389 ;;;; File renaming support. | |
3390 ;;;; ------------------------------------------------------------ | |
3391 | |
3392 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed | |
3393 binary) | |
3394 "Rename remote file FILE to remote file NEWNAME." | |
3395 (let ((f-host (nth 0 f-parsed)) | |
3396 (f-user (nth 1 f-parsed)) | |
3397 (t-host (nth 0 t-parsed)) | |
3398 (t-user (nth 1 t-parsed))) | |
3399 (if (and (string-equal f-host t-host) | |
3400 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3401 (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
|
3402 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3403 (cmd (list 'rename f-name t-name)) |
1106 | 3404 (fabbr (ange-ftp-abbreviate-filename filename)) |
3405 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3406 (result (ange-ftp-send-cmd f-host f-user cmd | |
3407 (format "Renaming %s to %s" | |
3408 fabbr | |
3409 nabbr)))) | |
3410 (or (car result) | |
3411 (signal 'ftp-error | |
3412 (list | |
3413 "Renaming" | |
3414 (format "FTP Error: \"%s\"" (cdr result)) | |
3415 filename | |
3416 newname))) | |
3417 (ange-ftp-add-file-entry newname) | |
3418 (ange-ftp-delete-file-entry filename)) | |
3419 (ange-ftp-copy-file-internal filename newname t nil) | |
3420 (delete-file filename)))) | |
3421 | |
3422 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3423 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3424 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3425 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3426 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3427 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3428 (let (ange-ftp-process-verbose) | |
3429 (delete-file filename)))) | |
3430 | |
3431 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3432 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3433 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3434 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3435 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3436 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3437 (let (ange-ftp-process-verbose) | |
3438 (delete-file filename)))) | |
3439 | |
3440 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3441 (interactive "fRename file: \nFRename %s to file: \np") | |
3442 (setq filename (expand-file-name filename)) | |
3443 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3444 (let* ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3445 (t-parsed (ange-ftp-ftp-name newname)) |
1106 | 3446 (binary (if (or f-parsed t-parsed) (ange-ftp-binary-file filename)))) |
3447 (if (and (or f-parsed t-parsed) | |
3448 (or (not ok-if-already-exists) | |
3449 (numberp ok-if-already-exists))) | |
3450 (ange-ftp-barf-or-query-if-file-exists | |
3451 newname | |
3452 "rename to it" | |
3453 (numberp ok-if-already-exists))) | |
3454 (if f-parsed | |
3455 (if t-parsed | |
3456 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3457 t-parsed binary) | |
3458 (ange-ftp-rename-remote-to-local filename newname)) | |
3459 (if t-parsed | |
3460 (ange-ftp-rename-local-to-remote filename newname) | |
3461 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3462 | |
3463 ;;;; ------------------------------------------------------------ | |
3464 ;;;; File name completion support. | |
3465 ;;;; ------------------------------------------------------------ | |
3466 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3467 ;; 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
|
3468 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3469 (defun ange-ftp-file-entry-active-p (sym) |
3470 (let ((val (get sym 'val))) | |
3471 (or (not (stringp val)) | |
3472 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3473 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3474 ;; 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
|
3475 ;; 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
|
3476 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3477 ;; 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
|
3478 ;; are used as free variables. |
1106 | 3479 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3480 (let ((val (get sym 'val)) | |
3481 (symname (symbol-name sym))) | |
3482 (if (stringp val) | |
3483 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3484 (or (file-directory-p file) | |
3485 (and (file-exists-p file) | |
3486 (not (string-match ange-ftp-completion-ignored-pattern | |
3487 symname))))) | |
3488 (or val ; is a directory name | |
3489 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3490 | |
3491 (defun ange-ftp-file-name-all-completions (file dir) | |
3492 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3493 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3494 (progn |
3495 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3496 (setq ange-ftp-this-dir | |
3497 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3498 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3499 (completions | |
3500 (all-completions file tbl | |
3501 (function ange-ftp-file-entry-active-p)))) | |
3502 | |
3503 ;; see whether each matching file is a directory or not... | |
3504 (mapcar | |
3505 (function | |
3506 (lambda (file) | |
3507 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3508 (if (and ent | |
3509 (or (not (stringp ent)) | |
3510 (file-directory-p | |
3511 (ange-ftp-expand-symlink ent | |
3512 ange-ftp-this-dir)))) | |
3513 (concat file "/") | |
3514 file)))) | |
3515 completions))) | |
3516 | |
3517 (if (string-equal "/" ange-ftp-this-dir) | |
3518 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3519 (ange-ftp-real-file-name-all-completions file | |
3520 ange-ftp-this-dir)) | |
3521 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3522 | |
3523 (defun ange-ftp-file-name-completion (file dir) | |
3524 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3525 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3526 (progn |
3527 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3528 (if (equal file "") | |
3529 "" | |
3530 (setq ange-ftp-this-dir | |
3531 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3532 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3533 (ange-ftp-completion-ignored-pattern | |
3534 (mapconcat (function | |
3535 (lambda (s) (if (stringp s) | |
3536 (concat (regexp-quote s) "$") | |
3537 "/"))) ; / never in filename | |
3538 completion-ignored-extensions | |
3539 "\\|"))) | |
3540 (ange-ftp-save-match-data | |
3541 (or (ange-ftp-file-name-completion-1 | |
3542 file tbl ange-ftp-this-dir | |
3543 (function ange-ftp-file-entry-not-ignored-p)) | |
3544 (ange-ftp-file-name-completion-1 | |
3545 file tbl ange-ftp-this-dir | |
3546 (function ange-ftp-file-entry-active-p))))))) | |
3547 | |
3548 (if (string-equal "/" ange-ftp-this-dir) | |
3549 (try-completion | |
3550 file | |
3551 (nconc (ange-ftp-generate-root-prefixes) | |
3552 (mapcar 'list | |
3553 (ange-ftp-real-file-name-all-completions file "/")))) | |
3554 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3555 | |
3556 | |
3557 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3558 (let ((bestmatch (try-completion file tbl predicate))) | |
3559 (if bestmatch | |
3560 (if (eq bestmatch t) | |
3561 (if (file-directory-p (expand-file-name file dir)) | |
3562 (concat file "/") | |
3563 t) | |
3564 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3565 (file-directory-p | |
3566 (expand-file-name bestmatch dir))) | |
3567 (concat bestmatch "/") | |
3568 bestmatch))))) | |
3569 | |
3570 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3571 ;; ange-ftp's cache whilst doing filename completion. | |
3572 ;; | |
3573 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3574 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3575 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3576 ;; 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
|
3577 ;; to the directory part of the contents of the current buffer. |
1106 | 3578 (defun ange-ftp-re-read-dir (&optional dir) |
3579 (interactive) | |
3580 (if dir | |
3581 (setq dir (expand-file-name dir)) | |
3582 (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
|
3583 (if (ange-ftp-ftp-name dir) |
1106 | 3584 (progn |
3585 (setq ange-ftp-ls-cache-file nil) | |
3586 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3587 (ange-ftp-get-files dir t)))) | |
3588 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3589 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3590 (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
|
3591 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3592 (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
|
3593 (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
|
3594 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3595 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3596 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3597 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3598 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3599 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3600 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3601 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3602 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3603 ;; 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
|
3604 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3605 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3606 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3607 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3608 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3609 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3610 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3611 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3612 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3613 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3614 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3615 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3616 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3617 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3618 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3619 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3620 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3621 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3622 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3623 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3624 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3625 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3626 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3627 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3628 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3629 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3630 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3631 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3632 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3633 ;; 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
|
3634 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3635 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3636 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3637 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3638 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3639 (ange-ftp-real-directory-file-name |
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 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3642 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3643 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3644 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3645 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3646 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3647 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3648 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3649 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3650 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3651 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3652 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3653 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3654 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3655 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3657 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3658 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3659 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3660 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3661 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3662 (if pa1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3663 (let* ((tmp1 (ange-ftp-make-tmp-name (car pa1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3664 (bin1 (ange-ftp-binary-file fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3665 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3666 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3667 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3668 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3669 (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
|
3670 (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
|
3671 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3672 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3673 (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
|
3674 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3675 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3676 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3677 (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
|
3678 (ftp-error nil))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3679 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3680 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3681 (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
|
3682 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3683 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3684 (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
|
3685 (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
|
3686 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3687 ;; 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
|
3688 (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
|
3689 (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
|
3690 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3691 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 ;; 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
|
3694 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3695 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 "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
|
3698 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 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
|
3700 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 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
|
3702 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
|
3703 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
|
3704 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 (let* ((decision |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 (ange-ftp-save-match-data (funcall conversion-func name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3715 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3716 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3717 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3718 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3720 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 ;; 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
|
3723 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3727 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3728 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3729 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3730 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3731 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3732 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3733 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3734 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3735 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3736 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3737 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3738 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3739 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3740 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3741 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3742 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3743 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3744 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3745 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3746 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3747 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3748 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3749 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3750 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3751 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3752 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3753 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3754 ;; 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
|
3755 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3756 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3757 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3758 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3759 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3760 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3761 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3762 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3763 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3764 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3765 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3766 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3767 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3768 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3769 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3770 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3771 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3772 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3773 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3774 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3775 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3776 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3777 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3778 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3779 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3781 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3782 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3783 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3784 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3785 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3786 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3787 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3788 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3789 |
1106 | 3790 ;;; Define the handler for special file names |
3791 ;;; that causes ange-ftp to be invoked. | |
3792 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3793 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3794 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3795 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3796 (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
|
3797 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3798 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3799 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3800 ;;; 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
|
3801 ;;; and colon). |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3802 ;;;###autoload |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3803 (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3804 (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
|
3805 (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
|
3806 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
|
3807 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3808 ;;; 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
|
3809 ;;; 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
|
3810 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3811 (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
|
3812 (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
|
3813 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3814 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3815 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3816 ;;; 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
|
3817 ;;; 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
|
3818 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3819 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3820 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3821 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3822 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3823 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3824 ;;; Now say where to find the handlers for particular operations. |
1106 | 3825 |
3826 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3827 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3828 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3829 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3830 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3831 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3832 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3833 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3834 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3835 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3836 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3837 (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
|
3838 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3839 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3840 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3841 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3842 (put 'verify-visited-file-modtime 'ange-ftp | |
3843 'ange-ftp-verify-visited-file-modtime) | |
3844 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3845 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3846 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3847 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3848 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3849 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3850 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3851 (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
|
3852 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3853 (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
|
3854 (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
|
3855 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3856 (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
|
3857 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3858 (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
|
3859 (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
|
3860 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3861 ;; 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
|
3862 ;; 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
|
3863 (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
|
3864 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3865 ;; 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
|
3866 ;; 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
|
3867 (put 'vc-registered 'ange-ftp 'null) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3868 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3869 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3870 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3871 |
7042 | 3872 (defun ange-ftp-run-real-handler (operation args) |
3873 (let ((inhibit-file-name-handlers | |
3874 (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
|
3875 (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
|
3876 (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
|
3877 inhibit-file-name-handlers)))) |
7042 | 3878 (inhibit-file-name-operation operation)) |
3879 (apply operation args))) | |
3880 | |
1106 | 3881 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 3882 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 3883 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 3884 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 3885 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 3886 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 3887 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 3888 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 3889 (defun ange-ftp-real-expand-file-name (&rest args) |
7042 | 3890 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 3891 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 3892 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 3893 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 3894 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 3895 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 3896 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 3897 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 3898 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 3899 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 3900 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 3901 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 3902 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 3903 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 3904 (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
|
3905 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 3906 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 3907 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 3908 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 3909 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 3910 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 3911 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 3912 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 3913 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 3914 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 3915 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 3916 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 3917 (defun ange-ftp-real-write-region (&rest args) |
7042 | 3918 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 3919 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 3920 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 3921 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 3922 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 3923 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 3924 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 3925 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 3926 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 3927 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 3928 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 3929 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 3930 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3931 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 3932 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3933 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 3934 (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
|
3935 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 3936 (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
|
3937 (defun ange-ftp-real-load (&rest args) |
7042 | 3938 (ange-ftp-run-real-handler 'load args)) |
1106 | 3939 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3940 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3941 ;; 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
|
3942 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3943 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3944 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3945 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3946 ;; 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
|
3947 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3948 ;; 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
|
3949 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3950 ;; So the format conversion should be all that is needed. |
1106 | 3951 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3952 (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
|
3953 (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
|
3954 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3955 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3956 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3957 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3958 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3959 (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
|
3960 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3961 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 3962 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3963 (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
|
3964 (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
|
3965 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3966 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3967 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3968 "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
|
3969 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3970 (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
|
3971 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3972 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3973 host-type func) |
1106 | 3974 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3975 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3976 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3977 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3978 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3979 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 3980 |
3981 (defvar ange-ftp-remote-shell-file-name | |
3982 (if (memq system-type '(hpux usg-unix-v)) ; hope that's right | |
3983 "remsh" | |
3984 "rsh") | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3985 "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
|
3986 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3987 ;;; 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
|
3988 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3989 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3990 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 3991 (host (nth 0 parsed)) |
3992 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3993 (name (nth 2 parsed))) |
1106 | 3994 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3995 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3996 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3997 (setq command (concat "cd " name "; " command))) |
1106 | 3998 (setq command |
3999 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4000 ; on a hp-ux machine I tried | |
4001 ange-ftp-remote-shell-file-name host command)) | |
4002 (ange-ftp-message "Remote command '%s' ..." command) | |
4003 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4004 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4005 ;; 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
|
4006 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4007 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4008 ;;; Thisis not hooked up yet. |
1106 | 4009 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4010 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4011 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 (if (ange-ftp-ftp-name default-directory) |
1106 | 4013 ;; Can't use ange-ftp-dired-host-type here because the current |
4014 ;; buffer is *dired-check-process output* | |
4015 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 (cond ((equal "chmod" program) |
1106 | 4017 (ange-ftp-call-chmod arguments)) |
4018 ;; ((equal "chgrp" program)) | |
4019 ;; ((equal dired-chown-program program)) | |
4020 (t (error "Unknown remote command: %s" program))) | |
4021 (ftp-error (insert (format "%s: %s, %s\n" | |
4022 (nth 1 oops) | |
4023 (nth 2 oops) | |
4024 (nth 3 oops)))) | |
4025 (error (insert (format "%s\n" (nth 1 oops))))) | |
4026 (apply 'call-process program nil (not discard) nil arguments))) | |
4027 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4028 ;;; This currently does not work; it is never called. |
1106 | 4029 (defun ange-ftp-call-chmod (args) |
4030 (if (< (length args) 2) | |
4031 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4032 (let ((mode (car args))) | |
4033 (mapcar | |
4034 (function | |
4035 (lambda (file) | |
4036 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4038 (if parsed |
4039 (let* ((host (nth 0 parsed)) | |
4040 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4042 (abbr (ange-ftp-abbreviate-filename file)) |
4043 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4044 (list 'chmod mode name) |
1106 | 4045 (format "doing chmod %s" |
4046 abbr)))) | |
4047 (or (car result) | |
4048 (ange-ftp-error host user | |
4049 (format "chmod: %s: \"%s\"" | |
4050 file | |
4051 (cdr result))))))))) | |
4052 (cdr args))) | |
4053 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
4054 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4055 ;;; 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
|
4056 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4058 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4059 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4060 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4061 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4062 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4063 ;;(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
|
4064 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4065 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4066 ;; (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
|
4067 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4068 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4069 ;;(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
|
4070 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4071 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4072 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4073 ;; ;; 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
|
4074 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4075 ;; (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
|
4076 ;; (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
|
4077 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4078 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4079 ;;(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
|
4080 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4081 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4082 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4083 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4084 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4085 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4086 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4087 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4088 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4089 ;; ;; 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
|
4090 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4091 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4092 ;; ;; 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
|
4093 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4094 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4095 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4096 ;; ;; 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
|
4097 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4098 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4099 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4100 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4101 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4102 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4103 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4105 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4106 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4107 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4108 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4109 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4110 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4111 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4112 ;; (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
|
4113 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4114 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4115 ;;(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
|
4116 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4117 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4118 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4119 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4120 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4121 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4122 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4123 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 ;; success-count buffer) |
1106 | 4126 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4130 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4133 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4134 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4137 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4139 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4140 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4141 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4143 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4147 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;;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
|
4155 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4156 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; ;; 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
|
4160 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4164 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4174 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4189 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4191 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4193 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4222 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; (dired-add-file to actual-marker-char)) |
1106 | 4226 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; (ange-ftp-dcf-1 file-creator operation (cdr 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 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;;(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
|
4239 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4256 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 ;; (set-buffer old-buf)))) |
1106 | 4260 |
4261 ;;;; ----------------------------------------------- | |
4262 ;;;; Unix Descriptive Listing (dl) Support | |
4263 ;;;; ----------------------------------------------- | |
4264 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ;; 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
|
4267 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4274 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;;(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
|
4278 ;; "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
|
4279 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4289 ;;(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
|
4290 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4291 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4293 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;;(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
|
4295 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 ;; ;; 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
|
4297 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4302 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4306 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;; nil |
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 ;; (point))))) |
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-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4319 ;; (setq ange-ftp-dired-move-to-end-of-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-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4321 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4322 |
4323 ;;;; ------------------------------------------------------------ | |
4324 ;;;; VOS support (VOS support is probably broken, | |
4325 ;;;; but I don't know anything about VOS.) | |
4326 ;;;; ------------------------------------------------------------ | |
4327 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4328 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4329 ; (setq name (copy-sequence name)) |
1106 | 4330 ; (let ((from (if reverse ?\> ?\/)) |
4331 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 ; (i (1- (length name)))) |
1106 | 4333 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4334 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ; (aset name i to)) |
1106 | 4336 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ; name)) |
1106 | 4338 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4340 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4341 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4342 ; ange-ftp-fix-name-func-alist))) |
1106 | 4343 ; |
4344 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4345 ; (setq ange-ftp-dumb-host-types | |
4346 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4347 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4348 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4351 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4352 ; "" "/") |
4353 ; "*"))) | |
4354 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4355 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4356 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4357 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4358 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4359 ; |
4360 ;(defvar ange-ftp-vos-host-regexp nil | |
4361 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4362 ; | |
4363 ;(defun ange-ftp-vos-host (host) | |
4364 ; (and ange-ftp-vos-host-regexp | |
4365 ; (ange-ftp-save-match-data | |
4366 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4367 ; | |
4368 ;(defun ange-ftp-parse-vos-listing () | |
4369 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4370 ;format, and return a hashtable as the result." | |
4371 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4372 ; (type-list | |
4373 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4374 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4375 ; type-regexp type-is-dir type-col file) | |
4376 ; (goto-char (point-min)) | |
4377 ; (ange-ftp-save-match-data | |
4378 ; (while type-list | |
4379 ; (setq type-regexp (car (car type-list)) | |
4380 ; type-is-dir (nth 1 (car type-list)) | |
4381 ; type-col (nth 2 (car type-list)) | |
4382 ; type-list (cdr type-list)) | |
4383 ; (if (re-search-forward type-regexp nil t) | |
4384 ; (while (eq (char-after (point)) ? ) | |
4385 ; (move-to-column type-col) | |
4386 ; (setq file (buffer-substring (point) | |
4387 ; (progn | |
4388 ; (end-of-line 1) | |
4389 ; (point)))) | |
4390 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4391 ; (forward-line 1)))) | |
4392 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4393 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4394 ; tbl)) | |
4395 ; | |
4396 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4397 ; (setq ange-ftp-parse-list-func-alist | |
4398 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4399 ; ange-ftp-parse-list-func-alist))) | |
4400 | |
4401 ;;;; ------------------------------------------------------------ | |
4402 ;;;; VMS support. | |
4403 ;;;; ------------------------------------------------------------ | |
4404 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4405 ;; 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
|
4406 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 (defun ange-ftp-fix-name-for-vms (name &optional reverse) |
1106 | 4408 (ange-ftp-save-match-data |
4409 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4410 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4411 (let (drive dir file) |
4412 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4413 (setq drive (substring name |
1106 | 4414 (match-beginning 1) |
4415 (match-end 1)))) | |
4416 (if (match-beginning 2) | |
4417 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4418 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4419 (if (match-beginning 3) |
4420 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4421 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4422 (and dir |
4423 (setq dir (apply (function concat) | |
4424 (mapcar (function | |
4425 (lambda (char) | |
4426 (if (= char ?.) | |
4427 (vector ?/) | |
4428 (vector char)))) | |
4429 (substring dir 1 -1))))) | |
4430 (concat (and drive | |
4431 (concat "/" drive "/")) | |
4432 dir (and dir "/") | |
4433 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4434 (error "name %s didn't match" name)) |
1106 | 4435 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4437 (setq drive (substring name 1 |
1106 | 4438 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4439 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4440 (setq tmp (file-name-directory name)) |
1106 | 4441 (if tmp |
4442 (setq dir (apply (function concat) | |
4443 (mapcar (function | |
4444 (lambda (char) | |
4445 (if (= char ?/) | |
4446 (vector ?.) | |
4447 (vector char)))) | |
4448 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4449 (setq file (file-name-nondirectory name)) |
1106 | 4450 (concat drive |
4451 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4452 file))))) | |
4453 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4454 ;; (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
|
4455 ;; (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
|
4456 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4457 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4458 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4459 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4460 ange-ftp-fix-name-func-alist))) |
1106 | 4461 |
4462 (or (memq 'vms ange-ftp-dumb-host-types) | |
4463 (setq ange-ftp-dumb-host-types | |
4464 (cons 'vms ange-ftp-dumb-host-types))) | |
4465 | |
4466 ;; It is important that this function barf for directories for which we know | |
4467 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4468 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4469 ;; might succeed, but give erroneous info. This last case is particularly | |
4470 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4471 ;; to list a directory. | |
4472 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4473 ;; 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
|
4474 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4475 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4476 ;; think so, because expand-filename should have already short-circuited | |
4477 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4478 (cond ((string-equal dir-name "/") |
1106 | 4479 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4480 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4481 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4482 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4483 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4484 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4485 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4486 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4487 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4488 |
4489 (defvar ange-ftp-vms-host-regexp nil) | |
4490 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4491 ;; Return non-nil if HOST is running VMS. |
1106 | 4492 (defun ange-ftp-vms-host (host) |
4493 (and ange-ftp-vms-host-regexp | |
4494 (ange-ftp-save-match-data | |
4495 (string-match ange-ftp-vms-host-regexp host)))) | |
4496 | |
4497 ;; Because some VMS ftp servers convert filenames to lower case | |
4498 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4499 | |
4500 (defconst ange-ftp-vms-filename-regexp | |
4501 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4502 "\\(\\([_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
|
4503 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4504 "Regular expression to match for a valid VMS file name in Dired buffer. |
4505 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4506 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4507 Other orders of $ and _ seem to all work just fine.") | |
4508 | |
4509 ;; These parsing functions are as general as possible because the syntax | |
4510 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4511 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4512 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4513 ;; from vms.weird.net, then too bad. | |
4514 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4515 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4516 (defun ange-ftp-parse-vms-filename () |
4517 (if (re-search-forward | |
4518 ange-ftp-vms-filename-regexp | |
4519 nil t) | |
4520 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4521 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4522 ;; 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
|
4523 ;; format, and return a hashtable as the result. |
1106 | 4524 (defun ange-ftp-parse-vms-listing () |
4525 (let ((tbl (ange-ftp-make-hashtable)) | |
4526 file) | |
4527 (goto-char (point-min)) | |
4528 (ange-ftp-save-match-data | |
4529 (while (setq file (ange-ftp-parse-vms-filename)) | |
4530 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4531 ;; deal with directories | |
4532 (ange-ftp-put-hash-entry | |
4533 (substring file 0 (match-beginning 0)) t tbl) | |
4534 (ange-ftp-put-hash-entry file nil tbl) | |
4535 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4536 ;; sans extension | |
4537 (ange-ftp-put-hash-entry | |
4538 (substring file 0 (match-beginning 0)) nil tbl))) | |
4539 (forward-line 1)) | |
4540 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4541 ;; make sure that the listing isn't complete garbage before putting | |
4542 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4543 ;; either of these. | |
4544 (ange-ftp-put-hash-entry "." t tbl) | |
4545 (ange-ftp-put-hash-entry ".." t tbl)) | |
4546 tbl)) | |
4547 | |
4548 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4549 (setq ange-ftp-parse-list-func-alist | |
4550 (cons '(vms . ange-ftp-parse-vms-listing) | |
4551 ange-ftp-parse-list-func-alist))) | |
4552 | |
4553 ;; This version only deletes file entries which have | |
4554 ;; explicit version numbers, because that is all VMS allows. | |
4555 | |
4556 ;; Can the following two functions be speeded up using file | |
4557 ;; completion functions? | |
4558 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4559 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4560 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4561 (ange-ftp-internal-delete-file-entry name t) |
1106 | 4562 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4563 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4564 (if (string-match ";[0-9]+$" file) |
4565 ;; In VMS you can't delete a file without an explicit | |
4566 ;; version number, or wild-card (e.g. FOO;*) | |
4567 ;; For now, we give up on wildcards. | |
4568 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4569 (file-name-directory name) |
1106 | 4570 ange-ftp-files-hashtable))) |
4571 (if files | |
4572 (let* ((root (substring file 0 | |
4573 (match-beginning 0))) | |
4574 (regexp (concat "^" | |
4575 (regexp-quote root) | |
4576 ";[0-9]+$")) | |
4577 versions) | |
4578 (ange-ftp-del-hash-entry file files) | |
4579 ;; Now we need to check if there are any | |
4580 ;; versions left. If not, then delete the | |
4581 ;; root entry. | |
4582 (mapatoms | |
4583 '(lambda (sym) | |
4584 (and (string-match regexp (get sym 'key)) | |
4585 (setq versions t))) | |
4586 files) | |
4587 (or versions | |
4588 (ange-ftp-del-hash-entry root files)))))))))) | |
4589 | |
4590 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4591 (setq ange-ftp-delete-file-entry-alist | |
4592 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4593 ange-ftp-delete-file-entry-alist))) | |
4594 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4595 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4596 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4597 (ange-ftp-internal-add-file-entry name t) |
1106 | 4598 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4599 (file-name-directory name) |
1106 | 4600 ange-ftp-files-hashtable))) |
4601 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4602 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4603 (ange-ftp-save-match-data |
4604 (if (string-match ";[0-9]+$" file) | |
4605 (ange-ftp-put-hash-entry | |
4606 (substring file 0 (match-beginning 0)) | |
4607 nil files) | |
4608 ;; Need to figure out what version of the file | |
4609 ;; is being added. | |
4610 (let ((regexp (concat "^" | |
4611 (regexp-quote file) | |
4612 ";\\([0-9]+\\)$")) | |
4613 (version 0)) | |
4614 (mapatoms | |
4615 '(lambda (sym) | |
4616 (let ((name (get sym 'key))) | |
4617 (and (string-match regexp name) | |
4618 (setq version | |
4619 (max version | |
4620 (string-to-int | |
4621 (substring name | |
4622 (match-beginning 1) | |
4623 (match-end 1)))))))) | |
4624 files) | |
4625 (setq version (1+ version)) | |
4626 (ange-ftp-put-hash-entry | |
4627 (concat file ";" (int-to-string version)) | |
4628 nil files)))) | |
4629 (ange-ftp-put-hash-entry file nil files)))))) | |
4630 | |
4631 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4632 (setq ange-ftp-add-file-entry-alist | |
4633 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4634 ange-ftp-add-file-entry-alist))) | |
4635 | |
4636 | |
4637 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4638 "Mark HOST as the name of a machine running VMS." |
1106 | 4639 (interactive |
4640 (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
|
4641 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4642 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4643 (if (not (ange-ftp-vms-host host)) |
4644 (setq ange-ftp-vms-host-regexp | |
4645 (concat "^" (regexp-quote host) "$" | |
4646 (and ange-ftp-vms-host-regexp "\\|") | |
4647 ange-ftp-vms-host-regexp) | |
4648 ange-ftp-host-cache nil))) | |
4649 | |
4650 | |
4651 (defun ange-ftp-vms-file-name-as-directory (name) | |
4652 (ange-ftp-save-match-data | |
4653 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
4654 (setq name (substring name 0 (match-beginning 0)))) | |
4655 (ange-ftp-real-file-name-as-directory name))) | |
4656 | |
4657 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4658 (setq ange-ftp-file-name-as-directory-alist | |
4659 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4660 ange-ftp-file-name-as-directory-alist))) | |
4661 | |
4662 ;;; Tree dired support: | |
4663 | |
4664 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4665 ;; dired-vms.el | |
4666 | |
4667 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4668 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4669 ;;;; 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
|
4670 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4671 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4672 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4673 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4674 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4675 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4676 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4677 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4678 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4679 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4680 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4681 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4682 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4683 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4684 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4685 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4686 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4687 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4688 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4689 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4690 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4691 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4692 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4693 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4694 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4695 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4696 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4697 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4698 ;; (ange-ftp-real-dired-insert-headerline dir)) |
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 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4701 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4702 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4703 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4704 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 ;;(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
|
4706 ;; "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
|
4707 ;;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
|
4708 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4709 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4710 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4711 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4712 ;; (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
|
4713 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4714 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4715 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4716 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4717 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4718 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4719 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4720 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4721 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4722 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4723 ;;(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
|
4724 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4725 ;; ;; 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
|
4726 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4727 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4728 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4729 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4730 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4733 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4737 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4743 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 ;; (if (eq opoint (point)) |
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 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4747 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 ;;(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
|
4749 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 ;; (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
|
4751 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4764 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4766 |
4767 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4768 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4769 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4770 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4771 | |
4772 (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
|
4773 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4789 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4791 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;;;; 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
|
4793 ;;;; (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
|
4794 ;;;; 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
|
4795 ;;;; (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
|
4796 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4800 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4801 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4812 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 (defun ange-ftp-vms-sans-version (name) |
1106 | 4814 (ange-ftp-save-match-data |
4815 (if (string-match ";[0-9]+$" name) | |
4816 (substring name 0 (match-beginning 0)) | |
4817 name))) | |
4818 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;;;;; 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
|
4827 ;;;;; 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
|
4828 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4829 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;;(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
|
4831 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;;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
|
4833 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;;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
|
4835 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4836 ;;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
|
4837 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4838 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ;; (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
|
4840 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 ;; ;; 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
|
4842 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4843 ;; (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
|
4844 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4845 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 ;; ;; 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
|
4853 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4860 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4861 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4862 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4863 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4866 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4867 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 ;; ;; 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
|
4870 ;; ;; 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
|
4871 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4879 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4880 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4881 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 ;; ;; "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
|
4883 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 ;; ;;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
|
4885 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4894 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4895 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4896 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4898 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4900 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4902 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4903 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4905 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4907 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4908 ;; ange-ftp-file-version-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-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4911 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4912 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 ;; (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
|
4915 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4920 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ;;(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
|
4924 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4929 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4931 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4934 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4938 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4946 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4947 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4948 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4952 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4957 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4958 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4959 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4960 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 4961 |
4962 | |
4963 ;;;; ------------------------------------------------------------ | |
4964 ;;;; MTS support | |
4965 ;;;; ------------------------------------------------------------ | |
4966 | |
4967 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 ;; 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
|
4969 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 (defun ange-ftp-fix-name-for-mts (name &optional reverse) |
1106 | 4971 (ange-ftp-save-match-data |
4972 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 4974 (let (acct file) |
4975 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4976 (setq acct (substring name 0 (match-end 1)))) |
1106 | 4977 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 (setq file (substring name |
1106 | 4979 (match-beginning 2) (match-end 2)))) |
4980 (concat (and acct (concat "/" acct "/")) | |
4981 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4982 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 (substring name (match-beginning 2) (match-end 2))) |
1106 | 4986 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4991 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 ;; 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
|
4995 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 (if (string-equal dir-name "/") |
1106 | 4998 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5000 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ((string-equal dir-name "") |
1106 | 5002 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5011 |
5012 (or (memq 'mts ange-ftp-dumb-host-types) | |
5013 (setq ange-ftp-dumb-host-types | |
5014 (cons 'mts ange-ftp-dumb-host-types))) | |
5015 | |
5016 (defvar ange-ftp-mts-host-regexp nil) | |
5017 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 ;; Return non-nil if HOST is running MTS. |
1106 | 5019 (defun ange-ftp-mts-host (host) |
5020 (and ange-ftp-mts-host-regexp | |
5021 (ange-ftp-save-match-data | |
5022 (string-match ange-ftp-mts-host-regexp host)))) | |
5023 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5025 (defun ange-ftp-parse-mts-listing () |
5026 (let ((tbl (ange-ftp-make-hashtable))) | |
5027 (goto-char (point-min)) | |
5028 (ange-ftp-save-match-data | |
5029 (while (re-search-forward ange-ftp-date-regexp nil t) | |
5030 (end-of-line) | |
5031 (skip-chars-backward " ") | |
5032 (let ((end (point))) | |
5033 (skip-chars-backward "-A-Z0-9_.!") | |
5034 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5035 (forward-line 1))) | |
5036 ;; Don't need to bother with .. | |
5037 (ange-ftp-put-hash-entry "." t tbl) | |
5038 tbl)) | |
5039 | |
5040 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5041 (setq ange-ftp-parse-list-func-alist | |
5042 (cons '(mts . ange-ftp-parse-mts-listing) | |
5043 ange-ftp-parse-list-func-alist))) | |
5044 | |
5045 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 "Mark HOST as the name of a machine running MTS." |
1106 | 5047 (interactive |
5048 (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
|
5049 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5051 (if (not (ange-ftp-mts-host host)) |
5052 (setq ange-ftp-mts-host-regexp | |
5053 (concat "^" (regexp-quote host) "$" | |
5054 (and ange-ftp-mts-host-regexp "\\|") | |
5055 ange-ftp-mts-host-regexp) | |
5056 ange-ftp-host-cache nil))) | |
5057 | |
5058 ;;; Tree dired support: | |
5059 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 ;;;; 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
|
5061 ;;;; 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
|
5062 ;;;; 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
|
5063 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5064 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5065 ;;(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
|
5066 ;; "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
|
5067 ;;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
|
5068 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5069 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5073 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5074 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 ;; ;; 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
|
5078 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5080 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5081 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5082 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5083 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5084 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5085 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5086 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5088 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5089 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5090 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 ;;(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
|
5092 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 ;; ;; 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
|
5094 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5101 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5105 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5106 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5107 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5108 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5110 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5111 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5112 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 ;; (point)))) |
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-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5116 ;; (setq ange-ftp-dired-move-to-end-of-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-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5118 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5119 |
5120 ;;;; ------------------------------------------------------------ | |
5121 ;;;; CMS support | |
5122 ;;;; ------------------------------------------------------------ | |
5123 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5124 ;; 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
|
5125 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5126 ;; to try to remember the current minidisk, because if the connection |
5127 ;; is closed and needs to be reopened, we will find ourselves back in | |
5128 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5129 ;; usually close the connection after 5 minutes of inactivity. | |
5130 | |
5131 ;; Have I got the filename character set right? | |
5132 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5133 (defun ange-ftp-fix-name-for-cms (name &optional reverse) |
1106 | 5134 (ange-ftp-save-match-data |
5135 (if reverse | |
5136 ;; Since we only convert output from a pwd in this direction, | |
5137 ;; we'll assume that it's a minidisk, and make it into a | |
5138 ;; directory file name. Note that the expand-dir-hashtable | |
5139 ;; stores directories without the trailing /. Is this | |
5140 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 (concat "/" name) |
1106 | 5142 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5143 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5145 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 (let ((file (substring name (match-beginning 2) |
1106 | 5147 (match-end 2))) |
5148 (cmd (concat "cd " minidisk)) | |
5149 | |
5150 ;; Note that host and user are bound in the call | |
5151 ;; to ange-ftp-send-cmd | |
5152 (proc (ange-ftp-get-process ange-ftp-this-host | |
5153 ange-ftp-this-user))) | |
5154 | |
5155 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5156 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5157 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5158 file |
5159 ;; failed... try ONCE more. | |
5160 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5161 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ange-ftp-this-msg))) |
1106 | 5164 (if (car result) |
5165 file | |
5166 ;; failed. give up. | |
5167 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5168 (format "cd to minidisk %s failed: %s" | |
5169 minidisk (cdr result))))))) | |
5170 ;; return the minidisk | |
5171 minidisk)) | |
5172 (error "Invalid CMS filename"))))) | |
5173 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 ange-ftp-fix-name-func-alist))) |
1106 | 5178 |
5179 (or (memq 'cms ange-ftp-dumb-host-types) | |
5180 (setq ange-ftp-dumb-host-types | |
5181 (cons 'cms ange-ftp-dumb-host-types))) | |
5182 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5183 ;; 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
|
5184 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5185 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5186 ((string-equal "/" dir-name) |
1106 | 5187 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5188 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5189 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5190 ;; 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
|
5191 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5192 (cmd (concat "cd " minidisk)) |
5193 (file (if (match-beginning 2) | |
5194 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5195 (substring dir-name (match-beginning 2) |
1106 | 5196 (match-end 2)) |
5197 ;; use the wild-card | |
5198 "*"))) | |
5199 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5200 file | |
5201 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5202 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5203 ange-ftp-this-user)) |
1106 | 5204 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5205 (if (car result) | |
5206 file | |
5207 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5209 (format "cd to minidisk %s failed: " |
5210 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5212 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5213 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5214 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5215 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5216 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5217 |
5218 (defvar ange-ftp-cms-host-regexp nil | |
5219 "Regular expression to match hosts running the CMS operating system.") | |
5220 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5221 ;; Return non-nil if HOST is running CMS. |
1106 | 5222 (defun ange-ftp-cms-host (host) |
5223 (and ange-ftp-cms-host-regexp | |
5224 (ange-ftp-save-match-data | |
5225 (string-match ange-ftp-cms-host-regexp host)))) | |
5226 | |
5227 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5228 "Mark HOST as the name of a CMS host." |
1106 | 5229 (interactive |
5230 (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
|
5231 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5232 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5233 (if (not (ange-ftp-cms-host host)) |
5234 (setq ange-ftp-cms-host-regexp | |
5235 (concat "^" (regexp-quote host) "$" | |
5236 (and ange-ftp-cms-host-regexp "\\|") | |
5237 ange-ftp-cms-host-regexp) | |
5238 ange-ftp-host-cache nil))) | |
5239 | |
5240 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5242 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5243 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5244 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5245 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5246 ;; exist. It would be nice if completion worked for minidisks, as we | |
5247 ;; discover them. | |
5248 ; (let* ((dir-file (directory-file-name file)) | |
5249 ; (root (file-name-directory dir-file)) | |
5250 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5251 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5252 ; (if root-tbl | |
5253 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5254 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5255 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5256 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5257 ; (ange-ftp-set-files root root-tbl))) | |
5258 ;; Now do the usual parsing | |
5259 (let ((tbl (ange-ftp-make-hashtable))) | |
5260 (goto-char (point-min)) | |
5261 (ange-ftp-save-match-data | |
5262 (while | |
5263 (re-search-forward | |
5264 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5265 (ange-ftp-put-hash-entry | |
5266 (concat (buffer-substring (match-beginning 1) | |
5267 (match-end 1)) | |
5268 "." | |
5269 (buffer-substring (match-beginning 2) | |
5270 (match-end 2))) | |
5271 nil tbl) | |
5272 (forward-line 1)) | |
5273 (ange-ftp-put-hash-entry "." t tbl)) | |
5274 tbl)) | |
5275 | |
5276 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5277 (setq ange-ftp-parse-list-func-alist | |
5278 (cons '(cms . ange-ftp-parse-cms-listing) | |
5279 ange-ftp-parse-list-func-alist))) | |
5280 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5281 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5284 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5285 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5286 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5287 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5288 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5289 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5290 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5291 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5292 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5293 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5294 ;; ;; 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
|
5295 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5296 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5297 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5298 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5300 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5301 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5302 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5303 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 ;;(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
|
5306 ;; "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
|
5307 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5308 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5309 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5310 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5311 ;; (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
|
5312 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5313 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5314 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5315 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5316 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5317 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5318 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5319 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5320 ;; ange-ftp-dired-move-to-filename-alist))) |
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-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5323 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5324 ;; ;; 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
|
5325 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5326 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5327 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5328 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5329 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5330 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5331 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5332 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5333 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5334 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5335 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5336 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5337 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5338 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5339 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5340 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5341 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5342 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5343 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5344 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5345 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5346 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5347 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5348 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5349 ;;(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
|
5350 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5351 ;; (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
|
5352 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5353 |
5354 (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
|
5355 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5356 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5357 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5358 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5361 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5362 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5363 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;;(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
|
5365 ;; (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
|
5366 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5369 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5370 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5373 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5374 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5375 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5377 |
5378 ;;;; ------------------------------------------------------------ | |
5379 ;;;; Finally provide package. | |
5380 ;;;; ------------------------------------------------------------ | |
5381 | |
5382 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5383 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5384 ;;; ange-ftp.el ends here |