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