Merge from trunk
[emacs.git] / lisp / net / ange-ftp.el
blobe8530a07d2ea77280a65de55bcbf5e7bd1f447d9
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs
3 ;; Copyright (C) 1989-1996, 1998, 2000-2011 Free Software Foundation, Inc.
5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com)
6 ;; Maintainer: FSF
7 ;; Keywords: comm
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This package attempts to make accessing files and directories using FTP
27 ;; from within GNU Emacs as simple and transparent as possible. A subset of
28 ;; the common file-handling routines are extended to interact with FTP.
30 ;; Usage:
32 ;; Some of the common GNU Emacs file-handling operations have been made
33 ;; FTP-smart. If one of these routines is given a filename that matches
34 ;; '/user@host:name' then it will spawn an FTP process connecting to machine
35 ;; 'host' as account 'user' and perform its operation on the file 'name'.
37 ;; For example: if find-file is given a filename of:
39 ;; /ange@anorman:/tmp/notes
41 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as
42 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the
43 ;; contents of that file as if it were on the local filesystem. If ange-ftp
44 ;; needs a password to connect then it reads one in the echo area.
46 ;; Extended filename syntax:
48 ;; The default extended filename syntax is '/user@host:name', where the
49 ;; 'user@' part may be omitted. This syntax can be customised to a certain
50 ;; extent by changing ange-ftp-name-format. There are limitations.
51 ;; The `host' part has an optional suffix `#port' which may be used to
52 ;; specify a non-default port number for the connexion.
54 ;; If the user part is omitted then ange-ftp generates a default user
55 ;; instead whose value depends on the variable ange-ftp-default-user.
57 ;; Passwords:
59 ;; A password is required for each host/user pair. Ange-ftp reads passwords
60 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or
61 ;; in a *valid* ~/.netrc file.
63 ;; Passwords for user "anonymous":
65 ;; Passwords for the user "anonymous" (or "ftp") are handled
66 ;; specially. The variable `ange-ftp-generate-anonymous-password'
67 ;; controls what happens: if the value of this variable is a string,
68 ;; then this is used as the password; if non-nil (the default), then
69 ;; the value of `user-mail-address' is used; if nil then the user
70 ;; is prompted for a password as normal.
72 ;; "Dumb" UNIX hosts:
74 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is
75 ;; used.
77 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to
78 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note
79 ;; that this change will take effect for the current GNU Emacs session only.
80 ;; See below for a discussion of non-UNIX hosts. If a large number of
81 ;; machines with similar hostnames have this problem then it is easier to set
82 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp
83 ;; is unable to automatically recognize dumb unix hosts.
85 ;; File name completion:
87 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts.
88 ;; To do filename completion, ange-ftp needs a listing from the remote host.
89 ;; Therefore, for very slow connections, it might not save any time.
91 ;; FTP processes:
93 ;; When ange-ftp starts up an FTP process, it leaves it running for speed
94 ;; purposes. Some FTP servers will close the connection after a period of
95 ;; time, but ange-ftp should be able to quietly reconnect the next time that
96 ;; the process is needed.
98 ;; Killing the "*ftp user@host*" buffer also kills the ftp process.
99 ;; This should not cause ange-ftp any grief.
101 ;; Binary file transfers:
103 ;; By default ange-ftp transfers files in ASCII mode. If a file being
104 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then
105 ;; binary mode is used for that transfer.
107 ;; Account passwords:
109 ;; Some FTP servers require an additional password which is sent by the
110 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to
111 ;; specify an account password by either calling ange-ftp-set-account, or by
112 ;; specifying an account token in the .netrc file. If the account password
113 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT
114 ;; command upon starting the FTP process.
116 ;; Preloading:
118 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and
119 ;; not the site-load.el file in order for the documentation strings for the
120 ;; functions being overloaded to be available.
122 ;; Status reports:
124 ;; Most ange-ftp commands that talk to the FTP process output a status
125 ;; message on what they are doing. In addition, ange-ftp can take advantage
126 ;; of the FTP client's HASH command to display the status of transferring
127 ;; files and listing directories. See the documentation for the variables
128 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and
129 ;; ange-ftp-process-verbose for more details.
131 ;; Gateways:
133 ;; Sometimes it is necessary for the FTP process to be run on a different
134 ;; machine than the machine running GNU Emacs. This can happen when the
135 ;; local machine has restrictions on what hosts it can access.
137 ;; ange-ftp has support for running the ftp process on a different (gateway)
138 ;; machine. The way it works is as follows:
140 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine
141 ;; that doesn't have the access restrictions.
143 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression
144 ;; that matches hosts that can be contacted from running a local ftp
145 ;; process, but fails to match hosts that can't be accessed locally. For
146 ;; example:
148 ;; "\\.hp\\.com$\\|^[^.]*$"
150 ;; will match all hosts that are in the .hp.com domain, or don't have an
151 ;; explicit domain in their name, but will fail to match hosts with
152 ;; explicit domains or that are specified by their ip address.
154 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with
155 ;; the *same* name between the local machine and the gateway machine.
156 ;; This directory is necessary for temporary files created by ange-ftp.
158 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of
159 ;; this directory plus an identifying filename prefix. For example:
161 ;; "/nfs/hplose/ange/ange-ftp"
163 ;; where /nfs/hplose/ange is a directory that is shared between the
164 ;; gateway machine and the local machine.
166 ;; The simplest way of getting a ftp process running on the gateway machine
167 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you
168 ;; can't do this for some reason such as security then points 7 onwards will
169 ;; discuss an alternative approach.
171 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote
172 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct.
174 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it
175 ;; isn't already. This tells ange-ftp that you are using a remote shell
176 ;; rather than logging in using telnet or rlogin.
178 ;; That should be all you need to allow ange-ftp to spawn a ftp process on
179 ;; the gateway machine. If you have to use telnet or rlogin to get to the
180 ;; gateway machine then follow the instructions below.
182 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program
183 ;; that lets you log onto the gateway machine. This may be something like
184 ;; telnet or rlogin.
186 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular
187 ;; expression that matches the prompt you get when you login to the
188 ;; gateway machine. Be very specific here; this regexp must not match
189 ;; *anything* in your login banner except this prompt.
190 ;; shell-prompt-pattern is far too general as it appears to match some
191 ;; login banners from Sun machines. For example:
193 ;; "^$*$ *"
195 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let
196 ;; ange-ftp know that it has to "hand-hold" the login to the gateway
197 ;; machine.
199 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command
200 ;; that will put the pty connected to the gateway machine into a
201 ;; no-echoing mode, and will strip off carriage-returns from output from
202 ;; the gateway machine. For example:
204 ;; "stty -onlcr -echo"
206 ;; will work on HP-UX machines, whereas:
208 ;; "stty -echo nl"
210 ;; appears to work for some Sun machines.
212 ;; That's all there is to it.
214 ;; Smart gateways:
216 ;; If you have a "smart" ftp program that allows you to issue commands like
217 ;; "USER foo@bar" which do nice proxy things, then look at the variables
218 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port.
220 ;; Otherwise, if there is an alternate ftp program that implements proxy in
221 ;; a transparent way (i.e. w/o specifying the proxy host), that will
222 ;; connect you directly to the desired destination host:
223 ;; Set ange-ftp-gateway-ftp-program-name to that program's name.
224 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on.
225 ;; Leave ange-ftp-gateway-host set to nil.
226 ;; Set ange-ftp-smart-gateway to t.
228 ;; Tips for using ange-ftp:
230 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in
231 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t).
232 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that
233 ;; there is a chance you might connect to an ULTRIX machine (such as
234 ;; prep.ai.mit.edu), then set this variable accordingly. This will have
235 ;; the side effect that dired will have problems with symlinks whose names
236 ;; end in an @. If you get yourself into this situation then editing
237 ;; dired's ls-switches to remove "F", will temporarily fix things.
239 ;; 2. If you know that you are connecting to a certain non-UNIX machine
240 ;; frequently, and ange-ftp seems to be unable to guess its host-type,
241 ;; then setting the appropriate host-type regexp
242 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or
243 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report
244 ;; ange-ftp's inability to recognize the host-type as a bug.
246 ;; 3. For slow connections, you might get "listing unreadable" error
247 ;; messages, or get an empty buffer for a file that you know has something
248 ;; in it. The solution is to increase the value of ange-ftp-retry-time.
249 ;; Its default value is 5 which is plenty for reasonable connections.
250 ;; However, for some transatlantic connections I set this to 20.
252 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by
253 ;; copying the file to the local machine, compressing it there, and then
254 ;; sending it back. Binary file transfers between machines of different
255 ;; architectures can be a risky business. Test things out first on some
256 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by
257 ;; moving them through the local machine. Again, be careful when doing
258 ;; this with binary files on non-Unix machines.
260 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm
261 ;; (list of dired commands for which confirmation is not asked). You
262 ;; might want to reconsider your setting of this variable, because you
263 ;; might want confirmation for more commands on remote direds than on
264 ;; local direds. For example, I strongly recommend that you not include
265 ;; compress and uncompress in this list. If there is enough demand it
266 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of
267 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST
268 ;; is a list of commands for which confirmation would be suppressed. Then
269 ;; remote dired listings would take their (buffer-local) value of
270 ;; dired-no-confirm from this alist. Who votes for this?
272 ;; ---------------------------------------------------------------------
273 ;; Non-UNIX support:
274 ;; ---------------------------------------------------------------------
276 ;; VMS support:
278 ;; Ange-ftp has full support for VMS hosts. It
279 ;; should be able to automatically recognize any VMS machine. However, if it
280 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well,
281 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We
282 ;; would be grateful if you would report any failures to automatically
283 ;; recognize a VMS host as a bug.
285 ;; Filename Syntax:
287 ;; For ease of *implementation*, the user enters the VMS filename syntax in a
288 ;; UNIX-y way. For example:
289 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1
290 ;; would be entered as:
291 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1
292 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file:
293 ;; [.CSV.POLICY]RULES.MEM
294 ;; you would type:
295 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM
297 ;; A valid VMS filename is of the form: FILE.TYPE;##
298 ;; where FILE can be up to 39 characters
299 ;; TYPE can be up to 39 characters
300 ;; ## is a version number (an integer between 1 and 32,767)
301 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $
302 ;; $ cannot begin a filename, and - cannot be used as the first or last
303 ;; character.
305 ;; Tips:
306 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is.
307 ;; Therefore, to access a VMS file, you must enter the filename with upper
308 ;; case letters.
309 ;; 2. To access the latest version of file under VMS, you use the filename
310 ;; without the ";" and version number. You should always edit the latest
311 ;; version of a file. If you want to edit an earlier version, copy it to a
312 ;; new file first. This has nothing to do with ange-ftp, but is simply
313 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is
314 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you
315 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find
316 ;; that VMS will not allow you to save the file because it will refuse to
317 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and
318 ;; attach the buffer to this file. To get out of this situation, M-x
319 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to
320 ;; latest version of the file. For this reason, in dired "f"
321 ;; (dired-find-file), always loads the file sans version, whereas "v",
322 ;; (dired-view-file), always loads the explicit version number. The
323 ;; reasoning being that it reasonable to view old versions of a file, but
324 ;; not to edit them.
325 ;; 3. EMACS has a feature in which it does environment variable substitution
326 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it
327 ;; by typing $$.
329 ;; MTS support:
331 ;; Ange-ftp has full support for hosts running
332 ;; the Michigan terminal system. It should be able to automatically
333 ;; recognize any MTS machine. However, if it fails to do this, you can use
334 ;; the command ange-ftp-add-mts-host. As well, you can set the variable
335 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you
336 ;; would report any failures to automatically recognize a MTS host as a bug.
338 ;; Filename syntax:
340 ;; MTS filenames are entered in a UNIX-y way. For example, if your account
341 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be
342 ;; entered as
343 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE
344 ;; In other words, MTS accounts are treated as UNIX directories. Of course,
345 ;; to access a file in another account, you must have access permission for
346 ;; it. If FILE were in your own account, then you could enter it in a
347 ;; relative name fashion as
348 ;; /YYYY@mtsg.ubc.ca:FILE
349 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the
350 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you
351 ;; like.) MTS filenames are always in upper case, and hence be sure to enter
352 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX
353 ;; is.
355 ;; CMS support:
357 ;; Ange-ftp has full support for hosts running
358 ;; CMS. It should be able to automatically recognize any CMS machine.
359 ;; However, if it fails to do this, you can use the command
360 ;; ange-ftp-add-cms-host. As well, you can set the variable
361 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you
362 ;; would report any failures to automatically recognize a CMS host as a bug.
364 ;; Filename syntax:
366 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are
367 ;; treated as UNIX directories. For example to access the file READ.ME in
368 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter
369 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME
370 ;; If *.301 is the default minidisk for this account, you could access
371 ;; FOO.BAR on this minidisk as
372 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR
373 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be
374 ;; up to 8 characters. Again, beware that CMS filenames are always upper
375 ;; case, and hence must be entered as such.
377 ;; Tips:
378 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always
379 ;; need an account password. To have ange-ftp send an account password,
380 ;; you can either include it in your .netrc file, or use
381 ;; ange-ftp-set-account.
382 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we
383 ;; can fix this.
385 ;; BS2000 support:
387 ;; Ange-ftp has full support for BS2000 hosts. It should be able to
388 ;; automatically recognize any BS2000 machine. However, if it fails to
389 ;; do this, you can use the command ange-ftp-add-bs2000-host. As well,
390 ;; you can set the variable ange-ftp-bs2000-host-regexp in your .emacs
391 ;; file. We would be grateful if you would report any failures to auto-
392 ;; matically recognize a BS2000 host as a bug.
394 ;; If you want to access the POSIX subsystem on BS2000 you MUST use
395 ;; command ange-ftp-add-bs2000-posix-host for that particular
396 ;; hostname. ange-ftp can't decide if you want to access the native
397 ;; filesystem or the POSIX filesystem, so it accesses the native
398 ;; filesystem by default. And if you have an ASCII filesystem in
399 ;; your BS2000 POSIX subsystem you must use
400 ;; ange-ftp-binary-file-name-regexp to access its files.
402 ;; Filename Syntax:
404 ;; For ease of *implementation*, the user enters the BS2000 filename
405 ;; syntax in a UNIX-y way. For example:
406 ;; :PUB:$PUBLIC.ANONYMOUS.SDSCPUB.NEXT.README.TXT
407 ;; would be entered as:
408 ;; /:PUB:/$$PUBLIC/ANONYMOUS.SDSCPUB.NEXT.README.TXT
409 ;; You don't have to type pubset and account, if they have default values,
410 ;; i.e. to log in as anonymous on bs2000.anywhere.com and grab the file
411 ;; IMPORTANT.TEXT.ON.BS2000 on the default pubset X on userid PUBLIC
412 ;; (there are only 8 characters in a valid username), you could type:
413 ;; C-x C-f /public@bs2000.anywhere.com:/IMPORTANT.TEXT.ON.BS2000
414 ;; or
415 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/$$PUBLIC/IMPORTANT.TEXT.ON.BS2000
417 ;; If X is not your default pubset, you could add it as 'subdirectory' (BS2000
418 ;; has a flat architecture) with the command
419 ;; (setq ange-ftp-bs2000-additional-pubsets '(":X:"))
420 ;; and then you could type:
421 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/IMPORTANT.TEXT.ON.BS2000
423 ;; Valid characters in an BS2000 filename are A-Z 0-9 $ # @ . -
424 ;; If the first character in a filename is # or @, this is replaced with
425 ;; ange-ftp-bs2000-special-prefix because names starting with # or @
426 ;; are reserved for temporary files.
427 ;; This is especially important for auto-save files.
428 ;; Valid file generations are ending with ([+|-|*]0-9...) .
429 ;; File generations are not supported yet!
430 ;; A filename must at least contain one character (A-Z) and cannot be longer
431 ;; than 41 characters.
433 ;; Tips:
434 ;; 1. Although BS2000 is not case sensitive, EMACS running under UNIX is.
435 ;; Therefore, to access a BS2000 file, you must enter the filename with
436 ;; upper case letters.
437 ;; 2. EMACS has a feature in which it does environment variable substitution
438 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it
439 ;; by typing $$.
440 ;; 3. BS2000 machines, with the exception of anonymous accounts, nearly
441 ;; always need an account password. To have ange-ftp send an account
442 ;; password, you can either include it in your .netrc file, or use
443 ;; ange-ftp-set-account.
445 ;; ------------------------------------------------------------------
446 ;; Bugs:
447 ;; ------------------------------------------------------------------
449 ;; 1. Umask problems:
450 ;; Be warned that files created by using ange-ftp will take account of the
451 ;; umask of the ftp daemon process rather than the umask of the creating
452 ;; user. This is particularly important when logging in as the root user.
453 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make
454 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I
455 ;; suspect that there is something similar on other systems.
457 ;; 2. Some combinations of FTP clients and servers break and get out of sync
458 ;; when asked to list a non-existent directory. Some of the ai.mit.edu
459 ;; machines cause this problem for some FTP clients. Using
460 ;; ange-ftp-kill-ftp-process can restart the ftp process, which
461 ;; should get things back in sync.
463 ;; 3. Ange-ftp does not check to make sure that when creating a new file,
464 ;; you provide a valid filename for the remote operating system.
465 ;; If you do not, then the remote FTP server will most likely
466 ;; translate your filename in some way. This may cause ange-ftp to
467 ;; get confused about what exactly is the name of the file. The
468 ;; most common causes of this are using lower case filenames on systems
469 ;; which support only upper case, and using filenames which are too
470 ;; long.
472 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons.
474 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs
475 ;; for some reason creates a FTP process that only talks via pipes then
476 ;; ange-ftp won't be getting the information it requires at the time that
477 ;; it wants it since pipes flush at different times to pty's. One
478 ;; disgusting way around this problem is to talk to the FTP process via
479 ;; rlogin which does the 'right' things with pty's.
481 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't
482 ;; worried about this too much. Eventually, we should have some caching
483 ;; of the current minidisk.
485 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as
486 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd
487 ;; to it. This is (understandably) beyond ange-ftp.
489 ;; 8. Remote to remote copying of files on non-Unix machines can be risky.
490 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp
491 ;; will use binary mode for the copy. Between systems of different
492 ;; architecture, this still may not be enough to guarantee the integrity
493 ;; of binary files. Binary file transfers from VMS machines are
494 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be
495 ;; an alist of OS type, regexp pairs?
497 ;; 9. The code to do compression of files over ftp is not as careful as it
498 ;; should be. It deletes the old remote version of the file, before
499 ;; actually checking if the local to remote transfer of the compressed
500 ;; file succeeds. Of course to delete the original version of the file
501 ;; after transferring the compressed version back is also dangerous,
502 ;; because some OS's have severe restrictions on the length of filenames,
503 ;; and when the compressed version is copied back the "-Z" or ".Z" may be
504 ;; truncated. Then, ange-ftp would delete the only remaining version of
505 ;; the file. Maybe ange-ftp should make backups when it compresses files
506 ;; (of course, the backup "~" could also be truncated off, sigh...).
507 ;; Suggestions?
509 ;; 10. If a dir listing is attempted for an empty directory on (at least
510 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and
511 ;; I don't know how to get ange-ftp work to around it.
513 ;; 11. Bombs on filenames that start with a space. Deals well with filenames
514 ;; containing spaces, but beware that the remote ftpd may not like them
515 ;; much.
517 ;; 12. The dired support for non-Unix-like systems does not currently work.
518 ;; It needs to be reimplemented by modifying the parse-...-listing
519 ;; functions to convert the directory listing to ls -l format.
521 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks
522 ;; with a trailing @ in a ls -alF listing. In order to account for this
523 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is
524 ;; parsing a listing with the F switch. This will cause ange-ftp to
525 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name
526 ;; ends in an @. ange-ftp will correct itself if you take F out of the
527 ;; dired ls switches (C-u s will allow you to edit the switches). The
528 ;; dired buffer will be automatically reverted, which will allow ange-ftp
529 ;; to fix its files hashtable. A cookie to anyone who can think of a
530 ;; fast, sure-fire way to recognize ULTRIX over ftp.
532 ;; If you find any bugs or problems with this package, PLEASE either e-mail
533 ;; the above author, or send a message to the ange-ftp-lovers mailing list
534 ;; below. Ideas and constructive comments are especially welcome.
536 ;; ange-ftp-lovers:
538 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All
539 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss
540 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to
541 ;; the mailing list.
543 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the
544 ;; list, please mail one of the following addresses:
546 ;; ange-ftp-lovers-request@hplb.hpl.hp.com
548 ;; Please don't forget the -request part.
550 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the
551 ;; following addresses:
553 ;; ange-ftp-lovers@hplb.hpl.hp.com
555 ;; Alternatively, there is a mailing list that only gets announcements of new
556 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be
557 ;; subscribed to by e-mailing to the -request address as above. Please make
558 ;; it clear in the request which mailing list you wish to join.
560 ;; -----------------------------------------------------------
561 ;; Technical information on this package:
562 ;; -----------------------------------------------------------
564 ;; ange-ftp works by putting a handler on file-name-handler-alist
565 ;; which is called by many primitives, and a few non-primitives,
566 ;; whenever they see a file name of the appropriate sort.
568 ;; Checklist for adding non-UNIX support for TYPE
570 ;; The following functions may need TYPE versions:
571 ;; (not all functions will be needed for every OS)
573 ;; ange-ftp-fix-name-for-TYPE
574 ;; ange-ftp-fix-dir-name-for-TYPE
575 ;; ange-ftp-TYPE-host
576 ;; ange-ftp-TYPE-add-host
577 ;; ange-ftp-parse-TYPE-listing
578 ;; ange-ftp-TYPE-delete-file-entry
579 ;; ange-ftp-TYPE-add-file-entry
580 ;; ange-ftp-TYPE-file-name-as-directory
581 ;; ange-ftp-TYPE-make-compressed-filename
582 ;; ange-ftp-TYPE-file-name-sans-versions
584 ;; Variables:
586 ;; ange-ftp-TYPE-host-regexp
587 ;; May need to add TYPE to ange-ftp-dumb-host-types
589 ;; Check the following functions for OS dependent coding:
591 ;; ange-ftp-host-type
592 ;; ange-ftp-guess-host-type
593 ;; ange-ftp-allow-child-lookup
595 ;; Host type conventions:
597 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type
598 ;; (mostly) follow the following conventions for remote host types. At
599 ;; least, I think that future code should try to follow these conventions,
600 ;; and the current code should eventually be made compliant.
602 ;; nil = local host type, whatever that is (probably unix).
603 ;; Think nil as in "not a remote host". This value is used by
604 ;; ange-ftp-dired-host-type for local buffers.
606 ;; t = a remote host of unknown type. Think t as in true, it's remote.
607 ;; Currently, `unix' is used as the default remote host type.
608 ;; Maybe we should use t.
610 ;; TYPE = a remote host of TYPE type.
612 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing
613 ;; program called list. This is currently only used for Unix
614 ;; dl (descriptive listings), when ange-ftp-dired-host-type
615 ;; is set to `unix:dl'.
617 ;; Bug report codes:
619 ;; Because of their naive faith in this code, there are certain situations
620 ;; which the writers of this program believe could never happen. However,
621 ;; being realists they have put calls to `error' in the program at these
622 ;; points. These errors provide a code, which is an integer, greater than 1.
623 ;; To aid debugging. the error codes, and the functions in which they reside
624 ;; are listed below.
626 ;; 1: See ange-ftp-ls
629 ;; -----------------------------------------------------------
630 ;; Hall of fame:
631 ;; -----------------------------------------------------------
633 ;; Thanks to Roland McGrath for improving the filename syntax handling,
634 ;; for suggesting many enhancements and for numerous cleanups to the code.
636 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways.
638 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and
639 ;; dired / shell auto-loading.
641 ;; Thanks to Sebastian Kremer for dired support and for many ideas and
642 ;; bugfixes.
644 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support,
645 ;; VOS support, and hostname completion.
647 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help
648 ;; with file-name expansion, efficiency worries, stylistic concerns and many
649 ;; bugfixes.
651 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS,
652 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and
653 ;; auto-recognition of the host type.
655 ;; Thanks to Dave Smith who wrote the info file for ange-ftp.
657 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping
658 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann,
659 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill
660 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay
661 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others
662 ;; whose names I've forgotten who have helped to debug and fix problems with
663 ;; ange-ftp.el.
665 ;;; Code:
667 (require 'comint)
669 ;;;; ------------------------------------------------------------
670 ;;;; User customization variables.
671 ;;;; ------------------------------------------------------------
673 (defgroup ange-ftp nil
674 "Accessing remote files and directories using FTP
675 made as simple and transparent as possible."
676 :group 'files
677 :group 'comm
678 :prefix "ange-ftp-")
680 (defcustom ange-ftp-name-format
681 '("\\`/\\(\\([^/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4))
682 "Format of a fully expanded remote file name.
684 This is a list of the form \(REGEXP HOST USER NAME\),
685 where REGEXP is a regular expression matching
686 the full remote name, and HOST, USER, and NAME are the numbers of
687 parenthesized expressions in REGEXP for the components (in that order)."
688 :group 'ange-ftp
689 :type '(list (regexp :tag "Name regexp")
690 (integer :tag "Host group")
691 (integer :tag "User group")
692 (integer :tag "Name group")))
694 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of
695 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs.
696 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out.
698 (defvar ange-ftp-multi-msgs
699 "^150-\\|^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-"
700 "*Regular expression matching the start of a multiline FTP reply.")
702 (defvar ange-ftp-good-msgs
703 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark"
704 "*Regular expression matching FTP \"success\" messages.")
706 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT.
707 ;; Also CMS machines use a multiline 550- reply to say that you
708 ;; don't have write permission. ange-ftp gets into multi-line skip
709 ;; mode and hangs. Have it ignore 550- instead. It will then barf
710 ;; when it gets the 550 line, as it should.
712 ;; RFC2228 "FTP Security Extensions" defines extensions to the FTP
713 ;; protocol which involve the client requesting particular
714 ;; authentication methods (typically) at connection establishment. Non
715 ;; security-aware FTP servers should respond to this with a 500 code,
716 ;; which we ignore.
717 (defcustom ange-ftp-skip-msgs
718 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|"
719 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|"
720 "^Data connection \\|"
721 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|"
722 "^500 .*AUTH\\|^KERBEROS\\|"
723 "^504 Unknown security mechanism\\|"
724 "^530 Please login with USER and PASS\\|" ; non kerberised vsFTPd
725 "^534 Kerberos Authentication not enabled\\|"
726 "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT")
727 "Regular expression matching FTP messages that can be ignored."
728 :group 'ange-ftp
729 :type 'regexp)
731 (defcustom ange-ftp-fatal-msgs
732 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|"
733 "^No control connection\\|unknown host\\|^lost connection")
734 "Regular expression matching FTP messages that indicate serious errors.
736 These mean that the FTP process should be (or already has been) killed."
737 :group 'ange-ftp
738 :type 'regexp)
740 (defcustom ange-ftp-potential-error-msgs
741 ;; On Mac OS X we sometimes get things like:
743 ;; ftp> open ftp.nluug.nl
744 ;; Trying 2001:610:1:80aa:192:87:102:36...
745 ;; ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host
746 ;; Trying 192.87.102.36...
747 ;; Connected to ftp.nluug.nl.
748 "^ftp: connect to address .*: No route to host"
749 "Regular expression matching FTP messages that can indicate serious errors.
750 These mean that something went wrong, but they may be followed by more
751 messages indicating that the error was somehow corrected."
752 :group 'ange-ftp
753 :type 'regexp)
755 (defcustom ange-ftp-gateway-fatal-msgs
756 "No route to host\\|Connection closed\\|No such host\\|Login incorrect"
757 "Regular expression matching login failure messages from rlogin/telnet."
758 :group 'ange-ftp
759 :type 'regexp)
761 (defcustom ange-ftp-xfer-size-msgs
762 "^150 .* connection for .* (\\([0-9]+\\) bytes)"
763 "Regular expression used to determine the number of bytes in a FTP transfer."
764 :group 'ange-ftp
765 :type 'regexp)
767 (defcustom ange-ftp-tmp-name-template
768 (expand-file-name "ange-ftp" temporary-file-directory)
769 "Template used to create temporary files."
770 :group 'ange-ftp
771 :type 'directory)
773 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp"
774 "Template used to create temporary files when FTP-ing through a gateway.
776 Files starting with this prefix need to be accessible from BOTH the local
777 machine and the gateway machine, and need to have the SAME name on both
778 machines, that is, /tmp is probably NOT what you want, since that is rarely
779 cross-mounted."
780 :group 'ange-ftp
781 :type 'directory)
783 (defcustom ange-ftp-netrc-filename "~/.netrc"
784 "File in .netrc format to search for passwords."
785 :group 'ange-ftp
786 :type 'file)
788 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt)
789 "If non-nil avoid checking permissions on the .netrc file."
790 :group 'ange-ftp
791 :type 'boolean)
793 (defcustom ange-ftp-default-user nil
794 "User name to use when none is specified in a file name.
796 If non-nil but not a string, you are prompted for the name.
797 If nil, the value of `ange-ftp-netrc-default-user' is used.
798 If that is nil too, then your login name is used.
800 Once a connection to a given host has been initiated, the user name
801 and password information for that host are cached and re-used by
802 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values,
803 since setting `ange-ftp-default-user' directly does not affect
804 the cached information."
805 :group 'ange-ftp
806 :type '(choice (const :tag "Default" nil)
807 string
808 (other :tag "Prompt" t)))
810 (defcustom ange-ftp-netrc-default-user nil
811 "Alternate default user name to use when none is specified.
813 This variable is set from the `default' command in your `.netrc' file,
814 if there is one."
815 :group 'ange-ftp
816 :type '(choice (const :tag "Default" nil)
817 string))
819 (defcustom ange-ftp-default-password nil
820 "Password to use when the user name equals `ange-ftp-default-user'."
821 :group 'ange-ftp
822 :type '(choice (const :tag "Default" nil)
823 string))
825 (defcustom ange-ftp-default-account nil
826 "Account to use when the user name equals `ange-ftp-default-user'."
827 :group 'ange-ftp
828 :type '(choice (const :tag "Default" nil)
829 string))
831 (defcustom ange-ftp-netrc-default-password nil
832 "Password to use when the user name equals `ange-ftp-netrc-default-user'."
833 :group 'ange-ftp
834 :type '(choice (const :tag "Default" nil)
835 string))
837 (defcustom ange-ftp-netrc-default-account nil
838 "Account to use when the user name equals `ange-ftp-netrc-default-user'."
839 :group 'ange-ftp
840 :type '(choice (const :tag "Default" nil)
841 string))
843 (defcustom ange-ftp-generate-anonymous-password t
844 "If t, use value of `user-mail-address' as password for anonymous FTP.
846 If a string, then use that string as the password.
847 If nil, prompt the user for a password."
848 :group 'ange-ftp
849 :type '(choice (const :tag "Prompt" nil)
850 string
851 (other :tag "User address" t)))
853 (defcustom ange-ftp-dumb-unix-host-regexp nil
854 "If non-nil, regexp matching hosts on which `dir' command lists directory."
855 :group 'ange-ftp
856 :type '(choice (const :tag "Default" nil)
857 string))
859 (defcustom ange-ftp-binary-file-name-regexp ""
860 "If a file matches this regexp then it is transferred in binary mode."
861 :group 'ange-ftp
862 :type 'regexp
863 :version "24.1")
865 (defcustom ange-ftp-gateway-host nil
866 "Name of host to use as gateway machine when local FTP isn't possible."
867 :group 'ange-ftp
868 :type '(choice (const :tag "Default" nil)
869 string))
871 (defcustom ange-ftp-local-host-regexp ".*"
872 "Regexp selecting hosts which can be reached directly with FTP.
874 For other hosts the FTP process is started on `ange-ftp-gateway-host'
875 instead, and/or reached via `ange-ftp-gateway-ftp-program-name'."
876 :group 'ange-ftp
877 :type 'regexp)
879 (defcustom ange-ftp-gateway-program-interactive nil
880 "If non-nil then the gateway program should give a shell prompt.
882 Both telnet and rlogin do something like this."
883 :group 'ange-ftp
884 :type 'boolean)
886 (defcustom ange-ftp-gateway-program remote-shell-program
887 "Name of program to spawn a shell on the gateway machine.
889 Valid candidates are rsh (remsh on some systems), telnet and rlogin.
890 See also the gateway variable above."
891 :group 'ange-ftp
892 :type '(choice (const "rsh")
893 (const "telnet")
894 (const "rlogin")
895 string))
897 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *"
898 "Regexp matching prompt after complete login sequence on gateway machine.
900 A match for this means the shell is now awaiting input. Make this regexp as
901 strict as possible; it shouldn't match *anything* at all except the user's
902 initial prompt. The above string will fail under most SUN-3's since it
903 matches the login banner."
904 :group 'ange-ftp
905 :type 'regexp)
907 (defvar ange-ftp-gateway-setup-term-command
908 (if (eq system-type 'hpux)
909 "stty -onlcr -echo\n"
910 "stty -echo nl\n")
911 "*Set up terminal after logging in to the gateway machine.
912 This command should stop the terminal from echoing each command, and
913 arrange to strip out trailing ^M characters.")
915 (defcustom ange-ftp-smart-gateway nil
916 "Non-nil says the FTP gateway (proxy) or gateway FTP program is smart.
918 Don't bother telnetting, etc., already connected to desired host transparently,
919 or just issue a user@host command in case `ange-ftp-gateway-host' is non-nil.
920 See also `ange-ftp-smart-gateway-port'."
921 :group 'ange-ftp
922 :type 'boolean)
924 (defcustom ange-ftp-smart-gateway-port "21"
925 "Port on gateway machine to use when smart gateway is in operation."
926 :group 'ange-ftp
927 :type 'string)
929 (defcustom ange-ftp-send-hash t
930 "If non-nil, send the HASH command to the FTP client."
931 :group 'ange-ftp
932 :type 'boolean)
934 (defcustom ange-ftp-binary-hash-mark-size nil
935 "Default size, in bytes, between hash-marks when transferring a binary file.
936 If nil, this variable will be locally overridden if the FTP client outputs a
937 suitable response to the HASH command. If non-nil, this value takes
938 precedence over the local value."
939 :group 'ange-ftp
940 :type '(choice (const :tag "Overridden" nil)
941 integer))
943 (defcustom ange-ftp-ascii-hash-mark-size 1024
944 "Default size, in bytes, between hash-marks when transferring an ASCII file.
945 This variable is buffer-local and will be locally overridden if the FTP client
946 outputs a suitable response to the HASH command."
947 :group 'ange-ftp
948 :type 'integer)
950 (defcustom ange-ftp-process-verbose t
951 "If non-nil then be chatty about interaction with the FTP process."
952 :group 'ange-ftp
953 :type 'boolean)
955 (defcustom ange-ftp-ftp-program-name "ftp"
956 "Name of FTP program to run."
957 :group 'ange-ftp
958 :type 'string)
960 (defcustom ange-ftp-gateway-ftp-program-name "ftp"
961 "Name of FTP program to run when accessing non-local hosts.
963 Some AT&T folks claim to use something called `pftp' here."
964 :group 'ange-ftp
965 :type 'string)
967 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v")
968 "A list of arguments passed to the FTP program when started."
969 :group 'ange-ftp
970 :type '(repeat string))
972 (defcustom ange-ftp-nslookup-program nil
973 "If non-nil, this is a string naming the nslookup program."
974 :group 'ange-ftp
975 :type '(choice (const :tag "None" nil)
976 string))
978 (defcustom ange-ftp-make-backup-files ()
979 "Non-nil means make backup files for \"magic\" remote files."
980 :group 'ange-ftp
981 :type 'boolean)
983 (defcustom ange-ftp-retry-time 5
984 "Number of seconds to wait before retry if file or listing doesn't arrive.
985 This might need to be increased for very slow connections."
986 :group 'ange-ftp
987 :type 'integer)
989 (defcustom ange-ftp-auto-save 0
990 "If 1, allow ange-ftp files to be auto-saved.
991 If 0, inhibit auto-saving of ange-ftp files.
992 Don't use any other value."
993 :group 'ange-ftp
994 :type '(choice (const :tag "Suppress" 0)
995 (const :tag "Allow" 1)))
997 (defcustom ange-ftp-try-passive-mode nil
998 "If t, try to use passive mode in FTP, if the client program supports it."
999 :group 'ange-ftp
1000 :type 'boolean
1001 :version "21.1")
1003 (defcustom ange-ftp-passive-host-alist nil
1004 "Alist of FTP servers that need \"passive\" mode.
1005 Each element is of the form (HOSTNAME . SETTING).
1006 HOSTNAME is a regular expression to match the FTP server host name(s).
1007 SETTING is \"on\" to turn passive mode on, \"off\" to turn it off,
1008 or nil meaning don't change it."
1009 :group 'ange-ftp
1010 :type '(repeat (cons regexp (choice (const :tag "On" "on")
1011 (const :tag "Off" "off")
1012 (const :tag "Don't change" nil))))
1013 :version "22.1")
1015 ;;;; ------------------------------------------------------------
1016 ;;;; Hash table support.
1017 ;;;; ------------------------------------------------------------
1019 (require 'backquote)
1021 (defun ange-ftp-hash-entry-exists-p (key tbl)
1022 "Return whether there is an association for KEY in table TBL."
1023 (and tbl (not (eq (gethash key tbl 'unknown) 'unknown))))
1025 (defun ange-ftp-hash-table-keys (tbl)
1026 "Return a sorted list of all the active keys in table TBL, as strings."
1027 ;; (let ((keys nil))
1028 ;; (maphash (lambda (k v) (push k keys)) tbl)
1029 ;; (sort keys 'string-lessp))
1030 (sort (all-completions "" tbl) 'string-lessp))
1032 ;;;; ------------------------------------------------------------
1033 ;;;; Internal variables.
1034 ;;;; ------------------------------------------------------------
1036 (defvar ange-ftp-data-buffer-name " *ftp data*"
1037 "Buffer name to hold directory listing data received from FTP process.")
1039 (defvar ange-ftp-netrc-modtime nil
1040 "Last modified time of the netrc file from file-attributes.")
1042 (defvar ange-ftp-user-hashtable (make-hash-table :test 'equal)
1043 "Hash table holding associations between HOST, USER pairs.")
1045 (defvar ange-ftp-passwd-hashtable (make-hash-table :test 'equal)
1046 "Mapping between a HOST, USER pair and a PASSWORD for them.
1047 All HOST values should be in lower case.")
1049 (defvar ange-ftp-account-hashtable (make-hash-table :test 'equal)
1050 "Mapping between a HOST, USER pair and an ACCOUNT password for them.")
1052 (defvar ange-ftp-files-hashtable (make-hash-table :test 'equal :size 97)
1053 "Hash table for storing directories and their respective files.")
1055 (defvar ange-ftp-inodes-hashtable (make-hash-table :test 'equal :size 97)
1056 "Hash table for storing file names and their \"inode numbers\".")
1058 (defvar ange-ftp-next-inode-number 1
1059 "Next \"inode number\" value. We give each file name a unique number.")
1061 (defvar ange-ftp-ls-cache-lsargs nil
1062 "Last set of args used by `ange-ftp-ls'.")
1064 (defvar ange-ftp-ls-cache-file nil
1065 "Last file passed to `ange-ftp-ls'.")
1067 (defvar ange-ftp-ls-cache-res nil
1068 "Last result returned from `ange-ftp-ls'.")
1070 (defconst ange-ftp-expand-dir-hashtable (make-hash-table :test 'equal))
1072 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):")
1074 ;; These are local variables in each FTP process buffer.
1075 (defvar ange-ftp-hash-mark-unit nil)
1076 (defvar ange-ftp-hash-mark-count nil)
1077 (defvar ange-ftp-xfer-size nil)
1078 (defvar ange-ftp-process-string nil)
1079 (defvar ange-ftp-process-result-line nil)
1080 (defvar ange-ftp-pending-error-line nil)
1081 (defvar ange-ftp-process-busy nil)
1082 (defvar ange-ftp-process-result nil)
1083 (defvar ange-ftp-process-multi-skip nil)
1084 (defvar ange-ftp-process-msg nil)
1085 (defvar ange-ftp-process-continue nil)
1086 (defvar ange-ftp-last-percent nil)
1088 ;; These variables are bound by one function and examined by another.
1089 ;; Leave them void globally for error checking.
1090 (defvar ange-ftp-this-file)
1091 (defvar ange-ftp-this-dir)
1092 (defvar ange-ftp-this-user)
1093 (defvar ange-ftp-this-host)
1094 (defvar ange-ftp-this-msg)
1095 (defvar ange-ftp-completion-ignored-pattern)
1096 (defvar ange-ftp-trample-marker)
1098 ;; New error symbols.
1099 (put 'ftp-error 'error-conditions '(ftp-error file-error error))
1100 ;; (put 'ftp-error 'error-message "FTP error")
1102 ;;; ------------------------------------------------------------
1103 ;;; Enhanced message support.
1104 ;;; ------------------------------------------------------------
1106 (defun ange-ftp-message (fmt &rest args)
1107 "Display message in echo area, but indicate if truncated.
1108 Args are as in `message': a format string, plus arguments to be formatted."
1109 (let ((msg (apply 'format fmt args))
1110 (max (window-width (minibuffer-window))))
1111 (if noninteractive
1113 (if (>= (length msg) max)
1114 ;; Take just the last MAX - 3 chars of the string.
1115 (setq msg (concat "> " (substring msg (- 3 max)))))
1116 (message "%s" msg))))
1118 (defun ange-ftp-abbreviate-filename (file &optional new)
1119 "Abbreviate the file name FILE relative to the `default-directory'.
1120 If the optional parameter NEW is given and the non-directory parts match,
1121 only return the directory part of FILE."
1122 (save-match-data
1123 (if (and default-directory
1124 (string-match (concat "\\`"
1125 (regexp-quote default-directory)
1126 ".") file))
1127 (setq file (substring file (1- (match-end 0)))))
1128 (if (and new
1129 (string-equal (file-name-nondirectory file)
1130 (file-name-nondirectory new)))
1131 (setq file (file-name-directory file)))
1132 (or file "./")))
1134 ;;;; ------------------------------------------------------------
1135 ;;;; User / Host mapping support.
1136 ;;;; ------------------------------------------------------------
1138 (defun ange-ftp-set-user (host user)
1139 "For a given HOST, set or change the default USER."
1140 (interactive "sHost: \nsUser: ")
1141 (puthash host user ange-ftp-user-hashtable))
1143 (defun ange-ftp-get-user (host)
1144 "Given a HOST, return the default user."
1145 (ange-ftp-parse-netrc)
1146 (let ((user (gethash host ange-ftp-user-hashtable)))
1147 (or user
1148 (prog1
1149 (setq user
1150 (cond ((stringp ange-ftp-default-user)
1151 ;; We have a default name. Use it.
1152 ange-ftp-default-user)
1153 (ange-ftp-default-user
1154 ;; Ask the user.
1155 (let ((enable-recursive-minibuffers t))
1156 (read-string (format "User for %s: " host)
1157 (user-login-name))))
1158 (ange-ftp-netrc-default-user)
1159 ;; Default to the user's login name.
1161 (user-login-name))))
1162 (ange-ftp-set-user host user)))))
1164 ;;;; ------------------------------------------------------------
1165 ;;;; Password support.
1166 ;;;; ------------------------------------------------------------
1168 (defmacro ange-ftp-generate-passwd-key (host user)
1169 `(and (stringp ,host) (stringp ,user) (concat (downcase ,host) "/" ,user)))
1171 (defmacro ange-ftp-lookup-passwd (host user)
1172 `(gethash (ange-ftp-generate-passwd-key ,host ,user)
1173 ange-ftp-passwd-hashtable))
1175 (defun ange-ftp-set-passwd (host user password)
1176 "For a given HOST and USER, set or change the associated PASSWORD."
1177 (interactive (list (read-string "Host: ")
1178 (read-string "User: ")
1179 (read-passwd "Password: ")))
1180 (puthash (ange-ftp-generate-passwd-key host user)
1181 password ange-ftp-passwd-hashtable))
1183 (defun ange-ftp-get-host-with-passwd (user)
1184 "Given a USER, return a host we know the password for."
1185 (ange-ftp-parse-netrc)
1186 (catch 'found-one
1187 (maphash
1188 (lambda (host val)
1189 (if (ange-ftp-lookup-passwd host user) (throw 'found-one host)))
1190 ange-ftp-user-hashtable)
1191 (save-match-data
1192 (maphash
1193 (lambda (key value)
1194 (if (string-match "\\`[^/]*\\(/\\).*\\'" key)
1195 (let ((host (substring key 0 (match-beginning 1))))
1196 (if (and (string-equal user (substring key (match-end 1)))
1197 value)
1198 (throw 'found-one host)))))
1199 ange-ftp-passwd-hashtable))
1200 nil))
1202 (defun ange-ftp-get-passwd (host user)
1203 "Return the password for specified HOST and USER, asking user if necessary."
1204 (ange-ftp-parse-netrc)
1206 ;; look up password in the hash table first; user might have overridden the
1207 ;; defaults.
1208 (cond ((ange-ftp-lookup-passwd host user))
1210 ;; See if default user and password set.
1211 ((and (stringp ange-ftp-default-user)
1212 ange-ftp-default-password
1213 (string-equal user ange-ftp-default-user))
1214 ange-ftp-default-password)
1216 ;; See if default user and password set from .netrc file.
1217 ((and (stringp ange-ftp-netrc-default-user)
1218 ange-ftp-netrc-default-password
1219 (string-equal user ange-ftp-netrc-default-user))
1220 ange-ftp-netrc-default-password)
1222 ;; anonymous ftp password is handled specially since there is an
1223 ;; unwritten rule about how that is used on the Internet.
1224 ((and (or (string-equal user "anonymous")
1225 (string-equal user "ftp"))
1226 ange-ftp-generate-anonymous-password)
1227 (if (stringp ange-ftp-generate-anonymous-password)
1228 ange-ftp-generate-anonymous-password
1229 user-mail-address))
1231 ;; see if same user has logged in to other hosts; if so then prompt
1232 ;; with the password that was used there.
1234 (let* ((other (ange-ftp-get-host-with-passwd user))
1235 (passwd (if other
1237 ;; found another machine with the same user.
1238 ;; Try that account.
1239 (read-passwd
1240 (format "passwd for %s@%s (default same as %s@%s): "
1241 user host user other)
1243 (ange-ftp-lookup-passwd other user))
1245 ;; I give up. Ask the user for the password.
1246 (read-passwd
1247 (format "Password for %s@%s: " user host)))))
1248 (ange-ftp-set-passwd host user passwd)
1249 passwd))))
1251 ;;;; ------------------------------------------------------------
1252 ;;;; Account support
1253 ;;;; ------------------------------------------------------------
1255 ;; Account passwords must be either specified in the .netrc file, or set
1256 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't
1257 ;; check to see whether the FTP process is actually prompting for an account
1258 ;; password.
1260 (defun ange-ftp-set-account (host user account)
1261 "For a given HOST and USER, set or change the associated ACCOUNT password."
1262 (interactive (list (read-string "Host: ")
1263 (read-string "User: ")
1264 (read-passwd "Account password: ")))
1265 (puthash (ange-ftp-generate-passwd-key host user)
1266 account ange-ftp-account-hashtable))
1268 (defun ange-ftp-get-account (host user)
1269 "Given a HOST and USER, return the FTP account."
1270 (ange-ftp-parse-netrc)
1271 (or (gethash (ange-ftp-generate-passwd-key host user)
1272 ange-ftp-account-hashtable)
1273 (and (stringp ange-ftp-default-user)
1274 (string-equal user ange-ftp-default-user)
1275 ange-ftp-default-account)
1276 (and (stringp ange-ftp-netrc-default-user)
1277 (string-equal user ange-ftp-netrc-default-user)
1278 ange-ftp-netrc-default-account)))
1280 ;;;; ------------------------------------------------------------
1281 ;;;; ~/.netrc support
1282 ;;;; ------------------------------------------------------------
1284 (defun ange-ftp-chase-symlinks (file)
1285 "Return the filename that FILE references, following all symbolic links."
1286 (let (temp)
1287 (while (setq temp (ange-ftp-real-file-symlink-p file))
1288 (setq file
1289 (if (file-name-absolute-p temp)
1290 temp
1291 ;; Wouldn't `expand-file-name' be better than `concat' ?
1292 ;; It would fail when `a/b/..' != `a', tho. --Stef
1293 (concat (file-name-directory file) temp)))))
1294 file)
1296 ;; Move along current line looking for the value of the TOKEN.
1297 ;; Valid separators between TOKEN and its value are commas and
1298 ;; whitespace. Second arg LIMIT is a limit for the search.
1300 (defun ange-ftp-parse-netrc-token (token limit)
1301 (if (search-forward token limit t)
1302 (let (beg)
1303 (skip-chars-forward ", \t\r\n" limit)
1304 (if (eq (following-char) ?\") ;quoted token value
1305 (progn (forward-char 1)
1306 (setq beg (point))
1307 (skip-chars-forward "^\"" limit)
1308 (forward-char 1)
1309 (buffer-substring beg (1- (point))))
1310 (setq beg (point))
1311 (skip-chars-forward "^, \t\r\n" limit)
1312 (buffer-substring beg (point))))))
1314 ;; Extract the values for the tokens `machine', `login',
1315 ;; `password' and `account' in the current buffer. If successful,
1316 ;; record the information found.
1318 (defun ange-ftp-parse-netrc-group ()
1319 (let ((start (point))
1320 (end (save-excursion
1321 (if (looking-at "machine\\>")
1322 ;; Skip `machine' and the machine name that follows.
1323 (progn
1324 (skip-chars-forward "^ \t\r\n")
1325 (skip-chars-forward " \t\r\n")
1326 (skip-chars-forward "^ \t\r\n"))
1327 ;; Skip `default'.
1328 (skip-chars-forward "^ \t\r\n"))
1329 ;; Find start of the next `machine' or `default'
1330 ;; or the end of the buffer.
1331 (if (re-search-forward "machine\\>\\|default\\>" nil t)
1332 (match-beginning 0)
1333 (point-max))))
1334 machine login password account)
1335 (setq machine (ange-ftp-parse-netrc-token "machine" end)
1336 login (ange-ftp-parse-netrc-token "login" end)
1337 password (ange-ftp-parse-netrc-token "password" end)
1338 account (ange-ftp-parse-netrc-token "account" end))
1339 (if (and machine login)
1340 ;; found a `machine` token.
1341 (progn
1342 (ange-ftp-set-user machine login)
1343 (ange-ftp-set-passwd machine login password)
1344 (and account
1345 (ange-ftp-set-account machine login account)))
1346 (goto-char start)
1347 (if (search-forward "default" end t)
1348 ;; found a `default' token
1349 (progn
1350 (setq login (ange-ftp-parse-netrc-token "login" end)
1351 password (ange-ftp-parse-netrc-token "password" end)
1352 account (ange-ftp-parse-netrc-token "account" end))
1353 (and login
1354 (setq ange-ftp-netrc-default-user login))
1355 (and password
1356 (setq ange-ftp-netrc-default-password password))
1357 (and account
1358 (setq ange-ftp-netrc-default-account account)))))
1359 (goto-char end)))
1361 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has
1362 ;; the correct permissions then extract the \`machine\', \`login\',
1363 ;; \`password\' and \`account\' information from within.
1365 (defun ange-ftp-parse-netrc ()
1366 ;; We set this before actually doing it to avoid the possibility
1367 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file.
1368 (interactive)
1369 (let (file attr)
1370 (let ((default-directory "/"))
1371 (setq file (ange-ftp-chase-symlinks
1372 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename)))
1373 (setq attr (ange-ftp-real-file-attributes file)))
1374 (if (and attr ; file exists.
1375 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed
1376 (save-match-data
1377 (if (or ange-ftp-disable-netrc-security-check
1378 (and (eq (nth 2 attr) (user-uid)) ; Same uids.
1379 (string-match ".r..------" (nth 8 attr))))
1380 (with-current-buffer
1381 ;; we are cheating a bit here. I'm trying to do the equivalent
1382 ;; of find-file on the .netrc file, but then nuke it afterwards.
1383 ;; with the bit of logic below we should be able to have
1384 ;; encrypted .netrc files.
1385 (generate-new-buffer "*ftp-.netrc*")
1386 (ange-ftp-real-insert-file-contents file)
1387 (setq buffer-file-name file)
1388 (setq default-directory (file-name-directory file))
1389 (normal-mode t)
1390 (run-hooks 'find-file-hook)
1391 (setq buffer-file-name nil)
1392 (goto-char (point-min))
1393 (skip-chars-forward " \t\r\n")
1394 (while (not (eobp))
1395 (ange-ftp-parse-netrc-group))
1396 (kill-buffer (current-buffer)))
1397 (ange-ftp-message "%s either not owned by you or badly protected."
1398 ange-ftp-netrc-filename)
1399 (sit-for 1))
1400 (setq ange-ftp-netrc-modtime (nth 5 attr))))))
1402 ;; Return a list of prefixes of the form 'user@host:' to be used when
1403 ;; completion is done in the root directory.
1405 (defun ange-ftp-generate-root-prefixes ()
1406 (ange-ftp-parse-netrc)
1407 (save-match-data
1408 (let (res)
1409 (maphash
1410 (lambda (key value)
1411 (if (string-match "\\`[^/]*\\(/\\).*\\'" key)
1412 (let ((host (substring key 0 (match-beginning 1)))
1413 (user (substring key (match-end 1))))
1414 (push (concat user "@" host ":") res))))
1415 ange-ftp-passwd-hashtable)
1416 (maphash
1417 (lambda (host user) (push (concat host ":") res))
1418 ange-ftp-user-hashtable)
1419 (or res (list nil)))))
1421 ;;;; ------------------------------------------------------------
1422 ;;;; Remote file name syntax support.
1423 ;;;; ------------------------------------------------------------
1425 (defmacro ange-ftp-ftp-name-component (n ns name)
1426 "Extract the Nth FTP file name component from NS."
1427 `(let ((elt (nth ,n ,ns)))
1428 (match-string elt ,name)))
1430 (defvar ange-ftp-ftp-name-arg "")
1431 (defvar ange-ftp-ftp-name-res nil)
1433 ;; Parse NAME according to `ange-ftp-name-format' (which see).
1434 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format.
1435 (defun ange-ftp-ftp-name (name)
1436 (if (string-equal name ange-ftp-ftp-name-arg)
1437 ange-ftp-ftp-name-res
1438 (setq ange-ftp-ftp-name-arg name
1439 ange-ftp-ftp-name-res
1440 (save-match-data
1441 (if (posix-string-match (car ange-ftp-name-format) name)
1442 (let* ((ns (cdr ange-ftp-name-format))
1443 (host (ange-ftp-ftp-name-component 0 ns name))
1444 (user (ange-ftp-ftp-name-component 1 ns name))
1445 (name (ange-ftp-ftp-name-component 2 ns name)))
1446 (if (zerop (length user))
1447 (setq user (ange-ftp-get-user host)))
1448 (list host user name))
1449 nil)))))
1451 ;; Take a FULLNAME that matches according to ange-ftp-name-format and
1452 ;; replace the name component with NAME.
1453 (defun ange-ftp-replace-name-component (fullname name)
1454 (save-match-data
1455 (if (posix-string-match (car ange-ftp-name-format) fullname)
1456 (let* ((ns (cdr ange-ftp-name-format))
1457 (elt (nth 2 ns)))
1458 (concat (substring fullname 0 (match-beginning elt))
1459 name
1460 (substring fullname (match-end elt)))))))
1462 ;;;; ------------------------------------------------------------
1463 ;;;; Miscellaneous utils.
1464 ;;;; ------------------------------------------------------------
1466 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap))
1467 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer)
1469 (defun ange-ftp-repaint-minibuffer ()
1470 "Clear any existing minibuffer message; let the minibuffer contents show."
1471 (message nil))
1473 ;; Return the name of the buffer that collects output from the ftp process
1474 ;; connected to the given HOST and USER pair.
1475 (defun ange-ftp-ftp-process-buffer (host user)
1476 (concat "*ftp " user "@" host "*"))
1478 ;; Display the last chunk of output from the ftp process for the given HOST
1479 ;; USER pair, and signal an error including MSG in the text.
1480 (defun ange-ftp-error (host user msg)
1481 (save-excursion ;; Prevent pop-to-buffer from changing current buffer.
1482 (let ((cur (selected-window)))
1483 (pop-to-buffer-same-frame-other-window
1484 (get-buffer-create
1485 (ange-ftp-ftp-process-buffer host user)))
1486 (goto-char (point-max))
1487 (select-window cur))
1488 (signal 'ftp-error (list (format "FTP Error: %s" msg)))))
1490 (defun ange-ftp-set-buffer-mode ()
1491 "Set correct modes for the current buffer if visiting a remote file."
1492 (if (and (stringp buffer-file-name)
1493 (ange-ftp-ftp-name buffer-file-name))
1494 (auto-save-mode ange-ftp-auto-save)))
1496 (defun ange-ftp-kill-ftp-process (&optional buffer)
1497 "Kill the FTP process associated with BUFFER (the current buffer, if nil).
1498 If the BUFFER's visited filename or `default-directory' is an FTP filename
1499 then kill the related FTP process."
1500 (interactive "bKill FTP process associated with buffer: ")
1501 (if (null buffer)
1502 (setq buffer (current-buffer))
1503 (setq buffer (get-buffer buffer)))
1504 (let ((file (or (buffer-file-name buffer)
1505 (with-current-buffer buffer default-directory))))
1506 (if file
1507 (let ((parsed (ange-ftp-ftp-name (expand-file-name file))))
1508 (if parsed
1509 (let ((host (nth 0 parsed))
1510 (user (nth 1 parsed)))
1511 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user)))))))))
1513 (defun ange-ftp-quote-string (string)
1514 "Quote any characters in STRING that may confuse the FTP process."
1515 ;; This is said to be wrong; ftp is said to need quoting only for ",
1516 ;; and that by doubling it. But experiment says UNIX-style kind of
1517 ;; quoting is correct when talking to ftp on GNU/Linux systems, and
1518 ;; W32-style kind of quoting on, yes, W32 systems.
1519 (if (stringp string)
1520 (shell-quote-argument string)
1521 ""))
1523 (defun ange-ftp-barf-if-not-directory (directory)
1524 (or (file-directory-p directory)
1525 (signal 'file-error
1526 (list "Opening directory"
1527 (if (file-exists-p directory)
1528 "not a directory"
1529 "no such file or directory")
1530 directory))))
1532 ;;;; ------------------------------------------------------------
1533 ;;;; FTP process filter support.
1534 ;;;; ------------------------------------------------------------
1536 (defun ange-ftp-process-handle-line (line proc)
1537 "Look at the given LINE from the FTP process PROC.
1538 Try to categorize it into one of four categories:
1539 good, skip, fatal, or unknown."
1540 (cond ((string-match ange-ftp-xfer-size-msgs line)
1541 (setq ange-ftp-xfer-size
1542 (/ (string-to-number (match-string 1 line))
1543 1024)))
1544 ((string-match ange-ftp-skip-msgs line)
1546 ((string-match ange-ftp-good-msgs line)
1547 (setq ange-ftp-process-busy nil
1548 ange-ftp-process-result t
1549 ange-ftp-pending-error-line nil
1550 ange-ftp-process-result-line line))
1551 ;; Check this before checking for errors.
1552 ;; Otherwise the last line of these three seems to be an error:
1553 ;; 230-see a significant impact from the move. For those of you who can't
1554 ;; 230-use DNS to resolve hostnames and get an error message like
1555 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be...
1556 ((string-match ange-ftp-multi-msgs line)
1557 (setq ange-ftp-process-multi-skip t))
1558 ((string-match ange-ftp-potential-error-msgs line)
1559 ;; This looks like an error, but we have to keep reading the output
1560 ;; to see if it was fixed or not. E.g. it may indicate that IPv6
1561 ;; failed, but maybe a subsequent IPv4 fallback succeeded.
1562 (set (make-local-variable 'ange-ftp-pending-error-line) line)
1564 ((string-match ange-ftp-fatal-msgs line)
1565 (delete-process proc)
1566 (setq ange-ftp-process-busy nil
1567 ange-ftp-process-result-line line))
1568 (ange-ftp-process-multi-skip
1571 (setq ange-ftp-process-busy nil
1572 ange-ftp-process-result-line line))))
1574 (defun ange-ftp-set-xfer-size (host user bytes)
1575 "Set the size of the next FTP transfer in bytes."
1576 (let ((proc (ange-ftp-get-process host user)))
1577 (when proc
1578 (let ((buf (process-buffer proc)))
1579 (when buf
1580 (with-current-buffer buf
1581 (setq ange-ftp-xfer-size
1582 ;; For very large files, BYTES can be a float.
1583 (if (integerp bytes)
1584 (ash bytes -10)
1585 (/ bytes 1024)))))))))
1587 (defun ange-ftp-process-handle-hash (string)
1588 "Remove hash marks from STRING and display count so far."
1589 (setq string (concat (substring string 0 (match-beginning 0))
1590 (substring string (match-end 0)))
1591 ange-ftp-hash-mark-count (+ (- (match-end 0)
1592 (match-beginning 0))
1593 ange-ftp-hash-mark-count))
1594 (and ange-ftp-hash-mark-unit
1595 ange-ftp-process-msg
1596 ange-ftp-process-verbose
1597 (not (eq (selected-window) (minibuffer-window)))
1598 (not (boundp 'search-message)) ;screws up isearch otherwise
1599 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise
1600 (let ((kbytes (ash (* ange-ftp-hash-mark-unit
1601 ange-ftp-hash-mark-count)
1602 -6)))
1603 (if (zerop ange-ftp-xfer-size)
1604 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes)
1605 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size)))
1606 ;; cut out the redisplay of identical %-age messages.
1607 (unless (eq percent ange-ftp-last-percent)
1608 (setq ange-ftp-last-percent percent)
1609 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))
1610 string)
1612 ;; Call the function specified by CONT. CONT can be either a function
1613 ;; or a list of a function and some args. The first two parameters
1614 ;; passed to the function will be RESULT and LINE. The remaining args
1615 ;; will be taken from CONT if a list was passed.
1617 (defun ange-ftp-call-cont (cont result line)
1618 (when cont
1619 (if (and (listp cont)
1620 (not (eq (car cont) 'lambda)))
1621 (apply (car cont) result line (cdr cont))
1622 (funcall cont result line))))
1624 ;; Build up a complete line of output from the ftp PROCESS and pass it
1625 ;; on to ange-ftp-process-handle-line to deal with.
1627 (defun ange-ftp-process-filter (proc str)
1628 ;; Eliminate nulls.
1629 (while (string-match "\000+" str)
1630 (setq str (replace-match "" nil nil str)))
1632 ;; see if the buffer is still around... it could have been deleted.
1633 (when (buffer-live-p (process-buffer proc))
1634 (with-current-buffer (process-buffer proc)
1636 ;; handle hash mark printing
1637 (and ange-ftp-process-busy
1638 (string-match "^#+$" str)
1639 (setq str (ange-ftp-process-handle-hash str)))
1640 (comint-output-filter proc str)
1641 ;; Replace STR by the result of the comint processing.
1642 (setq str (buffer-substring comint-last-output-start
1643 (process-mark proc)))
1644 (when ange-ftp-process-busy
1645 (setq ange-ftp-process-string (concat ange-ftp-process-string
1646 str))
1648 ;; if we gave an empty password to the USER command earlier
1649 ;; then we should send a null password now.
1650 (if (string-match "Password: *$" ange-ftp-process-string)
1651 (process-send-string proc "\n")))
1652 (while (and ange-ftp-process-busy
1653 (string-match "\n" ange-ftp-process-string))
1654 (let ((line (substring ange-ftp-process-string
1656 (match-beginning 0)))
1657 (seen-prompt nil))
1658 (setq ange-ftp-process-string (substring ange-ftp-process-string
1659 (match-end 0)))
1660 (while (string-match "\\`ftp> *" line)
1661 (setq seen-prompt t)
1662 (setq line (substring line (match-end 0))))
1663 (if (not (and seen-prompt ange-ftp-pending-error-line))
1664 (ange-ftp-process-handle-line line proc)
1665 ;; If we've seen a potential error message and it
1666 ;; hasn't been cancelled by a good message before
1667 ;; seeing a propt, then the error was real.
1668 (delete-process proc)
1669 (setq ange-ftp-process-busy nil
1670 ange-ftp-process-result-line ange-ftp-pending-error-line))))
1672 ;; has the ftp client finished? if so then do some clean-up
1673 ;; actions.
1674 (unless ange-ftp-process-busy
1675 ;; reset the xfer size
1676 (setq ange-ftp-xfer-size 0)
1678 ;; issue the "done" message since we've finished.
1679 (when (and ange-ftp-process-msg
1680 ange-ftp-process-verbose
1681 ange-ftp-process-result)
1682 (ange-ftp-message "%s...done" ange-ftp-process-msg)
1683 (ange-ftp-repaint-minibuffer)
1684 (setq ange-ftp-process-msg nil))
1686 ;; is there a continuation we should be calling? if so,
1687 ;; we'd better call it, making sure we only call it once.
1688 (when ange-ftp-process-continue
1689 (let ((cont ange-ftp-process-continue))
1690 (setq ange-ftp-process-continue nil)
1691 (ange-ftp-call-cont cont
1692 ange-ftp-process-result
1693 ange-ftp-process-result-line)))))))
1695 (defun ange-ftp-process-sentinel (proc str)
1696 "When FTP process changes state, nuke all file-entries in cache."
1697 (let ((name (process-name proc)))
1698 (when (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name)
1699 (let ((user (match-string 1 name))
1700 (host (match-string 2 name)))
1701 (ange-ftp-wipe-file-entries host user))))
1702 (setq ange-ftp-ls-cache-file nil))
1704 ;;;; ------------------------------------------------------------
1705 ;;;; Gateway support.
1706 ;;;; ------------------------------------------------------------
1708 (defun ange-ftp-use-gateway-p (host)
1709 "Return whether to access this HOST via a normal (non-smart) gateway."
1710 ;; yes, I know that I could simplify the following expression, but it is
1711 ;; clearer (to me at least) this way.
1712 (and (not ange-ftp-smart-gateway)
1713 (not (string-match-p ange-ftp-local-host-regexp host))))
1715 (defun ange-ftp-use-smart-gateway-p (host)
1716 "Returns whether to access this HOST via a smart gateway."
1717 (and ange-ftp-smart-gateway
1718 (not (string-match-p ange-ftp-local-host-regexp host))))
1721 ;;; ------------------------------------------------------------
1722 ;;; Temporary file location and deletion...
1723 ;;; ------------------------------------------------------------
1725 (defun ange-ftp-make-tmp-name (host)
1726 "This routine will return the name of a new file."
1727 (make-temp-file (if (ange-ftp-use-gateway-p host)
1728 ange-ftp-gateway-tmp-name-template
1729 ange-ftp-tmp-name-template)))
1731 (defun ange-ftp-del-tmp-name (filename)
1732 "Force to delete temporary file."
1733 (delete-file filename))
1736 ;;;; ------------------------------------------------------------
1737 ;;;; Interactive gateway program support.
1738 ;;;; ------------------------------------------------------------
1740 (defvar ange-ftp-gwp-running t)
1741 (defvar ange-ftp-gwp-status nil)
1743 (defun ange-ftp-gwp-sentinel (proc str)
1744 (setq ange-ftp-gwp-running nil))
1746 (defun ange-ftp-gwp-filter (proc str)
1747 (comint-output-filter proc str)
1748 (with-current-buffer (process-buffer proc)
1749 ;; Replace STR by the result of the comint processing.
1750 (setq str (buffer-substring comint-last-output-start (process-mark proc))))
1751 (cond ((string-match "login: *$" str)
1752 (process-send-string proc
1753 (concat
1754 (let ((ange-ftp-default-user t))
1755 (ange-ftp-get-user ange-ftp-gateway-host))
1756 "\n")))
1757 ((string-match "Password: *$" str)
1758 (process-send-string proc
1759 (concat
1760 (ange-ftp-get-passwd ange-ftp-gateway-host
1761 (ange-ftp-get-user
1762 ange-ftp-gateway-host))
1763 "\n")))
1764 ((string-match ange-ftp-gateway-fatal-msgs str)
1765 (delete-process proc)
1766 (setq ange-ftp-gwp-running nil))
1767 ((string-match ange-ftp-gateway-prompt-pattern str)
1768 (setq ange-ftp-gwp-running nil
1769 ange-ftp-gwp-status t))))
1771 (defun ange-ftp-gwp-start (host user name args)
1772 "Login to the gateway machine and fire up an FTP process."
1773 (let (;; It would be nice to make process-connection-type nil,
1774 ;; but that doesn't work: ftp never responds.
1775 ;; Can anyone find a fix for that?
1776 (proc (let ((process-connection-type t))
1777 (start-process name name
1778 ange-ftp-gateway-program
1779 ange-ftp-gateway-host)))
1780 (ftp (mapconcat 'identity args " ")))
1781 (set-process-query-on-exit-flag proc nil)
1782 (set-process-sentinel proc 'ange-ftp-gwp-sentinel)
1783 (set-process-filter proc 'ange-ftp-gwp-filter)
1784 (with-current-buffer (process-buffer proc)
1785 (goto-char (point-max))
1786 (set-marker (process-mark proc) (point)))
1787 (setq ange-ftp-gwp-running t
1788 ange-ftp-gwp-status nil)
1789 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host)
1790 (while ange-ftp-gwp-running ;perform login sequence
1791 (accept-process-output proc))
1792 (unless ange-ftp-gwp-status
1793 (ange-ftp-error host user "unable to login to gateway"))
1794 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host)
1795 (setq ange-ftp-gwp-running t
1796 ange-ftp-gwp-status nil)
1797 (process-send-string proc ange-ftp-gateway-setup-term-command)
1798 (while ange-ftp-gwp-running ;zap ^M's and double echoing.
1799 (accept-process-output proc))
1800 (unless ange-ftp-gwp-status
1801 (ange-ftp-error host user "unable to set terminal modes on gateway"))
1802 (setq ange-ftp-gwp-running t
1803 ange-ftp-gwp-status nil)
1804 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process
1805 proc))
1807 ;;;; ------------------------------------------------------------
1808 ;;;; Support for sending commands to the ftp process.
1809 ;;;; ------------------------------------------------------------
1811 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait)
1812 "Low-level routine to send the given FTP CMD to the FTP process PROC.
1813 MSG is an optional message to output before and after the command.
1814 If CONT is non-nil then it is either a function or a list of function
1815 and some arguments. The function will be called when the FTP command
1816 has completed.
1817 If CONT is nil then this routine will return (RESULT . LINE) where RESULT
1818 is whether the command was successful, and LINE is the line from the FTP
1819 process that caused the command to complete.
1820 If NOWAIT is given then the routine will return immediately the command has
1821 been queued with no result. CONT will still be called, however."
1822 (if (memq (process-status proc) '(run open))
1823 (with-current-buffer (process-buffer proc)
1824 (ange-ftp-wait-not-busy proc)
1825 (setq ange-ftp-process-string ""
1826 ange-ftp-process-result-line ""
1827 ange-ftp-process-busy t
1828 ange-ftp-process-result nil
1829 ange-ftp-process-multi-skip nil
1830 ange-ftp-process-msg msg
1831 ange-ftp-process-continue cont
1832 ange-ftp-hash-mark-count 0
1833 ange-ftp-last-percent -1
1834 cmd (concat cmd "\n"))
1835 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg))
1836 (goto-char (point-max))
1837 (move-marker comint-last-input-start (point))
1838 ;; don't insert the password into the buffer on the USER command.
1839 (save-match-data
1840 (if (string-match "\\`user \"[^\"]*\"" cmd)
1841 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n")
1842 (insert cmd)))
1843 (move-marker comint-last-input-end (point))
1844 (process-send-string proc cmd)
1845 (set-marker (process-mark proc) (point))
1846 (if nowait
1848 (ange-ftp-wait-not-busy proc)
1849 (if cont
1850 nil ;cont has already been called
1851 (cons ange-ftp-process-result ange-ftp-process-result-line))))))
1853 ;; Wait for the ange-ftp process PROC not to be busy.
1854 (defun ange-ftp-wait-not-busy (proc)
1855 (with-current-buffer (process-buffer proc)
1856 (condition-case nil
1857 ;; This is a kludge to let user quit in case ftp gets hung.
1858 ;; It matters because this function can be called from the filter.
1859 ;; It is bad to allow quitting in a filter, but getting hung
1860 ;; is worse. By binding quit-flag to nil, we might avoid
1861 ;; most of the probability of getting screwed because the user
1862 ;; wants to quit some command.
1863 (let ((quit-flag nil)
1864 (inhibit-quit nil))
1865 (while ange-ftp-process-busy
1866 (accept-process-output proc)))
1867 (quit
1868 ;; If the user does quit out of this,
1869 ;; kill the process. That stops any transfer in progress.
1870 ;; The next operation will open a new ftp connection.
1871 (delete-process proc)
1872 (signal 'quit nil)))))
1874 (defun ange-ftp-nslookup-host (hostname)
1875 "Attempt to resolve the given HOSTNAME using nslookup if possible."
1876 (interactive "sHost: ")
1877 (if ange-ftp-nslookup-program
1878 (let ((default-directory
1879 (if (file-accessible-directory-p default-directory)
1880 default-directory
1881 exec-directory))
1882 ;; It would be nice to make process-connection-type nil,
1883 ;; but that doesn't work: ftp never responds.
1884 ;; Can anyone find a fix for that?
1885 (proc (let ((process-connection-type t))
1886 (start-process " *nslookup*" " *nslookup*"
1887 ange-ftp-nslookup-program hostname)))
1888 (res hostname))
1889 (set-process-query-on-exit-flag proc nil)
1890 (with-current-buffer (process-buffer proc)
1891 (while (memq (process-status proc) '(run open))
1892 (accept-process-output proc))
1893 (goto-char (point-min))
1894 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t)
1895 (setq res (match-string 1)))
1896 (kill-buffer (current-buffer)))
1897 res)
1898 hostname))
1900 (defun ange-ftp-start-process (host user name)
1901 "Spawn a new FTP process ready to connect to machine HOST and give it NAME.
1902 If HOST is only FTP-able through a gateway machine then spawn a shell
1903 on the gateway machine to do the FTP instead."
1904 (let* ((use-gateway (ange-ftp-use-gateway-p host))
1905 (use-smart-ftp (and (not ange-ftp-gateway-host)
1906 (ange-ftp-use-smart-gateway-p host)))
1907 (ftp-prog (if (or use-gateway
1908 use-smart-ftp)
1909 ange-ftp-gateway-ftp-program-name
1910 ange-ftp-ftp-program-name))
1911 (args (append (list ftp-prog) ange-ftp-ftp-program-args))
1912 ;; Without the following binding, ange-ftp-start-process
1913 ;; recurses on file-accessible-directory-p, since it needs to
1914 ;; restart its process in order to determine anything about
1915 ;; default-directory.
1916 (file-name-handler-alist)
1917 (default-directory
1918 (if (file-accessible-directory-p default-directory)
1919 default-directory
1920 exec-directory))
1921 proc)
1922 ;; It would be nice to make process-connection-type nil,
1923 ;; but that doesn't work: ftp never responds.
1924 ;; Can anyone find a fix for that?
1925 (let ((process-connection-type t)
1926 ;; Copy this so we don't alter it permanently.
1927 (process-environment (copy-tree process-environment))
1928 (buffer (get-buffer-create name)))
1929 (with-current-buffer buffer
1930 (internal-ange-ftp-mode))
1931 ;; This tells GNU ftp not to output any fancy escape sequences.
1932 (setenv "TERM" "dumb")
1933 (if use-gateway
1934 (if ange-ftp-gateway-program-interactive
1935 (setq proc (ange-ftp-gwp-start host user name args))
1936 (setq proc (apply 'start-process name name
1937 (append (list ange-ftp-gateway-program
1938 ange-ftp-gateway-host)
1939 args))))
1940 (setq proc (apply 'start-process name name args))))
1941 (with-current-buffer (process-buffer proc)
1942 (goto-char (point-max))
1943 (set-marker (process-mark proc) (point)))
1944 (set-process-query-on-exit-flag proc nil)
1945 (set-process-sentinel proc 'ange-ftp-process-sentinel)
1946 (set-process-filter proc 'ange-ftp-process-filter)
1947 ;; On Windows, the standard ftp client buffers its output (because
1948 ;; stdout is a pipe handle) so the startup message may never appear:
1949 ;; `accept-process-output' at this point would hang indefinitely.
1950 ;; However, sending an innocuous command ("help foo") forces some
1951 ;; output that will be ignored, which is just as good. Once we
1952 ;; start sending normal commands, the output no longer appears to be
1953 ;; buffered, and everything works correctly. My guess is that the
1954 ;; output of interest is being sent to stderr which is not buffered.
1955 (when (eq system-type 'windows-nt)
1956 ;; force ftp output to be treated as DOS text, otherwise the
1957 ;; output of "help foo" confuses the EOL detection logic.
1958 (set-process-coding-system proc 'raw-text-dos)
1959 (process-send-string proc "help foo\n"))
1960 (accept-process-output proc) ;wait for ftp startup message
1961 proc))
1963 (define-derived-mode internal-ange-ftp-mode comint-mode "Internal Ange-ftp"
1964 "Major mode for interacting with the FTP process.
1966 \\{comint-mode-map}"
1967 (make-local-variable 'ange-ftp-process-string)
1968 (setq ange-ftp-process-string "")
1969 (make-local-variable 'ange-ftp-process-busy)
1970 (make-local-variable 'ange-ftp-process-result)
1971 (make-local-variable 'ange-ftp-process-msg)
1972 (make-local-variable 'ange-ftp-process-multi-skip)
1973 (make-local-variable 'ange-ftp-process-result-line)
1974 (make-local-variable 'ange-ftp-process-continue)
1975 (make-local-variable 'ange-ftp-hash-mark-count)
1976 (make-local-variable 'ange-ftp-binary-hash-mark-size)
1977 (make-local-variable 'ange-ftp-ascii-hash-mark-size)
1978 (make-local-variable 'ange-ftp-hash-mark-unit)
1979 (make-local-variable 'ange-ftp-xfer-size)
1980 (make-local-variable 'ange-ftp-last-percent)
1981 (setq ange-ftp-hash-mark-count 0)
1982 (setq ange-ftp-xfer-size 0)
1983 (setq ange-ftp-process-result-line "")
1984 (setq comint-prompt-regexp "^ftp> ")
1985 (make-local-variable 'comint-password-prompt-regexp)
1986 ;; This is a regexp that can't match anything.
1987 ;; ange-ftp has its own ways of handling passwords.
1988 (setq comint-password-prompt-regexp "\\`a\\`")
1989 (make-local-variable 'paragraph-start)
1990 (setq paragraph-start comint-prompt-regexp))
1992 (defcustom ange-ftp-raw-login nil
1993 "Use raw FTP commands for login, if account password is not nil.
1994 Some FTP implementations need this, e.g. ftp in NT 4.0."
1995 :group 'ange-ftp
1996 :version "21.3"
1997 :type 'boolean)
1999 (defun ange-ftp-smart-login (host user password account proc)
2000 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2001 PROC is the FTP-client's process. This routine uses the smart-gateway
2002 host specified in `ange-ftp-gateway-host'."
2003 (let ((result (ange-ftp-raw-send-cmd
2004 proc
2005 (format "open %s %s"
2006 (ange-ftp-nslookup-host ange-ftp-gateway-host)
2007 ange-ftp-smart-gateway-port)
2008 (format "Opening FTP connection to %s via %s"
2009 host
2010 ange-ftp-gateway-host))))
2011 (or (car result)
2012 (ange-ftp-error host user
2013 (concat "OPEN request failed: "
2014 (cdr result))))
2015 (setq result (ange-ftp-raw-send-cmd
2016 proc (format "user \"%s\"@%s %s %s"
2017 user
2018 (ange-ftp-nslookup-host host)
2019 password
2020 account)
2021 (format "Logging in as user %s@%s"
2022 user host)))
2023 (or (car result)
2024 (progn
2025 (ange-ftp-set-passwd host user nil) ; reset password
2026 (ange-ftp-set-account host user nil) ; reset account
2027 (ange-ftp-error host user
2028 (concat "USER request failed: "
2029 (cdr result)))))))
2031 (defun ange-ftp-normal-login (host user password account proc)
2032 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2033 PROC is the process to the FTP-client. HOST may have an optional
2034 suffix of the form #PORT to specify a non-default port."
2035 (save-match-data
2036 (string-match "\\`\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host)
2037 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host)))
2038 (port (match-string 3 host))
2039 (result (ange-ftp-raw-send-cmd
2040 proc
2041 (if port
2042 (format "open %s %s" nshost port)
2043 (format "open %s" nshost))
2044 (format "Opening FTP connection to %s" host))))
2045 (or (car result)
2046 (ange-ftp-error host user
2047 (concat "OPEN request failed: "
2048 (cdr result))))
2049 (if (not (and ange-ftp-raw-login (string< "" account)))
2050 (setq result (ange-ftp-raw-send-cmd
2051 proc
2052 (if (and (ange-ftp-use-smart-gateway-p host)
2053 ange-ftp-gateway-host)
2054 (format "user \"%s\"@%s %s %s"
2055 user nshost password account)
2056 (format "user \"%s\" %s %s" user password account))
2057 (format "Logging in as user %s@%s" user host)))
2058 (let ((good ange-ftp-good-msgs)
2059 (skip ange-ftp-skip-msgs))
2060 (setq ange-ftp-good-msgs (concat ange-ftp-good-msgs
2061 "\\|^331 \\|^332 "))
2062 (if (string-match (regexp-quote "\\|^331 ") ange-ftp-skip-msgs)
2063 (setq ange-ftp-skip-msgs
2064 (replace-match "" t t ange-ftp-skip-msgs)))
2065 (if (string-match (regexp-quote "\\|^332 ") ange-ftp-skip-msgs)
2066 (setq ange-ftp-skip-msgs
2067 (replace-match "" t t ange-ftp-skip-msgs)))
2068 (setq result (ange-ftp-raw-send-cmd
2069 proc
2070 (format "quote \"USER %s\"" user)
2071 (format "Logging in as user %s@%s" user host)))
2072 (and (car result)
2073 (setq result (ange-ftp-raw-send-cmd
2074 proc
2075 (format "quote \"PASS %s\"" password)
2076 (format "Logging in as user %s@%s" user host)))
2077 (and (car result)
2078 (setq result (ange-ftp-raw-send-cmd
2079 proc
2080 (format "quote \"ACCT %s\"" account)
2081 (format "Logging in as user %s@%s" user host)))
2083 (setq ange-ftp-good-msgs good
2084 ange-ftp-skip-msgs skip)))
2085 (or (car result)
2086 (progn
2087 (ange-ftp-set-passwd host user nil) ;reset password.
2088 (ange-ftp-set-account host user nil) ;reset account.
2089 (ange-ftp-error host user
2090 (concat "USER request failed: "
2091 (cdr result))))))))
2093 ;; ange@hplb.hpl.hp.com says this should not be changed.
2094 (defvar ange-ftp-hash-mark-msgs
2095 "[hH]ash mark [^0-9]*\\([0-9]+\\)"
2096 "*Regexp matching the FTP client's output upon doing a HASH command.")
2098 (defun ange-ftp-guess-hash-mark-size (proc)
2099 (if ange-ftp-send-hash
2100 (with-current-buffer (process-buffer proc)
2101 (let* ((status (ange-ftp-raw-send-cmd proc "hash"))
2102 (line (cdr status)))
2103 (save-match-data
2104 (if (string-match ange-ftp-hash-mark-msgs line)
2105 (let ((size (string-to-number (match-string 1 line))))
2106 (setq ange-ftp-ascii-hash-mark-size size
2107 ange-ftp-hash-mark-unit (ash size -4))
2109 ;; if a default value for this is set, use that value.
2110 (or ange-ftp-binary-hash-mark-size
2111 (setq ange-ftp-binary-hash-mark-size size)))))))))
2113 (defvar ange-ftp-process-startup-hook nil)
2115 (defun ange-ftp-get-process (host user)
2116 "Return an FTP subprocess connected to HOST and logged in as USER.
2117 Create a new process if needed."
2118 (let* ((name (ange-ftp-ftp-process-buffer host user))
2119 (proc (get-process name)))
2120 (if (and proc (memq (process-status proc) '(run open)))
2121 proc
2122 ;; Must delete dead process so that new process can reuse the name.
2123 (if proc (delete-process proc))
2124 (let ((pass (ange-ftp-quote-string
2125 (ange-ftp-get-passwd host user)))
2126 (account (ange-ftp-quote-string
2127 (ange-ftp-get-account host user))))
2128 ;; grab a suitable process.
2129 (setq proc (ange-ftp-start-process host user name))
2131 ;; login to FTP server.
2132 (if (and (ange-ftp-use-smart-gateway-p host)
2133 ange-ftp-gateway-host)
2134 (ange-ftp-smart-login host user pass account proc)
2135 (ange-ftp-normal-login host user pass account proc))
2137 ;; Tell client to send back hash-marks as progress. It isn't usually
2138 ;; fatal if this command fails.
2139 (ange-ftp-guess-hash-mark-size proc)
2141 ;; Guess at the host type.
2142 (ange-ftp-guess-host-type host user)
2144 ;; Turn passive mode on or off as requested.
2145 (let* ((case-fold-search t)
2146 (passive
2147 (or (assoc-default host ange-ftp-passive-host-alist
2148 'string-match)
2149 (if ange-ftp-try-passive-mode "on"))))
2150 (if passive
2151 (ange-ftp-passive-mode proc passive)))
2153 ;; Run any user-specified hooks. Note that proc, host and user are
2154 ;; dynamically bound at this point.
2155 (let ((ange-ftp-this-user user)
2156 (ange-ftp-this-host host))
2157 (run-hooks 'ange-ftp-process-startup-hook)))
2158 proc)))
2160 (defun ange-ftp-passive-mode (proc on-or-off)
2161 (if (string-match (concat "Passive mode " on-or-off)
2162 (cdr (ange-ftp-raw-send-cmd
2163 proc (concat "passive " on-or-off)
2164 "Trying passive mode..." nil)))
2165 (ange-ftp-message (concat "Trying passive mode..." on-or-off))
2166 (error "Trying passive mode...failed")))
2168 ;; Variables for caching host and host-type
2169 (defvar ange-ftp-host-cache nil)
2170 (defvar ange-ftp-host-type-cache nil)
2172 ;; If ange-ftp-host-type is called with the optional user
2173 ;; argument, it will attempt to guess the host type by connecting
2174 ;; as user, if necessary. For efficiency, I have tried to give this
2175 ;; optional second argument only when necessary. Have I missed any calls
2176 ;; to ange-ftp-host-type where it should have been supplied?
2178 (defun ange-ftp-host-type (host &optional user)
2179 "Return a symbol which represents the type of the HOST given.
2180 If the optional argument USER is given, attempts to guess the
2181 host-type by logging in as USER."
2182 (cond ((null host) 'unix)
2183 ;; Return `unix' if HOST is nil, since that's the most vanilla
2184 ;; possible return value.
2185 ((eq host ange-ftp-host-cache)
2186 ange-ftp-host-type-cache)
2187 ;; Trigger an ftp connection, in case we need to guess at the host type.
2188 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache))
2189 ange-ftp-host-type-cache)
2191 (setq ange-ftp-host-cache host
2192 ange-ftp-host-type-cache
2193 (cond ((ange-ftp-dumb-unix-host host)
2194 'dumb-unix)
2195 ;; ((and (fboundp 'ange-ftp-vos-host)
2196 ;; (ange-ftp-vos-host host))
2197 ;; 'vos)
2198 ((and (fboundp 'ange-ftp-vms-host)
2199 (ange-ftp-vms-host host))
2200 'vms)
2201 ((and (fboundp 'ange-ftp-mts-host)
2202 (ange-ftp-mts-host host))
2203 'mts)
2204 ((and (fboundp 'ange-ftp-cms-host)
2205 (ange-ftp-cms-host host))
2206 'cms)
2207 ((and (fboundp 'ange-ftp-bs2000-posix-host)
2208 (ange-ftp-bs2000-posix-host host))
2209 'text-unix) ; POSIX is a non-ASCII Unix
2210 ((and (fboundp 'ange-ftp-bs2000-host)
2211 (ange-ftp-bs2000-host host))
2212 'bs2000)
2214 'unix))))))
2216 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and
2217 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
2218 ;; without sacrificing speed. Also, having separate variables
2219 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
2220 ;; set an alist to indicate that a host is of a given type. Even with
2221 ;; automatic host type recognition, setting a regexp is still a good idea
2222 ;; (for efficiency) if you log into a particular non-UNIX host frequently.
2224 (defvar ange-ftp-fix-name-func-alist nil
2225 "Alist saying how to convert file name to the host's syntax.
2226 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2227 change a UNIX file name into a name more suitable for a host of type TYPE.")
2229 (defvar ange-ftp-fix-dir-name-func-alist nil
2230 "Alist saying how to convert directory name to the host's syntax.
2231 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2232 change UNIX directory name into a directory name more suitable for a host
2233 of type TYPE.")
2235 ;; *** Perhaps the sense of this variable should be inverted, since there
2236 ;; *** is only 1 host type that can take ls-style listing options.
2237 (defvar ange-ftp-dumb-host-types '(dumb-unix)
2238 "List of host types that can't take UNIX ls-style listing options.")
2240 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait)
2241 "Find an FTP process connected to HOST logged in as USER and send it CMD.
2242 MSG is an optional status message to be output before and after issuing the
2243 command.
2244 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT
2245 and NOWAIT."
2246 ;; Handle conversion to remote file name syntax and remote ls option
2247 ;; capability.
2248 (let ((cmd0 (car cmd))
2249 (cmd1 (nth 1 cmd))
2250 (ange-ftp-this-user user)
2251 (ange-ftp-this-host host)
2252 (ange-ftp-this-msg msg)
2253 cmd2 cmd3 host-type fix-name-func result)
2255 (cond
2257 ;; pwd case (We don't care what host-type.)
2258 ((null cmd1))
2260 ;; cmd == 'dir "remote-name" "local-name" "ls-switches"
2261 ((progn
2262 (setq cmd2 (nth 2 cmd)
2263 host-type (ange-ftp-host-type host user))
2264 ;; This will trigger an FTP login, if one doesn't exist
2265 (eq cmd0 'dir))
2266 (setq cmd1 (funcall
2267 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist))
2268 'identity)
2269 cmd1)
2270 cmd3 (nth 3 cmd))
2271 ;; Need to deal with the HP-UX ftp bug. This should also allow us to
2272 ;; resolve symlinks to directories on SysV machines. (Sebastian will
2273 ;; be happy.)
2274 (and (eq host-type 'unix)
2275 (string-match "/\\'" cmd1)
2276 (not (string-match "R" cmd3))
2277 (setq cmd1 (concat cmd1 ".")))
2279 ;; Using "ls -flags foo" has several problems:
2280 ;; - if foo is a symlink, we may get a single line showing the symlink
2281 ;; rather than the listing of the directory it points to.
2282 ;; - if "foo" has spaces, the parsing of the command may be done wrong.
2283 ;; - some version of netbsd's ftpd only accept a single argument after
2284 ;; `ls', which can either be the directory or the flags.
2285 ;; So to work around those problems, we use "cd foo; ls -flags".
2287 ;; If the dir name contains a space, some ftp servers will
2288 ;; refuse to list it. We instead change directory to the
2289 ;; directory in question and ls ".".
2290 (when (string-match " " cmd1)
2291 ;; Keep the result. In case of failure, we will (see below)
2292 ;; short-circuit CMD and return this result directly.
2293 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror))
2294 (setq cmd1 "."))
2296 ;; If the remote ls can take switches, put them in
2297 (unless (memq host-type ange-ftp-dumb-host-types)
2298 (setq cmd0 'ls)
2299 ;; We cd and then use `ls' with no directory argument.
2300 ;; This works around a misfeature of some versions of netbsd ftpd
2301 ;; where `ls' can only take one argument: either one set of flags
2302 ;; or a file/directory name.
2303 ;; If we're trying to `ls' a single file, this fails since we
2304 ;; can't cd to a file. We can't fix this problem here, tho, because
2305 ;; at this point we don't know whether the argument is a file or
2306 ;; a directory. Such an `ls' is only ever used (apparently) from
2307 ;; `insert-directory' when the `full-directory-p' argument is nil
2308 ;; (which seems to only be used by dired when updating its display
2309 ;; after operating on a set of files). So we've changed
2310 ;; `ange-ftp-insert-directory' such that in this case it gets
2311 ;; a full listing of the directory and extracting the line
2312 ;; corresponding to the requested file.
2313 (unless (equal cmd1 ".")
2314 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)))
2315 (setq cmd1 cmd3)))
2317 ;; First argument is the remote name
2318 ((progn
2319 (setq fix-name-func (or (cdr (assq host-type
2320 ange-ftp-fix-name-func-alist))
2321 'identity))
2322 (memq cmd0 '(get delete mkdir rmdir cd)))
2323 (setq cmd1 (funcall fix-name-func cmd1)))
2325 ;; Second argument is the remote name
2326 ((or (memq cmd0 '(append put chmod))
2327 (and (eq cmd0 'quote) (member cmd1 '("mdtm" "size"))))
2328 (setq cmd2 (funcall fix-name-func cmd2)))
2329 ;; Both arguments are remote names
2330 ((eq cmd0 'rename)
2331 (setq cmd1 (funcall fix-name-func cmd1)
2332 cmd2 (funcall fix-name-func cmd2))))
2334 ;; Turn the command into one long string
2335 (setq cmd0 (symbol-name cmd0))
2336 (setq cmd (concat cmd0
2337 (and cmd1 (concat " " cmd1))
2338 (and cmd2 (concat " " cmd2))))
2340 ;; Actually send the resulting command.
2341 (if (and (consp result) (null (car result)))
2342 ;; `ange-ftp-cd' has failed, so there's no point sending `cmd'.
2343 result
2344 (let (afsc-result
2345 afsc-line)
2346 (ange-ftp-raw-send-cmd
2347 (ange-ftp-get-process host user)
2350 (list (lambda (result line host user cmd msg cont nowait)
2351 (or cont (setq afsc-result result
2352 afsc-line line))
2353 (if result (ange-ftp-call-cont cont result line)
2354 (ange-ftp-raw-send-cmd
2355 (ange-ftp-get-process host user)
2358 (list (lambda (result line cont)
2359 (or cont (setq afsc-result result
2360 afsc-line line))
2361 (ange-ftp-call-cont cont result line))
2362 cont)
2363 nowait)))
2364 host user cmd msg cont nowait)
2365 nowait)
2367 (if nowait
2369 (if cont
2371 (cons afsc-result afsc-line)))))))
2373 ;; It might be nice to message users about the host type identified,
2374 ;; but there is so much other messaging going on, it would not be
2375 ;; seen. No point in slowing things down just so users can read
2376 ;; a host type message.
2378 (defconst ange-ftp-cms-name-template
2379 (concat
2380 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?"
2381 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$"))
2382 (defconst ange-ftp-vms-name-template
2383 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$")
2384 (defconst ange-ftp-mts-name-template
2385 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$")
2386 (defconst ange-ftp-bs2000-filename-pubset-regexp
2387 ":[A-Z0-9]+:"
2388 "Valid pubset for an BS2000 file name.")
2389 (defconst ange-ftp-bs2000-filename-username-regexp
2390 (concat
2391 "\\$[A-Z0-9]*\\.")
2392 "Valid username for an BS2000 file name.")
2393 (defconst ange-ftp-bs2000-filename-prefix-regexp
2394 (concat
2395 ange-ftp-bs2000-filename-pubset-regexp
2396 ange-ftp-bs2000-filename-username-regexp)
2397 "Valid prefix for an BS2000 file name (pubset and user).")
2398 (defconst ange-ftp-bs2000-name-template
2399 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$"))
2401 (defun ange-ftp-guess-host-type (host user)
2402 "Guess the host type of HOST.
2403 Works by doing a pwd and examining the directory syntax."
2404 (let ((host-type (ange-ftp-host-type host))
2405 (key (concat host "/" user "/~")))
2406 (if (eq host-type 'unix)
2407 ;; Note that ange-ftp-host-type returns unix as the default value.
2408 (save-match-data
2409 (let* ((result (ange-ftp-get-pwd host user))
2410 (dir (car result))
2411 fix-name-func)
2412 (cond ((null dir)
2413 (message "Warning! Unable to get home directory")
2414 (sit-for 1)
2415 (if (string-match
2416 "^450 No current working directory defined$"
2417 (cdr result))
2419 ;; We'll assume that if pwd bombs with this
2420 ;; error message, then it's CMS.
2421 (progn
2422 (ange-ftp-add-cms-host host)
2423 (setq ange-ftp-host-cache host
2424 ange-ftp-host-type-cache 'cms))))
2426 ;; try for VMS
2427 ((string-match ange-ftp-vms-name-template dir)
2428 (ange-ftp-add-vms-host host)
2429 ;; The add-host functions clear the host type cache.
2430 ;; Therefore, need to set the cache afterwards.
2431 (setq ange-ftp-host-cache host
2432 ange-ftp-host-type-cache 'vms))
2434 ;; try for MTS
2435 ((string-match ange-ftp-mts-name-template dir)
2436 (ange-ftp-add-mts-host host)
2437 (setq ange-ftp-host-cache host
2438 ange-ftp-host-type-cache 'mts))
2440 ;; try for CMS
2441 ((string-match ange-ftp-cms-name-template dir)
2442 (ange-ftp-add-cms-host host)
2443 (setq ange-ftp-host-cache host
2444 ange-ftp-host-type-cache 'cms))
2446 ;; try for BS2000-POSIX
2447 ((ange-ftp-bs2000-posix-host host)
2448 (ange-ftp-add-bs2000-host host)
2449 (setq ange-ftp-host-cache host
2450 ange-ftp-host-type-cache 'text-unix))
2451 ;; try for BS2000
2452 ((and (string-match ange-ftp-bs2000-name-template dir)
2453 (not (ange-ftp-bs2000-posix-host host)))
2454 (ange-ftp-add-bs2000-host host)
2455 (setq ange-ftp-host-cache host
2456 ange-ftp-host-type-cache 'bs2000))
2457 ;; assume UN*X
2459 (setq ange-ftp-host-cache host
2460 ange-ftp-host-type-cache 'unix)))
2462 ;; Now that we have done a pwd, might as well put it in
2463 ;; the expand-dir hashtable.
2464 (let ((ange-ftp-this-user user)
2465 (ange-ftp-this-host host))
2466 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache
2467 ange-ftp-fix-name-func-alist)))
2468 (if fix-name-func
2469 (setq dir (funcall fix-name-func dir 'reverse))))
2470 (puthash key dir ange-ftp-expand-dir-hashtable))))
2472 ;; In the special case of CMS make sure that know the
2473 ;; expansion of the home minidisk now, because we will
2474 ;; be doing a lot of cd's.
2475 (if (and (eq host-type 'cms)
2476 (not (ange-ftp-hash-entry-exists-p
2477 key ange-ftp-expand-dir-hashtable)))
2478 (let ((dir (car (ange-ftp-get-pwd host user))))
2479 (if dir
2480 (puthash key (concat "/" dir) ange-ftp-expand-dir-hashtable)
2481 (message "Warning! Unable to get home directory")
2482 (sit-for 1))))))
2485 ;;;; ------------------------------------------------------------
2486 ;;;; Remote file and directory listing support.
2487 ;;;; ------------------------------------------------------------
2489 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands
2490 ;; to take switch arguments.
2491 (defun ange-ftp-dumb-unix-host (host)
2492 (and host ange-ftp-dumb-unix-host-regexp
2493 (string-match-p ange-ftp-dumb-unix-host-regexp host)))
2495 (defun ange-ftp-add-dumb-unix-host (host)
2496 "Interactively add a given HOST to `ange-ftp-dumb-unix-host-regexp'."
2497 (interactive
2498 (list (read-string "Host: "
2499 (let ((name (or (buffer-file-name) default-directory)))
2500 (and name (car (ange-ftp-ftp-name name)))))))
2501 (if (not (ange-ftp-dumb-unix-host host))
2502 (setq ange-ftp-dumb-unix-host-regexp
2503 (concat "^" (regexp-quote host) "$"
2504 (and ange-ftp-dumb-unix-host-regexp "\\|")
2505 ange-ftp-dumb-unix-host-regexp)
2506 ange-ftp-host-cache nil)))
2508 (defvar ange-ftp-parse-list-func-alist nil
2509 "Alist saying how to parse directory listings for certain OS types.
2510 Association list of (TYPE . FUNC) pairs. The FUNC is a routine which
2511 can parse the output from a DIR listing for a host of type TYPE.")
2513 ;; With no-error nil, this function returns:
2514 ;; an error if file is not an ange-ftp-name
2515 ;; (This should never happen.)
2516 ;; an error if either the listing is unreadable or there is an ftp error.
2517 ;; the listing (a string), if everything works.
2519 ;; With no-error t, it returns:
2520 ;; an error if not an ange-ftp-name
2521 ;; error if listing is unreadable (most likely caused by a slow connection)
2522 ;; nil if ftp error (this is because although asking to list a nonexistent
2523 ;; directory on a remote unix machine usually (except
2524 ;; maybe for dumb hosts) returns an ls error, but no
2525 ;; ftp error, if the same is done on a VMS machine,
2526 ;; an ftp error is returned. Need to trap the error
2527 ;; so we can go on and try to list the parent.)
2528 ;; the listing, if everything works.
2530 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory
2531 ;; in the wildcard case. Then we make a relative directory listing
2532 ;; of FILE within the directory specified by `default-directory'.
2534 (defvar ange-ftp-before-parse-ls-hook nil
2535 "Normal hook run before parsing the text of an FTP directory listing.")
2537 (defvar ange-ftp-after-parse-ls-hook nil
2538 "Normal hook run after parsing the text of an FTP directory listing.")
2540 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard)
2541 "Return the output of a `DIR' or `ls' command done over FTP.
2542 FILE is the full name of the remote file, LSARGS is any args to pass to the
2543 `ls' command, and PARSE specifies that the output should be parsed and stored
2544 away in the internal cache."
2545 (when (string-match "^--dired\\s-+" lsargs)
2546 (setq lsargs (replace-match "" nil t lsargs)))
2547 ;; If parse is t, we assume that file is a directory. i.e. we only parse
2548 ;; full directory listings.
2549 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file))
2550 (parsed (ange-ftp-ftp-name ange-ftp-this-file)))
2551 (if parsed
2552 (let* ((host (nth 0 parsed))
2553 (user (nth 1 parsed))
2554 (name (ange-ftp-quote-string (nth 2 parsed)))
2555 (key (directory-file-name ange-ftp-this-file))
2556 (host-type (ange-ftp-host-type host user))
2557 (dumb (memq host-type ange-ftp-dumb-host-types))
2558 result
2559 temp
2560 lscmd parse-func)
2561 (if (string-equal name "")
2562 (setq name
2563 (ange-ftp-real-file-name-as-directory
2564 (ange-ftp-expand-dir host user "~"))))
2565 (if (and ange-ftp-ls-cache-file
2566 (string-equal key ange-ftp-ls-cache-file)
2567 ;; Don't care about lsargs for dumb hosts.
2568 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs)))
2569 ange-ftp-ls-cache-res
2570 (setq temp (ange-ftp-make-tmp-name host))
2571 (if wildcard
2572 (progn
2573 (ange-ftp-cd host user (file-name-directory name))
2574 (setq lscmd (list 'ls file temp lsargs)))
2575 (setq lscmd (list 'dir name temp lsargs)))
2576 (unwind-protect
2577 (if (car (setq result (ange-ftp-send-cmd
2578 host
2579 user
2580 lscmd
2581 (format "Listing %s"
2582 (ange-ftp-abbreviate-filename
2583 ange-ftp-this-file)))))
2584 (with-current-buffer (get-buffer-create
2585 ange-ftp-data-buffer-name)
2586 (erase-buffer)
2587 (if (ange-ftp-real-file-readable-p temp)
2588 (ange-ftp-real-insert-file-contents temp)
2589 (sleep-for ange-ftp-retry-time)
2590 ;wait for file to possibly appear
2591 (if (ange-ftp-real-file-readable-p temp)
2592 ;; Try again.
2593 (ange-ftp-real-insert-file-contents temp)
2594 (ange-ftp-error host user
2595 (format
2596 "list data file %s not readable"
2597 temp))))
2598 ;; remove ^M inserted by the win32 ftp client
2599 (while (re-search-forward "\r$" nil t)
2600 (replace-match ""))
2601 (goto-char 1)
2602 (run-hooks 'ange-ftp-before-parse-ls-hook)
2603 (if parse
2604 (ange-ftp-set-files
2605 ange-ftp-this-file
2606 (if (setq
2607 parse-func
2608 (cdr (assq host-type
2609 ange-ftp-parse-list-func-alist)))
2610 (funcall parse-func)
2611 (ange-ftp-parse-dired-listing lsargs))))
2612 ;; Place this hook here to convert the contents of the
2613 ;; buffer to a ls compatible format if the host system
2614 ;; that is being queried is other than Unix i.e. VMS
2615 ;; returns an ls format that really sucks.
2616 (run-hooks 'ange-ftp-after-parse-ls-hook)
2617 (setq ange-ftp-ls-cache-file key
2618 ange-ftp-ls-cache-lsargs lsargs
2619 ; For dumb hosts-types this is
2620 ; meaningless but harmless.
2621 ange-ftp-ls-cache-res (buffer-string))
2622 ;; (kill-buffer (current-buffer))
2623 (if (equal ange-ftp-ls-cache-res "total 0\n")
2624 ;; wu-ftpd seems to return a successful result
2625 ;; with an empty file-listing when doing a
2626 ;; `DIR /some/file/.' which leads ange-ftp to
2627 ;; believe that /some/file is a directory ;-(
2629 ange-ftp-ls-cache-res))
2630 (if no-error
2632 (ange-ftp-error host user
2633 (concat "DIR failed: " (cdr result)))))
2634 (ange-ftp-del-tmp-name temp))))
2635 (error "Should never happen. Please report. Bug ref. no.: 1"))))
2637 ;;;; ------------------------------------------------------------
2638 ;;;; Directory information caching support.
2639 ;;;; ------------------------------------------------------------
2641 (defvar ange-ftp-add-file-entry-alist nil
2642 "Alist saying how to add file entries on certain OS types.
2643 Association list of pairs (TYPE . FUNC), where FUNC is a function
2644 to be used to add a file entry for the OS TYPE.
2645 The main reason for this alist is to deal with file versions in VMS.")
2647 (defvar ange-ftp-delete-file-entry-alist nil
2648 "Alist saying how to delete files on certain OS types.
2649 Association list of pairs (TYPE . FUNC), where FUNC is a function
2650 to be used to delete a file entry for the OS TYPE.
2651 The main reason for this alist is to deal with file versions in VMS.")
2653 (defun ange-ftp-add-file-entry (name &optional dir-p)
2654 "Add a file entry for file NAME, if its directory info exists."
2655 (funcall (or (cdr (assq (ange-ftp-host-type
2656 (car (ange-ftp-ftp-name name)))
2657 ange-ftp-add-file-entry-alist))
2658 'ange-ftp-internal-add-file-entry)
2659 name dir-p)
2660 (setq ange-ftp-ls-cache-file nil))
2662 (defun ange-ftp-delete-file-entry (name &optional dir-p)
2663 "Delete the file entry for file NAME, if its directory info exists."
2664 (funcall (or (cdr (assq (ange-ftp-host-type
2665 (car (ange-ftp-ftp-name name)))
2666 ange-ftp-delete-file-entry-alist))
2667 'ange-ftp-internal-delete-file-entry)
2668 name dir-p)
2669 (setq ange-ftp-ls-cache-file nil))
2671 (defmacro ange-ftp-parse-filename ()
2672 ;;Extract the filename from the current line of a dired-like listing.
2673 `(save-match-data
2674 (let ((eol (progn (end-of-line) (point))))
2675 (beginning-of-line)
2676 (if (re-search-forward directory-listing-before-filename-regexp eol t)
2677 (buffer-substring (point) eol)))))
2679 ;; This deals with the F switch. Should also do something about
2680 ;; unquoting names obtained with the SysV b switch and the GNU Q
2681 ;; switch. See Sebastian's dired-get-filename.
2683 (defun ange-ftp-ls-parser (switches)
2684 ;; Meant to be called by ange-ftp-parse-dired-listing
2685 (let ((tbl (make-hash-table :test 'equal))
2686 (used-F (and (stringp switches)
2687 (string-match "F" switches)))
2688 file-type symlink directory file)
2689 (while (setq file (ange-ftp-parse-filename))
2690 (beginning-of-line)
2691 (skip-chars-forward "\t 0-9")
2692 (setq file-type (following-char)
2693 directory (eq file-type ?d))
2694 (if (eq file-type ?l)
2695 (let ((end (string-match " -> " file)))
2696 (if end
2697 ;; Sometimes `ls' appends a @ at the end of the target.
2698 (setq symlink (substring file (match-end 0)
2699 (string-match "@\\'" file))
2700 file (substring file 0 end))
2701 ;; Shouldn't happen
2702 (setq symlink "")))
2703 (setq symlink nil))
2704 ;; Only do a costly regexp search if the F switch was used.
2705 (if (and used-F
2706 (not (string-equal file ""))
2707 (looking-at
2708 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"))
2709 (let ((socket (eq file-type ?s))
2710 (executable
2711 (and (not symlink) ; x bits don't mean a thing for symlinks
2712 (string-match
2713 "[xst]"
2714 (concat (match-string 1)
2715 (match-string 2)
2716 (match-string 3))))))
2717 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX)
2718 ;; and others don't. (sigh...) Beware, that some Unix's don't
2719 ;; seem to believe in the F-switch
2720 (if (or (and symlink (string-match "@\\'" file))
2721 (and directory (string-match "/\\'" file))
2722 (and executable (string-match "*\\'" file))
2723 (and socket (string-match "=\\'" file)))
2724 (setq file (substring file 0 -1)))))
2725 (puthash file (or symlink directory) tbl)
2726 (forward-line 1))
2727 (puthash "." t tbl)
2728 (puthash ".." t tbl)
2729 tbl))
2731 ;;; The dl stuff for descriptive listings
2733 (defvar ange-ftp-dl-dir-regexp nil
2734 "Regexp matching directories which are listed in dl format.
2735 This regexp should not be anchored with a trailing `$', because it should
2736 match subdirectories as well.")
2738 (defun ange-ftp-add-dl-dir (dir)
2739 "Interactively add a DIR to `ange-ftp-dl-dir-regexp'."
2740 (interactive
2741 (list (read-string "Directory: "
2742 (let ((name (or (buffer-file-name) default-directory)))
2743 (and name (ange-ftp-ftp-name name)
2744 (file-name-directory name))))))
2745 (if (not (and ange-ftp-dl-dir-regexp
2746 (string-match ange-ftp-dl-dir-regexp dir)))
2747 (setq ange-ftp-dl-dir-regexp
2748 (concat "^" (regexp-quote dir)
2749 (and ange-ftp-dl-dir-regexp "\\|")
2750 ange-ftp-dl-dir-regexp))))
2752 (defmacro ange-ftp-dl-parser ()
2753 ;; Parse the current buffer, which is assumed to be a descriptive
2754 ;; listing, and return a hashtable.
2755 `(let ((tbl (make-hash-table :test 'equal)))
2756 (while (not (eobp))
2757 (puthash
2758 (buffer-substring (point)
2759 (progn
2760 (skip-chars-forward "^ /\n")
2761 (point)))
2762 (eq (following-char) ?/)
2763 tbl)
2764 (forward-line 1))
2765 (puthash "." t tbl)
2766 (puthash ".." t tbl)
2767 tbl))
2769 ;; Parse the current buffer which is assumed to be in a dired-like listing
2770 ;; format, and return a hashtable as the result. If the listing is not really
2771 ;; a listing, then return nil.
2773 (defun ange-ftp-parse-dired-listing (&optional switches)
2774 (save-match-data
2775 (cond
2776 ((looking-at "^total [0-9]+$")
2777 (forward-line 1)
2778 ;; Some systems put in a blank line here.
2779 (if (eolp) (forward-line 1))
2780 (ange-ftp-ls-parser switches))
2781 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'")
2782 ;; It's an ls error message.
2783 nil)
2784 ((eobp) ; i.e. (zerop (buffer-size))
2785 ;; This could be one of:
2786 ;; (1) An Ultrix ls error message
2787 ;; (2) A listing with the A switch of an empty directory
2788 ;; on a machine which doesn't give a total line.
2789 ;; (3) The twilight zone.
2790 ;; We'll assume (1) for now.
2791 nil)
2792 ((re-search-forward directory-listing-before-filename-regexp nil t)
2793 (beginning-of-line)
2794 (ange-ftp-ls-parser switches))
2795 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t)
2796 ;; It's a dl listing (I hope).
2797 ;; file is bound by the call to ange-ftp-ls
2798 (ange-ftp-add-dl-dir ange-ftp-this-file)
2799 (beginning-of-line)
2800 (ange-ftp-dl-parser))
2801 (t nil))))
2803 (defun ange-ftp-set-files (directory files)
2804 "For a given DIRECTORY, set or change the associated FILES hashtable."
2805 (and files (puthash (file-name-as-directory directory)
2806 files ange-ftp-files-hashtable)))
2808 (defun ange-ftp-get-files (directory &optional no-error)
2809 "Given a DIRECTORY, return a hashtable of file entries.
2810 This will give an error or return nil, depending on the value of
2811 NO-ERROR, if a listing for DIRECTORY cannot be obtained."
2812 (setq directory (file-name-as-directory directory)) ;normalize
2813 (or (gethash directory ange-ftp-files-hashtable)
2814 (save-match-data
2815 (and (ange-ftp-ls directory
2816 ;; This is an efficiency hack. We try to
2817 ;; anticipate what sort of listing dired
2818 ;; might want, and cache just such a listing.
2819 (if (and (boundp 'dired-actual-switches)
2820 (stringp dired-actual-switches)
2821 ;; We allow the A switch, which lists
2822 ;; all files except "." and "..".
2823 ;; This is OK because we manually
2824 ;; insert these entries
2825 ;; in the hash table.
2826 (string-match
2827 "[aA]" dired-actual-switches)
2828 (string-match
2829 "l" dired-actual-switches)
2830 (not (string-match
2831 "R" dired-actual-switches)))
2832 dired-actual-switches
2833 (if (and (boundp 'dired-listing-switches)
2834 (stringp dired-listing-switches)
2835 (string-match
2836 "[aA]" dired-listing-switches)
2837 (string-match
2838 "l" dired-listing-switches)
2839 (not (string-match
2840 "R" dired-listing-switches)))
2841 dired-listing-switches
2842 "-al"))
2843 t no-error)
2844 (gethash directory ange-ftp-files-hashtable)))))
2846 ;; Given NAME, return the file part that can be used for looking up the
2847 ;; file's entry in a hashtable.
2848 (defmacro ange-ftp-get-file-part (name)
2849 `(let ((file (file-name-nondirectory ,name)))
2850 (if (string-equal file "")
2852 file)))
2854 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are
2855 ;; allowed to determine if NAME is a sub-directory by listing it directly,
2856 ;; rather than listing its parent directory. This is used for efficiency so
2857 ;; that a wasted listing is not done:
2858 ;; 1. When looking for a .dired file in dired-x.el.
2859 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid
2860 ;; subdirectory. This is of course an OS dependent judgement.
2862 (defvar dired-local-variables-file)
2863 (defmacro ange-ftp-allow-child-lookup (dir file)
2864 `(not
2865 (let* ((efile ,file) ; expand once.
2866 (edir ,dir)
2867 (parsed (ange-ftp-ftp-name edir))
2868 (host-type (ange-ftp-host-type
2869 (car parsed))))
2871 ;; Deal with dired
2872 (and (boundp 'dired-local-variables-file) ; in the dired-x package
2873 (stringp dired-local-variables-file)
2874 (string-equal dired-local-variables-file efile))
2875 ;; No dots in dir names in vms.
2876 (and (eq host-type 'vms)
2877 (string-match "\\." efile))
2878 ;; No subdirs in mts of cms.
2879 (and (memq host-type '(mts cms))
2880 (not (string-equal "/" (nth 2 parsed))))
2881 ;; No dots in pseudo-dir names in bs2000.
2882 (and (eq host-type 'bs2000)
2883 (string-match "\\." efile))))))
2885 (defun ange-ftp-file-entry-p (name)
2886 "Given NAME, return whether there is a file entry for it."
2887 (let* ((name (directory-file-name name))
2888 (dir (file-name-directory name))
2889 (ent (gethash dir ange-ftp-files-hashtable))
2890 (file (ange-ftp-get-file-part name)))
2891 (if ent
2892 (ange-ftp-hash-entry-exists-p file ent)
2893 (or (and (ange-ftp-allow-child-lookup dir file)
2894 (setq ent (ange-ftp-get-files name t))
2895 ;; Try a child lookup. i.e. try to list file as a
2896 ;; subdirectory of dir. This is a good idea because
2897 ;; we may not have read permission for file's parent. Also,
2898 ;; people tend to work down directory trees anyway. We use
2899 ;; no-error ;; because if file does not exist as a subdir.,
2900 ;; then dumb hosts will give an ftp error. Smart unix hosts
2901 ;; will simply send back the ls
2902 ;; error message.
2903 (gethash "." ent))
2904 ;; Child lookup failed, so try the parent.
2905 (ange-ftp-hash-entry-exists-p
2906 file (ange-ftp-get-files dir 'no-error))))))
2908 (defun ange-ftp-get-file-entry (name)
2909 "Given NAME, return the given file entry.
2910 The entry will be either t for a directory, nil for a normal file,
2911 or a string for a symlink. If the file isn't in the hashtable,
2912 this also returns nil."
2913 (let* ((name (directory-file-name name))
2914 (dir (file-name-directory name))
2915 (ent (gethash dir ange-ftp-files-hashtable))
2916 (file (ange-ftp-get-file-part name)))
2917 (if ent
2918 (gethash file ent)
2919 (or (and (ange-ftp-allow-child-lookup dir file)
2920 (setq ent (ange-ftp-get-files name t))
2921 (gethash "." ent))
2922 ;; i.e. it's a directory by child lookup
2923 (and (setq ent (ange-ftp-get-files dir t))
2924 (gethash file ent))))))
2926 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p)
2927 (when dir-p
2928 (setq name (file-name-as-directory name))
2929 (remhash name ange-ftp-files-hashtable)
2930 (setq name (directory-file-name name)))
2931 ;; Note that file-name-as-directory followed by directory-file-name
2932 ;; serves to canonicalize directory file names to their unix form.
2933 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO
2934 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
2935 (if files
2936 (remhash (ange-ftp-get-file-part name) files))))
2938 (defun ange-ftp-internal-add-file-entry (name &optional dir-p)
2939 (and dir-p
2940 (setq name (directory-file-name name)))
2941 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
2942 (if files
2943 (puthash (ange-ftp-get-file-part name) dir-p files))))
2945 (defun ange-ftp-wipe-file-entries (host user)
2946 "Get rid of entry for HOST, USER pair from file entry information hashtable."
2947 (let ((new-tbl (make-hash-table :test 'equal
2948 :size (hash-table-size
2949 ange-ftp-files-hashtable))))
2950 (maphash
2951 (lambda (key val)
2952 (let ((parsed (ange-ftp-ftp-name key)))
2953 (if parsed
2954 (let ((h (nth 0 parsed))
2955 (u (nth 1 parsed)))
2956 (or (and (equal host h) (equal user u))
2957 (puthash key val new-tbl))))))
2958 ange-ftp-files-hashtable)
2959 (setq ange-ftp-files-hashtable new-tbl)))
2961 ;;;; ------------------------------------------------------------
2962 ;;;; File transfer mode support.
2963 ;;;; ------------------------------------------------------------
2965 (defun ange-ftp-set-binary-mode (host user)
2966 "Tell the FTP process for the given HOST & USER to switch to binary mode."
2967 ;; FIXME: We should keep track of the current mode, so as to avoid
2968 ;; unnecessary roundtrips.
2969 (let ((result (ange-ftp-send-cmd host user '(type "binary"))))
2970 (if (not (car result))
2971 (ange-ftp-error host user (concat "BINARY failed: " (cdr result)))
2972 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
2973 (and ange-ftp-binary-hash-mark-size
2974 (setq ange-ftp-hash-mark-unit
2975 (ash ange-ftp-binary-hash-mark-size -4)))))))
2977 (defun ange-ftp-set-ascii-mode (host user)
2978 "Tell the FTP process for the given HOST & USER to switch to ASCII mode."
2979 ;; FIXME: We should keep track of the current mode, so as to avoid
2980 ;; unnecessary roundtrips.
2981 (let ((result (ange-ftp-send-cmd host user '(type "ascii"))))
2982 (if (not (car result))
2983 (ange-ftp-error host user (concat "ASCII failed: " (cdr result)))
2984 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
2985 (and ange-ftp-ascii-hash-mark-size
2986 (setq ange-ftp-hash-mark-unit
2987 (ash ange-ftp-ascii-hash-mark-size -4)))))))
2989 (defun ange-ftp-cd (host user dir &optional noerror)
2990 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD")))
2991 (if noerror result
2992 (or (car result)
2993 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))))
2995 (defun ange-ftp-get-pwd (host user)
2996 "Attempt to get the current working directory for the given HOST/USER pair.
2997 Returns (DIR . LINE) where DIR is either the directory or nil if not found,
2998 and LINE is the relevant success or fail line from the FTP-client."
2999 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD"))
3000 (line (cdr result))
3001 dir)
3002 (if (car result)
3003 (save-match-data
3004 (and (or (string-match "\"\\([^\"]*\\)\"" line)
3005 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers!
3006 (setq dir (match-string 1 line)))))
3007 (cons dir line)))
3009 ;;; ------------------------------------------------------------
3010 ;;; expand-file-name and friends...which currently don't work
3011 ;;; ------------------------------------------------------------
3013 (defun ange-ftp-expand-dir (host user dir)
3014 "Return the result of doing a PWD in the current FTP session.
3015 Use the connection to machine HOST
3016 logged in as user USER and cd'd to directory DIR."
3017 (let* ((host-type (ange-ftp-host-type host user))
3018 ;; It is more efficient to call ange-ftp-host-type
3019 ;; before binding res, because ange-ftp-host-type sometimes
3020 ;; adds to the info in the expand-dir-hashtable.
3021 (fix-name-func
3022 (cdr (assq host-type ange-ftp-fix-name-func-alist)))
3023 (key (concat host "/" user "/" dir))
3024 (res (gethash key ange-ftp-expand-dir-hashtable)))
3025 (or res
3026 (progn
3028 (string-equal user "anonymous")
3029 (string-equal user "ftp")
3030 (not (eq host-type 'unix))
3031 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp
3032 "\\|"
3033 ange-ftp-good-msgs))
3034 (result (ange-ftp-send-cmd host user
3035 (list 'get dir null-device)
3036 (format "expanding %s" dir)))
3037 (line (cdr result)))
3038 (setq res
3039 (if (string-match ange-ftp-expand-dir-regexp line)
3040 (match-string 1 line)))))
3041 (or res
3042 (if (string-equal dir "~")
3043 (setq res (car (ange-ftp-get-pwd host user)))
3044 (let ((home (ange-ftp-expand-dir host user "~")))
3045 (unwind-protect
3046 (and (ange-ftp-cd host user dir)
3047 (setq res (car (ange-ftp-get-pwd host user))))
3048 (ange-ftp-cd host user home)))))
3049 (if res
3050 (let ((ange-ftp-this-user user)
3051 (ange-ftp-this-host host))
3052 (if fix-name-func
3053 (setq res (funcall fix-name-func res 'reverse)))
3054 (puthash key res ange-ftp-expand-dir-hashtable)))
3055 res))))
3057 (defun ange-ftp-canonize-filename (n)
3058 "Take a string N and short-circuit //, /. and /.."
3059 (if (string-match "[^:]+//" n) ;don't upset Apollo users
3060 (setq n (substring n (1- (match-end 0)))))
3061 (let ((parsed (ange-ftp-ftp-name n)))
3062 (if parsed
3063 (let ((host (car parsed))
3064 (user (nth 1 parsed))
3065 (name (nth 2 parsed)))
3067 ;; See if remote name is absolute. If so then just expand it and
3068 ;; replace the name component of the overall name.
3069 (cond ((string-match "\\`/" name)
3070 name)
3072 ;; Name starts with ~ or ~user. Resolve that part of the name
3073 ;; making it absolute then re-expand it.
3074 ((string-match "\\`~[^/]*" name)
3075 (let* ((tilda (match-string 0 name))
3076 (rest (substring name (match-end 0)))
3077 (dir (ange-ftp-expand-dir host user tilda)))
3078 (if dir
3079 ;; C-x d /ftp:anonymous@ftp.gnu.org:~/ RET
3080 ;; seems to cause `rest' to sometimes be empty.
3081 ;; Maybe it's an error for `rest' to be empty here,
3082 ;; but until we figure this out, this quick fix
3083 ;; seems to do the trick.
3084 (setq name (cond ((string-equal rest "") dir)
3085 ((string-equal dir "/") rest)
3086 (t (concat dir rest))))
3087 (error "User \"%s\" is not known"
3088 (substring tilda 1)))))
3090 ;; relative name. Tack on homedir and re-expand.
3092 (let ((dir (ange-ftp-expand-dir host user "~")))
3093 (if dir
3094 (setq name (concat
3095 (ange-ftp-real-file-name-as-directory dir)
3096 name))
3097 (error "Unable to obtain CWD")))))
3099 ;; If name starts with //, preserve that, for apollo system.
3100 (unless (string-match "\\`//" name)
3101 (if (not (eq system-type 'windows-nt))
3102 (setq name (ange-ftp-real-expand-file-name name))
3103 ;; Windows UNC default dirs do not make sense for ftp.
3104 (setq name (if (string-match "\\`//" default-directory)
3105 (ange-ftp-real-expand-file-name name "c:/")
3106 (ange-ftp-real-expand-file-name name)))
3107 ;; Strip off possible drive specifier.
3108 (if (string-match "\\`[a-zA-Z]:" name)
3109 (setq name (substring name 2))))
3110 (if (string-match "\\`//" name)
3111 (setq name (substring name 1))))
3113 ;; Now substitute the expanded name back into the overall filename.
3114 (ange-ftp-replace-name-component n name))
3116 ;; non-ange-ftp name. Just expand normally.
3117 (if (eq (string-to-char n) ?/)
3118 (ange-ftp-real-expand-file-name n)
3119 (ange-ftp-real-expand-file-name
3120 (ange-ftp-real-file-name-nondirectory n)
3121 (ange-ftp-real-file-name-directory n))))))
3123 (defun ange-ftp-expand-file-name (name &optional default)
3124 "Documented as `expand-file-name'."
3125 (save-match-data
3126 (setq default (or default default-directory))
3127 (cond ((eq (string-to-char name) ?~)
3128 (ange-ftp-real-expand-file-name name))
3129 ((eq (string-to-char name) ?/)
3130 (ange-ftp-canonize-filename name))
3131 ((and (eq system-type 'windows-nt)
3132 (eq (string-to-char name) ?\\))
3133 (ange-ftp-canonize-filename name))
3134 ((and (eq system-type 'windows-nt)
3135 (or (string-match "\\`[a-zA-Z]:" name)
3136 (string-match "\\`[a-zA-Z]:" default)))
3137 (ange-ftp-real-expand-file-name name default))
3138 ((zerop (length name))
3139 (ange-ftp-canonize-filename default))
3140 ((ange-ftp-canonize-filename
3141 (concat (file-name-as-directory default) name))))))
3143 ;;; These are problems--they are currently not enabled.
3145 (defvar ange-ftp-file-name-as-directory-alist nil
3146 "Association list of (TYPE . FUNC) pairs.
3147 FUNC converts a filename to a directory name for the operating
3148 system TYPE.")
3150 (defun ange-ftp-file-name-as-directory (name)
3151 "Documented as `file-name-as-directory'."
3152 (let ((parsed (ange-ftp-ftp-name name)))
3153 (if parsed
3154 (if (string-equal (nth 2 parsed) "")
3155 name
3156 (funcall (or (cdr (assq
3157 (ange-ftp-host-type (car parsed))
3158 ange-ftp-file-name-as-directory-alist))
3159 'ange-ftp-real-file-name-as-directory)
3160 name))
3161 (ange-ftp-real-file-name-as-directory name))))
3163 (defun ange-ftp-file-name-directory (name)
3164 "Documented as `file-name-directory'."
3165 (let ((parsed (ange-ftp-ftp-name name)))
3166 (if parsed
3167 (let ((filename (nth 2 parsed)))
3168 (if (string-match-p "\\`~[^/]*\\'" filename)
3169 name
3170 (ange-ftp-replace-name-component
3171 name
3172 (ange-ftp-real-file-name-directory filename))))
3173 (ange-ftp-real-file-name-directory name))))
3175 (defun ange-ftp-file-name-nondirectory (name)
3176 "Documented as `file-name-nondirectory'."
3177 (let ((parsed (ange-ftp-ftp-name name)))
3178 (if parsed
3179 (let ((filename (nth 2 parsed)))
3180 (if (string-match-p "\\`~[^/]*\\'" filename)
3182 (ange-ftp-real-file-name-nondirectory filename)))
3183 (ange-ftp-real-file-name-nondirectory name))))
3185 (defun ange-ftp-directory-file-name (dir)
3186 "Documented as `directory-file-name'."
3187 (let ((parsed (ange-ftp-ftp-name dir)))
3188 (if parsed
3189 (ange-ftp-replace-name-component
3191 (ange-ftp-real-directory-file-name (nth 2 parsed)))
3192 (ange-ftp-real-directory-file-name dir))))
3195 ;;; Hooks that handle Emacs primitives.
3197 ;; Returns non-nil if should transfer FILE in binary mode.
3198 (defun ange-ftp-binary-file (file)
3199 (string-match-p ange-ftp-binary-file-name-regexp file))
3201 (defun ange-ftp-write-region (start end filename &optional append visit)
3202 (setq filename (expand-file-name filename))
3203 (let ((parsed (ange-ftp-ftp-name filename)))
3204 (if parsed
3205 (let* ((host (nth 0 parsed))
3206 (user (nth 1 parsed))
3207 (name (ange-ftp-quote-string (nth 2 parsed)))
3208 (temp (ange-ftp-make-tmp-name host))
3209 ;; What we REALLY need here is a way to determine if the mode
3210 ;; of the transfer is irrelevant, i.e. we can use binary mode
3211 ;; regardless. Maybe a system-type to host-type lookup?
3212 (binary (ange-ftp-binary-file filename))
3213 (cmd (if append 'append 'put))
3214 (abbr (ange-ftp-abbreviate-filename filename))
3215 ;; we need to reset `last-coding-system-used' to its
3216 ;; value immediately after calling the real write-region,
3217 ;; so that `basic-save-buffer' doesn't see whatever value
3218 ;; might be used when communicating with the ftp process.
3219 (coding-system-used last-coding-system-used))
3220 (unwind-protect
3221 (progn
3222 (let ((filename (buffer-file-name))
3223 (mod-p (buffer-modified-p)))
3224 (unwind-protect
3225 (progn
3226 (ange-ftp-real-write-region start end temp nil
3227 (or visit 'quiet))
3228 (setq coding-system-used last-coding-system-used))
3229 ;; cleanup forms
3230 (setq coding-system-used last-coding-system-used)
3231 (setq buffer-file-name filename)
3232 (restore-buffer-modified-p mod-p)))
3233 (if binary
3234 (ange-ftp-set-binary-mode host user))
3236 ;; tell the process filter what size the transfer will be.
3237 (let ((attr (file-attributes temp)))
3238 (if attr
3239 (ange-ftp-set-xfer-size host user (nth 7 attr))))
3241 ;; put or append the file.
3242 (let ((result (ange-ftp-send-cmd host user
3243 (list cmd temp name)
3244 (format "Writing %s" abbr))))
3245 (or (car result)
3246 (signal 'ftp-error
3247 (list
3248 "Opening output file"
3249 (format "FTP Error: \"%s\"" (cdr result))
3250 filename)))))
3251 (ange-ftp-del-tmp-name temp)
3252 (if binary
3253 (ange-ftp-set-ascii-mode host user)))
3254 (if (eq visit t)
3255 (progn
3256 (set-visited-file-modtime (ange-ftp-file-modtime filename))
3257 (ange-ftp-set-buffer-mode)
3258 (setq buffer-file-name filename)
3259 (set-buffer-modified-p nil)))
3260 ;; ensure `last-coding-system-used' has an appropriate value
3261 (setq last-coding-system-used coding-system-used)
3262 (ange-ftp-message "Wrote %s" abbr)
3263 (ange-ftp-add-file-entry filename))
3264 (ange-ftp-real-write-region start end filename append visit))))
3266 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace)
3267 (barf-if-buffer-read-only)
3268 (setq filename (expand-file-name filename))
3269 (let ((parsed (ange-ftp-ftp-name filename)))
3270 (if parsed
3271 (progn
3272 (if visit
3273 (setq buffer-file-name filename))
3274 (if (or (file-exists-p filename)
3275 (progn
3276 (setq ange-ftp-ls-cache-file nil)
3277 (remhash (file-name-directory filename)
3278 ange-ftp-files-hashtable)
3279 (file-exists-p filename)))
3280 (let* ((host (nth 0 parsed))
3281 (user (nth 1 parsed))
3282 (name (ange-ftp-quote-string (nth 2 parsed)))
3283 (temp (ange-ftp-make-tmp-name host))
3284 (binary (ange-ftp-binary-file filename))
3285 (abbr (ange-ftp-abbreviate-filename filename))
3286 (coding-system-used last-coding-system-used)
3287 size)
3288 (unwind-protect
3289 (progn
3290 (if binary
3291 (ange-ftp-set-binary-mode host user))
3292 (let ((result (ange-ftp-send-cmd host user
3293 (list 'get name temp)
3294 (format "Retrieving %s" abbr))))
3295 (or (car result)
3296 (signal 'ftp-error
3297 (list
3298 "Opening input file"
3299 (format "FTP Error: \"%s\"" (cdr result))
3300 filename))))
3301 (if (or (ange-ftp-real-file-readable-p temp)
3302 (sleep-for ange-ftp-retry-time)
3303 ;; Wait for file to hopefully appear.
3304 (ange-ftp-real-file-readable-p temp))
3305 (setq
3306 size
3307 (nth 1 (ange-ftp-real-insert-file-contents
3308 temp visit beg end replace))
3309 coding-system-used last-coding-system-used
3310 ;; override autodetection of buffer file type
3311 ;; to ensure buffer is saved in DOS format
3312 buffer-file-type binary)
3313 (signal 'ftp-error
3314 (list
3315 "Opening input file:"
3316 (format
3317 "FTP Error: %s not arrived or readable"
3318 filename)))))
3319 (if binary
3320 ;; We must keep `last-coding-system-used'
3321 ;; unchanged.
3322 (let (last-coding-system-used)
3323 (ange-ftp-set-ascii-mode host user)))
3324 (ange-ftp-del-tmp-name temp))
3325 (if visit
3326 (progn
3327 (set-visited-file-modtime
3328 (ange-ftp-file-modtime filename))
3329 (setq buffer-file-name filename)))
3330 (setq last-coding-system-used coding-system-used)
3331 (list filename size))
3332 (signal 'file-error
3333 (list
3334 "Opening input file"
3335 filename))))
3336 (ange-ftp-real-insert-file-contents filename visit beg end replace))))
3338 (defun ange-ftp-expand-symlink (file dir)
3339 (let ((res (if (file-name-absolute-p file)
3340 (ange-ftp-replace-name-component dir file)
3341 (expand-file-name file dir))))
3342 (if (file-symlink-p res)
3343 (ange-ftp-expand-symlink
3344 (ange-ftp-get-file-entry res)
3345 (file-name-directory (directory-file-name res)))
3346 res)))
3348 (defun ange-ftp-file-symlink-p (file)
3349 ;; call ange-ftp-expand-file-name rather than the normal
3350 ;; expand-file-name to stop loops when using a package that
3351 ;; redefines both file-symlink-p and expand-file-name.
3352 (setq file (ange-ftp-expand-file-name file))
3353 (if (ange-ftp-ftp-name file)
3354 (condition-case nil
3355 (let ((ent (ange-ftp-get-files (file-name-directory file))))
3356 (and ent
3357 (stringp (setq ent
3358 (gethash (ange-ftp-get-file-part file) ent)))
3359 ent))
3360 ;; If we can't read the parent directory, just assume
3361 ;; this file is not a symlink.
3362 ;; This makes it possible to access a directory that
3363 ;; whose parent is not readable.
3364 (file-error nil))
3365 (ange-ftp-real-file-symlink-p file)))
3367 (defun ange-ftp-file-exists-p (name)
3368 (setq name (expand-file-name name))
3369 (if (ange-ftp-ftp-name name)
3370 (if (ange-ftp-file-entry-p name)
3371 (let ((file-ent (ange-ftp-get-file-entry name)))
3372 (if (stringp file-ent)
3373 (file-exists-p
3374 (ange-ftp-expand-symlink file-ent
3375 (file-name-directory
3376 (directory-file-name name))))
3377 t)))
3378 (ange-ftp-real-file-exists-p name)))
3380 (defun ange-ftp-file-directory-p (name)
3381 (setq name (expand-file-name name))
3382 (if (ange-ftp-ftp-name name)
3383 ;; We do a file-name-as-directory on name here because some
3384 ;; machines (VMS) use a .DIR to indicate the filename associated
3385 ;; with a directory. This needs to be canonicalized.
3386 (let ((file-ent (ange-ftp-get-file-entry
3387 (ange-ftp-file-name-as-directory name))))
3388 (if (stringp file-ent)
3389 ;; Calling file-directory-p doesn't work because ange-ftp
3390 ;; is temporarily disabled for this operation.
3391 (ange-ftp-file-directory-p
3392 (ange-ftp-expand-symlink file-ent
3393 (file-name-directory
3394 (directory-file-name name))))
3395 file-ent))
3396 (ange-ftp-real-file-directory-p name)))
3398 (defun ange-ftp-directory-files (directory &optional full match
3399 &rest v19-args)
3400 (setq directory (expand-file-name directory))
3401 (if (ange-ftp-ftp-name directory)
3402 (progn
3403 (ange-ftp-barf-if-not-directory directory)
3404 (let ((tail (ange-ftp-hash-table-keys
3405 (ange-ftp-get-files directory)))
3406 files f)
3407 (setq directory (file-name-as-directory directory))
3408 (while tail
3409 (setq f (car tail)
3410 tail (cdr tail))
3411 (if (or (not match) (string-match-p match f))
3412 (setq files
3413 (cons (if full (concat directory f) f) files))))
3414 (nreverse files)))
3415 (apply 'ange-ftp-real-directory-files directory full match v19-args)))
3417 (defun ange-ftp-directory-files-and-attributes
3418 (directory &optional full match nosort id-format)
3419 (setq directory (expand-file-name directory))
3420 (if (ange-ftp-ftp-name directory)
3421 (mapcar
3422 (lambda (file)
3423 (cons file (file-attributes (expand-file-name file directory))))
3424 (ange-ftp-directory-files directory full match nosort))
3425 (ange-ftp-real-directory-files-and-attributes
3426 directory full match nosort id-format)))
3428 (defun ange-ftp-file-attributes (file &optional id-format)
3429 (setq file (expand-file-name file))
3430 (let ((parsed (ange-ftp-ftp-name file)))
3431 (if parsed
3432 (let ((part (ange-ftp-get-file-part file))
3433 (files (ange-ftp-get-files (file-name-directory file))))
3434 (if (ange-ftp-hash-entry-exists-p part files)
3435 (let ((host (nth 0 parsed))
3436 (user (nth 1 parsed))
3437 (name (nth 2 parsed))
3438 (dirp (gethash part files))
3439 (inode (gethash file ange-ftp-inodes-hashtable)))
3440 (unless inode
3441 (setq inode ange-ftp-next-inode-number
3442 ange-ftp-next-inode-number (1+ inode))
3443 (puthash file inode ange-ftp-inodes-hashtable))
3444 (list (if (and (stringp dirp) (file-name-absolute-p dirp))
3445 (ange-ftp-expand-symlink dirp
3446 (file-name-directory file))
3447 dirp) ;0 file type
3448 -1 ;1 link count
3449 -1 ;2 uid
3450 -1 ;3 gid
3451 '(0 0) ;4 atime
3452 (ange-ftp-file-modtime file) ;5 mtime
3453 '(0 0) ;6 ctime
3454 (ange-ftp-file-size file) ;7 size
3455 (concat (if (stringp dirp) "l" (if dirp "d" "-"))
3456 "?????????") ;8 mode
3457 nil ;9 gid weird
3458 inode ;10 "inode number".
3459 -1 ;11 device number [v19 only]
3460 ))))
3461 (if id-format
3462 (ange-ftp-real-file-attributes file id-format)
3463 (ange-ftp-real-file-attributes file)))))
3465 (defun ange-ftp-file-newer-than-file-p (f1 f2)
3466 (let ((f1-parsed (ange-ftp-ftp-name f1))
3467 (f2-parsed (ange-ftp-ftp-name f2)))
3468 (if (or f1-parsed f2-parsed)
3469 (let ((f1-mt (nth 5 (file-attributes f1)))
3470 (f2-mt (nth 5 (file-attributes f2))))
3471 (cond ((null f1-mt) nil)
3472 ((null f2-mt) t)
3473 (t (> (float-time f1-mt) (float-time f2-mt)))))
3474 (ange-ftp-real-file-newer-than-file-p f1 f2))))
3476 (defun ange-ftp-file-writable-p (file)
3477 (let ((ange-ftp-process-verbose nil))
3478 (setq file (expand-file-name file))
3479 (if (ange-ftp-ftp-name file)
3480 (or (file-exists-p file) ;guess here for speed
3481 (file-directory-p (file-name-directory file)))
3482 (ange-ftp-real-file-writable-p file))))
3484 (defun ange-ftp-file-readable-p (file)
3485 (let ((ange-ftp-process-verbose nil))
3486 (setq file (expand-file-name file))
3487 (if (ange-ftp-ftp-name file)
3488 (file-exists-p file)
3489 (ange-ftp-real-file-readable-p file))))
3491 (defun ange-ftp-file-executable-p (file)
3492 (let ((ange-ftp-process-verbose nil))
3493 (setq file (expand-file-name file))
3494 (if (ange-ftp-ftp-name file)
3495 (file-exists-p file)
3496 (ange-ftp-real-file-executable-p file))))
3498 (defun ange-ftp-delete-file (file &optional trash)
3499 (interactive (list (read-file-name "Delete file: " nil default-directory)
3500 (null current-prefix-arg)))
3501 (setq file (expand-file-name file))
3502 (let ((parsed (ange-ftp-ftp-name file)))
3503 (if parsed
3504 (let* ((host (nth 0 parsed))
3505 (user (nth 1 parsed))
3506 (name (ange-ftp-quote-string (nth 2 parsed)))
3507 (abbr (ange-ftp-abbreviate-filename file))
3508 (result (ange-ftp-send-cmd host user
3509 (list 'delete name)
3510 (format "Deleting %s" abbr))))
3511 (or (car result)
3512 (signal 'ftp-error
3513 (list
3514 "Removing old name"
3515 (format "FTP Error: \"%s\"" (cdr result))
3516 file)))
3517 (ange-ftp-delete-file-entry file))
3518 (ange-ftp-real-delete-file file trash))))
3520 (defun ange-ftp-file-modtime (file)
3521 "Return the modification time of remote file FILE.
3522 Value is (0 0) if the modification time cannot be determined."
3523 (let* ((parsed (ange-ftp-ftp-name file))
3524 ;; At least one FTP server (wu-ftpd) can return a "226
3525 ;; Transfer complete" before the "213 MODTIME". Let's skip
3526 ;; that.
3527 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
3528 (res (ange-ftp-send-cmd (car parsed) (cadr parsed)
3529 (list 'quote "mdtm" (cadr (cdr parsed)))))
3530 (line (cdr res))
3531 (modtime '(0 0)))
3532 ;; MDTM should return "213 YYYYMMDDhhmmss" GMT on success
3533 ;; following the Internet draft for FTP extensions.
3534 ;; Bob@rattlesnake.com reports that is returns something different
3535 ;; for at least one FTP server. So, let's use the response only
3536 ;; if it matches the Internet draft.
3537 (when (string-match-p "^213 [0-9]\\{14\\}$" line)
3538 (setq modtime
3539 (encode-time
3540 (string-to-number (substring line 16 18))
3541 (string-to-number (substring line 14 16))
3542 (string-to-number (substring line 12 14))
3543 (string-to-number (substring line 10 12))
3544 (string-to-number (substring line 8 10))
3545 (string-to-number (substring line 4 8))
3546 0)))
3547 modtime))
3549 (defun ange-ftp-verify-visited-file-modtime (buf)
3550 (let ((name (buffer-file-name buf)))
3551 (if (and (stringp name) (ange-ftp-ftp-name name))
3552 (let ((file-mdtm (ange-ftp-file-modtime name))
3553 (buf-mdtm (with-current-buffer buf (visited-file-modtime))))
3554 (or (zerop (car file-mdtm))
3555 (<= (float-time file-mdtm) (float-time buf-mdtm))))
3556 (ange-ftp-real-verify-visited-file-modtime buf))))
3558 (defun ange-ftp-file-size (file &optional ascii-mode)
3559 "Return the size of remote file FILE. Return -1 if can't get it.
3560 If ascii-mode is non-nil, return the size with the extra octets that
3561 need to be inserted, one at the end of each line, to provide correct
3562 end-of-line semantics for a transfer using TYPE=A. The default is nil,
3563 so return the size on the remote host exactly. See RFC 3659."
3564 (let* ((parsed (ange-ftp-ftp-name file))
3565 (host (nth 0 parsed))
3566 (user (nth 1 parsed))
3567 (name (ange-ftp-quote-string (nth 2 parsed)))
3568 ;; At least one FTP server (wu-ftpd) can return a "226
3569 ;; Transfer complete" before the "213 SIZE". Let's skip
3570 ;; that.
3571 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
3572 (res (unwind-protect
3573 (progn
3574 (unless ascii-mode
3575 (ange-ftp-set-binary-mode host user))
3576 (ange-ftp-send-cmd host user (list 'quote "size" name)))
3577 (unless ascii-mode
3578 (ange-ftp-set-ascii-mode host user))))
3579 (line (cdr res)))
3580 (if (string-match "^213 \\([0-9]+\\)$" line)
3581 (string-to-number (match-string 1 line))
3582 -1)))
3585 ;;;; ------------------------------------------------------------
3586 ;;;; File copying support... totally re-written 6/24/92.
3587 ;;;; ------------------------------------------------------------
3589 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive)
3590 (if (file-exists-p absname)
3591 (if (not interactive)
3592 (signal 'file-already-exists (list absname))
3593 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? "
3594 absname querystring)))
3595 (signal 'file-already-exists (list absname))))))
3597 ;; async local copy commented out for now since I don't seem to get
3598 ;; the process sentinel called for some processes.
3600 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists
3601 ;; keep-date cont)
3602 ;; "Kludge to copy a local file and call a continuation when the copy
3603 ;; finishes."
3604 ;; ;; check to see if we can overwrite
3605 ;; (if (or (not ok-if-already-exists)
3606 ;; (numberp ok-if-already-exists))
3607 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3608 ;; (numberp ok-if-already-exists)))
3609 ;; (let ((proc (start-process " *copy*"
3610 ;; (generate-new-buffer "*copy*")
3611 ;; "cp"
3612 ;; filename
3613 ;; newname))
3614 ;; res)
3615 ;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
3616 ;; (process-kill-without-query proc)
3617 ;; (with-current-buffer (process-buffer proc)
3618 ;; (set (make-local-variable 'copy-cont) cont))))
3620 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status)
3621 ;; (with-current-buffer (process-buffer proc)
3622 ;; (let ((cont copy-cont)
3623 ;; (result (buffer-string)))
3624 ;; (unwind-protect
3625 ;; (if (and (string-equal status "finished\n")
3626 ;; (zerop (length result)))
3627 ;; (ange-ftp-call-cont cont t nil)
3628 ;; (ange-ftp-call-cont cont
3629 ;; nil
3630 ;; (if (zerop (length result))
3631 ;; (substring status 0 -1)
3632 ;; (substring result 0 -1))))
3633 ;; (kill-buffer (current-buffer))))))
3635 ;; this is the extended version of ange-ftp-copy-file-internal that works
3636 ;; asynchronously if asked nicely.
3637 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists
3638 keep-date &optional msg cont nowait)
3639 (setq filename (expand-file-name filename)
3640 newname (expand-file-name newname))
3642 ;; canonicalize newname if a directory.
3643 (if (file-directory-p newname)
3644 (setq newname (expand-file-name (file-name-nondirectory filename) newname)))
3646 (let ((f-parsed (ange-ftp-ftp-name filename))
3647 (t-parsed (ange-ftp-ftp-name newname)))
3649 ;; local file to local file copy?
3650 (if (and (not f-parsed) (not t-parsed))
3651 (progn
3652 (ange-ftp-real-copy-file filename newname ok-if-already-exists
3653 keep-date)
3654 (if cont
3655 (ange-ftp-call-cont cont t "Copied locally")))
3656 ;; one or both files are remote.
3657 (let* ((f-host (and f-parsed (nth 0 f-parsed)))
3658 (f-user (and f-parsed (nth 1 f-parsed)))
3659 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed))))
3660 (f-abbr (ange-ftp-abbreviate-filename filename))
3661 (t-host (and t-parsed (nth 0 t-parsed)))
3662 (t-user (and t-parsed (nth 1 t-parsed)))
3663 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed))))
3664 (t-abbr (ange-ftp-abbreviate-filename newname filename))
3665 (binary (or (ange-ftp-binary-file filename)
3666 (ange-ftp-binary-file newname)))
3667 temp1
3668 temp2)
3670 ;; check to see if we can overwrite
3671 (if (or (not ok-if-already-exists)
3672 (numberp ok-if-already-exists))
3673 (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3674 (numberp ok-if-already-exists)))
3676 ;; do the copying.
3677 (if f-parsed
3679 ;; filename was remote.
3680 (progn
3681 (if (or (ange-ftp-use-gateway-p f-host)
3682 t-parsed)
3683 ;; have to use intermediate file if we are getting via
3684 ;; gateway machine or we are doing a remote to remote copy.
3685 (setq temp1 (ange-ftp-make-tmp-name f-host)))
3687 (if binary
3688 (ange-ftp-set-binary-mode f-host f-user))
3690 (ange-ftp-send-cmd
3691 f-host
3692 f-user
3693 (list 'get f-name (or temp1 (ange-ftp-quote-string newname)))
3694 (or msg
3695 (if (and temp1 t-parsed)
3696 (format "Getting %s" f-abbr)
3697 (format "Copying %s to %s" f-abbr t-abbr)))
3698 (list 'ange-ftp-cf1
3699 filename newname binary msg
3700 f-parsed f-host f-user f-name f-abbr
3701 t-parsed t-host t-user t-name t-abbr
3702 temp1 temp2 cont nowait)
3703 nowait))
3705 ;; filename wasn't remote. newname must be remote. call the
3706 ;; function which does the remainder of the copying work.
3707 (ange-ftp-cf1 t nil
3708 filename newname binary msg
3709 f-parsed f-host f-user f-name f-abbr
3710 t-parsed t-host t-user t-name t-abbr
3711 nil nil cont nowait))))))
3713 (defvar ange-ftp-waiting-flag nil)
3715 ;; next part of copying routine.
3716 (defun ange-ftp-cf1 (result line
3717 filename newname binary msg
3718 f-parsed f-host f-user f-name f-abbr
3719 t-parsed t-host t-user t-name t-abbr
3720 temp1 temp2 cont nowait)
3721 (if line
3722 ;; filename must have been remote, and we must have just done a GET.
3723 (unwind-protect
3724 (or result
3725 ;; GET failed for some reason. Clean up and get out.
3726 (progn
3727 (and temp1 (ange-ftp-del-tmp-name temp1))
3728 (or cont
3729 (if ange-ftp-waiting-flag
3730 (throw 'ftp-error t)
3731 (signal 'ftp-error
3732 (list "Opening input file"
3733 (format "FTP Error: \"%s\"" line)
3734 filename))))))
3735 ;; cleanup
3736 (if binary
3737 (ange-ftp-set-ascii-mode f-host f-user))))
3739 (if result
3740 ;; We now have to copy either temp1 or filename to newname.
3741 (if t-parsed
3743 ;; newname was remote.
3744 (progn
3745 (if (ange-ftp-use-gateway-p t-host)
3746 (setq temp2 (ange-ftp-make-tmp-name t-host)))
3748 ;; make sure data is moved into the right place for the
3749 ;; outgoing transfer. gateway temporary files complicate
3750 ;; things nicely.
3751 (if temp1
3752 (if temp2
3753 (if (string-equal temp1 temp2)
3754 (setq temp1 nil)
3755 (ange-ftp-real-copy-file temp1 temp2 t))
3756 (setq temp2 temp1 temp1 nil))
3757 (if temp2
3758 (ange-ftp-real-copy-file filename temp2 t)))
3760 (if binary
3761 (ange-ftp-set-binary-mode t-host t-user))
3763 ;; tell the process filter what size the file is.
3764 (let ((attr (file-attributes (or temp2 filename))))
3765 (if attr
3766 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr))))
3768 (ange-ftp-send-cmd
3769 t-host
3770 t-user
3771 (list 'put (or temp2 (ange-ftp-quote-string filename)) t-name)
3772 (or msg
3773 (if (and temp2 f-parsed)
3774 (format "Putting %s" newname)
3775 (format "Copying %s to %s" f-abbr t-abbr)))
3776 (list 'ange-ftp-cf2
3777 newname t-host t-user binary temp1 temp2 cont)
3778 nowait))
3780 ;; newname wasn't remote.
3781 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont))
3783 ;; first copy failed, tell caller
3784 (ange-ftp-call-cont cont result line)))
3786 ;; last part of copying routine.
3787 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont)
3788 (unwind-protect
3789 (if line
3790 ;; result from doing a local to remote copy.
3791 (unwind-protect
3792 (progn
3793 (or result
3794 (or cont
3795 (if ange-ftp-waiting-flag
3796 (throw 'ftp-error t)
3797 (signal 'ftp-error
3798 (list "Opening output file"
3799 (format "FTP Error: \"%s\"" line)
3800 newname)))))
3802 (ange-ftp-add-file-entry newname))
3804 ;; cleanup.
3805 (if binary
3806 (ange-ftp-set-ascii-mode t-host t-user)))
3808 ;; newname was local.
3809 (if temp1
3810 (ange-ftp-real-copy-file temp1 newname t)))
3812 ;; clean up
3813 (and temp1 (ange-ftp-del-tmp-name temp1))
3814 (and temp2 (ange-ftp-del-tmp-name temp2))
3815 (ange-ftp-call-cont cont result line)))
3817 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists
3818 keep-date preserve-uid-gid
3819 preserve-selinux-context)
3820 (interactive "fCopy file: \nFCopy %s to file: \np")
3821 (ange-ftp-copy-file-internal filename
3822 newname
3823 ok-if-already-exists
3824 keep-date
3827 (called-interactively-p 'interactive)))
3829 (defun ange-ftp-copy-files-async (okay-p line verbose-p files)
3830 "Copy some files in the background.
3831 OKAY-P must be t, and LINE does not matter. They are here to make this
3832 function a valid CONT argument for `ange-ftp-raw-send-cmd'.
3833 If VERBOSE-P is non-nil, print progress report in the echo area.
3834 When all the files have been copied already, a message is shown anyway.
3835 FILES is a list of files to copy in the form
3836 (from-file to-file ok-if-already-exists keep-date)
3837 E.g.,
3838 (ange-ftp-copy-files-async t nil t '((\"a\" \"b\" t t) (\"c\" \"d\" t t)))"
3839 (unless okay-p (error "%s: %s" 'ange-ftp-copy-files-async line))
3840 (if files
3841 (let* ((ff (car files))
3842 (from-file (nth 0 ff))
3843 (to-file (nth 1 ff))
3844 (ok-if-exists (nth 2 ff))
3845 (keep-date (nth 3 ff)))
3846 (ange-ftp-copy-file-internal
3847 from-file to-file ok-if-exists keep-date
3848 (and verbose-p (format "%s --> %s" from-file to-file))
3849 (list 'ange-ftp-copy-files-async verbose-p (cdr files))
3851 (message "%s: done" 'ange-ftp-copy-files-async)))
3854 ;;;; ------------------------------------------------------------
3855 ;;;; File renaming support.
3856 ;;;; ------------------------------------------------------------
3858 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed)
3859 "Rename remote file FILENAME to remote file NEWNAME."
3860 (let ((f-host (nth 0 f-parsed))
3861 (f-user (nth 1 f-parsed))
3862 (t-host (nth 0 t-parsed))
3863 (t-user (nth 1 t-parsed)))
3864 (if (and (string-equal f-host t-host)
3865 (string-equal f-user t-user))
3866 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed)))
3867 (t-name (ange-ftp-quote-string (nth 2 t-parsed)))
3868 (cmd (list 'rename f-name t-name))
3869 (fabbr (ange-ftp-abbreviate-filename filename))
3870 (nabbr (ange-ftp-abbreviate-filename newname filename))
3871 (result (ange-ftp-send-cmd f-host f-user cmd
3872 (format "Renaming %s to %s"
3873 fabbr
3874 nabbr))))
3875 (or (car result)
3876 (signal 'ftp-error
3877 (list
3878 "Renaming"
3879 (format "FTP Error: \"%s\"" (cdr result))
3880 filename
3881 newname)))
3882 (ange-ftp-add-file-entry newname)
3883 (ange-ftp-delete-file-entry filename))
3884 (ange-ftp-copy-file-internal filename newname t nil)
3885 (delete-file filename))))
3887 (defun ange-ftp-rename-local-to-remote (filename newname)
3888 "Rename local file FILENAME to remote file NEWNAME."
3889 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3890 (nabbr (ange-ftp-abbreviate-filename newname filename))
3891 (msg (format "Renaming %s to %s" fabbr nabbr)))
3892 (ange-ftp-copy-file-internal filename newname t nil msg)
3893 (let (ange-ftp-process-verbose)
3894 (delete-file filename))))
3896 (defun ange-ftp-rename-remote-to-local (filename newname)
3897 "Rename remote file FILENAME to local file NEWNAME."
3898 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3899 (nabbr (ange-ftp-abbreviate-filename newname filename))
3900 (msg (format "Renaming %s to %s" fabbr nabbr)))
3901 (ange-ftp-copy-file-internal filename newname t nil msg)
3902 (let (ange-ftp-process-verbose)
3903 (delete-file filename))))
3905 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists)
3906 (interactive "fRename file: \nFRename %s to file: \np")
3907 (setq filename (expand-file-name filename))
3908 (setq newname (expand-file-name newname))
3909 (let* ((f-parsed (ange-ftp-ftp-name filename))
3910 (t-parsed (ange-ftp-ftp-name newname)))
3911 (if (and (or f-parsed t-parsed)
3912 (or (not ok-if-already-exists)
3913 (numberp ok-if-already-exists)))
3914 (ange-ftp-barf-or-query-if-file-exists
3915 newname
3916 "rename to it"
3917 (numberp ok-if-already-exists)))
3918 (if f-parsed
3919 (if t-parsed
3920 (ange-ftp-rename-remote-to-remote filename newname f-parsed
3921 t-parsed)
3922 (ange-ftp-rename-remote-to-local filename newname))
3923 (if t-parsed
3924 (ange-ftp-rename-local-to-remote filename newname)
3925 (ange-ftp-real-rename-file filename newname ok-if-already-exists)))))
3927 ;;;; ------------------------------------------------------------
3928 ;;;; File name completion support.
3929 ;;;; ------------------------------------------------------------
3931 ;; If the file entry is not a directory (nor a symlink pointing to a directory)
3932 ;; returns whether the file (or file pointed to by the symlink) is ignored
3933 ;; by completion-ignored-extensions.
3934 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern'
3935 ;; are used as free variables.
3936 (defun ange-ftp-file-entry-not-ignored-p (symname val)
3937 (if (stringp val)
3938 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir)))
3939 (or (file-directory-p file)
3940 (and (file-exists-p file)
3941 (not (string-match ange-ftp-completion-ignored-pattern
3942 symname)))))
3943 (or val ; is a directory name
3944 (not (string-match ange-ftp-completion-ignored-pattern symname)))))
3946 (defun ange-ftp-root-dir-p (dir)
3947 ;; Maybe we should use something more like
3948 ;; (equal dir (file-name-directory (directory-file-name dir))) -stef
3949 (or (and (eq system-type 'windows-nt)
3950 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir))
3951 (string-equal "/" dir)))
3953 (defun ange-ftp-file-name-all-completions (file dir)
3954 (let ((ange-ftp-this-dir (expand-file-name dir)))
3955 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3956 (progn
3957 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3958 (setq ange-ftp-this-dir
3959 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir))
3960 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3961 (completions (all-completions file tbl)))
3963 ;; see whether each matching file is a directory or not...
3964 (mapcar
3965 (lambda (file)
3966 (let ((ent (gethash file tbl)))
3967 (if (and ent
3968 (or (not (stringp ent))
3969 (file-directory-p
3970 (ange-ftp-expand-symlink ent
3971 ange-ftp-this-dir))))
3972 (concat file "/")
3973 file)))
3974 completions)))
3976 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
3977 (nconc (all-completions file (ange-ftp-generate-root-prefixes))
3978 (ange-ftp-real-file-name-all-completions file
3979 ange-ftp-this-dir))
3980 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir)))))
3982 (defun ange-ftp-file-name-completion (file dir &optional predicate)
3983 (let ((ange-ftp-this-dir (expand-file-name dir)))
3984 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3985 (progn
3986 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3987 (if (equal file "")
3989 (setq ange-ftp-this-dir
3990 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real?
3991 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3992 (ange-ftp-completion-ignored-pattern
3993 (mapconcat (lambda (s) (if (stringp s)
3994 (concat (regexp-quote s) "$")
3995 "/")) ; / never in filename
3996 completion-ignored-extensions
3997 "\\|")))
3998 (save-match-data
3999 (or (ange-ftp-file-name-completion-1
4000 file tbl ange-ftp-this-dir
4001 'ange-ftp-file-entry-not-ignored-p)
4002 (ange-ftp-file-name-completion-1
4003 file tbl ange-ftp-this-dir))))))
4005 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
4006 (try-completion
4007 file
4008 (nconc (ange-ftp-generate-root-prefixes)
4009 (ange-ftp-real-file-name-all-completions
4010 file ange-ftp-this-dir))
4011 predicate)
4012 (if predicate
4013 (ange-ftp-real-file-name-completion
4014 file ange-ftp-this-dir predicate)
4015 (ange-ftp-real-file-name-completion
4016 file ange-ftp-this-dir))))))
4019 (defun ange-ftp-file-name-completion-1 (file tbl dir &optional predicate)
4020 (let ((bestmatch (try-completion file tbl predicate)))
4021 (if bestmatch
4022 (if (eq bestmatch t)
4023 (if (file-directory-p (expand-file-name file dir))
4024 (concat file "/")
4026 (if (and (eq (try-completion bestmatch tbl predicate) t)
4027 (file-directory-p
4028 (expand-file-name bestmatch dir)))
4029 (concat bestmatch "/")
4030 bestmatch)))))
4032 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh
4033 ;; ange-ftp's cache whilst doing filename completion.
4035 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir)
4036 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir)
4038 ;;;###autoload
4039 (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
4041 ;;;###autoload
4042 (defun ange-ftp-reread-dir (&optional dir)
4043 "Reread remote directory DIR to update the directory cache.
4044 The implementation of remote FTP file names caches directory contents
4045 for speed. Therefore, when new remote files are created, Emacs
4046 may not know they exist. You can use this command to reread a specific
4047 directory, so that Emacs will know its current contents."
4048 (interactive)
4049 (if dir
4050 (setq dir (expand-file-name dir))
4051 (setq dir (file-name-directory (expand-file-name (buffer-string)))))
4052 (if (ange-ftp-ftp-name dir)
4053 (progn
4054 (setq ange-ftp-ls-cache-file nil)
4055 (remhash dir ange-ftp-files-hashtable)
4056 (ange-ftp-get-files dir t))))
4058 (defun ange-ftp-make-directory (dir &optional parents)
4059 (interactive (list (expand-file-name (read-directory-name "Make directory: "))))
4060 (if parents
4061 (let ((parent (file-name-directory (directory-file-name dir))))
4062 (or (file-exists-p parent)
4063 (ange-ftp-make-directory parent parents))))
4064 (if (file-exists-p dir)
4065 (error "Cannot make directory %s: file already exists" dir)
4066 (let ((parsed (ange-ftp-ftp-name dir)))
4067 (if parsed
4068 (let* ((host (nth 0 parsed))
4069 (user (nth 1 parsed))
4070 ;; Some ftp's on unix machines (at least on Suns)
4071 ;; insist that mkdir take a filename, and not a
4072 ;; directory-name name as an arg. Argh!! This is a bug.
4073 ;; Non-unix machines will probably always insist
4074 ;; that mkdir takes a directory-name as an arg
4075 ;; (as the ftp man page says it should).
4076 (name (ange-ftp-quote-string
4077 (if (eq (ange-ftp-host-type host) 'unix)
4078 (ange-ftp-real-directory-file-name (nth 2 parsed))
4079 (ange-ftp-real-file-name-as-directory
4080 (nth 2 parsed)))))
4081 (abbr (ange-ftp-abbreviate-filename dir))
4082 (result (ange-ftp-send-cmd host user
4083 (list 'mkdir name)
4084 (format "Making directory %s"
4085 abbr))))
4086 (or (car result)
4087 (ange-ftp-error host user
4088 (format "Could not make directory %s: %s"
4090 (cdr result))))
4091 (ange-ftp-add-file-entry dir t))
4092 (ange-ftp-real-make-directory dir)))))
4094 (defun ange-ftp-delete-directory (dir &optional recursive)
4095 (if (file-directory-p dir)
4096 (let ((parsed (ange-ftp-ftp-name dir)))
4097 (if recursive
4098 (mapc
4099 (lambda (file)
4100 (if (file-directory-p file)
4101 (ange-ftp-delete-directory file recursive)
4102 (delete-file file)))
4103 ;; We do not want to delete "." and "..".
4104 (directory-files
4105 dir 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
4106 (if parsed
4107 (let* ((host (nth 0 parsed))
4108 (user (nth 1 parsed))
4109 ;; Some ftp's on unix machines (at least on Suns)
4110 ;; insist that rmdir take a filename, and not a
4111 ;; directory-name name as an arg. Argh!! This is a bug.
4112 ;; Non-unix machines will probably always insist
4113 ;; that rmdir takes a directory-name as an arg
4114 ;; (as the ftp man page says it should).
4115 (name (ange-ftp-quote-string
4116 (if (eq (ange-ftp-host-type host) 'unix)
4117 (ange-ftp-real-directory-file-name
4118 (nth 2 parsed))
4119 (ange-ftp-real-file-name-as-directory
4120 (nth 2 parsed)))))
4121 (abbr (ange-ftp-abbreviate-filename dir))
4122 (result
4123 (progn
4124 ;; CWD must not in this directory.
4125 (ange-ftp-cd host user "/" 'noerror)
4126 (ange-ftp-send-cmd host user
4127 (list 'rmdir name)
4128 (format "Removing directory %s"
4129 abbr)))))
4130 (or (car result)
4131 (ange-ftp-error host user
4132 (format "Could not remove directory %s: %s"
4134 (cdr result))))
4135 (ange-ftp-delete-file-entry dir t))
4136 (ange-ftp-real-delete-directory dir recursive)))
4137 (error "Not a directory: %s" dir)))
4139 ;; Make a local copy of FILE and return its name.
4141 (defun ange-ftp-file-local-copy (file)
4142 (let* ((fn1 (expand-file-name file))
4143 (pa1 (ange-ftp-ftp-name fn1)))
4144 (if pa1
4145 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1))))
4146 (ange-ftp-copy-file-internal fn1 tmp1 t nil
4147 (format "Getting %s" fn1))
4148 tmp1))))
4150 (defun ange-ftp-file-remote-p (file &optional identification connected)
4151 (let* ((parsed (ange-ftp-ftp-name file))
4152 (host (nth 0 parsed))
4153 (user (nth 1 parsed))
4154 (localname (nth 2 parsed)))
4155 (and (or (not connected)
4156 (let ((proc (get-process (ange-ftp-ftp-process-buffer host user))))
4157 (and proc (processp proc)
4158 (memq (process-status proc) '(run open)))))
4159 (cond
4160 ((eq identification 'method) (and parsed "ftp"))
4161 ((eq identification 'user) user)
4162 ((eq identification 'host) host)
4163 ((eq identification 'localname) localname)
4164 (t (ange-ftp-replace-name-component file ""))))))
4166 (defun ange-ftp-load (file &optional noerror nomessage nosuffix)
4167 (if (ange-ftp-ftp-name file)
4168 (let ((tryfiles (if nosuffix
4169 (list file)
4170 (list (concat file ".elc") (concat file ".el") file)))
4171 ;; make sure there are no references to temp files
4172 (load-force-doc-strings t)
4173 copy)
4174 (while (and tryfiles (not copy))
4175 (catch 'ftp-error
4176 (let ((ange-ftp-waiting-flag t))
4177 (condition-case error
4178 (setq copy (ange-ftp-file-local-copy (car tryfiles)))
4179 (ftp-error nil))))
4180 (setq tryfiles (cdr tryfiles)))
4181 (if copy
4182 (unwind-protect
4183 (funcall 'load copy noerror nomessage nosuffix)
4184 (delete-file copy))
4185 (or noerror
4186 (signal 'file-error (list "Cannot open load file" file)))
4187 nil))
4188 (ange-ftp-real-load file noerror nomessage nosuffix)))
4190 ;; Calculate default-unhandled-directory for a given ange-ftp buffer.
4191 (defun ange-ftp-unhandled-file-name-directory (filename)
4192 nil)
4195 ;; Need the following functions for making filenames of compressed
4196 ;; files, because some OS's (unlike UNIX) do not allow a filename to
4197 ;; have two extensions.
4199 (defvar ange-ftp-make-compressed-filename-alist nil
4200 "Alist of host-type-specific functions to process file names for compression.
4201 Each element has the form (TYPE . FUNC).
4202 FUNC should take one argument, a file name, and return a list
4203 of the form (COMPRESSING NEWNAME).
4204 COMPRESSING should be t if the specified file should be compressed,
4205 and nil if it should be uncompressed (that is, if it is a compressed file).
4206 NEWNAME should be the name to give the new compressed or uncompressed file.")
4208 (declare-function dired-compress-file "dired-aux" (file))
4210 (defun ange-ftp-dired-compress-file (name)
4211 "Handler used by `dired-compress-file'."
4212 (let ((parsed (ange-ftp-ftp-name name))
4213 conversion-func)
4214 (if (and parsed
4215 (setq conversion-func
4216 (cdr (assq (ange-ftp-host-type (car parsed))
4217 ange-ftp-make-compressed-filename-alist))))
4218 (let* ((decision
4219 (save-match-data (funcall conversion-func name)))
4220 (compressing (car decision))
4221 (newfile (nth 1 decision)))
4222 (if compressing
4223 (ange-ftp-compress name newfile)
4224 (ange-ftp-uncompress name newfile)))
4225 (let (file-name-handler-alist)
4226 (dired-compress-file name)))))
4228 ;; Copy FILE to this machine, compress it, and copy out to NFILE.
4229 (defun ange-ftp-compress (file nfile)
4230 (let* ((parsed (ange-ftp-ftp-name file))
4231 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4232 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4233 (abbr (ange-ftp-abbreviate-filename file))
4234 (nabbr (ange-ftp-abbreviate-filename nfile))
4235 (msg1 (format "Getting %s" abbr))
4236 (msg2 (format "Putting %s" nabbr)))
4237 (unwind-protect
4238 (progn
4239 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4240 (and ange-ftp-process-verbose
4241 (ange-ftp-message "Compressing %s..." abbr))
4242 (call-process-region (point)
4243 (point)
4244 shell-file-name
4248 "-c"
4249 (format "compress -f -c < %s > %s" tmp1 tmp2))
4250 (and ange-ftp-process-verbose
4251 (ange-ftp-message "Compressing %s...done" abbr))
4252 (if (zerop (buffer-size))
4253 (progn
4254 (let (ange-ftp-process-verbose)
4255 (delete-file file))
4256 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4257 (ange-ftp-del-tmp-name tmp1)
4258 (ange-ftp-del-tmp-name tmp2))))
4260 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE.
4261 (defun ange-ftp-uncompress (file nfile)
4262 (let* ((parsed (ange-ftp-ftp-name file))
4263 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4264 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4265 (abbr (ange-ftp-abbreviate-filename file))
4266 (nabbr (ange-ftp-abbreviate-filename nfile))
4267 (msg1 (format "Getting %s" abbr))
4268 (msg2 (format "Putting %s" nabbr))
4269 ;; ;; Cheap hack because of problems with binary file transfers from
4270 ;; ;; VMS hosts.
4271 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed)))))
4273 (unwind-protect
4274 (progn
4275 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4276 (and ange-ftp-process-verbose
4277 (ange-ftp-message "Uncompressing %s..." abbr))
4278 (call-process-region (point)
4279 (point)
4280 shell-file-name
4284 "-c"
4285 (format "uncompress -c < %s > %s" tmp1 tmp2))
4286 (and ange-ftp-process-verbose
4287 (ange-ftp-message "Uncompressing %s...done" abbr))
4288 (if (zerop (buffer-size))
4289 (progn
4290 (let (ange-ftp-process-verbose)
4291 (delete-file file))
4292 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4293 (ange-ftp-del-tmp-name tmp1)
4294 (ange-ftp-del-tmp-name tmp2))))
4296 (defun ange-ftp-find-backup-file-name (fn)
4297 ;; Either return the ordinary backup name, etc.,
4298 ;; or return nil meaning don't make a backup.
4299 (if ange-ftp-make-backup-files
4300 (ange-ftp-real-find-backup-file-name fn)))
4302 ;;; Define the handler for special file names
4303 ;;; that causes ange-ftp to be invoked.
4305 ;;;###autoload
4306 (defun ange-ftp-hook-function (operation &rest args)
4307 (let ((fn (get operation 'ange-ftp)))
4308 (if fn
4309 ;; Catch also errors in process-filter.
4310 (condition-case err
4311 (let ((debug-on-error t))
4312 (save-match-data (apply fn args)))
4313 (error (signal (car err) (cdr err))))
4314 (ange-ftp-run-real-handler operation args))))
4316 ;; The following code is commented out because Tramp now deals with
4317 ;; Ange-FTP filenames, too.
4319 ;;-;;; This regexp takes care of real ange-ftp file names (with a slash
4320 ;;-;;; and colon).
4321 ;;-;;; Don't allow the host name to end in a period--some systems use /.:
4322 ;;-;;;###autoload
4323 ;;-(or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist)
4324 ;;- (setq file-name-handler-alist
4325 ;;- (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function)
4326 ;;- file-name-handler-alist)))
4328 ;;-;;; This regexp recognizes absolute filenames with only one component,
4329 ;;-;;; for the sake of hostname completion.
4330 ;;-;;;###autoload
4331 ;;-(or (assoc "^/[^/:]*\\'" file-name-handler-alist)
4332 ;;- (setq file-name-handler-alist
4333 ;;- (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function)
4334 ;;- file-name-handler-alist)))
4336 ;;-;;; This regexp recognizes absolute filenames with only one component
4337 ;;-;;; on Windows, for the sake of hostname completion.
4338 ;;-;;; NB. Do not mark this as autoload, because it is very common to
4339 ;;-;;; do completions in the root directory of drives on Windows.
4340 ;;-(and (memq system-type '(ms-dos windows-nt))
4341 ;;- (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist)
4342 ;;- (setq file-name-handler-alist
4343 ;;- (cons '("^[a-zA-Z]:/[^/:]*\\'" .
4344 ;;- ange-ftp-completion-hook-function)
4345 ;;- file-name-handler-alist))))
4347 ;;; The above two forms are sufficient to cause this file to be loaded
4348 ;;; if the user ever uses a file name with a colon in it.
4350 ;;; This sets the mode
4351 (add-hook 'find-file-hook 'ange-ftp-set-buffer-mode)
4353 ;;; Now say where to find the handlers for particular operations.
4355 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory)
4356 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory)
4357 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory)
4358 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name)
4359 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name)
4360 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory)
4361 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory)
4362 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents)
4363 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files)
4364 (put 'directory-files-and-attributes 'ange-ftp
4365 'ange-ftp-directory-files-and-attributes)
4366 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p)
4367 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p)
4368 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p)
4369 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p)
4370 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p)
4371 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file)
4372 (put 'verify-visited-file-modtime 'ange-ftp
4373 'ange-ftp-verify-visited-file-modtime)
4374 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p)
4375 (put 'write-region 'ange-ftp 'ange-ftp-write-region)
4376 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file)
4377 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file)
4378 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes)
4379 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p)
4380 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions)
4381 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion)
4382 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory)
4383 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy)
4384 (put 'file-remote-p 'ange-ftp 'ange-ftp-file-remote-p)
4385 (put 'unhandled-file-name-directory 'ange-ftp
4386 'ange-ftp-unhandled-file-name-directory)
4387 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions)
4388 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache)
4389 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file)
4390 (put 'load 'ange-ftp 'ange-ftp-load)
4391 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name)
4392 (put 'set-file-modes 'ange-ftp 'ange-ftp-set-file-modes)
4394 ;; Turn off truename processing to save time.
4395 ;; Treat each name as its own truename.
4396 (put 'file-truename 'ange-ftp 'identity)
4398 ;; We must return non-nil in order to mask our inability to do the job.
4399 ;; Otherwise there are errors when applied to the target file during
4400 ;; copying from a (localhost) Tramp file.
4401 (put 'set-file-times 'ange-ftp 'ignore)
4403 ;; Turn off RCS/SCCS processing to save time.
4404 ;; This returns nil for any file name as argument.
4405 (put 'vc-registered 'ange-ftp 'null)
4407 ;; We can handle process-file in a restricted way (just for chown).
4408 ;; Nothing possible for `start-file-process'.
4409 (put 'process-file 'ange-ftp 'ange-ftp-process-file)
4410 (put 'start-file-process 'ange-ftp 'ignore)
4411 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command)
4413 ;;; Define ways of getting at unmodified Emacs primitives,
4414 ;;; turning off our handler.
4416 (defun ange-ftp-run-real-handler (operation args)
4417 (let ((inhibit-file-name-handlers
4418 (cons 'ange-ftp-hook-function
4419 (cons 'ange-ftp-completion-hook-function
4420 (and (eq inhibit-file-name-operation operation)
4421 inhibit-file-name-handlers))))
4422 (inhibit-file-name-operation operation))
4423 (apply operation args)))
4425 (defun ange-ftp-real-file-name-directory (&rest args)
4426 (ange-ftp-run-real-handler 'file-name-directory args))
4427 (defun ange-ftp-real-file-name-nondirectory (&rest args)
4428 (ange-ftp-run-real-handler 'file-name-nondirectory args))
4429 (defun ange-ftp-real-file-name-as-directory (&rest args)
4430 (ange-ftp-run-real-handler 'file-name-as-directory args))
4431 (defun ange-ftp-real-directory-file-name (&rest args)
4432 (ange-ftp-run-real-handler 'directory-file-name args))
4433 (defun ange-ftp-real-expand-file-name (&rest args)
4434 (ange-ftp-run-real-handler 'expand-file-name args))
4435 (defun ange-ftp-real-make-directory (&rest args)
4436 (ange-ftp-run-real-handler 'make-directory args))
4437 (defun ange-ftp-real-delete-directory (&rest args)
4438 (ange-ftp-run-real-handler 'delete-directory args))
4439 (defun ange-ftp-real-insert-file-contents (&rest args)
4440 (ange-ftp-run-real-handler 'insert-file-contents args))
4441 (defun ange-ftp-real-directory-files (&rest args)
4442 (ange-ftp-run-real-handler 'directory-files args))
4443 (defun ange-ftp-real-directory-files-and-attributes (&rest args)
4444 (ange-ftp-run-real-handler 'directory-files-and-attributes args))
4445 (defun ange-ftp-real-file-directory-p (&rest args)
4446 (ange-ftp-run-real-handler 'file-directory-p args))
4447 (defun ange-ftp-real-file-writable-p (&rest args)
4448 (ange-ftp-run-real-handler 'file-writable-p args))
4449 (defun ange-ftp-real-file-readable-p (&rest args)
4450 (ange-ftp-run-real-handler 'file-readable-p args))
4451 (defun ange-ftp-real-file-executable-p (&rest args)
4452 (ange-ftp-run-real-handler 'file-executable-p args))
4453 (defun ange-ftp-real-file-symlink-p (&rest args)
4454 (ange-ftp-run-real-handler 'file-symlink-p args))
4455 (defun ange-ftp-real-delete-file (&rest args)
4456 (ange-ftp-run-real-handler 'delete-file args))
4457 (defun ange-ftp-real-verify-visited-file-modtime (&rest args)
4458 (ange-ftp-run-real-handler 'verify-visited-file-modtime args))
4459 (defun ange-ftp-real-file-exists-p (&rest args)
4460 (ange-ftp-run-real-handler 'file-exists-p args))
4461 (defun ange-ftp-real-write-region (&rest args)
4462 (ange-ftp-run-real-handler 'write-region args))
4463 (defun ange-ftp-real-backup-buffer (&rest args)
4464 (ange-ftp-run-real-handler 'backup-buffer args))
4465 (defun ange-ftp-real-copy-file (&rest args)
4466 (ange-ftp-run-real-handler 'copy-file args))
4467 (defun ange-ftp-real-rename-file (&rest args)
4468 (ange-ftp-run-real-handler 'rename-file args))
4469 (defun ange-ftp-real-file-attributes (&rest args)
4470 (ange-ftp-run-real-handler 'file-attributes args))
4471 (defun ange-ftp-real-file-newer-than-file-p (&rest args)
4472 (ange-ftp-run-real-handler 'file-newer-than-file-p args))
4473 (defun ange-ftp-real-file-name-all-completions (&rest args)
4474 (ange-ftp-run-real-handler 'file-name-all-completions args))
4475 (defun ange-ftp-real-file-name-completion (&rest args)
4476 (ange-ftp-run-real-handler 'file-name-completion args))
4477 (defun ange-ftp-real-insert-directory (&rest args)
4478 (ange-ftp-run-real-handler 'insert-directory args))
4479 (defun ange-ftp-real-file-name-sans-versions (&rest args)
4480 (ange-ftp-run-real-handler 'file-name-sans-versions args))
4481 (defun ange-ftp-real-shell-command (&rest args)
4482 (ange-ftp-run-real-handler 'shell-command args))
4483 (defun ange-ftp-real-load (&rest args)
4484 (ange-ftp-run-real-handler 'load args))
4485 (defun ange-ftp-real-find-backup-file-name (&rest args)
4486 (ange-ftp-run-real-handler 'find-backup-file-name args))
4488 ;; Here we support using dired on remote hosts.
4489 ;; I have turned off the support for using dired on foreign directory formats.
4490 ;; That involves too many unclean hooks.
4491 ;; It would be cleaner to support such operations by
4492 ;; converting the foreign directory format to something dired can understand;
4493 ;; something close to ls -l output.
4494 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing.
4496 ;; Some of the old dired hooks would still be needed even if this is done.
4497 ;; I have preserved (and modernized) those hooks.
4498 ;; So the format conversion should be all that is needed.
4500 ;; When called from dired, SWITCHES may start with "--dired".
4501 ;; `ange-ftp-ls' handles this.
4503 (defun ange-ftp-insert-directory (file switches &optional wildcard full)
4504 (if (not (ange-ftp-ftp-name (expand-file-name file)))
4505 (ange-ftp-real-insert-directory file switches wildcard full)
4506 ;; We used to follow symlinks on `file' here. Apparently it was done
4507 ;; because some FTP servers react to "ls foo" by listing the symlink foo
4508 ;; rather than the directory it points to. Now that ange-ftp-ls uses
4509 ;; "cd foo; ls" instead, this is not necesssary any more.
4510 (let ((beg (point))
4511 (end (point-marker)))
4512 (set-marker-insertion-type end t)
4513 (insert
4514 (cond
4515 (wildcard
4516 (let ((default-directory (file-name-directory file)))
4517 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)))
4518 (full
4519 (ange-ftp-ls file switches 'parse))
4521 ;; If `full' is nil we're going to do `ls' for a single file.
4522 ;; Problem is that for various reasons, ange-ftp-ls needs to cd and
4523 ;; then do an ls of current dir, which obviously won't work if we
4524 ;; want to ls a file. So instead, we get a full listing of the
4525 ;; parent directory and extract the line corresponding to `file'.
4526 (when (string-match "-?d\\'" switches)
4527 ;; Remove "d" which dired added to `switches'.
4528 (setq switches (substring switches 0 (match-beginning 0))))
4529 (setq file (directory-file-name file))
4530 (let* ((dirlist (ange-ftp-ls (or (file-name-directory file) ".")
4531 switches 'parse))
4532 (filename (file-name-nondirectory file))
4533 (case-fold-search nil))
4534 ;; FIXME: This presumes a particular output format, which is
4535 ;; basically Unix.
4536 (if (string-match (concat "^.+[^ ] " (regexp-quote filename)
4537 "\\( -> .*\\)?[@/*=]?\n") dirlist)
4538 (match-string 0 dirlist)
4539 "")))))
4541 ;; Insert " " for dired's alignment sanity.
4542 (goto-char beg)
4543 (while (re-search-forward "^\\(\\S-\\)" end 'move)
4544 (replace-match " \\1"))
4546 ;; The inserted file could be from somewhere else.
4547 (when (and (not wildcard) (not full)
4548 (search-backward
4549 (if (zerop (length (file-name-nondirectory
4550 (expand-file-name file))))
4552 (file-name-nondirectory file))
4553 nil 'noerror))
4554 (replace-match (file-relative-name (expand-file-name file)) t)
4555 (goto-char end))
4557 (set-marker end nil))))
4559 (defun ange-ftp-dired-uncache (dir)
4560 (if (ange-ftp-ftp-name (expand-file-name dir))
4561 (setq ange-ftp-ls-cache-file nil)))
4563 (defvar ange-ftp-sans-version-alist nil
4564 "Alist of mapping host type into function to remove file version numbers.")
4566 (defun ange-ftp-file-name-sans-versions (file keep-backup-version)
4567 (let* ((short (ange-ftp-abbreviate-filename file))
4568 (parsed (ange-ftp-ftp-name short))
4569 (func (if parsed (cdr (assq (ange-ftp-host-type (car parsed))
4570 ange-ftp-sans-version-alist)))))
4571 (if func (funcall func file keep-backup-version)
4572 (ange-ftp-real-file-name-sans-versions file keep-backup-version))))
4574 ;; This is the handler for shell-command.
4575 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer)
4576 (let* ((parsed (ange-ftp-ftp-name default-directory))
4577 (host (nth 0 parsed))
4578 (user (nth 1 parsed))
4579 (name (nth 2 parsed)))
4580 (if (not parsed)
4581 (ange-ftp-real-shell-command command output-buffer error-buffer)
4582 (if (> (length name) 0) ; else it's $HOME
4583 (setq command (concat "cd " name "; " command)))
4584 ;; Remove port from the hostname
4585 (when (string-match "\\(.*\\)#" host)
4586 (setq host (match-string 1 host)))
4587 (setq command
4588 (format "%s %s \"%s\"" ; remsh -l USER does not work well
4589 ; on a hp-ux machine I tried
4590 remote-shell-program host command))
4591 (ange-ftp-message "Remote command '%s' ..." command)
4592 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it
4593 ;; would prepend "cd default-directory" --- which bombs because
4594 ;; default-directory is in ange-ftp syntax for remote file names.
4595 (ange-ftp-real-shell-command command output-buffer error-buffer))))
4597 ;;; This is the handler for process-file.
4598 (defun ange-ftp-process-file (program infile buffer display &rest arguments)
4599 ;; PROGRAM is always one of those below in the cond in dired.el.
4600 ;; The ARGUMENTS are (nearly) always files.
4601 (if (ange-ftp-ftp-name default-directory)
4602 ;; Can't use ange-ftp-dired-host-type here because the current
4603 ;; buffer is *dired-check-process output*
4604 (condition-case oops
4605 (cond ((equal (or (bound-and-true-p dired-chmod-program) "chmod")
4606 program)
4607 (ange-ftp-call-chmod arguments))
4608 ;; ((equal "chgrp" program))
4609 ;; ((equal dired-chown-program program))
4610 (t (error "Unknown remote command: %s" program)))
4611 (ftp-error (insert (format "%s: %s, %s\n"
4612 (nth 1 oops)
4613 (nth 2 oops)
4614 (nth 3 oops)))
4615 ;; Caller expects nonzero value to mean failure.
4617 (error (insert (format "%s\n" (nth 1 oops)))
4619 (apply 'call-process program infile buffer display arguments)))
4621 ;; Handle an attempt to run chmod on a remote file
4622 ;; by using the ftp chmod command.
4623 (defun ange-ftp-call-chmod (args)
4624 (if (< (length args) 2)
4625 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args))
4626 (let ((mode (car args))
4627 (rest (cdr args)))
4628 (if (equal "--" (car rest))
4629 (setq rest (cdr rest)))
4630 (mapc
4631 (lambda (file)
4632 (setq file (expand-file-name file))
4633 (let ((parsed (ange-ftp-ftp-name file)))
4634 (if parsed
4635 (let* ((host (nth 0 parsed))
4636 (user (nth 1 parsed))
4637 (name (ange-ftp-quote-string (nth 2 parsed)))
4638 (abbr (ange-ftp-abbreviate-filename file))
4639 (result (ange-ftp-send-cmd host user
4640 (list 'chmod mode name)
4641 (format "doing chmod %s"
4642 abbr))))
4643 (or (car result)
4644 (ange-ftp-error
4645 host user (concat "CHMOD failed: " (cdr result))))))))
4646 rest))
4647 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired.
4650 (defun ange-ftp-set-file-modes (filename mode)
4651 (ange-ftp-call-chmod (list (format "%o" mode) filename)))
4653 ;; This is turned off because it has nothing properly to do
4654 ;; with dired. It could be reasonable to adapt this to
4655 ;; replace ange-ftp-copy-file.
4657 ;;;;; ------------------------------------------------------------
4658 ;;;;; Noddy support for async copy-file within dired.
4659 ;;;;; ------------------------------------------------------------
4661 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait)
4662 ;; "Documented as original."
4663 ;; (dired-handle-overwrite to)
4664 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil
4665 ;; cont nowait))
4667 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg
4668 ;; &optional marker-char op1
4669 ;; how-to)
4670 ;; "Documented as original."
4671 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly
4672 ;; ;; called it rather than somebody else.
4673 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is
4674 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation
4675 ;; arg marker-char op1 how-to)))
4677 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor
4678 ;; &optional marker-char)
4679 ;; "Documented as original."
4680 ;; (if (and (boundp 'ange-ftp-dired-do-create-files)
4681 ;; ;; called from ange-ftp-dired-do-create-files?
4682 ;; ange-ftp-dired-do-create-files
4683 ;; ;; any files worth copying?
4684 ;; fn-list
4685 ;; ;; we only support async copy-file at the mo.
4686 ;; (eq file-creator 'dired-copy-file)
4687 ;; ;; it is only worth calling the alternative function for remote files
4688 ;; ;; as we tie ourself in recursive knots otherwise.
4689 ;; (or (ange-ftp-ftp-name (car fn-list))
4690 ;; ;; we can only call the name constructor for dired-do-create-files
4691 ;; ;; since the one for regexps starts prompting here, there and
4692 ;; ;; everywhere.
4693 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list)))))
4694 ;; ;; use the process-filter driven routine rather than the iterative one.
4695 ;; (ange-ftp-dcf-1 file-creator
4696 ;; operation
4697 ;; fn-list
4698 ;; name-constructor
4699 ;; (and (boundp 'target) target) ;dynamically bound
4700 ;; marker-char
4701 ;; (current-buffer)
4702 ;; nil ;overwrite-query
4703 ;; nil ;overwrite-backup-query
4704 ;; nil ;failures
4705 ;; nil ;skipped
4706 ;; 0 ;success-count
4707 ;; (length fn-list) ;total
4708 ;; )
4709 ;; ;; normal case... use the interactive routine... much cheaper.
4710 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list
4711 ;; name-constructor marker-char)))
4713 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor
4714 ;; target marker-char buffer overwrite-query
4715 ;; overwrite-backup-query failures skipped
4716 ;; success-count total)
4717 ;; (with-current-buffer buffer
4718 ;; (if (null fn-list)
4719 ;; (ange-ftp-dcf-3 failures operation total skipped
4720 ;; success-count buffer)
4722 ;; (let* ((from (car fn-list))
4723 ;; (to (funcall name-constructor from)))
4724 ;; (if (equal to from)
4725 ;; (progn
4726 ;; (setq to nil)
4727 ;; (dired-log "Cannot %s to same file: %s\n"
4728 ;; (downcase operation) from)))
4729 ;; (if (not to)
4730 ;; (ange-ftp-dcf-1 file-creator
4731 ;; operation
4732 ;; (cdr fn-list)
4733 ;; name-constructor
4734 ;; target
4735 ;; marker-char
4736 ;; buffer
4737 ;; overwrite-query
4738 ;; overwrite-backup-query
4739 ;; failures
4740 ;; (cons (dired-make-relative from) skipped)
4741 ;; success-count
4742 ;; total)
4743 ;; (let* ((overwrite (file-exists-p to))
4744 ;; (overwrite-confirmed ; for dired-handle-overwrite
4745 ;; (and overwrite
4746 ;; (let ((help-form '(format "\
4747 ;;Type SPC or `y' to overwrite file `%s',
4748 ;;DEL or `n' to skip to next,
4749 ;;ESC or `q' to not overwrite any of the remaining files,
4750 ;;`!' to overwrite all remaining files with no more questions." to)))
4751 ;; (dired-query 'overwrite-query
4752 ;; "Overwrite `%s'?" to))))
4753 ;; ;; must determine if FROM is marked before file-creator
4754 ;; ;; gets a chance to delete it (in case of a move).
4755 ;; (actual-marker-char
4756 ;; (cond ((integerp marker-char) marker-char)
4757 ;; (marker-char (dired-file-marker from)) ; slow
4758 ;; (t nil))))
4759 ;; (condition-case err
4760 ;; (funcall file-creator from to overwrite-confirmed
4761 ;; (list 'ange-ftp-dcf-2
4762 ;; nil ;err
4763 ;; file-creator operation fn-list
4764 ;; name-constructor
4765 ;; target
4766 ;; marker-char actual-marker-char
4767 ;; buffer to from
4768 ;; overwrite
4769 ;; overwrite-confirmed
4770 ;; overwrite-query
4771 ;; overwrite-backup-query
4772 ;; failures skipped success-count
4773 ;; total)
4774 ;; t)
4775 ;; (file-error ; FILE-CREATOR aborted
4776 ;; (ange-ftp-dcf-2 nil ;result
4777 ;; nil ;line
4778 ;; err
4779 ;; file-creator operation fn-list
4780 ;; name-constructor
4781 ;; target
4782 ;; marker-char actual-marker-char
4783 ;; buffer to from
4784 ;; overwrite
4785 ;; overwrite-confirmed
4786 ;; overwrite-query
4787 ;; overwrite-backup-query
4788 ;; failures skipped success-count
4789 ;; total)))))))))
4791 ;;(defun ange-ftp-dcf-2 (result line err
4792 ;; file-creator operation fn-list
4793 ;; name-constructor
4794 ;; target
4795 ;; marker-char actual-marker-char
4796 ;; buffer to from
4797 ;; overwrite
4798 ;; overwrite-confirmed
4799 ;; overwrite-query
4800 ;; overwrite-backup-query
4801 ;; failures skipped success-count
4802 ;; total)
4803 ;; (with-current-buffer buffer
4804 ;; (if (or err (not result))
4805 ;; (progn
4806 ;; (setq failures (cons (dired-make-relative from) failures))
4807 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n"
4808 ;; operation from to (or err line)))
4809 ;; (if overwrite
4810 ;; ;; If we get here, file-creator hasn't been aborted
4811 ;; ;; and the old entry (if any) has to be deleted
4812 ;; ;; before adding the new entry.
4813 ;; (dired-remove-file to))
4814 ;; (setq success-count (1+ success-count))
4815 ;; (message "%s: %d of %d" operation success-count total)
4816 ;; (dired-add-file to actual-marker-char))
4818 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list)
4819 ;; name-constructor
4820 ;; target
4821 ;; marker-char
4822 ;; buffer
4823 ;; overwrite-query
4824 ;; overwrite-backup-query
4825 ;; failures skipped success-count
4826 ;; total)))
4828 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count
4829 ;; buffer)
4830 ;; (with-current-buffer buffer
4831 ;; (cond
4832 ;; (failures
4833 ;; (dired-log-summary
4834 ;; (message "%s failed for %d of %d file%s %s"
4835 ;; operation (length failures) total
4836 ;; (dired-plural-s total) failures)))
4837 ;; (skipped
4838 ;; (dired-log-summary
4839 ;; (message "%s: %d of %d file%s skipped %s"
4840 ;; operation (length skipped) total
4841 ;; (dired-plural-s total) skipped)))
4842 ;; (t
4843 ;; (message "%s: %s file%s."
4844 ;; operation success-count (dired-plural-s success-count))))
4845 ;; (dired-move-to-filename)))
4847 ;;;; -----------------------------------------------
4848 ;;;; Unix Descriptive Listing (dl) Support
4849 ;;;; -----------------------------------------------
4851 ;; This is turned off because nothing uses it currently
4852 ;; and because I don't understand what it's supposed to be for. --rms.
4854 ;;(defconst ange-ftp-dired-dl-re-dir
4855 ;; "^. [^ /]+/[ \n]"
4856 ;; "Regular expression to use to search for dl directories.")
4858 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist)
4859 ;; (setq ange-ftp-dired-re-dir-alist
4860 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir)
4861 ;; ange-ftp-dired-re-dir-alist)))
4863 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol)
4864 ;; "In dired, move to the first character of the filename on this line."
4865 ;; ;; This is the Unix dl version.
4866 ;; (or eol (setq eol (progn (end-of-line) (point))))
4867 ;; (let (case-fold-search)
4868 ;; (beginning-of-line)
4869 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ")
4870 ;; (goto-char (+ (point) 2))
4871 ;; (if raise-error
4872 ;; (error "No file on this line")
4873 ;; nil))))
4875 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist)
4876 ;; (setq ange-ftp-dired-move-to-filename-alist
4877 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename)
4878 ;; ange-ftp-dired-move-to-filename-alist)))
4880 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol)
4881 ;; ;; Assumes point is at beginning of filename.
4882 ;; ;; So, it should be called only after (dired-move-to-filename t).
4883 ;; ;; On failure, signals an error or returns nil.
4884 ;; ;; This is the Unix dl version.
4885 ;; (let ((opoint (point))
4886 ;; case-fold-search hidden)
4887 ;; (or eol (setq eol (line-end-position)))
4888 ;; (setq hidden (and selective-display
4889 ;; (save-excursion
4890 ;; (search-forward "\r" eol t))))
4891 ;; (if hidden
4892 ;; (if no-error
4893 ;; nil
4894 ;; (error
4895 ;; (substitute-command-keys
4896 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
4897 ;; (skip-chars-forward "^ /" eol)
4898 ;; (if (eq opoint (point))
4899 ;; (if no-error
4900 ;; nil
4901 ;; (error "No file on this line"))
4902 ;; (point)))))
4904 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist)
4905 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4906 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename)
4907 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4909 ;;;; ------------------------------------------------------------
4910 ;;;; VOS support (VOS support is probably broken,
4911 ;;;; but I don't know anything about VOS.)
4912 ;;;; ------------------------------------------------------------
4914 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse)
4915 ; (setq name (copy-sequence name))
4916 ; (let ((from (if reverse ?\> ?\/))
4917 ; (to (if reverse ?\/ ?\>))
4918 ; (i (1- (length name))))
4919 ; (while (>= i 0)
4920 ; (if (= (aref name i) from)
4921 ; (aset name i to))
4922 ; (setq i (1- i)))
4923 ; name))
4925 ;(or (assq 'vos ange-ftp-fix-name-func-alist)
4926 ; (setq ange-ftp-fix-name-func-alist
4927 ; (cons '(vos . ange-ftp-fix-name-for-vos)
4928 ; ange-ftp-fix-name-func-alist)))
4930 ;(or (memq 'vos ange-ftp-dumb-host-types)
4931 ; (setq ange-ftp-dumb-host-types
4932 ; (cons 'vos ange-ftp-dumb-host-types)))
4934 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name)
4935 ; (ange-ftp-fix-name-for-vos
4936 ; (concat dir-name
4937 ; (if (eq ?/ (aref dir-name (1- (length dir-name))))
4938 ; "" "/")
4939 ; "*")))
4941 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist)
4942 ; (setq ange-ftp-fix-dir-name-func-alist
4943 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos)
4944 ; ange-ftp-fix-dir-name-func-alist)))
4946 ;(defvar ange-ftp-vos-host-regexp nil
4947 ; "If a host matches this regexp then it is assumed to be running VOS.")
4949 ;(defun ange-ftp-vos-host (host)
4950 ; (and ange-ftp-vos-host-regexp
4951 ; (save-match-data
4952 ; (string-match ange-ftp-vos-host-regexp host))))
4954 ;(defun ange-ftp-parse-vos-listing ()
4955 ; "Parse the current buffer which is assumed to be in VOS list -all
4956 ;format, and return a hashtable as the result."
4957 ; (let ((tbl (ange-ftp-make-hashtable))
4958 ; (type-list
4959 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40)
4960 ; ("^Dirs: [0-9]+\n+" t 30)))
4961 ; type-regexp type-is-dir type-col file)
4962 ; (goto-char (point-min))
4963 ; (save-match-data
4964 ; (while type-list
4965 ; (setq type-regexp (car (car type-list))
4966 ; type-is-dir (nth 1 (car type-list))
4967 ; type-col (nth 2 (car type-list))
4968 ; type-list (cdr type-list))
4969 ; (if (re-search-forward type-regexp nil t)
4970 ; (while (eq (char-after (point)) ? )
4971 ; (move-to-column type-col)
4972 ; (setq file (buffer-substring (point)
4973 ; (progn
4974 ; (end-of-line 1)
4975 ; (point))))
4976 ; (puthash file type-is-dir tbl)
4977 ; (forward-line 1))))
4978 ; (puthash "." 'vosdir tbl)
4979 ; (puthash ".." 'vosdir tbl))
4980 ; tbl))
4982 ;(or (assq 'vos ange-ftp-parse-list-func-alist)
4983 ; (setq ange-ftp-parse-list-func-alist
4984 ; (cons '(vos . ange-ftp-parse-vos-listing)
4985 ; ange-ftp-parse-list-func-alist)))
4987 ;;;; ------------------------------------------------------------
4988 ;;;; VMS support.
4989 ;;;; ------------------------------------------------------------
4991 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS
4992 ;; to UNIX-ish.
4993 (defun ange-ftp-fix-name-for-vms (name &optional reverse)
4994 (save-match-data
4995 (if reverse
4996 (if (string-match "\\`\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)\\'" name)
4997 (let (drive dir file)
4998 (setq drive (match-string 1 name))
4999 (setq dir (match-string 2 name))
5000 (setq file (match-string 3 name))
5001 (and dir
5002 (setq dir (subst-char-in-string
5003 ?/ ?. (substring dir 1 -1) t)))
5004 (concat (and drive
5005 (concat "/" drive "/"))
5006 dir (and dir "/")
5007 file))
5008 (error "name %s didn't match" name))
5009 (let (drive dir file tmp)
5010 (if (string-match "\\`/[^:]+:/" name)
5011 (setq drive (substring name 1
5012 (1- (match-end 0)))
5013 name (substring name (match-end 0))))
5014 (setq tmp (file-name-directory name))
5015 (if tmp
5016 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t)))
5017 (setq file (file-name-nondirectory name))
5018 (concat drive
5019 (and dir (concat "[" (if drive nil ".") dir "]"))
5020 file)))))
5022 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1")
5023 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t)
5025 (or (assq 'vms ange-ftp-fix-name-func-alist)
5026 (setq ange-ftp-fix-name-func-alist
5027 (cons '(vms . ange-ftp-fix-name-for-vms)
5028 ange-ftp-fix-name-func-alist)))
5030 (or (memq 'vms ange-ftp-dumb-host-types)
5031 (setq ange-ftp-dumb-host-types
5032 (cons 'vms ange-ftp-dumb-host-types)))
5034 ;; It is important that this function barf for directories for which we know
5035 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/".
5036 ;; This is because it saves an unnecessary FTP error, or possibly the listing
5037 ;; might succeed, but give erroneous info. This last case is particularly
5038 ;; likely for OS's (like MTS) for which we need to use a wildcard in order
5039 ;; to list a directory.
5041 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing.
5042 (defun ange-ftp-fix-dir-name-for-vms (dir-name)
5043 ;; Should there be entries for .. -> [-] and . -> [] below. Don't
5044 ;; think so, because expand-filename should have already short-circuited
5045 ;; them.
5046 (cond ((string-equal dir-name "/")
5047 (error "Cannot get listing for fictitious \"/\" directory"))
5048 ((string-match "\\`/[-A-Z0-9_$]+:/\\'" dir-name)
5049 (error "Cannot get listing for device"))
5050 ((ange-ftp-fix-name-for-vms dir-name))))
5052 (or (assq 'vms ange-ftp-fix-dir-name-func-alist)
5053 (setq ange-ftp-fix-dir-name-func-alist
5054 (cons '(vms . ange-ftp-fix-dir-name-for-vms)
5055 ange-ftp-fix-dir-name-func-alist)))
5057 (defvar ange-ftp-vms-host-regexp nil)
5059 ;; Return non-nil if HOST is running VMS.
5060 (defun ange-ftp-vms-host (host)
5061 (and ange-ftp-vms-host-regexp
5062 (string-match-p ange-ftp-vms-host-regexp host)))
5064 ;; Because some VMS ftp servers convert filenames to lower case
5065 ;; we allow a-z in the filename regexp. I'm not too happy about this.
5067 (defconst ange-ftp-vms-filename-regexp
5068 (concat
5069 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\."
5070 "[-_A-Za-z0-9$]*;+[0-9]*\\)")
5071 "Regular expression to match for a valid VMS file name in Dired buffer.
5072 Stupid freaking bug! Position of _ and $ shouldn't matter but they do.
5073 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX.
5074 Other orders of $ and _ seem to all work just fine.")
5076 ;; These parsing functions are as general as possible because the syntax
5077 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that
5078 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the
5079 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing
5080 ;; from vms.weird.net, then too bad.
5082 ;; Extract the next filename from a VMS dired-like listing.
5083 (defun ange-ftp-parse-vms-filename ()
5084 (if (re-search-forward
5085 ange-ftp-vms-filename-regexp
5086 nil t)
5087 (match-string 0)))
5089 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir
5090 ;; format, and return a hashtable as the result.
5091 (defun ange-ftp-parse-vms-listing ()
5092 (let ((tbl (make-hash-table :test 'equal))
5093 file)
5094 (goto-char (point-min))
5095 (save-match-data
5096 (while (setq file (ange-ftp-parse-vms-filename))
5097 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file)
5098 ;; deal with directories
5099 (puthash (substring file 0 (match-beginning 0)) t tbl)
5100 (puthash file nil tbl)
5101 (if (string-match ";[0-9]+\\'" file) ; deal with extension
5102 ;; sans extension
5103 (puthash (substring file 0 (match-beginning 0)) nil tbl)))
5104 (forward-line 1))
5105 ;; Would like to look for a "Total" line, or a "Directory" line to
5106 ;; make sure that the listing isn't complete garbage before putting
5107 ;; in "." and "..", but we can't even count on all VAX's giving us
5108 ;; either of these.
5109 (puthash "." t tbl)
5110 (puthash ".." t tbl))
5111 tbl))
5113 (add-to-list 'ange-ftp-parse-list-func-alist
5114 '(vms . ange-ftp-parse-vms-listing))
5116 ;; This version only deletes file entries which have
5117 ;; explicit version numbers, because that is all VMS allows.
5119 ;; Can the following two functions be speeded up using file
5120 ;; completion functions?
5122 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p)
5123 (if dir-p
5124 (ange-ftp-internal-delete-file-entry name t)
5125 (save-match-data
5126 (let ((file (ange-ftp-get-file-part name)))
5127 (if (string-match ";[0-9]+\\'" file)
5128 ;; In VMS you can't delete a file without an explicit
5129 ;; version number, or wild-card (e.g. FOO;*)
5130 ;; For now, we give up on wildcards.
5131 (let ((files (gethash (file-name-directory name)
5132 ange-ftp-files-hashtable)))
5133 (if files
5134 (let* ((root (substring file 0
5135 (match-beginning 0)))
5136 (regexp (concat "^"
5137 (regexp-quote root)
5138 ";[0-9]+$"))
5139 versions)
5140 (remhash file files)
5141 ;; Now we need to check if there are any
5142 ;; versions left. If not, then delete the
5143 ;; root entry.
5144 (maphash
5145 (lambda (key val)
5146 (and (string-match regexp key)
5147 (setq versions t)))
5148 files)
5149 (or versions
5150 (remhash root files))))))))))
5152 (or (assq 'vms ange-ftp-delete-file-entry-alist)
5153 (setq ange-ftp-delete-file-entry-alist
5154 (cons '(vms . ange-ftp-vms-delete-file-entry)
5155 ange-ftp-delete-file-entry-alist)))
5157 (defun ange-ftp-vms-add-file-entry (name &optional dir-p)
5158 (if dir-p
5159 (ange-ftp-internal-add-file-entry name t)
5160 (let ((files (gethash (file-name-directory name)
5161 ange-ftp-files-hashtable)))
5162 (if files
5163 (let ((file (ange-ftp-get-file-part name)))
5164 (save-match-data
5165 (if (string-match ";[0-9]+\\'" file)
5166 (puthash (substring file 0 (match-beginning 0)) nil files)
5167 ;; Need to figure out what version of the file
5168 ;; is being added.
5169 (let ((regexp (concat "^"
5170 (regexp-quote file)
5171 ";\\([0-9]+\\)$"))
5172 (version 0))
5173 (maphash
5174 (lambda (name val)
5175 (and (string-match regexp name)
5176 (setq version
5177 (max version
5178 (string-to-number (match-string 1 name))))))
5179 files)
5180 (setq version (1+ version))
5181 (puthash
5182 (concat file ";" (int-to-string version))
5183 nil files))))
5184 (puthash file nil files))))))
5186 (or (assq 'vms ange-ftp-add-file-entry-alist)
5187 (setq ange-ftp-add-file-entry-alist
5188 (cons '(vms . ange-ftp-vms-add-file-entry)
5189 ange-ftp-add-file-entry-alist)))
5192 (defun ange-ftp-add-vms-host (host)
5193 "Mark HOST as the name of a machine running VMS."
5194 (interactive
5195 (list (read-string "Host: "
5196 (let ((name (or (buffer-file-name) default-directory)))
5197 (and name (car (ange-ftp-ftp-name name)))))))
5198 (if (not (ange-ftp-vms-host host))
5199 (setq ange-ftp-vms-host-regexp
5200 (concat "^" (regexp-quote host) "$"
5201 (and ange-ftp-vms-host-regexp "\\|")
5202 ange-ftp-vms-host-regexp)
5203 ange-ftp-host-cache nil)))
5206 (defun ange-ftp-vms-file-name-as-directory (name)
5207 (save-match-data
5208 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?\\'" name)
5209 (setq name (substring name 0 (match-beginning 0))))
5210 (ange-ftp-real-file-name-as-directory name)))
5212 (or (assq 'vms ange-ftp-file-name-as-directory-alist)
5213 (setq ange-ftp-file-name-as-directory-alist
5214 (cons '(vms . ange-ftp-vms-file-name-as-directory)
5215 ange-ftp-file-name-as-directory-alist)))
5217 ;;; Tree dired support:
5219 ;; For this code I have borrowed liberally from Sebastian Kremer's
5220 ;; dired-vms.el
5223 ;;;; These regexps must be anchored to beginning of line.
5224 ;;;; Beware that the ftpd may put the device in front of the filename.
5226 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]"
5227 ;; "Regular expression to use to search for VMS executable files.")
5229 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]"
5230 ;; "Regular expression to use to search for VMS directories.")
5232 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist)
5233 ;; (setq ange-ftp-dired-re-exe-alist
5234 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe)
5235 ;; ange-ftp-dired-re-exe-alist)))
5237 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist)
5238 ;; (setq ange-ftp-dired-re-dir-alist
5239 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir)
5240 ;; ange-ftp-dired-re-dir-alist)))
5242 ;;(defun ange-ftp-dired-vms-insert-headerline (dir)
5243 ;; ;; VMS inserts a headerline. I would prefer the headerline
5244 ;; ;; to be in ange-ftp format. This version tries to
5245 ;; ;; be careful, because we can't count on a headerline
5246 ;; ;; over ftp, and we wouldn't want to delete anything
5247 ;; ;; important.
5248 ;; (save-excursion
5249 ;; (if (looking-at "^ wildcard ")
5250 ;; (forward-line 1))
5251 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n")
5252 ;; (delete-region (point) (match-end 0))))
5253 ;; (ange-ftp-real-dired-insert-headerline dir))
5255 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist)
5256 ;; (setq ange-ftp-dired-insert-headerline-alist
5257 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline)
5258 ;; ange-ftp-dired-insert-headerline-alist)))
5260 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol)
5261 ;; "In dired, move to first char of filename on this line.
5262 ;;Returns position (point) or nil if no filename on this line."
5263 ;; ;; This is the VMS version.
5264 ;; (let (case-fold-search)
5265 ;; (or eol (setq eol (progn (end-of-line) (point))))
5266 ;; (beginning-of-line)
5267 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t)
5268 ;; (goto-char (match-beginning 1))
5269 ;; (if raise-error
5270 ;; (error "No file on this line")
5271 ;; nil))))
5273 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist)
5274 ;; (setq ange-ftp-dired-move-to-filename-alist
5275 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename)
5276 ;; ange-ftp-dired-move-to-filename-alist)))
5278 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol)
5279 ;; ;; Assumes point is at beginning of filename.
5280 ;; ;; So, it should be called only after (dired-move-to-filename t).
5281 ;; ;; case-fold-search must be nil, at least for VMS.
5282 ;; ;; On failure, signals an error or returns nil.
5283 ;; ;; This is the VMS version.
5284 ;; (let (opoint hidden case-fold-search)
5285 ;; (setq opoint (point))
5286 ;; (or eol (setq eol (line-end-position)))
5287 ;; (setq hidden (and selective-display
5288 ;; (save-excursion (search-forward "\r" eol t))))
5289 ;; (if hidden
5290 ;; nil
5291 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t))
5292 ;; (or no-error
5293 ;; (not (eq opoint (point)))
5294 ;; (error
5295 ;; (if hidden
5296 ;; (substitute-command-keys
5297 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5298 ;; "No file on this line")))
5299 ;; (if (eq opoint (point))
5300 ;; nil
5301 ;; (point))))
5303 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist)
5304 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5305 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename)
5306 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5308 ;;(defun ange-ftp-dired-vms-between-files ()
5309 ;; (save-excursion
5310 ;; (beginning-of-line)
5311 ;; (or (equal (following-char) 10) ; newline
5312 ;; (equal (following-char) 9) ; tab
5313 ;; (progn (forward-char 2)
5314 ;; (or (looking-at "Total of")
5315 ;; (equal (following-char) 32))))))
5317 ;;(or (assq 'vms ange-ftp-dired-between-files-alist)
5318 ;; (setq ange-ftp-dired-between-files-alist
5319 ;; (cons '(vms . ange-ftp-dired-vms-between-files)
5320 ;; ange-ftp-dired-between-files-alist)))
5322 ;; Beware! In VMS filenames must be of the form "FILE.TYPE".
5323 ;; Therefore, we cannot just append a ".Z" to filenames for
5324 ;; compressed files. Instead, we turn "FILE.TYPE" into
5325 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do.
5327 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse)
5328 (cond
5329 ((string-match "-Z;[0-9]+\\'" name)
5330 (list nil (substring name 0 (match-beginning 0))))
5331 ((string-match ";[0-9]+\\'" name)
5332 (list nil (substring name 0 (match-beginning 0))))
5333 ((string-match "-Z\\'" name)
5334 (list nil (substring name 0 -2)))
5336 (list t
5337 (if (string-match ";[0-9]+\\'" name)
5338 (concat (substring name 0 (match-beginning 0))
5339 "-Z")
5340 (concat name "-Z"))))))
5342 (or (assq 'vms ange-ftp-make-compressed-filename-alist)
5343 (setq ange-ftp-make-compressed-filename-alist
5344 (cons '(vms . ange-ftp-vms-make-compressed-filename)
5345 ange-ftp-make-compressed-filename-alist)))
5347 ;;;; When the filename is too long, VMS will use two lines to list a file
5348 ;;;; (damn them!) This will confuse dired. To solve this, need to convince
5349 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of
5350 ;;;; (forward-line 1). This would require a number of changes to dired.el.
5351 ;;;; If dired gets confused, revert-buffer will fix it.
5353 ;;(defun ange-ftp-dired-vms-ls-trim ()
5354 ;; (goto-char (point-min))
5355 ;; (let ((case-fold-search nil))
5356 ;; (re-search-forward ange-ftp-vms-filename-regexp))
5357 ;; (beginning-of-line)
5358 ;; (delete-region (point-min) (point))
5359 ;; (forward-line 1)
5360 ;; (delete-region (point) (point-max)))
5363 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist)
5364 ;; (setq ange-ftp-dired-ls-trim-alist
5365 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim)
5366 ;; ange-ftp-dired-ls-trim-alist)))
5368 (defun ange-ftp-vms-sans-version (name &rest args)
5369 (save-match-data
5370 (if (string-match ";[0-9]+\\'" name)
5371 (substring name 0 (match-beginning 0))
5372 name)))
5374 (or (assq 'vms ange-ftp-sans-version-alist)
5375 (setq ange-ftp-sans-version-alist
5376 (cons '(vms . ange-ftp-vms-sans-version)
5377 ange-ftp-sans-version-alist)))
5379 ;;(defvar ange-ftp-file-version-alist)
5381 ;;;;; The vms version of clean-directory has 2 more optional args
5382 ;;;;; than the usual dired version. This is so that it can be used by
5383 ;;;;; ange-ftp-dired-vms-flag-backup-files.
5385 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg)
5386 ;; "Flag numerical backups for deletion.
5387 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
5388 ;;Positive prefix arg KEEP overrides `dired-kept-versions';
5389 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
5391 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files]
5392 ;;with a prefix argument."
5393 ;;; (interactive "P") ; Never actually called interactively.
5394 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions)))
5395 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
5396 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS!
5397 ;; ;; This could wipe ALL copies of the file.
5398 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep)))
5399 ;; (action (or msg "Cleaning"))
5400 ;; (ange-ftp-trample-marker (or marker dired-del-marker))
5401 ;; (ange-ftp-file-version-alist ()))
5402 ;; (message (concat action
5403 ;; " numerical backups (keeping %d late, %d old)...")
5404 ;; late-retention early-retention)
5405 ;; ;; Look at each file.
5406 ;; ;; If the file has numeric backup versions,
5407 ;; ;; put on ange-ftp-file-version-alist an element of the form
5408 ;; ;; (FILENAME . VERSION-NUMBER-LIST)
5409 ;; (dired-map-dired-file-lines 'ange-ftp-dired-vms-collect-file-versions)
5410 ;; ;; Sort each VERSION-NUMBER-LIST,
5411 ;; ;; and remove the versions not to be deleted.
5412 ;; (let ((fval ange-ftp-file-version-alist))
5413 ;; (while fval
5414 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
5415 ;; (v-count (length sorted-v-list)))
5416 ;; (if (> v-count (+ early-retention late-retention))
5417 ;; (rplacd (nthcdr early-retention sorted-v-list)
5418 ;; (nthcdr (- v-count late-retention)
5419 ;; sorted-v-list)))
5420 ;; (rplacd (car fval)
5421 ;; (cdr sorted-v-list)))
5422 ;; (setq fval (cdr fval))))
5423 ;; ;; Look at each file. If it is a numeric backup file,
5424 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
5425 ;; (dired-map-dired-file-lines
5426 ;; 'ange-ftp-dired-vms-trample-file-versions mark)
5427 ;; (message (concat action " numerical backups...done"))))
5429 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist)
5430 ;; (setq ange-ftp-dired-clean-directory-alist
5431 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory)
5432 ;; ange-ftp-dired-clean-directory-alist)))
5434 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn)
5435 ;; ;; "If it looks like file FN has versions, return a list of the versions.
5436 ;; ;;That is a list of strings which are file names.
5437 ;; ;;The caller may want to flag some of these files for deletion."
5438 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn))))
5439 ;; (if (string-match ";[0-9]+$" name)
5440 ;; (let* ((name (substring name 0 (match-beginning 0)))
5441 ;; (fn (ange-ftp-replace-name-component fn name)))
5442 ;; (if (not (assq fn ange-ftp-file-version-alist))
5443 ;; (let* ((base-versions
5444 ;; (concat (file-name-nondirectory name) ";"))
5445 ;; (bv-length (length base-versions))
5446 ;; (possibilities (file-name-all-completions
5447 ;; base-versions
5448 ;; (file-name-directory fn)))
5449 ;; (versions (mapcar
5450 ;; (lambda (arg)
5451 ;; (if (and (string-match
5452 ;; "[0-9]+$" arg bv-length)
5453 ;; (= (match-beginning 0) bv-length))
5454 ;; (string-to-int (substring arg bv-length))
5455 ;; 0))
5456 ;; possibilities)))
5457 ;; (if versions
5458 ;; (setq
5459 ;; ange-ftp-file-version-alist
5460 ;; (cons (cons fn versions)
5461 ;; ange-ftp-file-version-alist)))))))))
5463 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn)
5464 ;; (let* ((start-vn (string-match ";[0-9]+$" fn))
5465 ;; base-version-list)
5466 ;; (and start-vn
5467 ;; (setq base-version-list ; there was a base version to which
5468 ;; (assoc (substring fn 0 start-vn) ; this looks like a
5469 ;; ange-ftp-file-version-alist)) ; subversion
5470 ;; (not (memq (string-to-int (substring fn (1+ start-vn)))
5471 ;; base-version-list)) ; this one doesn't make the cut
5472 ;; (progn (beginning-of-line)
5473 ;; (delete-char 1)
5474 ;; (insert ange-ftp-trample-marker)))))
5476 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p)
5477 ;; (let ((dired-kept-versions 1)
5478 ;; (kept-old-versions 0)
5479 ;; marker msg)
5480 ;; (if unflag-p
5481 ;; (setq marker ?\040 msg "Unflagging")
5482 ;; (setq marker dired-del-marker msg "Cleaning"))
5483 ;; (ange-ftp-dired-vms-clean-directory nil marker msg)))
5485 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist)
5486 ;; (setq ange-ftp-dired-flag-backup-files-alist
5487 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files)
5488 ;; ange-ftp-dired-flag-backup-files-alist)))
5490 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches)
5491 ;; (let ((file (dired-get-filename 'no-dir))
5492 ;; bak)
5493 ;; (if (and (string-match ";[0-9]+$" file)
5494 ;; ;; Find most recent previous version.
5495 ;; (let ((root (substring file 0 (match-beginning 0)))
5496 ;; (ver
5497 ;; (string-to-int (substring file (1+ (match-beginning 0)))))
5498 ;; found)
5499 ;; (setq ver (1- ver))
5500 ;; (while (and (> ver 0) (not found))
5501 ;; (setq bak (concat root ";" (int-to-string ver)))
5502 ;; (and (file-exists-p bak) (setq found t))
5503 ;; (setq ver (1- ver)))
5504 ;; found))
5505 ;; (if switches
5506 ;; (diff (expand-file-name bak) (expand-file-name file) switches)
5507 ;; (diff (expand-file-name bak) (expand-file-name file)))
5508 ;; (error "No previous version found for %s" file))))
5510 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist)
5511 ;; (setq ange-ftp-dired-backup-diff-alist
5512 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff)
5513 ;; ange-ftp-dired-backup-diff-alist)))
5516 ;;;; ------------------------------------------------------------
5517 ;;;; MTS support
5518 ;;;; ------------------------------------------------------------
5521 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from
5522 ;; MTS to UNIX-ish.
5523 (defun ange-ftp-fix-name-for-mts (name &optional reverse)
5524 (save-match-data
5525 (if reverse
5526 (if (string-match "\\`\\([^:]+:\\)?\\(.*\\)\\'" name)
5527 (let (acct file)
5528 (setq acct (match-string 1 name))
5529 (setq file (match-string 2 name))
5530 (concat (and acct (concat "/" acct "/"))
5531 file))
5532 (error "name %s didn't match" name))
5533 (if (string-match "\\`/\\([^:]+:\\)/\\(.*\\)\\'" name)
5534 (concat (match-string 1 name) (match-string 2 name))
5535 ;; Let's hope that mts will recognize it anyway.
5536 name))))
5538 (or (assq 'mts ange-ftp-fix-name-func-alist)
5539 (setq ange-ftp-fix-name-func-alist
5540 (cons '(mts . ange-ftp-fix-name-for-mts)
5541 ange-ftp-fix-name-func-alist)))
5543 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing.
5544 ;; Remember that there are no directories in MTS.
5545 (defun ange-ftp-fix-dir-name-for-mts (dir-name)
5546 (if (string-equal dir-name "/")
5547 (error "Cannot get listing for fictitious \"/\" directory")
5548 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name)))
5549 (cond
5550 ((string-equal dir-name "")
5551 "?")
5552 ((string-match ":\\'" dir-name)
5553 (concat dir-name "?"))
5554 (dir-name))))) ; It's just a single file.
5556 (or (assq 'mts ange-ftp-fix-dir-name-func-alist)
5557 (setq ange-ftp-fix-dir-name-func-alist
5558 (cons '(mts . ange-ftp-fix-dir-name-for-mts)
5559 ange-ftp-fix-dir-name-func-alist)))
5561 (or (memq 'mts ange-ftp-dumb-host-types)
5562 (setq ange-ftp-dumb-host-types
5563 (cons 'mts ange-ftp-dumb-host-types)))
5565 (defvar ange-ftp-mts-host-regexp nil)
5567 ;; Return non-nil if HOST is running MTS.
5568 (defun ange-ftp-mts-host (host)
5569 (and ange-ftp-mts-host-regexp
5570 (string-match-p ange-ftp-mts-host-regexp host)))
5572 ;; Parse the current buffer which is assumed to be in mts ftp dir format.
5573 (defun ange-ftp-parse-mts-listing ()
5574 (let ((tbl (make-hash-table :test 'equal)))
5575 (goto-char (point-min))
5576 (save-match-data
5577 (while (re-search-forward directory-listing-before-filename-regexp nil t)
5578 (end-of-line)
5579 (skip-chars-backward " ")
5580 (let ((end (point)))
5581 (skip-chars-backward "-A-Z0-9_.!")
5582 (puthash (buffer-substring (point) end) nil tbl))
5583 (forward-line 1)))
5584 ;; Don't need to bother with ..
5585 (puthash "." t tbl)
5586 tbl))
5588 (add-to-list 'ange-ftp-parse-list-func-alist
5589 '(mts . ange-ftp-parse-mts-listing))
5591 (defun ange-ftp-add-mts-host (host)
5592 "Mark HOST as the name of a machine running MTS."
5593 (interactive
5594 (list (read-string "Host: "
5595 (let ((name (or (buffer-file-name) default-directory)))
5596 (and name (car (ange-ftp-ftp-name name)))))))
5597 (if (not (ange-ftp-mts-host host))
5598 (setq ange-ftp-mts-host-regexp
5599 (concat "^" (regexp-quote host) "$"
5600 (and ange-ftp-mts-host-regexp "\\|")
5601 ange-ftp-mts-host-regexp)
5602 ange-ftp-host-cache nil)))
5604 ;;; Tree dired support:
5606 ;;;; There aren't too many systems left that use MTS. This dired support will
5607 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems
5608 ;;;; implement ftp in the same way. If not, it might be necessary to make the
5609 ;;;; following more flexible.
5611 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol)
5612 ;; "In dired, move to first char of filename on this line.
5613 ;;Returns position (point) or nil if no filename on this line."
5614 ;; ;; This is the MTS version.
5615 ;; (or eol (setq eol (progn (end-of-line) (point))))
5616 ;; (beginning-of-line)
5617 ;; (if (re-search-forward
5618 ;; ange-ftp-date-regexp eol t)
5619 ;; (progn
5620 ;; (skip-chars-forward " ") ; Eat blanks after date
5621 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year
5622 ;; (skip-chars-forward " " eol) ; one space before filename
5623 ;; ;; When listing an account other than the users own account it appends
5624 ;; ;; ACCT: to the beginning of the filename. Skip over this.
5625 ;; (and (looking-at "[A-Z0-9_.]+:")
5626 ;; (goto-char (match-end 0)))
5627 ;; (point))
5628 ;; (if raise-error
5629 ;; (error "No file on this line")
5630 ;; nil)))
5632 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist)
5633 ;; (setq ange-ftp-dired-move-to-filename-alist
5634 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename)
5635 ;; ange-ftp-dired-move-to-filename-alist)))
5637 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol)
5638 ;; ;; Assumes point is at beginning of filename.
5639 ;; ;; So, it should be called only after (dired-move-to-filename t).
5640 ;; ;; On failure, signals an error or returns nil.
5641 ;; ;; This is the MTS version.
5642 ;; (let (opoint hidden case-fold-search)
5643 ;; (setq opoint (point)
5644 ;; eol (line-end-position)
5645 ;; hidden (and selective-display
5646 ;; (save-excursion (search-forward "\r" eol t))))
5647 ;; (if hidden
5648 ;; nil
5649 ;; (skip-chars-forward "-A-Z0-9._!" eol))
5650 ;; (or no-error
5651 ;; (not (eq opoint (point)))
5652 ;; (error
5653 ;; (if hidden
5654 ;; (substitute-command-keys
5655 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5656 ;; "No file on this line")))
5657 ;; (if (eq opoint (point))
5658 ;; nil
5659 ;; (point))))
5661 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist)
5662 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5663 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename)
5664 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5666 ;;;; ------------------------------------------------------------
5667 ;;;; CMS support
5668 ;;;; ------------------------------------------------------------
5670 ;; Since CMS doesn't have any full file name syntax, we have to fudge
5671 ;; things with cd's. We actually send too many cd's, but it's dangerous
5672 ;; to try to remember the current minidisk, because if the connection
5673 ;; is closed and needs to be reopened, we will find ourselves back in
5674 ;; the default minidisk. This is fairly likely since CMS ftp servers
5675 ;; usually close the connection after 5 minutes of inactivity.
5677 ;; Have I got the filename character set right?
5679 (defun ange-ftp-fix-name-for-cms (name &optional reverse)
5680 (save-match-data
5681 (if reverse
5682 ;; Since we only convert output from a pwd in this direction,
5683 ;; we'll assume that it's a minidisk, and make it into a
5684 ;; directory file name. Note that the expand-dir-hashtable
5685 ;; stores directories without the trailing /. Is this
5686 ;; consistent?
5687 (concat "/" name)
5688 (if (string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'"
5689 name)
5690 (let ((minidisk (match-string 1 name)))
5691 (if (match-beginning 2)
5692 (let ((file (match-string 2 name))
5693 (cmd (concat "cd " minidisk))
5695 ;; Note that host and user are bound in the call
5696 ;; to ange-ftp-send-cmd
5697 (proc (ange-ftp-get-process ange-ftp-this-host
5698 ange-ftp-this-user)))
5700 ;; Must use ange-ftp-raw-send-cmd here to avoid
5701 ;; an infinite loop.
5702 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg))
5703 file
5704 ;; failed... try ONCE more.
5705 (setq proc (ange-ftp-get-process ange-ftp-this-host
5706 ange-ftp-this-user))
5707 (let ((result (ange-ftp-raw-send-cmd proc cmd
5708 ange-ftp-this-msg)))
5709 (if (car result)
5710 file
5711 ;; failed. give up.
5712 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5713 (format "cd to minidisk %s failed: %s"
5714 minidisk (cdr result)))))))
5715 ;; return the minidisk
5716 minidisk))
5717 (error "Invalid CMS filename")))))
5719 (or (assq 'cms ange-ftp-fix-name-func-alist)
5720 (setq ange-ftp-fix-name-func-alist
5721 (cons '(cms . ange-ftp-fix-name-for-cms)
5722 ange-ftp-fix-name-func-alist)))
5724 (or (memq 'cms ange-ftp-dumb-host-types)
5725 (setq ange-ftp-dumb-host-types
5726 (cons 'cms ange-ftp-dumb-host-types)))
5728 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing.
5729 (defun ange-ftp-fix-dir-name-for-cms (dir-name)
5730 (cond
5731 ((string-equal "/" dir-name)
5732 (error "Cannot get listing for fictitious \"/\" directory"))
5733 ((string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" dir-name)
5734 (let* ((minidisk (match-string 1 dir-name))
5735 ;; host and user are bound in the call to ange-ftp-send-cmd
5736 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user))
5737 (cmd (concat "cd " minidisk))
5738 (file (if (match-beginning 2)
5739 ;; it's a single file
5740 (match-string 2 dir-name)
5741 ;; use the wild-card
5742 "*")))
5743 (if (car (ange-ftp-raw-send-cmd proc cmd))
5744 file
5745 ;; try again...
5746 (setq proc (ange-ftp-get-process ange-ftp-this-host
5747 ange-ftp-this-user))
5748 (let ((result (ange-ftp-raw-send-cmd proc cmd)))
5749 (if (car result)
5750 file
5751 ;; give up
5752 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5753 (format "cd to minidisk %s failed: %s"
5754 minidisk (cdr result))))))))
5755 (t (error "Invalid CMS file name"))))
5757 (or (assq 'cms ange-ftp-fix-dir-name-func-alist)
5758 (setq ange-ftp-fix-dir-name-func-alist
5759 (cons '(cms . ange-ftp-fix-dir-name-for-cms)
5760 ange-ftp-fix-dir-name-func-alist)))
5762 (defvar ange-ftp-cms-host-regexp nil
5763 "Regular expression to match hosts running the CMS operating system.")
5765 ;; Return non-nil if HOST is running CMS.
5766 (defun ange-ftp-cms-host (host)
5767 (and ange-ftp-cms-host-regexp
5768 (string-match-p ange-ftp-cms-host-regexp host)))
5770 (defun ange-ftp-add-cms-host (host)
5771 "Mark HOST as the name of a CMS host."
5772 (interactive
5773 (list (read-string "Host: "
5774 (let ((name (or (buffer-file-name) default-directory)))
5775 (and name (car (ange-ftp-ftp-name name)))))))
5776 (if (not (ange-ftp-cms-host host))
5777 (setq ange-ftp-cms-host-regexp
5778 (concat "^" (regexp-quote host) "$"
5779 (and ange-ftp-cms-host-regexp "\\|")
5780 ange-ftp-cms-host-regexp)
5781 ange-ftp-host-cache nil)))
5783 (defun ange-ftp-parse-cms-listing ()
5784 ;; Parse the current buffer which is assumed to be a CMS directory listing.
5785 ;; If we succeed in getting a listing, then we will assume that the minidisk
5786 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work
5787 ;; because ange-ftp doesn't know that the root hashtable has only part of
5788 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't
5789 ;; exist. It would be nice if completion worked for minidisks, as we
5790 ;; discover them.
5791 ; (let* ((dir-file (directory-file-name file))
5792 ; (root (file-name-directory dir-file))
5793 ; (minidisk (ange-ftp-get-file-part dir-file))
5794 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable)))
5795 ; (if root-tbl
5796 ; (puthash minidisk t root-tbl)
5797 ; (setq root-tbl (ange-ftp-make-hashtable))
5798 ; (puthash minidisk t root-tbl)
5799 ; (puthash "." t root-tbl)
5800 ; (ange-ftp-set-files root root-tbl)))
5801 ;; Now do the usual parsing
5802 (let ((tbl (make-hash-table :test 'equal)))
5803 (goto-char (point-min))
5804 (save-match-data
5805 (while
5806 (re-search-forward
5807 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t)
5808 (puthash (concat (match-string 1) "." (match-string 2)) nil tbl)
5809 (forward-line 1))
5810 (puthash "." t tbl))
5811 tbl))
5813 (add-to-list 'ange-ftp-parse-list-func-alist
5814 '(cms . ange-ftp-parse-cms-listing))
5816 ;;;;; Tree dired support:
5818 ;;(defconst ange-ftp-dired-cms-re-exe
5819 ;; "^. [-A-Z0-9$_]+ +EXEC "
5820 ;; "Regular expression to use to search for CMS executables.")
5822 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist)
5823 ;; (setq ange-ftp-dired-re-exe-alist
5824 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe)
5825 ;; ange-ftp-dired-re-exe-alist)))
5828 ;;(defun ange-ftp-dired-cms-insert-headerline (dir)
5829 ;; ;; CMS has no total line, so we insert a blank line for
5830 ;; ;; aesthetics.
5831 ;; (insert "\n")
5832 ;; (forward-char -1)
5833 ;; (ange-ftp-real-dired-insert-headerline dir))
5835 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist)
5836 ;; (setq ange-ftp-dired-insert-headerline-alist
5837 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline)
5838 ;; ange-ftp-dired-insert-headerline-alist)))
5840 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol)
5841 ;; "In dired, move to the first char of filename on this line."
5842 ;; ;; This is the CMS version.
5843 ;; (or eol (setq eol (progn (end-of-line) (point))))
5844 ;; (let (case-fold-search)
5845 ;; (beginning-of-line)
5846 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t)
5847 ;; (goto-char (1+ (match-beginning 0)))
5848 ;; (if raise-error
5849 ;; (error "No file on this line")
5850 ;; nil))))
5852 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist)
5853 ;; (setq ange-ftp-dired-move-to-filename-alist
5854 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename)
5855 ;; ange-ftp-dired-move-to-filename-alist)))
5857 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol)
5858 ;; ;; Assumes point is at beginning of filename.
5859 ;; ;; So, it should be called only after (dired-move-to-filename t).
5860 ;; ;; case-fold-search must be nil, at least for VMS.
5861 ;; ;; On failure, signals an error or returns nil.
5862 ;; ;; This is the CMS version.
5863 ;; (let ((opoint (point))
5864 ;; case-fold-search hidden)
5865 ;; (or eol (setq eol (line-end-position)))
5866 ;; (setq hidden (and selective-display
5867 ;; (save-excursion
5868 ;; (search-forward "\r" eol t))))
5869 ;; (if hidden
5870 ;; (if no-error
5871 ;; nil
5872 ;; (error
5873 ;; (substitute-command-keys
5874 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
5875 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5876 ;; (skip-chars-forward " " eol)
5877 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5878 ;; (if (eq opoint (point))
5879 ;; (if no-error
5880 ;; nil
5881 ;; (error "No file on this line"))
5882 ;; (point)))))
5884 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist)
5885 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5886 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename)
5887 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5889 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse)
5890 (if (string-match "-Z\\'" name)
5891 (list nil (substring name 0 -2))
5892 (list t (concat name "-Z"))))
5894 (or (assq 'cms ange-ftp-make-compressed-filename-alist)
5895 (setq ange-ftp-make-compressed-filename-alist
5896 (cons '(cms . ange-ftp-cms-make-compressed-filename)
5897 ange-ftp-make-compressed-filename-alist)))
5899 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep)
5900 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep)))
5901 ;; (and name
5902 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name)
5903 ;; (concat (substring name 0 (match-end 1))
5904 ;; "."
5905 ;; (substring name (match-beginning 2) (match-end 2)))
5906 ;; name))))
5908 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist)
5909 ;; (setq ange-ftp-dired-get-filename-alist
5910 ;; (cons '(cms . ange-ftp-dired-cms-get-filename)
5911 ;; ange-ftp-dired-get-filename-alist)))
5913 ;;;; ------------------------------------------------------------
5914 ;;;; BS2000 support
5915 ;;;; ------------------------------------------------------------
5917 ;; There seems to be an error with regexps. '-' has to be the first
5918 ;; character inside of the square brackets.
5919 (defconst ange-ftp-bs2000-short-filename-regexp
5920 "[-A-Z0-9$#@.]*[A-Z][-A-Z0-9$#@.]*"
5921 "Regular expression to match for a valid short BS2000 file name.")
5923 (defconst ange-ftp-bs2000-fix-name-regexp-reverse
5924 (concat
5925 "^\\(" ange-ftp-bs2000-filename-pubset-regexp "\\)?"
5926 "\\(" ange-ftp-bs2000-filename-username-regexp "\\)?"
5927 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
5928 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
5930 (defconst ange-ftp-bs2000-fix-name-regexp
5931 (concat
5932 "/?\\(" ange-ftp-bs2000-filename-pubset-regexp "/\\)?"
5933 "\\(\\$[A-Z0-9]*/\\)?"
5934 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
5935 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
5937 (defcustom ange-ftp-bs2000-special-prefix
5939 "Prefix used for filenames starting with '#' or '@'."
5940 :group 'ange-ftp
5941 :type 'string)
5943 ;; Convert NAME from UNIX-ish to BS2000. If REVERSE given then convert from
5944 ;; BS2000 to UNIX-ish.
5945 (defun ange-ftp-fix-name-for-bs2000 (name &optional reverse)
5946 (save-match-data
5947 (if reverse
5948 (if (string-match
5949 ange-ftp-bs2000-fix-name-regexp-reverse
5950 name)
5951 (let ((pubset (if (match-beginning 1)
5952 (substring name 0 (match-end 1))))
5953 (userid (if (match-beginning 2)
5954 (substring name
5955 (match-beginning 2)
5956 (1- (match-end 2)))))
5957 (filename (if (match-beginning 3)
5958 (substring name (match-beginning 3)))))
5959 (concat
5961 ;; we have to insert "_/" here to prevent expand-file-name to
5962 ;; interpret BS2000 pubsets as the special escape prefix:
5963 (and pubset (concat "_/" pubset "/"))
5964 (and userid (concat userid "/"))
5965 filename))
5966 (error "name %s didn't match" name))
5967 ;; and here we (maybe) have to remove the inserted "_/" 'cause
5968 ;; of our prevention of the special escape prefix above:
5969 (if (string-match (concat "^/_/") name)
5970 (setq name (substring name 2)))
5971 (if (string-match
5972 ange-ftp-bs2000-fix-name-regexp
5973 name)
5974 (let ((pubset (if (match-beginning 1)
5975 (substring name
5976 (match-beginning 1)
5977 (1- (match-end 1)))))
5978 (userid (if (match-beginning 2)
5979 (substring name
5980 (match-beginning 2)
5981 (1- (match-end 2)))))
5982 (filename (if (match-beginning 3)
5983 (substring name (match-beginning 3)))))
5984 (if (and (boundp 'filename)
5985 (stringp filename)
5986 (string-match "[#@].+" filename))
5987 (setq filename (concat ange-ftp-bs2000-special-prefix
5988 (substring filename 1))))
5989 (upcase
5990 (concat
5991 pubset
5992 (and userid (concat userid "."))
5993 ;; change every '/' in filename to a '.', normally not neccessary
5994 (and filename
5995 (subst-char-in-string ?/ ?. filename)))))
5996 ;; Let's hope that BS2000 recognize this anyway:
5997 name))))
5999 (or (assq 'bs2000 ange-ftp-fix-name-func-alist)
6000 (setq ange-ftp-fix-name-func-alist
6001 (cons '(bs2000 . ange-ftp-fix-name-for-bs2000)
6002 ange-ftp-fix-name-func-alist)))
6004 ;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing.
6005 ;; Remember that there are no directories in BS2000.
6006 (defun ange-ftp-fix-dir-name-for-bs2000 (dir-name)
6007 (if (string-equal dir-name "/")
6008 "*" ;; Don't use an empty string here!
6009 (ange-ftp-fix-name-for-bs2000 dir-name)))
6011 (or (assq 'bs2000 ange-ftp-fix-dir-name-func-alist)
6012 (setq ange-ftp-fix-dir-name-func-alist
6013 (cons '(bs2000 . ange-ftp-fix-dir-name-for-bs2000)
6014 ange-ftp-fix-dir-name-func-alist)))
6016 (or (memq 'bs2000 ange-ftp-dumb-host-types)
6017 (setq ange-ftp-dumb-host-types
6018 (cons 'bs2000 ange-ftp-dumb-host-types)))
6020 (defvar ange-ftp-bs2000-host-regexp nil)
6021 (defvar ange-ftp-bs2000-posix-host-regexp nil)
6023 ;; Return non-nil if HOST is running BS2000.
6024 (defun ange-ftp-bs2000-host (host)
6025 (and ange-ftp-bs2000-host-regexp
6026 (string-match-p ange-ftp-bs2000-host-regexp host)))
6027 ;; Return non-nil if HOST is running BS2000 with POSIX subsystem.
6028 (defun ange-ftp-bs2000-posix-host (host)
6029 (and ange-ftp-bs2000-posix-host-regexp
6030 (string-match-p ange-ftp-bs2000-posix-host-regexp host)))
6032 (defun ange-ftp-add-bs2000-host (host)
6033 "Mark HOST as the name of a machine running BS2000."
6034 (interactive
6035 (list (read-string "Host: "
6036 (let ((name (or (buffer-file-name) default-directory)))
6037 (and name (car (ange-ftp-ftp-name name)))))))
6038 (if (not (ange-ftp-bs2000-host host))
6039 (setq ange-ftp-bs2000-host-regexp
6040 (concat "^" (regexp-quote host) "$"
6041 (and ange-ftp-bs2000-host-regexp "\\|")
6042 ange-ftp-bs2000-host-regexp)
6043 ange-ftp-host-cache nil)))
6045 (defun ange-ftp-add-bs2000-posix-host (host)
6046 "Mark HOST as the name of a machine running BS2000 with POSIX subsystem."
6047 (interactive
6048 (list (read-string "Host: "
6049 (let ((name (or (buffer-file-name) default-directory)))
6050 (and name (car (ange-ftp-ftp-name name)))))))
6051 (if (not (ange-ftp-bs2000-posix-host host))
6052 (setq ange-ftp-bs2000-posix-host-regexp
6053 (concat "^" (regexp-quote host) "$"
6054 (and ange-ftp-bs2000-posix-host-regexp "\\|")
6055 ange-ftp-bs2000-posix-host-regexp)
6056 ange-ftp-host-cache nil))
6057 ;; Install CD hook to cd to posix on connecting:
6058 (add-hook 'ange-ftp-process-startup-hook 'ange-ftp-bs2000-cd-to-posix)
6059 host)
6061 (defconst ange-ftp-bs2000-filename-regexp
6062 (concat
6063 "\\(" ange-ftp-bs2000-filename-prefix-regexp "\\)?"
6064 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)")
6065 "Regular expression to match for a valid BS2000 file name.")
6067 (defcustom ange-ftp-bs2000-additional-pubsets
6069 "*List of additional pubsets available to all users."
6070 :group 'ange-ftp
6071 :type '(repeat string))
6073 ;; These parsing functions are as general as possible because the syntax
6074 ;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that
6075 ;; the BS2000 filename syntax is so rigid.
6077 ;; Extract the next filename from a BS2000 dired-like listing.
6078 (defun ange-ftp-parse-bs2000-filename ()
6079 (if (re-search-forward ange-ftp-bs2000-filename-regexp nil t)
6080 (match-string 2)))
6082 ;; Parse the current buffer which is assumed to be in (some) BS2000 FTP dir
6083 ;; format, and return a hashtable as the result.
6084 (defun ange-ftp-parse-bs2000-listing ()
6085 (let ((tbl (make-hash-table :test 'equal))
6086 pubset
6087 file)
6088 ;; get current pubset
6089 (goto-char (point-min))
6090 (if (re-search-forward ange-ftp-bs2000-filename-pubset-regexp nil t)
6091 (setq pubset (match-string 0)))
6092 ;; add files to hashtable
6093 (goto-char (point-min))
6094 (save-match-data
6095 (while (setq file (ange-ftp-parse-bs2000-filename))
6096 (puthash file nil tbl)))
6097 ;; add . and ..
6098 (puthash "." t tbl)
6099 (puthash ".." t tbl)
6100 ;; add all additional pubsets, if not listing one of them
6101 (if (not (member pubset ange-ftp-bs2000-additional-pubsets))
6102 (mapc (lambda (pubset) (puthash pubset t tbl))
6103 ange-ftp-bs2000-additional-pubsets))
6104 tbl))
6106 (add-to-list 'ange-ftp-parse-list-func-alist
6107 '(bs2000 . ange-ftp-parse-bs2000-listing))
6109 (defun ange-ftp-bs2000-cd-to-posix ()
6110 "cd to POSIX subsystem if the current host matches
6111 `ange-ftp-bs2000-posix-host-regexp'. All BS2000 hosts with POSIX subsystem
6112 MUST BE EXPLICITLY SET with `ange-ftp-add-bs2000-posix-host' for they cannot
6113 be recognized automatically (they are all valid BS2000 hosts too)."
6114 (if (and ange-ftp-this-host (ange-ftp-bs2000-posix-host ange-ftp-this-host))
6115 (progn
6116 ;; change to POSIX:
6117 ; (ange-ftp-raw-send-cmd proc "cd %POSIX")
6118 (ange-ftp-cd ange-ftp-this-host ange-ftp-this-user "%POSIX")
6119 ;; put new home directory in the expand-dir hashtable.
6120 ;; `ange-ftp-this-host' and `ange-ftp-this-user' are bound in
6121 ;; ange-ftp-get-process.
6122 (puthash (concat ange-ftp-this-host "/" ange-ftp-this-user "/~")
6123 (car (ange-ftp-get-pwd ange-ftp-this-host ange-ftp-this-user))
6124 ange-ftp-expand-dir-hashtable))))
6126 ;; Not available yet:
6127 ;; ange-ftp-bs2000-delete-file-entry
6128 ;; ange-ftp-bs2000-add-file-entry
6129 ;; ange-ftp-bs2000-file-name-as-directory
6130 ;; ange-ftp-bs2000-make-compressed-filename
6131 ;; ange-ftp-bs2000-file-name-sans-versions
6133 ;;;; ------------------------------------------------------------
6134 ;;;; Finally provide package.
6135 ;;;; ------------------------------------------------------------
6137 (provide 'ange-ftp)
6139 ;;; ange-ftp.el ends here