]> code.delx.au - gnu-emacs/blob - lisp/ange-ftp.el
Update copyright.
[gnu-emacs] / lisp / ange-ftp.el
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs
2
3 ;;; Copyright (C) 1989,90,91,92,93,94,95 Free Software Foundation, Inc.
4 ;;;
5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com)
6 ;; Keywords: comm
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
10 ;;; the Free Software Foundation; either version 2, or (at your option)
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
23 ;;; Commentary:
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
33 ;;; '/user@host:name' then it will spawn an FTP process connecting to machine
34 ;;; 'host' as account 'user' and perform its operation on the file 'name'.
35 ;;;
36 ;;; For example: if find-file is given a filename of:
37 ;;;
38 ;;; /ange@anorman:/tmp/notes
39 ;;;
40 ;;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as
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
43 ;;; needs a password to connect then it reads one in the echo area.
44
45 ;;; Extended filename syntax:
46 ;;;
47 ;;; The default extended filename syntax is '/user@host:name', where the
48 ;;; 'user@' part may be omitted. This syntax can be customised to a certain
49 ;;; extent by changing ange-ftp-name-format. There are limitations.
50 ;;;
51 ;;; If the user part is omitted then ange-ftp generates a default user
52 ;;; instead whose value depends on the variable ange-ftp-default-user.
53
54 ;;; Passwords:
55 ;;;
56 ;;; A password is required for each host/user pair. Ange-ftp reads passwords
57 ;;; as needed. You can also specify a password with ange-ftp-set-passwd, or
58 ;;; in a *valid* ~/.netrc file.
59
60 ;;; Passwords for user "anonymous":
61 ;;;
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 ;;; the value of `user-mail-address' is used; if nil then the user
67 ;;; is prompted for a password as normal.
68
69 ;;; "Dumb" UNIX hosts:
70 ;;;
71 ;;; The FTP servers on some UNIX machines have problems if the 'ls' command is
72 ;;; used.
73 ;;;
74 ;;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to
75 ;;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note
76 ;;; that this change will take effect for the current GNU Emacs session only.
77 ;;; See below for a discussion of non-UNIX hosts. If a large number of
78 ;;; machines with similar hostnames have this problem then it is easier to set
79 ;;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp
80 ;;; is unable to automatically recognize dumb unix hosts.
81
82 ;;; File name completion:
83 ;;;
84 ;;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts.
85 ;;; To do filename completion, ange-ftp needs a listing from the remote host.
86 ;;; Therefore, for very slow connections, it might not save any time.
87
88 ;;; FTP processes:
89 ;;;
90 ;;; When ange-ftp starts up an FTP process, it leaves it running for speed
91 ;;; purposes. Some FTP servers will close the connection after a period of
92 ;;; time, but ange-ftp should be able to quietly reconnect the next time that
93 ;;; the process is needed.
94 ;;;
95 ;;; Killing the "*ftp user@host*" buffer also kills the ftp process.
96 ;;; This should not cause ange-ftp any grief.
97
98 ;;; Binary file transfers:
99 ;;;
100 ;;; By default ange-ftp transfers files in ASCII mode. If a file being
101 ;;; transferred matches the value of ange-ftp-binary-file-name-regexp then
102 ;;; binary mode is used for that transfer.
103
104 ;;; Account passwords:
105 ;;;
106 ;;; Some FTP servers require an additional password which is sent by the
107 ;;; ACCOUNT command. ange-ftp partially supports this by allowing the user to
108 ;;; specify an account password by either calling ange-ftp-set-account, or by
109 ;;; specifying an account token in the .netrc file. If the account password
110 ;;; is set by either of these methods then ange-ftp will issue an ACCOUNT
111 ;;; command upon starting the FTP process.
112
113 ;;; Preloading:
114 ;;;
115 ;;; ange-ftp can be preloaded, but must be put in the site-init.el file and
116 ;;; not the site-load.el file in order for the documentation strings for the
117 ;;; functions being overloaded to be available.
118
119 ;;; Status reports:
120 ;;;
121 ;;; Most ange-ftp commands that talk to the FTP process output a status
122 ;;; message on what they are doing. In addition, ange-ftp can take advantage
123 ;;; of the FTP client's HASH command to display the status of transferring
124 ;;; files and listing directories. See the documentation for the variables
125 ;;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and
126 ;;; ange-ftp-process-verbose for more details.
127
128 ;;; Gateways:
129 ;;;
130 ;;; Sometimes it is necessary for the FTP process to be run on a different
131 ;;; machine than the machine running GNU Emacs. This can happen when the
132 ;;; local machine has restrictions on what hosts it can access.
133 ;;;
134 ;;; ange-ftp has support for running the ftp process on a different (gateway)
135 ;;; machine. The way it works is as follows:
136 ;;;
137 ;;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine
138 ;;; that doesn't have the access restrictions.
139 ;;;
140 ;;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression
141 ;;; that matches hosts that can be contacted from running a local ftp
142 ;;; process, but fails to match hosts that can't be accessed locally. For
143 ;;; example:
144 ;;;
145 ;;; "\\.hp\\.com$\\|^[^.]*$"
146 ;;;
147 ;;; will match all hosts that are in the .hp.com domain, or don't have an
148 ;;; explicit domain in their name, but will fail to match hosts with
149 ;;; explicit domains or that are specified by their ip address.
150 ;;;
151 ;;; 3) Using NFS and symlinks, make sure that there is a shared directory with
152 ;;; the *same* name between the local machine and the gateway machine.
153 ;;; This directory is necessary for temporary files created by ange-ftp.
154 ;;;
155 ;;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of
156 ;;; this directory plus an identifying filename prefix. For example:
157 ;;;
158 ;;; "/nfs/hplose/ange/ange-ftp"
159 ;;;
160 ;;; where /nfs/hplose/ange is a directory that is shared between the
161 ;;; gateway machine and the local machine.
162 ;;;
163 ;;; The simplest way of getting a ftp process running on the gateway machine
164 ;;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you
165 ;;; can't do this for some reason such as security then points 7 onwards will
166 ;;; discuss an alternative approach.
167 ;;;
168 ;;; 5) Set the variable ange-ftp-gateway-program to the name of the remote
169 ;;; shell process such as 'remsh' or 'rsh' if the default isn't correct.
170 ;;;
171 ;;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it
172 ;;; isn't already. This tells ange-ftp that you are using a remote shell
173 ;;; rather than logging in using telnet or rlogin.
174 ;;;
175 ;;; That should be all you need to allow ange-ftp to spawn a ftp process on
176 ;;; the gateway machine. If you have to use telnet or rlogin to get to the
177 ;;; gateway machine then follow the instructions below.
178 ;;;
179 ;;; 7) Set the variable ange-ftp-gateway-program to the name of the program
180 ;;; that lets you log onto the gateway machine. This may be something like
181 ;;; telnet or rlogin.
182 ;;;
183 ;;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular
184 ;;; expression that matches the prompt you get when you login to the
185 ;;; gateway machine. Be very specific here; this regexp must not match
186 ;;; *anything* in your login banner except this prompt.
187 ;;; shell-prompt-pattern is far too general as it appears to match some
188 ;;; login banners from Sun machines. For example:
189 ;;;
190 ;;; "^$*$ *"
191 ;;;
192 ;;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let
193 ;;; ange-ftp know that it has to "hand-hold" the login to the gateway
194 ;;; machine.
195 ;;;
196 ;;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command
197 ;;; that will put the pty connected to the gateway machine into a
198 ;;; no-echoing mode, and will strip off carriage-returns from output from
199 ;;; the gateway machine. For example:
200 ;;;
201 ;;; "stty -onlcr -echo"
202 ;;;
203 ;;; will work on HP-UX machines, whereas:
204 ;;;
205 ;;; "stty -echo nl"
206 ;;;
207 ;;; appears to work for some Sun machines.
208 ;;;
209 ;;; That's all there is to it.
210
211 ;;; Smart gateways:
212 ;;;
213 ;;; If you have a "smart" ftp program that allows you to issue commands like
214 ;;; "USER foo@bar" which do nice proxy things, then look at the variables
215 ;;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port.
216 ;;;
217 ;;; Otherwise, if there is an alternate ftp program that implements proxy in
218 ;;; a transparent way (i.e. w/o specifying the proxy host), that will
219 ;;; connect you directly to the desired destination host:
220 ;;; Set ange-ftp-gateway-ftp-program-name to that program's name.
221 ;;; Set ange-ftp-local-host-regexp to a value as stated earlier on.
222 ;;; Leave ange-ftp-gateway-host set to nil.
223 ;;; Set ange-ftp-smart-gateway to t.
224
225 ;;; Tips for using ange-ftp:
226 ;;;
227 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in
228 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t).
229 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that
230 ;;; there is a chance you might connect to an ULTRIX machine (such as
231 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have
232 ;;; the side effect that dired will have problems with symlinks whose names
233 ;;; end in an @. If you get yourself into this situation then editing
234 ;;; dired's ls-switches to remove "F", will temporarily fix things.
235 ;;;
236 ;;; 2. If you know that you are connecting to a certain non-UNIX machine
237 ;;; frequently, and ange-ftp seems to be unable to guess its host-type,
238 ;;; then setting the appropriate host-type regexp
239 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or
240 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report
241 ;;; ange-ftp's inability to recognize the host-type as a bug.
242 ;;;
243 ;;; 3. For slow connections, you might get "listing unreadable" error
244 ;;; messages, or get an empty buffer for a file that you know has something
245 ;;; in it. The solution is to increase the value of ange-ftp-retry-time.
246 ;;; Its default value is 5 which is plenty for reasonable connections.
247 ;;; However, for some transatlantic connections I set this to 20.
248 ;;;
249 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by
250 ;;; copying the file to the local machine, compressing it there, and then
251 ;;; sending it back. Binary file transfers between machines of different
252 ;;; architectures can be a risky business. Test things out first on some
253 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by
254 ;;; moving them through the local machine. Again, be careful when doing
255 ;;; this with binary files on non-Unix machines.
256 ;;;
257 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm
258 ;;; (list of dired commands for which confirmation is not asked). You
259 ;;; might want to reconsider your setting of this variable, because you
260 ;;; might want confirmation for more commands on remote direds than on
261 ;;; local direds. For example, I strongly recommend that you not include
262 ;;; compress and uncompress in this list. If there is enough demand it
263 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of
264 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST
265 ;;; is a list of commands for which confirmation would be suppressed. Then
266 ;;; remote dired listings would take their (buffer-local) value of
267 ;;; dired-no-confirm from this alist. Who votes for this?
268
269 ;;; ---------------------------------------------------------------------
270 ;;; Non-UNIX support:
271 ;;; ---------------------------------------------------------------------
272
273 ;;; VMS support:
274 ;;;
275 ;;; Ange-ftp has full support for VMS hosts. It
276 ;;; should be able to automatically recognize any VMS machine. However, if it
277 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well,
278 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We
279 ;;; would be grateful if you would report any failures to automatically
280 ;;; recognize a VMS host as a bug.
281 ;;;
282 ;;; Filename Syntax:
283 ;;;
284 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a
285 ;;; UNIX-y way. For example:
286 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1
287 ;;; would be entered as:
288 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1
289 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file:
290 ;;; [.CSV.POLICY]RULES.MEM
291 ;;; you would type:
292 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM
293 ;;;
294 ;;; A legal VMS filename is of the form: FILE.TYPE;##
295 ;;; where FILE can be up to 39 characters
296 ;;; TYPE can be up to 39 characters
297 ;;; ## is a version number (an integer between 1 and 32,767)
298 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $
299 ;;; $ cannot begin a filename, and - cannot be used as the first or last
300 ;;; character.
301 ;;;
302 ;;; Tips:
303 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is.
304 ;;; Therefore, to access a VMS file, you must enter the filename with upper
305 ;;; case letters.
306 ;;; 2. To access the latest version of file under VMS, you use the filename
307 ;;; without the ";" and version number. You should always edit the latest
308 ;;; version of a file. If you want to edit an earlier version, copy it to a
309 ;;; new file first. This has nothing to do with ange-ftp, but is simply
310 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is
311 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you
312 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find
313 ;;; that VMS will not allow you to save the file because it will refuse to
314 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and
315 ;;; attach the buffer to this file. To get out of this situation, M-x
316 ;;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to
317 ;;; latest version of the file. For this reason, in dired "f"
318 ;;; (dired-find-file), always loads the file sans version, whereas "v",
319 ;;; (dired-view-file), always loads the explicit version number. The
320 ;;; reasoning being that it reasonable to view old versions of a file, but
321 ;;; not to edit them.
322 ;;; 3. EMACS has a feature in which it does environment variable substitution
323 ;;; in filenames. Therefore, to enter a $ in a filename, you must quote it
324 ;;; by typing $$.
325
326 ;;; MTS support:
327 ;;;
328 ;;; Ange-ftp has full support for hosts running
329 ;;; the Michigan terminal system. It should be able to automatically
330 ;;; recognize any MTS machine. However, if it fails to do this, you can use
331 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable
332 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you
333 ;;; would report any failures to automatically recognize a MTS host as a bug.
334 ;;;
335 ;;; Filename syntax:
336 ;;;
337 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account
338 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be
339 ;;; entered as
340 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE
341 ;;; In other words, MTS accounts are treated as UNIX directories. Of course,
342 ;;; to access a file in another account, you must have access permission for
343 ;;; it. If FILE were in your own account, then you could enter it in a
344 ;;; relative name fashion as
345 ;;; /YYYY@mtsg.ubc.ca:FILE
346 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the
347 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you
348 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter
349 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX
350 ;;; is.
351
352 ;;; CMS support:
353 ;;;
354 ;;; Ange-ftp has full support for hosts running
355 ;;; CMS. It should be able to automatically recognize any CMS machine.
356 ;;; However, if it fails to do this, you can use the command
357 ;;; ange-ftp-add-cms-host. As well, you can set the variable
358 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you
359 ;;; would report any failures to automatically recognize a CMS host as a bug.
360 ;;;
361 ;;; Filename syntax:
362 ;;;
363 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are
364 ;;; treated as UNIX directories. For example to access the file READ.ME in
365 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter
366 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME
367 ;;; If *.301 is the default minidisk for this account, you could access
368 ;;; FOO.BAR on this minidisk as
369 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR
370 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be
371 ;;; up to 8 characters. Again, beware that CMS filenames are always upper
372 ;;; case, and hence must be entered as such.
373 ;;;
374 ;;; Tips:
375 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always
376 ;;; need an account password. To have ange-ftp send an account password,
377 ;;; you can either include it in your .netrc file, or use
378 ;;; ange-ftp-set-account.
379 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we
380 ;;; can fix this.
381 ;;;
382 ;;; ------------------------------------------------------------------
383 ;;; Bugs:
384 ;;; ------------------------------------------------------------------
385 ;;;
386 ;;; 1. Umask problems:
387 ;;; Be warned that files created by using ange-ftp will take account of the
388 ;;; umask of the ftp daemon process rather than the umask of the creating
389 ;;; user. This is particularly important when logging in as the root user.
390 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make
391 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I
392 ;;; suspect that there is something similar on other systems.
393 ;;;
394 ;;; 2. Some combinations of FTP clients and servers break and get out of sync
395 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu
396 ;;; machines cause this problem for some FTP clients. Using
397 ;;; ange-ftp-kill-ftp-process can restart the ftp process, which
398 ;;; should get things back in synch.
399 ;;;
400 ;;; 3. Ange-ftp does not check to make sure that when creating a new file,
401 ;;; you provide a valid filename for the remote operating system.
402 ;;; If you do not, then the remote FTP server will most likely
403 ;;; translate your filename in some way. This may cause ange-ftp to
404 ;;; get confused about what exactly is the name of the file. The
405 ;;; most common causes of this are using lower case filenames on systems
406 ;;; which support only upper case, and using filenames which are too
407 ;;; long.
408 ;;;
409 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons.
410 ;;;
411 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs
412 ;;; for some reason creates a FTP process that only talks via pipes then
413 ;;; ange-ftp won't be getting the information it requires at the time that
414 ;;; it wants it since pipes flush at different times to pty's. One
415 ;;; disgusting way around this problem is to talk to the FTP process via
416 ;;; rlogin which does the 'right' things with pty's.
417 ;;;
418 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't
419 ;;; worried about this too much. Eventually, we should have some caching
420 ;;; of the current minidisk.
421 ;;;
422 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as
423 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd
424 ;;; to it. This is (understandably) beyond ange-ftp.
425 ;;;
426 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky.
427 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp
428 ;;; will use binary mode for the copy. Between systems of different
429 ;;; architecture, this still may not be enough to guarantee the integrity
430 ;;; of binary files. Binary file transfers from VMS machines are
431 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be
432 ;;; an alist of OS type, regexp pairs?
433 ;;;
434 ;;; 9. The code to do compression of files over ftp is not as careful as it
435 ;;; should be. It deletes the old remote version of the file, before
436 ;;; actually checking if the local to remote transfer of the compressed
437 ;;; file succeeds. Of course to delete the original version of the file
438 ;;; after transferring the compressed version back is also dangerous,
439 ;;; because some OS's have severe restrictions on the length of filenames,
440 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be
441 ;;; truncated. Then, ange-ftp would delete the only remaining version of
442 ;;; the file. Maybe ange-ftp should make backups when it compresses files
443 ;;; (of course, the backup "~" could also be truncated off, sigh...).
444 ;;; Suggestions?
445 ;;;
446
447 ;;; 10. If a dir listing is attempted for an empty directory on (at least
448 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and
449 ;;; I don't know how to get ange-ftp work to around it.
450 ;;;
451 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames
452 ;;; containing spaces, but beware that the remote ftpd may not like them
453 ;;; much.
454 ;;;
455 ;;; 12. The dired support for non-Unix-like systems does not currently work.
456 ;;; It needs to be reimplemented by modifying the parse-...-listing
457 ;;; functions to convert the directory listing to ls -l format.
458 ;;;
459 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks
460 ;;; with a trailing @ in a ls -alF listing. In order to account for this
461 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is
462 ;;; parsing a listing with the F switch. This will cause ange-ftp to
463 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name
464 ;;; ends in an @. ange-ftp will correct itself if you take F out of the
465 ;;; dired ls switches (C-u s will allow you to edit the switches). The
466 ;;; dired buffer will be automatically reverted, which will allow ange-ftp
467 ;;; to fix its files hashtable. A cookie to anyone who can think of a
468 ;;; fast, sure-fire way to recognize ULTRIX over ftp.
469
470 ;;; If you find any bugs or problems with this package, PLEASE either e-mail
471 ;;; the above author, or send a message to the ange-ftp-lovers mailing list
472 ;;; below. Ideas and constructive comments are especially welcome.
473
474 ;;; ange-ftp-lovers:
475 ;;;
476 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All
477 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss
478 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to
479 ;;; the mailing list.
480 ;;;
481 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the
482 ;;; list, please mail one of the following addresses:
483 ;;;
484 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com
485 ;;; or
486 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com
487 ;;;
488 ;;; Please don't forget the -request part.
489 ;;;
490 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the
491 ;;; following addresses:
492 ;;;
493 ;;; ange-ftp-lovers@anorman.hpl.hp.com
494 ;;; or
495 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com
496 ;;;
497 ;;; Alternatively, there is a mailing list that only gets announcements of new
498 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be
499 ;;; subscribed to by e-mailing to the -request address as above. Please make
500 ;;; it clear in the request which mailing list you wish to join.
501
502 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp
503 ;;; from:
504 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z
505 ;;; or:
506 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z
507 ;;; or:
508 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z
509
510 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under:
511 ;;;
512 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/
513 \f
514 ;;; -----------------------------------------------------------
515 ;;; Technical information on this package:
516 ;;; -----------------------------------------------------------
517
518 ;;; ange-ftp works by putting a handler on file-name-handler-alist
519 ;;; which is called by many primitives, and a few non-primitives,
520 ;;; whenever they see a file name of the appropriate sort.
521
522 ;;; Checklist for adding non-UNIX support for TYPE
523 ;;;
524 ;;; The following functions may need TYPE versions:
525 ;;; (not all functions will be needed for every OS)
526 ;;;
527 ;;; ange-ftp-fix-name-for-TYPE
528 ;;; ange-ftp-fix-dir-name-for-TYPE
529 ;;; ange-ftp-TYPE-host
530 ;;; ange-ftp-TYPE-add-host
531 ;;; ange-ftp-parse-TYPE-listing
532 ;;; ange-ftp-TYPE-delete-file-entry
533 ;;; ange-ftp-TYPE-add-file-entry
534 ;;; ange-ftp-TYPE-file-name-as-directory
535 ;;; ange-ftp-TYPE-make-compressed-filename
536 ;;; ange-ftp-TYPE-file-name-sans-versions
537 ;;;
538 ;;; Variables:
539 ;;;
540 ;;; ange-ftp-TYPE-host-regexp
541 ;;; May need to add TYPE to ange-ftp-dumb-host-types
542 ;;;
543 ;;; Check the following functions for OS dependent coding:
544 ;;;
545 ;;; ange-ftp-host-type
546 ;;; ange-ftp-guess-host-type
547 ;;; ange-ftp-allow-child-lookup
548
549 ;;; Host type conventions:
550 ;;;
551 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type
552 ;;; (mostly) follow the following conventions for remote host types. At
553 ;;; least, I think that future code should try to follow these conventions,
554 ;;; and the current code should eventually be made compliant.
555 ;;;
556 ;;; nil = local host type, whatever that is (probably unix).
557 ;;; Think nil as in "not a remote host". This value is used by
558 ;;; ange-ftp-dired-host-type for local buffers.
559 ;;;
560 ;;; t = a remote host of unknown type. Think t is in true, it's remote.
561 ;;; Currently, 'unix is used as the default remote host type.
562 ;;; Maybe we should use t.
563 ;;;
564 ;;; 'type = a remote host of TYPE type.
565 ;;;
566 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing
567 ;;; program called list. This is currently only used for Unix
568 ;;; dl (descriptive listings), when ange-ftp-dired-host-type
569 ;;; is set to 'unix:dl.
570
571 ;;; Bug report codes:
572 ;;;
573 ;;; Because of their naive faith in this code, there are certain situations
574 ;;; which the writers of this program believe could never happen. However,
575 ;;; being realists they have put calls to `error' in the program at these
576 ;;; points. These errors provide a code, which is an integer, greater than 1.
577 ;;; To aid debugging. the error codes, and the functions in which they reside
578 ;;; are listed below.
579 ;;;
580 ;;; 1: See ange-ftp-ls
581 ;;;
582 \f
583 ;;; -----------------------------------------------------------
584 ;;; Hall of fame:
585 ;;; -----------------------------------------------------------
586 ;;;
587 ;;; Thanks to Roland McGrath for improving the filename syntax handling,
588 ;;; for suggesting many enhancements and for numerous cleanups to the code.
589 ;;;
590 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways.
591 ;;;
592 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and
593 ;;; dired / shell auto-loading.
594 ;;;
595 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and
596 ;;; bugfixes.
597 ;;;
598 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support,
599 ;;; VOS support, and hostname completion.
600 ;;;
601 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help
602 ;;; with file-name expansion, efficiency worries, stylistic concerns and many
603 ;;; bugfixes.
604 ;;;
605 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS,
606 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and
607 ;;; auto-recognition of the host type.
608 ;;;
609 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp.
610 ;;;
611 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping
612 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann,
613 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill
614 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay
615 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others
616 ;;; whose names I've forgotten who have helped to debug and fix problems with
617 ;;; ange-ftp.el.
618 \f
619
620 ;;; Code:
621 (require 'comint)
622
623 ;;;; ------------------------------------------------------------
624 ;;;; User customization variables.
625 ;;;; ------------------------------------------------------------
626
627 (defvar ange-ftp-name-format
628 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4))
629 "*Format of a fully expanded remote file name.
630 This is a list of the form \(REGEXP HOST USER NAME\),
631 where REGEXP is a regular expression matching
632 the full remote name, and HOST, USER, and NAME are the numbers of
633 parenthesized expressions in REGEXP for the components (in that order).")
634
635 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of
636 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs.
637 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out.
638
639 (defvar ange-ftp-multi-msgs
640 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-"
641 "*Regular expression matching the start of a multiline ftp reply.")
642
643 (defvar ange-ftp-good-msgs
644 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark"
645 "*Regular expression matching ftp \"success\" messages.")
646
647 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT.
648 ;; Also CMS machines use a multiline 550- reply to say that you
649 ;; don't have write permission. ange-ftp gets into multi-line skip
650 ;; mode and hangs. Have it ignore 550- instead. It will then barf
651 ;; when it gets the 550 line, as it should.
652
653 (defvar ange-ftp-skip-msgs
654 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|"
655 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|"
656 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye")
657 "*Regular expression matching ftp messages that can be ignored.")
658
659 (defvar ange-ftp-fatal-msgs
660 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|"
661 "^No control connection\\|unknown host\\|^lost connection")
662 "*Regular expression matching ftp messages that indicate serious errors.
663 These mean that the FTP process should (or already has) been killed.")
664
665 (defvar ange-ftp-gateway-fatal-msgs
666 "No route to host\\|Connection closed\\|No such host\\|Login incorrect"
667 "*Regular expression matching login failure messages from rlogin/telnet.")
668
669 (defvar ange-ftp-xfer-size-msgs
670 "^150 .* connection for .* (\\([0-9]+\\) bytes)"
671 "*Regular expression used to determine the number of bytes in a FTP transfer.")
672
673 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp"
674 "*Template used to create temporary files.")
675
676 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp"
677 "*Template used to create temporary files when ftp-ing through a gateway.
678 Files starting with this prefix need to be accessible from BOTH the local
679 machine and the gateway machine, and need to have the SAME name on both
680 machines, that is, /tmp is probably NOT what you want, since that is rarely
681 cross-mounted.")
682
683 (defvar ange-ftp-netrc-filename "~/.netrc"
684 "*File in .netrc format to search for passwords.")
685
686 (defvar ange-ftp-disable-netrc-security-check nil
687 "*If non-nil avoid checking permissions on the .netrc file.")
688
689 (defvar ange-ftp-default-user nil
690 "*User name to use when none is specied in a file name.
691 If nil, then the name under which the user is logged in is used.
692 If non-nil but not a string, the user is prompted for the name.")
693
694 (defvar ange-ftp-default-password nil
695 "*Password to use when the user is the same as ange-ftp-default-user.")
696
697 (defvar ange-ftp-default-account nil
698 "*Account password to use when the user is the same as ange-ftp-default-user.")
699
700 (defvar ange-ftp-generate-anonymous-password t
701 "*If t, use value of `user-mail-address' as password for anonymous ftp.
702 If a string, then use that string as the password.
703 If nil, prompt the user for a password.")
704
705 (defvar ange-ftp-dumb-unix-host-regexp nil
706 "*If non-nil, regexp matching hosts on which `dir' command lists directory.")
707
708 (defvar ange-ftp-binary-file-name-regexp
709 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|"
710 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|"
711 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|"
712 "\\.taz$\\|\\.tgz$")
713 "*If a file matches this regexp then it is transferred in binary mode.")
714
715 (defvar ange-ftp-gateway-host nil
716 "*Name of host to use as gateway machine when local FTP isn't possible.")
717
718 (defvar ange-ftp-local-host-regexp ".*"
719 "*Regexp selecting hosts which can be reached directly with ftp.
720 For other hosts the FTP process is started on \`ange-ftp-gateway-host\'
721 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.")
722
723 (defvar ange-ftp-gateway-program-interactive nil
724 "*If non-nil then the gateway program should give a shell prompt.
725 Both telnet and rlogin do something like this.")
726
727 (defvar ange-ftp-gateway-program remote-shell-program
728 "*Name of program to spawn a shell on the gateway machine.
729 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See
730 also the gateway variable above.")
731
732 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *"
733 "*Regexp matching prompt after complete login sequence on gateway machine.
734 A match for this means the shell is now awaiting input. Make this regexp as
735 strict as possible; it shouldn't match *anything* at all except the user's
736 initial prompt. The above string will fail under most SUN-3's since it
737 matches the login banner.")
738
739 (defvar ange-ftp-gateway-setup-term-command
740 (if (eq system-type 'hpux)
741 "stty -onlcr -echo\n"
742 "stty -echo nl\n")
743 "*Set up terminal after logging in to the gateway machine.
744 This command should stop the terminal from echoing each command, and
745 arrange to strip out trailing ^M characters.")
746
747 (defvar ange-ftp-smart-gateway nil
748 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart.
749 Don't bother telnetting, etc., already connected to desired host transparently,
750 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.")
751
752 (defvar ange-ftp-smart-gateway-port "21"
753 "*Port on gateway machine to use when smart gateway is in operation.")
754
755 (defvar ange-ftp-send-hash t
756 "*If non-nil, send the HASH command to the FTP client.")
757
758 (defvar ange-ftp-binary-hash-mark-size nil
759 "*Default size, in bytes, between hash-marks when transferring a binary file.
760 If NIL, this variable will be locally overridden if the FTP client outputs a
761 suitable response to the HASH command. If non-NIL then this value takes
762 precedence over the local value.")
763
764 (defvar ange-ftp-ascii-hash-mark-size 1024
765 "*Default size, in bytes, between hash-marks when transferring an ASCII file.
766 This variable is buffer-local and will be locally overridden if the FTP client
767 outputs a suitable response to the HASH command.")
768
769 (defvar ange-ftp-process-verbose t
770 "*If non-NIL then be chatty about interaction with the FTP process.")
771
772 (defvar ange-ftp-ftp-program-name "ftp"
773 "*Name of FTP program to run.")
774
775 (defvar ange-ftp-gateway-ftp-program-name "ftp"
776 "*Name of FTP program to run when accessing non-local hosts.
777 Some AT&T folks claim to use something called `pftp' here.")
778
779 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v")
780 "*A list of arguments passed to the FTP program when started.")
781
782 (defvar ange-ftp-nslookup-program nil
783 "*If non-NIL then a string naming nslookup program." )
784
785 (defvar ange-ftp-make-backup-files ()
786 "*Non-nil means make backup files for \"magic\" remote files.")
787
788 (defvar ange-ftp-retry-time 5
789 "*Number of seconds to wait before retry if file or listing doesn't arrive.
790 This might need to be increased for very slow connections.")
791
792 (defvar ange-ftp-auto-save 0
793 "If 1, allows ange-ftp files to be auto-saved.
794 If 0, suppresses auto-saving of ange-ftp files.
795 Don't use any other value.")
796 \f
797 ;;;; ------------------------------------------------------------
798 ;;;; Hash table support.
799 ;;;; ------------------------------------------------------------
800
801 (require 'backquote)
802
803 (defun ange-ftp-make-hashtable (&optional size)
804 "Make an obarray suitable for use as a hashtable.
805 SIZE, if supplied, should be a prime number."
806 (make-vector (or size 31) 0))
807
808 (defun ange-ftp-map-hashtable (fun tbl)
809 "Call FUNCTION on each key and value in HASHTABLE."
810 (mapatoms
811 (function
812 (lambda (sym)
813 (funcall fun (get sym 'key) (get sym 'val))))
814 tbl))
815
816 (defmacro ange-ftp-make-hash-key (key)
817 "Convert KEY into a suitable key for a hashtable."
818 (` (if (stringp (, key))
819 (, key)
820 (prin1-to-string (, key)))))
821
822 (defun ange-ftp-get-hash-entry (key tbl)
823 "Return the value associated with KEY in HASHTABLE."
824 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl)))
825 (and sym (get sym 'val))))
826
827 (defun ange-ftp-put-hash-entry (key val tbl)
828 "Record an association between KEY and VALUE in HASHTABLE."
829 (let ((sym (intern (ange-ftp-make-hash-key key) tbl)))
830 (put sym 'val val)
831 (put sym 'key key)))
832
833 (defun ange-ftp-del-hash-entry (key tbl)
834 "Copy all symbols except KEY in HASHTABLE and return modified hashtable."
835 (let* ((len (length tbl))
836 (new-tbl (ange-ftp-make-hashtable len))
837 (i (1- len)))
838 (ange-ftp-map-hashtable
839 (function
840 (lambda (k v)
841 (or (equal k key)
842 (ange-ftp-put-hash-entry k v new-tbl))))
843 tbl)
844 (while (>= i 0)
845 (aset tbl i (aref new-tbl i))
846 (setq i (1- i)))
847 tbl))
848
849 (defun ange-ftp-hash-entry-exists-p (key tbl)
850 "Return whether there is an association for KEY in TABLE."
851 (intern-soft (ange-ftp-make-hash-key key) tbl))
852
853 (defun ange-ftp-hash-table-keys (tbl)
854 "Return a sorted list of all the active keys in TABLE, as strings."
855 (sort (all-completions "" tbl)
856 (function string-lessp)))
857 \f
858 ;;;; ------------------------------------------------------------
859 ;;;; Internal variables.
860 ;;;; ------------------------------------------------------------
861
862 (defvar ange-ftp-data-buffer-name " *ftp data*"
863 "Buffer name to hold directory listing data received from ftp process.")
864
865 (defvar ange-ftp-netrc-modtime nil
866 "Last modified time of the netrc file from file-attributes.")
867
868 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable)
869 "Hash table holding associations between HOST, USER pairs.")
870
871 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable)
872 "Mapping between a HOST, USER pair and a PASSWORD for them.")
873
874 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable)
875 "Mapping between a HOST, USER pair and a ACCOUNT password for them.")
876
877 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97)
878 "Hash table for storing directories and their respective files.")
879
880 (defvar ange-ftp-ls-cache-lsargs nil
881 "Last set of args used by ange-ftp-ls.")
882
883 (defvar ange-ftp-ls-cache-file nil
884 "Last file passed to ange-ftp-ls.")
885
886 (defvar ange-ftp-ls-cache-res nil
887 "Last result returned from ange-ftp-ls.")
888
889 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable))
890
891 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):")
892
893 ;; These are local variables in each FTP process buffer.
894 (defvar ange-ftp-hash-mark-unit nil)
895 (defvar ange-ftp-hash-mark-count nil)
896 (defvar ange-ftp-xfer-size nil)
897 (defvar ange-ftp-process-string nil)
898 (defvar ange-ftp-process-result-line nil)
899 (defvar ange-ftp-process-busy nil)
900 (defvar ange-ftp-process-result nil)
901 (defvar ange-ftp-process-multi-skip nil)
902 (defvar ange-ftp-process-msg nil)
903 (defvar ange-ftp-process-continue nil)
904 (defvar ange-ftp-last-percent nil)
905
906 ;; These variables are bound by one function and examined by another.
907 ;; Leave them void globally for error checking.
908 (defvar ange-ftp-this-file)
909 (defvar ange-ftp-this-dir)
910 (defvar ange-ftp-this-user)
911 (defvar ange-ftp-this-host)
912 (defvar ange-ftp-this-msg)
913 (defvar ange-ftp-completion-ignored-pattern)
914 (defvar ange-ftp-trample-marker)
915 \f
916 ;; New error symbols.
917 (put 'ftp-error 'error-conditions '(ftp-error file-error error))
918 ;; (put 'ftp-error 'error-message "FTP error")
919 \f
920 ;;; ------------------------------------------------------------
921 ;;; Enhanced message support.
922 ;;; ------------------------------------------------------------
923
924 (defun ange-ftp-message (fmt &rest args)
925 "Display message in echo area, but indicate if truncated.
926 Args are as in `message': a format string, plus arguments to be formatted."
927 (let ((msg (apply (function format) fmt args))
928 (max (window-width (minibuffer-window))))
929 (if (>= (length msg) max)
930 (setq msg (concat "> " (substring msg (- 3 max)))))
931 (message "%s" msg)))
932
933 (defun ange-ftp-abbreviate-filename (file &optional new)
934 "Abbreviate the file name FILE relative to the default-directory.
935 If the optional parameter NEW is given and the non-directory parts match,
936 only return the directory part of FILE."
937 (save-match-data
938 (if (and default-directory
939 (string-match (concat "^"
940 (regexp-quote default-directory)
941 ".") file))
942 (setq file (substring file (1- (match-end 0)))))
943 (if (and new
944 (string-equal (file-name-nondirectory file)
945 (file-name-nondirectory new)))
946 (setq file (file-name-directory file)))
947 (or file "./")))
948 \f
949 ;;;; ------------------------------------------------------------
950 ;;;; User / Host mapping support.
951 ;;;; ------------------------------------------------------------
952
953 (defun ange-ftp-set-user (host user)
954 "For a given HOST, set or change the default USER."
955 (interactive "sHost: \nsUser: ")
956 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable))
957
958 (defun ange-ftp-get-user (host)
959 "Given a HOST, return the default USER."
960 (ange-ftp-parse-netrc)
961 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable)))
962 (or user
963 (prog1
964 (setq user
965 (cond ((stringp ange-ftp-default-user)
966 ;; We have a default name. Use it.
967 ange-ftp-default-user)
968 (ange-ftp-default-user
969 ;; Ask the user.
970 (let ((enable-recursive-minibuffers t))
971 (read-string (format "User for %s: " host)
972 (user-login-name))))
973 ;; Default to the user's login name.
974 (t
975 (user-login-name))))
976 (ange-ftp-set-user host user)))))
977 \f
978 ;;;; ------------------------------------------------------------
979 ;;;; Password support.
980 ;;;; ------------------------------------------------------------
981
982 (defun ange-ftp-read-passwd (prompt &optional default)
983 "Read a password, echoing `.' for each character typed.
984 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line.
985 Optional DEFAULT is password to start with."
986 (let ((pass (if default default ""))
987 (c 0)
988 (echo-keystrokes 0)
989 (cursor-in-echo-area t))
990 (while (progn (message "%s%s"
991 prompt
992 (make-string (length pass) ?.))
993 (setq c (read-char))
994 (and (/= c ?\r) (/= c ?\n) (/= c ?\e)))
995 (if (= c ?\C-u)
996 (setq pass "")
997 (if (and (/= c ?\b) (/= c ?\177))
998 (setq pass (concat pass (char-to-string c)))
999 (if (> (length pass) 0)
1000 (setq pass (substring pass 0 -1))))))
1001 (message "")
1002 (ange-ftp-repaint-minibuffer)
1003 pass))
1004
1005 (defmacro ange-ftp-generate-passwd-key (host user)
1006 (` (concat (, host) "/" (, user))))
1007
1008 (defmacro ange-ftp-lookup-passwd (host user)
1009 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user))
1010 ange-ftp-passwd-hashtable)))
1011
1012 (defun ange-ftp-set-passwd (host user passwd)
1013 "For a given HOST and USER, set or change the associated PASSWORD."
1014 (interactive (list (read-string "Host: ")
1015 (read-string "User: ")
1016 (ange-ftp-read-passwd "Password: ")))
1017 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user)
1018 passwd
1019 ange-ftp-passwd-hashtable))
1020
1021 (defun ange-ftp-get-host-with-passwd (user)
1022 "Given a USER, return a host we know the password for."
1023 (ange-ftp-parse-netrc)
1024 (catch 'found-one
1025 (ange-ftp-map-hashtable
1026 (function (lambda (host val)
1027 (if (ange-ftp-lookup-passwd host user)
1028 (throw 'found-one host))))
1029 ange-ftp-user-hashtable)
1030 (save-match-data
1031 (ange-ftp-map-hashtable
1032 (function
1033 (lambda (key value)
1034 (if (string-match "^[^/]*\\(/\\).*$" key)
1035 (let ((host (substring key 0 (match-beginning 1))))
1036 (if (and (string-equal user (substring key (match-end 1)))
1037 value)
1038 (throw 'found-one host))))))
1039 ange-ftp-passwd-hashtable))
1040 nil))
1041
1042 (defun ange-ftp-get-passwd (host user)
1043 "Return the password for specified HOST and USER, asking user if necessary."
1044 (ange-ftp-parse-netrc)
1045
1046 ;; look up password in the hash table first; user might have overridden the
1047 ;; defaults.
1048 (cond ((ange-ftp-lookup-passwd host user))
1049
1050 ;; see if default user and password set from the .netrc file.
1051 ((and (stringp ange-ftp-default-user)
1052 ange-ftp-default-password
1053 (string-equal user ange-ftp-default-user))
1054 ange-ftp-default-password)
1055
1056 ;; anonymous ftp password is handled specially since there is an
1057 ;; unwritten rule about how that is used on the Internet.
1058 ((and (or (string-equal user "anonymous")
1059 (string-equal user "ftp"))
1060 ange-ftp-generate-anonymous-password)
1061 (if (stringp ange-ftp-generate-anonymous-password)
1062 ange-ftp-generate-anonymous-password
1063 user-mail-address))
1064
1065 ;; see if same user has logged in to other hosts; if so then prompt
1066 ;; with the password that was used there.
1067 (t
1068 (let* ((other (ange-ftp-get-host-with-passwd user))
1069 (passwd (if other
1070
1071 ;; found another machine with the same user.
1072 ;; Try that account.
1073 (ange-ftp-read-passwd
1074 (format "passwd for %s@%s (same as %s@%s): "
1075 user host user other)
1076 (ange-ftp-lookup-passwd other user))
1077
1078 ;; I give up. Ask the user for the password.
1079 (ange-ftp-read-passwd
1080 (format "Password for %s@%s: " user host)))))
1081 (ange-ftp-set-passwd host user passwd)
1082 passwd))))
1083 \f
1084 ;;;; ------------------------------------------------------------
1085 ;;;; Account support
1086 ;;;; ------------------------------------------------------------
1087
1088 ;; Account passwords must be either specified in the .netrc file, or set
1089 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't
1090 ;; check to see whether the FTP process is actually prompting for an account
1091 ;; password.
1092
1093 (defun ange-ftp-set-account (host user account)
1094 "For a given HOST and USER, set or change the associated ACCOUNT password."
1095 (interactive (list (read-string "Host: ")
1096 (read-string "User: ")
1097 (ange-ftp-read-passwd "Account password: ")))
1098 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user)
1099 account
1100 ange-ftp-account-hashtable))
1101
1102 (defun ange-ftp-get-account (host user)
1103 "Given a HOST and USER, return the FTP account."
1104 (ange-ftp-parse-netrc)
1105 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user)
1106 ange-ftp-account-hashtable)
1107 (and (stringp ange-ftp-default-user)
1108 (string-equal user ange-ftp-default-user)
1109 ange-ftp-default-account)))
1110 \f
1111 ;;;; ------------------------------------------------------------
1112 ;;;; ~/.netrc support
1113 ;;;; ------------------------------------------------------------
1114
1115 (defun ange-ftp-chase-symlinks (file)
1116 "Return the filename that FILE references, following all symbolic links."
1117 (let (temp)
1118 (while (setq temp (ange-ftp-real-file-symlink-p file))
1119 (setq file
1120 (if (file-name-absolute-p temp)
1121 temp
1122 (concat (file-name-directory file) temp)))))
1123 file)
1124
1125 ;; Move along current line looking for the value of the TOKEN.
1126 ;; Valid separators between TOKEN and its value are commas and
1127 ;; whitespace. Second arg LIMIT is a limit for the search.
1128
1129 (defun ange-ftp-parse-netrc-token (token limit)
1130 (if (search-forward token limit t)
1131 (let (beg)
1132 (skip-chars-forward ", \t\r\n" limit)
1133 (if (eq (following-char) ?\") ;quoted token value
1134 (progn (forward-char 1)
1135 (setq beg (point))
1136 (skip-chars-forward "^\"" limit)
1137 (forward-char 1)
1138 (buffer-substring beg (1- (point))))
1139 (setq beg (point))
1140 (skip-chars-forward "^, \t\r\n" limit)
1141 (buffer-substring beg (point))))))
1142
1143 ;; Extract the values for the tokens `machine', `login',
1144 ;; `password' and `account' in the current buffer. If successful,
1145 ;; record the information found.
1146
1147 (defun ange-ftp-parse-netrc-group ()
1148 (let ((start (point))
1149 (end (save-excursion
1150 (if (looking-at "machine\\>")
1151 ;; Skip `machine' and the machine name that follows.
1152 (progn
1153 (skip-chars-forward "^ \t\n")
1154 (skip-chars-forward " \t\n")
1155 (skip-chars-forward "^ \t\n"))
1156 ;; Skip `default'.
1157 (skip-chars-forward "^ \t\n"))
1158 ;; Find start of the next `machine' or `default'
1159 ;; or the end of the buffer.
1160 (if (re-search-forward "machine\\>\\|default\\>" nil t)
1161 (match-beginning 0)
1162 (point-max))))
1163 machine login password account)
1164 (setq machine (ange-ftp-parse-netrc-token "machine" end)
1165 login (ange-ftp-parse-netrc-token "login" end)
1166 password (ange-ftp-parse-netrc-token "password" end)
1167 account (ange-ftp-parse-netrc-token "account" end))
1168 (if (and machine login)
1169 ;; found a `machine` token.
1170 (progn
1171 (ange-ftp-set-user machine login)
1172 (ange-ftp-set-passwd machine login password)
1173 (and account
1174 (ange-ftp-set-account machine login account)))
1175 (goto-char start)
1176 (if (search-forward "default" end t)
1177 ;; found a `default' token
1178 (progn
1179 (setq login (ange-ftp-parse-netrc-token "login" end)
1180 password (ange-ftp-parse-netrc-token "password" end)
1181 account (ange-ftp-parse-netrc-token "account" end))
1182 (and login
1183 (setq ange-ftp-default-user login))
1184 (and password
1185 (setq ange-ftp-default-password password))
1186 (and account
1187 (setq ange-ftp-default-account account)))))
1188 (goto-char end)))
1189
1190 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has
1191 ;; the correct permissions then extract the \`machine\', \`login\',
1192 ;; \`password\' and \`account\' information from within.
1193
1194 (defun ange-ftp-parse-netrc ()
1195 ;; We set this before actually doing it to avoid the possibility
1196 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file.
1197 (interactive)
1198 (let* ((file (ange-ftp-chase-symlinks
1199 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename)))
1200 (attr (ange-ftp-real-file-attributes file)))
1201 (if (and attr ; file exists.
1202 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed
1203 (save-match-data
1204 (if (or ange-ftp-disable-netrc-security-check
1205 (and (eq (nth 2 attr) (user-uid)) ; Same uids.
1206 (string-match ".r..------" (nth 8 attr))))
1207 (save-excursion
1208 ;; we are cheating a bit here. I'm trying to do the equivalent
1209 ;; of find-file on the .netrc file, but then nuke it afterwards.
1210 ;; with the bit of logic below we should be able to have
1211 ;; encrypted .netrc files.
1212 (set-buffer (generate-new-buffer "*ftp-.netrc*"))
1213 (ange-ftp-real-insert-file-contents file)
1214 (setq buffer-file-name file)
1215 (setq default-directory (file-name-directory file))
1216 (normal-mode t)
1217 (mapcar 'funcall find-file-hooks)
1218 (setq buffer-file-name nil)
1219 (goto-char (point-min))
1220 (skip-chars-forward " \t\n")
1221 (while (not (eobp))
1222 (ange-ftp-parse-netrc-group))
1223 (kill-buffer (current-buffer)))
1224 (ange-ftp-message "%s either not owned by you or badly protected."
1225 ange-ftp-netrc-filename)
1226 (sit-for 1))
1227 (setq ange-ftp-netrc-modtime (nth 5 attr))))))
1228
1229 ;; Return a list of prefixes of the form 'user@host:' to be used when
1230 ;; completion is done in the root directory.
1231
1232 (defun ange-ftp-generate-root-prefixes ()
1233 (ange-ftp-parse-netrc)
1234 (save-match-data
1235 (let (res)
1236 (ange-ftp-map-hashtable
1237 (function
1238 (lambda (key value)
1239 (if (string-match "^[^/]*\\(/\\).*$" key)
1240 (let ((host (substring key 0 (match-beginning 1)))
1241 (user (substring key (match-end 1))))
1242 (setq res (cons (list (concat user "@" host ":"))
1243 res))))))
1244 ange-ftp-passwd-hashtable)
1245 (ange-ftp-map-hashtable
1246 (function (lambda (host user)
1247 (setq res (cons (list (concat host ":"))
1248 res))))
1249 ange-ftp-user-hashtable)
1250 (or res (list nil)))))
1251 \f
1252 ;;;; ------------------------------------------------------------
1253 ;;;; Remote file name syntax support.
1254 ;;;; ------------------------------------------------------------
1255
1256 (defmacro ange-ftp-ftp-name-component (n ns name)
1257 "Extract the Nth ftp file name component from NS."
1258 (` (let ((elt (nth (, n) (, ns))))
1259 (if (match-beginning elt)
1260 (substring (, name) (match-beginning elt) (match-end elt))))))
1261
1262 (defvar ange-ftp-ftp-name-arg "")
1263 (defvar ange-ftp-ftp-name-res nil)
1264
1265 ;; Parse NAME according to `ange-ftp-name-format' (which see).
1266 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format.
1267 (defun ange-ftp-ftp-name (name)
1268 (if (string-equal name ange-ftp-ftp-name-arg)
1269 ange-ftp-ftp-name-res
1270 (setq ange-ftp-ftp-name-arg name
1271 ange-ftp-ftp-name-res
1272 (save-match-data
1273 (if (string-match (car ange-ftp-name-format) name)
1274 (let* ((ns (cdr ange-ftp-name-format))
1275 (host (ange-ftp-ftp-name-component 0 ns name))
1276 (user (ange-ftp-ftp-name-component 1 ns name))
1277 (name (ange-ftp-ftp-name-component 2 ns name)))
1278 (if (zerop (length user))
1279 (setq user (ange-ftp-get-user host)))
1280 (list host user name))
1281 nil)))))
1282
1283 ;; Take a FULLNAME that matches according to ange-ftp-name-format and
1284 ;; replace the name component with NAME.
1285 (defun ange-ftp-replace-name-component (fullname name)
1286 (save-match-data
1287 (if (string-match (car ange-ftp-name-format) fullname)
1288 (let* ((ns (cdr ange-ftp-name-format))
1289 (elt (nth 2 ns)))
1290 (concat (substring fullname 0 (match-beginning elt))
1291 name
1292 (substring fullname (match-end elt)))))))
1293 \f
1294 ;;;; ------------------------------------------------------------
1295 ;;;; Miscellaneous utils.
1296 ;;;; ------------------------------------------------------------
1297
1298 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap))
1299 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer)
1300
1301 (defun ange-ftp-repaint-minibuffer ()
1302 "Clear any existing minibuffer message; let the minibuffer contents show."
1303 (message nil))
1304
1305 ;; Return the name of the buffer that collects output from the ftp process
1306 ;; connected to the given HOST and USER pair.
1307 (defun ange-ftp-ftp-process-buffer (host user)
1308 (concat "*ftp " user "@" host "*"))
1309
1310 ;; Display the last chunk of output from the ftp process for the given HOST
1311 ;; USER pair, and signal an error including MSG in the text.
1312 (defun ange-ftp-error (host user msg)
1313 (let ((cur (selected-window))
1314 (pop-up-windows t))
1315 (pop-to-buffer
1316 (get-buffer-create
1317 (ange-ftp-ftp-process-buffer host user)))
1318 (goto-char (point-max))
1319 (select-window cur))
1320 (signal 'ftp-error (list (format "FTP Error: %s" msg))))
1321
1322 (defun ange-ftp-set-buffer-mode ()
1323 "Set correct modes for the current buffer if visiting a remote file."
1324 (if (and (stringp buffer-file-name)
1325 (ange-ftp-ftp-name buffer-file-name))
1326 (auto-save-mode ange-ftp-auto-save)))
1327
1328 (defun ange-ftp-kill-ftp-process (buffer)
1329 "Kill the FTP process associated with BUFFER.
1330 If the BUFFER's visited filename or default-directory is an ftp filename
1331 then kill the related ftp process."
1332 (interactive "bKill FTP process associated with buffer: ")
1333 (if (null buffer)
1334 (setq buffer (current-buffer)))
1335 (let ((file (or (buffer-file-name) default-directory)))
1336 (if file
1337 (let ((parsed (ange-ftp-ftp-name (expand-file-name file))))
1338 (if parsed
1339 (let ((host (nth 0 parsed))
1340 (user (nth 1 parsed)))
1341 (kill-buffer (ange-ftp-ftp-process-buffer host user))))))))
1342
1343 (defun ange-ftp-quote-string (string)
1344 "Quote any characters in STRING that may confuse the ftp process."
1345 (apply (function concat)
1346 (mapcar (function
1347 (lambda (char)
1348 (if (or (<= char ? )
1349 (> char ?\~)
1350 (= char ?\")
1351 (= char ?\\))
1352 (vector ?\\ char)
1353 (vector char))))
1354 string)))
1355
1356 (defun ange-ftp-barf-if-not-directory (directory)
1357 (or (file-directory-p directory)
1358 (signal 'file-error
1359 (list "Opening directory"
1360 (if (file-exists-p directory)
1361 "not a directory"
1362 "no such file or directory")
1363 directory))))
1364 \f
1365 ;;;; ------------------------------------------------------------
1366 ;;;; FTP process filter support.
1367 ;;;; ------------------------------------------------------------
1368
1369 (defun ange-ftp-process-handle-line (line proc)
1370 "Look at the given LINE from the ftp process PROC.
1371 Try to categorize it into one of four categories:
1372 good, skip, fatal, or unknown."
1373 (cond ((string-match ange-ftp-xfer-size-msgs line)
1374 (setq ange-ftp-xfer-size
1375 (ash (string-to-int (substring line
1376 (match-beginning 1)
1377 (match-end 1)))
1378 -10)))
1379 ((string-match ange-ftp-skip-msgs line)
1380 t)
1381 ((string-match ange-ftp-good-msgs line)
1382 (setq ange-ftp-process-busy nil
1383 ange-ftp-process-result t
1384 ange-ftp-process-result-line line))
1385 ;; Check this before checking for errors.
1386 ;; Otherwise the last line of these three seems to be an error:
1387 ;; 230-see a significant impact from the move. For those of you who can't
1388 ;; 230-use DNS to resolve hostnames and get an error message like
1389 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be...
1390 ((string-match ange-ftp-multi-msgs line)
1391 (setq ange-ftp-process-multi-skip t))
1392 ((string-match ange-ftp-fatal-msgs line)
1393 (delete-process proc)
1394 (setq ange-ftp-process-busy nil
1395 ange-ftp-process-result-line line))
1396 (ange-ftp-process-multi-skip
1397 t)
1398 (t
1399 (setq ange-ftp-process-busy nil
1400 ange-ftp-process-result-line line))))
1401
1402 (defun ange-ftp-set-xfer-size (host user bytes)
1403 "Set the size of the next FTP transfer in bytes."
1404 (let ((proc (ange-ftp-get-process host user)))
1405 (if proc
1406 (let ((buf (process-buffer proc)))
1407 (if buf
1408 (save-excursion
1409 (set-buffer buf)
1410 (setq ange-ftp-xfer-size (ash bytes -10))))))))
1411
1412 (defun ange-ftp-process-handle-hash (str)
1413 "Remove hash marks from STRING and display count so far."
1414 (setq str (concat (substring str 0 (match-beginning 0))
1415 (substring str (match-end 0)))
1416 ange-ftp-hash-mark-count (+ (- (match-end 0)
1417 (match-beginning 0))
1418 ange-ftp-hash-mark-count))
1419 (and ange-ftp-process-msg
1420 ange-ftp-process-verbose
1421 (not (eq (selected-window) (minibuffer-window)))
1422 (not (boundp 'search-message)) ;screws up isearch otherwise
1423 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise
1424 (let ((kbytes (ash (* ange-ftp-hash-mark-unit
1425 ange-ftp-hash-mark-count)
1426 -6)))
1427 (if (zerop ange-ftp-xfer-size)
1428 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes)
1429 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size)))
1430 ;; cut out the redisplay of identical %-age messages.
1431 (if (not (eq percent ange-ftp-last-percent))
1432 (progn
1433 (setq ange-ftp-last-percent percent)
1434 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent)))))))
1435 str)
1436
1437 ;; Call the function specified by CONT. CONT can be either a function
1438 ;; or a list of a function and some args. The first two parameters
1439 ;; passed to the function will be RESULT and LINE. The remaining args
1440 ;; will be taken from CONT if a list was passed.
1441
1442 (defun ange-ftp-call-cont (cont result line)
1443 (if cont
1444 (if (and (listp cont)
1445 (not (eq (car cont) 'lambda)))
1446 (apply (car cont) result line (cdr cont))
1447 (funcall cont result line))))
1448
1449 ;; Build up a complete line of output from the ftp PROCESS and pass it
1450 ;; on to ange-ftp-process-handle-line to deal with.
1451
1452 (defun ange-ftp-process-filter (proc str)
1453 (let ((buffer (process-buffer proc))
1454 (old-buffer (current-buffer)))
1455
1456 ;; see if the buffer is still around... it could have been deleted.
1457 (if (buffer-name buffer)
1458 (unwind-protect
1459 (progn
1460 (set-buffer (process-buffer proc))
1461
1462 ;; handle hash mark printing
1463 (and ange-ftp-hash-mark-unit
1464 ange-ftp-process-busy
1465 (string-match "^#+$" str)
1466 (setq str (ange-ftp-process-handle-hash str)))
1467 (comint-output-filter proc str)
1468 ;; Replace STR by the result of the comint processing.
1469 (setq str (buffer-substring comint-last-output-start
1470 (process-mark proc)))
1471 (if ange-ftp-process-busy
1472 (progn
1473 (setq ange-ftp-process-string (concat ange-ftp-process-string
1474 str))
1475
1476 ;; if we gave an empty password to the USER command earlier
1477 ;; then we should send a null password now.
1478 (if (string-match "Password: *$" ange-ftp-process-string)
1479 (send-string proc "\n"))))
1480 (while (and ange-ftp-process-busy
1481 (string-match "\n" ange-ftp-process-string))
1482 (let ((line (substring ange-ftp-process-string
1483 0
1484 (match-beginning 0))))
1485 (setq ange-ftp-process-string (substring ange-ftp-process-string
1486 (match-end 0)))
1487 (while (string-match "^ftp> *" line)
1488 (setq line (substring line (match-end 0))))
1489 (ange-ftp-process-handle-line line proc)))
1490
1491 ;; has the ftp client finished? if so then do some clean-up
1492 ;; actions.
1493 (if (not ange-ftp-process-busy)
1494 (progn
1495 ;; reset the xfer size
1496 (setq ange-ftp-xfer-size 0)
1497
1498 ;; issue the "done" message since we've finished.
1499 (if (and ange-ftp-process-msg
1500 ange-ftp-process-verbose
1501 ange-ftp-process-result)
1502 (progn
1503 (ange-ftp-message "%s...done" ange-ftp-process-msg)
1504 (ange-ftp-repaint-minibuffer)
1505 (setq ange-ftp-process-msg nil)))
1506
1507 ;; is there a continuation we should be calling? if so,
1508 ;; we'd better call it, making sure we only call it once.
1509 (if ange-ftp-process-continue
1510 (let ((cont ange-ftp-process-continue))
1511 (setq ange-ftp-process-continue nil)
1512 (ange-ftp-call-cont cont
1513 ange-ftp-process-result
1514 ange-ftp-process-result-line))))))
1515 (set-buffer old-buffer)))))
1516
1517 (defun ange-ftp-process-sentinel (proc str)
1518 "When ftp process changes state, nuke all file-entries in cache."
1519 (let ((name (process-name proc)))
1520 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name)
1521 (let ((user (substring name (match-beginning 1) (match-end 1)))
1522 (host (substring name (match-beginning 2) (match-end 2))))
1523 (ange-ftp-wipe-file-entries host user))))
1524 (setq ange-ftp-ls-cache-file nil))
1525 \f
1526 ;;;; ------------------------------------------------------------
1527 ;;;; Gateway support.
1528 ;;;; ------------------------------------------------------------
1529
1530 (defun ange-ftp-use-gateway-p (host)
1531 "Returns whether to access this host via a normal (non-smart) gateway."
1532 ;; yes, I know that I could simplify the following expression, but it is
1533 ;; clearer (to me at least) this way.
1534 (and (not ange-ftp-smart-gateway)
1535 (save-match-data
1536 (not (string-match ange-ftp-local-host-regexp host)))))
1537
1538 (defun ange-ftp-use-smart-gateway-p (host)
1539 "Returns whether to access this host via a smart gateway."
1540 (and ange-ftp-smart-gateway
1541 (save-match-data
1542 (not (string-match ange-ftp-local-host-regexp host)))))
1543
1544 \f
1545 ;;; ------------------------------------------------------------
1546 ;;; Temporary file location and deletion...
1547 ;;; ------------------------------------------------------------
1548
1549 (defvar ange-ftp-tmp-name-files ())
1550 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10))
1551 (defvar ange-ftp-pid nil)
1552
1553 (defun ange-ftp-get-pid ()
1554 "Half-hearted attempt to get the current process's id."
1555 (setq ange-ftp-pid (substring (make-temp-name "") 1)))
1556
1557 (defun ange-ftp-make-tmp-name (host)
1558 "This routine will return the name of a new file."
1559 (let* ((template (if (ange-ftp-use-gateway-p host)
1560 ange-ftp-gateway-tmp-name-template
1561 ange-ftp-tmp-name-template))
1562 (pid (or ange-ftp-pid (ange-ftp-get-pid)))
1563 (start ?a)
1564 file entry)
1565 (while
1566 (progn
1567 (setq file (format "%s%c%s" template start pid))
1568 (setq entry (intern file ange-ftp-tmp-name-hashtable))
1569 (or (memq entry ange-ftp-tmp-name-files)
1570 (ange-ftp-real-file-exists-p file)))
1571 (if (> (setq start (1+ start)) ?z)
1572 (progn
1573 (setq template (concat template "X"))
1574 (setq start ?a))))
1575 (setq ange-ftp-tmp-name-files
1576 (cons entry ange-ftp-tmp-name-files))
1577 file))
1578
1579 (defun ange-ftp-del-tmp-name (temp)
1580 (setq ange-ftp-tmp-name-files
1581 (delq (intern temp ange-ftp-tmp-name-hashtable)
1582 ange-ftp-tmp-name-files))
1583 (condition-case ()
1584 (ange-ftp-real-delete-file temp)
1585 (error nil)))
1586 \f
1587 ;;;; ------------------------------------------------------------
1588 ;;;; Interactive gateway program support.
1589 ;;;; ------------------------------------------------------------
1590
1591 (defvar ange-ftp-gwp-running t)
1592 (defvar ange-ftp-gwp-status nil)
1593
1594 (defun ange-ftp-gwp-sentinel (proc str)
1595 (setq ange-ftp-gwp-running nil))
1596
1597 (defun ange-ftp-gwp-filter (proc str)
1598 (comint-output-filter proc str)
1599 ;; Replace STR by the result of the comint processing.
1600 (setq str (buffer-substring comint-last-output-start (process-mark proc)))
1601 (cond ((string-match "login: *$" str)
1602 (send-string proc
1603 (concat
1604 (let ((ange-ftp-default-user t))
1605 (ange-ftp-get-user ange-ftp-gateway-host))
1606 "\n")))
1607 ((string-match "Password: *$" str)
1608 (send-string proc
1609 (concat
1610 (ange-ftp-get-passwd ange-ftp-gateway-host
1611 (ange-ftp-get-user
1612 ange-ftp-gateway-host))
1613 "\n")))
1614 ((string-match ange-ftp-gateway-fatal-msgs str)
1615 (delete-process proc)
1616 (setq ange-ftp-gwp-running nil))
1617 ((string-match ange-ftp-gateway-prompt-pattern str)
1618 (setq ange-ftp-gwp-running nil
1619 ange-ftp-gwp-status t))))
1620
1621 (defun ange-ftp-gwp-start (host user name args)
1622 "Login to the gateway machine and fire up an ftp process."
1623 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host))
1624 ;; It would be nice to make process-connection-type nil,
1625 ;; but that doesn't work: ftp never responds.
1626 ;; Can anyone find a fix for that?
1627 (proc (let ((process-connection-type t))
1628 (start-process name name
1629 ange-ftp-gateway-program
1630 ange-ftp-gateway-host)))
1631 (ftp (mapconcat (function identity) args " ")))
1632 (process-kill-without-query proc)
1633 (set-process-sentinel proc (function ange-ftp-gwp-sentinel))
1634 (set-process-filter proc (function ange-ftp-gwp-filter))
1635 (save-excursion
1636 (set-buffer (process-buffer proc))
1637 (internal-ange-ftp-mode)
1638 (set-marker (process-mark proc) (point)))
1639 (setq ange-ftp-gwp-running t
1640 ange-ftp-gwp-status nil)
1641 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host)
1642 (while ange-ftp-gwp-running ;perform login sequence
1643 (accept-process-output proc))
1644 (if (not ange-ftp-gwp-status)
1645 (ange-ftp-error host user "unable to login to gateway"))
1646 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host)
1647 (setq ange-ftp-gwp-running t
1648 ange-ftp-gwp-status nil)
1649 (process-send-string proc ange-ftp-gateway-setup-term-command)
1650 (while ange-ftp-gwp-running ;zap ^M's and double echoing.
1651 (accept-process-output proc))
1652 (if (not ange-ftp-gwp-status)
1653 (ange-ftp-error host user "unable to set terminal modes on gateway"))
1654 (setq ange-ftp-gwp-running t
1655 ange-ftp-gwp-status nil)
1656 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process
1657 proc))
1658 \f
1659 ;;;; ------------------------------------------------------------
1660 ;;;; Support for sending commands to the ftp process.
1661 ;;;; ------------------------------------------------------------
1662
1663 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait)
1664 "Low-level routine to send the given ftp CMD to the ftp PROCESS.
1665 MSG is an optional message to output before and after the command.
1666 If CONT is non-NIL then it is either a function or a list of function and
1667 some arguments. The function will be called when the ftp command has completed.
1668 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT
1669 is whether the command was successful, and LINE is the line from the FTP
1670 process that caused the command to complete.
1671 If NOWAIT is given then the routine will return immediately the command has
1672 been queued with no result. CONT will still be called, however."
1673 (if (memq (process-status proc) '(run open))
1674 (save-excursion
1675 (set-buffer (process-buffer proc))
1676 (while ange-ftp-process-busy
1677 ;; This is a kludge to let user quit in case ftp gets hung.
1678 ;; It matters because this function can be called from the filter.
1679 ;; It is bad to allow quitting in a filter, but getting hung
1680 ;; is worse. By binding quit-flag to nil, we might avoid
1681 ;; most of the probability of getting screwed because the user
1682 ;; wants to quit some command.
1683 (let ((quit-flag nil)
1684 (inhibit-quit nil))
1685 (accept-process-output)))
1686 (setq ange-ftp-process-string ""
1687 ange-ftp-process-result-line ""
1688 ange-ftp-process-busy t
1689 ange-ftp-process-result nil
1690 ange-ftp-process-multi-skip nil
1691 ange-ftp-process-msg msg
1692 ange-ftp-process-continue cont
1693 ange-ftp-hash-mark-count 0
1694 ange-ftp-last-percent -1
1695 cmd (concat cmd "\n"))
1696 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg))
1697 (goto-char (point-max))
1698 (move-marker comint-last-input-start (point))
1699 ;; don't insert the password into the buffer on the USER command.
1700 (save-match-data
1701 (if (string-match "^user \"[^\"]*\"" cmd)
1702 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n")
1703 (insert cmd)))
1704 (move-marker comint-last-input-end (point))
1705 (send-string proc cmd)
1706 (set-marker (process-mark proc) (point))
1707 (if nowait
1708 nil
1709 ;; hang around for command to complete
1710 (while ange-ftp-process-busy
1711 ;; This is a kludge to let user quit in case ftp gets hung.
1712 ;; It matters because this function can be called from the filter.
1713 (let ((quit-flag nil)
1714 (inhibit-quit nil))
1715 (accept-process-output proc)))
1716 (if cont
1717 nil ;cont has already been called
1718 (cons ange-ftp-process-result ange-ftp-process-result-line))))))
1719
1720 (defun ange-ftp-nslookup-host (host)
1721 "Attempt to resolve the given HOSTNAME using nslookup if possible."
1722 (interactive "sHost: ")
1723 (if ange-ftp-nslookup-program
1724 (let ((default-directory
1725 (if (file-accessible-directory-p default-directory)
1726 default-directory
1727 exec-directory))
1728 ;; It would be nice to make process-connection-type nil,
1729 ;; but that doesn't work: ftp never responds.
1730 ;; Can anyone find a fix for that?
1731 (proc (let ((process-connection-type t))
1732 (start-process " *nslookup*" " *nslookup*"
1733 ange-ftp-nslookup-program host)))
1734 (res host))
1735 (process-kill-without-query proc)
1736 (save-excursion
1737 (set-buffer (process-buffer proc))
1738 (while (memq (process-status proc) '(run open))
1739 (accept-process-output proc))
1740 (goto-char (point-min))
1741 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t)
1742 (setq res (buffer-substring (match-beginning 1)
1743 (match-end 1))))
1744 (kill-buffer (current-buffer)))
1745 res)
1746 host))
1747
1748 (defun ange-ftp-start-process (host user name)
1749 "Spawn a new ftp process ready to connect to machine HOST and give it NAME.
1750 If HOST is only ftp-able through a gateway machine then spawn a shell
1751 on the gateway machine to do the ftp instead."
1752 (let* ((use-gateway (ange-ftp-use-gateway-p host))
1753 (use-smart-ftp (and (not ange-ftp-gateway-host)
1754 (ange-ftp-use-smart-gateway-p host)))
1755 (ftp-prog (if (or use-gateway
1756 use-smart-ftp)
1757 ange-ftp-gateway-ftp-program-name
1758 ange-ftp-ftp-program-name))
1759 (args (append (list ftp-prog) ange-ftp-ftp-program-args))
1760 ;; Without the following binding, ange-ftp-start-process
1761 ;; recurses on file-accessible-directory-p, since it needs to
1762 ;; restart its process in order to determine anything about
1763 ;; default-directory.
1764 (file-name-handler-alist)
1765 (default-directory
1766 (if (file-accessible-directory-p default-directory)
1767 default-directory
1768 exec-directory))
1769 proc)
1770 ;; It would be nice to make process-connection-type nil,
1771 ;; but that doesn't work: ftp never responds.
1772 ;; Can anyone find a fix for that?
1773 (let ((process-connection-type t))
1774 (if use-gateway
1775 (if ange-ftp-gateway-program-interactive
1776 (setq proc (ange-ftp-gwp-start host user name args))
1777 (setq proc (apply 'start-process name name
1778 (append (list ange-ftp-gateway-program
1779 ange-ftp-gateway-host)
1780 args))))
1781 (setq proc (apply 'start-process name name args))))
1782 (process-kill-without-query proc)
1783 (save-excursion
1784 (set-buffer (process-buffer proc))
1785 (internal-ange-ftp-mode))
1786 (set-process-sentinel proc (function ange-ftp-process-sentinel))
1787 (set-process-filter proc (function ange-ftp-process-filter))
1788 (accept-process-output proc) ;wait for ftp startup message
1789 proc))
1790
1791 (defun internal-ange-ftp-mode ()
1792 "Major mode for interacting with the FTP process.
1793
1794 \\{comint-mode-map}"
1795 (interactive)
1796 (comint-mode)
1797 (setq major-mode 'internal-ange-ftp-mode)
1798 (setq mode-name "Internal Ange-ftp")
1799 (let ((proc (get-buffer-process (current-buffer))))
1800 (goto-char (point-max))
1801 (set-marker (process-mark proc) (point))
1802 (make-local-variable 'ange-ftp-process-string)
1803 (setq ange-ftp-process-string "")
1804 (make-local-variable 'ange-ftp-process-busy)
1805 (make-local-variable 'ange-ftp-process-result)
1806 (make-local-variable 'ange-ftp-process-msg)
1807 (make-local-variable 'ange-ftp-process-multi-skip)
1808 (make-local-variable 'ange-ftp-process-result-line)
1809 (make-local-variable 'ange-ftp-process-continue)
1810 (make-local-variable 'ange-ftp-hash-mark-count)
1811 (make-local-variable 'ange-ftp-binary-hash-mark-size)
1812 (make-local-variable 'ange-ftp-ascii-hash-mark-size)
1813 (make-local-variable 'ange-ftp-hash-mark-unit)
1814 (make-local-variable 'ange-ftp-xfer-size)
1815 (make-local-variable 'ange-ftp-last-percent)
1816 (setq ange-ftp-hash-mark-count 0)
1817 (setq ange-ftp-xfer-size 0)
1818 (setq ange-ftp-process-result-line "")
1819
1820 (setq comint-prompt-regexp "^ftp> ")
1821 (make-local-variable 'paragraph-start)
1822 (setq paragraph-start comint-prompt-regexp)))
1823
1824 (defun ange-ftp-smart-login (host user pass account proc)
1825 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
1826 PROC is the FTP-client's process. This routine uses the smart-gateway
1827 host specified in ``ange-ftp-gateway-host''."
1828 (let ((result (ange-ftp-raw-send-cmd
1829 proc
1830 (format "open %s %s"
1831 (ange-ftp-nslookup-host ange-ftp-gateway-host)
1832 ange-ftp-smart-gateway-port)
1833 (format "Opening FTP connection to %s via %s"
1834 host
1835 ange-ftp-gateway-host))))
1836 (or (car result)
1837 (ange-ftp-error host user
1838 (concat "OPEN request failed: "
1839 (cdr result))))
1840 (setq result (ange-ftp-raw-send-cmd
1841 proc (format "user \"%s\"@%s %s %s"
1842 user
1843 (ange-ftp-nslookup-host host)
1844 pass
1845 account)
1846 (format "Logging in as user %s@%s"
1847 user host)))
1848 (or (car result)
1849 (progn
1850 (ange-ftp-set-passwd host user nil) ; reset password
1851 (ange-ftp-set-account host user nil) ; reset account
1852 (ange-ftp-error host user
1853 (concat "USER request failed: "
1854 (cdr result)))))))
1855
1856 (defun ange-ftp-normal-login (host user pass account proc)
1857 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
1858 PROC is the process to the FTP-client."
1859 (let ((result (ange-ftp-raw-send-cmd
1860 proc
1861 (format "open %s" (ange-ftp-nslookup-host host))
1862 (format "Opening FTP connection to %s" host))))
1863 (or (car result)
1864 (ange-ftp-error host user
1865 (concat "OPEN request failed: "
1866 (cdr result))))
1867 (setq result (ange-ftp-raw-send-cmd
1868 proc
1869 (format "user \"%s\" %s %s" user pass account)
1870 (format "Logging in as user %s@%s" user host)))
1871 (or (car result)
1872 (progn
1873 (ange-ftp-set-passwd host user nil) ;reset password.
1874 (ange-ftp-set-account host user nil) ;reset account.
1875 (ange-ftp-error host user
1876 (concat "USER request failed: "
1877 (cdr result)))))))
1878
1879 ;; ange@hplb.hpl.hp.com says this should not be changed.
1880 (defvar ange-ftp-hash-mark-msgs
1881 "[hH]ash mark [^0-9]*\\([0-9]+\\)"
1882 "*Regexp matching the FTP client's output upon doing a HASH command.")
1883
1884 (defun ange-ftp-guess-hash-mark-size (proc)
1885 (if ange-ftp-send-hash
1886 (save-excursion
1887 (set-buffer (process-buffer proc))
1888 (let* ((status (ange-ftp-raw-send-cmd proc "hash"))
1889 (result (car status))
1890 (line (cdr status)))
1891 (save-match-data
1892 (if (string-match ange-ftp-hash-mark-msgs line)
1893 (let ((size (string-to-int
1894 (substring line
1895 (match-beginning 1)
1896 (match-end 1)))))
1897 (setq ange-ftp-ascii-hash-mark-size size
1898 ange-ftp-hash-mark-unit (ash size -4))
1899
1900 ;; if a default value for this is set, use that value.
1901 (or ange-ftp-binary-hash-mark-size
1902 (setq ange-ftp-binary-hash-mark-size size)))))))))
1903
1904 (defun ange-ftp-get-process (host user)
1905 "Return an FTP subprocess connected to HOST and logged in as USER.
1906 Create a new process if needed."
1907 (let* ((name (ange-ftp-ftp-process-buffer host user))
1908 (proc (get-process name)))
1909 (if (and proc (memq (process-status proc) '(run open)))
1910 proc
1911 (let ((pass (ange-ftp-quote-string
1912 (ange-ftp-get-passwd host user)))
1913 (account (ange-ftp-quote-string
1914 (ange-ftp-get-account host user))))
1915 ;; grab a suitable process.
1916 (setq proc (ange-ftp-start-process host user name))
1917
1918 ;; login to FTP server.
1919 (if (and (ange-ftp-use-smart-gateway-p host)
1920 ange-ftp-gateway-host)
1921 (ange-ftp-smart-login host user pass account proc)
1922 (ange-ftp-normal-login host user pass account proc))
1923
1924 ;; Tell client to send back hash-marks as progress. It isn't usually
1925 ;; fatal if this command fails.
1926 (ange-ftp-guess-hash-mark-size proc)
1927
1928 ;; Guess at the host type.
1929 (ange-ftp-guess-host-type host user)
1930
1931 ;; Run any user-specified hooks. Note that proc, host and user are
1932 ;; dynamically bound at this point.
1933 (run-hooks 'ange-ftp-process-startup-hook))
1934 proc)))
1935
1936 ;; Variables for caching host and host-type
1937 (defvar ange-ftp-host-cache nil)
1938 (defvar ange-ftp-host-type-cache nil)
1939
1940 ;; If ange-ftp-host-type is called with the optional user
1941 ;; argument, it will attempt to guess the host type by connecting
1942 ;; as user, if necessary. For efficiency, I have tried to give this
1943 ;; optional second argument only when necessary. Have I missed any calls
1944 ;; to ange-ftp-host-type where it should have been supplied?
1945
1946 (defun ange-ftp-host-type (host &optional user)
1947 "Return a symbol which represents the type of the HOST given.
1948 If the optional argument USER is given, attempts to guess the
1949 host-type by logging in as USER."
1950 (if (eq host ange-ftp-host-cache)
1951 ange-ftp-host-type-cache
1952 ;; Trigger an ftp connection, in case we need to guess at the host type.
1953 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache))
1954 ange-ftp-host-type-cache
1955 (setq ange-ftp-host-cache host
1956 ange-ftp-host-type-cache
1957 (cond ((ange-ftp-dumb-unix-host host)
1958 'dumb-unix)
1959 ;; ((and (fboundp 'ange-ftp-vos-host)
1960 ;; (ange-ftp-vos-host host))
1961 ;; 'vos)
1962 ((and (fboundp 'ange-ftp-vms-host)
1963 (ange-ftp-vms-host host))
1964 'vms)
1965 ((and (fboundp 'ange-ftp-mts-host)
1966 (ange-ftp-mts-host host))
1967 'mts)
1968 ((and (fboundp 'ange-ftp-cms-host)
1969 (ange-ftp-cms-host host))
1970 'cms)
1971 (t
1972 'unix))))))
1973
1974 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and
1975 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
1976 ;; without sacrificing speed. Also, having separate variables
1977 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
1978 ;; set an alist to indicate that a host is of a given type. Even with
1979 ;; automatic host type recognition, setting a regexp is still a good idea
1980 ;; (for efficiency) if you log into a particular non-UNIX host frequently.
1981
1982 (defvar ange-ftp-fix-name-func-alist nil
1983 "Alist saying how to convert file name to the host's syntax.
1984 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine
1985 which can change a UNIX file name into a name more suitable for a host of type
1986 TYPE.")
1987
1988 (defvar ange-ftp-fix-dir-name-func-alist nil
1989 "Alist saying how to convert directory name to the host's syntax.
1990 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine
1991 which can change UNIX directory name into a directory name more suitable
1992 for a host of type TYPE.")
1993
1994 ;; *** Perhaps the sense of this variable should be inverted, since there
1995 ;; *** is only 1 host type that can take ls-style listing options.
1996 (defvar ange-ftp-dumb-host-types '(dumb-unix)
1997 "List of host types that can't take UNIX ls-style listing options.")
1998
1999 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait)
2000 "Find an ftp process connected to HOST logged in as USER and send it CMD.
2001 MSG is an optional status message to be output before and after issuing the
2002 command.
2003 See the documentation for ange-ftp-raw-send-cmd for a description of CONT
2004 and NOWAIT."
2005 ;; Handle conversion to remote file name syntax and remote ls option
2006 ;; capability.
2007 (let ((cmd0 (car cmd))
2008 (cmd1 (nth 1 cmd))
2009 (ange-ftp-this-user user)
2010 (ange-ftp-this-host host)
2011 (ange-ftp-this-msg msg)
2012 cmd2 cmd3 host-type fix-name-func)
2013
2014 (cond
2015
2016 ;; pwd case (We don't care what host-type.)
2017 ((null cmd1))
2018
2019 ;; cmd == 'dir "remote-name" "local-name" "ls-switches"
2020 ((progn
2021 (setq cmd2 (nth 2 cmd)
2022 host-type (ange-ftp-host-type host user))
2023 ;; This will trigger an FTP login, if one doesn't exist
2024 (eq cmd0 'dir))
2025 (setq cmd1 (funcall
2026 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist))
2027 'identity)
2028 cmd1)
2029 cmd3 (nth 3 cmd))
2030 ;; Need to deal with the HP-UX ftp bug. This should also allow
2031 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will
2032 ;; be happy.)
2033 (and (eq host-type 'unix)
2034 (string-match "/$" cmd1)
2035 (not (string-match "R" cmd3))
2036 (setq cmd1 (concat cmd1 ".")))
2037 ;; If the remote ls can take switches, put them in
2038 (or (memq host-type ange-ftp-dumb-host-types)
2039 (setq cmd0 'ls
2040 cmd1 (format "\"%s %s\"" cmd3 cmd1))))
2041
2042 ;; First argument is the remote name
2043 ((progn
2044 (setq fix-name-func (or (cdr (assq host-type
2045 ange-ftp-fix-name-func-alist))
2046 'identity))
2047 (memq cmd0 '(get delete mkdir rmdir cd)))
2048 (setq cmd1 (funcall fix-name-func cmd1)))
2049
2050 ;; Second argument is the remote name
2051 ((memq cmd0 '(append put chmod))
2052 (setq cmd2 (funcall fix-name-func cmd2)))
2053
2054 ;; Both arguments are remote names
2055 ((eq cmd0 'rename)
2056 (setq cmd1 (funcall fix-name-func cmd1)
2057 cmd2 (funcall fix-name-func cmd2))))
2058
2059 ;; Turn the command into one long string
2060 (setq cmd0 (symbol-name cmd0))
2061 (setq cmd (concat cmd0
2062 (and cmd1 (concat " " cmd1))
2063 (and cmd2 (concat " " cmd2))))
2064
2065 ;; Actually send the resulting command.
2066 (let (afsc-result
2067 afsc-line)
2068 (ange-ftp-raw-send-cmd
2069 (ange-ftp-get-process host user)
2070 cmd
2071 msg
2072 (list
2073 (function (lambda (result line host user
2074 cmd msg cont nowait)
2075 (or cont
2076 (setq afsc-result result
2077 afsc-line line))
2078 (if result
2079 (ange-ftp-call-cont cont result line)
2080 (ange-ftp-raw-send-cmd
2081 (ange-ftp-get-process host user)
2082 cmd
2083 msg
2084 (list
2085 (function (lambda (result line cont)
2086 (or cont
2087 (setq afsc-result result
2088 afsc-line line))
2089 (ange-ftp-call-cont cont result line)))
2090 cont)
2091 nowait))))
2092 host user cmd msg cont nowait)
2093 nowait)
2094
2095 (if nowait
2096 nil
2097 (if cont
2098 nil
2099 (cons afsc-result afsc-line))))))
2100
2101 ;; It might be nice to message users about the host type identified,
2102 ;; but there is so much other messaging going on, it would not be
2103 ;; seen. No point in slowing things down just so users can read
2104 ;; a host type message.
2105
2106 (defconst ange-ftp-cms-name-template
2107 (concat
2108 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?"
2109 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$"))
2110 (defconst ange-ftp-vms-name-template
2111 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$")
2112 (defconst ange-ftp-mts-name-template
2113 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$")
2114
2115 (defun ange-ftp-guess-host-type (host user)
2116 "Guess at the the host type of HOST.
2117 Works by doing a pwd and examining the directory syntax."
2118 (let ((host-type (ange-ftp-host-type host))
2119 (key (concat host "/" user "/~")))
2120 (if (eq host-type 'unix)
2121 ;; Note that ange-ftp-host-type returns unix as the default value.
2122 (save-match-data
2123 (let* ((result (ange-ftp-get-pwd host user))
2124 (dir (car result))
2125 fix-name-func)
2126 (cond ((null dir)
2127 (message "Warning! Unable to get home directory")
2128 (sit-for 1)
2129 (if (string-match
2130 "^450 No current working directory defined$"
2131 (cdr result))
2132
2133 ;; We'll assume that if pwd bombs with this
2134 ;; error message, then it's CMS.
2135 (progn
2136 (ange-ftp-add-cms-host host)
2137 (setq ange-ftp-host-cache host
2138 ange-ftp-host-type-cache 'cms))))
2139
2140 ;; try for VMS
2141 ((string-match ange-ftp-vms-name-template dir)
2142 (ange-ftp-add-vms-host host)
2143 ;; The add-host functions clear the host type cache.
2144 ;; Therefore, need to set the cache afterwards.
2145 (setq ange-ftp-host-cache host
2146 ange-ftp-host-type-cache 'vms))
2147
2148 ;; try for MTS
2149 ((string-match ange-ftp-mts-name-template dir)
2150 (ange-ftp-add-mts-host host)
2151 (setq ange-ftp-host-cache host
2152 ange-ftp-host-type-cache 'mts))
2153
2154 ;; try for CMS
2155 ((string-match ange-ftp-cms-name-template dir)
2156 (ange-ftp-add-cms-host host)
2157 (setq ange-ftp-host-cache host
2158 ange-ftp-host-type-cache 'cms))
2159
2160 ;; assume UN*X
2161 (t
2162 (setq ange-ftp-host-cache host
2163 ange-ftp-host-type-cache 'unix)))
2164
2165 ;; Now that we have done a pwd, might as well put it in
2166 ;; the expand-dir hashtable.
2167 (let ((ange-ftp-this-user user)
2168 (ange-ftp-this-host host))
2169 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache
2170 ange-ftp-fix-name-func-alist)))
2171 (if fix-name-func
2172 (setq dir (funcall fix-name-func dir 'reverse))))
2173 (ange-ftp-put-hash-entry key dir
2174 ange-ftp-expand-dir-hashtable))))
2175
2176 ;; In the special case of CMS make sure that know the
2177 ;; expansion of the home minidisk now, because we will
2178 ;; be doing a lot of cd's.
2179 (if (and (eq host-type 'cms)
2180 (not (ange-ftp-hash-entry-exists-p
2181 key ange-ftp-expand-dir-hashtable)))
2182 (let ((dir (car (ange-ftp-get-pwd host user))))
2183 (if dir
2184 (ange-ftp-put-hash-entry key (concat "/" dir)
2185 ange-ftp-expand-dir-hashtable)
2186 (message "Warning! Unable to get home directory")
2187 (sit-for 1))))))
2188
2189 \f
2190 ;;;; ------------------------------------------------------------
2191 ;;;; Remote file and directory listing support.
2192 ;;;; ------------------------------------------------------------
2193
2194 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands
2195 ;; to take switch arguments.
2196 (defun ange-ftp-dumb-unix-host (host)
2197 (and ange-ftp-dumb-unix-host-regexp
2198 (save-match-data
2199 (string-match ange-ftp-dumb-unix-host-regexp host))))
2200
2201 (defun ange-ftp-add-dumb-unix-host (host)
2202 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp."
2203 (interactive
2204 (list (read-string "Host: "
2205 (let ((name (or (buffer-file-name) default-directory)))
2206 (and name (car (ange-ftp-ftp-name name)))))))
2207 (if (not (ange-ftp-dumb-unix-host host))
2208 (setq ange-ftp-dumb-unix-host-regexp
2209 (concat "^" (regexp-quote host) "$"
2210 (and ange-ftp-dumb-unix-host-regexp "\\|")
2211 ange-ftp-dumb-unix-host-regexp)
2212 ange-ftp-host-cache nil)))
2213
2214 (defvar ange-ftp-parse-list-func-alist nil
2215 "Alist saying how to parse directory listings for certain OS types.
2216 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine
2217 which can parse the output from a DIR listing for a host of type TYPE.")
2218
2219 ;; With no-error nil, this function returns:
2220 ;; an error if file is not an ange-ftp-name
2221 ;; (This should never happen.)
2222 ;; an error if either the listing is unreadable or there is an ftp error.
2223 ;; the listing (a string), if everything works.
2224 ;;
2225 ;; With no-error t, it returns:
2226 ;; an error if not an ange-ftp-name
2227 ;; error if listing is unreable (most likely caused by a slow connection)
2228 ;; nil if ftp error (this is because although asking to list a nonexistent
2229 ;; directory on a remote unix machine usually (except
2230 ;; maybe for dumb hosts) returns an ls error, but no
2231 ;; ftp error, if the same is done on a VMS machine,
2232 ;; an ftp error is returned. Need to trap the error
2233 ;; so we can go on and try to list the parent.)
2234 ;; the listing, if everything works.
2235
2236 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory
2237 ;; in the wildcard case. Then we make a relative directory listing
2238 ;; of FILE within the directory specified by `default-directory'.
2239
2240 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard)
2241 "Return the output of an `DIR' or `ls' command done over ftp.
2242 FILE is the full name of the remote file, LSARGS is any args to pass to the
2243 `ls' command, and PARSE specifies that the output should be parsed and stored
2244 away in the internal cache."
2245 ;; If parse is t, we assume that file is a directory. i.e. we only parse
2246 ;; full directory listings.
2247 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file))
2248 (parsed (ange-ftp-ftp-name ange-ftp-this-file)))
2249 (if parsed
2250 (let* ((host (nth 0 parsed))
2251 (user (nth 1 parsed))
2252 (name (ange-ftp-quote-string (nth 2 parsed)))
2253 (key (directory-file-name ange-ftp-this-file))
2254 (host-type (ange-ftp-host-type host user))
2255 (dumb (memq host-type ange-ftp-dumb-host-types))
2256 result
2257 temp
2258 lscmd parse-func)
2259 (if (string-equal name "")
2260 (setq name
2261 (ange-ftp-real-file-name-as-directory
2262 (ange-ftp-expand-dir host user "~"))))
2263 (if (and ange-ftp-ls-cache-file
2264 (string-equal key ange-ftp-ls-cache-file)
2265 ;; Don't care about lsargs for dumb hosts.
2266 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs)))
2267 ange-ftp-ls-cache-res
2268 (setq temp (ange-ftp-make-tmp-name host))
2269 (if wildcard
2270 (progn
2271 (ange-ftp-cd host user (file-name-directory name))
2272 (setq lscmd (list 'dir file temp lsargs)))
2273 (setq lscmd (list 'dir name temp lsargs)))
2274 (unwind-protect
2275 (if (car (setq result (ange-ftp-send-cmd
2276 host
2277 user
2278 lscmd
2279 (format "Listing %s"
2280 (ange-ftp-abbreviate-filename
2281 ange-ftp-this-file)))))
2282 (save-excursion
2283 (set-buffer (get-buffer-create
2284 ange-ftp-data-buffer-name))
2285 (erase-buffer)
2286 (if (ange-ftp-real-file-readable-p temp)
2287 (ange-ftp-real-insert-file-contents temp)
2288 (sleep-for ange-ftp-retry-time)
2289 ;wait for file to possibly appear
2290 (if (ange-ftp-real-file-readable-p temp)
2291 ;; Try again.
2292 (ange-ftp-real-insert-file-contents temp)
2293 (ange-ftp-error host user
2294 (format
2295 "list data file %s not readable"
2296 temp))))
2297 (if parse
2298 (ange-ftp-set-files
2299 ange-ftp-this-file
2300 (if (setq
2301 parse-func
2302 (cdr (assq host-type
2303 ange-ftp-parse-list-func-alist)))
2304 (funcall parse-func)
2305 (ange-ftp-parse-dired-listing lsargs))))
2306 (setq ange-ftp-ls-cache-file key
2307 ange-ftp-ls-cache-lsargs lsargs
2308 ; For dumb hosts-types this is
2309 ; meaningless but harmless.
2310 ange-ftp-ls-cache-res (buffer-string))
2311 ;; (kill-buffer (current-buffer))
2312 ange-ftp-ls-cache-res)
2313 (if no-error
2314 nil
2315 (ange-ftp-error host user
2316 (concat "DIR failed: " (cdr result)))))
2317 (ange-ftp-del-tmp-name temp))))
2318 (error "Should never happen. Please report. Bug ref. no.: 1"))))
2319 \f
2320 ;;;; ------------------------------------------------------------
2321 ;;;; Directory information caching support.
2322 ;;;; ------------------------------------------------------------
2323
2324 (defconst ange-ftp-date-regexp
2325 (concat
2326 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct"
2327 "\\|Nov\\|Dec\\) +[0-3]?[0-9] "))
2328
2329 (defvar ange-ftp-add-file-entry-alist nil
2330 "Alist saying how to add file entries on certain OS types.
2331 Association list of pairs \( TYPE \. FUNC \), where FUNC
2332 is a function to be used to add a file entry for the OS TYPE. The
2333 main reason for this alist is to deal with file versions in VMS.")
2334
2335 (defvar ange-ftp-delete-file-entry-alist nil
2336 "Alist saying how to delete files on certain OS types.
2337 Association list of pairs \( TYPE \. FUNC \), where FUNC
2338 is a function to be used to delete a file entry for the OS TYPE.
2339 The main reason for this alist is to deal with file versions in VMS.")
2340
2341 (defun ange-ftp-add-file-entry (name &optional dir-p)
2342 "Add a file entry for file NAME, if its directory info exists."
2343 (funcall (or (cdr (assq (ange-ftp-host-type
2344 (car (ange-ftp-ftp-name name)))
2345 ange-ftp-add-file-entry-alist))
2346 'ange-ftp-internal-add-file-entry)
2347 name dir-p)
2348 (setq ange-ftp-ls-cache-file nil))
2349
2350 (defun ange-ftp-delete-file-entry (name &optional dir-p)
2351 "Delete the file entry for file NAME, if its directory info exists."
2352 (funcall (or (cdr (assq (ange-ftp-host-type
2353 (car (ange-ftp-ftp-name name)))
2354 ange-ftp-delete-file-entry-alist))
2355 'ange-ftp-internal-delete-file-entry)
2356 name dir-p)
2357 (setq ange-ftp-ls-cache-file nil))
2358
2359 (defmacro ange-ftp-parse-filename ()
2360 ;;Extract the filename from the current line of a dired-like listing.
2361 (` (let ((eol (progn (end-of-line) (point))))
2362 (beginning-of-line)
2363 (if (re-search-forward ange-ftp-date-regexp eol t)
2364 (progn
2365 (skip-chars-forward " ")
2366 (skip-chars-forward "^ " eol)
2367 (skip-chars-forward " " eol)
2368 ;; We bomb on filenames starting with a space.
2369 (buffer-substring (point) eol))))))
2370
2371 ;; This deals with the F switch. Should also do something about
2372 ;; unquoting names obtained with the SysV b switch and the GNU Q
2373 ;; switch. See Sebastian's dired-get-filename.
2374
2375 (defmacro ange-ftp-ls-parser ()
2376 ;; Note that switches is dynamically bound.
2377 ;; Meant to be called by ange-ftp-parse-dired-listing
2378 (` (let ((tbl (ange-ftp-make-hashtable))
2379 (used-F (and (stringp switches)
2380 (string-match "F" switches)))
2381 file-type symlink directory file)
2382 (while (setq file (ange-ftp-parse-filename))
2383 (beginning-of-line)
2384 (skip-chars-forward "\t 0-9")
2385 (setq file-type (following-char)
2386 directory (eq file-type ?d))
2387 (if (eq file-type ?l)
2388 (if (string-match " -> " file)
2389 (setq symlink (substring file (match-end 0))
2390 file (substring file 0 (match-beginning 0)))
2391 ;; Shouldn't happen
2392 (setq symlink ""))
2393 (setq symlink nil))
2394 ;; Only do a costly regexp search if the F switch was used.
2395 (if (and used-F
2396 (not (string-equal file ""))
2397 (looking-at
2398 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"))
2399 (let ((socket (eq file-type ?s))
2400 (executable
2401 (and (not symlink) ; x bits don't mean a thing for symlinks
2402 (string-match "[xst]"
2403 (concat
2404 (buffer-substring
2405 (match-beginning 1)
2406 (match-end 1))
2407 (buffer-substring
2408 (match-beginning 2)
2409 (match-end 2))
2410 (buffer-substring
2411 (match-beginning 3)
2412 (match-end 3)))))))
2413 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX)
2414 ;; and others don't. (sigh...) Beware, that some Unix's don't
2415 ;; seem to believe in the F-switch
2416 (if (or (and symlink (string-match "@$" file))
2417 (and directory (string-match "/$" file))
2418 (and executable (string-match "*$" file))
2419 (and socket (string-match "=$" file)))
2420 (setq file (substring file 0 -1)))))
2421 (ange-ftp-put-hash-entry file (or symlink directory) tbl)
2422 (forward-line 1))
2423 (ange-ftp-put-hash-entry "." t tbl)
2424 (ange-ftp-put-hash-entry ".." t tbl)
2425 tbl)))
2426
2427 ;;; The dl stuff for descriptive listings
2428
2429 (defvar ange-ftp-dl-dir-regexp nil
2430 "Regexp matching directories which are listed in dl format.
2431 This regexp should not be anchored with a trailing `$', because it should
2432 match subdirectories as well.")
2433
2434 (defun ange-ftp-add-dl-dir (dir)
2435 "Interactively adds a DIR to ange-ftp-dl-dir-regexp."
2436 (interactive
2437 (list (read-string "Directory: "
2438 (let ((name (or (buffer-file-name) default-directory)))
2439 (and name (ange-ftp-ftp-name name)
2440 (file-name-directory name))))))
2441 (if (not (and ange-ftp-dl-dir-regexp
2442 (string-match ange-ftp-dl-dir-regexp dir)))
2443 (setq ange-ftp-dl-dir-regexp
2444 (concat "^" (regexp-quote dir)
2445 (and ange-ftp-dl-dir-regexp "\\|")
2446 ange-ftp-dl-dir-regexp))))
2447
2448 (defmacro ange-ftp-dl-parser ()
2449 ;; Parse the current buffer, which is assumed to be a descriptive
2450 ;; listing, and return a hashtable.
2451 (` (let ((tbl (ange-ftp-make-hashtable)))
2452 (while (not (eobp))
2453 (ange-ftp-put-hash-entry
2454 (buffer-substring (point)
2455 (progn
2456 (skip-chars-forward "^ /\n")
2457 (point)))
2458 (eq (following-char) ?/)
2459 tbl)
2460 (forward-line 1))
2461 (ange-ftp-put-hash-entry "." t tbl)
2462 (ange-ftp-put-hash-entry ".." t tbl)
2463 tbl)))
2464
2465 ;; Parse the current buffer which is assumed to be in a dired-like listing
2466 ;; format, and return a hashtable as the result. If the listing is not really
2467 ;; a listing, then return nil.
2468
2469 (defun ange-ftp-parse-dired-listing (&optional switches)
2470 (save-match-data
2471 (cond
2472 ((looking-at "^total [0-9]+$")
2473 (forward-line 1)
2474 ;; Some systems put in a blank line here.
2475 (if (eolp) (forward-line 1))
2476 (ange-ftp-ls-parser))
2477 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'")
2478 ;; It's an ls error message.
2479 nil)
2480 ((eobp) ; i.e. (zerop (buffer-size))
2481 ;; This could be one of:
2482 ;; (1) An Ultrix ls error message
2483 ;; (2) A listing with the A switch of an empty directory
2484 ;; on a machine which doesn't give a total line.
2485 ;; (3) The twilight zone.
2486 ;; We'll assume (1) for now.
2487 nil)
2488 ((re-search-forward ange-ftp-date-regexp nil t)
2489 (beginning-of-line)
2490 (ange-ftp-ls-parser))
2491 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t)
2492 ;; It's a dl listing (I hope).
2493 ;; file is bound by the call to ange-ftp-ls
2494 (ange-ftp-add-dl-dir ange-ftp-this-file)
2495 (beginning-of-line)
2496 (ange-ftp-dl-parser))
2497 (t nil))))
2498
2499 (defun ange-ftp-set-files (directory files)
2500 "For a given DIRECTORY, set or change the associated FILES hashtable."
2501 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory)
2502 files ange-ftp-files-hashtable)))
2503
2504 (defun ange-ftp-get-files (directory &optional no-error)
2505 "Given a given DIRECTORY, return a hashtable of file entries.
2506 This will give an error or return nil, depending on the value of
2507 NO-ERROR, if a listing for DIRECTORY cannot be obtained."
2508 (setq directory (file-name-as-directory directory)) ;normalize
2509 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable)
2510 (save-match-data
2511 (and (ange-ftp-ls directory
2512 ;; This is an efficiency hack. We try to
2513 ;; anticipate what sort of listing dired
2514 ;; might want, and cache just such a listing.
2515 (if (and (boundp 'dired-actual-switches)
2516 (stringp dired-actual-switches)
2517 ;; We allow the A switch, which lists
2518 ;; all files except "." and "..".
2519 ;; This is OK because we manually
2520 ;; insert these entries
2521 ;; in the hash table.
2522 (string-match
2523 "[aA]" dired-actual-switches)
2524 (string-match
2525 "l" dired-actual-switches)
2526 (not (string-match
2527 "R" dired-actual-switches)))
2528 dired-actual-switches
2529 (if (and (boundp 'dired-listing-switches)
2530 (stringp dired-listing-switches)
2531 (string-match
2532 "[aA]" dired-listing-switches)
2533 (string-match
2534 "l" dired-listing-switches)
2535 (not (string-match
2536 "R" dired-listing-switches)))
2537 dired-listing-switches
2538 "-al"))
2539 t no-error)
2540 (ange-ftp-get-hash-entry
2541 directory ange-ftp-files-hashtable)))))
2542
2543 ;; Given NAME, return the file part that can be used for looking up the
2544 ;; file's entry in a hashtable.
2545 (defmacro ange-ftp-get-file-part (name)
2546 (` (let ((file (file-name-nondirectory (, name))))
2547 (if (string-equal file "")
2548 "."
2549 file))))
2550
2551 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are
2552 ;; allowed to determine if NAME is a sub-directory by listing it directly,
2553 ;; rather than listing its parent directory. This is used for efficiency so
2554 ;; that a wasted listing is not done:
2555 ;; 1. When looking for a .dired file in dired-x.el.
2556 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid
2557 ;; subdirectory. This is of course an OS dependent judgement.
2558
2559 (defmacro ange-ftp-allow-child-lookup (dir file)
2560 (` (not
2561 (let* ((efile (, file)) ; expand once.
2562 (edir (, dir))
2563 (parsed (ange-ftp-ftp-name edir))
2564 (host-type (ange-ftp-host-type
2565 (car parsed))))
2566 (or
2567 ;;; This variable seems not to exist in Emacs 19 -- rms.
2568 ;;; ;; Deal with dired
2569 ;;; (and (boundp 'dired-local-variables-file)
2570 ;;; (stringp dired-local-variables-file)
2571 ;;; (string-equal dired-local-variables-file efile))
2572 ;; No dots in dir names in vms.
2573 (and (eq host-type 'vms)
2574 (string-match "\\." efile))
2575 ;; No subdirs in mts of cms.
2576 (and (memq host-type '(mts cms))
2577 (not (string-equal "/" (nth 2 parsed)))))))))
2578
2579 (defun ange-ftp-file-entry-p (name)
2580 "Given NAME, return whether there is a file entry for it."
2581 (let* ((name (directory-file-name name))
2582 (dir (file-name-directory name))
2583 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable))
2584 (file (ange-ftp-get-file-part name)))
2585 (if ent
2586 (ange-ftp-hash-entry-exists-p file ent)
2587 (or (and (ange-ftp-allow-child-lookup dir file)
2588 (setq ent (ange-ftp-get-files name t))
2589 ;; Try a child lookup. i.e. try to list file as a
2590 ;; subdirectory of dir. This is a good idea because
2591 ;; we may not have read permission for file's parent. Also,
2592 ;; people tend to work down directory trees anyway. We use
2593 ;; no-error ;; because if file does not exist as a subdir.,
2594 ;; then dumb hosts will give an ftp error. Smart unix hosts
2595 ;; will simply send back the ls
2596 ;; error message.
2597 (ange-ftp-get-hash-entry "." ent))
2598 ;; Child lookup failed. Try the parent. If this bombs,
2599 ;; we are at wits end -- signal an error.
2600 ;; Problem: If this signals an error, the error message
2601 ;; may not have a lot to do with what went wrong.
2602 (ange-ftp-hash-entry-exists-p file
2603 (ange-ftp-get-files dir))))))
2604
2605 (defun ange-ftp-get-file-entry (name)
2606 "Given NAME, return the given file entry.
2607 The entry will be either t for a directory, nil for a normal file,
2608 or a string for a symlink. If the file isn't in the hashtable,
2609 this also returns nil."
2610 (let* ((name (directory-file-name name))
2611 (dir (file-name-directory name))
2612 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable))
2613 (file (ange-ftp-get-file-part name)))
2614 (if ent
2615 (ange-ftp-get-hash-entry file ent)
2616 (or (and (ange-ftp-allow-child-lookup dir file)
2617 (setq ent (ange-ftp-get-files name t))
2618 (ange-ftp-get-hash-entry "." ent))
2619 ;; i.e. it's a directory by child lookup
2620 (ange-ftp-get-hash-entry file
2621 (ange-ftp-get-files dir))))))
2622
2623 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p)
2624 (if dir-p
2625 (progn
2626 (setq name (file-name-as-directory name))
2627 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable)
2628 (setq name (directory-file-name name))))
2629 ;; Note that file-name-as-directory followed by directory-file-name
2630 ;; serves to canonicalize directory file names to their unix form.
2631 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO
2632 (let ((files (ange-ftp-get-hash-entry (file-name-directory name)
2633 ange-ftp-files-hashtable)))
2634 (if files
2635 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name)
2636 files))))
2637
2638 (defun ange-ftp-internal-add-file-entry (name &optional dir-p)
2639 (and dir-p
2640 (setq name (directory-file-name name)))
2641 (let ((files (ange-ftp-get-hash-entry (file-name-directory name)
2642 ange-ftp-files-hashtable)))
2643 (if files
2644 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name)
2645 dir-p
2646 files))))
2647
2648 (defun ange-ftp-wipe-file-entries (host user)
2649 "Get rid of entry for HOST, USER pair from file entry information hashtable."
2650 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable))))
2651 (ange-ftp-map-hashtable
2652 (function
2653 (lambda (key val)
2654 (let ((parsed (ange-ftp-ftp-name key)))
2655 (if parsed
2656 (let ((h (nth 0 parsed))
2657 (u (nth 1 parsed)))
2658 (or (and (equal host h) (equal user u))
2659 (ange-ftp-put-hash-entry key val new-tbl)))))))
2660 ange-ftp-files-hashtable)
2661 (setq ange-ftp-files-hashtable new-tbl)))
2662 \f
2663 ;;;; ------------------------------------------------------------
2664 ;;;; File transfer mode support.
2665 ;;;; ------------------------------------------------------------
2666
2667 (defun ange-ftp-set-binary-mode (host user)
2668 "Tell the ftp process for the given HOST & USER to switch to binary mode."
2669 (let ((result (ange-ftp-send-cmd host user '(type "binary"))))
2670 (if (not (car result))
2671 (ange-ftp-error host user (concat "BINARY failed: " (cdr result)))
2672 (save-excursion
2673 (set-buffer (process-buffer (ange-ftp-get-process host user)))
2674 (and ange-ftp-binary-hash-mark-size
2675 (setq ange-ftp-hash-mark-unit
2676 (ash ange-ftp-binary-hash-mark-size -4)))))))
2677
2678 (defun ange-ftp-set-ascii-mode (host user)
2679 "Tell the ftp process for the given HOST & USER to switch to ascii mode."
2680 (let ((result (ange-ftp-send-cmd host user '(type "ascii"))))
2681 (if (not (car result))
2682 (ange-ftp-error host user (concat "ASCII failed: " (cdr result)))
2683 (save-excursion
2684 (set-buffer (process-buffer (ange-ftp-get-process host user)))
2685 (and ange-ftp-ascii-hash-mark-size
2686 (setq ange-ftp-hash-mark-unit
2687 (ash ange-ftp-ascii-hash-mark-size -4)))))))
2688 \f
2689 (defun ange-ftp-cd (host user dir)
2690 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD")))
2691 (or (car result)
2692 (ange-ftp-error host user (concat "CD failed: " (cdr result))))))
2693
2694 (defun ange-ftp-get-pwd (host user)
2695 "Attempts to get the current working directory for the given HOST/USER pair.
2696 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found,
2697 and LINE is the relevant success or fail line from the FTP-client."
2698 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD"))
2699 (line (cdr result))
2700 dir)
2701 (if (car result)
2702 (save-match-data
2703 (and (or (string-match "\"\\([^\"]*\\)\"" line)
2704 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers!
2705 (setq dir (substring line
2706 (match-beginning 1)
2707 (match-end 1))))))
2708 (cons dir line)))
2709 \f
2710 ;;; ------------------------------------------------------------
2711 ;;; expand-file-name and friends...which currently don't work
2712 ;;; ------------------------------------------------------------
2713
2714 (defun ange-ftp-expand-dir (host user dir)
2715 "Return the result of doing a PWD in the current FTP session.
2716 Use the connection to machine HOST
2717 logged in as user USER and cd'd to directory DIR."
2718 (let* ((host-type (ange-ftp-host-type host user))
2719 ;; It is more efficient to call ange-ftp-host-type
2720 ;; before binding res, because ange-ftp-host-type sometimes
2721 ;; adds to the info in the expand-dir-hashtable.
2722 (fix-name-func
2723 (cdr (assq host-type ange-ftp-fix-name-func-alist)))
2724 (key (concat host "/" user "/" dir))
2725 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable)))
2726 (or res
2727 (progn
2728 (or
2729 (string-equal user "anonymous")
2730 (string-equal user "ftp")
2731 (not (eq host-type 'unix))
2732 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp
2733 "\\|"
2734 ange-ftp-good-msgs))
2735 (result (ange-ftp-send-cmd host user
2736 (list 'get dir "/dev/null")
2737 (format "expanding %s" dir)))
2738 (line (cdr result)))
2739 (setq res
2740 (if (string-match ange-ftp-expand-dir-regexp line)
2741 (substring line
2742 (match-beginning 1)
2743 (match-end 1))))))
2744 (or res
2745 (if (string-equal dir "~")
2746 (setq res (car (ange-ftp-get-pwd host user)))
2747 (let ((home (ange-ftp-expand-dir host user "~")))
2748 (unwind-protect
2749 (and (ange-ftp-cd host user dir)
2750 (setq res (car (ange-ftp-get-pwd host user))))
2751 (ange-ftp-cd host user home)))))
2752 (if res
2753 (let ((ange-ftp-this-user user)
2754 (ange-ftp-this-host host))
2755 (if fix-name-func
2756 (setq res (funcall fix-name-func res 'reverse)))
2757 (ange-ftp-put-hash-entry
2758 key res ange-ftp-expand-dir-hashtable)))
2759 res))))
2760
2761 (defun ange-ftp-canonize-filename (n)
2762 "Take a string and short-circuit //, /. and /.."
2763 (if (string-match "[^:]+//" n) ;don't upset Apollo users
2764 (setq n (substring n (1- (match-end 0)))))
2765 (let ((parsed (ange-ftp-ftp-name n)))
2766 (if parsed
2767 (let ((host (car parsed))
2768 (user (nth 1 parsed))
2769 (name (nth 2 parsed)))
2770
2771 ;; See if remote name is absolute. If so then just expand it and
2772 ;; replace the name component of the overall name.
2773 (cond ((string-match "^/" name)
2774 name)
2775
2776 ;; Name starts with ~ or ~user. Resolve that part of the name
2777 ;; making it absolute then re-expand it.
2778 ((string-match "^~[^/]*" name)
2779 (let* ((tilda (substring name
2780 (match-beginning 0)
2781 (match-end 0)))
2782 (rest (substring name (match-end 0)))
2783 (dir (ange-ftp-expand-dir host user tilda)))
2784 (if dir
2785 (setq name (concat dir rest))
2786 (error "User \"%s\" is not known"
2787 (substring tilda 1)))))
2788
2789 ;; relative name. Tack on homedir and re-expand.
2790 (t
2791 (let ((dir (ange-ftp-expand-dir host user "~")))
2792 (if dir
2793 (setq name (concat
2794 (ange-ftp-real-file-name-as-directory dir)
2795 name))
2796 (error "Unable to obtain CWD")))))
2797
2798 ;; If name starts with //, preserve that, for apollo system.
2799 (if (not (string-match "^//" name))
2800 (progn
2801 (setq name (ange-ftp-real-expand-file-name name))
2802
2803 (if (string-match "^//" name)
2804 (setq name (substring name 1)))))
2805
2806 ;; Now substitute the expanded name back into the overall filename.
2807 (ange-ftp-replace-name-component n name))
2808
2809 ;; non-ange-ftp name. Just expand normally.
2810 (if (eq (string-to-char n) ?/)
2811 (ange-ftp-real-expand-file-name n)
2812 (ange-ftp-real-expand-file-name
2813 (ange-ftp-real-file-name-nondirectory n)
2814 (ange-ftp-real-file-name-directory n))))))
2815
2816 (defun ange-ftp-expand-file-name (name &optional default)
2817 "Documented as original."
2818 (save-match-data
2819 (if (eq (string-to-char name) ?/)
2820 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users
2821 (setq name (substring name (1- (match-end 0)))))
2822 ((string-match "/~" name)
2823 (setq name (substring name (1- (match-end 0))))))))
2824 (cond ((eq (string-to-char name) ?~)
2825 (ange-ftp-real-expand-file-name name))
2826 ((eq (string-to-char name) ?/)
2827 (ange-ftp-canonize-filename name))
2828 ((zerop (length name))
2829 (ange-ftp-canonize-filename (or default default-directory)))
2830 ((ange-ftp-canonize-filename
2831 (concat (file-name-as-directory (or default default-directory))
2832 name))))))
2833 \f
2834 ;;; These are problems--they are currently not enabled.
2835
2836 (defvar ange-ftp-file-name-as-directory-alist nil
2837 "Association list of \( TYPE \. FUNC \) pairs.
2838 FUNC converts a filename to a directory name for the operating
2839 system TYPE.")
2840
2841 (defun ange-ftp-file-name-as-directory (name)
2842 "Documented as original."
2843 (let ((parsed (ange-ftp-ftp-name name)))
2844 (if parsed
2845 (if (string-equal (nth 2 parsed) "")
2846 name
2847 (funcall (or (cdr (assq
2848 (ange-ftp-host-type (car parsed))
2849 ange-ftp-file-name-as-directory-alist))
2850 'ange-ftp-real-file-name-as-directory)
2851 name))
2852 (ange-ftp-real-file-name-as-directory name))))
2853
2854 (defun ange-ftp-file-name-directory (name)
2855 "Documented as original."
2856 (let ((parsed (ange-ftp-ftp-name name)))
2857 (if parsed
2858 (let ((filename (nth 2 parsed)))
2859 (if (save-match-data
2860 (string-match "^~[^/]*$" filename))
2861 name
2862 (ange-ftp-replace-name-component
2863 name
2864 (ange-ftp-real-file-name-directory filename))))
2865 (ange-ftp-real-file-name-directory name))))
2866
2867 (defun ange-ftp-file-name-nondirectory (name)
2868 "Documented as original."
2869 (let ((parsed (ange-ftp-ftp-name name)))
2870 (if parsed
2871 (let ((filename (nth 2 parsed)))
2872 (if (save-match-data
2873 (string-match "^~[^/]*$" filename))
2874 ""
2875 (ange-ftp-real-file-name-nondirectory name)))
2876 (ange-ftp-real-file-name-nondirectory name))))
2877
2878 (defun ange-ftp-directory-file-name (dir)
2879 "Documented as original."
2880 (let ((parsed (ange-ftp-ftp-name dir)))
2881 (if parsed
2882 (ange-ftp-replace-name-component
2883 dir
2884 (ange-ftp-real-directory-file-name (nth 2 parsed)))
2885 (ange-ftp-real-directory-file-name dir))))
2886
2887 \f
2888 ;;; Hooks that handle Emacs primitives.
2889
2890 ;; Returns non-nil if should transfer FILE in binary mode.
2891 (defun ange-ftp-binary-file (file)
2892 (save-match-data
2893 (string-match ange-ftp-binary-file-name-regexp file)))
2894
2895 (defun ange-ftp-write-region (start end filename &optional append visit)
2896 (setq filename (expand-file-name filename))
2897 (let ((parsed (ange-ftp-ftp-name filename)))
2898 (if parsed
2899 (let* ((host (nth 0 parsed))
2900 (user (nth 1 parsed))
2901 (name (ange-ftp-quote-string (nth 2 parsed)))
2902 (temp (ange-ftp-make-tmp-name host))
2903 (binary (or (ange-ftp-binary-file filename)
2904 (eq (ange-ftp-host-type host user) 'unix)))
2905 (cmd (if append 'append 'put))
2906 (abbr (ange-ftp-abbreviate-filename filename)))
2907 (unwind-protect
2908 (progn
2909 (let ((executing-macro t)
2910 (filename (buffer-file-name))
2911 (mod-p (buffer-modified-p)))
2912 (unwind-protect
2913 (ange-ftp-real-write-region start end temp nil visit)
2914 ;; cleanup forms
2915 (setq buffer-file-name filename)
2916 (set-buffer-modified-p mod-p)))
2917 (if binary
2918 (ange-ftp-set-binary-mode host user))
2919
2920 ;; tell the process filter what size the transfer will be.
2921 (let ((attr (file-attributes temp)))
2922 (if attr
2923 (ange-ftp-set-xfer-size host user (nth 7 attr))))
2924
2925 ;; put or append the file.
2926 (let ((result (ange-ftp-send-cmd host user
2927 (list cmd temp name)
2928 (format "Writing %s" abbr))))
2929 (or (car result)
2930 (signal 'ftp-error
2931 (list
2932 "Opening output file"
2933 (format "FTP Error: \"%s\"" (cdr result))
2934 filename)))))
2935 (ange-ftp-del-tmp-name temp)
2936 (if binary
2937 (ange-ftp-set-ascii-mode host user)))
2938 (if (eq visit t)
2939 (progn
2940 (set-visited-file-modtime '(0 0))
2941 (ange-ftp-set-buffer-mode)
2942 (setq buffer-file-name filename)
2943 (set-buffer-modified-p nil)))
2944 (ange-ftp-message "Wrote %s" abbr)
2945 (ange-ftp-add-file-entry filename))
2946 (ange-ftp-real-write-region start end filename append visit))))
2947
2948 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace)
2949 (barf-if-buffer-read-only)
2950 (setq filename (expand-file-name filename))
2951 (let ((parsed (ange-ftp-ftp-name filename)))
2952 (if parsed
2953 (progn
2954 (if visit
2955 (setq buffer-file-name filename))
2956 (if (or (file-exists-p filename)
2957 (progn
2958 (setq ange-ftp-ls-cache-file nil)
2959 (ange-ftp-del-hash-entry (file-name-directory filename)
2960 ange-ftp-files-hashtable)
2961 (file-exists-p filename)))
2962 (let* ((host (nth 0 parsed))
2963 (user (nth 1 parsed))
2964 (name (ange-ftp-quote-string (nth 2 parsed)))
2965 (temp (ange-ftp-make-tmp-name host))
2966 (binary (or (ange-ftp-binary-file filename)
2967 (eq (ange-ftp-host-type host user) 'unix)))
2968 (abbr (ange-ftp-abbreviate-filename filename))
2969 size)
2970 (unwind-protect
2971 (progn
2972 (if binary
2973 (ange-ftp-set-binary-mode host user))
2974 (let ((result (ange-ftp-send-cmd host user
2975 (list 'get name temp)
2976 (format "Retrieving %s" abbr))))
2977 (or (car result)
2978 (signal 'ftp-error
2979 (list
2980 "Opening input file"
2981 (format "FTP Error: \"%s\"" (cdr result))
2982 filename))))
2983 (if (or (ange-ftp-real-file-readable-p temp)
2984 (sleep-for ange-ftp-retry-time)
2985 ;; Wait for file to hopefully appear.
2986 (ange-ftp-real-file-readable-p temp))
2987 (setq
2988 size
2989 (nth 1 (ange-ftp-real-insert-file-contents
2990 temp visit beg end replace)))
2991 (signal 'ftp-error
2992 (list
2993 "Opening input file:"
2994 (format
2995 "FTP Error: %s not arrived or readable"
2996 filename)))))
2997 (if binary
2998 (ange-ftp-set-ascii-mode host user))
2999 (ange-ftp-del-tmp-name temp))
3000 (if visit
3001 (progn
3002 (set-visited-file-modtime '(0 0))
3003 (setq buffer-file-name filename)))
3004 (list filename size))
3005 (signal 'file-error
3006 (list
3007 "Opening input file"
3008 filename))))
3009 (ange-ftp-real-insert-file-contents filename visit beg end replace))))
3010
3011 (defun ange-ftp-expand-symlink (file dir)
3012 (if (file-name-absolute-p file)
3013 (ange-ftp-replace-name-component dir file)
3014 (expand-file-name file dir)))
3015
3016 (defun ange-ftp-file-symlink-p (file)
3017 ;; call ange-ftp-expand-file-name rather than the normal
3018 ;; expand-file-name to stop loops when using a package that
3019 ;; redefines both file-symlink-p and expand-file-name.
3020 (setq file (ange-ftp-expand-file-name file))
3021 (if (ange-ftp-ftp-name file)
3022 (let ((file-ent
3023 (ange-ftp-get-hash-entry
3024 (ange-ftp-get-file-part file)
3025 (ange-ftp-get-files (file-name-directory file)))))
3026 (if (stringp file-ent)
3027 (if (file-name-absolute-p file-ent)
3028 (ange-ftp-replace-name-component
3029 (file-name-directory file) file-ent)
3030 file-ent)))
3031 (ange-ftp-real-file-symlink-p file)))
3032
3033 (defun ange-ftp-file-exists-p (name)
3034 (setq name (expand-file-name name))
3035 (if (ange-ftp-ftp-name name)
3036 (if (ange-ftp-file-entry-p name)
3037 (let ((file-ent (ange-ftp-get-file-entry name)))
3038 (if (stringp file-ent)
3039 (file-exists-p
3040 (ange-ftp-expand-symlink file-ent
3041 (file-name-directory
3042 (directory-file-name name))))
3043 t)))
3044 (ange-ftp-real-file-exists-p name)))
3045
3046 (defun ange-ftp-file-directory-p (name)
3047 (setq name (expand-file-name name))
3048 (if (ange-ftp-ftp-name name)
3049 ;; We do a file-name-as-directory on name here because some
3050 ;; machines (VMS) use a .DIR to indicate the filename associated
3051 ;; with a directory. This needs to be canonicalized.
3052 (let ((file-ent (ange-ftp-get-file-entry
3053 (ange-ftp-file-name-as-directory name))))
3054 (if (stringp file-ent)
3055 (file-directory-p
3056 (ange-ftp-expand-symlink file-ent
3057 (file-name-directory
3058 (directory-file-name name))))
3059 file-ent))
3060 (ange-ftp-real-file-directory-p name)))
3061
3062 (defun ange-ftp-directory-files (directory &optional full match
3063 &rest v19-args)
3064 (setq directory (expand-file-name directory))
3065 (if (ange-ftp-ftp-name directory)
3066 (progn
3067 (ange-ftp-barf-if-not-directory directory)
3068 (let ((tail (ange-ftp-hash-table-keys
3069 (ange-ftp-get-files directory)))
3070 files f)
3071 (setq directory (file-name-as-directory directory))
3072 (save-match-data
3073 (while tail
3074 (setq f (car tail)
3075 tail (cdr tail))
3076 (if (or (not match) (string-match match f))
3077 (setq files
3078 (cons (if full (concat directory f) f) files)))))
3079 (nreverse files)))
3080 (apply 'ange-ftp-real-directory-files directory full match v19-args)))
3081
3082 (defun ange-ftp-file-attributes (file)
3083 (setq file (expand-file-name file))
3084 (let ((parsed (ange-ftp-ftp-name file)))
3085 (if parsed
3086 (let ((part (ange-ftp-get-file-part file))
3087 (files (ange-ftp-get-files (file-name-directory file))))
3088 (if (ange-ftp-hash-entry-exists-p part files)
3089 (let ((host (nth 0 parsed))
3090 (user (nth 1 parsed))
3091 (name (nth 2 parsed))
3092 (dirp (ange-ftp-get-hash-entry part files)))
3093 (list (if (and (stringp dirp) (file-name-absolute-p dirp))
3094 (ange-ftp-expand-symlink dirp
3095 (file-name-directory file))
3096 dirp) ;0 file type
3097 -1 ;1 link count
3098 -1 ;2 uid
3099 -1 ;3 gid
3100 '(0 0) ;4 atime
3101 '(0 0) ;5 mtime
3102 '(0 0) ;6 ctime
3103 -1 ;7 size
3104 (concat (if (stringp dirp) "l" (if dirp "d" "-"))
3105 "?????????") ;8 mode
3106 nil ;9 gid weird
3107 ;; Hack to give remote files a unique "inode number".
3108 ;; It's actually the sum of the characters in its name.
3109 (apply '+ (nconc (mapcar 'identity host)
3110 (mapcar 'identity user)
3111 (mapcar 'identity
3112 (directory-file-name name))))
3113 -1 ;11 device number [v19 only]
3114 ))))
3115 (ange-ftp-real-file-attributes file))))
3116
3117 (defun ange-ftp-file-writable-p (file)
3118 (setq file (expand-file-name file))
3119 (if (ange-ftp-ftp-name file)
3120 (or (file-exists-p file) ;guess here for speed
3121 (file-directory-p (file-name-directory file)))
3122 (ange-ftp-real-file-writable-p file)))
3123
3124 (defun ange-ftp-file-readable-p (file)
3125 (setq file (expand-file-name file))
3126 (if (ange-ftp-ftp-name file)
3127 (file-exists-p file)
3128 (ange-ftp-real-file-readable-p file)))
3129
3130 (defun ange-ftp-file-executable-p (file)
3131 (setq file (expand-file-name file))
3132 (if (ange-ftp-ftp-name file)
3133 (file-exists-p file)
3134 (ange-ftp-real-file-executable-p file)))
3135
3136 (defun ange-ftp-delete-file (file)
3137 (interactive "fDelete file: ")
3138 (setq file (expand-file-name file))
3139 (let ((parsed (ange-ftp-ftp-name file)))
3140 (if parsed
3141 (let* ((host (nth 0 parsed))
3142 (user (nth 1 parsed))
3143 (name (ange-ftp-quote-string (nth 2 parsed)))
3144 (abbr (ange-ftp-abbreviate-filename file))
3145 (result (ange-ftp-send-cmd host user
3146 (list 'delete name)
3147 (format "Deleting %s" abbr))))
3148 (or (car result)
3149 (signal 'ftp-error
3150 (list
3151 "Removing old name"
3152 (format "FTP Error: \"%s\"" (cdr result))
3153 file)))
3154 (ange-ftp-delete-file-entry file))
3155 (ange-ftp-real-delete-file file))))
3156
3157 (defun ange-ftp-verify-visited-file-modtime (buf)
3158 (let ((name (buffer-file-name buf)))
3159 (if (and (stringp name) (ange-ftp-ftp-name name))
3160 t
3161 (ange-ftp-real-verify-visited-file-modtime buf))))
3162 \f
3163 ;;;; ------------------------------------------------------------
3164 ;;;; File copying support... totally re-written 6/24/92.
3165 ;;;; ------------------------------------------------------------
3166
3167 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive)
3168 (if (file-exists-p absname)
3169 (if (not interactive)
3170 (signal 'file-already-exists (list absname))
3171 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? "
3172 absname querystring)))
3173 (signal 'file-already-exists (list absname))))))
3174
3175 ;; async local copy commented out for now since I don't seem to get
3176 ;; the process sentinel called for some processes.
3177 ;;
3178 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists
3179 ;; keep-date cont)
3180 ;; "Kludge to copy a local file and call a continuation when the copy
3181 ;; finishes."
3182 ;; ;; check to see if we can overwrite
3183 ;; (if (or (not ok-if-already-exists)
3184 ;; (numberp ok-if-already-exists))
3185 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3186 ;; (numberp ok-if-already-exists)))
3187 ;; (let ((proc (start-process " *copy*"
3188 ;; (generate-new-buffer "*copy*")
3189 ;; "cp"
3190 ;; filename
3191 ;; newname))
3192 ;; res)
3193 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel))
3194 ;; (process-kill-without-query proc)
3195 ;; (save-excursion
3196 ;; (set-buffer (process-buffer proc))
3197 ;; (make-variable-buffer-local 'copy-cont)
3198 ;; (setq copy-cont cont))))
3199 ;;
3200 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status)
3201 ;; (save-excursion
3202 ;; (set-buffer (process-buffer proc))
3203 ;; (let ((cont copy-cont)
3204 ;; (result (buffer-string)))
3205 ;; (unwind-protect
3206 ;; (if (and (string-equal status "finished\n")
3207 ;; (zerop (length result)))
3208 ;; (ange-ftp-call-cont cont t nil)
3209 ;; (ange-ftp-call-cont cont
3210 ;; nil
3211 ;; (if (zerop (length result))
3212 ;; (substring status 0 -1)
3213 ;; (substring result 0 -1))))
3214 ;; (kill-buffer (current-buffer))))))
3215
3216 ;; this is the extended version of ange-ftp-copy-file-internal that works
3217 ;; asynchronously if asked nicely.
3218 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists
3219 keep-date &optional msg cont nowait)
3220 (setq filename (expand-file-name filename)
3221 newname (expand-file-name newname))
3222
3223 ;; canonicalize newname if a directory.
3224 (if (file-directory-p newname)
3225 (setq newname (expand-file-name (file-name-nondirectory filename) newname)))
3226
3227 (let ((f-parsed (ange-ftp-ftp-name filename))
3228 (t-parsed (ange-ftp-ftp-name newname)))
3229
3230 ;; local file to local file copy?
3231 (if (and (not f-parsed) (not t-parsed))
3232 (progn
3233 (ange-ftp-real-copy-file filename newname ok-if-already-exists
3234 keep-date)
3235 (if cont
3236 (ange-ftp-call-cont cont t "Copied locally")))
3237 ;; one or both files are remote.
3238 (let* ((f-host (and f-parsed (nth 0 f-parsed)))
3239 (f-user (and f-parsed (nth 1 f-parsed)))
3240 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed))))
3241 (f-abbr (ange-ftp-abbreviate-filename filename))
3242 (t-host (and t-parsed (nth 0 t-parsed)))
3243 (t-user (and t-parsed (nth 1 t-parsed)))
3244 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed))))
3245 (t-abbr (ange-ftp-abbreviate-filename newname filename))
3246 (binary (or (ange-ftp-binary-file filename)
3247 (ange-ftp-binary-file newname)
3248 (and (eq (ange-ftp-host-type f-host f-user) 'unix)
3249 (eq (ange-ftp-host-type t-host t-user) 'unix))))
3250 temp1
3251 temp2)
3252
3253 ;; check to see if we can overwrite
3254 (if (or (not ok-if-already-exists)
3255 (numberp ok-if-already-exists))
3256 (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3257 (numberp ok-if-already-exists)))
3258
3259 ;; do the copying.
3260 (if f-parsed
3261
3262 ;; filename was remote.
3263 (progn
3264 (if (or (ange-ftp-use-gateway-p f-host)
3265 t-parsed)
3266 ;; have to use intermediate file if we are getting via
3267 ;; gateway machine or we are doing a remote to remote copy.
3268 (setq temp1 (ange-ftp-make-tmp-name f-host)))
3269
3270 (if binary
3271 (ange-ftp-set-binary-mode f-host f-user))
3272
3273 (ange-ftp-send-cmd
3274 f-host
3275 f-user
3276 (list 'get f-name (or temp1 newname))
3277 (or msg
3278 (if (and temp1 t-parsed)
3279 (format "Getting %s" f-abbr)
3280 (format "Copying %s to %s" f-abbr t-abbr)))
3281 (list (function ange-ftp-cf1)
3282 filename newname binary msg
3283 f-parsed f-host f-user f-name f-abbr
3284 t-parsed t-host t-user t-name t-abbr
3285 temp1 temp2 cont nowait)
3286 nowait))
3287
3288 ;; filename wasn't remote. newname must be remote. call the
3289 ;; function which does the remainder of the copying work.
3290 (ange-ftp-cf1 t nil
3291 filename newname binary msg
3292 f-parsed f-host f-user f-name f-abbr
3293 t-parsed t-host t-user t-name t-abbr
3294 nil nil cont nowait))))))
3295
3296 ;; next part of copying routine.
3297 (defun ange-ftp-cf1 (result line
3298 filename newname binary msg
3299 f-parsed f-host f-user f-name f-abbr
3300 t-parsed t-host t-user t-name t-abbr
3301 temp1 temp2 cont nowait)
3302 (if line
3303 ;; filename must have been remote, and we must have just done a GET.
3304 (unwind-protect
3305 (or result
3306 ;; GET failed for some reason. Clean up and get out.
3307 (progn
3308 (and temp1 (ange-ftp-del-tmp-name temp1))
3309 (or cont
3310 (signal 'ftp-error (list "Opening input file"
3311 (format "FTP Error: \"%s\"" line)
3312 filename)))))
3313 ;; cleanup
3314 (if binary
3315 (ange-ftp-set-ascii-mode f-host f-user))))
3316
3317 (if result
3318 ;; We now have to copy either temp1 or filename to newname.
3319 (if t-parsed
3320
3321 ;; newname was remote.
3322 (progn
3323 (if (ange-ftp-use-gateway-p t-host)
3324 (setq temp2 (ange-ftp-make-tmp-name t-host)))
3325
3326 ;; make sure data is moved into the right place for the
3327 ;; outgoing transfer. gateway temporary files complicate
3328 ;; things nicely.
3329 (if temp1
3330 (if temp2
3331 (if (string-equal temp1 temp2)
3332 (setq temp1 nil)
3333 (ange-ftp-real-copy-file temp1 temp2 t))
3334 (setq temp2 temp1 temp1 nil))
3335 (if temp2
3336 (ange-ftp-real-copy-file filename temp2 t)))
3337
3338 (if binary
3339 (ange-ftp-set-binary-mode t-host t-user))
3340
3341 ;; tell the process filter what size the file is.
3342 (let ((attr (file-attributes (or temp2 filename))))
3343 (if attr
3344 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr))))
3345
3346 (ange-ftp-send-cmd
3347 t-host
3348 t-user
3349 (list 'put (or temp2 filename) t-name)
3350 (or msg
3351 (if (and temp2 f-parsed)
3352 (format "Putting %s" newname)
3353 (format "Copying %s to %s" f-abbr t-abbr)))
3354 (list (function ange-ftp-cf2)
3355 newname t-host t-user binary temp1 temp2 cont)
3356 nowait))
3357
3358 ;; newname wasn't remote.
3359 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont))
3360
3361 ;; first copy failed, tell caller
3362 (ange-ftp-call-cont cont result line)))
3363
3364 ;; last part of copying routine.
3365 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont)
3366 (unwind-protect
3367 (if line
3368 ;; result from doing a local to remote copy.
3369 (unwind-protect
3370 (progn
3371 (or result
3372 (or cont
3373 (signal 'ftp-error
3374 (list "Opening output file"
3375 (format "FTP Error: \"%s\"" line)
3376 newname))))
3377
3378 (ange-ftp-add-file-entry newname))
3379
3380 ;; cleanup.
3381 (if binary
3382 (ange-ftp-set-ascii-mode t-host t-user)))
3383
3384 ;; newname was local.
3385 (if temp1
3386 (ange-ftp-real-copy-file temp1 newname t)))
3387
3388 ;; clean up
3389 (and temp1 (ange-ftp-del-tmp-name temp1))
3390 (and temp2 (ange-ftp-del-tmp-name temp2))
3391 (ange-ftp-call-cont cont result line)))
3392
3393 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists
3394 keep-date)
3395 (interactive "fCopy file: \nFCopy %s to file: \np")
3396 (ange-ftp-copy-file-internal filename
3397 newname
3398 ok-if-already-exists
3399 keep-date
3400 nil
3401 nil
3402 (interactive-p)))
3403 \f
3404 ;;;; ------------------------------------------------------------
3405 ;;;; File renaming support.
3406 ;;;; ------------------------------------------------------------
3407
3408 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed)
3409 "Rename remote file FILE to remote file NEWNAME."
3410 (let ((f-host (nth 0 f-parsed))
3411 (f-user (nth 1 f-parsed))
3412 (t-host (nth 0 t-parsed))
3413 (t-user (nth 1 t-parsed)))
3414 (if (and (string-equal f-host t-host)
3415 (string-equal f-user t-user))
3416 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed)))
3417 (t-name (ange-ftp-quote-string (nth 2 t-parsed)))
3418 (cmd (list 'rename f-name t-name))
3419 (fabbr (ange-ftp-abbreviate-filename filename))
3420 (nabbr (ange-ftp-abbreviate-filename newname filename))
3421 (result (ange-ftp-send-cmd f-host f-user cmd
3422 (format "Renaming %s to %s"
3423 fabbr
3424 nabbr))))
3425 (or (car result)
3426 (signal 'ftp-error
3427 (list
3428 "Renaming"
3429 (format "FTP Error: \"%s\"" (cdr result))
3430 filename
3431 newname)))
3432 (ange-ftp-add-file-entry newname)
3433 (ange-ftp-delete-file-entry filename))
3434 (ange-ftp-copy-file-internal filename newname t nil)
3435 (delete-file filename))))
3436
3437 (defun ange-ftp-rename-local-to-remote (filename newname)
3438 "Rename local FILENAME to remote file NEWNAME."
3439 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3440 (nabbr (ange-ftp-abbreviate-filename newname filename))
3441 (msg (format "Renaming %s to %s" fabbr nabbr)))
3442 (ange-ftp-copy-file-internal filename newname t nil msg)
3443 (let (ange-ftp-process-verbose)
3444 (delete-file filename))))
3445
3446 (defun ange-ftp-rename-remote-to-local (filename newname)
3447 "Rename remote file FILENAME to local file NEWNAME."
3448 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3449 (nabbr (ange-ftp-abbreviate-filename newname filename))
3450 (msg (format "Renaming %s to %s" fabbr nabbr)))
3451 (ange-ftp-copy-file-internal filename newname t nil msg)
3452 (let (ange-ftp-process-verbose)
3453 (delete-file filename))))
3454
3455 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists)
3456 (interactive "fRename file: \nFRename %s to file: \np")
3457 (setq filename (expand-file-name filename))
3458 (setq newname (expand-file-name newname))
3459 (let* ((f-parsed (ange-ftp-ftp-name filename))
3460 (t-parsed (ange-ftp-ftp-name newname)))
3461 (if (and (or f-parsed t-parsed)
3462 (or (not ok-if-already-exists)
3463 (numberp ok-if-already-exists)))
3464 (ange-ftp-barf-or-query-if-file-exists
3465 newname
3466 "rename to it"
3467 (numberp ok-if-already-exists)))
3468 (if f-parsed
3469 (if t-parsed
3470 (ange-ftp-rename-remote-to-remote filename newname f-parsed
3471 t-parsed)
3472 (ange-ftp-rename-remote-to-local filename newname))
3473 (if t-parsed
3474 (ange-ftp-rename-local-to-remote filename newname)
3475 (ange-ftp-real-rename-file filename newname ok-if-already-exists)))))
3476 \f
3477 ;;;; ------------------------------------------------------------
3478 ;;;; File name completion support.
3479 ;;;; ------------------------------------------------------------
3480
3481 ;; If the file entry SYM is a symlink, returns whether its file exists.
3482 ;; Note that `ange-ftp-this-dir' is used as a free variable.
3483 (defun ange-ftp-file-entry-active-p (sym)
3484 (let ((val (get sym 'val)))
3485 (or (not (stringp val))
3486 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir)))))
3487
3488 ;; If the file entry is not a directory (nor a symlink pointing to a directory)
3489 ;; returns whether the file (or file pointed to by the symlink) is ignored
3490 ;; by completion-ignored-extensions.
3491 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern'
3492 ;; are used as free variables.
3493 (defun ange-ftp-file-entry-not-ignored-p (sym)
3494 (let ((val (get sym 'val))
3495 (symname (symbol-name sym)))
3496 (if (stringp val)
3497 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir)))
3498 (or (file-directory-p file)
3499 (and (file-exists-p file)
3500 (not (string-match ange-ftp-completion-ignored-pattern
3501 symname)))))
3502 (or val ; is a directory name
3503 (not (string-match ange-ftp-completion-ignored-pattern symname))))))
3504
3505 (defun ange-ftp-file-name-all-completions (file dir)
3506 (let ((ange-ftp-this-dir (expand-file-name dir)))
3507 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3508 (progn
3509 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3510 (setq ange-ftp-this-dir
3511 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir))
3512 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3513 (completions
3514 (all-completions file tbl
3515 (function ange-ftp-file-entry-active-p))))
3516
3517 ;; see whether each matching file is a directory or not...
3518 (mapcar
3519 (function
3520 (lambda (file)
3521 (let ((ent (ange-ftp-get-hash-entry file tbl)))
3522 (if (and ent
3523 (or (not (stringp ent))
3524 (file-directory-p
3525 (ange-ftp-expand-symlink ent
3526 ange-ftp-this-dir))))
3527 (concat file "/")
3528 file))))
3529 completions)))
3530
3531 (if (string-equal "/" ange-ftp-this-dir)
3532 (nconc (all-completions file (ange-ftp-generate-root-prefixes))
3533 (ange-ftp-real-file-name-all-completions file
3534 ange-ftp-this-dir))
3535 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir)))))
3536
3537 (defun ange-ftp-file-name-completion (file dir)
3538 (let ((ange-ftp-this-dir (expand-file-name dir)))
3539 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3540 (progn
3541 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3542 (if (equal file "")
3543 ""
3544 (setq ange-ftp-this-dir
3545 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real?
3546 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3547 (ange-ftp-completion-ignored-pattern
3548 (mapconcat (function
3549 (lambda (s) (if (stringp s)
3550 (concat (regexp-quote s) "$")
3551 "/"))) ; / never in filename
3552 completion-ignored-extensions
3553 "\\|")))
3554 (save-match-data
3555 (or (ange-ftp-file-name-completion-1
3556 file tbl ange-ftp-this-dir
3557 (function ange-ftp-file-entry-not-ignored-p))
3558 (ange-ftp-file-name-completion-1
3559 file tbl ange-ftp-this-dir
3560 (function ange-ftp-file-entry-active-p)))))))
3561
3562 (if (string-equal "/" ange-ftp-this-dir)
3563 (try-completion
3564 file
3565 (nconc (ange-ftp-generate-root-prefixes)
3566 (mapcar 'list
3567 (ange-ftp-real-file-name-all-completions file "/"))))
3568 (ange-ftp-real-file-name-completion file ange-ftp-this-dir)))))
3569
3570
3571 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate)
3572 (let ((bestmatch (try-completion file tbl predicate)))
3573 (if bestmatch
3574 (if (eq bestmatch t)
3575 (if (file-directory-p (expand-file-name file dir))
3576 (concat file "/")
3577 t)
3578 (if (and (eq (try-completion bestmatch tbl predicate) t)
3579 (file-directory-p
3580 (expand-file-name bestmatch dir)))
3581 (concat bestmatch "/")
3582 bestmatch)))))
3583
3584 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh
3585 ;; ange-ftp's cache whilst doing filename completion.
3586 ;;
3587 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir)
3588 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir)
3589
3590 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults
3591 ;; to the directory part of the contents of the current buffer.
3592 (defun ange-ftp-re-read-dir (&optional dir)
3593 (interactive)
3594 (if dir
3595 (setq dir (expand-file-name dir))
3596 (setq dir (file-name-directory (expand-file-name (buffer-string)))))
3597 (if (ange-ftp-ftp-name dir)
3598 (progn
3599 (setq ange-ftp-ls-cache-file nil)
3600 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable)
3601 (ange-ftp-get-files dir t))))
3602 \f
3603 (defun ange-ftp-make-directory (dir &optional parents)
3604 (interactive (list (expand-file-name (read-file-name "Make directory: "))))
3605 (if parents
3606 (let ((parent (file-name-directory (directory-file-name dir))))
3607 (or (file-exists-p parent)
3608 (ange-ftp-make-directory parent parents))))
3609 (if (file-exists-p dir)
3610 (error "Cannot make directory %s: file already exists" dir)
3611 (let ((parsed (ange-ftp-ftp-name dir)))
3612 (if parsed
3613 (let* ((host (nth 0 parsed))
3614 (user (nth 1 parsed))
3615 ;; Some ftp's on unix machines (at least on Suns)
3616 ;; insist that mkdir take a filename, and not a
3617 ;; directory-name name as an arg. Argh!! This is a bug.
3618 ;; Non-unix machines will probably always insist
3619 ;; that mkdir takes a directory-name as an arg
3620 ;; (as the ftp man page says it should).
3621 (name (ange-ftp-quote-string
3622 (if (eq (ange-ftp-host-type host) 'unix)
3623 (ange-ftp-real-directory-file-name (nth 2 parsed))
3624 (ange-ftp-real-file-name-as-directory
3625 (nth 2 parsed)))))
3626 (abbr (ange-ftp-abbreviate-filename dir))
3627 (result (ange-ftp-send-cmd host user
3628 (list 'mkdir name)
3629 (format "Making directory %s"
3630 abbr))))
3631 (or (car result)
3632 (ange-ftp-error host user
3633 (format "Could not make directory %s: %s"
3634 dir
3635 (cdr result))))
3636 (ange-ftp-add-file-entry dir t))
3637 (ange-ftp-real-make-directory dir)))))
3638
3639 (defun ange-ftp-delete-directory (dir)
3640 (if (file-directory-p dir)
3641 (let ((parsed (ange-ftp-ftp-name dir)))
3642 (if parsed
3643 (let* ((host (nth 0 parsed))
3644 (user (nth 1 parsed))
3645 ;; Some ftp's on unix machines (at least on Suns)
3646 ;; insist that rmdir take a filename, and not a
3647 ;; directory-name name as an arg. Argh!! This is a bug.
3648 ;; Non-unix machines will probably always insist
3649 ;; that rmdir takes a directory-name as an arg
3650 ;; (as the ftp man page says it should).
3651 (name (ange-ftp-quote-string
3652 (if (eq (ange-ftp-host-type host) 'unix)
3653 (ange-ftp-real-directory-file-name
3654 (nth 2 parsed))
3655 (ange-ftp-real-file-name-as-directory
3656 (nth 2 parsed)))))
3657 (abbr (ange-ftp-abbreviate-filename dir))
3658 (result (ange-ftp-send-cmd host user
3659 (list 'rmdir name)
3660 (format "Removing directory %s"
3661 abbr))))
3662 (or (car result)
3663 (ange-ftp-error host user
3664 (format "Could not remove directory %s: %s"
3665 dir
3666 (cdr result))))
3667 (ange-ftp-delete-file-entry dir t))
3668 (ange-ftp-real-delete-directory dir)))
3669 (error "Not a directory: %s" dir)))
3670 \f
3671 ;; Make a local copy of FILE and return its name.
3672
3673 (defun ange-ftp-file-local-copy (file)
3674 (let* ((fn1 (expand-file-name file))
3675 (pa1 (ange-ftp-ftp-name fn1)))
3676 (if pa1
3677 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1))))
3678 (ange-ftp-copy-file-internal fn1 tmp1 t nil
3679 (format "Getting %s" fn1))
3680 tmp1))))
3681
3682 (defun ange-ftp-load (file &optional noerror nomessage nosuffix)
3683 (if (ange-ftp-ftp-name file)
3684 (let ((tryfiles (if nosuffix
3685 (list file)
3686 (list (concat file ".elc") (concat file ".el") file)))
3687 copy)
3688 (while (and tryfiles (not copy))
3689 (condition-case error
3690 (setq copy (ange-ftp-file-local-copy (car tryfiles)))
3691 (ftp-error nil)))
3692 (if copy
3693 (unwind-protect
3694 (funcall 'load copy noerror nomessage nosuffix)
3695 (delete-file copy))
3696 (or noerror
3697 (signal 'file-error (list "Cannot open load file" file)))))
3698 (ange-ftp-real-load file noerror nomessage nosuffix)))
3699
3700 ;; Calculate default-unhandled-directory for a given ange-ftp buffer.
3701 (defun ange-ftp-unhandled-file-name-directory (filename)
3702 (file-name-directory ange-ftp-tmp-name-template))
3703
3704 \f
3705 ;; Need the following functions for making filenames of compressed
3706 ;; files, because some OS's (unlike UNIX) do not allow a filename to
3707 ;; have two extensions.
3708
3709 (defvar ange-ftp-make-compressed-filename-alist nil
3710 "Alist of host-type-specific functions to process file names for compression.
3711 Each element has the form (TYPE . FUNC).
3712 FUNC should take one argument, a file name, and return a list
3713 of the form (COMPRESSING NEWNAME).
3714 COMPRESSING should be t if the specified file should be compressed,
3715 and nil if it should be uncompressed (that is, if it is a compressed file).
3716 NEWNAME should be the name to give the new compressed or uncompressed file.")
3717
3718 (defun ange-ftp-dired-compress-file (name)
3719 (let ((parsed (ange-ftp-ftp-name name))
3720 conversion-func)
3721 (if (and parsed
3722 (setq conversion-func
3723 (cdr (assq (ange-ftp-host-type (car parsed))
3724 ange-ftp-make-compressed-filename-alist))))
3725 (let* ((decision
3726 (save-match-data (funcall conversion-func name)))
3727 (compressing (car decision))
3728 (newfile (nth 1 decision)))
3729 (if compressing
3730 (ange-ftp-compress name newfile)
3731 (ange-ftp-uncompress name newfile)))
3732 (let (file-name-handler-alist)
3733 (dired-compress-file name)))))
3734
3735 ;; Copy FILE to this machine, compress it, and copy out to NFILE.
3736 (defun ange-ftp-compress (file nfile)
3737 (let* ((parsed (ange-ftp-ftp-name file))
3738 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
3739 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
3740 (abbr (ange-ftp-abbreviate-filename file))
3741 (nabbr (ange-ftp-abbreviate-filename nfile))
3742 (msg1 (format "Getting %s" abbr))
3743 (msg2 (format "Putting %s" nabbr)))
3744 (unwind-protect
3745 (progn
3746 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
3747 (and ange-ftp-process-verbose
3748 (ange-ftp-message "Compressing %s..." abbr))
3749 (call-process-region (point)
3750 (point)
3751 shell-file-name
3752 nil
3753 t
3754 nil
3755 "-c"
3756 (format "compress -f -c < %s > %s" tmp1 tmp2))
3757 (and ange-ftp-process-verbose
3758 (ange-ftp-message "Compressing %s...done" abbr))
3759 (if (zerop (buffer-size))
3760 (progn
3761 (let (ange-ftp-process-verbose)
3762 (delete-file file))
3763 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
3764 (ange-ftp-del-tmp-name tmp1)
3765 (ange-ftp-del-tmp-name tmp2))))
3766
3767 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE.
3768 (defun ange-ftp-uncompress (file nfile)
3769 (let* ((parsed (ange-ftp-ftp-name file))
3770 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
3771 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
3772 (abbr (ange-ftp-abbreviate-filename file))
3773 (nabbr (ange-ftp-abbreviate-filename nfile))
3774 (msg1 (format "Getting %s" abbr))
3775 (msg2 (format "Putting %s" nabbr))
3776 ;; ;; Cheap hack because of problems with binary file transfers from
3777 ;; ;; VMS hosts.
3778 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed)))))
3779 )
3780 (unwind-protect
3781 (progn
3782 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
3783 (and ange-ftp-process-verbose
3784 (ange-ftp-message "Uncompressing %s..." abbr))
3785 (call-process-region (point)
3786 (point)
3787 shell-file-name
3788 nil
3789 t
3790 nil
3791 "-c"
3792 (format "uncompress -c < %s > %s" tmp1 tmp2))
3793 (and ange-ftp-process-verbose
3794 (ange-ftp-message "Uncompressing %s...done" abbr))
3795 (if (zerop (buffer-size))
3796 (progn
3797 (let (ange-ftp-process-verbose)
3798 (delete-file file))
3799 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
3800 (ange-ftp-del-tmp-name tmp1)
3801 (ange-ftp-del-tmp-name tmp2))))
3802
3803 (defun ange-ftp-find-backup-file-name (fn)
3804 ;; Either return the ordinary backup name, etc.,
3805 ;; or return nil meaning don't make a backup.
3806 (if ange-ftp-make-backup-files
3807 (ange-ftp-real-find-backup-file-name fn)))
3808 \f
3809 ;;; Define the handler for special file names
3810 ;;; that causes ange-ftp to be invoked.
3811
3812 ;;;###autoload
3813 (defun ange-ftp-hook-function (operation &rest args)
3814 (let ((fn (get operation 'ange-ftp)))
3815 (if fn (apply fn args)
3816 (ange-ftp-run-real-handler operation args))))
3817
3818
3819 ;;; This regexp takes care of real ange-ftp file names (with a slash
3820 ;;; and colon).
3821 ;;;###autoload
3822 (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist)
3823 (setq file-name-handler-alist
3824 (cons '("^/[^/:]*[^/:]:" . ange-ftp-hook-function)
3825 file-name-handler-alist)))
3826
3827 ;;; This regexp recognizes and absolute filenames with only one component,
3828 ;;; for the sake of hostname completion.
3829 ;;;###autoload
3830 (or (assoc "^/[^/:]*\\'" file-name-handler-alist)
3831 (setq file-name-handler-alist
3832 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function)
3833 file-name-handler-alist)))
3834
3835 ;;; The above two forms are sufficient to cause this file to be loaded
3836 ;;; if the user ever uses a file name with a colon in it.
3837
3838 ;;; This sets the mode
3839 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks)
3840 (setq find-file-hooks
3841 (cons 'ange-ftp-set-buffer-mode find-file-hooks)))
3842
3843 ;;; Now say where to find the handlers for particular operations.
3844
3845 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory)
3846 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory)
3847 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory)
3848 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name)
3849 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name)
3850 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory)
3851 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory)
3852 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents)
3853 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files)
3854 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p)
3855 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p)
3856 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p)
3857 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p)
3858 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p)
3859 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file)
3860 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal)
3861 (put 'verify-visited-file-modtime 'ange-ftp
3862 'ange-ftp-verify-visited-file-modtime)
3863 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p)
3864 (put 'write-region 'ange-ftp 'ange-ftp-write-region)
3865 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer)
3866 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file)
3867 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file)
3868 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes)
3869 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions)
3870 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion)
3871 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory)
3872 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy)
3873 (put 'unhandled-file-name-directory 'ange-ftp
3874 'ange-ftp-unhandled-file-name-directory)
3875 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions)
3876 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache)
3877 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file)
3878 (put 'load 'ange-ftp 'ange-ftp-load)
3879 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name)
3880
3881 ;; Turn off truename processing to save time.
3882 ;; Treat each name as its own truename.
3883 (put 'file-truename 'ange-ftp 'identity)
3884
3885 ;; Turn off RCS/SCCS processing to save time.
3886 ;; This returns nil for any file name as argument.
3887 (put 'vc-registered 'ange-ftp 'null)
3888 \f
3889 ;;; Define ways of getting at unmodified Emacs primitives,
3890 ;;; turning off our handler.
3891
3892 (defun ange-ftp-run-real-handler (operation args)
3893 (let ((inhibit-file-name-handlers
3894 (cons 'ange-ftp-hook-function
3895 (cons 'ange-ftp-completion-hook-function
3896 (and (eq inhibit-file-name-operation operation)
3897 inhibit-file-name-handlers))))
3898 (inhibit-file-name-operation operation))
3899 (apply operation args)))
3900
3901 (defun ange-ftp-real-file-name-directory (&rest args)
3902 (ange-ftp-run-real-handler 'file-name-directory args))
3903 (defun ange-ftp-real-file-name-nondirectory (&rest args)
3904 (ange-ftp-run-real-handler 'file-name-nondirectory args))
3905 (defun ange-ftp-real-file-name-as-directory (&rest args)
3906 (ange-ftp-run-real-handler 'file-name-as-directory args))
3907 (defun ange-ftp-real-directory-file-name (&rest args)
3908 (ange-ftp-run-real-handler 'directory-file-name args))
3909 (defun ange-ftp-real-expand-file-name (&rest args)
3910 (ange-ftp-run-real-handler 'expand-file-name args))
3911 (defun ange-ftp-real-make-directory (&rest args)
3912 (ange-ftp-run-real-handler 'make-directory args))
3913 (defun ange-ftp-real-delete-directory (&rest args)
3914 (ange-ftp-run-real-handler 'delete-directory args))
3915 (defun ange-ftp-real-insert-file-contents (&rest args)
3916 (ange-ftp-run-real-handler 'insert-file-contents args))
3917 (defun ange-ftp-real-directory-files (&rest args)
3918 (ange-ftp-run-real-handler 'directory-files args))
3919 (defun ange-ftp-real-file-directory-p (&rest args)
3920 (ange-ftp-run-real-handler 'file-directory-p args))
3921 (defun ange-ftp-real-file-writable-p (&rest args)
3922 (ange-ftp-run-real-handler 'file-writable-p args))
3923 (defun ange-ftp-real-file-readable-p (&rest args)
3924 (ange-ftp-run-real-handler 'file-readable-p args))
3925 (defun ange-ftp-real-file-executable-p (&rest args)
3926 (ange-ftp-run-real-handler 'file-executable-p args))
3927 (defun ange-ftp-real-file-symlink-p (&rest args)
3928 (ange-ftp-run-real-handler 'file-symlink-p args))
3929 (defun ange-ftp-real-delete-file (&rest args)
3930 (ange-ftp-run-real-handler 'delete-file args))
3931 (defun ange-ftp-real-read-file-name-internal (&rest args)
3932 (ange-ftp-run-real-handler 'read-file-name-internal args))
3933 (defun ange-ftp-real-verify-visited-file-modtime (&rest args)
3934 (ange-ftp-run-real-handler 'verify-visited-file-modtime args))
3935 (defun ange-ftp-real-file-exists-p (&rest args)
3936 (ange-ftp-run-real-handler 'file-exists-p args))
3937 (defun ange-ftp-real-write-region (&rest args)
3938 (ange-ftp-run-real-handler 'write-region args))
3939 (defun ange-ftp-real-backup-buffer (&rest args)
3940 (ange-ftp-run-real-handler 'backup-buffer args))
3941 (defun ange-ftp-real-copy-file (&rest args)
3942 (ange-ftp-run-real-handler 'copy-file args))
3943 (defun ange-ftp-real-rename-file (&rest args)
3944 (ange-ftp-run-real-handler 'rename-file args))
3945 (defun ange-ftp-real-file-attributes (&rest args)
3946 (ange-ftp-run-real-handler 'file-attributes args))
3947 (defun ange-ftp-real-file-name-all-completions (&rest args)
3948 (ange-ftp-run-real-handler 'file-name-all-completions args))
3949 (defun ange-ftp-real-file-name-completion (&rest args)
3950 (ange-ftp-run-real-handler 'file-name-completion args))
3951 (defun ange-ftp-real-insert-directory (&rest args)
3952 (ange-ftp-run-real-handler 'insert-directory args))
3953 (defun ange-ftp-real-file-name-sans-versions (&rest args)
3954 (ange-ftp-run-real-handler 'file-name-sans-versions args))
3955 (defun ange-ftp-real-shell-command (&rest args)
3956 (ange-ftp-run-real-handler 'shell-command args))
3957 (defun ange-ftp-real-load (&rest args)
3958 (ange-ftp-run-real-handler 'load args))
3959 (defun ange-ftp-real-find-backup-file-name (&rest args)
3960 (ange-ftp-run-real-handler 'find-backup-file-name args))
3961 \f
3962 ;; Here we support using dired on remote hosts.
3963 ;; I have turned off the support for using dired on foreign directory formats.
3964 ;; That involves too many unclean hooks.
3965 ;; It would be cleaner to support such operations by
3966 ;; converting the foreign directory format to something dired can understand;
3967 ;; something close to ls -l output.
3968 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing.
3969
3970 ;; Some of the old dired hooks would still be needed even if this is done.
3971 ;; I have preserved (and modernized) those hooks.
3972 ;; So the format conversion should be all that is needed.
3973
3974 (defun ange-ftp-insert-directory (file switches &optional wildcard full)
3975 (let ((short (ange-ftp-abbreviate-filename file))
3976 (parsed (ange-ftp-ftp-name (expand-file-name file))))
3977 (if parsed
3978 (insert
3979 (if wildcard
3980 (let ((default-directory (file-name-directory file)))
3981 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t))
3982 (ange-ftp-ls file switches full)))
3983 (ange-ftp-real-insert-directory file switches wildcard full))))
3984
3985 (defun ange-ftp-dired-uncache (dir)
3986 (if (ange-ftp-ftp-name (expand-file-name dir))
3987 (setq ange-ftp-ls-cache-file nil)))
3988
3989 (defvar ange-ftp-sans-version-alist nil
3990 "Alist of mapping host type into function to remove file version numbers.")
3991
3992 (defun ange-ftp-file-name-sans-versions (file keep-backup-version)
3993 (setq file (ange-ftp-abbreviate-filename file))
3994 (let ((parsed (ange-ftp-ftp-name file))
3995 host-type func)
3996 (if parsed
3997 (setq host-type (ange-ftp-host-type (car parsed))
3998 func (cdr (assq (ange-ftp-host-type (car parsed))
3999 ange-ftp-sans-version-alist))))
4000 (if func (funcall func file keep-backup-version)
4001 (ange-ftp-real-file-name-sans-versions file keep-backup-version))))
4002
4003 ;;; This doesn't work yet; a new hook needs to be created.
4004 ;;; Maybe the new hook should be in call-process.
4005 (defun ange-ftp-shell-command (command)
4006 (let* ((parsed (ange-ftp-ftp-name default-directory))
4007 (host (nth 0 parsed))
4008 (user (nth 1 parsed))
4009 (name (nth 2 parsed)))
4010 (if (not parsed)
4011 (ange-ftp-real-shell-command command)
4012 (if (> (length name) 0) ; else it's $HOME
4013 (setq command (concat "cd " name "; " command)))
4014 (setq command
4015 (format "%s %s \"%s\"" ; remsh -l USER does not work well
4016 ; on a hp-ux machine I tried
4017 remote-shell-program host command))
4018 (ange-ftp-message "Remote command '%s' ..." command)
4019 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it
4020 ;; would prepend "cd default-directory" --- which bombs because
4021 ;; default-directory is in ange-ftp syntax for remote file names.
4022 (ange-ftp-real-shell-command command))))
4023
4024 ;;; Thisis not hooked up yet.
4025 (defun ange-ftp-dired-call-process (program discard &rest arguments)
4026 ;; PROGRAM is always one of those below in the cond in dired.el.
4027 ;; The ARGUMENTS are (nearly) always files.
4028 (if (ange-ftp-ftp-name default-directory)
4029 ;; Can't use ange-ftp-dired-host-type here because the current
4030 ;; buffer is *dired-check-process output*
4031 (condition-case oops
4032 (cond ((equal "chmod" program)
4033 (ange-ftp-call-chmod arguments))
4034 ;; ((equal "chgrp" program))
4035 ;; ((equal dired-chown-program program))
4036 (t (error "Unknown remote command: %s" program)))
4037 (ftp-error (insert (format "%s: %s, %s\n"
4038 (nth 1 oops)
4039 (nth 2 oops)
4040 (nth 3 oops))))
4041 (error (insert (format "%s\n" (nth 1 oops)))))
4042 (apply 'call-process program nil (not discard) nil arguments)))
4043
4044 ;;; This currently does not work; it is never called.
4045 (defun ange-ftp-call-chmod (args)
4046 (if (< (length args) 2)
4047 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args))
4048 (let ((mode (car args)))
4049 (mapcar
4050 (function
4051 (lambda (file)
4052 (setq file (expand-file-name file))
4053 (let ((parsed (ange-ftp-ftp-name file)))
4054 (if parsed
4055 (let* ((host (nth 0 parsed))
4056 (user (nth 1 parsed))
4057 (name (ange-ftp-quote-string (nth 2 parsed)))
4058 (abbr (ange-ftp-abbreviate-filename file))
4059 (result (ange-ftp-send-cmd host user
4060 (list 'chmod mode name)
4061 (format "doing chmod %s"
4062 abbr))))
4063 (or (car result)
4064 (ange-ftp-error host user
4065 (format "chmod: %s: \"%s\""
4066 file
4067 (cdr result)))))))))
4068 (cdr args)))
4069 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired
4070 \f
4071 ;;; This is turned off because it has nothing properly to do
4072 ;;; with dired. It could be reasonable to adapt this to
4073 ;;; replace ange-ftp-copy-file.
4074
4075 ;;;;; ------------------------------------------------------------
4076 ;;;;; Noddy support for async copy-file within dired.
4077 ;;;;; ------------------------------------------------------------
4078
4079 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait)
4080 ;; "Documented as original."
4081 ;; (dired-handle-overwrite to)
4082 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil
4083 ;; cont nowait))
4084
4085 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg
4086 ;; &optional marker-char op1
4087 ;; how-to)
4088 ;; "Documented as original."
4089 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly
4090 ;; ;; called it rather than somebody else.
4091 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is
4092 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation
4093 ;; arg marker-char op1 how-to)))
4094
4095 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor
4096 ;; &optional marker-char)
4097 ;; "Documented as original."
4098 ;; (if (and (boundp 'ange-ftp-dired-do-create-files)
4099 ;; ;; called from ange-ftp-dired-do-create-files?
4100 ;; ange-ftp-dired-do-create-files
4101 ;; ;; any files worth copying?
4102 ;; fn-list
4103 ;; ;; we only support async copy-file at the mo.
4104 ;; (eq file-creator 'dired-copy-file)
4105 ;; ;; it is only worth calling the alternative function for remote files
4106 ;; ;; as we tie ourself in recursive knots otherwise.
4107 ;; (or (ange-ftp-ftp-name (car fn-list))
4108 ;; ;; we can only call the name constructor for dired-do-create-files
4109 ;; ;; since the one for regexps starts prompting here, there and
4110 ;; ;; everywhere.
4111 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list)))))
4112 ;; ;; use the process-filter driven routine rather than the iterative one.
4113 ;; (ange-ftp-dcf-1 file-creator
4114 ;; operation
4115 ;; fn-list
4116 ;; name-constructor
4117 ;; (and (boundp 'target) target) ;dynamically bound
4118 ;; marker-char
4119 ;; (current-buffer)
4120 ;; nil ;overwrite-query
4121 ;; nil ;overwrite-backup-query
4122 ;; nil ;failures
4123 ;; nil ;skipped
4124 ;; 0 ;success-count
4125 ;; (length fn-list) ;total
4126 ;; )
4127 ;; ;; normal case... use the interactive routine... much cheaper.
4128 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list
4129 ;; name-constructor marker-char)))
4130
4131 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor
4132 ;; target marker-char buffer overwrite-query
4133 ;; overwrite-backup-query failures skipped
4134 ;; success-count total)
4135 ;; (let ((old-buf (current-buffer)))
4136 ;; (unwind-protect
4137 ;; (progn
4138 ;; (set-buffer buffer)
4139 ;; (if (null fn-list)
4140 ;; (ange-ftp-dcf-3 failures operation total skipped
4141 ;; success-count buffer)
4142
4143 ;; (let* ((from (car fn-list))
4144 ;; (to (funcall name-constructor from)))
4145 ;; (if (equal to from)
4146 ;; (progn
4147 ;; (setq to nil)
4148 ;; (dired-log "Cannot %s to same file: %s\n"
4149 ;; (downcase operation) from)))
4150 ;; (if (not to)
4151 ;; (ange-ftp-dcf-1 file-creator
4152 ;; operation
4153 ;; (cdr fn-list)
4154 ;; name-constructor
4155 ;; target
4156 ;; marker-char
4157 ;; buffer
4158 ;; overwrite-query
4159 ;; overwrite-backup-query
4160 ;; failures
4161 ;; (cons (dired-make-relative from) skipped)
4162 ;; success-count
4163 ;; total)
4164 ;; (let* ((overwrite (file-exists-p to))
4165 ;; (overwrite-confirmed ; for dired-handle-overwrite
4166 ;; (and overwrite
4167 ;; (let ((help-form '(format "\
4168 ;;Type SPC or `y' to overwrite file `%s',
4169 ;;DEL or `n' to skip to next,
4170 ;;ESC or `q' to not overwrite any of the remaining files,
4171 ;;`!' to overwrite all remaining files with no more questions." to)))
4172 ;; (dired-query 'overwrite-query
4173 ;; "Overwrite `%s'?" to))))
4174 ;; ;; must determine if FROM is marked before file-creator
4175 ;; ;; gets a chance to delete it (in case of a move).
4176 ;; (actual-marker-char
4177 ;; (cond ((integerp marker-char) marker-char)
4178 ;; (marker-char (dired-file-marker from)) ; slow
4179 ;; (t nil))))
4180 ;; (condition-case err
4181 ;; (funcall file-creator from to overwrite-confirmed
4182 ;; (list (function ange-ftp-dcf-2)
4183 ;; nil ;err
4184 ;; file-creator operation fn-list
4185 ;; name-constructor
4186 ;; target
4187 ;; marker-char actual-marker-char
4188 ;; buffer to from
4189 ;; overwrite
4190 ;; overwrite-confirmed
4191 ;; overwrite-query
4192 ;; overwrite-backup-query
4193 ;; failures skipped success-count
4194 ;; total)
4195 ;; t)
4196 ;; (file-error ; FILE-CREATOR aborted
4197 ;; (ange-ftp-dcf-2 nil ;result
4198 ;; nil ;line
4199 ;; err
4200 ;; file-creator operation fn-list
4201 ;; name-constructor
4202 ;; target
4203 ;; marker-char actual-marker-char
4204 ;; buffer to from
4205 ;; overwrite
4206 ;; overwrite-confirmed
4207 ;; overwrite-query
4208 ;; overwrite-backup-query
4209 ;; failures skipped success-count
4210 ;; total))))))))
4211 ;; (set-buffer old-buf))))
4212
4213 ;;(defun ange-ftp-dcf-2 (result line err
4214 ;; file-creator operation fn-list
4215 ;; name-constructor
4216 ;; target
4217 ;; marker-char actual-marker-char
4218 ;; buffer to from
4219 ;; overwrite
4220 ;; overwrite-confirmed
4221 ;; overwrite-query
4222 ;; overwrite-backup-query
4223 ;; failures skipped success-count
4224 ;; total)
4225 ;; (let ((old-buf (current-buffer)))
4226 ;; (unwind-protect
4227 ;; (progn
4228 ;; (set-buffer buffer)
4229 ;; (if (or err (not result))
4230 ;; (progn
4231 ;; (setq failures (cons (dired-make-relative from) failures))
4232 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n"
4233 ;; operation from to (or err line)))
4234 ;; (if overwrite
4235 ;; ;; If we get here, file-creator hasn't been aborted
4236 ;; ;; and the old entry (if any) has to be deleted
4237 ;; ;; before adding the new entry.
4238 ;; (dired-remove-file to))
4239 ;; (setq success-count (1+ success-count))
4240 ;; (message "%s: %d of %d" operation success-count total)
4241 ;; (dired-add-file to actual-marker-char))
4242
4243 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list)
4244 ;; name-constructor
4245 ;; target
4246 ;; marker-char
4247 ;; buffer
4248 ;; overwrite-query
4249 ;; overwrite-backup-query
4250 ;; failures skipped success-count
4251 ;; total))
4252 ;; (set-buffer old-buf))))
4253
4254 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count
4255 ;; buffer)
4256 ;; (let ((old-buf (current-buffer)))
4257 ;; (unwind-protect
4258 ;; (progn
4259 ;; (set-buffer buffer)
4260 ;; (cond
4261 ;; (failures
4262 ;; (dired-log-summary
4263 ;; (message "%s failed for %d of %d file%s %s"
4264 ;; operation (length failures) total
4265 ;; (dired-plural-s total) failures)))
4266 ;; (skipped
4267 ;; (dired-log-summary
4268 ;; (message "%s: %d of %d file%s skipped %s"
4269 ;; operation (length skipped) total
4270 ;; (dired-plural-s total) skipped)))
4271 ;; (t
4272 ;; (message "%s: %s file%s."
4273 ;; operation success-count (dired-plural-s success-count))))
4274 ;; (dired-move-to-filename))
4275 ;; (set-buffer old-buf))))
4276 \f
4277 ;;;; -----------------------------------------------
4278 ;;;; Unix Descriptive Listing (dl) Support
4279 ;;;; -----------------------------------------------
4280
4281 ;; This is turned off because nothing uses it currently
4282 ;; and because I don't understand what it's supposed to be for. --rms.
4283
4284 ;;(defconst ange-ftp-dired-dl-re-dir
4285 ;; "^. [^ /]+/[ \n]"
4286 ;; "Regular expression to use to search for dl directories.")
4287
4288 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist)
4289 ;; (setq ange-ftp-dired-re-dir-alist
4290 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir)
4291 ;; ange-ftp-dired-re-dir-alist)))
4292
4293 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol)
4294 ;; "In dired, move to the first character of the filename on this line."
4295 ;; ;; This is the Unix dl version.
4296 ;; (or eol (setq eol (progn (end-of-line) (point))))
4297 ;; (let (case-fold-search)
4298 ;; (beginning-of-line)
4299 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ")
4300 ;; (goto-char (+ (point) 2))
4301 ;; (if raise-error
4302 ;; (error "No file on this line")
4303 ;; nil))))
4304
4305 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist)
4306 ;; (setq ange-ftp-dired-move-to-filename-alist
4307 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename)
4308 ;; ange-ftp-dired-move-to-filename-alist)))
4309
4310 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol)
4311 ;; ;; Assumes point is at beginning of filename.
4312 ;; ;; So, it should be called only after (dired-move-to-filename t).
4313 ;; ;; On failure, signals an error or returns nil.
4314 ;; ;; This is the Unix dl version.
4315 ;; (let ((opoint (point))
4316 ;; case-fold-search hidden)
4317 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
4318 ;; (setq hidden (and selective-display
4319 ;; (save-excursion
4320 ;; (search-forward "\r" eol t))))
4321 ;; (if hidden
4322 ;; (if no-error
4323 ;; nil
4324 ;; (error
4325 ;; (substitute-command-keys
4326 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
4327 ;; (skip-chars-forward "^ /" eol)
4328 ;; (if (eq opoint (point))
4329 ;; (if no-error
4330 ;; nil
4331 ;; (error "No file on this line"))
4332 ;; (point)))))
4333
4334 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist)
4335 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4336 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename)
4337 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4338 \f
4339 ;;;; ------------------------------------------------------------
4340 ;;;; VOS support (VOS support is probably broken,
4341 ;;;; but I don't know anything about VOS.)
4342 ;;;; ------------------------------------------------------------
4343 ;
4344 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse)
4345 ; (setq name (copy-sequence name))
4346 ; (let ((from (if reverse ?\> ?\/))
4347 ; (to (if reverse ?\/ ?\>))
4348 ; (i (1- (length name))))
4349 ; (while (>= i 0)
4350 ; (if (= (aref name i) from)
4351 ; (aset name i to))
4352 ; (setq i (1- i)))
4353 ; name))
4354 ;
4355 ;(or (assq 'vos ange-ftp-fix-name-func-alist)
4356 ; (setq ange-ftp-fix-name-func-alist
4357 ; (cons '(vos . ange-ftp-fix-name-for-vos)
4358 ; ange-ftp-fix-name-func-alist)))
4359 ;
4360 ;(or (memq 'vos ange-ftp-dumb-host-types)
4361 ; (setq ange-ftp-dumb-host-types
4362 ; (cons 'vos ange-ftp-dumb-host-types)))
4363 ;
4364 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name)
4365 ; (ange-ftp-fix-name-for-vos
4366 ; (concat dir-name
4367 ; (if (eq ?/ (aref dir-name (1- (length dir-name))))
4368 ; "" "/")
4369 ; "*")))
4370 ;
4371 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist)
4372 ; (setq ange-ftp-fix-dir-name-func-alist
4373 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos)
4374 ; ange-ftp-fix-dir-name-func-alist)))
4375 ;
4376 ;(defvar ange-ftp-vos-host-regexp nil
4377 ; "If a host matches this regexp then it is assumed to be running VOS.")
4378 ;
4379 ;(defun ange-ftp-vos-host (host)
4380 ; (and ange-ftp-vos-host-regexp
4381 ; (save-match-data
4382 ; (string-match ange-ftp-vos-host-regexp host))))
4383 ;
4384 ;(defun ange-ftp-parse-vos-listing ()
4385 ; "Parse the current buffer which is assumed to be in VOS list -all
4386 ;format, and return a hashtable as the result."
4387 ; (let ((tbl (ange-ftp-make-hashtable))
4388 ; (type-list
4389 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40)
4390 ; ("^Dirs: [0-9]+\n+" t 30)))
4391 ; type-regexp type-is-dir type-col file)
4392 ; (goto-char (point-min))
4393 ; (save-match-data
4394 ; (while type-list
4395 ; (setq type-regexp (car (car type-list))
4396 ; type-is-dir (nth 1 (car type-list))
4397 ; type-col (nth 2 (car type-list))
4398 ; type-list (cdr type-list))
4399 ; (if (re-search-forward type-regexp nil t)
4400 ; (while (eq (char-after (point)) ? )
4401 ; (move-to-column type-col)
4402 ; (setq file (buffer-substring (point)
4403 ; (progn
4404 ; (end-of-line 1)
4405 ; (point))))
4406 ; (ange-ftp-put-hash-entry file type-is-dir tbl)
4407 ; (forward-line 1))))
4408 ; (ange-ftp-put-hash-entry "." 'vosdir tbl)
4409 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl))
4410 ; tbl))
4411 ;
4412 ;(or (assq 'vos ange-ftp-parse-list-func-alist)
4413 ; (setq ange-ftp-parse-list-func-alist
4414 ; (cons '(vos . ange-ftp-parse-vos-listing)
4415 ; ange-ftp-parse-list-func-alist)))
4416 \f
4417 ;;;; ------------------------------------------------------------
4418 ;;;; VMS support.
4419 ;;;; ------------------------------------------------------------
4420
4421 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS
4422 ;; to UNIX-ish.
4423 (defun ange-ftp-fix-name-for-vms (name &optional reverse)
4424 (save-match-data
4425 (if reverse
4426 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name)
4427 (let (drive dir file)
4428 (if (match-beginning 1)
4429 (setq drive (substring name
4430 (match-beginning 1)
4431 (match-end 1))))
4432 (if (match-beginning 2)
4433 (setq dir
4434 (substring name (match-beginning 2) (match-end 2))))
4435 (if (match-beginning 3)
4436 (setq file
4437 (substring name (match-beginning 3) (match-end 3))))
4438 (and dir
4439 (setq dir (apply (function concat)
4440 (mapcar (function
4441 (lambda (char)
4442 (if (= char ?.)
4443 (vector ?/)
4444 (vector char))))
4445 (substring dir 1 -1)))))
4446 (concat (and drive
4447 (concat "/" drive "/"))
4448 dir (and dir "/")
4449 file))
4450 (error "name %s didn't match" name))
4451 (let (drive dir file tmp)
4452 (if (string-match "^/[^:]+:/" name)
4453 (setq drive (substring name 1
4454 (1- (match-end 0)))
4455 name (substring name (match-end 0))))
4456 (setq tmp (file-name-directory name))
4457 (if tmp
4458 (setq dir (apply (function concat)
4459 (mapcar (function
4460 (lambda (char)
4461 (if (= char ?/)
4462 (vector ?.)
4463 (vector char))))
4464 (substring tmp 0 -1)))))
4465 (setq file (file-name-nondirectory name))
4466 (concat drive
4467 (and dir (concat "[" (if drive nil ".") dir "]"))
4468 file)))))
4469
4470 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1")
4471 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t)
4472
4473 (or (assq 'vms ange-ftp-fix-name-func-alist)
4474 (setq ange-ftp-fix-name-func-alist
4475 (cons '(vms . ange-ftp-fix-name-for-vms)
4476 ange-ftp-fix-name-func-alist)))
4477
4478 (or (memq 'vms ange-ftp-dumb-host-types)
4479 (setq ange-ftp-dumb-host-types
4480 (cons 'vms ange-ftp-dumb-host-types)))
4481
4482 ;; It is important that this function barf for directories for which we know
4483 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/".
4484 ;; This is because it saves an unnecessary FTP error, or possibly the listing
4485 ;; might succeed, but give erroneous info. This last case is particularly
4486 ;; likely for OS's (like MTS) for which we need to use a wildcard in order
4487 ;; to list a directory.
4488
4489 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing.
4490 (defun ange-ftp-fix-dir-name-for-vms (dir-name)
4491 ;; Should there be entries for .. -> [-] and . -> [] below. Don't
4492 ;; think so, because expand-filename should have already short-circuited
4493 ;; them.
4494 (cond ((string-equal dir-name "/")
4495 (error "Cannot get listing for fictitious \"/\" directory."))
4496 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name)
4497 (error "Cannot get listing for device."))
4498 ((ange-ftp-fix-name-for-vms dir-name))))
4499
4500 (or (assq 'vms ange-ftp-fix-dir-name-func-alist)
4501 (setq ange-ftp-fix-dir-name-func-alist
4502 (cons '(vms . ange-ftp-fix-dir-name-for-vms)
4503 ange-ftp-fix-dir-name-func-alist)))
4504
4505 (defvar ange-ftp-vms-host-regexp nil)
4506
4507 ;; Return non-nil if HOST is running VMS.
4508 (defun ange-ftp-vms-host (host)
4509 (and ange-ftp-vms-host-regexp
4510 (save-match-data
4511 (string-match ange-ftp-vms-host-regexp host))))
4512
4513 ;; Because some VMS ftp servers convert filenames to lower case
4514 ;; we allow a-z in the filename regexp. I'm not too happy about this.
4515
4516 (defconst ange-ftp-vms-filename-regexp
4517 (concat
4518 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\."
4519 "[-_A-Za-z0-9$]*;+[0-9]*\\)")
4520 "Regular expression to match for a valid VMS file name in Dired buffer.
4521 Stupid freaking bug! Position of _ and $ shouldn't matter but they do.
4522 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX
4523 Other orders of $ and _ seem to all work just fine.")
4524
4525 ;; These parsing functions are as general as possible because the syntax
4526 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that
4527 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the
4528 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing
4529 ;; from vms.weird.net, then too bad.
4530
4531 ;; Extract the next filename from a VMS dired-like listing.
4532 (defun ange-ftp-parse-vms-filename ()
4533 (if (re-search-forward
4534 ange-ftp-vms-filename-regexp
4535 nil t)
4536 (buffer-substring (match-beginning 0) (match-end 0))))
4537
4538 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir
4539 ;; format, and return a hashtable as the result.
4540 (defun ange-ftp-parse-vms-listing ()
4541 (let ((tbl (ange-ftp-make-hashtable))
4542 file)
4543 (goto-char (point-min))
4544 (save-match-data
4545 (while (setq file (ange-ftp-parse-vms-filename))
4546 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file)
4547 ;; deal with directories
4548 (ange-ftp-put-hash-entry
4549 (substring file 0 (match-beginning 0)) t tbl)
4550 (ange-ftp-put-hash-entry file nil tbl)
4551 (if (string-match ";[0-9]+$" file) ; deal with extension
4552 ;; sans extension
4553 (ange-ftp-put-hash-entry
4554 (substring file 0 (match-beginning 0)) nil tbl)))
4555 (forward-line 1))
4556 ;; Would like to look for a "Total" line, or a "Directory" line to
4557 ;; make sure that the listing isn't complete garbage before putting
4558 ;; in "." and "..", but we can't even count on all VAX's giving us
4559 ;; either of these.
4560 (ange-ftp-put-hash-entry "." t tbl)
4561 (ange-ftp-put-hash-entry ".." t tbl))
4562 tbl))
4563
4564 (or (assq 'vms ange-ftp-parse-list-func-alist)
4565 (setq ange-ftp-parse-list-func-alist
4566 (cons '(vms . ange-ftp-parse-vms-listing)
4567 ange-ftp-parse-list-func-alist)))
4568
4569 ;; This version only deletes file entries which have
4570 ;; explicit version numbers, because that is all VMS allows.
4571
4572 ;; Can the following two functions be speeded up using file
4573 ;; completion functions?
4574
4575 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p)
4576 (if dir-p
4577 (ange-ftp-internal-delete-file-entry name t)
4578 (save-match-data
4579 (let ((file (ange-ftp-get-file-part name)))
4580 (if (string-match ";[0-9]+$" file)
4581 ;; In VMS you can't delete a file without an explicit
4582 ;; version number, or wild-card (e.g. FOO;*)
4583 ;; For now, we give up on wildcards.
4584 (let ((files (ange-ftp-get-hash-entry
4585 (file-name-directory name)
4586 ange-ftp-files-hashtable)))
4587 (if files
4588 (let* ((root (substring file 0
4589 (match-beginning 0)))
4590 (regexp (concat "^"
4591 (regexp-quote root)
4592 ";[0-9]+$"))
4593 versions)
4594 (ange-ftp-del-hash-entry file files)
4595 ;; Now we need to check if there are any
4596 ;; versions left. If not, then delete the
4597 ;; root entry.
4598 (mapatoms
4599 '(lambda (sym)
4600 (and (string-match regexp (get sym 'key))
4601 (setq versions t)))
4602 files)
4603 (or versions
4604 (ange-ftp-del-hash-entry root files))))))))))
4605
4606 (or (assq 'vms ange-ftp-delete-file-entry-alist)
4607 (setq ange-ftp-delete-file-entry-alist
4608 (cons '(vms . ange-ftp-vms-delete-file-entry)
4609 ange-ftp-delete-file-entry-alist)))
4610
4611 (defun ange-ftp-vms-add-file-entry (name &optional dir-p)
4612 (if dir-p
4613 (ange-ftp-internal-add-file-entry name t)
4614 (let ((files (ange-ftp-get-hash-entry
4615 (file-name-directory name)
4616 ange-ftp-files-hashtable)))
4617 (if files
4618 (let ((file (ange-ftp-get-file-part name)))
4619 (save-match-data
4620 (if (string-match ";[0-9]+$" file)
4621 (ange-ftp-put-hash-entry
4622 (substring file 0 (match-beginning 0))
4623 nil files)
4624 ;; Need to figure out what version of the file
4625 ;; is being added.
4626 (let ((regexp (concat "^"
4627 (regexp-quote file)
4628 ";\\([0-9]+\\)$"))
4629 (version 0))
4630 (mapatoms
4631 '(lambda (sym)
4632 (let ((name (get sym 'key)))
4633 (and (string-match regexp name)
4634 (setq version
4635 (max version
4636 (string-to-int
4637 (substring name
4638 (match-beginning 1)
4639 (match-end 1))))))))
4640 files)
4641 (setq version (1+ version))
4642 (ange-ftp-put-hash-entry
4643 (concat file ";" (int-to-string version))
4644 nil files))))
4645 (ange-ftp-put-hash-entry file nil files))))))
4646
4647 (or (assq 'vms ange-ftp-add-file-entry-alist)
4648 (setq ange-ftp-add-file-entry-alist
4649 (cons '(vms . ange-ftp-vms-add-file-entry)
4650 ange-ftp-add-file-entry-alist)))
4651
4652
4653 (defun ange-ftp-add-vms-host (host)
4654 "Mark HOST as the name of a machine running VMS."
4655 (interactive
4656 (list (read-string "Host: "
4657 (let ((name (or (buffer-file-name) default-directory)))
4658 (and name (car (ange-ftp-ftp-name name)))))))
4659 (if (not (ange-ftp-vms-host host))
4660 (setq ange-ftp-vms-host-regexp
4661 (concat "^" (regexp-quote host) "$"
4662 (and ange-ftp-vms-host-regexp "\\|")
4663 ange-ftp-vms-host-regexp)
4664 ange-ftp-host-cache nil)))
4665
4666
4667 (defun ange-ftp-vms-file-name-as-directory (name)
4668 (save-match-data
4669 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name)
4670 (setq name (substring name 0 (match-beginning 0))))
4671 (ange-ftp-real-file-name-as-directory name)))
4672
4673 (or (assq 'vms ange-ftp-file-name-as-directory-alist)
4674 (setq ange-ftp-file-name-as-directory-alist
4675 (cons '(vms . ange-ftp-vms-file-name-as-directory)
4676 ange-ftp-file-name-as-directory-alist)))
4677
4678 ;;; Tree dired support:
4679
4680 ;; For this code I have borrowed liberally from Sebastian Kremer's
4681 ;; dired-vms.el
4682
4683
4684 ;;;; These regexps must be anchored to beginning of line.
4685 ;;;; Beware that the ftpd may put the device in front of the filename.
4686
4687 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]"
4688 ;; "Regular expression to use to search for VMS executable files.")
4689
4690 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]"
4691 ;; "Regular expression to use to search for VMS directories.")
4692
4693 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist)
4694 ;; (setq ange-ftp-dired-re-exe-alist
4695 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe)
4696 ;; ange-ftp-dired-re-exe-alist)))
4697
4698 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist)
4699 ;; (setq ange-ftp-dired-re-dir-alist
4700 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir)
4701 ;; ange-ftp-dired-re-dir-alist)))
4702
4703 ;;(defun ange-ftp-dired-vms-insert-headerline (dir)
4704 ;; ;; VMS inserts a headerline. I would prefer the headerline
4705 ;; ;; to be in ange-ftp format. This version tries to
4706 ;; ;; be careful, because we can't count on a headerline
4707 ;; ;; over ftp, and we wouldn't want to delete anything
4708 ;; ;; important.
4709 ;; (save-excursion
4710 ;; (if (looking-at "^ wildcard ")
4711 ;; (forward-line 1))
4712 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n")
4713 ;; (delete-region (point) (match-end 0))))
4714 ;; (ange-ftp-real-dired-insert-headerline dir))
4715
4716 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist)
4717 ;; (setq ange-ftp-dired-insert-headerline-alist
4718 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline)
4719 ;; ange-ftp-dired-insert-headerline-alist)))
4720
4721 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol)
4722 ;; "In dired, move to first char of filename on this line.
4723 ;;Returns position (point) or nil if no filename on this line."
4724 ;; ;; This is the VMS version.
4725 ;; (let (case-fold-search)
4726 ;; (or eol (setq eol (progn (end-of-line) (point))))
4727 ;; (beginning-of-line)
4728 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t)
4729 ;; (goto-char (match-beginning 1))
4730 ;; (if raise-error
4731 ;; (error "No file on this line")
4732 ;; nil))))
4733
4734 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist)
4735 ;; (setq ange-ftp-dired-move-to-filename-alist
4736 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename)
4737 ;; ange-ftp-dired-move-to-filename-alist)))
4738
4739 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol)
4740 ;; ;; Assumes point is at beginning of filename.
4741 ;; ;; So, it should be called only after (dired-move-to-filename t).
4742 ;; ;; case-fold-search must be nil, at least for VMS.
4743 ;; ;; On failure, signals an error or returns nil.
4744 ;; ;; This is the VMS version.
4745 ;; (let (opoint hidden case-fold-search)
4746 ;; (setq opoint (point))
4747 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
4748 ;; (setq hidden (and selective-display
4749 ;; (save-excursion (search-forward "\r" eol t))))
4750 ;; (if hidden
4751 ;; nil
4752 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t))
4753 ;; (or no-error
4754 ;; (not (eq opoint (point)))
4755 ;; (error
4756 ;; (if hidden
4757 ;; (substitute-command-keys
4758 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
4759 ;; "No file on this line")))
4760 ;; (if (eq opoint (point))
4761 ;; nil
4762 ;; (point))))
4763
4764 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist)
4765 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4766 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename)
4767 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4768
4769 ;;(defun ange-ftp-dired-vms-between-files ()
4770 ;; (save-excursion
4771 ;; (beginning-of-line)
4772 ;; (or (equal (following-char) 10) ; newline
4773 ;; (equal (following-char) 9) ; tab
4774 ;; (progn (forward-char 2)
4775 ;; (or (looking-at "Total of")
4776 ;; (equal (following-char) 32))))))
4777
4778 ;;(or (assq 'vms ange-ftp-dired-between-files-alist)
4779 ;; (setq ange-ftp-dired-between-files-alist
4780 ;; (cons '(vms . ange-ftp-dired-vms-between-files)
4781 ;; ange-ftp-dired-between-files-alist)))
4782
4783 ;; Beware! In VMS filenames must be of the form "FILE.TYPE".
4784 ;; Therefore, we cannot just append a ".Z" to filenames for
4785 ;; compressed files. Instead, we turn "FILE.TYPE" into
4786 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do.
4787
4788 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse)
4789 (cond
4790 ((string-match "-Z;[0-9]+$" name)
4791 (list nil (substring name 0 (match-beginning 0))))
4792 ((string-match ";[0-9]+$" name)
4793 (list nil (substring name 0 (match-beginning 0))))
4794 ((string-match "-Z$" name)
4795 (list nil (substring name 0 -2)))
4796 (t
4797 (list t
4798 (if (string-match ";[0-9]+$" name)
4799 (concat (substring name 0 (match-beginning 0))
4800 "-Z")
4801 (concat name "-Z"))))))
4802
4803 (or (assq 'vms ange-ftp-make-compressed-filename-alist)
4804 (setq ange-ftp-make-compressed-filename-alist
4805 (cons '(vms . ange-ftp-vms-make-compressed-filename)
4806 ange-ftp-make-compressed-filename-alist)))
4807
4808 ;;;; When the filename is too long, VMS will use two lines to list a file
4809 ;;;; (damn them!) This will confuse dired. To solve this, need to convince
4810 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of
4811 ;;;; (forward-line 1). This would require a number of changes to dired.el.
4812 ;;;; If dired gets confused, revert-buffer will fix it.
4813
4814 ;;(defun ange-ftp-dired-vms-ls-trim ()
4815 ;; (goto-char (point-min))
4816 ;; (let ((case-fold-search nil))
4817 ;; (re-search-forward ange-ftp-vms-filename-regexp))
4818 ;; (beginning-of-line)
4819 ;; (delete-region (point-min) (point))
4820 ;; (forward-line 1)
4821 ;; (delete-region (point) (point-max)))
4822
4823
4824 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist)
4825 ;; (setq ange-ftp-dired-ls-trim-alist
4826 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim)
4827 ;; ange-ftp-dired-ls-trim-alist)))
4828
4829 (defun ange-ftp-vms-sans-version (name)
4830 (save-match-data
4831 (if (string-match ";[0-9]+$" name)
4832 (substring name 0 (match-beginning 0))
4833 name)))
4834
4835 (or (assq 'vms ange-ftp-sans-version-alist)
4836 (setq ange-ftp-sans-version-alist
4837 (cons '(vms . ange-ftp-vms-sans-version)
4838 ange-ftp-sans-version-alist)))
4839
4840 ;;(defvar ange-ftp-file-version-alist)
4841
4842 ;;;;; The vms version of clean-directory has 2 more optional args
4843 ;;;;; than the usual dired version. This is so that it can be used by
4844 ;;;;; ange-ftp-dired-vms-flag-backup-files.
4845
4846 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg)
4847 ;; "Flag numerical backups for deletion.
4848 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
4849 ;;Positive prefix arg KEEP overrides `dired-kept-versions';
4850 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
4851
4852 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files]
4853 ;;with a prefix argument."
4854 ;;; (interactive "P") ; Never actually called interactively.
4855 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions)))
4856 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
4857 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS!
4858 ;; ;; This could wipe ALL copies of the file.
4859 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep)))
4860 ;; (action (or msg "Cleaning"))
4861 ;; (ange-ftp-trample-marker (or marker dired-del-marker))
4862 ;; (ange-ftp-file-version-alist ()))
4863 ;; (message (concat action
4864 ;; " numerical backups (keeping %d late, %d old)...")
4865 ;; late-retention early-retention)
4866 ;; ;; Look at each file.
4867 ;; ;; If the file has numeric backup versions,
4868 ;; ;; put on ange-ftp-file-version-alist an element of the form
4869 ;; ;; (FILENAME . VERSION-NUMBER-LIST)
4870 ;; (dired-map-dired-file-lines (function
4871 ;; ange-ftp-dired-vms-collect-file-versions))
4872 ;; ;; Sort each VERSION-NUMBER-LIST,
4873 ;; ;; and remove the versions not to be deleted.
4874 ;; (let ((fval ange-ftp-file-version-alist))
4875 ;; (while fval
4876 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
4877 ;; (v-count (length sorted-v-list)))
4878 ;; (if (> v-count (+ early-retention late-retention))
4879 ;; (rplacd (nthcdr early-retention sorted-v-list)
4880 ;; (nthcdr (- v-count late-retention)
4881 ;; sorted-v-list)))
4882 ;; (rplacd (car fval)
4883 ;; (cdr sorted-v-list)))
4884 ;; (setq fval (cdr fval))))
4885 ;; ;; Look at each file. If it is a numeric backup file,
4886 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
4887 ;; (dired-map-dired-file-lines
4888 ;; (function
4889 ;; ange-ftp-dired-vms-trample-file-versions mark))
4890 ;; (message (concat action " numerical backups...done"))))
4891
4892 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist)
4893 ;; (setq ange-ftp-dired-clean-directory-alist
4894 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory)
4895 ;; ange-ftp-dired-clean-directory-alist)))
4896
4897 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn)
4898 ;; ;; "If it looks like file FN has versions, return a list of the versions.
4899 ;; ;;That is a list of strings which are file names.
4900 ;; ;;The caller may want to flag some of these files for deletion."
4901 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn))))
4902 ;; (if (string-match ";[0-9]+$" name)
4903 ;; (let* ((name (substring name 0 (match-beginning 0)))
4904 ;; (fn (ange-ftp-replace-name-component fn name)))
4905 ;; (if (not (assq fn ange-ftp-file-version-alist))
4906 ;; (let* ((base-versions
4907 ;; (concat (file-name-nondirectory name) ";"))
4908 ;; (bv-length (length base-versions))
4909 ;; (possibilities (file-name-all-completions
4910 ;; base-versions
4911 ;; (file-name-directory fn)))
4912 ;; (versions (mapcar
4913 ;; '(lambda (arg)
4914 ;; (if (and (string-match
4915 ;; "[0-9]+$" arg bv-length)
4916 ;; (= (match-beginning 0) bv-length))
4917 ;; (string-to-int (substring arg bv-length))
4918 ;; 0))
4919 ;; possibilities)))
4920 ;; (if versions
4921 ;; (setq
4922 ;; ange-ftp-file-version-alist
4923 ;; (cons (cons fn versions)
4924 ;; ange-ftp-file-version-alist)))))))))
4925
4926 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn)
4927 ;; (let* ((start-vn (string-match ";[0-9]+$" fn))
4928 ;; base-version-list)
4929 ;; (and start-vn
4930 ;; (setq base-version-list ; there was a base version to which
4931 ;; (assoc (substring fn 0 start-vn) ; this looks like a
4932 ;; ange-ftp-file-version-alist)) ; subversion
4933 ;; (not (memq (string-to-int (substring fn (1+ start-vn)))
4934 ;; base-version-list)) ; this one doesn't make the cut
4935 ;; (progn (beginning-of-line)
4936 ;; (delete-char 1)
4937 ;; (insert ange-ftp-trample-marker)))))
4938
4939 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p)
4940 ;; (let ((dired-kept-versions 1)
4941 ;; (kept-old-versions 0)
4942 ;; marker msg)
4943 ;; (if unflag-p
4944 ;; (setq marker ?\040 msg "Unflagging")
4945 ;; (setq marker dired-del-marker msg "Cleaning"))
4946 ;; (ange-ftp-dired-vms-clean-directory nil marker msg)))
4947
4948 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist)
4949 ;; (setq ange-ftp-dired-flag-backup-files-alist
4950 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files)
4951 ;; ange-ftp-dired-flag-backup-files-alist)))
4952
4953 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches)
4954 ;; (let ((file (dired-get-filename 'no-dir))
4955 ;; bak)
4956 ;; (if (and (string-match ";[0-9]+$" file)
4957 ;; ;; Find most recent previous version.
4958 ;; (let ((root (substring file 0 (match-beginning 0)))
4959 ;; (ver
4960 ;; (string-to-int (substring file (1+ (match-beginning 0)))))
4961 ;; found)
4962 ;; (setq ver (1- ver))
4963 ;; (while (and (> ver 0) (not found))
4964 ;; (setq bak (concat root ";" (int-to-string ver)))
4965 ;; (and (file-exists-p bak) (setq found t))
4966 ;; (setq ver (1- ver)))
4967 ;; found))
4968 ;; (if switches
4969 ;; (diff (expand-file-name bak) (expand-file-name file) switches)
4970 ;; (diff (expand-file-name bak) (expand-file-name file)))
4971 ;; (error "No previous version found for %s" file))))
4972
4973 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist)
4974 ;; (setq ange-ftp-dired-backup-diff-alist
4975 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff)
4976 ;; ange-ftp-dired-backup-diff-alist)))
4977
4978 \f
4979 ;;;; ------------------------------------------------------------
4980 ;;;; MTS support
4981 ;;;; ------------------------------------------------------------
4982
4983
4984 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from
4985 ;; MTS to UNIX-ish.
4986 (defun ange-ftp-fix-name-for-mts (name &optional reverse)
4987 (save-match-data
4988 (if reverse
4989 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name)
4990 (let (acct file)
4991 (if (match-beginning 1)
4992 (setq acct (substring name 0 (match-end 1))))
4993 (if (match-beginning 2)
4994 (setq file (substring name
4995 (match-beginning 2) (match-end 2))))
4996 (concat (and acct (concat "/" acct "/"))
4997 file))
4998 (error "name %s didn't match" name))
4999 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name)
5000 (concat (substring name 1 (match-end 1))
5001 (substring name (match-beginning 2) (match-end 2)))
5002 ;; Let's hope that mts will recognize it anyway.
5003 name))))
5004
5005 (or (assq 'mts ange-ftp-fix-name-func-alist)
5006 (setq ange-ftp-fix-name-func-alist
5007 (cons '(mts . ange-ftp-fix-name-for-mts)
5008 ange-ftp-fix-name-func-alist)))
5009
5010 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing.
5011 ;; Remember that there are no directories in MTS.
5012 (defun ange-ftp-fix-dir-name-for-mts (dir-name)
5013 (if (string-equal dir-name "/")
5014 (error "Cannot get listing for fictitious \"/\" directory.")
5015 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name)))
5016 (cond
5017 ((string-equal dir-name "")
5018 "?")
5019 ((string-match ":$" dir-name)
5020 (concat dir-name "?"))
5021 (dir-name))))) ; It's just a single file.
5022
5023 (or (assq 'mts ange-ftp-fix-dir-name-func-alist)
5024 (setq ange-ftp-fix-dir-name-func-alist
5025 (cons '(mts . ange-ftp-fix-dir-name-for-mts)
5026 ange-ftp-fix-dir-name-func-alist)))
5027
5028 (or (memq 'mts ange-ftp-dumb-host-types)
5029 (setq ange-ftp-dumb-host-types
5030 (cons 'mts ange-ftp-dumb-host-types)))
5031
5032 (defvar ange-ftp-mts-host-regexp nil)
5033
5034 ;; Return non-nil if HOST is running MTS.
5035 (defun ange-ftp-mts-host (host)
5036 (and ange-ftp-mts-host-regexp
5037 (save-match-data
5038 (string-match ange-ftp-mts-host-regexp host))))
5039
5040 ;; Parse the current buffer which is assumed to be in mts ftp dir format.
5041 (defun ange-ftp-parse-mts-listing ()
5042 (let ((tbl (ange-ftp-make-hashtable)))
5043 (goto-char (point-min))
5044 (save-match-data
5045 (while (re-search-forward ange-ftp-date-regexp nil t)
5046 (end-of-line)
5047 (skip-chars-backward " ")
5048 (let ((end (point)))
5049 (skip-chars-backward "-A-Z0-9_.!")
5050 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl))
5051 (forward-line 1)))
5052 ;; Don't need to bother with ..
5053 (ange-ftp-put-hash-entry "." t tbl)
5054 tbl))
5055
5056 (or (assq 'mts ange-ftp-parse-list-func-alist)
5057 (setq ange-ftp-parse-list-func-alist
5058 (cons '(mts . ange-ftp-parse-mts-listing)
5059 ange-ftp-parse-list-func-alist)))
5060
5061 (defun ange-ftp-add-mts-host (host)
5062 "Mark HOST as the name of a machine running MTS."
5063 (interactive
5064 (list (read-string "Host: "
5065 (let ((name (or (buffer-file-name) default-directory)))
5066 (and name (car (ange-ftp-ftp-name name)))))))
5067 (if (not (ange-ftp-mts-host host))
5068 (setq ange-ftp-mts-host-regexp
5069 (concat "^" (regexp-quote host) "$"
5070 (and ange-ftp-mts-host-regexp "\\|")
5071 ange-ftp-mts-host-regexp)
5072 ange-ftp-host-cache nil)))
5073
5074 ;;; Tree dired support:
5075
5076 ;;;; There aren't too many systems left that use MTS. This dired support will
5077 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems
5078 ;;;; implement ftp in the same way. If not, it might be necessary to make the
5079 ;;;; following more flexible.
5080
5081 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol)
5082 ;; "In dired, move to first char of filename on this line.
5083 ;;Returns position (point) or nil if no filename on this line."
5084 ;; ;; This is the MTS version.
5085 ;; (or eol (setq eol (progn (end-of-line) (point))))
5086 ;; (beginning-of-line)
5087 ;; (if (re-search-forward
5088 ;; ange-ftp-date-regexp eol t)
5089 ;; (progn
5090 ;; (skip-chars-forward " ") ; Eat blanks after date
5091 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year
5092 ;; (skip-chars-forward " " eol) ; one space before filename
5093 ;; ;; When listing an account other than the users own account it appends
5094 ;; ;; ACCT: to the beginning of the filename. Skip over this.
5095 ;; (and (looking-at "[A-Z0-9_.]+:")
5096 ;; (goto-char (match-end 0)))
5097 ;; (point))
5098 ;; (if raise-error
5099 ;; (error "No file on this line")
5100 ;; nil)))
5101
5102 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist)
5103 ;; (setq ange-ftp-dired-move-to-filename-alist
5104 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename)
5105 ;; ange-ftp-dired-move-to-filename-alist)))
5106
5107 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol)
5108 ;; ;; Assumes point is at beginning of filename.
5109 ;; ;; So, it should be called only after (dired-move-to-filename t).
5110 ;; ;; On failure, signals an error or returns nil.
5111 ;; ;; This is the MTS version.
5112 ;; (let (opoint hidden case-fold-search)
5113 ;; (setq opoint (point)
5114 ;; eol (save-excursion (end-of-line) (point))
5115 ;; hidden (and selective-display
5116 ;; (save-excursion (search-forward "\r" eol t))))
5117 ;; (if hidden
5118 ;; nil
5119 ;; (skip-chars-forward "-A-Z0-9._!" eol))
5120 ;; (or no-error
5121 ;; (not (eq opoint (point)))
5122 ;; (error
5123 ;; (if hidden
5124 ;; (substitute-command-keys
5125 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5126 ;; "No file on this line")))
5127 ;; (if (eq opoint (point))
5128 ;; nil
5129 ;; (point))))
5130
5131 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist)
5132 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5133 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename)
5134 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5135 \f
5136 ;;;; ------------------------------------------------------------
5137 ;;;; CMS support
5138 ;;;; ------------------------------------------------------------
5139
5140 ;; Since CMS doesn't have any full file name syntax, we have to fudge
5141 ;; things with cd's. We actually send too many cd's, but it's dangerous
5142 ;; to try to remember the current minidisk, because if the connection
5143 ;; is closed and needs to be reopened, we will find ourselves back in
5144 ;; the default minidisk. This is fairly likely since CMS ftp servers
5145 ;; usually close the connection after 5 minutes of inactivity.
5146
5147 ;; Have I got the filename character set right?
5148
5149 (defun ange-ftp-fix-name-for-cms (name &optional reverse)
5150 (save-match-data
5151 (if reverse
5152 ;; Since we only convert output from a pwd in this direction,
5153 ;; we'll assume that it's a minidisk, and make it into a
5154 ;; directory file name. Note that the expand-dir-hashtable
5155 ;; stores directories without the trailing /. Is this
5156 ;; consistent?
5157 (concat "/" name)
5158 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$"
5159 name)
5160 (let ((minidisk (substring name 1 (match-end 1))))
5161 (if (match-beginning 2)
5162 (let ((file (substring name (match-beginning 2)
5163 (match-end 2)))
5164 (cmd (concat "cd " minidisk))
5165
5166 ;; Note that host and user are bound in the call
5167 ;; to ange-ftp-send-cmd
5168 (proc (ange-ftp-get-process ange-ftp-this-host
5169 ange-ftp-this-user)))
5170
5171 ;; Must use ange-ftp-raw-send-cmd here to avoid
5172 ;; an infinite loop.
5173 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg))
5174 file
5175 ;; failed... try ONCE more.
5176 (setq proc (ange-ftp-get-process ange-ftp-this-host
5177 ange-ftp-this-user))
5178 (let ((result (ange-ftp-raw-send-cmd proc cmd
5179 ange-ftp-this-msg)))
5180 (if (car result)
5181 file
5182 ;; failed. give up.
5183 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5184 (format "cd to minidisk %s failed: %s"
5185 minidisk (cdr result)))))))
5186 ;; return the minidisk
5187 minidisk))
5188 (error "Invalid CMS filename")))))
5189
5190 (or (assq 'cms ange-ftp-fix-name-func-alist)
5191 (setq ange-ftp-fix-name-func-alist
5192 (cons '(cms . ange-ftp-fix-name-for-cms)
5193 ange-ftp-fix-name-func-alist)))
5194
5195 (or (memq 'cms ange-ftp-dumb-host-types)
5196 (setq ange-ftp-dumb-host-types
5197 (cons 'cms ange-ftp-dumb-host-types)))
5198
5199 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing.
5200 (defun ange-ftp-fix-dir-name-for-cms (dir-name)
5201 (cond
5202 ((string-equal "/" dir-name)
5203 (error "Cannot get listing for fictitious \"/\" directory."))
5204 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name)
5205 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1)))
5206 ;; host and user are bound in the call to ange-ftp-send-cmd
5207 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user))
5208 (cmd (concat "cd " minidisk))
5209 (file (if (match-beginning 2)
5210 ;; it's a single file
5211 (substring dir-name (match-beginning 2)
5212 (match-end 2))
5213 ;; use the wild-card
5214 "*")))
5215 (if (car (ange-ftp-raw-send-cmd proc cmd))
5216 file
5217 ;; try again...
5218 (setq proc (ange-ftp-get-process ange-ftp-this-host
5219 ange-ftp-this-user))
5220 (let ((result (ange-ftp-raw-send-cmd proc cmd)))
5221 (if (car result)
5222 file
5223 ;; give up
5224 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5225 (format "cd to minidisk %s failed: "
5226 minidisk (cdr result))))))))
5227 (t (error "Invalid CMS file name"))))
5228
5229 (or (assq 'cms ange-ftp-fix-dir-name-func-alist)
5230 (setq ange-ftp-fix-dir-name-func-alist
5231 (cons '(cms . ange-ftp-fix-dir-name-for-cms)
5232 ange-ftp-fix-dir-name-func-alist)))
5233
5234 (defvar ange-ftp-cms-host-regexp nil
5235 "Regular expression to match hosts running the CMS operating system.")
5236
5237 ;; Return non-nil if HOST is running CMS.
5238 (defun ange-ftp-cms-host (host)
5239 (and ange-ftp-cms-host-regexp
5240 (save-match-data
5241 (string-match ange-ftp-cms-host-regexp host))))
5242
5243 (defun ange-ftp-add-cms-host (host)
5244 "Mark HOST as the name of a CMS host."
5245 (interactive
5246 (list (read-string "Host: "
5247 (let ((name (or (buffer-file-name) default-directory)))
5248 (and name (car (ange-ftp-ftp-name name)))))))
5249 (if (not (ange-ftp-cms-host host))
5250 (setq ange-ftp-cms-host-regexp
5251 (concat "^" (regexp-quote host) "$"
5252 (and ange-ftp-cms-host-regexp "\\|")
5253 ange-ftp-cms-host-regexp)
5254 ange-ftp-host-cache nil)))
5255
5256 (defun ange-ftp-parse-cms-listing ()
5257 ;; Parse the current buffer which is assumed to be a CMS directory listing.
5258 ;; If we succeed in getting a listing, then we will assume that the minidisk
5259 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work
5260 ;; because ange-ftp doesn't know that the root hashtable has only part of
5261 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't
5262 ;; exist. It would be nice if completion worked for minidisks, as we
5263 ;; discover them.
5264 ; (let* ((dir-file (directory-file-name file))
5265 ; (root (file-name-directory dir-file))
5266 ; (minidisk (ange-ftp-get-file-part dir-file))
5267 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable)))
5268 ; (if root-tbl
5269 ; (ange-ftp-put-hash-entry minidisk t root-tbl)
5270 ; (setq root-tbl (ange-ftp-make-hashtable))
5271 ; (ange-ftp-put-hash-entry minidisk t root-tbl)
5272 ; (ange-ftp-put-hash-entry "." t root-tbl)
5273 ; (ange-ftp-set-files root root-tbl)))
5274 ;; Now do the usual parsing
5275 (let ((tbl (ange-ftp-make-hashtable)))
5276 (goto-char (point-min))
5277 (save-match-data
5278 (while
5279 (re-search-forward
5280 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t)
5281 (ange-ftp-put-hash-entry
5282 (concat (buffer-substring (match-beginning 1)
5283 (match-end 1))
5284 "."
5285 (buffer-substring (match-beginning 2)
5286 (match-end 2)))
5287 nil tbl)
5288 (forward-line 1))
5289 (ange-ftp-put-hash-entry "." t tbl))
5290 tbl))
5291
5292 (or (assq 'cms ange-ftp-parse-list-func-alist)
5293 (setq ange-ftp-parse-list-func-alist
5294 (cons '(cms . ange-ftp-parse-cms-listing)
5295 ange-ftp-parse-list-func-alist)))
5296
5297 ;;;;; Tree dired support:
5298
5299 ;;(defconst ange-ftp-dired-cms-re-exe
5300 ;; "^. [-A-Z0-9$_]+ +EXEC "
5301 ;; "Regular expression to use to search for CMS executables.")
5302
5303 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist)
5304 ;; (setq ange-ftp-dired-re-exe-alist
5305 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe)
5306 ;; ange-ftp-dired-re-exe-alist)))
5307
5308
5309 ;;(defun ange-ftp-dired-cms-insert-headerline (dir)
5310 ;; ;; CMS has no total line, so we insert a blank line for
5311 ;; ;; aesthetics.
5312 ;; (insert "\n")
5313 ;; (forward-char -1)
5314 ;; (ange-ftp-real-dired-insert-headerline dir))
5315
5316 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist)
5317 ;; (setq ange-ftp-dired-insert-headerline-alist
5318 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline)
5319 ;; ange-ftp-dired-insert-headerline-alist)))
5320
5321 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol)
5322 ;; "In dired, move to the first char of filename on this line."
5323 ;; ;; This is the CMS version.
5324 ;; (or eol (setq eol (progn (end-of-line) (point))))
5325 ;; (let (case-fold-search)
5326 ;; (beginning-of-line)
5327 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t)
5328 ;; (goto-char (1+ (match-beginning 0)))
5329 ;; (if raise-error
5330 ;; (error "No file on this line")
5331 ;; nil))))
5332
5333 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist)
5334 ;; (setq ange-ftp-dired-move-to-filename-alist
5335 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename)
5336 ;; ange-ftp-dired-move-to-filename-alist)))
5337
5338 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol)
5339 ;; ;; Assumes point is at beginning of filename.
5340 ;; ;; So, it should be called only after (dired-move-to-filename t).
5341 ;; ;; case-fold-search must be nil, at least for VMS.
5342 ;; ;; On failure, signals an error or returns nil.
5343 ;; ;; This is the CMS version.
5344 ;; (let ((opoint (point))
5345 ;; case-fold-search hidden)
5346 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
5347 ;; (setq hidden (and selective-display
5348 ;; (save-excursion
5349 ;; (search-forward "\r" eol t))))
5350 ;; (if hidden
5351 ;; (if no-error
5352 ;; nil
5353 ;; (error
5354 ;; (substitute-command-keys
5355 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
5356 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5357 ;; (skip-chars-forward " " eol)
5358 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5359 ;; (if (eq opoint (point))
5360 ;; (if no-error
5361 ;; nil
5362 ;; (error "No file on this line"))
5363 ;; (point)))))
5364
5365 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist)
5366 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5367 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename)
5368 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5369
5370 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse)
5371 (if (string-match "-Z$" name)
5372 (list nil (substring name 0 -2))
5373 (list t (concat name "-Z"))))
5374
5375 (or (assq 'cms ange-ftp-make-compressed-filename-alist)
5376 (setq ange-ftp-make-compressed-filename-alist
5377 (cons '(cms . ange-ftp-cms-make-compressed-filename)
5378 ange-ftp-make-compressed-filename-alist)))
5379
5380 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep)
5381 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep)))
5382 ;; (and name
5383 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name)
5384 ;; (concat (substring name 0 (match-end 1))
5385 ;; "."
5386 ;; (substring name (match-beginning 2) (match-end 2)))
5387 ;; name))))
5388
5389 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist)
5390 ;; (setq ange-ftp-dired-get-filename-alist
5391 ;; (cons '(cms . ange-ftp-dired-cms-get-filename)
5392 ;; ange-ftp-dired-get-filename-alist)))
5393 \f
5394 ;;;; ------------------------------------------------------------
5395 ;;;; Finally provide package.
5396 ;;;; ------------------------------------------------------------
5397
5398 (provide 'ange-ftp)
5399
5400 ;;; ange-ftp.el ends here