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)
8 ;;; This program is free software; you can redistribute it and/or modify
9 ;;; it under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 2, or (at your option)
11 ;;; any later version.
13 ;;; This program is distributed in the hope that it will be useful,
14 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
18 ;;; A copy of the GNU General Public License can be obtained from this
19 ;;; program's author (send electronic mail to ange@hplb.hpl.hp.com) or from
20 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
25 ;;; This package attempts to make accessing files and directories using FTP
26 ;;; from within GNU Emacs as simple and transparent as possible. A subset of
27 ;;; the common file-handling routines are extended to interact with FTP.
31 ;;; Some of the common GNU Emacs file-handling operations have been made
32 ;;; FTP-smart. If one of these routines is given a filename that matches
33 ;;; '/user@host:name' then it will spawn an FTP process connecting to machine
34 ;;; 'host' as account 'user' and perform its operation on the file 'name'.
36 ;;; For example: if find-file is given a filename of:
38 ;;; /ange@anorman:/tmp/notes
40 ;;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as
41 ;;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the
42 ;;; contents of that file as if it were on the local filesystem. If ange-ftp
43 ;;; needs a password to connect then it reads one in the echo area.
45 ;;; Extended filename syntax:
47 ;;; The default extended filename syntax is '/user@host:name', where the
48 ;;; 'user@' part may be omitted. This syntax can be customised to a certain
49 ;;; extent by changing ange-ftp-name-format. There are limitations.
51 ;;; If the user part is omitted then ange-ftp generates a default user
52 ;;; instead whose value depends on the variable ange-ftp-default-user.
56 ;;; A password is required for each host/user pair. Ange-ftp reads passwords
57 ;;; as needed. You can also specify a password with ange-ftp-set-passwd, or
58 ;;; in a *valid* ~/.netrc file.
60 ;;; Passwords for user "anonymous":
62 ;;; Passwords for the user "anonymous" (or "ftp") are handled
63 ;;; specially. The variable `ange-ftp-generate-anonymous-password'
64 ;;; controls what happens: if the value of this variable is a string,
65 ;;; then this is used as the password; if non-nil (the default), then
66 ;;; the value of `user-mail-address' is used; if nil then the user
67 ;;; is prompted for a password as normal.
69 ;;; "Dumb" UNIX hosts:
71 ;;; The FTP servers on some UNIX machines have problems if the 'ls' command is
74 ;;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to
75 ;;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note
76 ;;; that this change will take effect for the current GNU Emacs session only.
77 ;;; See below for a discussion of non-UNIX hosts. If a large number of
78 ;;; machines with similar hostnames have this problem then it is easier to set
79 ;;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp
80 ;;; is unable to automatically recognize dumb unix hosts.
82 ;;; File name completion:
84 ;;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts.
85 ;;; To do filename completion, ange-ftp needs a listing from the remote host.
86 ;;; Therefore, for very slow connections, it might not save any time.
90 ;;; When ange-ftp starts up an FTP process, it leaves it running for speed
91 ;;; purposes. Some FTP servers will close the connection after a period of
92 ;;; time, but ange-ftp should be able to quietly reconnect the next time that
93 ;;; the process is needed.
95 ;;; Killing the "*ftp user@host*" buffer also kills the ftp process.
96 ;;; This should not cause ange-ftp any grief.
98 ;;; Binary file transfers:
100 ;;; By default ange-ftp transfers files in ASCII mode. If a file being
101 ;;; transferred matches the value of ange-ftp-binary-file-name-regexp then
102 ;;; binary mode is used for that transfer.
104 ;;; Account passwords:
106 ;;; Some FTP servers require an additional password which is sent by the
107 ;;; ACCOUNT command. ange-ftp partially supports this by allowing the user to
108 ;;; specify an account password by either calling ange-ftp-set-account, or by
109 ;;; specifying an account token in the .netrc file. If the account password
110 ;;; is set by either of these methods then ange-ftp will issue an ACCOUNT
111 ;;; command upon starting the FTP process.
115 ;;; ange-ftp can be preloaded, but must be put in the site-init.el file and
116 ;;; not the site-load.el file in order for the documentation strings for the
117 ;;; functions being overloaded to be available.
121 ;;; Most ange-ftp commands that talk to the FTP process output a status
122 ;;; message on what they are doing. In addition, ange-ftp can take advantage
123 ;;; of the FTP client's HASH command to display the status of transferring
124 ;;; files and listing directories. See the documentation for the variables
125 ;;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and
126 ;;; ange-ftp-process-verbose for more details.
130 ;;; Sometimes it is necessary for the FTP process to be run on a different
131 ;;; machine than the machine running GNU Emacs. This can happen when the
132 ;;; local machine has restrictions on what hosts it can access.
134 ;;; ange-ftp has support for running the ftp process on a different (gateway)
135 ;;; machine. The way it works is as follows:
137 ;;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine
138 ;;; that doesn't have the access restrictions.
140 ;;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression
141 ;;; that matches hosts that can be contacted from running a local ftp
142 ;;; process, but fails to match hosts that can't be accessed locally. For
145 ;;; "\\.hp\\.com$\\|^[^.]*$"
147 ;;; will match all hosts that are in the .hp.com domain, or don't have an
148 ;;; explicit domain in their name, but will fail to match hosts with
149 ;;; explicit domains or that are specified by their ip address.
151 ;;; 3) Using NFS and symlinks, make sure that there is a shared directory with
152 ;;; the *same* name between the local machine and the gateway machine.
153 ;;; This directory is necessary for temporary files created by ange-ftp.
155 ;;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of
156 ;;; this directory plus an identifying filename prefix. For example:
158 ;;; "/nfs/hplose/ange/ange-ftp"
160 ;;; where /nfs/hplose/ange is a directory that is shared between the
161 ;;; gateway machine and the local machine.
163 ;;; The simplest way of getting a ftp process running on the gateway machine
164 ;;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you
165 ;;; can't do this for some reason such as security then points 7 onwards will
166 ;;; discuss an alternative approach.
168 ;;; 5) Set the variable ange-ftp-gateway-program to the name of the remote
169 ;;; shell process such as 'remsh' or 'rsh' if the default isn't correct.
171 ;;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it
172 ;;; isn't already. This tells ange-ftp that you are using a remote shell
173 ;;; rather than logging in using telnet or rlogin.
175 ;;; That should be all you need to allow ange-ftp to spawn a ftp process on
176 ;;; the gateway machine. If you have to use telnet or rlogin to get to the
177 ;;; gateway machine then follow the instructions below.
179 ;;; 7) Set the variable ange-ftp-gateway-program to the name of the program
180 ;;; that lets you log onto the gateway machine. This may be something like
181 ;;; telnet or rlogin.
183 ;;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular
184 ;;; expression that matches the prompt you get when you login to the
185 ;;; gateway machine. Be very specific here; this regexp must not match
186 ;;; *anything* in your login banner except this prompt.
187 ;;; shell-prompt-pattern is far too general as it appears to match some
188 ;;; login banners from Sun machines. For example:
192 ;;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let
193 ;;; ange-ftp know that it has to "hand-hold" the login to the gateway
196 ;;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command
197 ;;; that will put the pty connected to the gateway machine into a
198 ;;; no-echoing mode, and will strip off carriage-returns from output from
199 ;;; the gateway machine. For example:
201 ;;; "stty -onlcr -echo"
203 ;;; will work on HP-UX machines, whereas:
207 ;;; appears to work for some Sun machines.
209 ;;; That's all there is to it.
213 ;;; If you have a "smart" ftp program that allows you to issue commands like
214 ;;; "USER foo@bar" which do nice proxy things, then look at the variables
215 ;;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port.
217 ;;; Otherwise, if there is an alternate ftp program that implements proxy in
218 ;;; a transparent way (i.e. w/o specifying the proxy host), that will
219 ;;; connect you directly to the desired destination host:
220 ;;; Set ange-ftp-gateway-ftp-program-name to that program's name.
221 ;;; Set ange-ftp-local-host-regexp to a value as stated earlier on.
222 ;;; Leave ange-ftp-gateway-host set to nil.
223 ;;; Set ange-ftp-smart-gateway to t.
225 ;;; Tips for using ange-ftp:
227 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in
228 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t).
229 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that
230 ;;; there is a chance you might connect to an ULTRIX machine (such as
231 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have
232 ;;; the side effect that dired will have problems with symlinks whose names
233 ;;; end in an @. If you get yourself into this situation then editing
234 ;;; dired's ls-switches to remove "F", will temporarily fix things.
236 ;;; 2. If you know that you are connecting to a certain non-UNIX machine
237 ;;; frequently, and ange-ftp seems to be unable to guess its host-type,
238 ;;; then setting the appropriate host-type regexp
239 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or
240 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report
241 ;;; ange-ftp's inability to recognize the host-type as a bug.
243 ;;; 3. For slow connections, you might get "listing unreadable" error
244 ;;; messages, or get an empty buffer for a file that you know has something
245 ;;; in it. The solution is to increase the value of ange-ftp-retry-time.
246 ;;; Its default value is 5 which is plenty for reasonable connections.
247 ;;; However, for some transatlantic connections I set this to 20.
249 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by
250 ;;; copying the file to the local machine, compressing it there, and then
251 ;;; sending it back. Binary file transfers between machines of different
252 ;;; architectures can be a risky business. Test things out first on some
253 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by
254 ;;; moving them through the local machine. Again, be careful when doing
255 ;;; this with binary files on non-Unix machines.
257 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm
258 ;;; (list of dired commands for which confirmation is not asked). You
259 ;;; might want to reconsider your setting of this variable, because you
260 ;;; might want confirmation for more commands on remote direds than on
261 ;;; local direds. For example, I strongly recommend that you not include
262 ;;; compress and uncompress in this list. If there is enough demand it
263 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of
264 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST
265 ;;; is a list of commands for which confirmation would be suppressed. Then
266 ;;; remote dired listings would take their (buffer-local) value of
267 ;;; dired-no-confirm from this alist. Who votes for this?
269 ;;; ---------------------------------------------------------------------
270 ;;; Non-UNIX support:
271 ;;; ---------------------------------------------------------------------
275 ;;; Ange-ftp has full support for VMS hosts. It
276 ;;; should be able to automatically recognize any VMS machine. However, if it
277 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well,
278 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We
279 ;;; would be grateful if you would report any failures to automatically
280 ;;; recognize a VMS host as a bug.
284 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a
285 ;;; UNIX-y way. For example:
286 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1
287 ;;; would be entered as:
288 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1
289 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file:
290 ;;; [.CSV.POLICY]RULES.MEM
292 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM
294 ;;; A legal VMS filename is of the form: FILE.TYPE;##
295 ;;; where FILE can be up to 39 characters
296 ;;; TYPE can be up to 39 characters
297 ;;; ## is a version number (an integer between 1 and 32,767)
298 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $
299 ;;; $ cannot begin a filename, and - cannot be used as the first or last
303 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is.
304 ;;; Therefore, to access a VMS file, you must enter the filename with upper
306 ;;; 2. To access the latest version of file under VMS, you use the filename
307 ;;; without the ";" and version number. You should always edit the latest
308 ;;; version of a file. If you want to edit an earlier version, copy it to a
309 ;;; new file first. This has nothing to do with ange-ftp, but is simply
310 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is
311 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you
312 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find
313 ;;; that VMS will not allow you to save the file because it will refuse to
314 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and
315 ;;; attach the buffer to this file. To get out of this situation, M-x
316 ;;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to
317 ;;; latest version of the file. For this reason, in dired "f"
318 ;;; (dired-find-file), always loads the file sans version, whereas "v",
319 ;;; (dired-view-file), always loads the explicit version number. The
320 ;;; reasoning being that it reasonable to view old versions of a file, but
321 ;;; not to edit them.
322 ;;; 3. EMACS has a feature in which it does environment variable substitution
323 ;;; in filenames. Therefore, to enter a $ in a filename, you must quote it
328 ;;; Ange-ftp has full support for hosts running
329 ;;; the Michigan terminal system. It should be able to automatically
330 ;;; recognize any MTS machine. However, if it fails to do this, you can use
331 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable
332 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you
333 ;;; would report any failures to automatically recognize a MTS host as a bug.
337 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account
338 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be
340 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE
341 ;;; In other words, MTS accounts are treated as UNIX directories. Of course,
342 ;;; to access a file in another account, you must have access permission for
343 ;;; it. If FILE were in your own account, then you could enter it in a
344 ;;; relative name fashion as
345 ;;; /YYYY@mtsg.ubc.ca:FILE
346 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the
347 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you
348 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter
349 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX
354 ;;; Ange-ftp has full support for hosts running
355 ;;; CMS. It should be able to automatically recognize any CMS machine.
356 ;;; However, if it fails to do this, you can use the command
357 ;;; ange-ftp-add-cms-host. As well, you can set the variable
358 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you
359 ;;; would report any failures to automatically recognize a CMS host as a bug.
363 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are
364 ;;; treated as UNIX directories. For example to access the file READ.ME in
365 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter
366 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME
367 ;;; If *.301 is the default minidisk for this account, you could access
368 ;;; FOO.BAR on this minidisk as
369 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR
370 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be
371 ;;; up to 8 characters. Again, beware that CMS filenames are always upper
372 ;;; case, and hence must be entered as such.
375 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always
376 ;;; need an account password. To have ange-ftp send an account password,
377 ;;; you can either include it in your .netrc file, or use
378 ;;; ange-ftp-set-account.
379 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we
382 ;;; ------------------------------------------------------------------
384 ;;; ------------------------------------------------------------------
386 ;;; 1. Umask problems:
387 ;;; Be warned that files created by using ange-ftp will take account of the
388 ;;; umask of the ftp daemon process rather than the umask of the creating
389 ;;; user. This is particularly important when logging in as the root user.
390 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make
391 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I
392 ;;; suspect that there is something similar on other systems.
394 ;;; 2. Some combinations of FTP clients and servers break and get out of sync
395 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu
396 ;;; machines cause this problem for some FTP clients. Using
397 ;;; ange-ftp-kill-ftp-process can restart the ftp process, which
398 ;;; should get things back in synch.
400 ;;; 3. Ange-ftp does not check to make sure that when creating a new file,
401 ;;; you provide a valid filename for the remote operating system.
402 ;;; If you do not, then the remote FTP server will most likely
403 ;;; translate your filename in some way. This may cause ange-ftp to
404 ;;; get confused about what exactly is the name of the file. The
405 ;;; most common causes of this are using lower case filenames on systems
406 ;;; which support only upper case, and using filenames which are too
409 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons.
411 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs
412 ;;; for some reason creates a FTP process that only talks via pipes then
413 ;;; ange-ftp won't be getting the information it requires at the time that
414 ;;; it wants it since pipes flush at different times to pty's. One
415 ;;; disgusting way around this problem is to talk to the FTP process via
416 ;;; rlogin which does the 'right' things with pty's.
418 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't
419 ;;; worried about this too much. Eventually, we should have some caching
420 ;;; of the current minidisk.
422 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as
423 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd
424 ;;; to it. This is (understandably) beyond ange-ftp.
426 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky.
427 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp
428 ;;; will use binary mode for the copy. Between systems of different
429 ;;; architecture, this still may not be enough to guarantee the integrity
430 ;;; of binary files. Binary file transfers from VMS machines are
431 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be
432 ;;; an alist of OS type, regexp pairs?
434 ;;; 9. The code to do compression of files over ftp is not as careful as it
435 ;;; should be. It deletes the old remote version of the file, before
436 ;;; actually checking if the local to remote transfer of the compressed
437 ;;; file succeeds. Of course to delete the original version of the file
438 ;;; after transferring the compressed version back is also dangerous,
439 ;;; because some OS's have severe restrictions on the length of filenames,
440 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be
441 ;;; truncated. Then, ange-ftp would delete the only remaining version of
442 ;;; the file. Maybe ange-ftp should make backups when it compresses files
443 ;;; (of course, the backup "~" could also be truncated off, sigh...).
447 ;;; 10. If a dir listing is attempted for an empty directory on (at least
448 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and
449 ;;; I don't know how to get ange-ftp work to around it.
451 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames
452 ;;; containing spaces, but beware that the remote ftpd may not like them
455 ;;; 12. The dired support for non-Unix-like systems does not currently work.
456 ;;; It needs to be reimplemented by modifying the parse-...-listing
457 ;;; functions to convert the directory listing to ls -l format.
459 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks
460 ;;; with a trailing @ in a ls -alF listing. In order to account for this
461 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is
462 ;;; parsing a listing with the F switch. This will cause ange-ftp to
463 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name
464 ;;; ends in an @. ange-ftp will correct itself if you take F out of the
465 ;;; dired ls switches (C-u s will allow you to edit the switches). The
466 ;;; dired buffer will be automatically reverted, which will allow ange-ftp
467 ;;; to fix its files hashtable. A cookie to anyone who can think of a
468 ;;; fast, sure-fire way to recognize ULTRIX over ftp.
470 ;;; If you find any bugs or problems with this package, PLEASE either e-mail
471 ;;; the above author, or send a message to the ange-ftp-lovers mailing list
472 ;;; below. Ideas and constructive comments are especially welcome.
476 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All
477 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss
478 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to
479 ;;; the mailing list.
481 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the
482 ;;; list, please mail one of the following addresses:
484 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com
486 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com
488 ;;; Please don't forget the -request part.
490 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the
491 ;;; following addresses:
493 ;;; ange-ftp-lovers@anorman.hpl.hp.com
495 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com
497 ;;; Alternatively, there is a mailing list that only gets announcements of new
498 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be
499 ;;; subscribed to by e-mailing to the -request address as above. Please make
500 ;;; it clear in the request which mailing list you wish to join.
502 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp
504 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z
506 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z
508 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z
510 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under:
512 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/
514 ;;; -----------------------------------------------------------
515 ;;; Technical information on this package:
516 ;;; -----------------------------------------------------------
518 ;;; ange-ftp works by putting a handler on file-name-handler-alist
519 ;;; which is called by many primitives, and a few non-primitives,
520 ;;; whenever they see a file name of the appropriate sort.
522 ;;; Checklist for adding non-UNIX support for TYPE
524 ;;; The following functions may need TYPE versions:
525 ;;; (not all functions will be needed for every OS)
527 ;;; ange-ftp-fix-name-for-TYPE
528 ;;; ange-ftp-fix-dir-name-for-TYPE
529 ;;; ange-ftp-TYPE-host
530 ;;; ange-ftp-TYPE-add-host
531 ;;; ange-ftp-parse-TYPE-listing
532 ;;; ange-ftp-TYPE-delete-file-entry
533 ;;; ange-ftp-TYPE-add-file-entry
534 ;;; ange-ftp-TYPE-file-name-as-directory
535 ;;; ange-ftp-TYPE-make-compressed-filename
536 ;;; ange-ftp-TYPE-file-name-sans-versions
540 ;;; ange-ftp-TYPE-host-regexp
541 ;;; May need to add TYPE to ange-ftp-dumb-host-types
543 ;;; Check the following functions for OS dependent coding:
545 ;;; ange-ftp-host-type
546 ;;; ange-ftp-guess-host-type
547 ;;; ange-ftp-allow-child-lookup
549 ;;; Host type conventions:
551 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type
552 ;;; (mostly) follow the following conventions for remote host types. At
553 ;;; least, I think that future code should try to follow these conventions,
554 ;;; and the current code should eventually be made compliant.
556 ;;; nil = local host type, whatever that is (probably unix).
557 ;;; Think nil as in "not a remote host". This value is used by
558 ;;; ange-ftp-dired-host-type for local buffers.
560 ;;; t = a remote host of unknown type. Think t is in true, it's remote.
561 ;;; Currently, 'unix is used as the default remote host type.
562 ;;; Maybe we should use t.
564 ;;; 'type = a remote host of TYPE type.
566 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing
567 ;;; program called list. This is currently only used for Unix
568 ;;; dl (descriptive listings), when ange-ftp-dired-host-type
569 ;;; is set to 'unix:dl.
571 ;;; Bug report codes:
573 ;;; Because of their naive faith in this code, there are certain situations
574 ;;; which the writers of this program believe could never happen. However,
575 ;;; being realists they have put calls to `error' in the program at these
576 ;;; points. These errors provide a code, which is an integer, greater than 1.
577 ;;; To aid debugging. the error codes, and the functions in which they reside
578 ;;; are listed below.
580 ;;; 1: See ange-ftp-ls
583 ;;; -----------------------------------------------------------
585 ;;; -----------------------------------------------------------
587 ;;; Thanks to Roland McGrath for improving the filename syntax handling,
588 ;;; for suggesting many enhancements and for numerous cleanups to the code.
590 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways.
592 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and
593 ;;; dired / shell auto-loading.
595 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and
598 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support,
599 ;;; VOS support, and hostname completion.
601 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help
602 ;;; with file-name expansion, efficiency worries, stylistic concerns and many
605 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS,
606 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and
607 ;;; auto-recognition of the host type.
609 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp.
611 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping
612 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann,
613 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill
614 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay
615 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others
616 ;;; whose names I've forgotten who have helped to debug and fix problems with
623 ;;;; ------------------------------------------------------------
624 ;;;; User customization variables.
625 ;;;; ------------------------------------------------------------
627 (defvar ange-ftp-name-format
628 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" .
(3 2 4))
629 "*Format of a fully expanded remote file name.
630 This is a list of the form \(REGEXP HOST USER NAME\),
631 where REGEXP is a regular expression matching
632 the full remote name, and HOST, USER, and NAME are the numbers of
633 parenthesized expressions in REGEXP for the components (in that order).")
635 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of
636 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs.
637 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out.
639 (defvar ange-ftp-multi-msgs
640 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-"
641 "*Regular expression matching the start of a multiline ftp reply.")
643 (defvar ange-ftp-good-msgs
644 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark"
645 "*Regular expression matching ftp \"success\" messages.")
647 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT.
648 ;; Also CMS machines use a multiline 550- reply to say that you
649 ;; don't have write permission. ange-ftp gets into multi-line skip
650 ;; mode and hangs. Have it ignore 550- instead. It will then barf
651 ;; when it gets the 550 line, as it should.
653 (defvar ange-ftp-skip-msgs
654 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|"
655 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|"
656 "^Data connection \\|"
657 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye")
658 "*Regular expression matching ftp messages that can be ignored.")
660 (defvar ange-ftp-fatal-msgs
661 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|"
662 "^No control connection\\|unknown host\\|^lost connection")
663 "*Regular expression matching ftp messages that indicate serious errors.
664 These mean that the FTP process should (or already has) been killed.")
666 (defvar ange-ftp-gateway-fatal-msgs
667 "No route to host\\|Connection closed\\|No such host\\|Login incorrect"
668 "*Regular expression matching login failure messages from rlogin/telnet.")
670 (defvar ange-ftp-xfer-size-msgs
671 "^150 .* connection for .* (\\([0-9]+\\) bytes)"
672 "*Regular expression used to determine the number of bytes in a FTP transfer.")
674 (defvar ange-ftp-tmp-name-template
"/tmp/ange-ftp"
675 "*Template used to create temporary files.")
677 (defvar ange-ftp-gateway-tmp-name-template
"/tmp/ange-ftp"
678 "*Template used to create temporary files when ftp-ing through a gateway.
679 Files starting with this prefix need to be accessible from BOTH the local
680 machine and the gateway machine, and need to have the SAME name on both
681 machines, that is, /tmp is probably NOT what you want, since that is rarely
684 (defvar ange-ftp-netrc-filename
"~/.netrc"
685 "*File in .netrc format to search for passwords.")
687 (defvar ange-ftp-disable-netrc-security-check nil
688 "*If non-nil avoid checking permissions on the .netrc file.")
690 (defvar ange-ftp-default-user nil
691 "*User name to use when none is specied in a file name.
692 If nil, then the name under which the user is logged in is used.
693 If non-nil but not a string, the user is prompted for the name.")
695 (defvar ange-ftp-default-password nil
696 "*Password to use when the user is the same as ange-ftp-default-user.")
698 (defvar ange-ftp-default-account nil
699 "*Account password to use when the user is the same as ange-ftp-default-user.")
701 (defvar ange-ftp-generate-anonymous-password t
702 "*If t, use value of `user-mail-address' as password for anonymous ftp.
703 If a string, then use that string as the password.
704 If nil, prompt the user for a password.")
706 (defvar ange-ftp-dumb-unix-host-regexp nil
707 "*If non-nil, regexp matching hosts on which `dir' command lists directory.")
709 (defvar ange-ftp-binary-file-name-regexp
710 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|"
711 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|"
712 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|"
714 "*If a file matches this regexp then it is transferred in binary mode.")
716 (defvar ange-ftp-gateway-host nil
717 "*Name of host to use as gateway machine when local FTP isn't possible.")
719 (defvar ange-ftp-local-host-regexp
".*"
720 "*Regexp selecting hosts which can be reached directly with ftp.
721 For other hosts the FTP process is started on \`ange-ftp-gateway-host\'
722 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.")
724 (defvar ange-ftp-gateway-program-interactive nil
725 "*If non-nil then the gateway program should give a shell prompt.
726 Both telnet and rlogin do something like this.")
728 (defvar ange-ftp-gateway-program remote-shell-program
729 "*Name of program to spawn a shell on the gateway machine.
730 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See
731 also the gateway variable above.")
733 (defvar ange-ftp-gateway-prompt-pattern
"^[^#$%>;\n]*[#$%>;] *"
734 "*Regexp matching prompt after complete login sequence on gateway machine.
735 A match for this means the shell is now awaiting input. Make this regexp as
736 strict as possible; it shouldn't match *anything* at all except the user's
737 initial prompt. The above string will fail under most SUN-3's since it
738 matches the login banner.")
740 (defvar ange-ftp-gateway-setup-term-command
741 (if (eq system-type
'hpux
)
742 "stty -onlcr -echo\n"
744 "*Set up terminal after logging in to the gateway machine.
745 This command should stop the terminal from echoing each command, and
746 arrange to strip out trailing ^M characters.")
748 (defvar ange-ftp-smart-gateway nil
749 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart.
750 Don't bother telnetting, etc., already connected to desired host transparently,
751 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.")
753 (defvar ange-ftp-smart-gateway-port
"21"
754 "*Port on gateway machine to use when smart gateway is in operation.")
756 (defvar ange-ftp-send-hash t
757 "*If non-nil, send the HASH command to the FTP client.")
759 (defvar ange-ftp-binary-hash-mark-size nil
760 "*Default size, in bytes, between hash-marks when transferring a binary file.
761 If NIL, this variable will be locally overridden if the FTP client outputs a
762 suitable response to the HASH command. If non-NIL then this value takes
763 precedence over the local value.")
765 (defvar ange-ftp-ascii-hash-mark-size
1024
766 "*Default size, in bytes, between hash-marks when transferring an ASCII file.
767 This variable is buffer-local and will be locally overridden if the FTP client
768 outputs a suitable response to the HASH command.")
770 (defvar ange-ftp-process-verbose t
771 "*If non-NIL then be chatty about interaction with the FTP process.")
773 (defvar ange-ftp-ftp-program-name
"ftp"
774 "*Name of FTP program to run.")
776 (defvar ange-ftp-gateway-ftp-program-name
"ftp"
777 "*Name of FTP program to run when accessing non-local hosts.
778 Some AT&T folks claim to use something called `pftp' here.")
780 (defvar ange-ftp-ftp-program-args
'("-i" "-n" "-g" "-v")
781 "*A list of arguments passed to the FTP program when started.")
783 (defvar ange-ftp-nslookup-program nil
784 "*If non-NIL then a string naming nslookup program." )
786 (defvar ange-ftp-make-backup-files
()
787 "*Non-nil means make backup files for \"magic\" remote files.")
789 (defvar ange-ftp-retry-time
5
790 "*Number of seconds to wait before retry if file or listing doesn't arrive.
791 This might need to be increased for very slow connections.")
793 (defvar ange-ftp-auto-save
0
794 "If 1, allows ange-ftp files to be auto-saved.
795 If 0, suppresses auto-saving of ange-ftp files.
796 Don't use any other value.")
798 ;;;; ------------------------------------------------------------
799 ;;;; Hash table support.
800 ;;;; ------------------------------------------------------------
804 (defun ange-ftp-make-hashtable (&optional size
)
805 "Make an obarray suitable for use as a hashtable.
806 SIZE, if supplied, should be a prime number."
807 (make-vector (or size
31) 0))
809 (defun ange-ftp-map-hashtable (fun tbl
)
810 "Call FUNCTION on each key and value in HASHTABLE."
814 (funcall fun
(get sym
'key
) (get sym
'val
))))
817 (defmacro ange-ftp-make-hash-key
(key)
818 "Convert KEY into a suitable key for a hashtable."
819 (` (if (stringp (, key
))
821 (prin1-to-string (, key
)))))
823 (defun ange-ftp-get-hash-entry (key tbl
)
824 "Return the value associated with KEY in HASHTABLE."
825 (let ((sym (intern-soft (ange-ftp-make-hash-key key
) tbl
)))
826 (and sym
(get sym
'val
))))
828 (defun ange-ftp-put-hash-entry (key val tbl
)
829 "Record an association between KEY and VALUE in HASHTABLE."
830 (let ((sym (intern (ange-ftp-make-hash-key key
) tbl
)))
834 (defun ange-ftp-del-hash-entry (key tbl
)
835 "Copy all symbols except KEY in HASHTABLE and return modified hashtable."
836 (let* ((len (length tbl
))
837 (new-tbl (ange-ftp-make-hashtable len
))
839 (ange-ftp-map-hashtable
843 (ange-ftp-put-hash-entry k v new-tbl
))))
846 (aset tbl i
(aref new-tbl i
))
850 (defun ange-ftp-hash-entry-exists-p (key tbl
)
851 "Return whether there is an association for KEY in TABLE."
852 (intern-soft (ange-ftp-make-hash-key key
) tbl
))
854 (defun ange-ftp-hash-table-keys (tbl)
855 "Return a sorted list of all the active keys in TABLE, as strings."
856 (sort (all-completions "" tbl
)
857 (function string-lessp
)))
859 ;;;; ------------------------------------------------------------
860 ;;;; Internal variables.
861 ;;;; ------------------------------------------------------------
863 (defvar ange-ftp-data-buffer-name
" *ftp data*"
864 "Buffer name to hold directory listing data received from ftp process.")
866 (defvar ange-ftp-netrc-modtime nil
867 "Last modified time of the netrc file from file-attributes.")
869 (defvar ange-ftp-user-hashtable
(ange-ftp-make-hashtable)
870 "Hash table holding associations between HOST, USER pairs.")
872 (defvar ange-ftp-passwd-hashtable
(ange-ftp-make-hashtable)
873 "Mapping between a HOST, USER pair and a PASSWORD for them.")
875 (defvar ange-ftp-account-hashtable
(ange-ftp-make-hashtable)
876 "Mapping between a HOST, USER pair and a ACCOUNT password for them.")
878 (defvar ange-ftp-files-hashtable
(ange-ftp-make-hashtable 97)
879 "Hash table for storing directories and their respective files.")
881 (defvar ange-ftp-ls-cache-lsargs nil
882 "Last set of args used by ange-ftp-ls.")
884 (defvar ange-ftp-ls-cache-file nil
885 "Last file passed to ange-ftp-ls.")
887 (defvar ange-ftp-ls-cache-res nil
888 "Last result returned from ange-ftp-ls.")
890 (defconst ange-ftp-expand-dir-hashtable
(ange-ftp-make-hashtable))
892 (defconst ange-ftp-expand-dir-regexp
"^5.0 \\([^: ]+\\):")
894 ;; These are local variables in each FTP process buffer.
895 (defvar ange-ftp-hash-mark-unit nil
)
896 (defvar ange-ftp-hash-mark-count nil
)
897 (defvar ange-ftp-xfer-size nil
)
898 (defvar ange-ftp-process-string nil
)
899 (defvar ange-ftp-process-result-line nil
)
900 (defvar ange-ftp-process-busy nil
)
901 (defvar ange-ftp-process-result nil
)
902 (defvar ange-ftp-process-multi-skip nil
)
903 (defvar ange-ftp-process-msg nil
)
904 (defvar ange-ftp-process-continue nil
)
905 (defvar ange-ftp-last-percent nil
)
907 ;; These variables are bound by one function and examined by another.
908 ;; Leave them void globally for error checking.
909 (defvar ange-ftp-this-file
)
910 (defvar ange-ftp-this-dir
)
911 (defvar ange-ftp-this-user
)
912 (defvar ange-ftp-this-host
)
913 (defvar ange-ftp-this-msg
)
914 (defvar ange-ftp-completion-ignored-pattern
)
915 (defvar ange-ftp-trample-marker
)
917 ;; New error symbols.
918 (put 'ftp-error
'error-conditions
'(ftp-error file-error error
))
919 ;; (put 'ftp-error 'error-message "FTP error")
921 ;;; ------------------------------------------------------------
922 ;;; Enhanced message support.
923 ;;; ------------------------------------------------------------
925 (defun ange-ftp-message (fmt &rest args
)
926 "Display message in echo area, but indicate if truncated.
927 Args are as in `message': a format string, plus arguments to be formatted."
928 (let ((msg (apply (function format
) fmt args
))
929 (max (window-width (minibuffer-window))))
932 (if (>= (length msg
) max
)
933 ;; Take just the last MAX - 3 chars of the string.
934 (setq msg
(concat "> " (substring msg
(- 3 max
)))))
935 (message "%s" msg
))))
937 (defun ange-ftp-abbreviate-filename (file &optional new
)
938 "Abbreviate the file name FILE relative to the default-directory.
939 If the optional parameter NEW is given and the non-directory parts match,
940 only return the directory part of FILE."
942 (if (and default-directory
943 (string-match (concat "^"
944 (regexp-quote default-directory
)
946 (setq file
(substring file
(1- (match-end 0)))))
948 (string-equal (file-name-nondirectory file
)
949 (file-name-nondirectory new
)))
950 (setq file
(file-name-directory file
)))
953 ;;;; ------------------------------------------------------------
954 ;;;; User / Host mapping support.
955 ;;;; ------------------------------------------------------------
957 (defun ange-ftp-set-user (host user
)
958 "For a given HOST, set or change the default USER."
959 (interactive "sHost: \nsUser: ")
960 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable
))
962 (defun ange-ftp-get-user (host)
963 "Given a HOST, return the default USER."
964 (ange-ftp-parse-netrc)
965 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable
)))
969 (cond ((stringp ange-ftp-default-user
)
970 ;; We have a default name. Use it.
971 ange-ftp-default-user
)
972 (ange-ftp-default-user
974 (let ((enable-recursive-minibuffers t
))
975 (read-string (format "User for %s: " host
)
977 ;; Default to the user's login name.
980 (ange-ftp-set-user host user
)))))
982 ;;;; ------------------------------------------------------------
983 ;;;; Password support.
984 ;;;; ------------------------------------------------------------
986 (defun ange-ftp-read-passwd (prompt &optional default
)
987 "Read a password, echoing `.' for each character typed.
988 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line.
989 Optional DEFAULT is password to start with."
990 (let ((pass (if default default
""))
993 (cursor-in-echo-area t
))
994 (while (progn (message "%s%s"
996 (make-string (length pass
) ?.
))
998 (and (/= c ?
\r) (/= c ?
\n) (/= c ?\e
)))
1001 (if (and (/= c ?
\b) (/= c ?
\177))
1002 (setq pass
(concat pass
(char-to-string c
)))
1003 (if (> (length pass
) 0)
1004 (setq pass
(substring pass
0 -
1))))))
1006 (ange-ftp-repaint-minibuffer)
1009 (defmacro ange-ftp-generate-passwd-key
(host user
)
1010 (` (concat (, host
) "/" (, user
))))
1012 (defmacro ange-ftp-lookup-passwd
(host user
)
1013 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host
) (, user
))
1014 ange-ftp-passwd-hashtable
)))
1016 (defun ange-ftp-set-passwd (host user passwd
)
1017 "For a given HOST and USER, set or change the associated PASSWORD."
1018 (interactive (list (read-string "Host: ")
1019 (read-string "User: ")
1020 (ange-ftp-read-passwd "Password: ")))
1021 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user
)
1023 ange-ftp-passwd-hashtable
))
1025 (defun ange-ftp-get-host-with-passwd (user)
1026 "Given a USER, return a host we know the password for."
1027 (ange-ftp-parse-netrc)
1029 (ange-ftp-map-hashtable
1030 (function (lambda (host val
)
1031 (if (ange-ftp-lookup-passwd host user
)
1032 (throw 'found-one host
))))
1033 ange-ftp-user-hashtable
)
1035 (ange-ftp-map-hashtable
1038 (if (string-match "^[^/]*\\(/\\).*$" key
)
1039 (let ((host (substring key
0 (match-beginning 1))))
1040 (if (and (string-equal user
(substring key
(match-end 1)))
1042 (throw 'found-one host
))))))
1043 ange-ftp-passwd-hashtable
))
1046 (defun ange-ftp-get-passwd (host user
)
1047 "Return the password for specified HOST and USER, asking user if necessary."
1048 (ange-ftp-parse-netrc)
1050 ;; look up password in the hash table first; user might have overridden the
1052 (cond ((ange-ftp-lookup-passwd host user
))
1054 ;; see if default user and password set from the .netrc file.
1055 ((and (stringp ange-ftp-default-user
)
1056 ange-ftp-default-password
1057 (string-equal user ange-ftp-default-user
))
1058 ange-ftp-default-password
)
1060 ;; anonymous ftp password is handled specially since there is an
1061 ;; unwritten rule about how that is used on the Internet.
1062 ((and (or (string-equal user
"anonymous")
1063 (string-equal user
"ftp"))
1064 ange-ftp-generate-anonymous-password
)
1065 (if (stringp ange-ftp-generate-anonymous-password
)
1066 ange-ftp-generate-anonymous-password
1069 ;; see if same user has logged in to other hosts; if so then prompt
1070 ;; with the password that was used there.
1072 (let* ((other (ange-ftp-get-host-with-passwd user
))
1075 ;; found another machine with the same user.
1076 ;; Try that account.
1077 (ange-ftp-read-passwd
1078 (format "passwd for %s@%s (same as %s@%s): "
1079 user host user other
)
1080 (ange-ftp-lookup-passwd other user
))
1082 ;; I give up. Ask the user for the password.
1083 (ange-ftp-read-passwd
1084 (format "Password for %s@%s: " user host
)))))
1085 (ange-ftp-set-passwd host user passwd
)
1088 ;;;; ------------------------------------------------------------
1089 ;;;; Account support
1090 ;;;; ------------------------------------------------------------
1092 ;; Account passwords must be either specified in the .netrc file, or set
1093 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't
1094 ;; check to see whether the FTP process is actually prompting for an account
1097 (defun ange-ftp-set-account (host user account
)
1098 "For a given HOST and USER, set or change the associated ACCOUNT password."
1099 (interactive (list (read-string "Host: ")
1100 (read-string "User: ")
1101 (ange-ftp-read-passwd "Account password: ")))
1102 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user
)
1104 ange-ftp-account-hashtable
))
1106 (defun ange-ftp-get-account (host user
)
1107 "Given a HOST and USER, return the FTP account."
1108 (ange-ftp-parse-netrc)
1109 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user
)
1110 ange-ftp-account-hashtable
)
1111 (and (stringp ange-ftp-default-user
)
1112 (string-equal user ange-ftp-default-user
)
1113 ange-ftp-default-account
)))
1115 ;;;; ------------------------------------------------------------
1116 ;;;; ~/.netrc support
1117 ;;;; ------------------------------------------------------------
1119 (defun ange-ftp-chase-symlinks (file)
1120 "Return the filename that FILE references, following all symbolic links."
1122 (while (setq temp
(ange-ftp-real-file-symlink-p file
))
1124 (if (file-name-absolute-p temp
)
1126 (concat (file-name-directory file
) temp
)))))
1129 ;; Move along current line looking for the value of the TOKEN.
1130 ;; Valid separators between TOKEN and its value are commas and
1131 ;; whitespace. Second arg LIMIT is a limit for the search.
1133 (defun ange-ftp-parse-netrc-token (token limit
)
1134 (if (search-forward token limit t
)
1136 (skip-chars-forward ", \t\r\n" limit
)
1137 (if (eq (following-char) ?
\") ;quoted token value
1138 (progn (forward-char 1)
1140 (skip-chars-forward "^\"" limit
)
1142 (buffer-substring beg
(1- (point))))
1144 (skip-chars-forward "^, \t\r\n" limit
)
1145 (buffer-substring beg
(point))))))
1147 ;; Extract the values for the tokens `machine', `login',
1148 ;; `password' and `account' in the current buffer. If successful,
1149 ;; record the information found.
1151 (defun ange-ftp-parse-netrc-group ()
1152 (let ((start (point))
1153 (end (save-excursion
1154 (if (looking-at "machine\\>")
1155 ;; Skip `machine' and the machine name that follows.
1157 (skip-chars-forward "^ \t\n")
1158 (skip-chars-forward " \t\n")
1159 (skip-chars-forward "^ \t\n"))
1161 (skip-chars-forward "^ \t\n"))
1162 ;; Find start of the next `machine' or `default'
1163 ;; or the end of the buffer.
1164 (if (re-search-forward "machine\\>\\|default\\>" nil t
)
1167 machine login password account
)
1168 (setq machine
(ange-ftp-parse-netrc-token "machine" end
)
1169 login
(ange-ftp-parse-netrc-token "login" end
)
1170 password
(ange-ftp-parse-netrc-token "password" end
)
1171 account
(ange-ftp-parse-netrc-token "account" end
))
1172 (if (and machine login
)
1173 ;; found a `machine` token.
1175 (ange-ftp-set-user machine login
)
1176 (ange-ftp-set-passwd machine login password
)
1178 (ange-ftp-set-account machine login account
)))
1180 (if (search-forward "default" end t
)
1181 ;; found a `default' token
1183 (setq login
(ange-ftp-parse-netrc-token "login" end
)
1184 password
(ange-ftp-parse-netrc-token "password" end
)
1185 account
(ange-ftp-parse-netrc-token "account" end
))
1187 (setq ange-ftp-default-user login
))
1189 (setq ange-ftp-default-password password
))
1191 (setq ange-ftp-default-account account
)))))
1194 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has
1195 ;; the correct permissions then extract the \`machine\', \`login\',
1196 ;; \`password\' and \`account\' information from within.
1198 (defun ange-ftp-parse-netrc ()
1199 ;; We set this before actually doing it to avoid the possibility
1200 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file.
1203 (let ((default-directory "/"))
1204 (setq file
(ange-ftp-chase-symlinks
1205 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename
)))
1206 (setq attr
(ange-ftp-real-file-attributes file
)))
1207 (if (and attr
; file exists.
1208 (not (equal (nth 5 attr
) ange-ftp-netrc-modtime
))) ; file changed
1210 (if (or ange-ftp-disable-netrc-security-check
1211 (and (eq (nth 2 attr
) (user-uid)) ; Same uids.
1212 (string-match ".r..------" (nth 8 attr
))))
1214 ;; we are cheating a bit here. I'm trying to do the equivalent
1215 ;; of find-file on the .netrc file, but then nuke it afterwards.
1216 ;; with the bit of logic below we should be able to have
1217 ;; encrypted .netrc files.
1218 (set-buffer (generate-new-buffer "*ftp-.netrc*"))
1219 (ange-ftp-real-insert-file-contents file
)
1220 (setq buffer-file-name file
)
1221 (setq default-directory
(file-name-directory file
))
1223 (mapcar 'funcall find-file-hooks
)
1224 (setq buffer-file-name nil
)
1225 (goto-char (point-min))
1226 (skip-chars-forward " \t\n")
1228 (ange-ftp-parse-netrc-group))
1229 (kill-buffer (current-buffer)))
1230 (ange-ftp-message "%s either not owned by you or badly protected."
1231 ange-ftp-netrc-filename
)
1233 (setq ange-ftp-netrc-modtime
(nth 5 attr
))))))
1235 ;; Return a list of prefixes of the form 'user@host:' to be used when
1236 ;; completion is done in the root directory.
1238 (defun ange-ftp-generate-root-prefixes ()
1239 (ange-ftp-parse-netrc)
1242 (ange-ftp-map-hashtable
1245 (if (string-match "^[^/]*\\(/\\).*$" key
)
1246 (let ((host (substring key
0 (match-beginning 1)))
1247 (user (substring key
(match-end 1))))
1248 (setq res
(cons (list (concat user
"@" host
":"))
1250 ange-ftp-passwd-hashtable
)
1251 (ange-ftp-map-hashtable
1252 (function (lambda (host user
)
1253 (setq res
(cons (list (concat host
":"))
1255 ange-ftp-user-hashtable
)
1256 (or res
(list nil
)))))
1258 ;;;; ------------------------------------------------------------
1259 ;;;; Remote file name syntax support.
1260 ;;;; ------------------------------------------------------------
1262 (defmacro ange-ftp-ftp-name-component
(n ns name
)
1263 "Extract the Nth ftp file name component from NS."
1264 (` (let ((elt (nth (, n
) (, ns
))))
1265 (if (match-beginning elt
)
1266 (substring (, name
) (match-beginning elt
) (match-end elt
))))))
1268 (defvar ange-ftp-ftp-name-arg
"")
1269 (defvar ange-ftp-ftp-name-res nil
)
1271 ;; Parse NAME according to `ange-ftp-name-format' (which see).
1272 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format.
1273 (defun ange-ftp-ftp-name (name)
1274 (if (string-equal name ange-ftp-ftp-name-arg
)
1275 ange-ftp-ftp-name-res
1276 (setq ange-ftp-ftp-name-arg name
1277 ange-ftp-ftp-name-res
1279 (if (string-match (car ange-ftp-name-format
) name
)
1280 (let* ((ns (cdr ange-ftp-name-format
))
1281 (host (ange-ftp-ftp-name-component 0 ns name
))
1282 (user (ange-ftp-ftp-name-component 1 ns name
))
1283 (name (ange-ftp-ftp-name-component 2 ns name
)))
1284 (if (zerop (length user
))
1285 (setq user
(ange-ftp-get-user host
)))
1286 (list host user name
))
1289 ;; Take a FULLNAME that matches according to ange-ftp-name-format and
1290 ;; replace the name component with NAME.
1291 (defun ange-ftp-replace-name-component (fullname name
)
1293 (if (string-match (car ange-ftp-name-format
) fullname
)
1294 (let* ((ns (cdr ange-ftp-name-format
))
1296 (concat (substring fullname
0 (match-beginning elt
))
1298 (substring fullname
(match-end elt
)))))))
1300 ;;;; ------------------------------------------------------------
1301 ;;;; Miscellaneous utils.
1302 ;;;; ------------------------------------------------------------
1304 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap))
1305 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer)
1307 (defun ange-ftp-repaint-minibuffer ()
1308 "Clear any existing minibuffer message; let the minibuffer contents show."
1311 ;; Return the name of the buffer that collects output from the ftp process
1312 ;; connected to the given HOST and USER pair.
1313 (defun ange-ftp-ftp-process-buffer (host user
)
1314 (concat "*ftp " user
"@" host
"*"))
1316 ;; Display the last chunk of output from the ftp process for the given HOST
1317 ;; USER pair, and signal an error including MSG in the text.
1318 (defun ange-ftp-error (host user msg
)
1319 (let ((cur (selected-window))
1323 (ange-ftp-ftp-process-buffer host user
)))
1324 (goto-char (point-max))
1325 (select-window cur
))
1326 (signal 'ftp-error
(list (format "FTP Error: %s" msg
))))
1328 (defun ange-ftp-set-buffer-mode ()
1329 "Set correct modes for the current buffer if visiting a remote file."
1330 (if (and (stringp buffer-file-name
)
1331 (ange-ftp-ftp-name buffer-file-name
))
1332 (auto-save-mode ange-ftp-auto-save
)))
1334 (defun ange-ftp-kill-ftp-process (buffer)
1335 "Kill the FTP process associated with BUFFER.
1336 If the BUFFER's visited filename or default-directory is an ftp filename
1337 then kill the related ftp process."
1338 (interactive "bKill FTP process associated with buffer: ")
1340 (setq buffer
(current-buffer)))
1341 (let ((file (or (buffer-file-name) default-directory
)))
1343 (let ((parsed (ange-ftp-ftp-name (expand-file-name file
))))
1345 (let ((host (nth 0 parsed
))
1346 (user (nth 1 parsed
)))
1347 (kill-buffer (ange-ftp-ftp-process-buffer host user
))))))))
1349 (defun ange-ftp-quote-string (string)
1350 "Quote any characters in STRING that may confuse the ftp process."
1351 (apply (function concat
)
1354 (if (or (<= char ?
)
1362 (defun ange-ftp-barf-if-not-directory (directory)
1363 (or (file-directory-p directory
)
1365 (list "Opening directory"
1366 (if (file-exists-p directory
)
1368 "no such file or directory")
1371 ;;;; ------------------------------------------------------------
1372 ;;;; FTP process filter support.
1373 ;;;; ------------------------------------------------------------
1375 (defun ange-ftp-process-handle-line (line proc
)
1376 "Look at the given LINE from the ftp process PROC.
1377 Try to categorize it into one of four categories:
1378 good, skip, fatal, or unknown."
1379 (cond ((string-match ange-ftp-xfer-size-msgs line
)
1380 (setq ange-ftp-xfer-size
1381 (ash (string-to-int (substring line
1385 ((string-match ange-ftp-skip-msgs line
)
1387 ((string-match ange-ftp-good-msgs line
)
1388 (setq ange-ftp-process-busy nil
1389 ange-ftp-process-result t
1390 ange-ftp-process-result-line line
))
1391 ;; Check this before checking for errors.
1392 ;; Otherwise the last line of these three seems to be an error:
1393 ;; 230-see a significant impact from the move. For those of you who can't
1394 ;; 230-use DNS to resolve hostnames and get an error message like
1395 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be...
1396 ((string-match ange-ftp-multi-msgs line
)
1397 (setq ange-ftp-process-multi-skip t
))
1398 ((string-match ange-ftp-fatal-msgs line
)
1399 (delete-process proc
)
1400 (setq ange-ftp-process-busy nil
1401 ange-ftp-process-result-line line
))
1402 (ange-ftp-process-multi-skip
1405 (setq ange-ftp-process-busy nil
1406 ange-ftp-process-result-line line
))))
1408 (defun ange-ftp-set-xfer-size (host user bytes
)
1409 "Set the size of the next FTP transfer in bytes."
1410 (let ((proc (ange-ftp-get-process host user
)))
1412 (let ((buf (process-buffer proc
)))
1416 (setq ange-ftp-xfer-size
(ash bytes -
10))))))))
1418 (defun ange-ftp-process-handle-hash (str)
1419 "Remove hash marks from STRING and display count so far."
1420 (setq str
(concat (substring str
0 (match-beginning 0))
1421 (substring str
(match-end 0)))
1422 ange-ftp-hash-mark-count
(+ (- (match-end 0)
1423 (match-beginning 0))
1424 ange-ftp-hash-mark-count
))
1425 (and ange-ftp-process-msg
1426 ange-ftp-process-verbose
1427 (not (eq (selected-window) (minibuffer-window)))
1428 (not (boundp 'search-message
)) ;screws up isearch otherwise
1429 (not cursor-in-echo-area
) ;screws up y-or-n-p otherwise
1430 (let ((kbytes (ash (* ange-ftp-hash-mark-unit
1431 ange-ftp-hash-mark-count
)
1433 (if (zerop ange-ftp-xfer-size
)
1434 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes
)
1435 (let ((percent (/ (* 100 kbytes
) ange-ftp-xfer-size
)))
1436 ;; cut out the redisplay of identical %-age messages.
1437 (if (not (eq percent ange-ftp-last-percent
))
1439 (setq ange-ftp-last-percent percent
)
1440 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent
)))))))
1443 ;; Call the function specified by CONT. CONT can be either a function
1444 ;; or a list of a function and some args. The first two parameters
1445 ;; passed to the function will be RESULT and LINE. The remaining args
1446 ;; will be taken from CONT if a list was passed.
1448 (defun ange-ftp-call-cont (cont result line
)
1450 (if (and (listp cont
)
1451 (not (eq (car cont
) 'lambda
)))
1452 (apply (car cont
) result line
(cdr cont
))
1453 (funcall cont result line
))))
1455 ;; Build up a complete line of output from the ftp PROCESS and pass it
1456 ;; on to ange-ftp-process-handle-line to deal with.
1458 (defun ange-ftp-process-filter (proc str
)
1459 (let ((buffer (process-buffer proc
))
1460 (old-buffer (current-buffer)))
1462 ;; see if the buffer is still around... it could have been deleted.
1463 (if (buffer-name buffer
)
1466 (set-buffer (process-buffer proc
))
1468 ;; handle hash mark printing
1469 (and ange-ftp-hash-mark-unit
1470 ange-ftp-process-busy
1471 (string-match "^#+$" str
)
1472 (setq str
(ange-ftp-process-handle-hash str
)))
1473 (comint-output-filter proc str
)
1474 ;; Replace STR by the result of the comint processing.
1475 (setq str
(buffer-substring comint-last-output-start
1476 (process-mark proc
)))
1477 (if ange-ftp-process-busy
1479 (setq ange-ftp-process-string
(concat ange-ftp-process-string
1482 ;; if we gave an empty password to the USER command earlier
1483 ;; then we should send a null password now.
1484 (if (string-match "Password: *$" ange-ftp-process-string
)
1485 (send-string proc
"\n"))))
1486 (while (and ange-ftp-process-busy
1487 (string-match "\n" ange-ftp-process-string
))
1488 (let ((line (substring ange-ftp-process-string
1490 (match-beginning 0))))
1491 (setq ange-ftp-process-string
(substring ange-ftp-process-string
1493 (while (string-match "^ftp> *" line
)
1494 (setq line
(substring line
(match-end 0))))
1495 (ange-ftp-process-handle-line line proc
)))
1497 ;; has the ftp client finished? if so then do some clean-up
1499 (if (not ange-ftp-process-busy
)
1501 ;; reset the xfer size
1502 (setq ange-ftp-xfer-size
0)
1504 ;; issue the "done" message since we've finished.
1505 (if (and ange-ftp-process-msg
1506 ange-ftp-process-verbose
1507 ange-ftp-process-result
)
1509 (ange-ftp-message "%s...done" ange-ftp-process-msg
)
1510 (ange-ftp-repaint-minibuffer)
1511 (setq ange-ftp-process-msg nil
)))
1513 ;; is there a continuation we should be calling? if so,
1514 ;; we'd better call it, making sure we only call it once.
1515 (if ange-ftp-process-continue
1516 (let ((cont ange-ftp-process-continue
))
1517 (setq ange-ftp-process-continue nil
)
1518 (ange-ftp-call-cont cont
1519 ange-ftp-process-result
1520 ange-ftp-process-result-line
))))))
1521 (set-buffer old-buffer
)))))
1523 (defun ange-ftp-process-sentinel (proc str
)
1524 "When ftp process changes state, nuke all file-entries in cache."
1525 (let ((name (process-name proc
)))
1526 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name
)
1527 (let ((user (substring name
(match-beginning 1) (match-end 1)))
1528 (host (substring name
(match-beginning 2) (match-end 2))))
1529 (ange-ftp-wipe-file-entries host user
))))
1530 (setq ange-ftp-ls-cache-file nil
))
1532 ;;;; ------------------------------------------------------------
1533 ;;;; Gateway support.
1534 ;;;; ------------------------------------------------------------
1536 (defun ange-ftp-use-gateway-p (host)
1537 "Returns whether to access this host via a normal (non-smart) gateway."
1538 ;; yes, I know that I could simplify the following expression, but it is
1539 ;; clearer (to me at least) this way.
1540 (and (not ange-ftp-smart-gateway
)
1542 (not (string-match ange-ftp-local-host-regexp host
)))))
1544 (defun ange-ftp-use-smart-gateway-p (host)
1545 "Returns whether to access this host via a smart gateway."
1546 (and ange-ftp-smart-gateway
1548 (not (string-match ange-ftp-local-host-regexp host
)))))
1551 ;;; ------------------------------------------------------------
1552 ;;; Temporary file location and deletion...
1553 ;;; ------------------------------------------------------------
1555 (defvar ange-ftp-tmp-name-files
())
1556 (defvar ange-ftp-tmp-name-hashtable
(ange-ftp-make-hashtable 10))
1557 (defvar ange-ftp-pid nil
)
1559 (defun ange-ftp-get-pid ()
1560 "Half-hearted attempt to get the current process's id."
1561 (setq ange-ftp-pid
(substring (make-temp-name "") 1)))
1563 (defun ange-ftp-make-tmp-name (host)
1564 "This routine will return the name of a new file."
1565 (let* ((template (if (ange-ftp-use-gateway-p host
)
1566 ange-ftp-gateway-tmp-name-template
1567 ange-ftp-tmp-name-template
))
1568 (pid (or ange-ftp-pid
(ange-ftp-get-pid)))
1573 (setq file
(format "%s%c%s" template start pid
))
1574 (setq entry
(intern file ange-ftp-tmp-name-hashtable
))
1575 (or (memq entry ange-ftp-tmp-name-files
)
1576 (ange-ftp-real-file-exists-p file
)))
1577 (if (> (setq start
(1+ start
)) ?z
)
1579 (setq template
(concat template
"X"))
1581 (setq ange-ftp-tmp-name-files
1582 (cons entry ange-ftp-tmp-name-files
))
1585 (defun ange-ftp-del-tmp-name (temp)
1586 (setq ange-ftp-tmp-name-files
1587 (delq (intern temp ange-ftp-tmp-name-hashtable
)
1588 ange-ftp-tmp-name-files
))
1590 (ange-ftp-real-delete-file temp
)
1593 ;;;; ------------------------------------------------------------
1594 ;;;; Interactive gateway program support.
1595 ;;;; ------------------------------------------------------------
1597 (defvar ange-ftp-gwp-running t
)
1598 (defvar ange-ftp-gwp-status nil
)
1600 (defun ange-ftp-gwp-sentinel (proc str
)
1601 (setq ange-ftp-gwp-running nil
))
1603 (defun ange-ftp-gwp-filter (proc str
)
1604 (comint-output-filter proc str
)
1606 (set-buffer (process-buffer proc
))
1607 ;; Replace STR by the result of the comint processing.
1608 (setq str
(buffer-substring comint-last-output-start
(process-mark proc
))))
1609 (cond ((string-match "login: *$" str
)
1612 (let ((ange-ftp-default-user t
))
1613 (ange-ftp-get-user ange-ftp-gateway-host
))
1615 ((string-match "Password: *$" str
)
1618 (ange-ftp-get-passwd ange-ftp-gateway-host
1620 ange-ftp-gateway-host
))
1622 ((string-match ange-ftp-gateway-fatal-msgs str
)
1623 (delete-process proc
)
1624 (setq ange-ftp-gwp-running nil
))
1625 ((string-match ange-ftp-gateway-prompt-pattern str
)
1626 (setq ange-ftp-gwp-running nil
1627 ange-ftp-gwp-status t
))))
1629 (defun ange-ftp-gwp-start (host user name args
)
1630 "Login to the gateway machine and fire up an ftp process."
1631 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host
))
1632 ;; It would be nice to make process-connection-type nil,
1633 ;; but that doesn't work: ftp never responds.
1634 ;; Can anyone find a fix for that?
1635 (proc (let ((process-connection-type t
))
1636 (start-process name name
1637 ange-ftp-gateway-program
1638 ange-ftp-gateway-host
)))
1639 (ftp (mapconcat (function identity
) args
" ")))
1640 (process-kill-without-query proc
)
1641 (set-process-sentinel proc
(function ange-ftp-gwp-sentinel
))
1642 (set-process-filter proc
(function ange-ftp-gwp-filter
))
1644 (set-buffer (process-buffer proc
))
1645 (internal-ange-ftp-mode)
1646 (set-marker (process-mark proc
) (point)))
1647 (setq ange-ftp-gwp-running t
1648 ange-ftp-gwp-status nil
)
1649 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host
)
1650 (while ange-ftp-gwp-running
;perform login sequence
1651 (accept-process-output proc
))
1652 (if (not ange-ftp-gwp-status
)
1653 (ange-ftp-error host user
"unable to login to gateway"))
1654 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host
)
1655 (setq ange-ftp-gwp-running t
1656 ange-ftp-gwp-status nil
)
1657 (process-send-string proc ange-ftp-gateway-setup-term-command
)
1658 (while ange-ftp-gwp-running
;zap ^M's and double echoing.
1659 (accept-process-output proc
))
1660 (if (not ange-ftp-gwp-status
)
1661 (ange-ftp-error host user
"unable to set terminal modes on gateway"))
1662 (setq ange-ftp-gwp-running t
1663 ange-ftp-gwp-status nil
)
1664 (process-send-string proc
(concat "exec " ftp
"\n")) ;spawn ftp process
1667 ;;;; ------------------------------------------------------------
1668 ;;;; Support for sending commands to the ftp process.
1669 ;;;; ------------------------------------------------------------
1671 (defun ange-ftp-raw-send-cmd (proc cmd
&optional msg cont nowait
)
1672 "Low-level routine to send the given ftp CMD to the ftp PROCESS.
1673 MSG is an optional message to output before and after the command.
1674 If CONT is non-NIL then it is either a function or a list of function and
1675 some arguments. The function will be called when the ftp command has completed.
1676 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT
1677 is whether the command was successful, and LINE is the line from the FTP
1678 process that caused the command to complete.
1679 If NOWAIT is given then the routine will return immediately the command has
1680 been queued with no result. CONT will still be called, however."
1681 (if (memq (process-status proc
) '(run open
))
1683 (set-buffer (process-buffer proc
))
1684 (while ange-ftp-process-busy
1685 ;; This is a kludge to let user quit in case ftp gets hung.
1686 ;; It matters because this function can be called from the filter.
1687 ;; It is bad to allow quitting in a filter, but getting hung
1688 ;; is worse. By binding quit-flag to nil, we might avoid
1689 ;; most of the probability of getting screwed because the user
1690 ;; wants to quit some command.
1691 (let ((quit-flag nil
)
1693 (accept-process-output)))
1694 (setq ange-ftp-process-string
""
1695 ange-ftp-process-result-line
""
1696 ange-ftp-process-busy t
1697 ange-ftp-process-result nil
1698 ange-ftp-process-multi-skip nil
1699 ange-ftp-process-msg msg
1700 ange-ftp-process-continue cont
1701 ange-ftp-hash-mark-count
0
1702 ange-ftp-last-percent -
1
1703 cmd
(concat cmd
"\n"))
1704 (and msg ange-ftp-process-verbose
(ange-ftp-message "%s..." msg
))
1705 (goto-char (point-max))
1706 (move-marker comint-last-input-start
(point))
1707 ;; don't insert the password into the buffer on the USER command.
1709 (if (string-match "^user \"[^\"]*\"" cmd
)
1710 (insert (substring cmd
0 (match-end 0)) " Turtle Power!\n")
1712 (move-marker comint-last-input-end
(point))
1713 (send-string proc cmd
)
1714 (set-marker (process-mark proc
) (point))
1717 ;; hang around for command to complete
1718 (while ange-ftp-process-busy
1719 ;; This is a kludge to let user quit in case ftp gets hung.
1720 ;; It matters because this function can be called from the filter.
1721 (let ((quit-flag nil
)
1723 (accept-process-output proc
)))
1725 nil
;cont has already been called
1726 (cons ange-ftp-process-result ange-ftp-process-result-line
))))))
1728 (defun ange-ftp-nslookup-host (host)
1729 "Attempt to resolve the given HOSTNAME using nslookup if possible."
1730 (interactive "sHost: ")
1731 (if ange-ftp-nslookup-program
1732 (let ((default-directory
1733 (if (file-accessible-directory-p default-directory
)
1736 ;; It would be nice to make process-connection-type nil,
1737 ;; but that doesn't work: ftp never responds.
1738 ;; Can anyone find a fix for that?
1739 (proc (let ((process-connection-type t
))
1740 (start-process " *nslookup*" " *nslookup*"
1741 ange-ftp-nslookup-program host
)))
1743 (process-kill-without-query proc
)
1745 (set-buffer (process-buffer proc
))
1746 (while (memq (process-status proc
) '(run open
))
1747 (accept-process-output proc
))
1748 (goto-char (point-min))
1749 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t
)
1750 (setq res
(buffer-substring (match-beginning 1)
1752 (kill-buffer (current-buffer)))
1756 (defun ange-ftp-start-process (host user name
)
1757 "Spawn a new ftp process ready to connect to machine HOST and give it NAME.
1758 If HOST is only ftp-able through a gateway machine then spawn a shell
1759 on the gateway machine to do the ftp instead."
1760 (let* ((use-gateway (ange-ftp-use-gateway-p host
))
1761 (use-smart-ftp (and (not ange-ftp-gateway-host
)
1762 (ange-ftp-use-smart-gateway-p host
)))
1763 (ftp-prog (if (or use-gateway
1765 ange-ftp-gateway-ftp-program-name
1766 ange-ftp-ftp-program-name
))
1767 (args (append (list ftp-prog
) ange-ftp-ftp-program-args
))
1768 ;; Without the following binding, ange-ftp-start-process
1769 ;; recurses on file-accessible-directory-p, since it needs to
1770 ;; restart its process in order to determine anything about
1771 ;; default-directory.
1772 (file-name-handler-alist)
1774 (if (file-accessible-directory-p default-directory
)
1778 ;; It would be nice to make process-connection-type nil,
1779 ;; but that doesn't work: ftp never responds.
1780 ;; Can anyone find a fix for that?
1781 (let ((process-connection-type t
))
1783 (if ange-ftp-gateway-program-interactive
1784 (setq proc
(ange-ftp-gwp-start host user name args
))
1785 (setq proc
(apply 'start-process name name
1786 (append (list ange-ftp-gateway-program
1787 ange-ftp-gateway-host
)
1789 (setq proc
(apply 'start-process name name args
))))
1790 (process-kill-without-query proc
)
1792 (set-buffer (process-buffer proc
))
1793 (internal-ange-ftp-mode))
1794 (set-process-sentinel proc
(function ange-ftp-process-sentinel
))
1795 (set-process-filter proc
(function ange-ftp-process-filter
))
1796 (accept-process-output proc
) ;wait for ftp startup message
1799 (defun internal-ange-ftp-mode ()
1800 "Major mode for interacting with the FTP process.
1802 \\{comint-mode-map}"
1805 (setq major-mode
'internal-ange-ftp-mode
)
1806 (setq mode-name
"Internal Ange-ftp")
1807 (let ((proc (get-buffer-process (current-buffer))))
1808 (goto-char (point-max))
1809 (set-marker (process-mark proc
) (point))
1810 (make-local-variable 'ange-ftp-process-string
)
1811 (setq ange-ftp-process-string
"")
1812 (make-local-variable 'ange-ftp-process-busy
)
1813 (make-local-variable 'ange-ftp-process-result
)
1814 (make-local-variable 'ange-ftp-process-msg
)
1815 (make-local-variable 'ange-ftp-process-multi-skip
)
1816 (make-local-variable 'ange-ftp-process-result-line
)
1817 (make-local-variable 'ange-ftp-process-continue
)
1818 (make-local-variable 'ange-ftp-hash-mark-count
)
1819 (make-local-variable 'ange-ftp-binary-hash-mark-size
)
1820 (make-local-variable 'ange-ftp-ascii-hash-mark-size
)
1821 (make-local-variable 'ange-ftp-hash-mark-unit
)
1822 (make-local-variable 'ange-ftp-xfer-size
)
1823 (make-local-variable 'ange-ftp-last-percent
)
1824 (setq ange-ftp-hash-mark-count
0)
1825 (setq ange-ftp-xfer-size
0)
1826 (setq ange-ftp-process-result-line
"")
1828 (setq comint-prompt-regexp
"^ftp> ")
1829 (make-local-variable 'paragraph-start
)
1830 (setq paragraph-start comint-prompt-regexp
)))
1832 (defun ange-ftp-smart-login (host user pass account proc
)
1833 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
1834 PROC is the FTP-client's process. This routine uses the smart-gateway
1835 host specified in ``ange-ftp-gateway-host''."
1836 (let ((result (ange-ftp-raw-send-cmd
1838 (format "open %s %s"
1839 (ange-ftp-nslookup-host ange-ftp-gateway-host
)
1840 ange-ftp-smart-gateway-port
)
1841 (format "Opening FTP connection to %s via %s"
1843 ange-ftp-gateway-host
))))
1845 (ange-ftp-error host user
1846 (concat "OPEN request failed: "
1848 (setq result
(ange-ftp-raw-send-cmd
1849 proc
(format "user \"%s\"@%s %s %s"
1851 (ange-ftp-nslookup-host host
)
1854 (format "Logging in as user %s@%s"
1858 (ange-ftp-set-passwd host user nil
) ; reset password
1859 (ange-ftp-set-account host user nil
) ; reset account
1860 (ange-ftp-error host user
1861 (concat "USER request failed: "
1864 (defun ange-ftp-normal-login (host user pass account proc
)
1865 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
1866 PROC is the process to the FTP-client."
1867 (let* ((nshost (ange-ftp-nslookup-host host
))
1868 (result (ange-ftp-raw-send-cmd
1870 (format "open %s" nshost
)
1871 (format "Opening FTP connection to %s" host
))))
1873 (ange-ftp-error host user
1874 (concat "OPEN request failed: "
1876 (setq result
(ange-ftp-raw-send-cmd
1878 (if (ange-ftp-use-smart-gateway-p host
)
1879 (format "user \"%s\"@%s %s %s" user nshost pass account
)
1880 (format "user \"%s\" %s %s" user pass account
))
1881 (format "Logging in as user %s@%s" user host
)))
1884 (ange-ftp-set-passwd host user nil
) ;reset password.
1885 (ange-ftp-set-account host user nil
) ;reset account.
1886 (ange-ftp-error host user
1887 (concat "USER request failed: "
1890 ;; ange@hplb.hpl.hp.com says this should not be changed.
1891 (defvar ange-ftp-hash-mark-msgs
1892 "[hH]ash mark [^0-9]*\\([0-9]+\\)"
1893 "*Regexp matching the FTP client's output upon doing a HASH command.")
1895 (defun ange-ftp-guess-hash-mark-size (proc)
1896 (if ange-ftp-send-hash
1898 (set-buffer (process-buffer proc
))
1899 (let* ((status (ange-ftp-raw-send-cmd proc
"hash"))
1900 (result (car status
))
1901 (line (cdr status
)))
1903 (if (string-match ange-ftp-hash-mark-msgs line
)
1904 (let ((size (string-to-int
1908 (setq ange-ftp-ascii-hash-mark-size size
1909 ange-ftp-hash-mark-unit
(ash size -
4))
1911 ;; if a default value for this is set, use that value.
1912 (or ange-ftp-binary-hash-mark-size
1913 (setq ange-ftp-binary-hash-mark-size size
)))))))))
1915 (defun ange-ftp-get-process (host user
)
1916 "Return an FTP subprocess connected to HOST and logged in as USER.
1917 Create a new process if needed."
1918 (let* ((name (ange-ftp-ftp-process-buffer host user
))
1919 (proc (get-process name
)))
1920 (if (and proc
(memq (process-status proc
) '(run open
)))
1922 (let ((pass (ange-ftp-quote-string
1923 (ange-ftp-get-passwd host user
)))
1924 (account (ange-ftp-quote-string
1925 (ange-ftp-get-account host user
))))
1926 ;; grab a suitable process.
1927 (setq proc
(ange-ftp-start-process host user name
))
1929 ;; login to FTP server.
1930 (if (and (ange-ftp-use-smart-gateway-p host
)
1931 ange-ftp-gateway-host
)
1932 (ange-ftp-smart-login host user pass account proc
)
1933 (ange-ftp-normal-login host user pass account proc
))
1935 ;; Tell client to send back hash-marks as progress. It isn't usually
1936 ;; fatal if this command fails.
1937 (ange-ftp-guess-hash-mark-size proc
)
1939 ;; Guess at the host type.
1940 (ange-ftp-guess-host-type host user
)
1942 ;; Run any user-specified hooks. Note that proc, host and user are
1943 ;; dynamically bound at this point.
1944 (run-hooks 'ange-ftp-process-startup-hook
))
1947 ;; Variables for caching host and host-type
1948 (defvar ange-ftp-host-cache nil
)
1949 (defvar ange-ftp-host-type-cache nil
)
1951 ;; If ange-ftp-host-type is called with the optional user
1952 ;; argument, it will attempt to guess the host type by connecting
1953 ;; as user, if necessary. For efficiency, I have tried to give this
1954 ;; optional second argument only when necessary. Have I missed any calls
1955 ;; to ange-ftp-host-type where it should have been supplied?
1957 (defun ange-ftp-host-type (host &optional user
)
1958 "Return a symbol which represents the type of the HOST given.
1959 If the optional argument USER is given, attempts to guess the
1960 host-type by logging in as USER."
1961 (if (eq host ange-ftp-host-cache
)
1962 ange-ftp-host-type-cache
1963 ;; Trigger an ftp connection, in case we need to guess at the host type.
1964 (if (and user
(ange-ftp-get-process host user
) (eq host ange-ftp-host-cache
))
1965 ange-ftp-host-type-cache
1966 (setq ange-ftp-host-cache host
1967 ange-ftp-host-type-cache
1968 (cond ((ange-ftp-dumb-unix-host host
)
1970 ;; ((and (fboundp 'ange-ftp-vos-host)
1971 ;; (ange-ftp-vos-host host))
1973 ((and (fboundp 'ange-ftp-vms-host
)
1974 (ange-ftp-vms-host host
))
1976 ((and (fboundp 'ange-ftp-mts-host
)
1977 (ange-ftp-mts-host host
))
1979 ((and (fboundp 'ange-ftp-cms-host
)
1980 (ange-ftp-cms-host host
))
1985 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and
1986 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
1987 ;; without sacrificing speed. Also, having separate variables
1988 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
1989 ;; set an alist to indicate that a host is of a given type. Even with
1990 ;; automatic host type recognition, setting a regexp is still a good idea
1991 ;; (for efficiency) if you log into a particular non-UNIX host frequently.
1993 (defvar ange-ftp-fix-name-func-alist nil
1994 "Alist saying how to convert file name to the host's syntax.
1995 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine
1996 which can change a UNIX file name into a name more suitable for a host of type
1999 (defvar ange-ftp-fix-dir-name-func-alist nil
2000 "Alist saying how to convert directory name to the host's syntax.
2001 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine
2002 which can change UNIX directory name into a directory name more suitable
2003 for a host of type TYPE.")
2005 ;; *** Perhaps the sense of this variable should be inverted, since there
2006 ;; *** is only 1 host type that can take ls-style listing options.
2007 (defvar ange-ftp-dumb-host-types
'(dumb-unix)
2008 "List of host types that can't take UNIX ls-style listing options.")
2010 (defun ange-ftp-send-cmd (host user cmd
&optional msg cont nowait
)
2011 "Find an ftp process connected to HOST logged in as USER and send it CMD.
2012 MSG is an optional status message to be output before and after issuing the
2014 See the documentation for ange-ftp-raw-send-cmd for a description of CONT
2016 ;; Handle conversion to remote file name syntax and remote ls option
2018 (let ((cmd0 (car cmd
))
2020 (ange-ftp-this-user user
)
2021 (ange-ftp-this-host host
)
2022 (ange-ftp-this-msg msg
)
2023 cmd2 cmd3 host-type fix-name-func
)
2027 ;; pwd case (We don't care what host-type.)
2030 ;; cmd == 'dir "remote-name" "local-name" "ls-switches"
2032 (setq cmd2
(nth 2 cmd
)
2033 host-type
(ange-ftp-host-type host user
))
2034 ;; This will trigger an FTP login, if one doesn't exist
2037 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist
))
2041 ;; Need to deal with the HP-UX ftp bug. This should also allow
2042 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will
2044 (and (eq host-type
'unix
)
2045 (string-match "/$" cmd1
)
2046 (not (string-match "R" cmd3
))
2047 (setq cmd1
(concat cmd1
".")))
2048 ;; If the remote ls can take switches, put them in
2049 (or (memq host-type ange-ftp-dumb-host-types
)
2051 cmd1
(format "\"%s %s\"" cmd3 cmd1
))))
2053 ;; First argument is the remote name
2055 (setq fix-name-func
(or (cdr (assq host-type
2056 ange-ftp-fix-name-func-alist
))
2058 (memq cmd0
'(get delete mkdir rmdir cd
)))
2059 (setq cmd1
(funcall fix-name-func cmd1
)))
2061 ;; Second argument is the remote name
2062 ((memq cmd0
'(append put chmod
))
2063 (setq cmd2
(funcall fix-name-func cmd2
)))
2065 ;; Both arguments are remote names
2067 (setq cmd1
(funcall fix-name-func cmd1
)
2068 cmd2
(funcall fix-name-func cmd2
))))
2070 ;; Turn the command into one long string
2071 (setq cmd0
(symbol-name cmd0
))
2072 (setq cmd
(concat cmd0
2073 (and cmd1
(concat " " cmd1
))
2074 (and cmd2
(concat " " cmd2
))))
2076 ;; Actually send the resulting command.
2079 (ange-ftp-raw-send-cmd
2080 (ange-ftp-get-process host user
)
2084 (function (lambda (result line host user
2085 cmd msg cont nowait
)
2087 (setq afsc-result result
2090 (ange-ftp-call-cont cont result line
)
2091 (ange-ftp-raw-send-cmd
2092 (ange-ftp-get-process host user
)
2096 (function (lambda (result line cont
)
2098 (setq afsc-result result
2100 (ange-ftp-call-cont cont result line
)))
2103 host user cmd msg cont nowait
)
2110 (cons afsc-result afsc-line
))))))
2112 ;; It might be nice to message users about the host type identified,
2113 ;; but there is so much other messaging going on, it would not be
2114 ;; seen. No point in slowing things down just so users can read
2115 ;; a host type message.
2117 (defconst ange-ftp-cms-name-template
2119 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?"
2120 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$"))
2121 (defconst ange-ftp-vms-name-template
2122 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$")
2123 (defconst ange-ftp-mts-name-template
2124 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$")
2126 (defun ange-ftp-guess-host-type (host user
)
2127 "Guess at the the host type of HOST.
2128 Works by doing a pwd and examining the directory syntax."
2129 (let ((host-type (ange-ftp-host-type host
))
2130 (key (concat host
"/" user
"/~")))
2131 (if (eq host-type
'unix
)
2132 ;; Note that ange-ftp-host-type returns unix as the default value.
2134 (let* ((result (ange-ftp-get-pwd host user
))
2138 (message "Warning! Unable to get home directory")
2141 "^450 No current working directory defined$"
2144 ;; We'll assume that if pwd bombs with this
2145 ;; error message, then it's CMS.
2147 (ange-ftp-add-cms-host host
)
2148 (setq ange-ftp-host-cache host
2149 ange-ftp-host-type-cache
'cms
))))
2152 ((string-match ange-ftp-vms-name-template dir
)
2153 (ange-ftp-add-vms-host host
)
2154 ;; The add-host functions clear the host type cache.
2155 ;; Therefore, need to set the cache afterwards.
2156 (setq ange-ftp-host-cache host
2157 ange-ftp-host-type-cache
'vms
))
2160 ((string-match ange-ftp-mts-name-template dir
)
2161 (ange-ftp-add-mts-host host
)
2162 (setq ange-ftp-host-cache host
2163 ange-ftp-host-type-cache
'mts
))
2166 ((string-match ange-ftp-cms-name-template dir
)
2167 (ange-ftp-add-cms-host host
)
2168 (setq ange-ftp-host-cache host
2169 ange-ftp-host-type-cache
'cms
))
2173 (setq ange-ftp-host-cache host
2174 ange-ftp-host-type-cache
'unix
)))
2176 ;; Now that we have done a pwd, might as well put it in
2177 ;; the expand-dir hashtable.
2178 (let ((ange-ftp-this-user user
)
2179 (ange-ftp-this-host host
))
2180 (setq fix-name-func
(cdr (assq ange-ftp-host-type-cache
2181 ange-ftp-fix-name-func-alist
)))
2183 (setq dir
(funcall fix-name-func dir
'reverse
))))
2184 (ange-ftp-put-hash-entry key dir
2185 ange-ftp-expand-dir-hashtable
))))
2187 ;; In the special case of CMS make sure that know the
2188 ;; expansion of the home minidisk now, because we will
2189 ;; be doing a lot of cd's.
2190 (if (and (eq host-type
'cms
)
2191 (not (ange-ftp-hash-entry-exists-p
2192 key ange-ftp-expand-dir-hashtable
)))
2193 (let ((dir (car (ange-ftp-get-pwd host user
))))
2195 (ange-ftp-put-hash-entry key
(concat "/" dir
)
2196 ange-ftp-expand-dir-hashtable
)
2197 (message "Warning! Unable to get home directory")
2201 ;;;; ------------------------------------------------------------
2202 ;;;; Remote file and directory listing support.
2203 ;;;; ------------------------------------------------------------
2205 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands
2206 ;; to take switch arguments.
2207 (defun ange-ftp-dumb-unix-host (host)
2208 (and host ange-ftp-dumb-unix-host-regexp
2210 (string-match ange-ftp-dumb-unix-host-regexp host
))))
2212 (defun ange-ftp-add-dumb-unix-host (host)
2213 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp."
2215 (list (read-string "Host: "
2216 (let ((name (or (buffer-file-name) default-directory
)))
2217 (and name
(car (ange-ftp-ftp-name name
)))))))
2218 (if (not (ange-ftp-dumb-unix-host host
))
2219 (setq ange-ftp-dumb-unix-host-regexp
2220 (concat "^" (regexp-quote host
) "$"
2221 (and ange-ftp-dumb-unix-host-regexp
"\\|")
2222 ange-ftp-dumb-unix-host-regexp
)
2223 ange-ftp-host-cache nil
)))
2225 (defvar ange-ftp-parse-list-func-alist nil
2226 "Alist saying how to parse directory listings for certain OS types.
2227 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine
2228 which can parse the output from a DIR listing for a host of type TYPE.")
2230 ;; With no-error nil, this function returns:
2231 ;; an error if file is not an ange-ftp-name
2232 ;; (This should never happen.)
2233 ;; an error if either the listing is unreadable or there is an ftp error.
2234 ;; the listing (a string), if everything works.
2236 ;; With no-error t, it returns:
2237 ;; an error if not an ange-ftp-name
2238 ;; error if listing is unreable (most likely caused by a slow connection)
2239 ;; nil if ftp error (this is because although asking to list a nonexistent
2240 ;; directory on a remote unix machine usually (except
2241 ;; maybe for dumb hosts) returns an ls error, but no
2242 ;; ftp error, if the same is done on a VMS machine,
2243 ;; an ftp error is returned. Need to trap the error
2244 ;; so we can go on and try to list the parent.)
2245 ;; the listing, if everything works.
2247 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory
2248 ;; in the wildcard case. Then we make a relative directory listing
2249 ;; of FILE within the directory specified by `default-directory'.
2251 (defun ange-ftp-ls (file lsargs parse
&optional no-error wildcard
)
2252 "Return the output of an `DIR' or `ls' command done over ftp.
2253 FILE is the full name of the remote file, LSARGS is any args to pass to the
2254 `ls' command, and PARSE specifies that the output should be parsed and stored
2255 away in the internal cache."
2256 ;; If parse is t, we assume that file is a directory. i.e. we only parse
2257 ;; full directory listings.
2258 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file
))
2259 (parsed (ange-ftp-ftp-name ange-ftp-this-file
)))
2261 (let* ((host (nth 0 parsed
))
2262 (user (nth 1 parsed
))
2263 (name (ange-ftp-quote-string (nth 2 parsed
)))
2264 (key (directory-file-name ange-ftp-this-file
))
2265 (host-type (ange-ftp-host-type host user
))
2266 (dumb (memq host-type ange-ftp-dumb-host-types
))
2270 (if (string-equal name
"")
2272 (ange-ftp-real-file-name-as-directory
2273 (ange-ftp-expand-dir host user
"~"))))
2274 (if (and ange-ftp-ls-cache-file
2275 (string-equal key ange-ftp-ls-cache-file
)
2276 ;; Don't care about lsargs for dumb hosts.
2277 (or dumb
(string-equal lsargs ange-ftp-ls-cache-lsargs
)))
2278 ange-ftp-ls-cache-res
2279 (setq temp
(ange-ftp-make-tmp-name host
))
2282 (ange-ftp-cd host user
(file-name-directory name
))
2283 (setq lscmd
(list 'dir file temp lsargs
)))
2284 (setq lscmd
(list 'dir name temp lsargs
)))
2286 (if (car (setq result
(ange-ftp-send-cmd
2290 (format "Listing %s"
2291 (ange-ftp-abbreviate-filename
2292 ange-ftp-this-file
)))))
2294 (set-buffer (get-buffer-create
2295 ange-ftp-data-buffer-name
))
2297 (if (ange-ftp-real-file-readable-p temp
)
2298 (ange-ftp-real-insert-file-contents temp
)
2299 (sleep-for ange-ftp-retry-time
)
2300 ;wait for file to possibly appear
2301 (if (ange-ftp-real-file-readable-p temp
)
2303 (ange-ftp-real-insert-file-contents temp
)
2304 (ange-ftp-error host user
2306 "list data file %s not readable"
2313 (cdr (assq host-type
2314 ange-ftp-parse-list-func-alist
)))
2315 (funcall parse-func
)
2316 (ange-ftp-parse-dired-listing lsargs
))))
2317 (setq ange-ftp-ls-cache-file key
2318 ange-ftp-ls-cache-lsargs lsargs
2319 ; For dumb hosts-types this is
2320 ; meaningless but harmless.
2321 ange-ftp-ls-cache-res
(buffer-string))
2322 ;; (kill-buffer (current-buffer))
2323 ange-ftp-ls-cache-res
)
2326 (ange-ftp-error host user
2327 (concat "DIR failed: " (cdr result
)))))
2328 (ange-ftp-del-tmp-name temp
))))
2329 (error "Should never happen. Please report. Bug ref. no.: 1"))))
2331 ;;;; ------------------------------------------------------------
2332 ;;;; Directory information caching support.
2333 ;;;; ------------------------------------------------------------
2335 (defconst ange-ftp-date-regexp
2337 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct"
2338 "\\|Nov\\|Dec\\) +[0-3]?[0-9] "))
2340 (defvar ange-ftp-add-file-entry-alist nil
2341 "Alist saying how to add file entries on certain OS types.
2342 Association list of pairs \( TYPE \. FUNC \), where FUNC
2343 is a function to be used to add a file entry for the OS TYPE. The
2344 main reason for this alist is to deal with file versions in VMS.")
2346 (defvar ange-ftp-delete-file-entry-alist nil
2347 "Alist saying how to delete files on certain OS types.
2348 Association list of pairs \( TYPE \. FUNC \), where FUNC
2349 is a function to be used to delete a file entry for the OS TYPE.
2350 The main reason for this alist is to deal with file versions in VMS.")
2352 (defun ange-ftp-add-file-entry (name &optional dir-p
)
2353 "Add a file entry for file NAME, if its directory info exists."
2354 (funcall (or (cdr (assq (ange-ftp-host-type
2355 (car (ange-ftp-ftp-name name
)))
2356 ange-ftp-add-file-entry-alist
))
2357 'ange-ftp-internal-add-file-entry
)
2359 (setq ange-ftp-ls-cache-file nil
))
2361 (defun ange-ftp-delete-file-entry (name &optional dir-p
)
2362 "Delete the file entry for file NAME, if its directory info exists."
2363 (funcall (or (cdr (assq (ange-ftp-host-type
2364 (car (ange-ftp-ftp-name name
)))
2365 ange-ftp-delete-file-entry-alist
))
2366 'ange-ftp-internal-delete-file-entry
)
2368 (setq ange-ftp-ls-cache-file nil
))
2370 (defmacro ange-ftp-parse-filename
()
2371 ;;Extract the filename from the current line of a dired-like listing.
2372 (` (let ((eol (progn (end-of-line) (point))))
2374 (if (re-search-forward ange-ftp-date-regexp eol t
)
2376 (skip-chars-forward " ")
2377 (skip-chars-forward "^ " eol
)
2378 (skip-chars-forward " " eol
)
2379 ;; We bomb on filenames starting with a space.
2380 (buffer-substring (point) eol
))))))
2382 ;; This deals with the F switch. Should also do something about
2383 ;; unquoting names obtained with the SysV b switch and the GNU Q
2384 ;; switch. See Sebastian's dired-get-filename.
2386 (defmacro ange-ftp-ls-parser
()
2387 ;; Note that switches is dynamically bound.
2388 ;; Meant to be called by ange-ftp-parse-dired-listing
2389 (` (let ((tbl (ange-ftp-make-hashtable))
2390 (used-F (and (stringp switches
)
2391 (string-match "F" switches
)))
2392 file-type symlink directory file
)
2393 (while (setq file
(ange-ftp-parse-filename))
2395 (skip-chars-forward "\t 0-9")
2396 (setq file-type
(following-char)
2397 directory
(eq file-type ?d
))
2398 (if (eq file-type ?l
)
2399 (if (string-match " -> " file
)
2400 (setq symlink
(substring file
(match-end 0))
2401 file
(substring file
0 (match-beginning 0)))
2405 ;; Only do a costly regexp search if the F switch was used.
2407 (not (string-equal file
""))
2409 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"))
2410 (let ((socket (eq file-type ?s
))
2412 (and (not symlink
) ; x bits don't mean a thing for symlinks
2413 (string-match "[xst]"
2424 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX)
2425 ;; and others don't. (sigh...) Beware, that some Unix's don't
2426 ;; seem to believe in the F-switch
2427 (if (or (and symlink
(string-match "@$" file
))
2428 (and directory
(string-match "/$" file
))
2429 (and executable
(string-match "*$" file
))
2430 (and socket
(string-match "=$" file
)))
2431 (setq file
(substring file
0 -
1)))))
2432 (ange-ftp-put-hash-entry file
(or symlink directory
) tbl
)
2434 (ange-ftp-put-hash-entry "." t tbl
)
2435 (ange-ftp-put-hash-entry ".." t tbl
)
2438 ;;; The dl stuff for descriptive listings
2440 (defvar ange-ftp-dl-dir-regexp nil
2441 "Regexp matching directories which are listed in dl format.
2442 This regexp should not be anchored with a trailing `$', because it should
2443 match subdirectories as well.")
2445 (defun ange-ftp-add-dl-dir (dir)
2446 "Interactively adds a DIR to ange-ftp-dl-dir-regexp."
2448 (list (read-string "Directory: "
2449 (let ((name (or (buffer-file-name) default-directory
)))
2450 (and name
(ange-ftp-ftp-name name
)
2451 (file-name-directory name
))))))
2452 (if (not (and ange-ftp-dl-dir-regexp
2453 (string-match ange-ftp-dl-dir-regexp dir
)))
2454 (setq ange-ftp-dl-dir-regexp
2455 (concat "^" (regexp-quote dir
)
2456 (and ange-ftp-dl-dir-regexp
"\\|")
2457 ange-ftp-dl-dir-regexp
))))
2459 (defmacro ange-ftp-dl-parser
()
2460 ;; Parse the current buffer, which is assumed to be a descriptive
2461 ;; listing, and return a hashtable.
2462 (` (let ((tbl (ange-ftp-make-hashtable)))
2464 (ange-ftp-put-hash-entry
2465 (buffer-substring (point)
2467 (skip-chars-forward "^ /\n")
2469 (eq (following-char) ?
/)
2472 (ange-ftp-put-hash-entry "." t tbl
)
2473 (ange-ftp-put-hash-entry ".." t tbl
)
2476 ;; Parse the current buffer which is assumed to be in a dired-like listing
2477 ;; format, and return a hashtable as the result. If the listing is not really
2478 ;; a listing, then return nil.
2480 (defun ange-ftp-parse-dired-listing (&optional switches
)
2483 ((looking-at "^total [0-9]+$")
2485 ;; Some systems put in a blank line here.
2486 (if (eolp) (forward-line 1))
2487 (ange-ftp-ls-parser))
2488 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'")
2489 ;; It's an ls error message.
2491 ((eobp) ; i.e. (zerop (buffer-size))
2492 ;; This could be one of:
2493 ;; (1) An Ultrix ls error message
2494 ;; (2) A listing with the A switch of an empty directory
2495 ;; on a machine which doesn't give a total line.
2496 ;; (3) The twilight zone.
2497 ;; We'll assume (1) for now.
2499 ((re-search-forward ange-ftp-date-regexp nil t
)
2501 (ange-ftp-ls-parser))
2502 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t
)
2503 ;; It's a dl listing (I hope).
2504 ;; file is bound by the call to ange-ftp-ls
2505 (ange-ftp-add-dl-dir ange-ftp-this-file
)
2507 (ange-ftp-dl-parser))
2510 (defun ange-ftp-set-files (directory files
)
2511 "For a given DIRECTORY, set or change the associated FILES hashtable."
2512 (and files
(ange-ftp-put-hash-entry (file-name-as-directory directory
)
2513 files ange-ftp-files-hashtable
)))
2515 (defun ange-ftp-get-files (directory &optional no-error
)
2516 "Given a given DIRECTORY, return a hashtable of file entries.
2517 This will give an error or return nil, depending on the value of
2518 NO-ERROR, if a listing for DIRECTORY cannot be obtained."
2519 (setq directory
(file-name-as-directory directory
)) ;normalize
2520 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable
)
2522 (and (ange-ftp-ls directory
2523 ;; This is an efficiency hack. We try to
2524 ;; anticipate what sort of listing dired
2525 ;; might want, and cache just such a listing.
2526 (if (and (boundp 'dired-actual-switches
)
2527 (stringp dired-actual-switches
)
2528 ;; We allow the A switch, which lists
2529 ;; all files except "." and "..".
2530 ;; This is OK because we manually
2531 ;; insert these entries
2532 ;; in the hash table.
2534 "[aA]" dired-actual-switches
)
2536 "l" dired-actual-switches
)
2538 "R" dired-actual-switches
)))
2539 dired-actual-switches
2540 (if (and (boundp 'dired-listing-switches
)
2541 (stringp dired-listing-switches
)
2543 "[aA]" dired-listing-switches
)
2545 "l" dired-listing-switches
)
2547 "R" dired-listing-switches
)))
2548 dired-listing-switches
2551 (ange-ftp-get-hash-entry
2552 directory ange-ftp-files-hashtable
)))))
2554 ;; Given NAME, return the file part that can be used for looking up the
2555 ;; file's entry in a hashtable.
2556 (defmacro ange-ftp-get-file-part
(name)
2557 (` (let ((file (file-name-nondirectory (, name
))))
2558 (if (string-equal file
"")
2562 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are
2563 ;; allowed to determine if NAME is a sub-directory by listing it directly,
2564 ;; rather than listing its parent directory. This is used for efficiency so
2565 ;; that a wasted listing is not done:
2566 ;; 1. When looking for a .dired file in dired-x.el.
2567 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid
2568 ;; subdirectory. This is of course an OS dependent judgement.
2570 (defmacro ange-ftp-allow-child-lookup
(dir file
)
2572 (let* ((efile (, file
)) ; expand once.
2574 (parsed (ange-ftp-ftp-name edir
))
2575 (host-type (ange-ftp-host-type
2578 ;;; This variable seems not to exist in Emacs 19 -- rms.
2579 ;;; ;; Deal with dired
2580 ;;; (and (boundp 'dired-local-variables-file)
2581 ;;; (stringp dired-local-variables-file)
2582 ;;; (string-equal dired-local-variables-file efile))
2583 ;; No dots in dir names in vms.
2584 (and (eq host-type
'vms
)
2585 (string-match "\\." efile
))
2586 ;; No subdirs in mts of cms.
2587 (and (memq host-type
'(mts cms
))
2588 (not (string-equal "/" (nth 2 parsed
)))))))))
2590 (defun ange-ftp-file-entry-p (name)
2591 "Given NAME, return whether there is a file entry for it."
2592 (let* ((name (directory-file-name name
))
2593 (dir (file-name-directory name
))
2594 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable
))
2595 (file (ange-ftp-get-file-part name
)))
2597 (ange-ftp-hash-entry-exists-p file ent
)
2598 (or (and (ange-ftp-allow-child-lookup dir file
)
2599 (setq ent
(ange-ftp-get-files name t
))
2600 ;; Try a child lookup. i.e. try to list file as a
2601 ;; subdirectory of dir. This is a good idea because
2602 ;; we may not have read permission for file's parent. Also,
2603 ;; people tend to work down directory trees anyway. We use
2604 ;; no-error ;; because if file does not exist as a subdir.,
2605 ;; then dumb hosts will give an ftp error. Smart unix hosts
2606 ;; will simply send back the ls
2608 (ange-ftp-get-hash-entry "." ent
))
2609 ;; Child lookup failed. Try the parent. If this bombs,
2610 ;; we are at wits end -- signal an error.
2611 ;; Problem: If this signals an error, the error message
2612 ;; may not have a lot to do with what went wrong.
2613 (ange-ftp-hash-entry-exists-p file
2614 (ange-ftp-get-files dir
))))))
2616 (defun ange-ftp-get-file-entry (name)
2617 "Given NAME, return the given file entry.
2618 The entry will be either t for a directory, nil for a normal file,
2619 or a string for a symlink. If the file isn't in the hashtable,
2620 this also returns nil."
2621 (let* ((name (directory-file-name name
))
2622 (dir (file-name-directory name
))
2623 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable
))
2624 (file (ange-ftp-get-file-part name
)))
2626 (ange-ftp-get-hash-entry file ent
)
2627 (or (and (ange-ftp-allow-child-lookup dir file
)
2628 (setq ent
(ange-ftp-get-files name t
))
2629 (ange-ftp-get-hash-entry "." ent
))
2630 ;; i.e. it's a directory by child lookup
2631 (ange-ftp-get-hash-entry file
2632 (ange-ftp-get-files dir
))))))
2634 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p
)
2637 (setq name
(file-name-as-directory name
))
2638 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable
)
2639 (setq name
(directory-file-name name
))))
2640 ;; Note that file-name-as-directory followed by directory-file-name
2641 ;; serves to canonicalize directory file names to their unix form.
2642 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO
2643 (let ((files (ange-ftp-get-hash-entry (file-name-directory name
)
2644 ange-ftp-files-hashtable
)))
2646 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name
)
2649 (defun ange-ftp-internal-add-file-entry (name &optional dir-p
)
2651 (setq name
(directory-file-name name
)))
2652 (let ((files (ange-ftp-get-hash-entry (file-name-directory name
)
2653 ange-ftp-files-hashtable
)))
2655 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name
)
2659 (defun ange-ftp-wipe-file-entries (host user
)
2660 "Get rid of entry for HOST, USER pair from file entry information hashtable."
2661 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable
))))
2662 (ange-ftp-map-hashtable
2665 (let ((parsed (ange-ftp-ftp-name key
)))
2667 (let ((h (nth 0 parsed
))
2669 (or (and (equal host h
) (equal user u
))
2670 (ange-ftp-put-hash-entry key val new-tbl
)))))))
2671 ange-ftp-files-hashtable
)
2672 (setq ange-ftp-files-hashtable new-tbl
)))
2674 ;;;; ------------------------------------------------------------
2675 ;;;; File transfer mode support.
2676 ;;;; ------------------------------------------------------------
2678 (defun ange-ftp-set-binary-mode (host user
)
2679 "Tell the ftp process for the given HOST & USER to switch to binary mode."
2680 (let ((result (ange-ftp-send-cmd host user
'(type "binary"))))
2681 (if (not (car result
))
2682 (ange-ftp-error host user
(concat "BINARY failed: " (cdr result
)))
2684 (set-buffer (process-buffer (ange-ftp-get-process host user
)))
2685 (and ange-ftp-binary-hash-mark-size
2686 (setq ange-ftp-hash-mark-unit
2687 (ash ange-ftp-binary-hash-mark-size -
4)))))))
2689 (defun ange-ftp-set-ascii-mode (host user
)
2690 "Tell the ftp process for the given HOST & USER to switch to ascii mode."
2691 (let ((result (ange-ftp-send-cmd host user
'(type "ascii"))))
2692 (if (not (car result
))
2693 (ange-ftp-error host user
(concat "ASCII failed: " (cdr result
)))
2695 (set-buffer (process-buffer (ange-ftp-get-process host user
)))
2696 (and ange-ftp-ascii-hash-mark-size
2697 (setq ange-ftp-hash-mark-unit
2698 (ash ange-ftp-ascii-hash-mark-size -
4)))))))
2700 (defun ange-ftp-cd (host user dir
)
2701 (let ((result (ange-ftp-send-cmd host user
(list 'cd dir
) "Doing CD")))
2703 (ange-ftp-error host user
(concat "CD failed: " (cdr result
))))))
2705 (defun ange-ftp-get-pwd (host user
)
2706 "Attempts to get the current working directory for the given HOST/USER pair.
2707 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found,
2708 and LINE is the relevant success or fail line from the FTP-client."
2709 (let* ((result (ange-ftp-send-cmd host user
'(pwd) "Getting PWD"))
2714 (and (or (string-match "\"\\([^\"]*\\)\"" line
)
2715 (string-match " \\([^ ]+\\) " line
)) ; stone-age VMS servers!
2716 (setq dir
(substring line
2721 ;;; ------------------------------------------------------------
2722 ;;; expand-file-name and friends...which currently don't work
2723 ;;; ------------------------------------------------------------
2725 (defun ange-ftp-expand-dir (host user dir
)
2726 "Return the result of doing a PWD in the current FTP session.
2727 Use the connection to machine HOST
2728 logged in as user USER and cd'd to directory DIR."
2729 (let* ((host-type (ange-ftp-host-type host user
))
2730 ;; It is more efficient to call ange-ftp-host-type
2731 ;; before binding res, because ange-ftp-host-type sometimes
2732 ;; adds to the info in the expand-dir-hashtable.
2734 (cdr (assq host-type ange-ftp-fix-name-func-alist
)))
2735 (key (concat host
"/" user
"/" dir
))
2736 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable
)))
2740 (string-equal user
"anonymous")
2741 (string-equal user
"ftp")
2742 (not (eq host-type
'unix
))
2743 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp
2745 ange-ftp-good-msgs
))
2746 (result (ange-ftp-send-cmd host user
2747 (list 'get dir
"/dev/null")
2748 (format "expanding %s" dir
)))
2749 (line (cdr result
)))
2751 (if (string-match ange-ftp-expand-dir-regexp line
)
2756 (if (string-equal dir
"~")
2757 (setq res
(car (ange-ftp-get-pwd host user
)))
2758 (let ((home (ange-ftp-expand-dir host user
"~")))
2760 (and (ange-ftp-cd host user dir
)
2761 (setq res
(car (ange-ftp-get-pwd host user
))))
2762 (ange-ftp-cd host user home
)))))
2764 (let ((ange-ftp-this-user user
)
2765 (ange-ftp-this-host host
))
2767 (setq res
(funcall fix-name-func res
'reverse
)))
2768 (ange-ftp-put-hash-entry
2769 key res ange-ftp-expand-dir-hashtable
)))
2772 (defun ange-ftp-canonize-filename (n)
2773 "Take a string and short-circuit //, /. and /.."
2774 (if (string-match "[^:]+//" n
) ;don't upset Apollo users
2775 (setq n
(substring n
(1- (match-end 0)))))
2776 (let ((parsed (ange-ftp-ftp-name n
)))
2778 (let ((host (car parsed
))
2779 (user (nth 1 parsed
))
2780 (name (nth 2 parsed
)))
2782 ;; See if remote name is absolute. If so then just expand it and
2783 ;; replace the name component of the overall name.
2784 (cond ((string-match "^/" name
)
2787 ;; Name starts with ~ or ~user. Resolve that part of the name
2788 ;; making it absolute then re-expand it.
2789 ((string-match "^~[^/]*" name
)
2790 (let* ((tilda (substring name
2793 (rest (substring name
(match-end 0)))
2794 (dir (ange-ftp-expand-dir host user tilda
)))
2796 (setq name
(concat dir rest
))
2797 (error "User \"%s\" is not known"
2798 (substring tilda
1)))))
2800 ;; relative name. Tack on homedir and re-expand.
2802 (let ((dir (ange-ftp-expand-dir host user
"~")))
2805 (ange-ftp-real-file-name-as-directory dir
)
2807 (error "Unable to obtain CWD")))))
2809 ;; If name starts with //, preserve that, for apollo system.
2810 (if (not (string-match "^//" name
))
2812 (setq name
(ange-ftp-real-expand-file-name name
))
2814 (if (string-match "^//" name
)
2815 (setq name
(substring name
1)))))
2817 ;; Now substitute the expanded name back into the overall filename.
2818 (ange-ftp-replace-name-component n name
))
2820 ;; non-ange-ftp name. Just expand normally.
2821 (if (eq (string-to-char n
) ?
/)
2822 (ange-ftp-real-expand-file-name n
)
2823 (ange-ftp-real-expand-file-name
2824 (ange-ftp-real-file-name-nondirectory n
)
2825 (ange-ftp-real-file-name-directory n
))))))
2827 (defun ange-ftp-expand-file-name (name &optional default
)
2828 "Documented as original."
2830 (if (eq (string-to-char name
) ?
/)
2831 (while (cond ((string-match "[^:]+//" name
) ;don't upset Apollo users
2832 (setq name
(substring name
(1- (match-end 0)))))
2833 ((string-match "/~" name
)
2834 (setq name
(substring name
(1- (match-end 0))))))))
2835 (cond ((eq (string-to-char name
) ?~
)
2836 (ange-ftp-real-expand-file-name name
))
2837 ((eq (string-to-char name
) ?
/)
2838 (ange-ftp-canonize-filename name
))
2839 ((zerop (length name
))
2840 (ange-ftp-canonize-filename (or default default-directory
)))
2841 ((ange-ftp-canonize-filename
2842 (concat (file-name-as-directory (or default default-directory
))
2845 ;;; These are problems--they are currently not enabled.
2847 (defvar ange-ftp-file-name-as-directory-alist nil
2848 "Association list of \( TYPE \. FUNC \) pairs.
2849 FUNC converts a filename to a directory name for the operating
2852 (defun ange-ftp-file-name-as-directory (name)
2853 "Documented as original."
2854 (let ((parsed (ange-ftp-ftp-name name
)))
2856 (if (string-equal (nth 2 parsed
) "")
2858 (funcall (or (cdr (assq
2859 (ange-ftp-host-type (car parsed
))
2860 ange-ftp-file-name-as-directory-alist
))
2861 'ange-ftp-real-file-name-as-directory
)
2863 (ange-ftp-real-file-name-as-directory name
))))
2865 (defun ange-ftp-file-name-directory (name)
2866 "Documented as original."
2867 (let ((parsed (ange-ftp-ftp-name name
)))
2869 (let ((filename (nth 2 parsed
)))
2870 (if (save-match-data
2871 (string-match "^~[^/]*$" filename
))
2873 (ange-ftp-replace-name-component
2875 (ange-ftp-real-file-name-directory filename
))))
2876 (ange-ftp-real-file-name-directory name
))))
2878 (defun ange-ftp-file-name-nondirectory (name)
2879 "Documented as original."
2880 (let ((parsed (ange-ftp-ftp-name name
)))
2882 (let ((filename (nth 2 parsed
)))
2883 (if (save-match-data
2884 (string-match "^~[^/]*$" filename
))
2886 (ange-ftp-real-file-name-nondirectory name
)))
2887 (ange-ftp-real-file-name-nondirectory name
))))
2889 (defun ange-ftp-directory-file-name (dir)
2890 "Documented as original."
2891 (let ((parsed (ange-ftp-ftp-name dir
)))
2893 (ange-ftp-replace-name-component
2895 (ange-ftp-real-directory-file-name (nth 2 parsed
)))
2896 (ange-ftp-real-directory-file-name dir
))))
2899 ;;; Hooks that handle Emacs primitives.
2901 ;; Returns non-nil if should transfer FILE in binary mode.
2902 (defun ange-ftp-binary-file (file)
2904 (string-match ange-ftp-binary-file-name-regexp file
)))
2906 (defun ange-ftp-write-region (start end filename
&optional append visit
)
2907 (setq filename
(expand-file-name filename
))
2908 (let ((parsed (ange-ftp-ftp-name filename
)))
2910 (let* ((host (nth 0 parsed
))
2911 (user (nth 1 parsed
))
2912 (name (ange-ftp-quote-string (nth 2 parsed
)))
2913 (temp (ange-ftp-make-tmp-name host
))
2914 (binary (or (ange-ftp-binary-file filename
)
2915 (eq (ange-ftp-host-type host user
) 'unix
)))
2916 (cmd (if append
'append
'put
))
2917 (abbr (ange-ftp-abbreviate-filename filename
)))
2920 (let ((executing-macro t
)
2921 (filename (buffer-file-name))
2922 (mod-p (buffer-modified-p)))
2924 (ange-ftp-real-write-region start end temp nil visit
)
2926 (setq buffer-file-name filename
)
2927 (set-buffer-modified-p mod-p
)))
2929 (ange-ftp-set-binary-mode host user
))
2931 ;; tell the process filter what size the transfer will be.
2932 (let ((attr (file-attributes temp
)))
2934 (ange-ftp-set-xfer-size host user
(nth 7 attr
))))
2936 ;; put or append the file.
2937 (let ((result (ange-ftp-send-cmd host user
2938 (list cmd temp name
)
2939 (format "Writing %s" abbr
))))
2943 "Opening output file"
2944 (format "FTP Error: \"%s\"" (cdr result
))
2946 (ange-ftp-del-tmp-name temp
)
2948 (ange-ftp-set-ascii-mode host user
)))
2951 (set-visited-file-modtime '(0 0))
2952 (ange-ftp-set-buffer-mode)
2953 (setq buffer-file-name filename
)
2954 (set-buffer-modified-p nil
)))
2955 (ange-ftp-message "Wrote %s" abbr
)
2956 (ange-ftp-add-file-entry filename
))
2957 (ange-ftp-real-write-region start end filename append visit
))))
2959 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace
)
2960 (barf-if-buffer-read-only)
2961 (setq filename
(expand-file-name filename
))
2962 (let ((parsed (ange-ftp-ftp-name filename
)))
2966 (setq buffer-file-name filename
))
2967 (if (or (file-exists-p filename
)
2969 (setq ange-ftp-ls-cache-file nil
)
2970 (ange-ftp-del-hash-entry (file-name-directory filename
)
2971 ange-ftp-files-hashtable
)
2972 (file-exists-p filename
)))
2973 (let* ((host (nth 0 parsed
))
2974 (user (nth 1 parsed
))
2975 (name (ange-ftp-quote-string (nth 2 parsed
)))
2976 (temp (ange-ftp-make-tmp-name host
))
2977 (binary (or (ange-ftp-binary-file filename
)
2978 (eq (ange-ftp-host-type host user
) 'unix
)))
2979 (abbr (ange-ftp-abbreviate-filename filename
))
2984 (ange-ftp-set-binary-mode host user
))
2985 (let ((result (ange-ftp-send-cmd host user
2986 (list 'get name temp
)
2987 (format "Retrieving %s" abbr
))))
2991 "Opening input file"
2992 (format "FTP Error: \"%s\"" (cdr result
))
2994 (if (or (ange-ftp-real-file-readable-p temp
)
2995 (sleep-for ange-ftp-retry-time
)
2996 ;; Wait for file to hopefully appear.
2997 (ange-ftp-real-file-readable-p temp
))
3000 (nth 1 (ange-ftp-real-insert-file-contents
3001 temp visit beg end replace
)))
3004 "Opening input file:"
3006 "FTP Error: %s not arrived or readable"
3009 (ange-ftp-set-ascii-mode host user
))
3010 (ange-ftp-del-tmp-name temp
))
3013 (set-visited-file-modtime '(0 0))
3014 (setq buffer-file-name filename
)))
3015 (list filename size
))
3018 "Opening input file"
3020 (ange-ftp-real-insert-file-contents filename visit beg end replace
))))
3022 (defun ange-ftp-expand-symlink (file dir
)
3023 (if (file-name-absolute-p file
)
3024 (ange-ftp-replace-name-component dir file
)
3025 (expand-file-name file dir
)))
3027 (defun ange-ftp-file-symlink-p (file)
3028 ;; call ange-ftp-expand-file-name rather than the normal
3029 ;; expand-file-name to stop loops when using a package that
3030 ;; redefines both file-symlink-p and expand-file-name.
3031 (setq file
(ange-ftp-expand-file-name file
))
3032 (if (ange-ftp-ftp-name file
)
3034 (ange-ftp-get-hash-entry
3035 (ange-ftp-get-file-part file
)
3036 (ange-ftp-get-files (file-name-directory file
)))))
3037 (if (stringp file-ent
)
3038 (if (file-name-absolute-p file-ent
)
3039 (ange-ftp-replace-name-component
3040 (file-name-directory file
) file-ent
)
3042 (ange-ftp-real-file-symlink-p file
)))
3044 (defun ange-ftp-file-exists-p (name)
3045 (setq name
(expand-file-name name
))
3046 (if (ange-ftp-ftp-name name
)
3047 (if (ange-ftp-file-entry-p name
)
3048 (let ((file-ent (ange-ftp-get-file-entry name
)))
3049 (if (stringp file-ent
)
3051 (ange-ftp-expand-symlink file-ent
3052 (file-name-directory
3053 (directory-file-name name
))))
3055 (ange-ftp-real-file-exists-p name
)))
3057 (defun ange-ftp-file-directory-p (name)
3058 (setq name
(expand-file-name name
))
3059 (if (ange-ftp-ftp-name name
)
3060 ;; We do a file-name-as-directory on name here because some
3061 ;; machines (VMS) use a .DIR to indicate the filename associated
3062 ;; with a directory. This needs to be canonicalized.
3063 (let ((file-ent (ange-ftp-get-file-entry
3064 (ange-ftp-file-name-as-directory name
))))
3065 (if (stringp file-ent
)
3067 (ange-ftp-expand-symlink file-ent
3068 (file-name-directory
3069 (directory-file-name name
))))
3071 (ange-ftp-real-file-directory-p name
)))
3073 (defun ange-ftp-directory-files (directory &optional full match
3075 (setq directory
(expand-file-name directory
))
3076 (if (ange-ftp-ftp-name directory
)
3078 (ange-ftp-barf-if-not-directory directory
)
3079 (let ((tail (ange-ftp-hash-table-keys
3080 (ange-ftp-get-files directory
)))
3082 (setq directory
(file-name-as-directory directory
))
3087 (if (or (not match
) (string-match match f
))
3089 (cons (if full
(concat directory f
) f
) files
)))))
3091 (apply 'ange-ftp-real-directory-files directory full match v19-args
)))
3093 (defun ange-ftp-file-attributes (file)
3094 (setq file
(expand-file-name file
))
3095 (let ((parsed (ange-ftp-ftp-name file
)))
3097 (let ((part (ange-ftp-get-file-part file
))
3098 (files (ange-ftp-get-files (file-name-directory file
))))
3099 (if (ange-ftp-hash-entry-exists-p part files
)
3100 (let ((host (nth 0 parsed
))
3101 (user (nth 1 parsed
))
3102 (name (nth 2 parsed
))
3103 (dirp (ange-ftp-get-hash-entry part files
)))
3104 (list (if (and (stringp dirp
) (file-name-absolute-p dirp
))
3105 (ange-ftp-expand-symlink dirp
3106 (file-name-directory file
))
3115 (concat (if (stringp dirp
) "l" (if dirp
"d" "-"))
3116 "?????????") ;8 mode
3118 ;; Hack to give remote files a unique "inode number".
3119 ;; It's actually the sum of the characters in its name.
3120 (apply '+ (nconc (mapcar 'identity host
)
3121 (mapcar 'identity user
)
3123 (directory-file-name name
))))
3124 -
1 ;11 device number [v19 only]
3126 (ange-ftp-real-file-attributes file
))))
3128 (defun ange-ftp-file-writable-p (file)
3129 (setq file
(expand-file-name file
))
3130 (if (ange-ftp-ftp-name file
)
3131 (or (file-exists-p file
) ;guess here for speed
3132 (file-directory-p (file-name-directory file
)))
3133 (ange-ftp-real-file-writable-p file
)))
3135 (defun ange-ftp-file-readable-p (file)
3136 (setq file
(expand-file-name file
))
3137 (if (ange-ftp-ftp-name file
)
3138 (file-exists-p file
)
3139 (ange-ftp-real-file-readable-p file
)))
3141 (defun ange-ftp-file-executable-p (file)
3142 (setq file
(expand-file-name file
))
3143 (if (ange-ftp-ftp-name file
)
3144 (file-exists-p file
)
3145 (ange-ftp-real-file-executable-p file
)))
3147 (defun ange-ftp-delete-file (file)
3148 (interactive "fDelete file: ")
3149 (setq file
(expand-file-name file
))
3150 (let ((parsed (ange-ftp-ftp-name file
)))
3152 (let* ((host (nth 0 parsed
))
3153 (user (nth 1 parsed
))
3154 (name (ange-ftp-quote-string (nth 2 parsed
)))
3155 (abbr (ange-ftp-abbreviate-filename file
))
3156 (result (ange-ftp-send-cmd host user
3158 (format "Deleting %s" abbr
))))
3163 (format "FTP Error: \"%s\"" (cdr result
))
3165 (ange-ftp-delete-file-entry file
))
3166 (ange-ftp-real-delete-file file
))))
3168 (defun ange-ftp-verify-visited-file-modtime (buf)
3169 (let ((name (buffer-file-name buf
)))
3170 (if (and (stringp name
) (ange-ftp-ftp-name name
))
3172 (ange-ftp-real-verify-visited-file-modtime buf
))))
3174 ;;;; ------------------------------------------------------------
3175 ;;;; File copying support... totally re-written 6/24/92.
3176 ;;;; ------------------------------------------------------------
3178 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive
)
3179 (if (file-exists-p absname
)
3180 (if (not interactive
)
3181 (signal 'file-already-exists
(list absname
))
3182 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? "
3183 absname querystring
)))
3184 (signal 'file-already-exists
(list absname
))))))
3186 ;; async local copy commented out for now since I don't seem to get
3187 ;; the process sentinel called for some processes.
3189 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists
3191 ;; "Kludge to copy a local file and call a continuation when the copy
3193 ;; ;; check to see if we can overwrite
3194 ;; (if (or (not ok-if-already-exists)
3195 ;; (numberp ok-if-already-exists))
3196 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3197 ;; (numberp ok-if-already-exists)))
3198 ;; (let ((proc (start-process " *copy*"
3199 ;; (generate-new-buffer "*copy*")
3204 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel))
3205 ;; (process-kill-without-query proc)
3207 ;; (set-buffer (process-buffer proc))
3208 ;; (make-variable-buffer-local 'copy-cont)
3209 ;; (setq copy-cont cont))))
3211 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status)
3213 ;; (set-buffer (process-buffer proc))
3214 ;; (let ((cont copy-cont)
3215 ;; (result (buffer-string)))
3217 ;; (if (and (string-equal status "finished\n")
3218 ;; (zerop (length result)))
3219 ;; (ange-ftp-call-cont cont t nil)
3220 ;; (ange-ftp-call-cont cont
3222 ;; (if (zerop (length result))
3223 ;; (substring status 0 -1)
3224 ;; (substring result 0 -1))))
3225 ;; (kill-buffer (current-buffer))))))
3227 ;; this is the extended version of ange-ftp-copy-file-internal that works
3228 ;; asynchronously if asked nicely.
3229 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists
3230 keep-date
&optional msg cont nowait
)
3231 (setq filename
(expand-file-name filename
)
3232 newname
(expand-file-name newname
))
3234 ;; canonicalize newname if a directory.
3235 (if (file-directory-p newname
)
3236 (setq newname
(expand-file-name (file-name-nondirectory filename
) newname
)))
3238 (let ((f-parsed (ange-ftp-ftp-name filename
))
3239 (t-parsed (ange-ftp-ftp-name newname
)))
3241 ;; local file to local file copy?
3242 (if (and (not f-parsed
) (not t-parsed
))
3244 (ange-ftp-real-copy-file filename newname ok-if-already-exists
3247 (ange-ftp-call-cont cont t
"Copied locally")))
3248 ;; one or both files are remote.
3249 (let* ((f-host (and f-parsed
(nth 0 f-parsed
)))
3250 (f-user (and f-parsed
(nth 1 f-parsed
)))
3251 (f-name (and f-parsed
(ange-ftp-quote-string (nth 2 f-parsed
))))
3252 (f-abbr (ange-ftp-abbreviate-filename filename
))
3253 (t-host (and t-parsed
(nth 0 t-parsed
)))
3254 (t-user (and t-parsed
(nth 1 t-parsed
)))
3255 (t-name (and t-parsed
(ange-ftp-quote-string (nth 2 t-parsed
))))
3256 (t-abbr (ange-ftp-abbreviate-filename newname filename
))
3257 (binary (or (ange-ftp-binary-file filename
)
3258 (ange-ftp-binary-file newname
)
3259 (and (eq (ange-ftp-host-type f-host f-user
) 'unix
)
3260 (eq (ange-ftp-host-type t-host t-user
) 'unix
))))
3264 ;; check to see if we can overwrite
3265 (if (or (not ok-if-already-exists
)
3266 (numberp ok-if-already-exists
))
3267 (ange-ftp-barf-or-query-if-file-exists newname
"copy to it"
3268 (numberp ok-if-already-exists
)))
3273 ;; filename was remote.
3275 (if (or (ange-ftp-use-gateway-p f-host
)
3277 ;; have to use intermediate file if we are getting via
3278 ;; gateway machine or we are doing a remote to remote copy.
3279 (setq temp1
(ange-ftp-make-tmp-name f-host
)))
3282 (ange-ftp-set-binary-mode f-host f-user
))
3287 (list 'get f-name
(or temp1 newname
))
3289 (if (and temp1 t-parsed
)
3290 (format "Getting %s" f-abbr
)
3291 (format "Copying %s to %s" f-abbr t-abbr
)))
3292 (list (function ange-ftp-cf1
)
3293 filename newname binary msg
3294 f-parsed f-host f-user f-name f-abbr
3295 t-parsed t-host t-user t-name t-abbr
3296 temp1 temp2 cont nowait
)
3299 ;; filename wasn't remote. newname must be remote. call the
3300 ;; function which does the remainder of the copying work.
3302 filename newname binary msg
3303 f-parsed f-host f-user f-name f-abbr
3304 t-parsed t-host t-user t-name t-abbr
3305 nil nil cont nowait
))))))
3307 ;; next part of copying routine.
3308 (defun ange-ftp-cf1 (result line
3309 filename newname binary msg
3310 f-parsed f-host f-user f-name f-abbr
3311 t-parsed t-host t-user t-name t-abbr
3312 temp1 temp2 cont nowait
)
3314 ;; filename must have been remote, and we must have just done a GET.
3317 ;; GET failed for some reason. Clean up and get out.
3319 (and temp1
(ange-ftp-del-tmp-name temp1
))
3321 (signal 'ftp-error
(list "Opening input file"
3322 (format "FTP Error: \"%s\"" line
)
3326 (ange-ftp-set-ascii-mode f-host f-user
))))
3329 ;; We now have to copy either temp1 or filename to newname.
3332 ;; newname was remote.
3334 (if (ange-ftp-use-gateway-p t-host
)
3335 (setq temp2
(ange-ftp-make-tmp-name t-host
)))
3337 ;; make sure data is moved into the right place for the
3338 ;; outgoing transfer. gateway temporary files complicate
3342 (if (string-equal temp1 temp2
)
3344 (ange-ftp-real-copy-file temp1 temp2 t
))
3345 (setq temp2 temp1 temp1 nil
))
3347 (ange-ftp-real-copy-file filename temp2 t
)))
3350 (ange-ftp-set-binary-mode t-host t-user
))
3352 ;; tell the process filter what size the file is.
3353 (let ((attr (file-attributes (or temp2 filename
))))
3355 (ange-ftp-set-xfer-size t-host t-user
(nth 7 attr
))))
3360 (list 'put
(or temp2 filename
) t-name
)
3362 (if (and temp2 f-parsed
)
3363 (format "Putting %s" newname
)
3364 (format "Copying %s to %s" f-abbr t-abbr
)))
3365 (list (function ange-ftp-cf2
)
3366 newname t-host t-user binary temp1 temp2 cont
)
3369 ;; newname wasn't remote.
3370 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont
))
3372 ;; first copy failed, tell caller
3373 (ange-ftp-call-cont cont result line
)))
3375 ;; last part of copying routine.
3376 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont
)
3379 ;; result from doing a local to remote copy.
3385 (list "Opening output file"
3386 (format "FTP Error: \"%s\"" line
)
3389 (ange-ftp-add-file-entry newname
))
3393 (ange-ftp-set-ascii-mode t-host t-user
)))
3395 ;; newname was local.
3397 (ange-ftp-real-copy-file temp1 newname t
)))
3400 (and temp1
(ange-ftp-del-tmp-name temp1
))
3401 (and temp2
(ange-ftp-del-tmp-name temp2
))
3402 (ange-ftp-call-cont cont result line
)))
3404 (defun ange-ftp-copy-file (filename newname
&optional ok-if-already-exists
3406 (interactive "fCopy file: \nFCopy %s to file: \np")
3407 (ange-ftp-copy-file-internal filename
3409 ok-if-already-exists
3415 ;;;; ------------------------------------------------------------
3416 ;;;; File renaming support.
3417 ;;;; ------------------------------------------------------------
3419 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed
)
3420 "Rename remote file FILE to remote file NEWNAME."
3421 (let ((f-host (nth 0 f-parsed
))
3422 (f-user (nth 1 f-parsed
))
3423 (t-host (nth 0 t-parsed
))
3424 (t-user (nth 1 t-parsed
)))
3425 (if (and (string-equal f-host t-host
)
3426 (string-equal f-user t-user
))
3427 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed
)))
3428 (t-name (ange-ftp-quote-string (nth 2 t-parsed
)))
3429 (cmd (list 'rename f-name t-name
))
3430 (fabbr (ange-ftp-abbreviate-filename filename
))
3431 (nabbr (ange-ftp-abbreviate-filename newname filename
))
3432 (result (ange-ftp-send-cmd f-host f-user cmd
3433 (format "Renaming %s to %s"
3440 (format "FTP Error: \"%s\"" (cdr result
))
3443 (ange-ftp-add-file-entry newname
)
3444 (ange-ftp-delete-file-entry filename
))
3445 (ange-ftp-copy-file-internal filename newname t nil
)
3446 (delete-file filename
))))
3448 (defun ange-ftp-rename-local-to-remote (filename newname
)
3449 "Rename local FILENAME to remote file NEWNAME."
3450 (let* ((fabbr (ange-ftp-abbreviate-filename filename
))
3451 (nabbr (ange-ftp-abbreviate-filename newname filename
))
3452 (msg (format "Renaming %s to %s" fabbr nabbr
)))
3453 (ange-ftp-copy-file-internal filename newname t nil msg
)
3454 (let (ange-ftp-process-verbose)
3455 (delete-file filename
))))
3457 (defun ange-ftp-rename-remote-to-local (filename newname
)
3458 "Rename remote file FILENAME to local file NEWNAME."
3459 (let* ((fabbr (ange-ftp-abbreviate-filename filename
))
3460 (nabbr (ange-ftp-abbreviate-filename newname filename
))
3461 (msg (format "Renaming %s to %s" fabbr nabbr
)))
3462 (ange-ftp-copy-file-internal filename newname t nil msg
)
3463 (let (ange-ftp-process-verbose)
3464 (delete-file filename
))))
3466 (defun ange-ftp-rename-file (filename newname
&optional ok-if-already-exists
)
3467 (interactive "fRename file: \nFRename %s to file: \np")
3468 (setq filename
(expand-file-name filename
))
3469 (setq newname
(expand-file-name newname
))
3470 (let* ((f-parsed (ange-ftp-ftp-name filename
))
3471 (t-parsed (ange-ftp-ftp-name newname
)))
3472 (if (and (or f-parsed t-parsed
)
3473 (or (not ok-if-already-exists
)
3474 (numberp ok-if-already-exists
)))
3475 (ange-ftp-barf-or-query-if-file-exists
3478 (numberp ok-if-already-exists
)))
3481 (ange-ftp-rename-remote-to-remote filename newname f-parsed
3483 (ange-ftp-rename-remote-to-local filename newname
))
3485 (ange-ftp-rename-local-to-remote filename newname
)
3486 (ange-ftp-real-rename-file filename newname ok-if-already-exists
)))))
3488 ;;;; ------------------------------------------------------------
3489 ;;;; File name completion support.
3490 ;;;; ------------------------------------------------------------
3492 ;; If the file entry SYM is a symlink, returns whether its file exists.
3493 ;; Note that `ange-ftp-this-dir' is used as a free variable.
3494 (defun ange-ftp-file-entry-active-p (sym)
3495 (let ((val (get sym
'val
)))
3496 (or (not (stringp val
))
3497 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir
)))))
3499 ;; If the file entry is not a directory (nor a symlink pointing to a directory)
3500 ;; returns whether the file (or file pointed to by the symlink) is ignored
3501 ;; by completion-ignored-extensions.
3502 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern'
3503 ;; are used as free variables.
3504 (defun ange-ftp-file-entry-not-ignored-p (sym)
3505 (let ((val (get sym
'val
))
3506 (symname (symbol-name sym
)))
3508 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir
)))
3509 (or (file-directory-p file
)
3510 (and (file-exists-p file
)
3511 (not (string-match ange-ftp-completion-ignored-pattern
3513 (or val
; is a directory name
3514 (not (string-match ange-ftp-completion-ignored-pattern symname
))))))
3516 (defun ange-ftp-file-name-all-completions (file dir
)
3517 (let ((ange-ftp-this-dir (expand-file-name dir
)))
3518 (if (ange-ftp-ftp-name ange-ftp-this-dir
)
3520 (ange-ftp-barf-if-not-directory ange-ftp-this-dir
)
3521 (setq ange-ftp-this-dir
3522 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir
))
3523 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir
))
3525 (all-completions file tbl
3526 (function ange-ftp-file-entry-active-p
))))
3528 ;; see whether each matching file is a directory or not...
3532 (let ((ent (ange-ftp-get-hash-entry file tbl
)))
3534 (or (not (stringp ent
))
3536 (ange-ftp-expand-symlink ent
3537 ange-ftp-this-dir
))))
3542 (if (string-equal "/" ange-ftp-this-dir
)
3543 (nconc (all-completions file
(ange-ftp-generate-root-prefixes))
3544 (ange-ftp-real-file-name-all-completions file
3546 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir
)))))
3548 (defun ange-ftp-file-name-completion (file dir
)
3549 (let ((ange-ftp-this-dir (expand-file-name dir
)))
3550 (if (ange-ftp-ftp-name ange-ftp-this-dir
)
3552 (ange-ftp-barf-if-not-directory ange-ftp-this-dir
)
3555 (setq ange-ftp-this-dir
3556 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir
)) ;real?
3557 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir
))
3558 (ange-ftp-completion-ignored-pattern
3559 (mapconcat (function
3560 (lambda (s) (if (stringp s
)
3561 (concat (regexp-quote s
) "$")
3562 "/"))) ; / never in filename
3563 completion-ignored-extensions
3566 (or (ange-ftp-file-name-completion-1
3567 file tbl ange-ftp-this-dir
3568 (function ange-ftp-file-entry-not-ignored-p
))
3569 (ange-ftp-file-name-completion-1
3570 file tbl ange-ftp-this-dir
3571 (function ange-ftp-file-entry-active-p
)))))))
3573 (if (string-equal "/" ange-ftp-this-dir
)
3576 (nconc (ange-ftp-generate-root-prefixes)
3578 (ange-ftp-real-file-name-all-completions file
"/"))))
3579 (ange-ftp-real-file-name-completion file ange-ftp-this-dir
)))))
3582 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate
)
3583 (let ((bestmatch (try-completion file tbl predicate
)))
3585 (if (eq bestmatch t
)
3586 (if (file-directory-p (expand-file-name file dir
))
3589 (if (and (eq (try-completion bestmatch tbl predicate
) t
)
3591 (expand-file-name bestmatch dir
)))
3592 (concat bestmatch
"/")
3595 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh
3596 ;; ange-ftp's cache whilst doing filename completion.
3598 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir)
3599 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir)
3601 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults
3602 ;; to the directory part of the contents of the current buffer.
3603 (defun ange-ftp-re-read-dir (&optional dir
)
3606 (setq dir
(expand-file-name dir
))
3607 (setq dir
(file-name-directory (expand-file-name (buffer-string)))))
3608 (if (ange-ftp-ftp-name dir
)
3610 (setq ange-ftp-ls-cache-file nil
)
3611 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable
)
3612 (ange-ftp-get-files dir t
))))
3614 (defun ange-ftp-make-directory (dir &optional parents
)
3615 (interactive (list (expand-file-name (read-file-name "Make directory: "))))
3617 (let ((parent (file-name-directory (directory-file-name dir
))))
3618 (or (file-exists-p parent
)
3619 (ange-ftp-make-directory parent parents
))))
3620 (if (file-exists-p dir
)
3621 (error "Cannot make directory %s: file already exists" dir
)
3622 (let ((parsed (ange-ftp-ftp-name dir
)))
3624 (let* ((host (nth 0 parsed
))
3625 (user (nth 1 parsed
))
3626 ;; Some ftp's on unix machines (at least on Suns)
3627 ;; insist that mkdir take a filename, and not a
3628 ;; directory-name name as an arg. Argh!! This is a bug.
3629 ;; Non-unix machines will probably always insist
3630 ;; that mkdir takes a directory-name as an arg
3631 ;; (as the ftp man page says it should).
3632 (name (ange-ftp-quote-string
3633 (if (eq (ange-ftp-host-type host
) 'unix
)
3634 (ange-ftp-real-directory-file-name (nth 2 parsed
))
3635 (ange-ftp-real-file-name-as-directory
3637 (abbr (ange-ftp-abbreviate-filename dir
))
3638 (result (ange-ftp-send-cmd host user
3640 (format "Making directory %s"
3643 (ange-ftp-error host user
3644 (format "Could not make directory %s: %s"
3647 (ange-ftp-add-file-entry dir t
))
3648 (ange-ftp-real-make-directory dir
)))))
3650 (defun ange-ftp-delete-directory (dir)
3651 (if (file-directory-p dir
)
3652 (let ((parsed (ange-ftp-ftp-name dir
)))
3654 (let* ((host (nth 0 parsed
))
3655 (user (nth 1 parsed
))
3656 ;; Some ftp's on unix machines (at least on Suns)
3657 ;; insist that rmdir take a filename, and not a
3658 ;; directory-name name as an arg. Argh!! This is a bug.
3659 ;; Non-unix machines will probably always insist
3660 ;; that rmdir takes a directory-name as an arg
3661 ;; (as the ftp man page says it should).
3662 (name (ange-ftp-quote-string
3663 (if (eq (ange-ftp-host-type host
) 'unix
)
3664 (ange-ftp-real-directory-file-name
3666 (ange-ftp-real-file-name-as-directory
3668 (abbr (ange-ftp-abbreviate-filename dir
))
3669 (result (ange-ftp-send-cmd host user
3671 (format "Removing directory %s"
3674 (ange-ftp-error host user
3675 (format "Could not remove directory %s: %s"
3678 (ange-ftp-delete-file-entry dir t
))
3679 (ange-ftp-real-delete-directory dir
)))
3680 (error "Not a directory: %s" dir
)))
3682 ;; Make a local copy of FILE and return its name.
3684 (defun ange-ftp-file-local-copy (file)
3685 (let* ((fn1 (expand-file-name file
))
3686 (pa1 (ange-ftp-ftp-name fn1
)))
3688 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1
))))
3689 (ange-ftp-copy-file-internal fn1 tmp1 t nil
3690 (format "Getting %s" fn1
))
3693 (defun ange-ftp-load (file &optional noerror nomessage nosuffix
)
3694 (if (ange-ftp-ftp-name file
)
3695 (let ((tryfiles (if nosuffix
3697 (list (concat file
".elc") (concat file
".el") file
)))
3699 (while (and tryfiles
(not copy
))
3700 (condition-case error
3701 (setq copy
(ange-ftp-file-local-copy (car tryfiles
)))
3705 (funcall 'load copy noerror nomessage nosuffix
)
3708 (signal 'file-error
(list "Cannot open load file" file
)))))
3709 (ange-ftp-real-load file noerror nomessage nosuffix
)))
3711 ;; Calculate default-unhandled-directory for a given ange-ftp buffer.
3712 (defun ange-ftp-unhandled-file-name-directory (filename)
3713 (file-name-directory ange-ftp-tmp-name-template
))
3716 ;; Need the following functions for making filenames of compressed
3717 ;; files, because some OS's (unlike UNIX) do not allow a filename to
3718 ;; have two extensions.
3720 (defvar ange-ftp-make-compressed-filename-alist nil
3721 "Alist of host-type-specific functions to process file names for compression.
3722 Each element has the form (TYPE . FUNC).
3723 FUNC should take one argument, a file name, and return a list
3724 of the form (COMPRESSING NEWNAME).
3725 COMPRESSING should be t if the specified file should be compressed,
3726 and nil if it should be uncompressed (that is, if it is a compressed file).
3727 NEWNAME should be the name to give the new compressed or uncompressed file.")
3729 (defun ange-ftp-dired-compress-file (name)
3730 (let ((parsed (ange-ftp-ftp-name name
))
3733 (setq conversion-func
3734 (cdr (assq (ange-ftp-host-type (car parsed
))
3735 ange-ftp-make-compressed-filename-alist
))))
3737 (save-match-data (funcall conversion-func name
)))
3738 (compressing (car decision
))
3739 (newfile (nth 1 decision
)))
3741 (ange-ftp-compress name newfile
)
3742 (ange-ftp-uncompress name newfile
)))
3743 (let (file-name-handler-alist)
3744 (dired-compress-file name
)))))
3746 ;; Copy FILE to this machine, compress it, and copy out to NFILE.
3747 (defun ange-ftp-compress (file nfile
)
3748 (let* ((parsed (ange-ftp-ftp-name file
))
3749 (tmp1 (ange-ftp-make-tmp-name (car parsed
)))
3750 (tmp2 (ange-ftp-make-tmp-name (car parsed
)))
3751 (abbr (ange-ftp-abbreviate-filename file
))
3752 (nabbr (ange-ftp-abbreviate-filename nfile
))
3753 (msg1 (format "Getting %s" abbr
))
3754 (msg2 (format "Putting %s" nabbr
)))
3757 (ange-ftp-copy-file-internal file tmp1 t nil msg1
)
3758 (and ange-ftp-process-verbose
3759 (ange-ftp-message "Compressing %s..." abbr
))
3760 (call-process-region (point)
3767 (format "compress -f -c < %s > %s" tmp1 tmp2
))
3768 (and ange-ftp-process-verbose
3769 (ange-ftp-message "Compressing %s...done" abbr
))
3770 (if (zerop (buffer-size))
3772 (let (ange-ftp-process-verbose)
3774 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2
))))
3775 (ange-ftp-del-tmp-name tmp1
)
3776 (ange-ftp-del-tmp-name tmp2
))))
3778 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE.
3779 (defun ange-ftp-uncompress (file nfile
)
3780 (let* ((parsed (ange-ftp-ftp-name file
))
3781 (tmp1 (ange-ftp-make-tmp-name (car parsed
)))
3782 (tmp2 (ange-ftp-make-tmp-name (car parsed
)))
3783 (abbr (ange-ftp-abbreviate-filename file
))
3784 (nabbr (ange-ftp-abbreviate-filename nfile
))
3785 (msg1 (format "Getting %s" abbr
))
3786 (msg2 (format "Putting %s" nabbr
))
3787 ;; ;; Cheap hack because of problems with binary file transfers from
3789 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed)))))
3793 (ange-ftp-copy-file-internal file tmp1 t nil msg1
)
3794 (and ange-ftp-process-verbose
3795 (ange-ftp-message "Uncompressing %s..." abbr
))
3796 (call-process-region (point)
3803 (format "uncompress -c < %s > %s" tmp1 tmp2
))
3804 (and ange-ftp-process-verbose
3805 (ange-ftp-message "Uncompressing %s...done" abbr
))
3806 (if (zerop (buffer-size))
3808 (let (ange-ftp-process-verbose)
3810 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2
))))
3811 (ange-ftp-del-tmp-name tmp1
)
3812 (ange-ftp-del-tmp-name tmp2
))))
3814 (defun ange-ftp-find-backup-file-name (fn)
3815 ;; Either return the ordinary backup name, etc.,
3816 ;; or return nil meaning don't make a backup.
3817 (if ange-ftp-make-backup-files
3818 (ange-ftp-real-find-backup-file-name fn
)))
3820 ;;; Define the handler for special file names
3821 ;;; that causes ange-ftp to be invoked.
3824 (defun ange-ftp-hook-function (operation &rest args
)
3825 (let ((fn (get operation
'ange-ftp
)))
3826 (if fn
(apply fn args
)
3827 (ange-ftp-run-real-handler operation args
))))
3830 ;;; This regexp takes care of real ange-ftp file names (with a slash
3832 ;;; Don't allow the host name to end in a period--some systems use /.:
3834 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist
)
3835 (setq file-name-handler-alist
3836 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function
)
3837 file-name-handler-alist
)))
3839 ;;; This regexp recognizes and absolute filenames with only one component,
3840 ;;; for the sake of hostname completion.
3842 (or (assoc "^/[^/:]*\\'" file-name-handler-alist
)
3843 (setq file-name-handler-alist
3844 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function
)
3845 file-name-handler-alist
)))
3847 ;;; The above two forms are sufficient to cause this file to be loaded
3848 ;;; if the user ever uses a file name with a colon in it.
3850 ;;; This sets the mode
3851 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks
)
3852 (setq find-file-hooks
3853 (cons 'ange-ftp-set-buffer-mode find-file-hooks
)))
3855 ;;; Now say where to find the handlers for particular operations.
3857 (put 'file-name-directory
'ange-ftp
'ange-ftp-file-name-directory
)
3858 (put 'file-name-nondirectory
'ange-ftp
'ange-ftp-file-name-nondirectory
)
3859 (put 'file-name-as-directory
'ange-ftp
'ange-ftp-file-name-as-directory
)
3860 (put 'directory-file-name
'ange-ftp
'ange-ftp-directory-file-name
)
3861 (put 'expand-file-name
'ange-ftp
'ange-ftp-expand-file-name
)
3862 (put 'make-directory
'ange-ftp
'ange-ftp-make-directory
)
3863 (put 'delete-directory
'ange-ftp
'ange-ftp-delete-directory
)
3864 (put 'insert-file-contents
'ange-ftp
'ange-ftp-insert-file-contents
)
3865 (put 'directory-files
'ange-ftp
'ange-ftp-directory-files
)
3866 (put 'file-directory-p
'ange-ftp
'ange-ftp-file-directory-p
)
3867 (put 'file-writable-p
'ange-ftp
'ange-ftp-file-writable-p
)
3868 (put 'file-readable-p
'ange-ftp
'ange-ftp-file-readable-p
)
3869 (put 'file-executable-p
'ange-ftp
'ange-ftp-file-executable-p
)
3870 (put 'file-symlink-p
'ange-ftp
'ange-ftp-file-symlink-p
)
3871 (put 'delete-file
'ange-ftp
'ange-ftp-delete-file
)
3872 (put 'read-file-name-internal
'ange-ftp
'ange-ftp-read-file-name-internal
)
3873 (put 'verify-visited-file-modtime
'ange-ftp
3874 'ange-ftp-verify-visited-file-modtime
)
3875 (put 'file-exists-p
'ange-ftp
'ange-ftp-file-exists-p
)
3876 (put 'write-region
'ange-ftp
'ange-ftp-write-region
)
3877 (put 'backup-buffer
'ange-ftp
'ange-ftp-backup-buffer
)
3878 (put 'copy-file
'ange-ftp
'ange-ftp-copy-file
)
3879 (put 'rename-file
'ange-ftp
'ange-ftp-rename-file
)
3880 (put 'file-attributes
'ange-ftp
'ange-ftp-file-attributes
)
3881 (put 'file-name-all-completions
'ange-ftp
'ange-ftp-file-name-all-completions
)
3882 (put 'file-name-completion
'ange-ftp
'ange-ftp-file-name-completion
)
3883 (put 'insert-directory
'ange-ftp
'ange-ftp-insert-directory
)
3884 (put 'file-local-copy
'ange-ftp
'ange-ftp-file-local-copy
)
3885 (put 'unhandled-file-name-directory
'ange-ftp
3886 'ange-ftp-unhandled-file-name-directory
)
3887 (put 'file-name-sans-versions
'ange-ftp
'ange-ftp-file-name-sans-versions
)
3888 (put 'dired-uncache
'ange-ftp
'ange-ftp-dired-uncache
)
3889 (put 'dired-compress-file
'ange-ftp
'ange-ftp-dired-compress-file
)
3890 (put 'load
'ange-ftp
'ange-ftp-load
)
3891 (put 'find-backup-file-name
'ange-ftp
'ange-ftp-find-backup-file-name
)
3893 ;; Turn off truename processing to save time.
3894 ;; Treat each name as its own truename.
3895 (put 'file-truename
'ange-ftp
'identity
)
3897 ;; Turn off RCS/SCCS processing to save time.
3898 ;; This returns nil for any file name as argument.
3899 (put 'vc-registered
'ange-ftp
'null
)
3901 ;;; Define ways of getting at unmodified Emacs primitives,
3902 ;;; turning off our handler.
3904 (defun ange-ftp-run-real-handler (operation args
)
3905 (let ((inhibit-file-name-handlers
3906 (cons 'ange-ftp-hook-function
3907 (cons 'ange-ftp-completion-hook-function
3908 (and (eq inhibit-file-name-operation operation
)
3909 inhibit-file-name-handlers
))))
3910 (inhibit-file-name-operation operation
))
3911 (apply operation args
)))
3913 (defun ange-ftp-real-file-name-directory (&rest args
)
3914 (ange-ftp-run-real-handler 'file-name-directory args
))
3915 (defun ange-ftp-real-file-name-nondirectory (&rest args
)
3916 (ange-ftp-run-real-handler 'file-name-nondirectory args
))
3917 (defun ange-ftp-real-file-name-as-directory (&rest args
)
3918 (ange-ftp-run-real-handler 'file-name-as-directory args
))
3919 (defun ange-ftp-real-directory-file-name (&rest args
)
3920 (ange-ftp-run-real-handler 'directory-file-name args
))
3921 (defun ange-ftp-real-expand-file-name (&rest args
)
3922 (ange-ftp-run-real-handler 'expand-file-name args
))
3923 (defun ange-ftp-real-make-directory (&rest args
)
3924 (ange-ftp-run-real-handler 'make-directory args
))
3925 (defun ange-ftp-real-delete-directory (&rest args
)
3926 (ange-ftp-run-real-handler 'delete-directory args
))
3927 (defun ange-ftp-real-insert-file-contents (&rest args
)
3928 (ange-ftp-run-real-handler 'insert-file-contents args
))
3929 (defun ange-ftp-real-directory-files (&rest args
)
3930 (ange-ftp-run-real-handler 'directory-files args
))
3931 (defun ange-ftp-real-file-directory-p (&rest args
)
3932 (ange-ftp-run-real-handler 'file-directory-p args
))
3933 (defun ange-ftp-real-file-writable-p (&rest args
)
3934 (ange-ftp-run-real-handler 'file-writable-p args
))
3935 (defun ange-ftp-real-file-readable-p (&rest args
)
3936 (ange-ftp-run-real-handler 'file-readable-p args
))
3937 (defun ange-ftp-real-file-executable-p (&rest args
)
3938 (ange-ftp-run-real-handler 'file-executable-p args
))
3939 (defun ange-ftp-real-file-symlink-p (&rest args
)
3940 (ange-ftp-run-real-handler 'file-symlink-p args
))
3941 (defun ange-ftp-real-delete-file (&rest args
)
3942 (ange-ftp-run-real-handler 'delete-file args
))
3943 (defun ange-ftp-real-read-file-name-internal (&rest args
)
3944 (ange-ftp-run-real-handler 'read-file-name-internal args
))
3945 (defun ange-ftp-real-verify-visited-file-modtime (&rest args
)
3946 (ange-ftp-run-real-handler 'verify-visited-file-modtime args
))
3947 (defun ange-ftp-real-file-exists-p (&rest args
)
3948 (ange-ftp-run-real-handler 'file-exists-p args
))
3949 (defun ange-ftp-real-write-region (&rest args
)
3950 (ange-ftp-run-real-handler 'write-region args
))
3951 (defun ange-ftp-real-backup-buffer (&rest args
)
3952 (ange-ftp-run-real-handler 'backup-buffer args
))
3953 (defun ange-ftp-real-copy-file (&rest args
)
3954 (ange-ftp-run-real-handler 'copy-file args
))
3955 (defun ange-ftp-real-rename-file (&rest args
)
3956 (ange-ftp-run-real-handler 'rename-file args
))
3957 (defun ange-ftp-real-file-attributes (&rest args
)
3958 (ange-ftp-run-real-handler 'file-attributes args
))
3959 (defun ange-ftp-real-file-name-all-completions (&rest args
)
3960 (ange-ftp-run-real-handler 'file-name-all-completions args
))
3961 (defun ange-ftp-real-file-name-completion (&rest args
)
3962 (ange-ftp-run-real-handler 'file-name-completion args
))
3963 (defun ange-ftp-real-insert-directory (&rest args
)
3964 (ange-ftp-run-real-handler 'insert-directory args
))
3965 (defun ange-ftp-real-file-name-sans-versions (&rest args
)
3966 (ange-ftp-run-real-handler 'file-name-sans-versions args
))
3967 (defun ange-ftp-real-shell-command (&rest args
)
3968 (ange-ftp-run-real-handler 'shell-command args
))
3969 (defun ange-ftp-real-load (&rest args
)
3970 (ange-ftp-run-real-handler 'load args
))
3971 (defun ange-ftp-real-find-backup-file-name (&rest args
)
3972 (ange-ftp-run-real-handler 'find-backup-file-name args
))
3974 ;; Here we support using dired on remote hosts.
3975 ;; I have turned off the support for using dired on foreign directory formats.
3976 ;; That involves too many unclean hooks.
3977 ;; It would be cleaner to support such operations by
3978 ;; converting the foreign directory format to something dired can understand;
3979 ;; something close to ls -l output.
3980 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing.
3982 ;; Some of the old dired hooks would still be needed even if this is done.
3983 ;; I have preserved (and modernized) those hooks.
3984 ;; So the format conversion should be all that is needed.
3986 (defun ange-ftp-insert-directory (file switches
&optional wildcard full
)
3987 (let ((short (ange-ftp-abbreviate-filename file
))
3988 (parsed (ange-ftp-ftp-name (expand-file-name file
))))
3992 (let ((default-directory (file-name-directory file
)))
3993 (ange-ftp-ls (file-name-nondirectory file
) switches nil nil t
))
3994 (ange-ftp-ls file switches full
)))
3995 (ange-ftp-real-insert-directory file switches wildcard full
))))
3997 (defun ange-ftp-dired-uncache (dir)
3998 (if (ange-ftp-ftp-name (expand-file-name dir
))
3999 (setq ange-ftp-ls-cache-file nil
)))
4001 (defvar ange-ftp-sans-version-alist nil
4002 "Alist of mapping host type into function to remove file version numbers.")
4004 (defun ange-ftp-file-name-sans-versions (file keep-backup-version
)
4005 (setq file
(ange-ftp-abbreviate-filename file
))
4006 (let ((parsed (ange-ftp-ftp-name file
))
4009 (setq host-type
(ange-ftp-host-type (car parsed
))
4010 func
(cdr (assq (ange-ftp-host-type (car parsed
))
4011 ange-ftp-sans-version-alist
))))
4012 (if func
(funcall func file keep-backup-version
)
4013 (ange-ftp-real-file-name-sans-versions file keep-backup-version
))))
4015 ;;; This doesn't work yet; a new hook needs to be created.
4016 ;;; Maybe the new hook should be in call-process.
4017 (defun ange-ftp-shell-command (command)
4018 (let* ((parsed (ange-ftp-ftp-name default-directory
))
4019 (host (nth 0 parsed
))
4020 (user (nth 1 parsed
))
4021 (name (nth 2 parsed
)))
4023 (ange-ftp-real-shell-command command
)
4024 (if (> (length name
) 0) ; else it's $HOME
4025 (setq command
(concat "cd " name
"; " command
)))
4027 (format "%s %s \"%s\"" ; remsh -l USER does not work well
4028 ; on a hp-ux machine I tried
4029 remote-shell-program host command
))
4030 (ange-ftp-message "Remote command '%s' ..." command
)
4031 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it
4032 ;; would prepend "cd default-directory" --- which bombs because
4033 ;; default-directory is in ange-ftp syntax for remote file names.
4034 (ange-ftp-real-shell-command command
))))
4036 ;;; Thisis not hooked up yet.
4037 (defun ange-ftp-dired-call-process (program discard
&rest arguments
)
4038 ;; PROGRAM is always one of those below in the cond in dired.el.
4039 ;; The ARGUMENTS are (nearly) always files.
4040 (if (ange-ftp-ftp-name default-directory
)
4041 ;; Can't use ange-ftp-dired-host-type here because the current
4042 ;; buffer is *dired-check-process output*
4043 (condition-case oops
4044 (cond ((equal "chmod" program
)
4045 (ange-ftp-call-chmod arguments
))
4046 ;; ((equal "chgrp" program))
4047 ;; ((equal dired-chown-program program))
4048 (t (error "Unknown remote command: %s" program
)))
4049 (ftp-error (insert (format "%s: %s, %s\n"
4053 (error (insert (format "%s\n" (nth 1 oops
)))))
4054 (apply 'call-process program nil
(not discard
) nil arguments
)))
4056 ;;; This currently does not work; it is never called.
4057 (defun ange-ftp-call-chmod (args)
4058 (if (< (length args
) 2)
4059 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args
))
4060 (let ((mode (car args
)))
4064 (setq file
(expand-file-name file
))
4065 (let ((parsed (ange-ftp-ftp-name file
)))
4067 (let* ((host (nth 0 parsed
))
4068 (user (nth 1 parsed
))
4069 (name (ange-ftp-quote-string (nth 2 parsed
)))
4070 (abbr (ange-ftp-abbreviate-filename file
))
4071 (result (ange-ftp-send-cmd host user
4072 (list 'chmod mode name
)
4073 (format "doing chmod %s"
4076 (ange-ftp-error host user
4077 (format "chmod: %s: \"%s\""
4079 (cdr result
)))))))))
4081 (setq ange-ftp-ls-cache-file nil
)) ;stop confusing dired
4083 ;;; This is turned off because it has nothing properly to do
4084 ;;; with dired. It could be reasonable to adapt this to
4085 ;;; replace ange-ftp-copy-file.
4087 ;;;;; ------------------------------------------------------------
4088 ;;;;; Noddy support for async copy-file within dired.
4089 ;;;;; ------------------------------------------------------------
4091 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait)
4092 ;; "Documented as original."
4093 ;; (dired-handle-overwrite to)
4094 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil
4097 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg
4098 ;; &optional marker-char op1
4100 ;; "Documented as original."
4101 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly
4102 ;; ;; called it rather than somebody else.
4103 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is
4104 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation
4105 ;; arg marker-char op1 how-to)))
4107 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor
4108 ;; &optional marker-char)
4109 ;; "Documented as original."
4110 ;; (if (and (boundp 'ange-ftp-dired-do-create-files)
4111 ;; ;; called from ange-ftp-dired-do-create-files?
4112 ;; ange-ftp-dired-do-create-files
4113 ;; ;; any files worth copying?
4115 ;; ;; we only support async copy-file at the mo.
4116 ;; (eq file-creator 'dired-copy-file)
4117 ;; ;; it is only worth calling the alternative function for remote files
4118 ;; ;; as we tie ourself in recursive knots otherwise.
4119 ;; (or (ange-ftp-ftp-name (car fn-list))
4120 ;; ;; we can only call the name constructor for dired-do-create-files
4121 ;; ;; since the one for regexps starts prompting here, there and
4123 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list)))))
4124 ;; ;; use the process-filter driven routine rather than the iterative one.
4125 ;; (ange-ftp-dcf-1 file-creator
4129 ;; (and (boundp 'target) target) ;dynamically bound
4132 ;; nil ;overwrite-query
4133 ;; nil ;overwrite-backup-query
4137 ;; (length fn-list) ;total
4139 ;; ;; normal case... use the interactive routine... much cheaper.
4140 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list
4141 ;; name-constructor marker-char)))
4143 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor
4144 ;; target marker-char buffer overwrite-query
4145 ;; overwrite-backup-query failures skipped
4146 ;; success-count total)
4147 ;; (let ((old-buf (current-buffer)))
4150 ;; (set-buffer buffer)
4151 ;; (if (null fn-list)
4152 ;; (ange-ftp-dcf-3 failures operation total skipped
4153 ;; success-count buffer)
4155 ;; (let* ((from (car fn-list))
4156 ;; (to (funcall name-constructor from)))
4157 ;; (if (equal to from)
4160 ;; (dired-log "Cannot %s to same file: %s\n"
4161 ;; (downcase operation) from)))
4163 ;; (ange-ftp-dcf-1 file-creator
4171 ;; overwrite-backup-query
4173 ;; (cons (dired-make-relative from) skipped)
4176 ;; (let* ((overwrite (file-exists-p to))
4177 ;; (overwrite-confirmed ; for dired-handle-overwrite
4179 ;; (let ((help-form '(format "\
4180 ;;Type SPC or `y' to overwrite file `%s',
4181 ;;DEL or `n' to skip to next,
4182 ;;ESC or `q' to not overwrite any of the remaining files,
4183 ;;`!' to overwrite all remaining files with no more questions." to)))
4184 ;; (dired-query 'overwrite-query
4185 ;; "Overwrite `%s'?" to))))
4186 ;; ;; must determine if FROM is marked before file-creator
4187 ;; ;; gets a chance to delete it (in case of a move).
4188 ;; (actual-marker-char
4189 ;; (cond ((integerp marker-char) marker-char)
4190 ;; (marker-char (dired-file-marker from)) ; slow
4192 ;; (condition-case err
4193 ;; (funcall file-creator from to overwrite-confirmed
4194 ;; (list (function ange-ftp-dcf-2)
4196 ;; file-creator operation fn-list
4199 ;; marker-char actual-marker-char
4202 ;; overwrite-confirmed
4204 ;; overwrite-backup-query
4205 ;; failures skipped success-count
4208 ;; (file-error ; FILE-CREATOR aborted
4209 ;; (ange-ftp-dcf-2 nil ;result
4212 ;; file-creator operation fn-list
4215 ;; marker-char actual-marker-char
4218 ;; overwrite-confirmed
4220 ;; overwrite-backup-query
4221 ;; failures skipped success-count
4223 ;; (set-buffer old-buf))))
4225 ;;(defun ange-ftp-dcf-2 (result line err
4226 ;; file-creator operation fn-list
4229 ;; marker-char actual-marker-char
4232 ;; overwrite-confirmed
4234 ;; overwrite-backup-query
4235 ;; failures skipped success-count
4237 ;; (let ((old-buf (current-buffer)))
4240 ;; (set-buffer buffer)
4241 ;; (if (or err (not result))
4243 ;; (setq failures (cons (dired-make-relative from) failures))
4244 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n"
4245 ;; operation from to (or err line)))
4247 ;; ;; If we get here, file-creator hasn't been aborted
4248 ;; ;; and the old entry (if any) has to be deleted
4249 ;; ;; before adding the new entry.
4250 ;; (dired-remove-file to))
4251 ;; (setq success-count (1+ success-count))
4252 ;; (message "%s: %d of %d" operation success-count total)
4253 ;; (dired-add-file to actual-marker-char))
4255 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list)
4261 ;; overwrite-backup-query
4262 ;; failures skipped success-count
4264 ;; (set-buffer old-buf))))
4266 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count
4268 ;; (let ((old-buf (current-buffer)))
4271 ;; (set-buffer buffer)
4274 ;; (dired-log-summary
4275 ;; (message "%s failed for %d of %d file%s %s"
4276 ;; operation (length failures) total
4277 ;; (dired-plural-s total) failures)))
4279 ;; (dired-log-summary
4280 ;; (message "%s: %d of %d file%s skipped %s"
4281 ;; operation (length skipped) total
4282 ;; (dired-plural-s total) skipped)))
4284 ;; (message "%s: %s file%s."
4285 ;; operation success-count (dired-plural-s success-count))))
4286 ;; (dired-move-to-filename))
4287 ;; (set-buffer old-buf))))
4289 ;;;; -----------------------------------------------
4290 ;;;; Unix Descriptive Listing (dl) Support
4291 ;;;; -----------------------------------------------
4293 ;; This is turned off because nothing uses it currently
4294 ;; and because I don't understand what it's supposed to be for. --rms.
4296 ;;(defconst ange-ftp-dired-dl-re-dir
4297 ;; "^. [^ /]+/[ \n]"
4298 ;; "Regular expression to use to search for dl directories.")
4300 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist)
4301 ;; (setq ange-ftp-dired-re-dir-alist
4302 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir)
4303 ;; ange-ftp-dired-re-dir-alist)))
4305 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol)
4306 ;; "In dired, move to the first character of the filename on this line."
4307 ;; ;; This is the Unix dl version.
4308 ;; (or eol (setq eol (progn (end-of-line) (point))))
4309 ;; (let (case-fold-search)
4310 ;; (beginning-of-line)
4311 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ")
4312 ;; (goto-char (+ (point) 2))
4314 ;; (error "No file on this line")
4317 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist)
4318 ;; (setq ange-ftp-dired-move-to-filename-alist
4319 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename)
4320 ;; ange-ftp-dired-move-to-filename-alist)))
4322 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol)
4323 ;; ;; Assumes point is at beginning of filename.
4324 ;; ;; So, it should be called only after (dired-move-to-filename t).
4325 ;; ;; On failure, signals an error or returns nil.
4326 ;; ;; This is the Unix dl version.
4327 ;; (let ((opoint (point))
4328 ;; case-fold-search hidden)
4329 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
4330 ;; (setq hidden (and selective-display
4332 ;; (search-forward "\r" eol t))))
4337 ;; (substitute-command-keys
4338 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
4339 ;; (skip-chars-forward "^ /" eol)
4340 ;; (if (eq opoint (point))
4343 ;; (error "No file on this line"))
4346 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist)
4347 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4348 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename)
4349 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4351 ;;;; ------------------------------------------------------------
4352 ;;;; VOS support (VOS support is probably broken,
4353 ;;;; but I don't know anything about VOS.)
4354 ;;;; ------------------------------------------------------------
4356 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse)
4357 ; (setq name (copy-sequence name))
4358 ; (let ((from (if reverse ?\> ?\/))
4359 ; (to (if reverse ?\/ ?\>))
4360 ; (i (1- (length name))))
4362 ; (if (= (aref name i) from)
4367 ;(or (assq 'vos ange-ftp-fix-name-func-alist)
4368 ; (setq ange-ftp-fix-name-func-alist
4369 ; (cons '(vos . ange-ftp-fix-name-for-vos)
4370 ; ange-ftp-fix-name-func-alist)))
4372 ;(or (memq 'vos ange-ftp-dumb-host-types)
4373 ; (setq ange-ftp-dumb-host-types
4374 ; (cons 'vos ange-ftp-dumb-host-types)))
4376 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name)
4377 ; (ange-ftp-fix-name-for-vos
4379 ; (if (eq ?/ (aref dir-name (1- (length dir-name))))
4383 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist)
4384 ; (setq ange-ftp-fix-dir-name-func-alist
4385 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos)
4386 ; ange-ftp-fix-dir-name-func-alist)))
4388 ;(defvar ange-ftp-vos-host-regexp nil
4389 ; "If a host matches this regexp then it is assumed to be running VOS.")
4391 ;(defun ange-ftp-vos-host (host)
4392 ; (and ange-ftp-vos-host-regexp
4394 ; (string-match ange-ftp-vos-host-regexp host))))
4396 ;(defun ange-ftp-parse-vos-listing ()
4397 ; "Parse the current buffer which is assumed to be in VOS list -all
4398 ;format, and return a hashtable as the result."
4399 ; (let ((tbl (ange-ftp-make-hashtable))
4401 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40)
4402 ; ("^Dirs: [0-9]+\n+" t 30)))
4403 ; type-regexp type-is-dir type-col file)
4404 ; (goto-char (point-min))
4407 ; (setq type-regexp (car (car type-list))
4408 ; type-is-dir (nth 1 (car type-list))
4409 ; type-col (nth 2 (car type-list))
4410 ; type-list (cdr type-list))
4411 ; (if (re-search-forward type-regexp nil t)
4412 ; (while (eq (char-after (point)) ? )
4413 ; (move-to-column type-col)
4414 ; (setq file (buffer-substring (point)
4418 ; (ange-ftp-put-hash-entry file type-is-dir tbl)
4419 ; (forward-line 1))))
4420 ; (ange-ftp-put-hash-entry "." 'vosdir tbl)
4421 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl))
4424 ;(or (assq 'vos ange-ftp-parse-list-func-alist)
4425 ; (setq ange-ftp-parse-list-func-alist
4426 ; (cons '(vos . ange-ftp-parse-vos-listing)
4427 ; ange-ftp-parse-list-func-alist)))
4429 ;;;; ------------------------------------------------------------
4431 ;;;; ------------------------------------------------------------
4433 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS
4435 (defun ange-ftp-fix-name-for-vms (name &optional reverse
)
4438 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name
)
4439 (let (drive dir file
)
4440 (if (match-beginning 1)
4441 (setq drive
(substring name
4444 (if (match-beginning 2)
4446 (substring name
(match-beginning 2) (match-end 2))))
4447 (if (match-beginning 3)
4449 (substring name
(match-beginning 3) (match-end 3))))
4451 (setq dir
(apply (function concat
)
4457 (substring dir
1 -
1)))))
4459 (concat "/" drive
"/"))
4462 (error "name %s didn't match" name
))
4463 (let (drive dir file tmp
)
4464 (if (string-match "^/[^:]+:/" name
)
4465 (setq drive
(substring name
1
4467 name
(substring name
(match-end 0))))
4468 (setq tmp
(file-name-directory name
))
4470 (setq dir
(apply (function concat
)
4476 (substring tmp
0 -
1)))))
4477 (setq file
(file-name-nondirectory name
))
4479 (and dir
(concat "[" (if drive nil
".") dir
"]"))
4482 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1")
4483 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t)
4485 (or (assq 'vms ange-ftp-fix-name-func-alist
)
4486 (setq ange-ftp-fix-name-func-alist
4487 (cons '(vms . ange-ftp-fix-name-for-vms
)
4488 ange-ftp-fix-name-func-alist
)))
4490 (or (memq 'vms ange-ftp-dumb-host-types
)
4491 (setq ange-ftp-dumb-host-types
4492 (cons 'vms ange-ftp-dumb-host-types
)))
4494 ;; It is important that this function barf for directories for which we know
4495 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/".
4496 ;; This is because it saves an unnecessary FTP error, or possibly the listing
4497 ;; might succeed, but give erroneous info. This last case is particularly
4498 ;; likely for OS's (like MTS) for which we need to use a wildcard in order
4499 ;; to list a directory.
4501 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing.
4502 (defun ange-ftp-fix-dir-name-for-vms (dir-name)
4503 ;; Should there be entries for .. -> [-] and . -> [] below. Don't
4504 ;; think so, because expand-filename should have already short-circuited
4506 (cond ((string-equal dir-name
"/")
4507 (error "Cannot get listing for fictitious \"/\" directory."))
4508 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name
)
4509 (error "Cannot get listing for device."))
4510 ((ange-ftp-fix-name-for-vms dir-name
))))
4512 (or (assq 'vms ange-ftp-fix-dir-name-func-alist
)
4513 (setq ange-ftp-fix-dir-name-func-alist
4514 (cons '(vms . ange-ftp-fix-dir-name-for-vms
)
4515 ange-ftp-fix-dir-name-func-alist
)))
4517 (defvar ange-ftp-vms-host-regexp nil
)
4519 ;; Return non-nil if HOST is running VMS.
4520 (defun ange-ftp-vms-host (host)
4521 (and ange-ftp-vms-host-regexp
4523 (string-match ange-ftp-vms-host-regexp host
))))
4525 ;; Because some VMS ftp servers convert filenames to lower case
4526 ;; we allow a-z in the filename regexp. I'm not too happy about this.
4528 (defconst ange-ftp-vms-filename-regexp
4530 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\."
4531 "[-_A-Za-z0-9$]*;+[0-9]*\\)")
4532 "Regular expression to match for a valid VMS file name in Dired buffer.
4533 Stupid freaking bug! Position of _ and $ shouldn't matter but they do.
4534 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX
4535 Other orders of $ and _ seem to all work just fine.")
4537 ;; These parsing functions are as general as possible because the syntax
4538 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that
4539 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the
4540 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing
4541 ;; from vms.weird.net, then too bad.
4543 ;; Extract the next filename from a VMS dired-like listing.
4544 (defun ange-ftp-parse-vms-filename ()
4545 (if (re-search-forward
4546 ange-ftp-vms-filename-regexp
4548 (buffer-substring (match-beginning 0) (match-end 0))))
4550 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir
4551 ;; format, and return a hashtable as the result.
4552 (defun ange-ftp-parse-vms-listing ()
4553 (let ((tbl (ange-ftp-make-hashtable))
4555 (goto-char (point-min))
4557 (while (setq file
(ange-ftp-parse-vms-filename))
4558 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file
)
4559 ;; deal with directories
4560 (ange-ftp-put-hash-entry
4561 (substring file
0 (match-beginning 0)) t tbl
)
4562 (ange-ftp-put-hash-entry file nil tbl
)
4563 (if (string-match ";[0-9]+$" file
) ; deal with extension
4565 (ange-ftp-put-hash-entry
4566 (substring file
0 (match-beginning 0)) nil tbl
)))
4568 ;; Would like to look for a "Total" line, or a "Directory" line to
4569 ;; make sure that the listing isn't complete garbage before putting
4570 ;; in "." and "..", but we can't even count on all VAX's giving us
4572 (ange-ftp-put-hash-entry "." t tbl
)
4573 (ange-ftp-put-hash-entry ".." t tbl
))
4576 (or (assq 'vms ange-ftp-parse-list-func-alist
)
4577 (setq ange-ftp-parse-list-func-alist
4578 (cons '(vms . ange-ftp-parse-vms-listing
)
4579 ange-ftp-parse-list-func-alist
)))
4581 ;; This version only deletes file entries which have
4582 ;; explicit version numbers, because that is all VMS allows.
4584 ;; Can the following two functions be speeded up using file
4585 ;; completion functions?
4587 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p
)
4589 (ange-ftp-internal-delete-file-entry name t
)
4591 (let ((file (ange-ftp-get-file-part name
)))
4592 (if (string-match ";[0-9]+$" file
)
4593 ;; In VMS you can't delete a file without an explicit
4594 ;; version number, or wild-card (e.g. FOO;*)
4595 ;; For now, we give up on wildcards.
4596 (let ((files (ange-ftp-get-hash-entry
4597 (file-name-directory name
)
4598 ange-ftp-files-hashtable
)))
4600 (let* ((root (substring file
0
4601 (match-beginning 0)))
4606 (ange-ftp-del-hash-entry file files
)
4607 ;; Now we need to check if there are any
4608 ;; versions left. If not, then delete the
4612 (and (string-match regexp
(get sym
'key
))
4616 (ange-ftp-del-hash-entry root files
))))))))))
4618 (or (assq 'vms ange-ftp-delete-file-entry-alist
)
4619 (setq ange-ftp-delete-file-entry-alist
4620 (cons '(vms . ange-ftp-vms-delete-file-entry
)
4621 ange-ftp-delete-file-entry-alist
)))
4623 (defun ange-ftp-vms-add-file-entry (name &optional dir-p
)
4625 (ange-ftp-internal-add-file-entry name t
)
4626 (let ((files (ange-ftp-get-hash-entry
4627 (file-name-directory name
)
4628 ange-ftp-files-hashtable
)))
4630 (let ((file (ange-ftp-get-file-part name
)))
4632 (if (string-match ";[0-9]+$" file
)
4633 (ange-ftp-put-hash-entry
4634 (substring file
0 (match-beginning 0))
4636 ;; Need to figure out what version of the file
4638 (let ((regexp (concat "^"
4644 (let ((name (get sym
'key
)))
4645 (and (string-match regexp name
)
4651 (match-end 1))))))))
4653 (setq version
(1+ version
))
4654 (ange-ftp-put-hash-entry
4655 (concat file
";" (int-to-string version
))
4657 (ange-ftp-put-hash-entry file nil files
))))))
4659 (or (assq 'vms ange-ftp-add-file-entry-alist
)
4660 (setq ange-ftp-add-file-entry-alist
4661 (cons '(vms . ange-ftp-vms-add-file-entry
)
4662 ange-ftp-add-file-entry-alist
)))
4665 (defun ange-ftp-add-vms-host (host)
4666 "Mark HOST as the name of a machine running VMS."
4668 (list (read-string "Host: "
4669 (let ((name (or (buffer-file-name) default-directory
)))
4670 (and name
(car (ange-ftp-ftp-name name
)))))))
4671 (if (not (ange-ftp-vms-host host
))
4672 (setq ange-ftp-vms-host-regexp
4673 (concat "^" (regexp-quote host
) "$"
4674 (and ange-ftp-vms-host-regexp
"\\|")
4675 ange-ftp-vms-host-regexp
)
4676 ange-ftp-host-cache nil
)))
4679 (defun ange-ftp-vms-file-name-as-directory (name)
4681 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name
)
4682 (setq name
(substring name
0 (match-beginning 0))))
4683 (ange-ftp-real-file-name-as-directory name
)))
4685 (or (assq 'vms ange-ftp-file-name-as-directory-alist
)
4686 (setq ange-ftp-file-name-as-directory-alist
4687 (cons '(vms . ange-ftp-vms-file-name-as-directory
)
4688 ange-ftp-file-name-as-directory-alist
)))
4690 ;;; Tree dired support:
4692 ;; For this code I have borrowed liberally from Sebastian Kremer's
4696 ;;;; These regexps must be anchored to beginning of line.
4697 ;;;; Beware that the ftpd may put the device in front of the filename.
4699 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]"
4700 ;; "Regular expression to use to search for VMS executable files.")
4702 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]"
4703 ;; "Regular expression to use to search for VMS directories.")
4705 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist)
4706 ;; (setq ange-ftp-dired-re-exe-alist
4707 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe)
4708 ;; ange-ftp-dired-re-exe-alist)))
4710 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist)
4711 ;; (setq ange-ftp-dired-re-dir-alist
4712 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir)
4713 ;; ange-ftp-dired-re-dir-alist)))
4715 ;;(defun ange-ftp-dired-vms-insert-headerline (dir)
4716 ;; ;; VMS inserts a headerline. I would prefer the headerline
4717 ;; ;; to be in ange-ftp format. This version tries to
4718 ;; ;; be careful, because we can't count on a headerline
4719 ;; ;; over ftp, and we wouldn't want to delete anything
4722 ;; (if (looking-at "^ wildcard ")
4723 ;; (forward-line 1))
4724 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n")
4725 ;; (delete-region (point) (match-end 0))))
4726 ;; (ange-ftp-real-dired-insert-headerline dir))
4728 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist)
4729 ;; (setq ange-ftp-dired-insert-headerline-alist
4730 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline)
4731 ;; ange-ftp-dired-insert-headerline-alist)))
4733 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol)
4734 ;; "In dired, move to first char of filename on this line.
4735 ;;Returns position (point) or nil if no filename on this line."
4736 ;; ;; This is the VMS version.
4737 ;; (let (case-fold-search)
4738 ;; (or eol (setq eol (progn (end-of-line) (point))))
4739 ;; (beginning-of-line)
4740 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t)
4741 ;; (goto-char (match-beginning 1))
4743 ;; (error "No file on this line")
4746 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist)
4747 ;; (setq ange-ftp-dired-move-to-filename-alist
4748 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename)
4749 ;; ange-ftp-dired-move-to-filename-alist)))
4751 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol)
4752 ;; ;; Assumes point is at beginning of filename.
4753 ;; ;; So, it should be called only after (dired-move-to-filename t).
4754 ;; ;; case-fold-search must be nil, at least for VMS.
4755 ;; ;; On failure, signals an error or returns nil.
4756 ;; ;; This is the VMS version.
4757 ;; (let (opoint hidden case-fold-search)
4758 ;; (setq opoint (point))
4759 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
4760 ;; (setq hidden (and selective-display
4761 ;; (save-excursion (search-forward "\r" eol t))))
4764 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t))
4766 ;; (not (eq opoint (point)))
4769 ;; (substitute-command-keys
4770 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
4771 ;; "No file on this line")))
4772 ;; (if (eq opoint (point))
4776 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist)
4777 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4778 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename)
4779 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4781 ;;(defun ange-ftp-dired-vms-between-files ()
4783 ;; (beginning-of-line)
4784 ;; (or (equal (following-char) 10) ; newline
4785 ;; (equal (following-char) 9) ; tab
4786 ;; (progn (forward-char 2)
4787 ;; (or (looking-at "Total of")
4788 ;; (equal (following-char) 32))))))
4790 ;;(or (assq 'vms ange-ftp-dired-between-files-alist)
4791 ;; (setq ange-ftp-dired-between-files-alist
4792 ;; (cons '(vms . ange-ftp-dired-vms-between-files)
4793 ;; ange-ftp-dired-between-files-alist)))
4795 ;; Beware! In VMS filenames must be of the form "FILE.TYPE".
4796 ;; Therefore, we cannot just append a ".Z" to filenames for
4797 ;; compressed files. Instead, we turn "FILE.TYPE" into
4798 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do.
4800 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse
)
4802 ((string-match "-Z;[0-9]+$" name
)
4803 (list nil
(substring name
0 (match-beginning 0))))
4804 ((string-match ";[0-9]+$" name
)
4805 (list nil
(substring name
0 (match-beginning 0))))
4806 ((string-match "-Z$" name
)
4807 (list nil
(substring name
0 -
2)))
4810 (if (string-match ";[0-9]+$" name
)
4811 (concat (substring name
0 (match-beginning 0))
4813 (concat name
"-Z"))))))
4815 (or (assq 'vms ange-ftp-make-compressed-filename-alist
)
4816 (setq ange-ftp-make-compressed-filename-alist
4817 (cons '(vms . ange-ftp-vms-make-compressed-filename
)
4818 ange-ftp-make-compressed-filename-alist
)))
4820 ;;;; When the filename is too long, VMS will use two lines to list a file
4821 ;;;; (damn them!) This will confuse dired. To solve this, need to convince
4822 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of
4823 ;;;; (forward-line 1). This would require a number of changes to dired.el.
4824 ;;;; If dired gets confused, revert-buffer will fix it.
4826 ;;(defun ange-ftp-dired-vms-ls-trim ()
4827 ;; (goto-char (point-min))
4828 ;; (let ((case-fold-search nil))
4829 ;; (re-search-forward ange-ftp-vms-filename-regexp))
4830 ;; (beginning-of-line)
4831 ;; (delete-region (point-min) (point))
4833 ;; (delete-region (point) (point-max)))
4836 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist)
4837 ;; (setq ange-ftp-dired-ls-trim-alist
4838 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim)
4839 ;; ange-ftp-dired-ls-trim-alist)))
4841 (defun ange-ftp-vms-sans-version (name &rest args
)
4843 (if (string-match ";[0-9]+$" name
)
4844 (substring name
0 (match-beginning 0))
4847 (or (assq 'vms ange-ftp-sans-version-alist
)
4848 (setq ange-ftp-sans-version-alist
4849 (cons '(vms . ange-ftp-vms-sans-version
)
4850 ange-ftp-sans-version-alist
)))
4852 ;;(defvar ange-ftp-file-version-alist)
4854 ;;;;; The vms version of clean-directory has 2 more optional args
4855 ;;;;; than the usual dired version. This is so that it can be used by
4856 ;;;;; ange-ftp-dired-vms-flag-backup-files.
4858 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg)
4859 ;; "Flag numerical backups for deletion.
4860 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
4861 ;;Positive prefix arg KEEP overrides `dired-kept-versions';
4862 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
4864 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files]
4865 ;;with a prefix argument."
4866 ;;; (interactive "P") ; Never actually called interactively.
4867 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions)))
4868 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
4869 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS!
4870 ;; ;; This could wipe ALL copies of the file.
4871 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep)))
4872 ;; (action (or msg "Cleaning"))
4873 ;; (ange-ftp-trample-marker (or marker dired-del-marker))
4874 ;; (ange-ftp-file-version-alist ()))
4875 ;; (message (concat action
4876 ;; " numerical backups (keeping %d late, %d old)...")
4877 ;; late-retention early-retention)
4878 ;; ;; Look at each file.
4879 ;; ;; If the file has numeric backup versions,
4880 ;; ;; put on ange-ftp-file-version-alist an element of the form
4881 ;; ;; (FILENAME . VERSION-NUMBER-LIST)
4882 ;; (dired-map-dired-file-lines (function
4883 ;; ange-ftp-dired-vms-collect-file-versions))
4884 ;; ;; Sort each VERSION-NUMBER-LIST,
4885 ;; ;; and remove the versions not to be deleted.
4886 ;; (let ((fval ange-ftp-file-version-alist))
4888 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
4889 ;; (v-count (length sorted-v-list)))
4890 ;; (if (> v-count (+ early-retention late-retention))
4891 ;; (rplacd (nthcdr early-retention sorted-v-list)
4892 ;; (nthcdr (- v-count late-retention)
4894 ;; (rplacd (car fval)
4895 ;; (cdr sorted-v-list)))
4896 ;; (setq fval (cdr fval))))
4897 ;; ;; Look at each file. If it is a numeric backup file,
4898 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
4899 ;; (dired-map-dired-file-lines
4901 ;; ange-ftp-dired-vms-trample-file-versions mark))
4902 ;; (message (concat action " numerical backups...done"))))
4904 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist)
4905 ;; (setq ange-ftp-dired-clean-directory-alist
4906 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory)
4907 ;; ange-ftp-dired-clean-directory-alist)))
4909 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn)
4910 ;; ;; "If it looks like file FN has versions, return a list of the versions.
4911 ;; ;;That is a list of strings which are file names.
4912 ;; ;;The caller may want to flag some of these files for deletion."
4913 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn))))
4914 ;; (if (string-match ";[0-9]+$" name)
4915 ;; (let* ((name (substring name 0 (match-beginning 0)))
4916 ;; (fn (ange-ftp-replace-name-component fn name)))
4917 ;; (if (not (assq fn ange-ftp-file-version-alist))
4918 ;; (let* ((base-versions
4919 ;; (concat (file-name-nondirectory name) ";"))
4920 ;; (bv-length (length base-versions))
4921 ;; (possibilities (file-name-all-completions
4923 ;; (file-name-directory fn)))
4924 ;; (versions (mapcar
4926 ;; (if (and (string-match
4927 ;; "[0-9]+$" arg bv-length)
4928 ;; (= (match-beginning 0) bv-length))
4929 ;; (string-to-int (substring arg bv-length))
4934 ;; ange-ftp-file-version-alist
4935 ;; (cons (cons fn versions)
4936 ;; ange-ftp-file-version-alist)))))))))
4938 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn)
4939 ;; (let* ((start-vn (string-match ";[0-9]+$" fn))
4940 ;; base-version-list)
4942 ;; (setq base-version-list ; there was a base version to which
4943 ;; (assoc (substring fn 0 start-vn) ; this looks like a
4944 ;; ange-ftp-file-version-alist)) ; subversion
4945 ;; (not (memq (string-to-int (substring fn (1+ start-vn)))
4946 ;; base-version-list)) ; this one doesn't make the cut
4947 ;; (progn (beginning-of-line)
4949 ;; (insert ange-ftp-trample-marker)))))
4951 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p)
4952 ;; (let ((dired-kept-versions 1)
4953 ;; (kept-old-versions 0)
4956 ;; (setq marker ?\040 msg "Unflagging")
4957 ;; (setq marker dired-del-marker msg "Cleaning"))
4958 ;; (ange-ftp-dired-vms-clean-directory nil marker msg)))
4960 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist)
4961 ;; (setq ange-ftp-dired-flag-backup-files-alist
4962 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files)
4963 ;; ange-ftp-dired-flag-backup-files-alist)))
4965 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches)
4966 ;; (let ((file (dired-get-filename 'no-dir))
4968 ;; (if (and (string-match ";[0-9]+$" file)
4969 ;; ;; Find most recent previous version.
4970 ;; (let ((root (substring file 0 (match-beginning 0)))
4972 ;; (string-to-int (substring file (1+ (match-beginning 0)))))
4974 ;; (setq ver (1- ver))
4975 ;; (while (and (> ver 0) (not found))
4976 ;; (setq bak (concat root ";" (int-to-string ver)))
4977 ;; (and (file-exists-p bak) (setq found t))
4978 ;; (setq ver (1- ver)))
4981 ;; (diff (expand-file-name bak) (expand-file-name file) switches)
4982 ;; (diff (expand-file-name bak) (expand-file-name file)))
4983 ;; (error "No previous version found for %s" file))))
4985 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist)
4986 ;; (setq ange-ftp-dired-backup-diff-alist
4987 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff)
4988 ;; ange-ftp-dired-backup-diff-alist)))
4991 ;;;; ------------------------------------------------------------
4993 ;;;; ------------------------------------------------------------
4996 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from
4998 (defun ange-ftp-fix-name-for-mts (name &optional reverse
)
5001 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name
)
5003 (if (match-beginning 1)
5004 (setq acct
(substring name
0 (match-end 1))))
5005 (if (match-beginning 2)
5006 (setq file
(substring name
5007 (match-beginning 2) (match-end 2))))
5008 (concat (and acct
(concat "/" acct
"/"))
5010 (error "name %s didn't match" name
))
5011 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name
)
5012 (concat (substring name
1 (match-end 1))
5013 (substring name
(match-beginning 2) (match-end 2)))
5014 ;; Let's hope that mts will recognize it anyway.
5017 (or (assq 'mts ange-ftp-fix-name-func-alist
)
5018 (setq ange-ftp-fix-name-func-alist
5019 (cons '(mts . ange-ftp-fix-name-for-mts
)
5020 ange-ftp-fix-name-func-alist
)))
5022 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing.
5023 ;; Remember that there are no directories in MTS.
5024 (defun ange-ftp-fix-dir-name-for-mts (dir-name)
5025 (if (string-equal dir-name
"/")
5026 (error "Cannot get listing for fictitious \"/\" directory.")
5027 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name
)))
5029 ((string-equal dir-name
"")
5031 ((string-match ":$" dir-name
)
5032 (concat dir-name
"?"))
5033 (dir-name))))) ; It's just a single file.
5035 (or (assq 'mts ange-ftp-fix-dir-name-func-alist
)
5036 (setq ange-ftp-fix-dir-name-func-alist
5037 (cons '(mts . ange-ftp-fix-dir-name-for-mts
)
5038 ange-ftp-fix-dir-name-func-alist
)))
5040 (or (memq 'mts ange-ftp-dumb-host-types
)
5041 (setq ange-ftp-dumb-host-types
5042 (cons 'mts ange-ftp-dumb-host-types
)))
5044 (defvar ange-ftp-mts-host-regexp nil
)
5046 ;; Return non-nil if HOST is running MTS.
5047 (defun ange-ftp-mts-host (host)
5048 (and ange-ftp-mts-host-regexp
5050 (string-match ange-ftp-mts-host-regexp host
))))
5052 ;; Parse the current buffer which is assumed to be in mts ftp dir format.
5053 (defun ange-ftp-parse-mts-listing ()
5054 (let ((tbl (ange-ftp-make-hashtable)))
5055 (goto-char (point-min))
5057 (while (re-search-forward ange-ftp-date-regexp nil t
)
5059 (skip-chars-backward " ")
5060 (let ((end (point)))
5061 (skip-chars-backward "-A-Z0-9_.!")
5062 (ange-ftp-put-hash-entry (buffer-substring (point) end
) nil tbl
))
5064 ;; Don't need to bother with ..
5065 (ange-ftp-put-hash-entry "." t tbl
)
5068 (or (assq 'mts ange-ftp-parse-list-func-alist
)
5069 (setq ange-ftp-parse-list-func-alist
5070 (cons '(mts . ange-ftp-parse-mts-listing
)
5071 ange-ftp-parse-list-func-alist
)))
5073 (defun ange-ftp-add-mts-host (host)
5074 "Mark HOST as the name of a machine running MTS."
5076 (list (read-string "Host: "
5077 (let ((name (or (buffer-file-name) default-directory
)))
5078 (and name
(car (ange-ftp-ftp-name name
)))))))
5079 (if (not (ange-ftp-mts-host host
))
5080 (setq ange-ftp-mts-host-regexp
5081 (concat "^" (regexp-quote host
) "$"
5082 (and ange-ftp-mts-host-regexp
"\\|")
5083 ange-ftp-mts-host-regexp
)
5084 ange-ftp-host-cache nil
)))
5086 ;;; Tree dired support:
5088 ;;;; There aren't too many systems left that use MTS. This dired support will
5089 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems
5090 ;;;; implement ftp in the same way. If not, it might be necessary to make the
5091 ;;;; following more flexible.
5093 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol)
5094 ;; "In dired, move to first char of filename on this line.
5095 ;;Returns position (point) or nil if no filename on this line."
5096 ;; ;; This is the MTS version.
5097 ;; (or eol (setq eol (progn (end-of-line) (point))))
5098 ;; (beginning-of-line)
5099 ;; (if (re-search-forward
5100 ;; ange-ftp-date-regexp eol t)
5102 ;; (skip-chars-forward " ") ; Eat blanks after date
5103 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year
5104 ;; (skip-chars-forward " " eol) ; one space before filename
5105 ;; ;; When listing an account other than the users own account it appends
5106 ;; ;; ACCT: to the beginning of the filename. Skip over this.
5107 ;; (and (looking-at "[A-Z0-9_.]+:")
5108 ;; (goto-char (match-end 0)))
5111 ;; (error "No file on this line")
5114 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist)
5115 ;; (setq ange-ftp-dired-move-to-filename-alist
5116 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename)
5117 ;; ange-ftp-dired-move-to-filename-alist)))
5119 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol)
5120 ;; ;; Assumes point is at beginning of filename.
5121 ;; ;; So, it should be called only after (dired-move-to-filename t).
5122 ;; ;; On failure, signals an error or returns nil.
5123 ;; ;; This is the MTS version.
5124 ;; (let (opoint hidden case-fold-search)
5125 ;; (setq opoint (point)
5126 ;; eol (save-excursion (end-of-line) (point))
5127 ;; hidden (and selective-display
5128 ;; (save-excursion (search-forward "\r" eol t))))
5131 ;; (skip-chars-forward "-A-Z0-9._!" eol))
5133 ;; (not (eq opoint (point)))
5136 ;; (substitute-command-keys
5137 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5138 ;; "No file on this line")))
5139 ;; (if (eq opoint (point))
5143 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist)
5144 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5145 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename)
5146 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5148 ;;;; ------------------------------------------------------------
5150 ;;;; ------------------------------------------------------------
5152 ;; Since CMS doesn't have any full file name syntax, we have to fudge
5153 ;; things with cd's. We actually send too many cd's, but it's dangerous
5154 ;; to try to remember the current minidisk, because if the connection
5155 ;; is closed and needs to be reopened, we will find ourselves back in
5156 ;; the default minidisk. This is fairly likely since CMS ftp servers
5157 ;; usually close the connection after 5 minutes of inactivity.
5159 ;; Have I got the filename character set right?
5161 (defun ange-ftp-fix-name-for-cms (name &optional reverse
)
5164 ;; Since we only convert output from a pwd in this direction,
5165 ;; we'll assume that it's a minidisk, and make it into a
5166 ;; directory file name. Note that the expand-dir-hashtable
5167 ;; stores directories without the trailing /. Is this
5170 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$"
5172 (let ((minidisk (substring name
1 (match-end 1))))
5173 (if (match-beginning 2)
5174 (let ((file (substring name
(match-beginning 2)
5176 (cmd (concat "cd " minidisk
))
5178 ;; Note that host and user are bound in the call
5179 ;; to ange-ftp-send-cmd
5180 (proc (ange-ftp-get-process ange-ftp-this-host
5181 ange-ftp-this-user
)))
5183 ;; Must use ange-ftp-raw-send-cmd here to avoid
5184 ;; an infinite loop.
5185 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg
))
5187 ;; failed... try ONCE more.
5188 (setq proc
(ange-ftp-get-process ange-ftp-this-host
5189 ange-ftp-this-user
))
5190 (let ((result (ange-ftp-raw-send-cmd proc cmd
5191 ange-ftp-this-msg
)))
5195 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5196 (format "cd to minidisk %s failed: %s"
5197 minidisk
(cdr result
)))))))
5198 ;; return the minidisk
5200 (error "Invalid CMS filename")))))
5202 (or (assq 'cms ange-ftp-fix-name-func-alist
)
5203 (setq ange-ftp-fix-name-func-alist
5204 (cons '(cms . ange-ftp-fix-name-for-cms
)
5205 ange-ftp-fix-name-func-alist
)))
5207 (or (memq 'cms ange-ftp-dumb-host-types
)
5208 (setq ange-ftp-dumb-host-types
5209 (cons 'cms ange-ftp-dumb-host-types
)))
5211 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing.
5212 (defun ange-ftp-fix-dir-name-for-cms (dir-name)
5214 ((string-equal "/" dir-name
)
5215 (error "Cannot get listing for fictitious \"/\" directory."))
5216 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name
)
5217 (let* ((minidisk (substring dir-name
(match-beginning 1) (match-end 1)))
5218 ;; host and user are bound in the call to ange-ftp-send-cmd
5219 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user
))
5220 (cmd (concat "cd " minidisk
))
5221 (file (if (match-beginning 2)
5222 ;; it's a single file
5223 (substring dir-name
(match-beginning 2)
5225 ;; use the wild-card
5227 (if (car (ange-ftp-raw-send-cmd proc cmd
))
5230 (setq proc
(ange-ftp-get-process ange-ftp-this-host
5231 ange-ftp-this-user
))
5232 (let ((result (ange-ftp-raw-send-cmd proc cmd
)))
5236 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5237 (format "cd to minidisk %s failed: "
5238 minidisk
(cdr result
))))))))
5239 (t (error "Invalid CMS file name"))))
5241 (or (assq 'cms ange-ftp-fix-dir-name-func-alist
)
5242 (setq ange-ftp-fix-dir-name-func-alist
5243 (cons '(cms . ange-ftp-fix-dir-name-for-cms
)
5244 ange-ftp-fix-dir-name-func-alist
)))
5246 (defvar ange-ftp-cms-host-regexp nil
5247 "Regular expression to match hosts running the CMS operating system.")
5249 ;; Return non-nil if HOST is running CMS.
5250 (defun ange-ftp-cms-host (host)
5251 (and ange-ftp-cms-host-regexp
5253 (string-match ange-ftp-cms-host-regexp host
))))
5255 (defun ange-ftp-add-cms-host (host)
5256 "Mark HOST as the name of a CMS host."
5258 (list (read-string "Host: "
5259 (let ((name (or (buffer-file-name) default-directory
)))
5260 (and name
(car (ange-ftp-ftp-name name
)))))))
5261 (if (not (ange-ftp-cms-host host
))
5262 (setq ange-ftp-cms-host-regexp
5263 (concat "^" (regexp-quote host
) "$"
5264 (and ange-ftp-cms-host-regexp
"\\|")
5265 ange-ftp-cms-host-regexp
)
5266 ange-ftp-host-cache nil
)))
5268 (defun ange-ftp-parse-cms-listing ()
5269 ;; Parse the current buffer which is assumed to be a CMS directory listing.
5270 ;; If we succeed in getting a listing, then we will assume that the minidisk
5271 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work
5272 ;; because ange-ftp doesn't know that the root hashtable has only part of
5273 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't
5274 ;; exist. It would be nice if completion worked for minidisks, as we
5276 ; (let* ((dir-file (directory-file-name file))
5277 ; (root (file-name-directory dir-file))
5278 ; (minidisk (ange-ftp-get-file-part dir-file))
5279 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable)))
5281 ; (ange-ftp-put-hash-entry minidisk t root-tbl)
5282 ; (setq root-tbl (ange-ftp-make-hashtable))
5283 ; (ange-ftp-put-hash-entry minidisk t root-tbl)
5284 ; (ange-ftp-put-hash-entry "." t root-tbl)
5285 ; (ange-ftp-set-files root root-tbl)))
5286 ;; Now do the usual parsing
5287 (let ((tbl (ange-ftp-make-hashtable)))
5288 (goto-char (point-min))
5292 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t
)
5293 (ange-ftp-put-hash-entry
5294 (concat (buffer-substring (match-beginning 1)
5297 (buffer-substring (match-beginning 2)
5301 (ange-ftp-put-hash-entry "." t tbl
))
5304 (or (assq 'cms ange-ftp-parse-list-func-alist
)
5305 (setq ange-ftp-parse-list-func-alist
5306 (cons '(cms . ange-ftp-parse-cms-listing
)
5307 ange-ftp-parse-list-func-alist
)))
5309 ;;;;; Tree dired support:
5311 ;;(defconst ange-ftp-dired-cms-re-exe
5312 ;; "^. [-A-Z0-9$_]+ +EXEC "
5313 ;; "Regular expression to use to search for CMS executables.")
5315 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist)
5316 ;; (setq ange-ftp-dired-re-exe-alist
5317 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe)
5318 ;; ange-ftp-dired-re-exe-alist)))
5321 ;;(defun ange-ftp-dired-cms-insert-headerline (dir)
5322 ;; ;; CMS has no total line, so we insert a blank line for
5325 ;; (forward-char -1)
5326 ;; (ange-ftp-real-dired-insert-headerline dir))
5328 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist)
5329 ;; (setq ange-ftp-dired-insert-headerline-alist
5330 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline)
5331 ;; ange-ftp-dired-insert-headerline-alist)))
5333 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol)
5334 ;; "In dired, move to the first char of filename on this line."
5335 ;; ;; This is the CMS version.
5336 ;; (or eol (setq eol (progn (end-of-line) (point))))
5337 ;; (let (case-fold-search)
5338 ;; (beginning-of-line)
5339 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t)
5340 ;; (goto-char (1+ (match-beginning 0)))
5342 ;; (error "No file on this line")
5345 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist)
5346 ;; (setq ange-ftp-dired-move-to-filename-alist
5347 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename)
5348 ;; ange-ftp-dired-move-to-filename-alist)))
5350 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol)
5351 ;; ;; Assumes point is at beginning of filename.
5352 ;; ;; So, it should be called only after (dired-move-to-filename t).
5353 ;; ;; case-fold-search must be nil, at least for VMS.
5354 ;; ;; On failure, signals an error or returns nil.
5355 ;; ;; This is the CMS version.
5356 ;; (let ((opoint (point))
5357 ;; case-fold-search hidden)
5358 ;; (or eol (setq eol (save-excursion (end-of-line) (point))))
5359 ;; (setq hidden (and selective-display
5361 ;; (search-forward "\r" eol t))))
5366 ;; (substitute-command-keys
5367 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
5368 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5369 ;; (skip-chars-forward " " eol)
5370 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5371 ;; (if (eq opoint (point))
5374 ;; (error "No file on this line"))
5377 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist)
5378 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5379 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename)
5380 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5382 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse
)
5383 (if (string-match "-Z$" name
)
5384 (list nil
(substring name
0 -
2))
5385 (list t
(concat name
"-Z"))))
5387 (or (assq 'cms ange-ftp-make-compressed-filename-alist
)
5388 (setq ange-ftp-make-compressed-filename-alist
5389 (cons '(cms . ange-ftp-cms-make-compressed-filename
)
5390 ange-ftp-make-compressed-filename-alist
)))
5392 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep)
5393 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep)))
5395 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name)
5396 ;; (concat (substring name 0 (match-end 1))
5398 ;; (substring name (match-beginning 2) (match-end 2)))
5401 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist)
5402 ;; (setq ange-ftp-dired-get-filename-alist
5403 ;; (cons '(cms . ange-ftp-dired-cms-get-filename)
5404 ;; ange-ftp-dired-get-filename-alist)))
5406 ;;;; ------------------------------------------------------------
5407 ;;;; Finally provide package.
5408 ;;;; ------------------------------------------------------------
5412 ;;; ange-ftp.el ends here