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