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