Backslash cleanup in Elisp source files
[emacs.git] / lisp / net / ange-ftp.el
blob4f7fa3b8f394fc6d94aad493e798d1aab48cb113
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs
3 ;; Copyright (C) 1989-1996, 1998, 2000-2015 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 <http://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 either e-mail
534 ;; the above author, or send a message to the ange-ftp-lovers mailing list
535 ;; below. Ideas and constructive comments are especially welcome.
537 ;; ange-ftp-lovers:
539 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All
540 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss
541 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to
542 ;; the mailing list.
544 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the
545 ;; list, please mail one of the following addresses:
547 ;; ange-ftp-lovers-request@hplb.hpl.hp.com
549 ;; Please don't forget the -request part.
551 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the
552 ;; following addresses:
554 ;; ange-ftp-lovers@hplb.hpl.hp.com
556 ;; Alternatively, there is a mailing list that only gets announcements of new
557 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be
558 ;; subscribed to by e-mailing to the -request address as above. Please make
559 ;; it clear in the request which mailing list you wish to join.
561 ;; -----------------------------------------------------------
562 ;; Technical information on this package:
563 ;; -----------------------------------------------------------
565 ;; ange-ftp works by putting a handler on file-name-handler-alist
566 ;; which is called by many primitives, and a few non-primitives,
567 ;; whenever they see a file name of the appropriate sort.
569 ;; Checklist for adding non-UNIX support for TYPE
571 ;; The following functions may need TYPE versions:
572 ;; (not all functions will be needed for every OS)
574 ;; ange-ftp-fix-name-for-TYPE
575 ;; ange-ftp-fix-dir-name-for-TYPE
576 ;; ange-ftp-TYPE-host
577 ;; ange-ftp-TYPE-add-host
578 ;; ange-ftp-parse-TYPE-listing
579 ;; ange-ftp-TYPE-delete-file-entry
580 ;; ange-ftp-TYPE-add-file-entry
581 ;; ange-ftp-TYPE-file-name-as-directory
582 ;; ange-ftp-TYPE-make-compressed-filename
583 ;; ange-ftp-TYPE-file-name-sans-versions
585 ;; Variables:
587 ;; ange-ftp-TYPE-host-regexp
588 ;; May need to add TYPE to ange-ftp-dumb-host-types
590 ;; Check the following functions for OS dependent coding:
592 ;; ange-ftp-host-type
593 ;; ange-ftp-guess-host-type
594 ;; ange-ftp-allow-child-lookup
596 ;; Host type conventions:
598 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type
599 ;; (mostly) follow the following conventions for remote host types. At
600 ;; least, I think that future code should try to follow these conventions,
601 ;; and the current code should eventually be made compliant.
603 ;; nil = local host type, whatever that is (probably unix).
604 ;; Think nil as in "not a remote host". This value is used by
605 ;; ange-ftp-dired-host-type for local buffers.
607 ;; t = a remote host of unknown type. Think t as in true, it's remote.
608 ;; Currently, `unix' is used as the default remote host type.
609 ;; Maybe we should use t.
611 ;; TYPE = a remote host of TYPE type.
613 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing
614 ;; program called list. This is currently only used for Unix
615 ;; dl (descriptive listings), when ange-ftp-dired-host-type
616 ;; is set to `unix:dl'.
618 ;; Bug report codes:
620 ;; Because of their naive faith in this code, there are certain situations
621 ;; which the writers of this program believe could never happen. However,
622 ;; being realists they have put calls to `error' in the program at these
623 ;; points. These errors provide a code, which is an integer, greater than 1.
624 ;; To aid debugging. the error codes, and the functions in which they reside
625 ;; are listed below.
627 ;; 1: See ange-ftp-ls
630 ;; -----------------------------------------------------------
631 ;; Hall of fame:
632 ;; -----------------------------------------------------------
634 ;; Thanks to Roland McGrath for improving the filename syntax handling,
635 ;; for suggesting many enhancements and for numerous cleanups to the code.
637 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways.
639 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and
640 ;; dired / shell auto-loading.
642 ;; Thanks to Sebastian Kremer for dired support and for many ideas and
643 ;; bugfixes.
645 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support,
646 ;; VOS support, and hostname completion.
648 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help
649 ;; with file-name expansion, efficiency worries, stylistic concerns and many
650 ;; bugfixes.
652 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS,
653 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and
654 ;; auto-recognition of the host type.
656 ;; Thanks to Dave Smith who wrote the info file for ange-ftp.
658 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping
659 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann,
660 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill
661 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay
662 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others
663 ;; whose names I've forgotten who have helped to debug and fix problems with
664 ;; ange-ftp.el.
666 ;;; Code:
668 (require 'comint)
670 ;;;; ------------------------------------------------------------
671 ;;;; User customization variables.
672 ;;;; ------------------------------------------------------------
674 (defgroup ange-ftp nil
675 "Accessing remote files and directories using FTP."
676 :group 'files
677 :group 'comm
678 :prefix "ange-ftp-")
680 (defcustom ange-ftp-name-format
681 '("\\`/\\(\\([^/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4))
682 "Format of a fully expanded remote file name.
684 This is a list of the form \(REGEXP HOST USER NAME),
685 where REGEXP is a regular expression matching
686 the full remote name, and HOST, USER, and NAME are the numbers of
687 parenthesized expressions in REGEXP for the components (in that order)."
688 :group 'ange-ftp
689 :type '(list (regexp :tag "Name regexp")
690 (integer :tag "Host group")
691 (integer :tag "User group")
692 (integer :tag "Name group")))
694 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of
695 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs.
696 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out.
698 (defvar ange-ftp-multi-msgs
699 "^150-\\|^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-"
700 "Regular expression matching the start of a multiline FTP reply.")
702 (defvar ange-ftp-good-msgs
703 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark\\|^Remote directory:"
704 "Regular expression matching FTP \"success\" messages.")
706 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT.
707 ;; Also CMS machines use a multiline 550- reply to say that you
708 ;; don't have write permission. ange-ftp gets into multi-line skip
709 ;; mode and hangs. Have it ignore 550- instead. It will then barf
710 ;; when it gets the 550 line, as it should.
712 ;; RFC2228 "FTP Security Extensions" defines extensions to the FTP
713 ;; protocol which involve the client requesting particular
714 ;; authentication methods (typically) at connection establishment. Non
715 ;; security-aware FTP servers should respond to this with a 500 code,
716 ;; which we ignore.
717 (defcustom ange-ftp-skip-msgs
718 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|"
719 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|"
720 "^Data connection \\|"
721 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|"
722 "^500 .*AUTH\\|^KERBEROS\\|"
723 "^500 This security scheme is not implemented\\|"
724 "^504 Unknown security mechanism\\|"
725 "^530 Please login with USER and PASS\\|" ; non kerberized vsFTPd
726 "^534 Kerberos Authentication not enabled\\|"
727 "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT\\|^500 .*EPSV")
728 "Regular expression matching FTP messages that can be ignored."
729 :group 'ange-ftp
730 :version "24.4" ; add EPSV
731 :type 'regexp)
733 (defcustom ange-ftp-fatal-msgs
734 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|"
735 "^No control connection\\|unknown host\\|^lost connection")
736 "Regular expression matching FTP messages that indicate serious errors.
738 These mean that the FTP process should be (or already has been) killed."
739 :group 'ange-ftp
740 :type 'regexp)
742 (defcustom ange-ftp-potential-error-msgs
743 ;; On Mac OS X we sometimes get things like:
745 ;; ftp> open ftp.nluug.nl
746 ;; Trying 2001:610:1:80aa:192:87:102:36...
747 ;; ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host
748 ;; Trying 192.87.102.36...
749 ;; Connected to ftp.nluug.nl.
750 "^ftp: connect to address .*: No route to host"
751 "Regular expression matching FTP messages that can indicate serious errors.
752 These mean that something went wrong, but they may be followed by more
753 messages indicating that the error was somehow corrected."
754 :group 'ange-ftp
755 :type 'regexp)
757 (defcustom ange-ftp-gateway-fatal-msgs
758 "No route to host\\|Connection closed\\|No such host\\|Login incorrect"
759 "Regular expression matching login failure messages from rlogin/telnet."
760 :group 'ange-ftp
761 :type 'regexp)
763 (defcustom ange-ftp-xfer-size-msgs
764 "^150 .* connection for .* (\\([0-9]+\\) bytes)"
765 "Regular expression used to determine the number of bytes in a FTP transfer."
766 :group 'ange-ftp
767 :type 'regexp)
769 (defcustom ange-ftp-tmp-name-template
770 (expand-file-name "ange-ftp" temporary-file-directory)
771 "Template used to create temporary files."
772 :group 'ange-ftp
773 :type 'directory)
775 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp"
776 "Template used to create temporary files when FTP-ing through a gateway.
778 Files starting with this prefix need to be accessible from BOTH the local
779 machine and the gateway machine, and need to have the SAME name on both
780 machines, that is, /tmp is probably NOT what you want, since that is rarely
781 cross-mounted."
782 :group 'ange-ftp
783 :type 'directory)
785 (defcustom ange-ftp-netrc-filename "~/.netrc"
786 "File in .netrc format to search for passwords."
787 :group 'ange-ftp
788 :type 'file)
790 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt)
791 "If non-nil avoid checking permissions on the .netrc file."
792 :group 'ange-ftp
793 :type 'boolean)
795 (defcustom ange-ftp-default-user nil
796 "User name to use when none is specified in a file name.
798 If non-nil but not a string, you are prompted for the name.
799 If nil, the value of `ange-ftp-netrc-default-user' is used.
800 If that is nil too, then your login name is used.
802 Once a connection to a given host has been initiated, the user name
803 and password information for that host are cached and re-used by
804 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values,
805 since setting `ange-ftp-default-user' directly does not affect
806 the cached information."
807 :group 'ange-ftp
808 :type '(choice (const :tag "Default" nil)
809 string
810 (other :tag "Prompt" t)))
812 (defcustom ange-ftp-netrc-default-user nil
813 "Alternate default user name to use when none is specified.
815 This variable is set from the `default' command in your `.netrc' file,
816 if there is one."
817 :group 'ange-ftp
818 :type '(choice (const :tag "Default" nil)
819 string))
821 (defcustom ange-ftp-default-password nil
822 "Password to use when the user name equals `ange-ftp-default-user'."
823 :group 'ange-ftp
824 :type '(choice (const :tag "Default" nil)
825 string))
827 (defcustom ange-ftp-default-account nil
828 "Account to use when the user name equals `ange-ftp-default-user'."
829 :group 'ange-ftp
830 :type '(choice (const :tag "Default" nil)
831 string))
833 (defcustom ange-ftp-netrc-default-password nil
834 "Password to use when the user name equals `ange-ftp-netrc-default-user'."
835 :group 'ange-ftp
836 :type '(choice (const :tag "Default" nil)
837 string))
839 (defcustom ange-ftp-netrc-default-account nil
840 "Account to use when the user name equals `ange-ftp-netrc-default-user'."
841 :group 'ange-ftp
842 :type '(choice (const :tag "Default" nil)
843 string))
845 (defcustom ange-ftp-generate-anonymous-password t
846 "If t, use value of `user-mail-address' as password for anonymous FTP.
848 If a string, then use that string as the password.
849 If nil, prompt the user for a password."
850 :group 'ange-ftp
851 :type '(choice (const :tag "Prompt" nil)
852 string
853 (other :tag "User address" t)))
855 (defcustom ange-ftp-dumb-unix-host-regexp nil
856 "If non-nil, regexp matching hosts on which `dir' command lists directory."
857 :group 'ange-ftp
858 :type '(choice (const :tag "Default" nil)
859 string))
861 (defcustom ange-ftp-binary-file-name-regexp ""
862 "If a file matches this regexp then it is transferred in binary mode."
863 :group 'ange-ftp
864 :type 'regexp
865 :version "24.1")
867 (defcustom ange-ftp-gateway-host nil
868 "Name of host to use as gateway machine when local FTP isn't possible."
869 :group 'ange-ftp
870 :type '(choice (const :tag "Default" nil)
871 string))
873 (defcustom ange-ftp-local-host-regexp ".*"
874 "Regexp selecting hosts which can be reached directly with FTP.
876 For other hosts the FTP process is started on `ange-ftp-gateway-host'
877 instead, and/or reached via `ange-ftp-gateway-ftp-program-name'."
878 :group 'ange-ftp
879 :type 'regexp)
881 (defcustom ange-ftp-gateway-program-interactive nil
882 "If non-nil then the gateway program should give a shell prompt.
884 Both telnet and rlogin do something like this."
885 :group 'ange-ftp
886 :type 'boolean)
888 (defcustom ange-ftp-gateway-program remote-shell-program
889 "Name of program to spawn a shell on the gateway machine.
891 Valid candidates are rsh (remsh on some systems), telnet and rlogin.
892 See also the gateway variable above."
893 :group 'ange-ftp
894 :type '(choice (const "rsh")
895 (const "telnet")
896 (const "rlogin")
897 string))
899 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *"
900 "Regexp matching prompt after complete login sequence on gateway machine.
902 A match for this means the shell is now awaiting input. Make this regexp as
903 strict as possible; it shouldn't match *anything* at all except the user's
904 initial prompt. The above string will fail under most SUN-3's since it
905 matches the login banner."
906 :group 'ange-ftp
907 :type 'regexp)
909 (defvar ange-ftp-gateway-setup-term-command
910 (if (eq system-type 'hpux)
911 "stty -onlcr -echo\n"
912 "stty -echo nl\n")
913 "Set up terminal after logging in to the gateway machine.
914 This command should stop the terminal from echoing each command, and
915 arrange to strip out trailing ^M characters.")
917 (defcustom ange-ftp-smart-gateway nil
918 "Non-nil says the FTP gateway (proxy) or gateway FTP program is smart.
920 Don't bother telnetting, etc., already connected to desired host transparently,
921 or just issue a user@host command in case `ange-ftp-gateway-host' is non-nil.
922 See also `ange-ftp-smart-gateway-port'."
923 :group 'ange-ftp
924 :type 'boolean)
926 (defcustom ange-ftp-smart-gateway-port "21"
927 "Port on gateway machine to use when smart gateway is in operation."
928 :group 'ange-ftp
929 :type 'string)
931 (defcustom ange-ftp-send-hash t
932 "If non-nil, send the HASH command to the FTP client."
933 :group 'ange-ftp
934 :type 'boolean)
936 (defcustom ange-ftp-binary-hash-mark-size nil
937 "Default size, in bytes, between hash-marks when transferring a binary file.
938 If nil, this variable will be locally overridden if the FTP client outputs a
939 suitable response to the HASH command. If non-nil, this value takes
940 precedence over the local value."
941 :group 'ange-ftp
942 :type '(choice (const :tag "Overridden" nil)
943 integer))
945 (defcustom ange-ftp-ascii-hash-mark-size 1024
946 "Default size, in bytes, between hash-marks when transferring an ASCII file.
947 This variable is buffer-local and will be locally overridden if the FTP client
948 outputs a suitable response to the HASH command."
949 :group 'ange-ftp
950 :type 'integer)
952 (defcustom ange-ftp-process-verbose t
953 "If non-nil then be chatty about interaction with the FTP process."
954 :group 'ange-ftp
955 :type 'boolean)
957 (defcustom ange-ftp-ftp-program-name "ftp"
958 "Name of FTP program to run."
959 :group 'ange-ftp
960 :type 'string)
962 (defcustom ange-ftp-gateway-ftp-program-name "ftp"
963 "Name of FTP program to run when accessing non-local hosts.
965 Some AT&T folks claim to use something called `pftp' here."
966 :group 'ange-ftp
967 :type 'string)
969 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v")
970 "A list of arguments passed to the FTP program when started."
971 :group 'ange-ftp
972 :type '(repeat string))
974 (defcustom ange-ftp-nslookup-program nil
975 "If non-nil, this is a string naming the nslookup program."
976 :group 'ange-ftp
977 :type '(choice (const :tag "None" nil)
978 string))
980 (defcustom ange-ftp-make-backup-files ()
981 "Non-nil means make backup files for \"magic\" remote files."
982 :group 'ange-ftp
983 :type 'boolean)
985 (defcustom ange-ftp-retry-time 5
986 "Number of seconds to wait before retry if file or listing doesn't arrive.
987 This might need to be increased for very slow connections."
988 :group 'ange-ftp
989 :type 'integer)
991 (defcustom ange-ftp-auto-save 0
992 "If 1, allow ange-ftp files to be auto-saved.
993 If 0, inhibit auto-saving of ange-ftp files.
994 Don't use any other value."
995 :group 'ange-ftp
996 :type '(choice (const :tag "Suppress" 0)
997 (const :tag "Allow" 1)))
999 (defcustom ange-ftp-try-passive-mode nil
1000 "If t, try to use passive mode in FTP, if the client program supports it."
1001 :group 'ange-ftp
1002 :type 'boolean
1003 :version "21.1")
1005 (defcustom ange-ftp-passive-host-alist nil
1006 "Alist of FTP servers that need \"passive\" mode.
1007 Each element is of the form (HOSTNAME . SETTING).
1008 HOSTNAME is a regular expression to match the FTP server host name(s).
1009 SETTING is \"on\" to turn passive mode on, \"off\" to turn it off,
1010 or nil meaning don't change it."
1011 :group 'ange-ftp
1012 :type '(repeat (cons regexp (choice (const :tag "On" "on")
1013 (const :tag "Off" "off")
1014 (const :tag "Don't change" nil))))
1015 :version "22.1")
1017 ;;;; ------------------------------------------------------------
1018 ;;;; Hash table support.
1019 ;;;; ------------------------------------------------------------
1021 (require 'backquote)
1023 (defun ange-ftp-hash-entry-exists-p (key tbl)
1024 "Return whether there is an association for KEY in table TBL."
1025 (and tbl (not (eq (gethash key tbl 'unknown) 'unknown))))
1027 (defun ange-ftp-hash-table-keys (tbl)
1028 "Return a sorted list of all the active keys in table TBL, as strings."
1029 ;; (let ((keys nil))
1030 ;; (maphash (lambda (k v) (push k keys)) tbl)
1031 ;; (sort keys 'string-lessp))
1032 (sort (all-completions "" tbl) 'string-lessp))
1034 ;;;; ------------------------------------------------------------
1035 ;;;; Internal variables.
1036 ;;;; ------------------------------------------------------------
1038 (defvar ange-ftp-data-buffer-name " *ftp data*"
1039 "Buffer name to hold directory listing data received from FTP process.")
1041 (defvar ange-ftp-netrc-modtime nil
1042 "Last modified time of the netrc file from file-attributes.")
1044 (defvar ange-ftp-user-hashtable (make-hash-table :test 'equal)
1045 "Hash table holding associations between HOST, USER pairs.")
1047 (defvar ange-ftp-passwd-hashtable (make-hash-table :test 'equal)
1048 "Mapping between a HOST, USER pair and a PASSWORD for them.
1049 All HOST values should be in lower case.")
1051 (defvar ange-ftp-account-hashtable (make-hash-table :test 'equal)
1052 "Mapping between a HOST, USER pair and an ACCOUNT password for them.")
1054 (defvar ange-ftp-files-hashtable (make-hash-table :test 'equal :size 97)
1055 "Hash table for storing directories and their respective files.")
1057 (defvar ange-ftp-inodes-hashtable (make-hash-table :test 'equal :size 97)
1058 "Hash table for storing file names and their \"inode numbers\".")
1060 (defvar ange-ftp-next-inode-number 1
1061 "Next \"inode number\" value. We give each file name a unique number.")
1063 (defvar ange-ftp-ls-cache-lsargs nil
1064 "Last set of args used by `ange-ftp-ls'.")
1066 (defvar ange-ftp-ls-cache-file nil
1067 "Last file passed to `ange-ftp-ls'.")
1069 (defvar ange-ftp-ls-cache-res nil
1070 "Last result returned from `ange-ftp-ls'.")
1072 (defconst ange-ftp-expand-dir-hashtable (make-hash-table :test 'equal))
1074 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):")
1076 ;; These are local variables in each FTP process buffer.
1077 (defvar ange-ftp-hash-mark-unit nil)
1078 (defvar ange-ftp-hash-mark-count nil)
1079 (defvar ange-ftp-xfer-size nil)
1080 (defvar ange-ftp-process-string nil)
1081 (defvar ange-ftp-process-result-line nil)
1082 (defvar ange-ftp-pending-error-line nil)
1083 (defvar ange-ftp-process-busy nil)
1084 (defvar ange-ftp-process-result nil)
1085 (defvar ange-ftp-process-multi-skip nil)
1086 (defvar ange-ftp-process-msg nil)
1087 (defvar ange-ftp-process-continue nil)
1088 (defvar ange-ftp-last-percent nil)
1090 ;; These variables are bound by one function and examined by another.
1091 ;; Leave them void globally for error checking.
1092 (defvar ange-ftp-this-file)
1093 (defvar ange-ftp-this-dir)
1094 (defvar ange-ftp-this-user)
1095 (defvar ange-ftp-this-host)
1096 (defvar ange-ftp-this-msg)
1097 (defvar ange-ftp-completion-ignored-pattern)
1098 (defvar ange-ftp-trample-marker)
1100 ;; New error symbols.
1101 (define-error 'ftp-error nil 'file-error) ;"FTP error"
1103 ;;; ------------------------------------------------------------
1104 ;;; Enhanced message support.
1105 ;;; ------------------------------------------------------------
1107 (defun ange-ftp-message (fmt &rest args)
1108 "Display message in echo area, but indicate if truncated.
1109 Args are as in `message': a format string, plus arguments to be formatted."
1110 (let ((msg (apply #'format-message fmt args))
1111 (max (window-width (minibuffer-window))))
1112 (if noninteractive
1114 (if (>= (length msg) max)
1115 ;; Take just the last MAX - 3 chars of the string.
1116 (setq msg (concat "> " (substring msg (- 3 max)))))
1117 (message "%s" msg))))
1119 (defun ange-ftp-abbreviate-filename (file &optional new)
1120 "Abbreviate the file name FILE relative to the `default-directory'.
1121 If the optional parameter NEW is given and the non-directory parts match,
1122 only return the directory part of FILE."
1123 (save-match-data
1124 (if (and default-directory
1125 (string-match (concat "\\`"
1126 (regexp-quote default-directory)
1127 ".") file))
1128 (setq file (substring file (1- (match-end 0)))))
1129 (if (and new
1130 (string-equal (file-name-nondirectory file)
1131 (file-name-nondirectory new)))
1132 (setq file (file-name-directory file)))
1133 (or file "./")))
1135 ;;;; ------------------------------------------------------------
1136 ;;;; User / Host mapping support.
1137 ;;;; ------------------------------------------------------------
1139 (defun ange-ftp-set-user (host user)
1140 "For a given HOST, set or change the default USER."
1141 (interactive "sHost: \nsUser: ")
1142 (puthash host user ange-ftp-user-hashtable))
1144 (defun ange-ftp-get-user (host)
1145 "Given a HOST, return the default user."
1146 (ange-ftp-parse-netrc)
1147 (let ((user (gethash host ange-ftp-user-hashtable)))
1148 (or user
1149 (prog1
1150 (setq user
1151 (cond ((stringp ange-ftp-default-user)
1152 ;; We have a default name. Use it.
1153 ange-ftp-default-user)
1154 (ange-ftp-default-user
1155 ;; Ask the user.
1156 (let ((enable-recursive-minibuffers t))
1157 (read-string (format "User for %s: " host)
1158 (user-login-name))))
1159 (ange-ftp-netrc-default-user)
1160 ;; Default to the user's login name.
1162 (user-login-name))))
1163 (ange-ftp-set-user host user)))))
1165 ;;;; ------------------------------------------------------------
1166 ;;;; Password support.
1167 ;;;; ------------------------------------------------------------
1169 (defmacro ange-ftp-generate-passwd-key (host user)
1170 `(and (stringp ,host) (stringp ,user) (concat (downcase ,host) "/" ,user)))
1172 (defmacro ange-ftp-lookup-passwd (host user)
1173 `(gethash (ange-ftp-generate-passwd-key ,host ,user)
1174 ange-ftp-passwd-hashtable))
1176 (defun ange-ftp-set-passwd (host user password)
1177 "For a given HOST and USER, set or change the associated PASSWORD."
1178 (interactive (list (read-string "Host: ")
1179 (read-string "User: ")
1180 (read-passwd "Password: ")))
1181 (puthash (ange-ftp-generate-passwd-key host user)
1182 password ange-ftp-passwd-hashtable))
1184 (defun ange-ftp-get-host-with-passwd (user)
1185 "Given a USER, return a host we know the password for."
1186 (ange-ftp-parse-netrc)
1187 (catch 'found-one
1188 (maphash
1189 (lambda (host val)
1190 (if (ange-ftp-lookup-passwd host user) (throw 'found-one host)))
1191 ange-ftp-user-hashtable)
1192 (save-match-data
1193 (maphash
1194 (lambda (key value)
1195 (if (string-match "\\`[^/]*\\(/\\).*\\'" key)
1196 (let ((host (substring key 0 (match-beginning 1))))
1197 (if (and (string-equal user (substring key (match-end 1)))
1198 value)
1199 (throw 'found-one host)))))
1200 ange-ftp-passwd-hashtable))
1201 nil))
1203 (defun ange-ftp-get-passwd (host user)
1204 "Return the password for specified HOST and USER, asking user if necessary."
1205 ;; If `non-essential' is non-nil, don't ask for a password. It will
1206 ;; be caught in Tramp.
1207 (when non-essential
1208 (throw 'non-essential 'non-essential))
1210 (ange-ftp-parse-netrc)
1212 ;; look up password in the hash table first; user might have overridden the
1213 ;; defaults.
1214 (cond ((ange-ftp-lookup-passwd host user))
1216 ;; See if default user and password set.
1217 ((and (stringp ange-ftp-default-user)
1218 ange-ftp-default-password
1219 (string-equal user ange-ftp-default-user))
1220 ange-ftp-default-password)
1222 ;; See if default user and password set from .netrc file.
1223 ((and (stringp ange-ftp-netrc-default-user)
1224 ange-ftp-netrc-default-password
1225 (string-equal user ange-ftp-netrc-default-user))
1226 ange-ftp-netrc-default-password)
1228 ;; anonymous ftp password is handled specially since there is an
1229 ;; unwritten rule about how that is used on the Internet.
1230 ((and (or (string-equal user "anonymous")
1231 (string-equal user "ftp"))
1232 ange-ftp-generate-anonymous-password)
1233 (if (stringp ange-ftp-generate-anonymous-password)
1234 ange-ftp-generate-anonymous-password
1235 user-mail-address))
1237 ;; see if same user has logged in to other hosts; if so then prompt
1238 ;; with the password that was used there.
1240 (let* ((enable-recursive-minibuffers t)
1241 (other (ange-ftp-get-host-with-passwd user))
1242 (passwd (if other
1244 ;; found another machine with the same user.
1245 ;; Try that account.
1246 (read-passwd
1247 (format "passwd for %s@%s (default same as %s@%s): "
1248 user host user other)
1250 (ange-ftp-lookup-passwd other user))
1252 ;; I give up. Ask the user for the password.
1253 (read-passwd
1254 (format "Password for %s@%s: " user host)))))
1255 (ange-ftp-set-passwd host user passwd)
1256 passwd))))
1258 ;;;; ------------------------------------------------------------
1259 ;;;; Account support
1260 ;;;; ------------------------------------------------------------
1262 ;; Account passwords must be either specified in the .netrc file, or set
1263 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't
1264 ;; check to see whether the FTP process is actually prompting for an account
1265 ;; password.
1267 (defun ange-ftp-set-account (host user account)
1268 "For a given HOST and USER, set or change the associated ACCOUNT password."
1269 (interactive (list (read-string "Host: ")
1270 (read-string "User: ")
1271 (read-passwd "Account password: ")))
1272 (puthash (ange-ftp-generate-passwd-key host user)
1273 account ange-ftp-account-hashtable))
1275 (defun ange-ftp-get-account (host user)
1276 "Given a HOST and USER, return the FTP account."
1277 (ange-ftp-parse-netrc)
1278 (or (gethash (ange-ftp-generate-passwd-key host user)
1279 ange-ftp-account-hashtable)
1280 (and (stringp ange-ftp-default-user)
1281 (string-equal user ange-ftp-default-user)
1282 ange-ftp-default-account)
1283 (and (stringp ange-ftp-netrc-default-user)
1284 (string-equal user ange-ftp-netrc-default-user)
1285 ange-ftp-netrc-default-account)))
1287 ;;;; ------------------------------------------------------------
1288 ;;;; ~/.netrc support
1289 ;;;; ------------------------------------------------------------
1291 (defun ange-ftp-chase-symlinks (file)
1292 "Return the filename that FILE references, following all symbolic links."
1293 (let (temp)
1294 (while (setq temp (ange-ftp-real-file-symlink-p file))
1295 (setq file
1296 (if (file-name-absolute-p temp)
1297 temp
1298 ;; Wouldn't `expand-file-name' be better than `concat' ?
1299 ;; It would fail when `a/b/..' != `a', tho. --Stef
1300 (concat (file-name-directory file) temp)))))
1301 file)
1303 ;; Move along current line looking for the value of the TOKEN.
1304 ;; Valid separators between TOKEN and its value are commas and
1305 ;; whitespace. Second arg LIMIT is a limit for the search.
1307 (defun ange-ftp-parse-netrc-token (token limit)
1308 (if (search-forward token limit t)
1309 (let (beg)
1310 (skip-chars-forward ", \t\r\n" limit)
1311 (if (eq (following-char) ?\") ;quoted token value
1312 (progn (forward-char 1)
1313 (setq beg (point))
1314 (skip-chars-forward "^\"" limit)
1315 (forward-char 1)
1316 (buffer-substring beg (1- (point))))
1317 (setq beg (point))
1318 (skip-chars-forward "^, \t\r\n" limit)
1319 (buffer-substring beg (point))))))
1321 ;; Extract the values for the tokens `machine', `login',
1322 ;; `password' and `account' in the current buffer. If successful,
1323 ;; record the information found.
1325 (defun ange-ftp-parse-netrc-group ()
1326 (let ((start (point))
1327 (end (save-excursion
1328 (if (looking-at "machine\\>")
1329 ;; Skip `machine' and the machine name that follows.
1330 (progn
1331 (skip-chars-forward "^ \t\r\n")
1332 (skip-chars-forward " \t\r\n")
1333 (skip-chars-forward "^ \t\r\n"))
1334 ;; Skip `default'.
1335 (skip-chars-forward "^ \t\r\n"))
1336 ;; Find start of the next `machine' or `default'
1337 ;; or the end of the buffer.
1338 (if (re-search-forward "machine\\>\\|default\\>" nil t)
1339 (match-beginning 0)
1340 (point-max))))
1341 machine login password account)
1342 (setq machine (ange-ftp-parse-netrc-token "machine" end)
1343 login (ange-ftp-parse-netrc-token "login" end)
1344 password (ange-ftp-parse-netrc-token "password" end)
1345 account (ange-ftp-parse-netrc-token "account" end))
1346 (if (and machine login)
1347 ;; found a `machine` token.
1348 (progn
1349 (ange-ftp-set-user machine login)
1350 (ange-ftp-set-passwd machine login password)
1351 (and account
1352 (ange-ftp-set-account machine login account)))
1353 (goto-char start)
1354 (if (search-forward "default" end t)
1355 ;; found a `default' token
1356 (progn
1357 (setq login (ange-ftp-parse-netrc-token "login" end)
1358 password (ange-ftp-parse-netrc-token "password" end)
1359 account (ange-ftp-parse-netrc-token "account" end))
1360 (and login
1361 (setq ange-ftp-netrc-default-user login))
1362 (and password
1363 (setq ange-ftp-netrc-default-password password))
1364 (and account
1365 (setq ange-ftp-netrc-default-account account)))))
1366 (goto-char end)))
1368 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has
1369 ;; the correct permissions then extract the machine, login,
1370 ;; password and account information from within.
1372 (defun ange-ftp-parse-netrc ()
1373 ;; We set this before actually doing it to avoid the possibility
1374 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file.
1375 (interactive)
1376 (let (file attr)
1377 (let ((default-directory "/"))
1378 (setq file (ange-ftp-chase-symlinks
1379 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename)))
1380 (setq attr (ange-ftp-real-file-attributes file)))
1381 (if (and attr ; file exists.
1382 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed
1383 (save-match-data
1384 (if (or ange-ftp-disable-netrc-security-check
1385 (and (eq (nth 2 attr) (user-uid)) ; Same uids.
1386 (string-match ".r..------" (nth 8 attr))))
1387 (with-current-buffer
1388 ;; we are cheating a bit here. I'm trying to do the equivalent
1389 ;; of find-file on the .netrc file, but then nuke it afterwards.
1390 ;; with the bit of logic below we should be able to have
1391 ;; encrypted .netrc files.
1392 (generate-new-buffer "*ftp-.netrc*")
1393 (ange-ftp-real-insert-file-contents file)
1394 (setq buffer-file-name file)
1395 (setq default-directory (file-name-directory file))
1396 (normal-mode t)
1397 (run-hooks 'find-file-hook)
1398 (setq buffer-file-name nil)
1399 (goto-char (point-min))
1400 (while (search-forward-regexp "^[ \t]*#.*$" nil t)
1401 (replace-match ""))
1402 (goto-char (point-min))
1403 (skip-chars-forward " \t\r\n")
1404 (while (not (eobp))
1405 (ange-ftp-parse-netrc-group))
1406 (kill-buffer (current-buffer)))
1407 (ange-ftp-message "%s either not owned by you or badly protected."
1408 ange-ftp-netrc-filename)
1409 (sit-for 1))
1410 (setq ange-ftp-netrc-modtime (nth 5 attr))))))
1412 ;; Return a list of prefixes of the form 'user@host:' to be used when
1413 ;; completion is done in the root directory.
1415 (defun ange-ftp-generate-root-prefixes ()
1416 (ange-ftp-parse-netrc)
1417 (save-match-data
1418 (let (res)
1419 (maphash
1420 (lambda (key value)
1421 (if (string-match "\\`[^/]*\\(/\\).*\\'" key)
1422 (let ((host (substring key 0 (match-beginning 1)))
1423 (user (substring key (match-end 1))))
1424 (push (concat user "@" host ":") res))))
1425 ange-ftp-passwd-hashtable)
1426 (maphash
1427 (lambda (host user) (push (concat host ":") res))
1428 ange-ftp-user-hashtable)
1429 (or res (list nil)))))
1431 ;;;; ------------------------------------------------------------
1432 ;;;; Remote file name syntax support.
1433 ;;;; ------------------------------------------------------------
1435 (defmacro ange-ftp-ftp-name-component (n ns name)
1436 "Extract the Nth FTP file name component from NS."
1437 `(let ((elt (nth ,n ,ns)))
1438 (match-string elt ,name)))
1440 (defvar ange-ftp-ftp-name-arg "")
1441 (defvar ange-ftp-ftp-name-res nil)
1443 ;; Parse NAME according to `ange-ftp-name-format' (which see).
1444 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format.
1445 (defun ange-ftp-ftp-name (name)
1446 (if (string-equal name ange-ftp-ftp-name-arg)
1447 ange-ftp-ftp-name-res
1448 (setq ange-ftp-ftp-name-arg name
1449 ange-ftp-ftp-name-res
1450 (save-match-data
1451 (if (posix-string-match (car ange-ftp-name-format) name)
1452 (let* ((ns (cdr ange-ftp-name-format))
1453 (host (ange-ftp-ftp-name-component 0 ns name))
1454 (user (ange-ftp-ftp-name-component 1 ns name))
1455 (name (ange-ftp-ftp-name-component 2 ns name)))
1456 (if (zerop (length user))
1457 (setq user (ange-ftp-get-user host)))
1458 (list host user name))
1459 nil)))))
1461 ;; Take a FULLNAME that matches according to ange-ftp-name-format and
1462 ;; replace the name component with NAME.
1463 (defun ange-ftp-replace-name-component (fullname name)
1464 (save-match-data
1465 (if (posix-string-match (car ange-ftp-name-format) fullname)
1466 (let* ((ns (cdr ange-ftp-name-format))
1467 (elt (nth 2 ns)))
1468 (concat (substring fullname 0 (match-beginning elt))
1469 name
1470 (substring fullname (match-end elt)))))))
1472 ;;;; ------------------------------------------------------------
1473 ;;;; Miscellaneous utils.
1474 ;;;; ------------------------------------------------------------
1476 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap))
1477 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer)
1479 (defun ange-ftp-repaint-minibuffer ()
1480 "Clear any existing minibuffer message; let the minibuffer contents show."
1481 (message nil))
1483 ;; Return the name of the buffer that collects output from the ftp process
1484 ;; connected to the given HOST and USER pair.
1485 (defun ange-ftp-ftp-process-buffer (host user)
1486 (concat "*ftp " user "@" host "*"))
1488 ;; Display the last chunk of output from the ftp process for the given HOST
1489 ;; USER pair, and signal an error including MSG in the text.
1490 (defun ange-ftp-error (host user msg)
1491 (save-excursion ;; Prevent pop-to-buffer from changing current buffer.
1492 (let ((cur (selected-window))
1493 (pop-up-windows t))
1494 (pop-to-buffer
1495 (get-buffer-create
1496 (ange-ftp-ftp-process-buffer host user)))
1497 (goto-char (point-max))
1498 (select-window cur))
1499 (signal 'ftp-error (list (format "FTP Error: %s" msg)))))
1501 (defun ange-ftp-set-buffer-mode ()
1502 "Set correct modes for the current buffer if visiting a remote file."
1503 (if (and (stringp buffer-file-name)
1504 (ange-ftp-ftp-name buffer-file-name))
1505 (auto-save-mode ange-ftp-auto-save)))
1507 (defun ange-ftp-kill-ftp-process (&optional buffer)
1508 "Kill the FTP process associated with BUFFER (the current buffer, if nil).
1509 If the BUFFER's visited filename or `default-directory' is an FTP filename
1510 then kill the related FTP process."
1511 (interactive "bKill FTP process associated with buffer: ")
1512 (if (null buffer)
1513 (setq buffer (current-buffer))
1514 (setq buffer (get-buffer buffer)))
1515 (let ((file (or (buffer-file-name buffer)
1516 (with-current-buffer buffer default-directory))))
1517 (if file
1518 (let ((parsed (ange-ftp-ftp-name (expand-file-name file))))
1519 (if parsed
1520 (let ((host (nth 0 parsed))
1521 (user (nth 1 parsed)))
1522 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user)))))))))
1524 (defun ange-ftp-quote-string (string)
1525 "Quote any characters in STRING that may confuse the FTP process."
1526 ;; This is said to be wrong; ftp is said to need quoting only for ",
1527 ;; and that by doubling it. But experiment says UNIX-style kind of
1528 ;; quoting is correct when talking to ftp on GNU/Linux systems, and
1529 ;; W32-style kind of quoting on, yes, W32 systems.
1530 (if (stringp string)
1531 (shell-quote-argument string)
1532 ""))
1534 (defun ange-ftp-barf-if-not-directory (directory)
1535 (or (file-directory-p directory)
1536 (signal 'file-error
1537 (list "Opening directory"
1538 (if (file-exists-p directory)
1539 "Not a directory"
1540 "No such file or directory")
1541 directory))))
1543 ;;;; ------------------------------------------------------------
1544 ;;;; FTP process filter support.
1545 ;;;; ------------------------------------------------------------
1547 (defun ange-ftp-process-handle-line (line proc)
1548 "Look at the given LINE from the FTP process PROC.
1549 Try to categorize it into one of four categories:
1550 good, skip, fatal, or unknown."
1551 (cond ((string-match ange-ftp-xfer-size-msgs line)
1552 (setq ange-ftp-xfer-size
1553 (/ (string-to-number (match-string 1 line))
1554 1024)))
1555 ((string-match ange-ftp-skip-msgs line)
1557 ((string-match ange-ftp-good-msgs line)
1558 (setq ange-ftp-process-busy nil
1559 ange-ftp-process-result t
1560 ange-ftp-pending-error-line nil
1561 ange-ftp-process-result-line line))
1562 ;; Check this before checking for errors.
1563 ;; Otherwise the last line of these three seems to be an error:
1564 ;; 230-see a significant impact from the move. For those of you who can't
1565 ;; 230-use DNS to resolve hostnames and get an error message like
1566 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be...
1567 ((string-match ange-ftp-multi-msgs line)
1568 (setq ange-ftp-process-multi-skip t))
1569 ((string-match ange-ftp-potential-error-msgs line)
1570 ;; This looks like an error, but we have to keep reading the output
1571 ;; to see if it was fixed or not. E.g. it may indicate that IPv6
1572 ;; failed, but maybe a subsequent IPv4 fallback succeeded.
1573 (set (make-local-variable 'ange-ftp-pending-error-line) line)
1575 ((string-match ange-ftp-fatal-msgs line)
1576 (delete-process proc)
1577 (setq ange-ftp-process-busy nil
1578 ange-ftp-process-result-line line))
1579 (ange-ftp-process-multi-skip
1582 (setq ange-ftp-process-busy nil
1583 ange-ftp-process-result-line line))))
1585 (defun ange-ftp-set-xfer-size (host user bytes)
1586 "Set the size of the next FTP transfer in bytes."
1587 (let ((proc (ange-ftp-get-process host user)))
1588 (when proc
1589 (let ((buf (process-buffer proc)))
1590 (when buf
1591 (with-current-buffer buf
1592 (setq ange-ftp-xfer-size
1593 ;; For very large files, BYTES can be a float.
1594 (if (integerp bytes)
1595 (ash bytes -10)
1596 (/ bytes 1024)))))))))
1598 (defun ange-ftp-process-handle-hash (string)
1599 "Remove hash marks from STRING and display count so far."
1600 (setq string (concat (substring string 0 (match-beginning 0))
1601 (substring string (match-end 0)))
1602 ange-ftp-hash-mark-count (+ (- (match-end 0)
1603 (match-beginning 0))
1604 ange-ftp-hash-mark-count))
1605 (and ange-ftp-hash-mark-unit
1606 ange-ftp-process-msg
1607 ange-ftp-process-verbose
1608 (not (eq (selected-window) (minibuffer-window)))
1609 (not (boundp 'search-message)) ;screws up isearch otherwise
1610 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise
1611 (let ((kbytes (ash (* ange-ftp-hash-mark-unit
1612 ange-ftp-hash-mark-count)
1613 -6)))
1614 (if (zerop ange-ftp-xfer-size)
1615 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes)
1616 (let ((percent (floor (* 100.0 kbytes) ange-ftp-xfer-size)))
1617 ;; cut out the redisplay of identical %-age messages.
1618 (unless (eq percent ange-ftp-last-percent)
1619 (setq ange-ftp-last-percent percent)
1620 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))
1621 string)
1623 ;; Call the function specified by CONT. CONT can be either a function
1624 ;; or a list of a function and some args. The first two parameters
1625 ;; passed to the function will be RESULT and LINE. The remaining args
1626 ;; will be taken from CONT if a list was passed.
1628 (defun ange-ftp-call-cont (cont result line)
1629 (when cont
1630 (if (and (listp cont)
1631 (not (eq (car cont) 'lambda)))
1632 (apply (car cont) result line (cdr cont))
1633 (funcall cont result line))))
1635 ;; Build up a complete line of output from the ftp PROCESS and pass it
1636 ;; on to ange-ftp-process-handle-line to deal with.
1638 (defun ange-ftp-process-filter (proc str)
1639 ;; Eliminate nulls.
1640 (while (string-match "\000+" str)
1641 (setq str (replace-match "" nil nil str)))
1643 ;; see if the buffer is still around... it could have been deleted.
1644 (when (buffer-live-p (process-buffer proc))
1645 (with-current-buffer (process-buffer proc)
1647 ;; handle hash mark printing
1648 (and ange-ftp-process-busy
1649 (string-match "^#+$" str)
1650 (setq str (ange-ftp-process-handle-hash str)))
1651 (comint-output-filter proc str)
1652 ;; Replace STR by the result of the comint processing.
1653 (setq str (buffer-substring comint-last-output-start
1654 (process-mark proc)))
1655 (when ange-ftp-process-busy
1656 (setq ange-ftp-process-string (concat ange-ftp-process-string
1657 str))
1659 ;; if we gave an empty password to the USER command earlier
1660 ;; then we should send a null password now.
1661 (if (string-match "Password: *$" ange-ftp-process-string)
1662 (process-send-string proc "\n")))
1663 (while (and ange-ftp-process-busy
1664 (string-match "\n" ange-ftp-process-string))
1665 (let ((line (substring ange-ftp-process-string
1667 (match-beginning 0)))
1668 (seen-prompt nil))
1669 (setq ange-ftp-process-string (substring ange-ftp-process-string
1670 (match-end 0)))
1671 (while (string-match "\\`ftp> *" line)
1672 (setq seen-prompt t)
1673 (setq line (substring line (match-end 0))))
1674 (if (not (and seen-prompt ange-ftp-pending-error-line))
1675 (ange-ftp-process-handle-line line proc)
1676 ;; If we've seen a potential error message and it
1677 ;; hasn't been canceled by a good message before
1678 ;; seeing a prompt, then the error was real.
1679 (delete-process proc)
1680 (setq ange-ftp-process-busy nil
1681 ange-ftp-process-result-line ange-ftp-pending-error-line))))
1683 ;; has the ftp client finished? if so then do some clean-up
1684 ;; actions.
1685 (unless ange-ftp-process-busy
1686 ;; reset the xfer size
1687 (setq ange-ftp-xfer-size 0)
1689 ;; issue the "done" message since we've finished.
1690 (when (and ange-ftp-process-msg
1691 ange-ftp-process-verbose
1692 ange-ftp-process-result)
1693 (ange-ftp-message "%s...done" ange-ftp-process-msg)
1694 (ange-ftp-repaint-minibuffer)
1695 (setq ange-ftp-process-msg nil))
1697 ;; is there a continuation we should be calling? if so,
1698 ;; we'd better call it, making sure we only call it once.
1699 (when ange-ftp-process-continue
1700 (let ((cont ange-ftp-process-continue))
1701 (setq ange-ftp-process-continue nil)
1702 (ange-ftp-call-cont cont
1703 ange-ftp-process-result
1704 ange-ftp-process-result-line)))))))
1706 (defun ange-ftp-process-sentinel (proc str)
1707 "When FTP process changes state, nuke all file-entries in cache."
1708 (let ((name (process-name proc)))
1709 (when (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name)
1710 (let ((user (match-string 1 name))
1711 (host (match-string 2 name)))
1712 (ange-ftp-wipe-file-entries host user))))
1713 (setq ange-ftp-ls-cache-file nil))
1715 ;;;; ------------------------------------------------------------
1716 ;;;; Gateway support.
1717 ;;;; ------------------------------------------------------------
1719 (defun ange-ftp-use-gateway-p (host)
1720 "Return whether to access this HOST via a normal (non-smart) gateway."
1721 ;; yes, I know that I could simplify the following expression, but it is
1722 ;; clearer (to me at least) this way.
1723 (and (not ange-ftp-smart-gateway)
1724 (not (string-match-p ange-ftp-local-host-regexp host))))
1726 (defun ange-ftp-use-smart-gateway-p (host)
1727 "Returns whether to access this HOST via a smart gateway."
1728 (and ange-ftp-smart-gateway
1729 (not (string-match-p ange-ftp-local-host-regexp host))))
1732 ;;; ------------------------------------------------------------
1733 ;;; Temporary file location and deletion...
1734 ;;; ------------------------------------------------------------
1736 (defun ange-ftp-make-tmp-name (host &optional suffix)
1737 "This routine will return the name of a new file."
1738 (make-temp-file (if (ange-ftp-use-gateway-p host)
1739 ange-ftp-gateway-tmp-name-template
1740 ange-ftp-tmp-name-template)
1741 nil suffix))
1743 (defun ange-ftp-del-tmp-name (filename)
1744 "Force to delete temporary file."
1745 (delete-file filename))
1748 ;;;; ------------------------------------------------------------
1749 ;;;; Interactive gateway program support.
1750 ;;;; ------------------------------------------------------------
1752 (defvar ange-ftp-gwp-running t)
1753 (defvar ange-ftp-gwp-status nil)
1755 (defun ange-ftp-gwp-sentinel (proc str)
1756 (setq ange-ftp-gwp-running nil))
1758 (defun ange-ftp-gwp-filter (proc str)
1759 (comint-output-filter proc str)
1760 (with-current-buffer (process-buffer proc)
1761 ;; Replace STR by the result of the comint processing.
1762 (setq str (buffer-substring comint-last-output-start (process-mark proc))))
1763 (cond ((string-match "login: *$" str)
1764 (process-send-string proc
1765 (concat
1766 (let ((ange-ftp-default-user t))
1767 (ange-ftp-get-user ange-ftp-gateway-host))
1768 "\n")))
1769 ((string-match "Password: *$" str)
1770 (process-send-string proc
1771 (concat
1772 (ange-ftp-get-passwd ange-ftp-gateway-host
1773 (ange-ftp-get-user
1774 ange-ftp-gateway-host))
1775 "\n")))
1776 ((string-match ange-ftp-gateway-fatal-msgs str)
1777 (delete-process proc)
1778 (setq ange-ftp-gwp-running nil))
1779 ((string-match ange-ftp-gateway-prompt-pattern str)
1780 (setq ange-ftp-gwp-running nil
1781 ange-ftp-gwp-status t))))
1783 (defun ange-ftp-gwp-start (host user name args)
1784 "Login to the gateway machine and fire up an FTP process."
1785 ;; If `non-essential' is non-nil, don't reopen a new connection. It
1786 ;; will be caught in Tramp.
1787 (when non-essential
1788 (throw 'non-essential 'non-essential))
1789 (let (;; It would be nice to make process-connection-type nil,
1790 ;; but that doesn't work: ftp never responds.
1791 ;; Can anyone find a fix for that?
1792 (proc (let ((process-connection-type t))
1793 (start-process name name
1794 ange-ftp-gateway-program
1795 ange-ftp-gateway-host)))
1796 (ftp (mapconcat 'identity args " ")))
1797 (set-process-query-on-exit-flag proc nil)
1798 (set-process-sentinel proc 'ange-ftp-gwp-sentinel)
1799 (set-process-filter proc 'ange-ftp-gwp-filter)
1800 (with-current-buffer (process-buffer proc)
1801 (goto-char (point-max))
1802 (set-marker (process-mark proc) (point)))
1803 (setq ange-ftp-gwp-running t
1804 ange-ftp-gwp-status nil)
1805 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host)
1806 (while ange-ftp-gwp-running ;perform login sequence
1807 (accept-process-output proc))
1808 (unless ange-ftp-gwp-status
1809 (ange-ftp-error host user "unable to login to gateway"))
1810 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host)
1811 (setq ange-ftp-gwp-running t
1812 ange-ftp-gwp-status nil)
1813 (process-send-string proc ange-ftp-gateway-setup-term-command)
1814 (while ange-ftp-gwp-running ;zap ^M's and double echoing.
1815 (accept-process-output proc))
1816 (unless ange-ftp-gwp-status
1817 (ange-ftp-error host user "unable to set terminal modes on gateway"))
1818 (setq ange-ftp-gwp-running t
1819 ange-ftp-gwp-status nil)
1820 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process
1821 proc))
1823 ;;;; ------------------------------------------------------------
1824 ;;;; Support for sending commands to the ftp process.
1825 ;;;; ------------------------------------------------------------
1827 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait)
1828 "Low-level routine to send the given FTP CMD to the FTP process PROC.
1829 MSG is an optional message to output before and after the command.
1830 If CONT is non-nil then it is either a function or a list of function
1831 and some arguments. The function will be called when the FTP command
1832 has completed.
1833 If CONT is nil then this routine will return (RESULT . LINE) where RESULT
1834 is whether the command was successful, and LINE is the line from the FTP
1835 process that caused the command to complete.
1836 If NOWAIT is given then the routine will return immediately the command has
1837 been queued with no result. CONT will still be called, however."
1838 (if (memq (process-status proc) '(run open))
1839 (with-current-buffer (process-buffer proc)
1840 (ange-ftp-wait-not-busy proc)
1841 (setq ange-ftp-process-string ""
1842 ange-ftp-process-result-line ""
1843 ange-ftp-process-busy t
1844 ange-ftp-process-result nil
1845 ange-ftp-process-multi-skip nil
1846 ange-ftp-process-msg msg
1847 ange-ftp-process-continue cont
1848 ange-ftp-hash-mark-count 0
1849 ange-ftp-last-percent -1
1850 cmd (concat cmd "\n"))
1851 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg))
1852 (goto-char (point-max))
1853 (move-marker comint-last-input-start (point))
1854 ;; don't insert the password into the buffer on the USER command.
1855 (save-match-data
1856 (if (string-match "\\`user \"[^\"]*\"" cmd)
1857 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n")
1858 (insert cmd)))
1859 (move-marker comint-last-input-end (point))
1860 (process-send-string proc cmd)
1861 (set-marker (process-mark proc) (point))
1862 (if nowait
1864 (ange-ftp-wait-not-busy proc)
1865 (if cont
1866 nil ;cont has already been called
1867 (cons ange-ftp-process-result ange-ftp-process-result-line))))))
1869 ;; Wait for the ange-ftp process PROC not to be busy.
1870 (defun ange-ftp-wait-not-busy (proc)
1871 (with-current-buffer (process-buffer proc)
1872 (condition-case nil
1873 ;; This is a kludge to let user quit in case ftp gets hung.
1874 ;; It matters because this function can be called from the filter.
1875 ;; It is bad to allow quitting in a filter, but getting hung
1876 ;; is worse. By binding quit-flag to nil, we might avoid
1877 ;; most of the probability of getting screwed because the user
1878 ;; wants to quit some command.
1879 (let ((quit-flag nil)
1880 (inhibit-quit nil))
1881 (while ange-ftp-process-busy
1882 (accept-process-output proc)))
1883 (quit
1884 ;; If the user does quit out of this,
1885 ;; kill the process. That stops any transfer in progress.
1886 ;; The next operation will open a new ftp connection.
1887 (delete-process proc)
1888 (signal 'quit nil)))))
1890 (defun ange-ftp-nslookup-host (hostname)
1891 "Attempt to resolve the given HOSTNAME using nslookup if possible."
1892 (interactive "sHost: ")
1893 (if ange-ftp-nslookup-program
1894 (let ((default-directory
1895 (if (file-accessible-directory-p default-directory)
1896 default-directory
1897 exec-directory))
1898 ;; It would be nice to make process-connection-type nil,
1899 ;; but that doesn't work: ftp never responds.
1900 ;; Can anyone find a fix for that?
1901 (proc (let ((process-connection-type t))
1902 (start-process " *nslookup*" " *nslookup*"
1903 ange-ftp-nslookup-program hostname)))
1904 (res hostname))
1905 (set-process-query-on-exit-flag proc nil)
1906 (with-current-buffer (process-buffer proc)
1907 (while (memq (process-status proc) '(run open))
1908 (accept-process-output proc))
1909 (goto-char (point-min))
1910 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t)
1911 (setq res (match-string 1)))
1912 (kill-buffer (current-buffer)))
1913 res)
1914 hostname))
1916 (defun ange-ftp-start-process (host user name)
1917 "Spawn a new FTP process ready to connect to machine HOST and give it NAME.
1918 If HOST is only FTP-able through a gateway machine then spawn a shell
1919 on the gateway machine to do the FTP instead."
1920 ;; If `non-essential' is non-nil, don't reopen a new connection. It
1921 ;; will be caught in Tramp.
1922 (when non-essential
1923 (throw 'non-essential 'non-essential))
1924 (let* ((use-gateway (ange-ftp-use-gateway-p host))
1925 (use-smart-ftp (and (not ange-ftp-gateway-host)
1926 (ange-ftp-use-smart-gateway-p host)))
1927 (ftp-prog (if (or use-gateway
1928 use-smart-ftp)
1929 ange-ftp-gateway-ftp-program-name
1930 ange-ftp-ftp-program-name))
1931 (args (append (list ftp-prog) ange-ftp-ftp-program-args))
1932 ;; Without the following binding, ange-ftp-start-process
1933 ;; recurses on file-accessible-directory-p, since it needs to
1934 ;; restart its process in order to determine anything about
1935 ;; default-directory.
1936 (file-name-handler-alist)
1937 (default-directory
1938 (if (file-accessible-directory-p default-directory)
1939 default-directory
1940 exec-directory))
1941 proc)
1942 ;; It would be nice to make process-connection-type nil,
1943 ;; but that doesn't work: ftp never responds.
1944 ;; Can anyone find a fix for that?
1945 (let ((process-connection-type t)
1946 ;; Copy this so we don't alter it permanently.
1947 (process-environment (copy-tree process-environment))
1948 (buffer (get-buffer-create name)))
1949 (with-current-buffer buffer
1950 (internal-ange-ftp-mode))
1951 ;; This tells GNU ftp not to output any fancy escape sequences.
1952 (setenv "TERM" "dumb")
1953 (if use-gateway
1954 (if ange-ftp-gateway-program-interactive
1955 (setq proc (ange-ftp-gwp-start host user name args))
1956 (setq proc (apply 'start-process name name
1957 (append (list ange-ftp-gateway-program
1958 ange-ftp-gateway-host)
1959 args))))
1960 (setq proc (apply 'start-process name name args))))
1961 (with-current-buffer (process-buffer proc)
1962 (goto-char (point-max))
1963 (set-marker (process-mark proc) (point)))
1964 (set-process-query-on-exit-flag proc nil)
1965 (set-process-sentinel proc 'ange-ftp-process-sentinel)
1966 (set-process-filter proc 'ange-ftp-process-filter)
1967 ;; On Windows, the standard ftp client buffers its output (because
1968 ;; stdout is a pipe handle) so the startup message may never appear:
1969 ;; `accept-process-output' at this point would hang indefinitely.
1970 ;; However, sending an innocuous command ("help foo") forces some
1971 ;; output that will be ignored, which is just as good. Once we
1972 ;; start sending normal commands, the output no longer appears to be
1973 ;; buffered, and everything works correctly. My guess is that the
1974 ;; output of interest is being sent to stderr which is not buffered.
1975 (when (eq system-type 'windows-nt)
1976 ;; force ftp output to be treated as DOS text, otherwise the
1977 ;; output of "help foo" confuses the EOL detection logic.
1978 (set-process-coding-system proc 'raw-text-dos)
1979 (process-send-string proc "help foo\n"))
1980 (accept-process-output proc) ;wait for ftp startup message
1981 proc))
1983 (define-derived-mode internal-ange-ftp-mode comint-mode "Internal Ange-ftp"
1984 "Major mode for interacting with the FTP process.
1986 \\{comint-mode-map}"
1987 (make-local-variable 'ange-ftp-process-string)
1988 (setq ange-ftp-process-string "")
1989 (make-local-variable 'ange-ftp-process-busy)
1990 (make-local-variable 'ange-ftp-process-result)
1991 (make-local-variable 'ange-ftp-process-msg)
1992 (make-local-variable 'ange-ftp-process-multi-skip)
1993 (make-local-variable 'ange-ftp-process-result-line)
1994 (make-local-variable 'ange-ftp-process-continue)
1995 (make-local-variable 'ange-ftp-hash-mark-count)
1996 (make-local-variable 'ange-ftp-binary-hash-mark-size)
1997 (make-local-variable 'ange-ftp-ascii-hash-mark-size)
1998 (make-local-variable 'ange-ftp-hash-mark-unit)
1999 (make-local-variable 'ange-ftp-xfer-size)
2000 (make-local-variable 'ange-ftp-last-percent)
2001 (setq ange-ftp-hash-mark-count 0)
2002 (setq ange-ftp-xfer-size 0)
2003 (setq ange-ftp-process-result-line "")
2004 (setq comint-prompt-regexp "^ftp> ")
2005 (make-local-variable 'comint-password-prompt-regexp)
2006 ;; This is a regexp that can't match anything.
2007 ;; ange-ftp has its own ways of handling passwords.
2008 (setq comint-password-prompt-regexp "\\`a\\`")
2009 (make-local-variable 'paragraph-start)
2010 (setq paragraph-start comint-prompt-regexp))
2012 (defcustom ange-ftp-raw-login nil
2013 "Use raw FTP commands for login, if account password is not nil.
2014 Some FTP implementations need this, e.g. ftp in NT 4.0."
2015 :group 'ange-ftp
2016 :version "21.3"
2017 :type 'boolean)
2019 (defun ange-ftp-smart-login (host user password account proc)
2020 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2021 PROC is the FTP-client's process. This routine uses the smart-gateway
2022 host specified in `ange-ftp-gateway-host'."
2023 (let ((result (ange-ftp-raw-send-cmd
2024 proc
2025 (format "open %s %s"
2026 (ange-ftp-nslookup-host ange-ftp-gateway-host)
2027 ange-ftp-smart-gateway-port)
2028 (format "Opening FTP connection to %s via %s"
2029 host
2030 ange-ftp-gateway-host))))
2031 (or (car result)
2032 (ange-ftp-error host user
2033 (concat "OPEN request failed: "
2034 (cdr result))))
2035 (setq result (ange-ftp-raw-send-cmd
2036 proc (format "user \"%s\"@%s %s %s"
2037 user
2038 (ange-ftp-nslookup-host host)
2039 password
2040 account)
2041 (format "Logging in as user %s@%s"
2042 user host)))
2043 (or (car result)
2044 (progn
2045 (ange-ftp-set-passwd host user nil) ; reset password
2046 (ange-ftp-set-account host user nil) ; reset account
2047 (ange-ftp-error host user
2048 (concat "USER request failed: "
2049 (cdr result)))))))
2051 (defun ange-ftp-normal-login (host user password account proc)
2052 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2053 PROC is the process to the FTP-client. HOST may have an optional
2054 suffix of the form #PORT to specify a non-default port."
2055 (save-match-data
2056 (string-match "\\`\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host)
2057 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host)))
2058 (port (match-string 3 host))
2059 (result (ange-ftp-raw-send-cmd
2060 proc
2061 (if port
2062 (format "open %s %s" nshost port)
2063 (format "open %s" nshost))
2064 (format "Opening FTP connection to %s" host))))
2065 (or (car result)
2066 (ange-ftp-error host user
2067 (concat "OPEN request failed: "
2068 (cdr result))))
2069 (if (not (and ange-ftp-raw-login (string< "" account)))
2070 (setq result (ange-ftp-raw-send-cmd
2071 proc
2072 (if (and (ange-ftp-use-smart-gateway-p host)
2073 ange-ftp-gateway-host)
2074 (format "user \"%s\"@%s %s %s"
2075 user nshost password account)
2076 (format "user \"%s\" %s %s" user password account))
2077 (format "Logging in as user %s@%s" user host)))
2078 (let ((good ange-ftp-good-msgs)
2079 (skip ange-ftp-skip-msgs))
2080 (setq ange-ftp-good-msgs (concat ange-ftp-good-msgs
2081 "\\|^331 \\|^332 "))
2082 (if (string-match (regexp-quote "\\|^331 ") ange-ftp-skip-msgs)
2083 (setq ange-ftp-skip-msgs
2084 (replace-match "" t t ange-ftp-skip-msgs)))
2085 (if (string-match (regexp-quote "\\|^332 ") ange-ftp-skip-msgs)
2086 (setq ange-ftp-skip-msgs
2087 (replace-match "" t t ange-ftp-skip-msgs)))
2088 (setq result (ange-ftp-raw-send-cmd
2089 proc
2090 (format "quote \"USER %s\"" user)
2091 (format "Logging in as user %s@%s" user host)))
2092 (and (car result)
2093 (setq result (ange-ftp-raw-send-cmd
2094 proc
2095 (format "quote \"PASS %s\"" password)
2096 (format "Logging in as user %s@%s" user host)))
2097 (and (car result)
2098 (setq result (ange-ftp-raw-send-cmd
2099 proc
2100 (format "quote \"ACCT %s\"" account)
2101 (format "Logging in as user %s@%s" user host)))
2103 (setq ange-ftp-good-msgs good
2104 ange-ftp-skip-msgs skip)))
2105 (or (car result)
2106 (progn
2107 (ange-ftp-set-passwd host user nil) ;reset password.
2108 (ange-ftp-set-account host user nil) ;reset account.
2109 (ange-ftp-error host user
2110 (concat "USER request failed: "
2111 (cdr result))))))))
2113 ;; ange@hplb.hpl.hp.com says this should not be changed.
2114 (defvar ange-ftp-hash-mark-msgs
2115 "[hH]ash mark [^0-9]*\\([0-9]+\\)"
2116 "Regexp matching the FTP client's output upon doing a HASH command.")
2118 (defun ange-ftp-guess-hash-mark-size (proc)
2119 (if ange-ftp-send-hash
2120 (with-current-buffer (process-buffer proc)
2121 (let* ((status (ange-ftp-raw-send-cmd proc "hash"))
2122 (line (cdr status)))
2123 (save-match-data
2124 (if (string-match ange-ftp-hash-mark-msgs line)
2125 (let ((size (string-to-number (match-string 1 line))))
2126 (setq ange-ftp-ascii-hash-mark-size size
2127 ange-ftp-hash-mark-unit (ash size -4))
2129 ;; if a default value for this is set, use that value.
2130 (or ange-ftp-binary-hash-mark-size
2131 (setq ange-ftp-binary-hash-mark-size size)))))))))
2133 (defvar ange-ftp-process-startup-hook nil)
2135 (defun ange-ftp-get-process (host user)
2136 "Return an FTP subprocess connected to HOST and logged in as USER.
2137 Create a new process if needed."
2138 (let* ((name (ange-ftp-ftp-process-buffer host user))
2139 (proc (get-process name)))
2140 (if (and proc (memq (process-status proc) '(run open)))
2141 proc
2142 ;; If `non-essential' is non-nil, don't reopen a new connection. It
2143 ;; will be caught in Tramp.
2144 (when non-essential
2145 (throw 'non-essential 'non-essential))
2147 ;; Must delete dead process so that new process can reuse the name.
2148 (if proc (delete-process proc))
2149 (let ((pass (ange-ftp-quote-string
2150 (ange-ftp-get-passwd host user)))
2151 (account (ange-ftp-quote-string
2152 (ange-ftp-get-account host user))))
2153 ;; grab a suitable process.
2154 (setq proc (ange-ftp-start-process host user name))
2156 ;; login to FTP server.
2157 (if (and (ange-ftp-use-smart-gateway-p host)
2158 ange-ftp-gateway-host)
2159 (ange-ftp-smart-login host user pass account proc)
2160 (ange-ftp-normal-login host user pass account proc))
2162 ;; Tell client to send back hash-marks as progress. It isn't usually
2163 ;; fatal if this command fails.
2164 (ange-ftp-guess-hash-mark-size proc)
2166 ;; Guess at the host type.
2167 (ange-ftp-guess-host-type host user)
2169 ;; Turn passive mode on or off as requested.
2170 (let* ((case-fold-search t)
2171 (passive
2172 (or (assoc-default host ange-ftp-passive-host-alist
2173 'string-match)
2174 (if ange-ftp-try-passive-mode "on"))))
2175 (if passive
2176 (ange-ftp-passive-mode proc passive)))
2178 ;; Run any user-specified hooks. Note that proc, host and user are
2179 ;; dynamically bound at this point.
2180 (let ((ange-ftp-this-user user)
2181 (ange-ftp-this-host host))
2182 (run-hooks 'ange-ftp-process-startup-hook)))
2183 proc)))
2185 (defun ange-ftp-passive-mode (proc on-or-off)
2186 (if (string-match (concat "Passive mode " on-or-off)
2187 (cdr (ange-ftp-raw-send-cmd
2188 proc (concat "passive " on-or-off)
2189 "Trying passive mode..." nil)))
2190 (ange-ftp-message (concat "Trying passive mode..." on-or-off))
2191 (error "Trying passive mode...failed")))
2193 ;; Variables for caching host and host-type
2194 (defvar ange-ftp-host-cache nil)
2195 (defvar ange-ftp-host-type-cache nil)
2197 ;; If ange-ftp-host-type is called with the optional user
2198 ;; argument, it will attempt to guess the host type by connecting
2199 ;; as user, if necessary. For efficiency, I have tried to give this
2200 ;; optional second argument only when necessary. Have I missed any calls
2201 ;; to ange-ftp-host-type where it should have been supplied?
2203 (defun ange-ftp-host-type (host &optional user)
2204 "Return a symbol which represents the type of the HOST given.
2205 If the optional argument USER is given, attempts to guess the
2206 host-type by logging in as USER."
2207 (cond ((null host) 'unix)
2208 ;; Return `unix' if HOST is nil, since that's the most vanilla
2209 ;; possible return value.
2210 ((eq host ange-ftp-host-cache)
2211 ange-ftp-host-type-cache)
2212 ;; Trigger an ftp connection, in case we need to guess at the host type.
2213 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache))
2214 ange-ftp-host-type-cache)
2216 (setq ange-ftp-host-cache host
2217 ange-ftp-host-type-cache
2218 (cond ((ange-ftp-dumb-unix-host host)
2219 'dumb-unix)
2220 ;; ((and (fboundp 'ange-ftp-vos-host)
2221 ;; (ange-ftp-vos-host host))
2222 ;; 'vos)
2223 ((and (fboundp 'ange-ftp-vms-host)
2224 (ange-ftp-vms-host host))
2225 'vms)
2226 ((and (fboundp 'ange-ftp-mts-host)
2227 (ange-ftp-mts-host host))
2228 'mts)
2229 ((and (fboundp 'ange-ftp-cms-host)
2230 (ange-ftp-cms-host host))
2231 'cms)
2232 ((and (fboundp 'ange-ftp-bs2000-posix-host)
2233 (ange-ftp-bs2000-posix-host host))
2234 'text-unix) ; POSIX is a non-ASCII Unix
2235 ((and (fboundp 'ange-ftp-bs2000-host)
2236 (ange-ftp-bs2000-host host))
2237 'bs2000)
2239 'unix))))))
2241 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and
2242 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
2243 ;; without sacrificing speed. Also, having separate variables
2244 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
2245 ;; set an alist to indicate that a host is of a given type. Even with
2246 ;; automatic host type recognition, setting a regexp is still a good idea
2247 ;; (for efficiency) if you log into a particular non-UNIX host frequently.
2249 (defvar ange-ftp-fix-name-func-alist nil
2250 "Alist saying how to convert file name to the host's syntax.
2251 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2252 change a UNIX file name into a name more suitable for a host of type TYPE.")
2254 (defvar ange-ftp-fix-dir-name-func-alist nil
2255 "Alist saying how to convert directory name to the host's syntax.
2256 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2257 change UNIX directory name into a directory name more suitable for a host
2258 of type TYPE.")
2260 ;; *** Perhaps the sense of this variable should be inverted, since there
2261 ;; *** is only 1 host type that can take ls-style listing options.
2262 (defvar ange-ftp-dumb-host-types '(dumb-unix)
2263 "List of host types that can't take UNIX ls-style listing options.")
2265 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait)
2266 "Find an FTP process connected to HOST logged in as USER and send it CMD.
2267 MSG is an optional status message to be output before and after issuing the
2268 command.
2269 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT
2270 and NOWAIT."
2271 ;; Handle conversion to remote file name syntax and remote ls option
2272 ;; capability.
2273 (let ((cmd0 (car cmd))
2274 (cmd1 (nth 1 cmd))
2275 (ange-ftp-this-user user)
2276 (ange-ftp-this-host host)
2277 (ange-ftp-this-msg msg)
2278 cmd2 cmd3 host-type fix-name-func result)
2280 (cond
2282 ;; pwd case (We don't care what host-type.)
2283 ((null cmd1))
2285 ;; cmd == 'dir "remote-name" "local-name" "ls-switches"
2286 ((progn
2287 (setq cmd2 (nth 2 cmd)
2288 host-type (ange-ftp-host-type host user))
2289 ;; This will trigger an FTP login, if one doesn't exist
2290 (eq cmd0 'dir))
2291 (setq cmd1 (funcall
2292 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist))
2293 'identity)
2294 cmd1)
2295 cmd3 (nth 3 cmd))
2296 ;; Need to deal with the HP-UX ftp bug. This should also allow us to
2297 ;; resolve symlinks to directories on SysV machines. (Sebastian will
2298 ;; be happy.)
2299 (and (eq host-type 'unix)
2300 (string-match "/\\'" cmd1)
2301 (not (string-match "R" cmd3))
2302 (setq cmd1 (concat cmd1 ".")))
2304 ;; Using "ls -flags foo" has several problems:
2305 ;; - if foo is a symlink, we may get a single line showing the symlink
2306 ;; rather than the listing of the directory it points to.
2307 ;; - if "foo" has spaces, the parsing of the command may be done wrong.
2308 ;; - some version of netbsd's ftpd only accept a single argument after
2309 ;; `ls', which can either be the directory or the flags.
2310 ;; So to work around those problems, we use "cd foo; ls -flags".
2312 ;; If the dir name contains a space, some ftp servers will
2313 ;; refuse to list it. We instead change directory to the
2314 ;; directory in question and ls ".".
2315 (when (string-match " " cmd1)
2316 ;; Keep the result. In case of failure, we will (see below)
2317 ;; short-circuit CMD and return this result directly.
2318 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror))
2319 (setq cmd1 "."))
2321 ;; If the remote ls can take switches, put them in
2322 (unless (memq host-type ange-ftp-dumb-host-types)
2323 (setq cmd0 'ls)
2324 ;; We cd and then use `ls' with no directory argument.
2325 ;; This works around a misfeature of some versions of netbsd ftpd
2326 ;; where `ls' can only take one argument: either one set of flags
2327 ;; or a file/directory name.
2328 ;; If we're trying to `ls' a single file, this fails since we
2329 ;; can't cd to a file. We can't fix this problem here, tho, because
2330 ;; at this point we don't know whether the argument is a file or
2331 ;; a directory. Such an `ls' is only ever used (apparently) from
2332 ;; `insert-directory' when the `full-directory-p' argument is nil
2333 ;; (which seems to only be used by dired when updating its display
2334 ;; after operating on a set of files). So we've changed
2335 ;; `ange-ftp-insert-directory' such that in this case it gets
2336 ;; a full listing of the directory and extracting the line
2337 ;; corresponding to the requested file.
2338 (unless (equal cmd1 ".")
2339 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)))
2340 (setq cmd1 cmd3)))
2342 ;; First argument is the remote name
2343 ((progn
2344 (setq fix-name-func (or (cdr (assq host-type
2345 ange-ftp-fix-name-func-alist))
2346 'identity))
2347 (memq cmd0 '(get delete mkdir rmdir cd)))
2348 (setq cmd1 (funcall fix-name-func cmd1)))
2350 ;; Second argument is the remote name
2351 ((or (memq cmd0 '(append put chmod))
2352 (and (eq cmd0 'quote) (member cmd1 '("mdtm" "size"))))
2353 (setq cmd2 (funcall fix-name-func cmd2)))
2354 ;; Both arguments are remote names
2355 ((eq cmd0 'rename)
2356 (setq cmd1 (funcall fix-name-func cmd1)
2357 cmd2 (funcall fix-name-func cmd2))))
2359 ;; Turn the command into one long string
2360 (setq cmd0 (symbol-name cmd0))
2361 (setq cmd (concat cmd0
2362 (and cmd1 (concat " " cmd1))
2363 (and cmd2 (concat " " cmd2))))
2365 ;; Actually send the resulting command.
2366 (if (and (consp result) (null (car result)))
2367 ;; `ange-ftp-cd' has failed, so there's no point sending `cmd'.
2368 result
2369 (let (afsc-result
2370 afsc-line)
2371 (ange-ftp-raw-send-cmd
2372 (ange-ftp-get-process host user)
2375 (list (lambda (result line host user cmd msg cont nowait)
2376 (or cont (setq afsc-result result
2377 afsc-line line))
2378 (if result (ange-ftp-call-cont cont result line)
2379 (ange-ftp-raw-send-cmd
2380 (ange-ftp-get-process host user)
2383 (list (lambda (result line cont)
2384 (or cont (setq afsc-result result
2385 afsc-line line))
2386 (ange-ftp-call-cont cont result line))
2387 cont)
2388 nowait)))
2389 host user cmd msg cont nowait)
2390 nowait)
2392 (if nowait
2394 (if cont
2396 (cons afsc-result afsc-line)))))))
2398 ;; It might be nice to message users about the host type identified,
2399 ;; but there is so much other messaging going on, it would not be
2400 ;; seen. No point in slowing things down just so users can read
2401 ;; a host type message.
2403 (defconst ange-ftp-cms-name-template
2404 (concat
2405 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?"
2406 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$"))
2407 (defconst ange-ftp-vms-name-template
2408 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$")
2409 (defconst ange-ftp-mts-name-template
2410 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$")
2411 (defconst ange-ftp-bs2000-filename-pubset-regexp
2412 ":[A-Z0-9]+:"
2413 "Valid pubset for an BS2000 file name.")
2414 (defconst ange-ftp-bs2000-filename-username-regexp
2415 (concat
2416 "\\$[A-Z0-9]*\\.")
2417 "Valid username for an BS2000 file name.")
2418 (defconst ange-ftp-bs2000-filename-prefix-regexp
2419 (concat
2420 ange-ftp-bs2000-filename-pubset-regexp
2421 ange-ftp-bs2000-filename-username-regexp)
2422 "Valid prefix for an BS2000 file name (pubset and user).")
2423 (defconst ange-ftp-bs2000-name-template
2424 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$"))
2426 (defun ange-ftp-guess-host-type (host user)
2427 "Guess the host type of HOST.
2428 Works by doing a pwd and examining the directory syntax."
2429 (let ((host-type (ange-ftp-host-type host))
2430 (key (concat host "/" user "/~")))
2431 (if (eq host-type 'unix)
2432 ;; Note that ange-ftp-host-type returns unix as the default value.
2433 (save-match-data
2434 (let* ((result (ange-ftp-get-pwd host user))
2435 (dir (car result))
2436 fix-name-func)
2437 (cond ((null dir)
2438 (message "Warning! Unable to get home directory")
2439 (sit-for 1)
2440 (if (string-match
2441 "^450 No current working directory defined$"
2442 (cdr result))
2444 ;; We'll assume that if pwd bombs with this
2445 ;; error message, then it's CMS.
2446 (progn
2447 (ange-ftp-add-cms-host host)
2448 (setq ange-ftp-host-cache host
2449 ange-ftp-host-type-cache 'cms))))
2451 ;; try for VMS
2452 ((string-match ange-ftp-vms-name-template dir)
2453 (ange-ftp-add-vms-host host)
2454 ;; The add-host functions clear the host type cache.
2455 ;; Therefore, need to set the cache afterwards.
2456 (setq ange-ftp-host-cache host
2457 ange-ftp-host-type-cache 'vms))
2459 ;; try for MTS
2460 ((string-match ange-ftp-mts-name-template dir)
2461 (ange-ftp-add-mts-host host)
2462 (setq ange-ftp-host-cache host
2463 ange-ftp-host-type-cache 'mts))
2465 ;; try for CMS
2466 ((string-match ange-ftp-cms-name-template dir)
2467 (ange-ftp-add-cms-host host)
2468 (setq ange-ftp-host-cache host
2469 ange-ftp-host-type-cache 'cms))
2471 ;; try for BS2000-POSIX
2472 ((ange-ftp-bs2000-posix-host host)
2473 (ange-ftp-add-bs2000-host host)
2474 (setq ange-ftp-host-cache host
2475 ange-ftp-host-type-cache 'text-unix))
2476 ;; try for BS2000
2477 ((and (string-match ange-ftp-bs2000-name-template dir)
2478 (not (ange-ftp-bs2000-posix-host host)))
2479 (ange-ftp-add-bs2000-host host)
2480 (setq ange-ftp-host-cache host
2481 ange-ftp-host-type-cache 'bs2000))
2482 ;; assume UN*X
2484 (setq ange-ftp-host-cache host
2485 ange-ftp-host-type-cache 'unix)))
2487 ;; Now that we have done a pwd, might as well put it in
2488 ;; the expand-dir hashtable.
2489 (let ((ange-ftp-this-user user)
2490 (ange-ftp-this-host host))
2491 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache
2492 ange-ftp-fix-name-func-alist)))
2493 (if fix-name-func
2494 (setq dir (funcall fix-name-func dir 'reverse))))
2495 (puthash key dir ange-ftp-expand-dir-hashtable))))
2497 ;; In the special case of CMS make sure that know the
2498 ;; expansion of the home minidisk now, because we will
2499 ;; be doing a lot of cd's.
2500 (if (and (eq host-type 'cms)
2501 (not (ange-ftp-hash-entry-exists-p
2502 key ange-ftp-expand-dir-hashtable)))
2503 (let ((dir (car (ange-ftp-get-pwd host user))))
2504 (if dir
2505 (puthash key (concat "/" dir) ange-ftp-expand-dir-hashtable)
2506 (message "Warning! Unable to get home directory")
2507 (sit-for 1))))))
2510 ;;;; ------------------------------------------------------------
2511 ;;;; Remote file and directory listing support.
2512 ;;;; ------------------------------------------------------------
2514 ;; Returns whether HOST's FTP server doesn't like 'ls' or 'dir' commands
2515 ;; to take switch arguments.
2516 (defun ange-ftp-dumb-unix-host (host)
2517 (and host ange-ftp-dumb-unix-host-regexp
2518 (string-match-p ange-ftp-dumb-unix-host-regexp host)))
2520 (defun ange-ftp-add-dumb-unix-host (host)
2521 "Interactively add a given HOST to `ange-ftp-dumb-unix-host-regexp'."
2522 (interactive
2523 (list (read-string "Host: "
2524 (let ((name (or (buffer-file-name) default-directory)))
2525 (and name (car (ange-ftp-ftp-name name)))))))
2526 (if (not (ange-ftp-dumb-unix-host host))
2527 (setq ange-ftp-dumb-unix-host-regexp
2528 (concat "^" (regexp-quote host) "$"
2529 (and ange-ftp-dumb-unix-host-regexp "\\|")
2530 ange-ftp-dumb-unix-host-regexp)
2531 ange-ftp-host-cache nil)))
2533 (defvar ange-ftp-parse-list-func-alist nil
2534 "Alist saying how to parse directory listings for certain OS types.
2535 Association list of (TYPE . FUNC) pairs. The FUNC is a routine which
2536 can parse the output from a DIR listing for a host of type TYPE.")
2538 ;; With no-error nil, this function returns:
2539 ;; an error if file is not an ange-ftp-name
2540 ;; (This should never happen.)
2541 ;; an error if either the listing is unreadable or there is an ftp error.
2542 ;; the listing (a string), if everything works.
2544 ;; With no-error t, it returns:
2545 ;; an error if not an ange-ftp-name
2546 ;; error if listing is unreadable (most likely caused by a slow connection)
2547 ;; nil if ftp error (this is because although asking to list a nonexistent
2548 ;; directory on a remote unix machine usually (except
2549 ;; maybe for dumb hosts) returns an ls error, but no
2550 ;; ftp error, if the same is done on a VMS machine,
2551 ;; an ftp error is returned. Need to trap the error
2552 ;; so we can go on and try to list the parent.)
2553 ;; the listing, if everything works.
2555 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory
2556 ;; in the wildcard case. Then we make a relative directory listing
2557 ;; of FILE within the directory specified by `default-directory'.
2559 (defvar ange-ftp-before-parse-ls-hook nil
2560 "Normal hook run before parsing the text of an FTP directory listing.")
2562 (defvar ange-ftp-after-parse-ls-hook nil
2563 "Normal hook run after parsing the text of an FTP directory listing.")
2565 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard)
2566 "Return the output of a `DIR' or `ls' command done over FTP.
2567 FILE is the full name of the remote file, LSARGS is any args to pass to the
2568 `ls' command, and PARSE specifies that the output should be parsed and stored
2569 away in the internal cache."
2570 (when (string-match "^--dired\\s-+" lsargs)
2571 (setq lsargs (replace-match "" nil t lsargs)))
2572 ;; If parse is t, we assume that file is a directory. i.e. we only parse
2573 ;; full directory listings.
2574 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file))
2575 (parsed (ange-ftp-ftp-name ange-ftp-this-file)))
2576 (if parsed
2577 (let* ((host (nth 0 parsed))
2578 (user (nth 1 parsed))
2579 (name (ange-ftp-quote-string (nth 2 parsed)))
2580 (key (directory-file-name ange-ftp-this-file))
2581 (host-type (ange-ftp-host-type host user))
2582 (dumb (memq host-type ange-ftp-dumb-host-types))
2583 result
2584 temp
2585 lscmd parse-func)
2586 (if (string-equal name "")
2587 (setq name
2588 (ange-ftp-real-file-name-as-directory
2589 (ange-ftp-expand-dir host user "~"))))
2590 (if (and ange-ftp-ls-cache-file
2591 (string-equal key ange-ftp-ls-cache-file)
2592 ;; Don't care about lsargs for dumb hosts.
2593 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs)))
2594 ange-ftp-ls-cache-res
2595 (setq temp (ange-ftp-make-tmp-name host))
2596 (if wildcard
2597 (progn
2598 (ange-ftp-cd host user (file-name-directory name))
2599 (setq lscmd (list 'ls file temp lsargs)))
2600 (setq lscmd (list 'dir name temp lsargs)))
2601 (unwind-protect
2602 (if (car (setq result (ange-ftp-send-cmd
2603 host
2604 user
2605 lscmd
2606 (format "Listing %s"
2607 (ange-ftp-abbreviate-filename
2608 ange-ftp-this-file)))))
2609 (with-current-buffer (get-buffer-create
2610 ange-ftp-data-buffer-name)
2611 (erase-buffer)
2612 (if (ange-ftp-real-file-readable-p temp)
2613 (ange-ftp-real-insert-file-contents temp)
2614 (sleep-for ange-ftp-retry-time)
2615 ;wait for file to possibly appear
2616 (if (ange-ftp-real-file-readable-p temp)
2617 ;; Try again.
2618 (ange-ftp-real-insert-file-contents temp)
2619 (ange-ftp-error host user
2620 (format
2621 "list data file %s not readable"
2622 temp))))
2623 ;; remove ^M inserted by the w32 ftp client
2624 (while (re-search-forward "\r$" nil t)
2625 (replace-match ""))
2626 (goto-char 1)
2627 (run-hooks 'ange-ftp-before-parse-ls-hook)
2628 (if parse
2629 (ange-ftp-set-files
2630 ange-ftp-this-file
2631 (if (setq
2632 parse-func
2633 (cdr (assq host-type
2634 ange-ftp-parse-list-func-alist)))
2635 (funcall parse-func)
2636 (ange-ftp-parse-dired-listing lsargs))))
2637 ;; Place this hook here to convert the contents of the
2638 ;; buffer to a ls compatible format if the host system
2639 ;; that is being queried is other than Unix i.e. VMS
2640 ;; returns an ls format that really sucks.
2641 (run-hooks 'ange-ftp-after-parse-ls-hook)
2642 (setq ange-ftp-ls-cache-file key
2643 ange-ftp-ls-cache-lsargs lsargs
2644 ; For dumb hosts-types this is
2645 ; meaningless but harmless.
2646 ange-ftp-ls-cache-res (buffer-string))
2647 ;; (kill-buffer (current-buffer))
2648 (if (equal ange-ftp-ls-cache-res "total 0\n")
2649 ;; wu-ftpd seems to return a successful result
2650 ;; with an empty file-listing when doing a
2651 ;; `DIR /some/file/.' which leads ange-ftp to
2652 ;; believe that /some/file is a directory ;-(
2654 ange-ftp-ls-cache-res))
2655 (if no-error
2657 (ange-ftp-error host user
2658 (concat "DIR failed: " (cdr result)))))
2659 (ange-ftp-del-tmp-name temp))))
2660 (error "Should never happen. Please report. Bug ref. no.: 1"))))
2662 ;;;; ------------------------------------------------------------
2663 ;;;; Directory information caching support.
2664 ;;;; ------------------------------------------------------------
2666 (defvar ange-ftp-add-file-entry-alist nil
2667 "Alist saying how to add file entries on certain OS types.
2668 Association list of pairs (TYPE . FUNC), where FUNC is a function
2669 to be used to add a file entry for the OS TYPE.
2670 The main reason for this alist is to deal with file versions in VMS.")
2672 (defvar ange-ftp-delete-file-entry-alist nil
2673 "Alist saying how to delete files on certain OS types.
2674 Association list of pairs (TYPE . FUNC), where FUNC is a function
2675 to be used to delete a file entry for the OS TYPE.
2676 The main reason for this alist is to deal with file versions in VMS.")
2678 (defun ange-ftp-add-file-entry (name &optional dir-p)
2679 "Add a file entry for file NAME, if its directory info exists."
2680 (funcall (or (cdr (assq (ange-ftp-host-type
2681 (car (ange-ftp-ftp-name name)))
2682 ange-ftp-add-file-entry-alist))
2683 'ange-ftp-internal-add-file-entry)
2684 name dir-p)
2685 (setq ange-ftp-ls-cache-file nil))
2687 (defun ange-ftp-delete-file-entry (name &optional dir-p)
2688 "Delete the file entry for file NAME, if its directory info exists."
2689 (funcall (or (cdr (assq (ange-ftp-host-type
2690 (car (ange-ftp-ftp-name name)))
2691 ange-ftp-delete-file-entry-alist))
2692 'ange-ftp-internal-delete-file-entry)
2693 name dir-p)
2694 (setq ange-ftp-ls-cache-file nil))
2696 (defmacro ange-ftp-parse-filename ()
2697 ;;Extract the filename from the current line of a dired-like listing.
2698 `(save-match-data
2699 (let ((eol (progn (end-of-line) (point))))
2700 (beginning-of-line)
2701 (if (re-search-forward directory-listing-before-filename-regexp eol t)
2702 (buffer-substring (point) eol)))))
2704 ;; This deals with the F switch. Should also do something about
2705 ;; unquoting names obtained with the SysV b switch and the GNU Q
2706 ;; switch. See Sebastian's dired-get-filename.
2708 (defun ange-ftp-ls-parser (switches)
2709 ;; Meant to be called by ange-ftp-parse-dired-listing
2710 (let ((tbl (make-hash-table :test 'equal))
2711 (used-F (and (stringp switches)
2712 (string-match "F" switches)))
2713 file-type symlink directory file)
2714 (while (setq file (ange-ftp-parse-filename))
2715 (beginning-of-line)
2716 (skip-chars-forward "\t 0-9")
2717 (setq file-type (following-char)
2718 directory (eq file-type ?d))
2719 (if (eq file-type ?l)
2720 (let ((end (string-match " -> " file)))
2721 (if end
2722 ;; Sometimes `ls' appends a @ at the end of the target.
2723 (setq symlink (substring file (match-end 0)
2724 (string-match "@\\'" file))
2725 file (substring file 0 end))
2726 ;; Shouldn't happen
2727 (setq symlink "")))
2728 (setq symlink nil))
2729 ;; Only do a costly regexp search if the F switch was used.
2730 (if (and used-F
2731 (not (string-equal file ""))
2732 (looking-at
2733 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"))
2734 (let ((socket (eq file-type ?s))
2735 (executable
2736 (and (not symlink) ; x bits don't mean a thing for symlinks
2737 (string-match
2738 "[xst]"
2739 (concat (match-string 1)
2740 (match-string 2)
2741 (match-string 3))))))
2742 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX)
2743 ;; and others don't. (sigh...) Beware, that some Unix's don't
2744 ;; seem to believe in the F-switch
2745 (if (or (and symlink (string-match "@\\'" file))
2746 (and directory (string-match "/\\'" file))
2747 (and executable (string-match "*\\'" file))
2748 (and socket (string-match "=\\'" file)))
2749 (setq file (substring file 0 -1)))))
2750 (puthash file (or symlink directory) tbl)
2751 (forward-line 1))
2752 (puthash "." t tbl)
2753 (puthash ".." t tbl)
2754 tbl))
2756 ;;; The dl stuff for descriptive listings
2758 (defvar ange-ftp-dl-dir-regexp nil
2759 "Regexp matching directories which are listed in dl format.
2760 This regexp should not be anchored with a trailing `$', because it should
2761 match subdirectories as well.")
2763 (defun ange-ftp-add-dl-dir (dir)
2764 "Interactively add a DIR to `ange-ftp-dl-dir-regexp'."
2765 (interactive
2766 (list (read-string "Directory: "
2767 (let ((name (or (buffer-file-name) default-directory)))
2768 (and name (ange-ftp-ftp-name name)
2769 (file-name-directory name))))))
2770 (if (not (and ange-ftp-dl-dir-regexp
2771 (string-match ange-ftp-dl-dir-regexp dir)))
2772 (setq ange-ftp-dl-dir-regexp
2773 (concat "^" (regexp-quote dir)
2774 (and ange-ftp-dl-dir-regexp "\\|")
2775 ange-ftp-dl-dir-regexp))))
2777 (defmacro ange-ftp-dl-parser ()
2778 ;; Parse the current buffer, which is assumed to be a descriptive
2779 ;; listing, and return a hashtable.
2780 `(let ((tbl (make-hash-table :test 'equal)))
2781 (while (not (eobp))
2782 (puthash
2783 (buffer-substring (point)
2784 (progn
2785 (skip-chars-forward "^ /\n")
2786 (point)))
2787 (eq (following-char) ?/)
2788 tbl)
2789 (forward-line 1))
2790 (puthash "." t tbl)
2791 (puthash ".." t tbl)
2792 tbl))
2794 ;; Parse the current buffer which is assumed to be in a dired-like listing
2795 ;; format, and return a hashtable as the result. If the listing is not really
2796 ;; a listing, then return nil.
2798 (defun ange-ftp-parse-dired-listing (&optional switches)
2799 (save-match-data
2800 (cond
2801 ((looking-at "^total [0-9]+$")
2802 (forward-line 1)
2803 ;; Some systems put in a blank line here.
2804 (if (eolp) (forward-line 1))
2805 (ange-ftp-ls-parser switches))
2806 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'")
2807 ;; It's an ls error message.
2808 nil)
2809 ((eobp) ; i.e. (zerop (buffer-size))
2810 ;; This could be one of:
2811 ;; (1) An Ultrix ls error message
2812 ;; (2) A listing with the A switch of an empty directory
2813 ;; on a machine which doesn't give a total line.
2814 ;; (3) The twilight zone.
2815 ;; We'll assume (1) for now.
2816 nil)
2817 ((re-search-forward directory-listing-before-filename-regexp nil t)
2818 (beginning-of-line)
2819 (ange-ftp-ls-parser switches))
2820 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t)
2821 ;; It's a dl listing (I hope).
2822 ;; file is bound by the call to ange-ftp-ls
2823 (ange-ftp-add-dl-dir ange-ftp-this-file)
2824 (beginning-of-line)
2825 (ange-ftp-dl-parser))
2826 (t nil))))
2828 (defun ange-ftp-set-files (directory files)
2829 "For a given DIRECTORY, set or change the associated FILES hashtable."
2830 (and files (puthash (file-name-as-directory directory)
2831 files ange-ftp-files-hashtable)))
2833 (defun ange-ftp-switches-ok (switches)
2834 "Return SWITCHES (a string) if suitable for use with ls over ftp."
2835 (and (stringp switches)
2836 ;; We allow the --almost-all switch, which lists all files
2837 ;; except "." and "..". This is OK because we manually
2838 ;; insert these entries in the hash table.
2839 (string-match
2840 "--\\(almost-\\)?all\\>\\|\\(\\`\\| \\)-[[:alpha:]]*[aA]"
2841 switches)
2842 ;; Disallow other long flags except --(almost-)all.
2843 (not (string-match "\\(\\`\\| \\)--\\w+"
2844 (replace-regexp-in-string
2845 "--\\(almost-\\)?all\\>" ""
2846 switches)))
2847 ;; Must include 'l'.
2848 (string-match "\\(\\`\\| \\)-[[:alpha:]]*l" switches)
2849 ;; Disallow recursive flag.
2850 (not (string-match
2851 "\\(\\`\\| \\)-[[:alpha:]]*R" switches))
2852 switches))
2854 (defun ange-ftp-get-files (directory &optional no-error)
2855 "Given a DIRECTORY, return a hashtable of file entries.
2856 This will give an error or return nil, depending on the value of
2857 NO-ERROR, if a listing for DIRECTORY cannot be obtained."
2858 (setq directory (file-name-as-directory directory)) ;normalize
2859 (or (gethash directory ange-ftp-files-hashtable)
2860 (save-match-data
2861 (and (ange-ftp-ls directory
2862 ;; This is an efficiency hack. We try to
2863 ;; anticipate what sort of listing dired
2864 ;; might want, and cache just such a listing.
2865 (or (and (boundp 'dired-actual-switches)
2866 (ange-ftp-switches-ok dired-actual-switches))
2867 (and (boundp 'dired-listing-switches)
2868 (ange-ftp-switches-ok
2869 dired-listing-switches))
2870 "-al")
2871 t no-error)
2872 (gethash directory ange-ftp-files-hashtable)))))
2874 ;; Given NAME, return the file part that can be used for looking up the
2875 ;; file's entry in a hashtable.
2876 (defmacro ange-ftp-get-file-part (name)
2877 `(let ((file (file-name-nondirectory ,name)))
2878 (if (string-equal file "")
2880 file)))
2882 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are
2883 ;; allowed to determine if NAME is a sub-directory by listing it directly,
2884 ;; rather than listing its parent directory. This is used for efficiency so
2885 ;; that a wasted listing is not done:
2886 ;; 1. When looking for a .dired file in dired-x.el.
2887 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid
2888 ;; subdirectory. This is of course an OS dependent judgment.
2890 (defvar dired-local-variables-file)
2891 (defmacro ange-ftp-allow-child-lookup (dir file)
2892 `(not
2893 (let* ((efile ,file) ; expand once.
2894 (edir ,dir)
2895 (parsed (ange-ftp-ftp-name edir))
2896 (host-type (ange-ftp-host-type
2897 (car parsed))))
2899 ;; Deal with dired
2900 (and (boundp 'dired-local-variables-file) ; in the dired-x package
2901 (stringp dired-local-variables-file)
2902 (string-equal dired-local-variables-file efile))
2903 ;; No dots in dir names in vms.
2904 (and (eq host-type 'vms)
2905 (string-match "\\." efile))
2906 ;; No subdirs in mts of cms.
2907 (and (memq host-type '(mts cms))
2908 (not (string-equal "/" (nth 2 parsed))))
2909 ;; No dots in pseudo-dir names in bs2000.
2910 (and (eq host-type 'bs2000)
2911 (string-match "\\." efile))))))
2913 (defun ange-ftp-file-entry-p (name)
2914 "Given NAME, return whether there is a file entry for it."
2915 (let* ((name (directory-file-name name))
2916 (dir (file-name-directory name))
2917 (ent (gethash dir ange-ftp-files-hashtable))
2918 (file (ange-ftp-get-file-part name)))
2919 (if ent
2920 (ange-ftp-hash-entry-exists-p file ent)
2921 (or (and (ange-ftp-allow-child-lookup dir file)
2922 (setq ent (ange-ftp-get-files name t))
2923 ;; Try a child lookup. i.e. try to list file as a
2924 ;; subdirectory of dir. This is a good idea because
2925 ;; we may not have read permission for file's parent. Also,
2926 ;; people tend to work down directory trees anyway. We use
2927 ;; no-error ;; because if file does not exist as a subdir.,
2928 ;; then dumb hosts will give an ftp error. Smart unix hosts
2929 ;; will simply send back the ls
2930 ;; error message.
2931 (gethash "." ent))
2932 ;; Child lookup failed, so try the parent.
2933 (ange-ftp-hash-entry-exists-p
2934 file (ange-ftp-get-files dir 'no-error))))))
2936 (defun ange-ftp-get-file-entry (name)
2937 "Given NAME, return the given file entry.
2938 The entry will be either t for a directory, nil for a normal file,
2939 or a string for a symlink. If the file isn't in the hashtable,
2940 this also returns nil."
2941 (let* ((name (directory-file-name name))
2942 (dir (file-name-directory name))
2943 (ent (gethash dir ange-ftp-files-hashtable))
2944 (file (ange-ftp-get-file-part name)))
2945 (if ent
2946 (gethash file ent)
2947 (or (and (ange-ftp-allow-child-lookup dir file)
2948 (setq ent (ange-ftp-get-files name t))
2949 (gethash "." ent))
2950 ;; i.e. it's a directory by child lookup
2951 (and (setq ent (ange-ftp-get-files dir t))
2952 (gethash file ent))))))
2954 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p)
2955 (when dir-p
2956 (setq name (file-name-as-directory name))
2957 (remhash name ange-ftp-files-hashtable)
2958 (setq name (directory-file-name name)))
2959 ;; Note that file-name-as-directory followed by directory-file-name
2960 ;; serves to canonicalize directory file names to their unix form.
2961 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO
2962 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
2963 (if files
2964 (remhash (ange-ftp-get-file-part name) files))))
2966 (defun ange-ftp-internal-add-file-entry (name &optional dir-p)
2967 (and dir-p
2968 (setq name (directory-file-name name)))
2969 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
2970 (if files
2971 (puthash (ange-ftp-get-file-part name) dir-p files))))
2973 (defun ange-ftp-wipe-file-entries (host user)
2974 "Get rid of entry for HOST, USER pair from file entry information hashtable."
2975 (let ((new-tbl (make-hash-table :test 'equal
2976 :size (hash-table-size
2977 ange-ftp-files-hashtable))))
2978 (maphash
2979 (lambda (key val)
2980 (let ((parsed (ange-ftp-ftp-name key)))
2981 (if parsed
2982 (let ((h (nth 0 parsed))
2983 (u (nth 1 parsed)))
2984 (or (and (equal host h) (equal user u))
2985 (puthash key val new-tbl))))))
2986 ange-ftp-files-hashtable)
2987 (setq ange-ftp-files-hashtable new-tbl)))
2989 ;;;; ------------------------------------------------------------
2990 ;;;; File transfer mode support.
2991 ;;;; ------------------------------------------------------------
2993 (defun ange-ftp-set-binary-mode (host user)
2994 "Tell the FTP process for the given HOST & USER to switch to binary mode."
2995 ;; FIXME: We should keep track of the current mode, so as to avoid
2996 ;; unnecessary roundtrips.
2997 (let ((result (ange-ftp-send-cmd host user '(type "binary"))))
2998 (if (not (car result))
2999 (ange-ftp-error host user (concat "BINARY failed: " (cdr result)))
3000 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
3001 (and ange-ftp-binary-hash-mark-size
3002 (setq ange-ftp-hash-mark-unit
3003 (ash ange-ftp-binary-hash-mark-size -4)))))))
3005 (defun ange-ftp-set-ascii-mode (host user)
3006 "Tell the FTP process for the given HOST & USER to switch to ASCII mode."
3007 ;; FIXME: We should keep track of the current mode, so as to avoid
3008 ;; unnecessary roundtrips.
3009 (let ((result (ange-ftp-send-cmd host user '(type "ascii"))))
3010 (if (not (car result))
3011 (ange-ftp-error host user (concat "ASCII failed: " (cdr result)))
3012 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
3013 (and ange-ftp-ascii-hash-mark-size
3014 (setq ange-ftp-hash-mark-unit
3015 (ash ange-ftp-ascii-hash-mark-size -4)))))))
3017 (defun ange-ftp-cd (host user dir &optional noerror)
3018 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD")))
3019 (if noerror result
3020 (or (car result)
3021 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))))
3023 (defun ange-ftp-get-pwd (host user)
3024 "Attempt to get the current working directory for the given HOST/USER pair.
3025 Returns (DIR . LINE) where DIR is either the directory or nil if not found,
3026 and LINE is the relevant success or fail line from the FTP-client."
3027 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD"))
3028 (line (cdr result))
3029 dir)
3030 (if (car result)
3031 (save-match-data
3032 (and (or (string-match "\"\\([^\"]*\\)\"" line)
3033 ;; Some clients cache the value and return it in
3034 ;; this way without asking the server. (Bug#15058)
3035 (string-match "^Remote directory: \\(.*\\)" line)
3036 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers!
3037 (setq dir (match-string 1 line)))))
3038 (cons dir line)))
3040 ;;; ------------------------------------------------------------
3041 ;;; expand-file-name and friends...which currently don't work
3042 ;;; ------------------------------------------------------------
3044 (defun ange-ftp-expand-dir (host user dir)
3045 "Return the result of doing a PWD in the current FTP session.
3046 Use the connection to machine HOST
3047 logged in as user USER and cd'd to directory DIR."
3048 (let* ((host-type (ange-ftp-host-type host user))
3049 ;; It is more efficient to call ange-ftp-host-type
3050 ;; before binding res, because ange-ftp-host-type sometimes
3051 ;; adds to the info in the expand-dir-hashtable.
3052 (fix-name-func
3053 (cdr (assq host-type ange-ftp-fix-name-func-alist)))
3054 (key (concat host "/" user "/" dir))
3055 (res (gethash key ange-ftp-expand-dir-hashtable)))
3056 (or res
3057 (progn
3059 (string-equal user "anonymous")
3060 (string-equal user "ftp")
3061 (not (eq host-type 'unix))
3062 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp
3063 "\\|"
3064 ange-ftp-good-msgs))
3065 (result (ange-ftp-send-cmd host user
3066 (list 'get dir null-device)
3067 (format "expanding %s" dir)))
3068 (line (cdr result)))
3069 (setq res
3070 (if (string-match ange-ftp-expand-dir-regexp line)
3071 (match-string 1 line)))))
3072 (or res
3073 (if (string-equal dir "~")
3074 (setq res (car (ange-ftp-get-pwd host user)))
3075 (let ((home (ange-ftp-expand-dir host user "~")))
3076 (unwind-protect
3077 (and (ange-ftp-cd host user dir)
3078 (setq res (car (ange-ftp-get-pwd host user))))
3079 (ange-ftp-cd host user home)))))
3080 (if res
3081 (let ((ange-ftp-this-user user)
3082 (ange-ftp-this-host host))
3083 (if fix-name-func
3084 (setq res (funcall fix-name-func res 'reverse)))
3085 (puthash key res ange-ftp-expand-dir-hashtable)))
3086 res))))
3088 (defun ange-ftp-canonize-filename (n)
3089 "Take a string N and short-circuit //, /. and /.."
3090 (if (string-match "[^:]+//" n) ;don't upset Apollo users
3091 (setq n (substring n (1- (match-end 0)))))
3092 (let ((parsed (ange-ftp-ftp-name n)))
3093 (if parsed
3094 (let ((host (car parsed))
3095 (user (nth 1 parsed))
3096 (name (nth 2 parsed)))
3098 ;; See if remote name is absolute. If so then just expand it and
3099 ;; replace the name component of the overall name.
3100 (cond ((string-match "\\`/" name)
3101 name)
3103 ;; Name starts with ~ or ~user. Resolve that part of the name
3104 ;; making it absolute then re-expand it.
3105 ((string-match "\\`~[^/]*" name)
3106 (let* ((tilda (match-string 0 name))
3107 (rest (substring name (match-end 0)))
3108 (dir (ange-ftp-expand-dir host user tilda)))
3109 (if dir
3110 ;; C-x d /ftp:anonymous@ftp.gnu.org:~/ RET
3111 ;; seems to cause `rest' to sometimes be empty.
3112 ;; Maybe it's an error for `rest' to be empty here,
3113 ;; but until we figure this out, this quick fix
3114 ;; seems to do the trick.
3115 (setq name (cond ((string-equal rest "") dir)
3116 ((string-equal dir "/") rest)
3117 (t (concat dir rest))))
3118 (error "User \"%s\" is not known"
3119 (substring tilda 1)))))
3121 ;; relative name. Tack on homedir and re-expand.
3123 (let ((dir (ange-ftp-expand-dir host user "~")))
3124 (if dir
3125 (setq name (concat
3126 (ange-ftp-real-file-name-as-directory dir)
3127 name))
3128 (error "Unable to obtain CWD")))))
3130 ;; If name starts with //, preserve that, for apollo system.
3131 (unless (string-match "\\`//" name)
3132 (if (not (eq system-type 'windows-nt))
3133 (setq name (ange-ftp-real-expand-file-name name))
3134 ;; Windows UNC default dirs do not make sense for ftp.
3135 (setq name (if (and default-directory
3136 (string-match "\\`//" default-directory))
3137 (ange-ftp-real-expand-file-name name "c:/")
3138 (ange-ftp-real-expand-file-name name)))
3139 ;; Strip off possible drive specifier.
3140 (if (string-match "\\`[a-zA-Z]:" name)
3141 (setq name (substring name 2))))
3142 (if (string-match "\\`//" name)
3143 (setq name (substring name 1))))
3145 ;; Now substitute the expanded name back into the overall filename.
3146 (ange-ftp-replace-name-component n name))
3148 ;; non-ange-ftp name. Just expand normally.
3149 (if (eq (string-to-char n) ?/)
3150 (ange-ftp-real-expand-file-name n)
3151 (ange-ftp-real-expand-file-name
3152 (ange-ftp-real-file-name-nondirectory n)
3153 (ange-ftp-real-file-name-directory n))))))
3155 (defun ange-ftp-expand-file-name (name &optional default)
3156 "Documented as `expand-file-name'."
3157 (save-match-data
3158 (setq default (or default default-directory))
3159 (cond
3160 ((ange-ftp-ftp-name name)
3161 ;; `default' is irrelevant.
3162 (ange-ftp-canonize-filename name))
3163 ((file-name-absolute-p name)
3164 ;; `name' is absolute but is not an ange-ftp name => not ange-ftp.
3165 (ange-ftp-real-expand-file-name name "/"))
3166 ((ange-ftp-canonize-filename
3167 (concat (file-name-as-directory default) name))))))
3169 ;;; These are problems--they are currently not enabled.
3171 (defvar ange-ftp-file-name-as-directory-alist nil
3172 "Association list of (TYPE . FUNC) pairs.
3173 FUNC converts a filename to a directory name for the operating
3174 system TYPE.")
3176 (defun ange-ftp-file-name-as-directory (name)
3177 "Documented as `file-name-as-directory'."
3178 (let ((parsed (ange-ftp-ftp-name name)))
3179 (if parsed
3180 (if (string-equal (nth 2 parsed) "")
3181 name
3182 (funcall (or (cdr (assq
3183 (ange-ftp-host-type (car parsed))
3184 ange-ftp-file-name-as-directory-alist))
3185 'ange-ftp-real-file-name-as-directory)
3186 name))
3187 (ange-ftp-real-file-name-as-directory name))))
3189 (defun ange-ftp-file-name-directory (name)
3190 "Documented as `file-name-directory'."
3191 (let ((parsed (ange-ftp-ftp-name name)))
3192 (if parsed
3193 (let ((filename (nth 2 parsed)))
3194 (if (string-match-p "\\`~[^/]*\\'" filename)
3195 name
3196 (ange-ftp-replace-name-component
3197 name
3198 (ange-ftp-real-file-name-directory filename))))
3199 (ange-ftp-real-file-name-directory name))))
3201 (defun ange-ftp-file-name-nondirectory (name)
3202 "Documented as `file-name-nondirectory'."
3203 (let ((parsed (ange-ftp-ftp-name name)))
3204 (if parsed
3205 (let ((filename (nth 2 parsed)))
3206 (if (string-match-p "\\`~[^/]*\\'" filename)
3208 (ange-ftp-real-file-name-nondirectory filename)))
3209 (ange-ftp-real-file-name-nondirectory name))))
3211 (defun ange-ftp-directory-file-name (dir)
3212 "Documented as `directory-file-name'."
3213 (let ((parsed (ange-ftp-ftp-name dir)))
3214 (if parsed
3215 (ange-ftp-replace-name-component
3217 (ange-ftp-real-directory-file-name (nth 2 parsed)))
3218 (ange-ftp-real-directory-file-name dir))))
3221 ;;; Hooks that handle Emacs primitives.
3223 ;; Returns non-nil if should transfer FILE in binary mode.
3224 (defun ange-ftp-binary-file (file)
3225 (string-match-p ange-ftp-binary-file-name-regexp file))
3227 (defun ange-ftp-write-region (start end filename &optional append visit)
3228 (setq filename (expand-file-name filename))
3229 (let ((parsed (ange-ftp-ftp-name filename)))
3230 (if parsed
3231 (let* ((host (nth 0 parsed))
3232 (user (nth 1 parsed))
3233 (name (ange-ftp-quote-string (nth 2 parsed)))
3234 (temp (ange-ftp-make-tmp-name host))
3235 ;; What we REALLY need here is a way to determine if the mode
3236 ;; of the transfer is irrelevant, i.e. we can use binary mode
3237 ;; regardless. Maybe a system-type to host-type lookup?
3238 (binary (ange-ftp-binary-file filename))
3239 (cmd (if append 'append 'put))
3240 (abbr (ange-ftp-abbreviate-filename filename))
3241 ;; we need to reset `last-coding-system-used' to its
3242 ;; value immediately after calling the real write-region,
3243 ;; so that `basic-save-buffer' doesn't see whatever value
3244 ;; might be used when communicating with the ftp process.
3245 (coding-system-used last-coding-system-used))
3246 (unwind-protect
3247 (progn
3248 (let ((filename (buffer-file-name))
3249 (mod-p (buffer-modified-p)))
3250 (unwind-protect
3251 (progn
3252 (ange-ftp-real-write-region start end temp nil
3253 (or visit 'quiet))
3254 (setq coding-system-used last-coding-system-used))
3255 ;; cleanup forms
3256 (setq coding-system-used last-coding-system-used)
3257 (setq buffer-file-name filename)
3258 (restore-buffer-modified-p mod-p)))
3259 (if binary
3260 (ange-ftp-set-binary-mode host user))
3262 ;; tell the process filter what size the transfer will be.
3263 (let ((attr (file-attributes temp)))
3264 (if attr
3265 (ange-ftp-set-xfer-size host user (nth 7 attr))))
3267 ;; put or append the file.
3268 (let ((result (ange-ftp-send-cmd host user
3269 (list cmd temp name)
3270 (format "Writing %s" abbr))))
3271 (or (car result)
3272 (signal 'ftp-error
3273 (list
3274 "Opening output file"
3275 (format "FTP Error: \"%s\"" (cdr result))
3276 filename)))))
3277 (ange-ftp-del-tmp-name temp)
3278 (if binary
3279 (ange-ftp-set-ascii-mode host user)))
3280 (if (eq visit t)
3281 (progn
3282 (set-visited-file-modtime (ange-ftp-file-modtime filename))
3283 (ange-ftp-set-buffer-mode)
3284 (setq buffer-file-name filename)
3285 (set-buffer-modified-p nil)))
3286 ;; ensure `last-coding-system-used' has an appropriate value
3287 (setq last-coding-system-used coding-system-used)
3288 (ange-ftp-message "Wrote %s" abbr)
3289 (ange-ftp-add-file-entry filename))
3290 (ange-ftp-real-write-region start end filename append visit))))
3292 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace)
3293 (barf-if-buffer-read-only)
3294 (setq filename (expand-file-name filename))
3295 (let ((parsed (ange-ftp-ftp-name filename)))
3296 (if parsed
3297 (progn
3298 (if visit
3299 (setq buffer-file-name filename))
3300 (if (or (file-exists-p filename)
3301 (progn
3302 (setq ange-ftp-ls-cache-file nil)
3303 (remhash (file-name-directory filename)
3304 ange-ftp-files-hashtable)
3305 (file-exists-p filename)))
3306 (let* ((host (nth 0 parsed))
3307 (user (nth 1 parsed))
3308 (name (ange-ftp-quote-string (nth 2 parsed)))
3309 (temp (ange-ftp-make-tmp-name host))
3310 (binary (ange-ftp-binary-file filename))
3311 (abbr (ange-ftp-abbreviate-filename filename))
3312 (coding-system-used last-coding-system-used)
3313 size)
3314 (unwind-protect
3315 (progn
3316 (if binary
3317 (ange-ftp-set-binary-mode host user))
3318 (let ((result (ange-ftp-send-cmd host user
3319 (list 'get name temp)
3320 (format "Retrieving %s" abbr))))
3321 (or (car result)
3322 (signal 'ftp-error
3323 (list
3324 "Opening input file"
3325 (format "FTP Error: \"%s\"" (cdr result))
3326 filename))))
3327 (if (or (ange-ftp-real-file-readable-p temp)
3328 (sleep-for ange-ftp-retry-time)
3329 ;; Wait for file to hopefully appear.
3330 (ange-ftp-real-file-readable-p temp))
3331 (setq
3332 size
3333 (nth 1 (ange-ftp-real-insert-file-contents
3334 temp visit beg end replace))
3335 coding-system-used last-coding-system-used)
3336 (signal 'ftp-error
3337 (list
3338 "Opening input file:"
3339 (format
3340 "FTP Error: %s not arrived or readable"
3341 filename)))))
3342 (if binary
3343 ;; We must keep `last-coding-system-used'
3344 ;; unchanged.
3345 (let (last-coding-system-used)
3346 (ange-ftp-set-ascii-mode host user)))
3347 (ange-ftp-del-tmp-name temp))
3348 (if visit
3349 (progn
3350 (set-visited-file-modtime
3351 (ange-ftp-file-modtime filename))
3352 (setq buffer-file-name filename)))
3353 (setq last-coding-system-used coding-system-used)
3354 (list filename size))
3355 (signal 'file-error
3356 (list
3357 "Opening input file"
3358 filename))))
3359 (ange-ftp-real-insert-file-contents filename visit beg end replace))))
3361 (defun ange-ftp-expand-symlink (file dir)
3362 (let ((res (if (file-name-absolute-p file)
3363 (ange-ftp-replace-name-component dir file)
3364 (expand-file-name file dir))))
3365 (if (file-symlink-p res)
3366 (ange-ftp-expand-symlink
3367 (ange-ftp-get-file-entry res)
3368 (file-name-directory (directory-file-name res)))
3369 res)))
3371 (defun ange-ftp-file-symlink-p (file)
3372 ;; call ange-ftp-expand-file-name rather than the normal
3373 ;; expand-file-name to stop loops when using a package that
3374 ;; redefines both file-symlink-p and expand-file-name.
3375 (setq file (ange-ftp-expand-file-name file))
3376 (if (ange-ftp-ftp-name file)
3377 (condition-case nil
3378 (let ((ent (ange-ftp-get-files (file-name-directory file))))
3379 (and ent
3380 (stringp (setq ent
3381 (gethash (ange-ftp-get-file-part file) ent)))
3382 ent))
3383 ;; If we can't read the parent directory, just assume
3384 ;; this file is not a symlink.
3385 ;; This makes it possible to access a directory that
3386 ;; whose parent is not readable.
3387 (file-error nil))
3388 (ange-ftp-real-file-symlink-p file)))
3390 (defun ange-ftp-file-exists-p (name)
3391 (setq name (expand-file-name name))
3392 (if (ange-ftp-ftp-name name)
3393 (if (ange-ftp-file-entry-p name)
3394 (let ((file-ent (ange-ftp-get-file-entry name)))
3395 (if (stringp file-ent)
3396 (ange-ftp-file-exists-p
3397 (ange-ftp-expand-symlink file-ent
3398 (file-name-directory
3399 (directory-file-name name))))
3400 t)))
3401 (ange-ftp-real-file-exists-p name)))
3403 (defun ange-ftp-file-directory-p (name)
3404 (setq name (expand-file-name name))
3405 (if (ange-ftp-ftp-name name)
3406 ;; We do a file-name-as-directory on name here because some
3407 ;; machines (VMS) use a .DIR to indicate the filename associated
3408 ;; with a directory. This needs to be canonicalized.
3409 (let ((file-ent (ange-ftp-get-file-entry
3410 (ange-ftp-file-name-as-directory name))))
3411 (if (stringp file-ent)
3412 ;; Calling file-directory-p doesn't work because ange-ftp
3413 ;; is temporarily disabled for this operation.
3414 (ange-ftp-file-directory-p
3415 (ange-ftp-expand-symlink file-ent
3416 (file-name-directory
3417 (directory-file-name name))))
3418 file-ent))
3419 (ange-ftp-real-file-directory-p name)))
3421 (defun ange-ftp-directory-files (directory &optional full match
3422 &rest v19-args)
3423 (setq directory (expand-file-name directory))
3424 (if (ange-ftp-ftp-name directory)
3425 (progn
3426 (ange-ftp-barf-if-not-directory directory)
3427 (let ((tail (ange-ftp-hash-table-keys
3428 (ange-ftp-get-files directory)))
3429 files f)
3430 (setq directory (file-name-as-directory directory))
3431 (while tail
3432 (setq f (car tail)
3433 tail (cdr tail))
3434 (if (or (not match) (string-match-p match f))
3435 (setq files
3436 (cons (if full (concat directory f) f) files))))
3437 (nreverse files)))
3438 (apply 'ange-ftp-real-directory-files directory full match v19-args)))
3440 (defun ange-ftp-directory-files-and-attributes
3441 (directory &optional full match nosort id-format)
3442 (setq directory (expand-file-name directory))
3443 (if (ange-ftp-ftp-name directory)
3444 (mapcar
3445 (lambda (file)
3446 (cons file (file-attributes (expand-file-name file directory))))
3447 (ange-ftp-directory-files directory full match nosort))
3448 (ange-ftp-real-directory-files-and-attributes
3449 directory full match nosort id-format)))
3451 (defun ange-ftp-file-attributes (file &optional id-format)
3452 (setq file (expand-file-name file))
3453 (let ((parsed (ange-ftp-ftp-name file)))
3454 (if parsed
3455 (let ((part (ange-ftp-get-file-part file))
3456 (files (ange-ftp-get-files (file-name-directory file))))
3457 (if (ange-ftp-hash-entry-exists-p part files)
3458 (let ((host (nth 0 parsed))
3459 (user (nth 1 parsed))
3460 (name (nth 2 parsed))
3461 (dirp (gethash part files))
3462 (inode (gethash file ange-ftp-inodes-hashtable)))
3463 (unless inode
3464 (setq inode ange-ftp-next-inode-number
3465 ange-ftp-next-inode-number (1+ inode))
3466 (puthash file inode ange-ftp-inodes-hashtable))
3467 (list (if (and (stringp dirp) (file-name-absolute-p dirp))
3468 (ange-ftp-expand-symlink dirp
3469 (file-name-directory file))
3470 dirp) ;0 file type
3471 -1 ;1 link count
3472 -1 ;2 uid
3473 -1 ;3 gid
3474 '(0 0) ;4 atime
3475 (ange-ftp-file-modtime file) ;5 mtime
3476 '(0 0) ;6 ctime
3477 (ange-ftp-file-size file) ;7 size
3478 (concat (if (stringp dirp) "l" (if dirp "d" "-"))
3479 "?????????") ;8 mode
3480 nil ;9 gid weird
3481 inode ;10 "inode number".
3482 -1 ;11 device number [v19 only]
3483 ))))
3484 (if id-format
3485 (ange-ftp-real-file-attributes file id-format)
3486 (ange-ftp-real-file-attributes file)))))
3488 (defun ange-ftp-file-newer-than-file-p (f1 f2)
3489 (let ((f1-parsed (ange-ftp-ftp-name f1))
3490 (f2-parsed (ange-ftp-ftp-name f2)))
3491 (if (or f1-parsed f2-parsed)
3492 (let ((f1-mt (nth 5 (file-attributes f1)))
3493 (f2-mt (nth 5 (file-attributes f2))))
3494 (cond ((null f1-mt) nil)
3495 ((null f2-mt) t)
3496 (t (> (float-time f1-mt) (float-time f2-mt)))))
3497 (ange-ftp-real-file-newer-than-file-p f1 f2))))
3499 (defun ange-ftp-file-writable-p (file)
3500 (let ((ange-ftp-process-verbose nil))
3501 (setq file (expand-file-name file))
3502 (if (ange-ftp-ftp-name file)
3503 (or (file-exists-p file) ;guess here for speed
3504 (file-directory-p (file-name-directory file)))
3505 (ange-ftp-real-file-writable-p file))))
3507 (defun ange-ftp-file-readable-p (file)
3508 (let ((ange-ftp-process-verbose nil))
3509 (setq file (expand-file-name file))
3510 (if (ange-ftp-ftp-name file)
3511 (file-exists-p file)
3512 (ange-ftp-real-file-readable-p file))))
3514 (defun ange-ftp-file-executable-p (file)
3515 (let ((ange-ftp-process-verbose nil))
3516 (setq file (expand-file-name file))
3517 (if (ange-ftp-ftp-name file)
3518 (file-exists-p file)
3519 (ange-ftp-real-file-executable-p file))))
3521 (defun ange-ftp-delete-file (file &optional trash)
3522 (interactive (list (read-file-name "Delete file: " nil default-directory)
3523 (null current-prefix-arg)))
3524 (setq file (expand-file-name file))
3525 (let ((parsed (ange-ftp-ftp-name file)))
3526 (if parsed
3527 (let* ((host (nth 0 parsed))
3528 (user (nth 1 parsed))
3529 (name (ange-ftp-quote-string (nth 2 parsed)))
3530 (abbr (ange-ftp-abbreviate-filename file))
3531 (result (ange-ftp-send-cmd host user
3532 (list 'delete name)
3533 (format "Deleting %s" abbr))))
3534 (or (car result)
3535 (signal 'ftp-error
3536 (list
3537 "Removing old name"
3538 (format "FTP Error: \"%s\"" (cdr result))
3539 file)))
3540 (ange-ftp-delete-file-entry file))
3541 (ange-ftp-real-delete-file file trash))))
3543 (defun ange-ftp-file-modtime (file)
3544 "Return the modification time of remote file FILE.
3545 Value is (0 0) if the modification time cannot be determined."
3546 (let* ((parsed (ange-ftp-ftp-name file))
3547 ;; At least one FTP server (wu-ftpd) can return a "226
3548 ;; Transfer complete" before the "213 MODTIME". Let's skip
3549 ;; that.
3550 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
3551 (res (ange-ftp-send-cmd (car parsed) (cadr parsed)
3552 (list 'quote "mdtm" (cadr (cdr parsed)))))
3553 (line (cdr res))
3554 (modtime '(0 0)))
3555 ;; MDTM should return "213 YYYYMMDDhhmmss" GMT on success
3556 ;; following the Internet draft for FTP extensions.
3557 ;; Bob@rattlesnake.com reports that is returns something different
3558 ;; for at least one FTP server. So, let's use the response only
3559 ;; if it matches the Internet draft.
3560 (when (string-match-p "^213 [0-9]\\{14\\}$" line)
3561 (setq modtime
3562 (encode-time
3563 (string-to-number (substring line 16 18))
3564 (string-to-number (substring line 14 16))
3565 (string-to-number (substring line 12 14))
3566 (string-to-number (substring line 10 12))
3567 (string-to-number (substring line 8 10))
3568 (string-to-number (substring line 4 8))
3569 0)))
3570 modtime))
3572 (defun ange-ftp-verify-visited-file-modtime (buf)
3573 (let ((name (buffer-file-name buf)))
3574 (if (and (stringp name) (ange-ftp-ftp-name name))
3575 (let ((file-mdtm (ange-ftp-file-modtime name))
3576 (buf-mdtm (with-current-buffer buf (visited-file-modtime))))
3577 (or (zerop (car file-mdtm))
3578 (<= (float-time file-mdtm) (float-time buf-mdtm))))
3579 (ange-ftp-real-verify-visited-file-modtime buf))))
3581 (defun ange-ftp-file-size (file &optional ascii-mode)
3582 "Return the size of remote file FILE. Return -1 if can't get it.
3583 If ascii-mode is non-nil, return the size with the extra octets that
3584 need to be inserted, one at the end of each line, to provide correct
3585 end-of-line semantics for a transfer using TYPE=A. The default is nil,
3586 so return the size on the remote host exactly. See RFC 3659."
3587 (let* ((parsed (ange-ftp-ftp-name file))
3588 (host (nth 0 parsed))
3589 (user (nth 1 parsed))
3590 (name (ange-ftp-quote-string (nth 2 parsed)))
3591 ;; At least one FTP server (wu-ftpd) can return a "226
3592 ;; Transfer complete" before the "213 SIZE". Let's skip
3593 ;; that.
3594 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
3595 (res (unwind-protect
3596 (progn
3597 (unless ascii-mode
3598 (ange-ftp-set-binary-mode host user))
3599 (ange-ftp-send-cmd host user (list 'quote "size" name)))
3600 (unless ascii-mode
3601 (ange-ftp-set-ascii-mode host user))))
3602 (line (cdr res)))
3603 (if (string-match "^213 \\([0-9]+\\)$" line)
3604 (string-to-number (match-string 1 line))
3605 -1)))
3608 ;;;; ------------------------------------------------------------
3609 ;;;; File copying support... totally re-written 6/24/92.
3610 ;;;; ------------------------------------------------------------
3612 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive)
3613 (if (file-exists-p absname)
3614 (if (not interactive)
3615 (signal 'file-already-exists (list absname))
3616 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? "
3617 absname querystring)))
3618 (signal 'file-already-exists (list absname))))))
3620 ;; async local copy commented out for now since I don't seem to get
3621 ;; the process sentinel called for some processes.
3623 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists
3624 ;; keep-date cont)
3625 ;; "Kludge to copy a local file and call a continuation when the copy
3626 ;; finishes."
3627 ;; ;; check to see if we can overwrite
3628 ;; (if (or (not ok-if-already-exists)
3629 ;; (numberp ok-if-already-exists))
3630 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3631 ;; (numberp ok-if-already-exists)))
3632 ;; (let ((proc (start-process " *copy*"
3633 ;; (generate-new-buffer "*copy*")
3634 ;; "cp"
3635 ;; filename
3636 ;; newname))
3637 ;; res)
3638 ;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
3639 ;; (process-kill-without-query proc)
3640 ;; (with-current-buffer (process-buffer proc)
3641 ;; (set (make-local-variable 'copy-cont) cont))))
3643 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status)
3644 ;; (with-current-buffer (process-buffer proc)
3645 ;; (let ((cont copy-cont)
3646 ;; (result (buffer-string)))
3647 ;; (unwind-protect
3648 ;; (if (and (string-equal status "finished\n")
3649 ;; (zerop (length result)))
3650 ;; (ange-ftp-call-cont cont t nil)
3651 ;; (ange-ftp-call-cont cont
3652 ;; nil
3653 ;; (if (zerop (length result))
3654 ;; (substring status 0 -1)
3655 ;; (substring result 0 -1))))
3656 ;; (kill-buffer (current-buffer))))))
3658 ;; this is the extended version of ange-ftp-copy-file-internal that works
3659 ;; asynchronously if asked nicely.
3660 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists
3661 keep-date &optional msg cont nowait)
3662 (setq filename (expand-file-name filename)
3663 newname (expand-file-name newname))
3665 (or (file-exists-p filename)
3666 (signal 'file-error
3667 (list "Copy file" "No such file or directory" filename)))
3669 ;; canonicalize newname if a directory.
3670 (if (file-directory-p newname)
3671 (setq newname (expand-file-name (file-name-nondirectory filename) newname)))
3673 (let ((f-parsed (ange-ftp-ftp-name filename))
3674 (t-parsed (ange-ftp-ftp-name newname)))
3676 ;; local file to local file copy?
3677 (if (and (not f-parsed) (not t-parsed))
3678 (progn
3679 (ange-ftp-real-copy-file filename newname ok-if-already-exists
3680 keep-date)
3681 (if cont
3682 (ange-ftp-call-cont cont t "Copied locally")))
3683 ;; one or both files are remote.
3684 (let* ((f-host (and f-parsed (nth 0 f-parsed)))
3685 (f-user (and f-parsed (nth 1 f-parsed)))
3686 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed))))
3687 (f-abbr (ange-ftp-abbreviate-filename filename))
3688 (t-host (and t-parsed (nth 0 t-parsed)))
3689 (t-user (and t-parsed (nth 1 t-parsed)))
3690 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed))))
3691 (t-abbr (ange-ftp-abbreviate-filename newname filename))
3692 (binary (or (ange-ftp-binary-file filename)
3693 (ange-ftp-binary-file newname)))
3694 temp1
3695 temp2)
3697 ;; check to see if we can overwrite
3698 (if (or (not ok-if-already-exists)
3699 (numberp ok-if-already-exists))
3700 (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
3701 (numberp ok-if-already-exists)))
3703 ;; do the copying.
3704 (if f-parsed
3706 ;; filename was remote.
3707 (progn
3708 (if (or (ange-ftp-use-gateway-p f-host)
3709 t-parsed)
3710 ;; have to use intermediate file if we are getting via
3711 ;; gateway machine or we are doing a remote to remote copy.
3712 (setq temp1 (ange-ftp-make-tmp-name f-host)))
3714 (if binary
3715 (ange-ftp-set-binary-mode f-host f-user))
3717 (ange-ftp-send-cmd
3718 f-host
3719 f-user
3720 (list 'get f-name (or temp1 (ange-ftp-quote-string newname)))
3721 (or msg
3722 (if (and temp1 t-parsed)
3723 (format "Getting %s" f-abbr)
3724 (format "Copying %s to %s" f-abbr t-abbr)))
3725 (list 'ange-ftp-cf1
3726 filename newname binary msg
3727 f-parsed f-host f-user f-name f-abbr
3728 t-parsed t-host t-user t-name t-abbr
3729 temp1 temp2 cont nowait)
3730 nowait))
3732 ;; filename wasn't remote. newname must be remote. call the
3733 ;; function which does the remainder of the copying work.
3734 (ange-ftp-cf1 t nil
3735 filename newname binary msg
3736 f-parsed f-host f-user f-name f-abbr
3737 t-parsed t-host t-user t-name t-abbr
3738 nil nil cont nowait))))))
3740 (defvar ange-ftp-waiting-flag nil)
3742 ;; next part of copying routine.
3743 (defun ange-ftp-cf1 (result line
3744 filename newname binary msg
3745 f-parsed f-host f-user _f-name f-abbr
3746 t-parsed t-host t-user t-name t-abbr
3747 temp1 temp2 cont nowait)
3748 (if line
3749 ;; filename must have been remote, and we must have just done a GET.
3750 (unwind-protect
3751 (or result
3752 ;; GET failed for some reason. Clean up and get out.
3753 (progn
3754 (and temp1 (ange-ftp-del-tmp-name temp1))
3755 (or cont
3756 (if ange-ftp-waiting-flag
3757 (throw 'ftp-error t)
3758 (signal 'ftp-error
3759 (list "Opening input file"
3760 (format "FTP Error: \"%s\"" line)
3761 filename))))))
3762 ;; cleanup
3763 (if binary
3764 (ange-ftp-set-ascii-mode f-host f-user))))
3766 (if result
3767 ;; We now have to copy either temp1 or filename to newname.
3768 (if t-parsed
3770 ;; newname was remote.
3771 (progn
3772 (if (ange-ftp-use-gateway-p t-host)
3773 (setq temp2 (ange-ftp-make-tmp-name t-host)))
3775 ;; make sure data is moved into the right place for the
3776 ;; outgoing transfer. gateway temporary files complicate
3777 ;; things nicely.
3778 (if temp1
3779 (if temp2
3780 (if (string-equal temp1 temp2)
3781 (setq temp1 nil)
3782 (ange-ftp-real-copy-file temp1 temp2 t))
3783 (setq temp2 temp1 temp1 nil))
3784 (if temp2
3785 (ange-ftp-real-copy-file filename temp2 t)))
3787 (if binary
3788 (ange-ftp-set-binary-mode t-host t-user))
3790 ;; tell the process filter what size the file is.
3791 (let ((attr (file-attributes (or temp2 filename))))
3792 (if attr
3793 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr))))
3795 (ange-ftp-send-cmd
3796 t-host
3797 t-user
3798 (list 'put (or temp2 (ange-ftp-quote-string filename)) t-name)
3799 (or msg
3800 (if (and temp2 f-parsed)
3801 (format "Putting %s" newname)
3802 (format "Copying %s to %s" f-abbr t-abbr)))
3803 (list 'ange-ftp-cf2
3804 newname t-host t-user binary temp1 temp2 cont)
3805 nowait)
3806 (ange-ftp-add-file-entry newname))
3808 ;; newname wasn't remote.
3809 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont))
3811 ;; first copy failed, tell caller
3812 (ange-ftp-call-cont cont result line)))
3814 ;; last part of copying routine.
3815 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont)
3816 (unwind-protect
3817 (if line
3818 ;; result from doing a local to remote copy.
3819 (unwind-protect
3820 (progn
3821 (or result
3822 (or cont
3823 (if ange-ftp-waiting-flag
3824 (throw 'ftp-error t)
3825 (signal 'ftp-error
3826 (list "Opening output file"
3827 (format "FTP Error: \"%s\"" line)
3828 newname)))))
3830 (ange-ftp-add-file-entry newname))
3832 ;; cleanup.
3833 (if binary
3834 (ange-ftp-set-ascii-mode t-host t-user)))
3836 ;; newname was local.
3837 (if temp1
3838 (ange-ftp-real-copy-file temp1 newname t)))
3840 ;; clean up
3841 (and temp1 (ange-ftp-del-tmp-name temp1))
3842 (and temp2 (ange-ftp-del-tmp-name temp2))
3843 (ange-ftp-call-cont cont result line)))
3845 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists
3846 keep-date preserve-uid-gid
3847 _preserve-selinux-context)
3848 (interactive "fCopy file: \nFCopy %s to file: \np")
3849 (ange-ftp-copy-file-internal filename
3850 newname
3851 ok-if-already-exists
3852 keep-date
3855 (called-interactively-p 'interactive)))
3857 (defun ange-ftp-copy-files-async (okay-p line verbose-p files)
3858 "Copy some files in the background.
3859 OKAY-P must be t, and LINE does not matter. They are here to make this
3860 function a valid CONT argument for `ange-ftp-raw-send-cmd'.
3861 If VERBOSE-P is non-nil, print progress report in the echo area.
3862 When all the files have been copied already, a message is shown anyway.
3863 FILES is a list of files to copy in the form
3864 (from-file to-file ok-if-already-exists keep-date)
3865 E.g.,
3866 (ange-ftp-copy-files-async t nil t '((\"a\" \"b\" t t) (\"c\" \"d\" t t)))"
3867 (unless okay-p (error "%s: %s" 'ange-ftp-copy-files-async line))
3868 (if files
3869 (let* ((ff (car files))
3870 (from-file (nth 0 ff))
3871 (to-file (nth 1 ff))
3872 (ok-if-exists (nth 2 ff))
3873 (keep-date (nth 3 ff)))
3874 (ange-ftp-copy-file-internal
3875 from-file to-file ok-if-exists keep-date
3876 (and verbose-p (format "%s --> %s" from-file to-file))
3877 (list 'ange-ftp-copy-files-async verbose-p (cdr files))
3879 (message "%s: done" 'ange-ftp-copy-files-async)))
3882 ;;;; ------------------------------------------------------------
3883 ;;;; File renaming support.
3884 ;;;; ------------------------------------------------------------
3886 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed)
3887 "Rename remote file FILENAME to remote file NEWNAME."
3888 (let ((f-host (nth 0 f-parsed))
3889 (f-user (nth 1 f-parsed))
3890 (t-host (nth 0 t-parsed))
3891 (t-user (nth 1 t-parsed)))
3892 (if (and (string-equal f-host t-host)
3893 (string-equal f-user t-user))
3894 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed)))
3895 (t-name (ange-ftp-quote-string (nth 2 t-parsed)))
3896 (cmd (list 'rename f-name t-name))
3897 (fabbr (ange-ftp-abbreviate-filename filename))
3898 (nabbr (ange-ftp-abbreviate-filename newname filename))
3899 (result (ange-ftp-send-cmd f-host f-user cmd
3900 (format "Renaming %s to %s"
3901 fabbr
3902 nabbr))))
3903 (or (car result)
3904 (signal 'ftp-error
3905 (list
3906 "Renaming"
3907 (format "FTP Error: \"%s\"" (cdr result))
3908 filename
3909 newname)))
3910 (ange-ftp-add-file-entry newname)
3911 (ange-ftp-delete-file-entry filename))
3912 (ange-ftp-copy-file-internal filename newname t nil)
3913 (delete-file filename))))
3915 (defun ange-ftp-rename-local-to-remote (filename newname)
3916 "Rename local file FILENAME to remote file NEWNAME."
3917 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3918 (nabbr (ange-ftp-abbreviate-filename newname filename))
3919 (msg (format "Renaming %s to %s" fabbr nabbr)))
3920 (ange-ftp-copy-file-internal filename newname t nil msg)
3921 (let (ange-ftp-process-verbose)
3922 (delete-file filename))))
3924 (defun ange-ftp-rename-remote-to-local (filename newname)
3925 "Rename remote file FILENAME to local file NEWNAME."
3926 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3927 (nabbr (ange-ftp-abbreviate-filename newname filename))
3928 (msg (format "Renaming %s to %s" fabbr nabbr)))
3929 (ange-ftp-copy-file-internal filename newname t nil msg)
3930 (let (ange-ftp-process-verbose)
3931 (delete-file filename))))
3933 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists)
3934 (interactive "fRename file: \nFRename %s to file: \np")
3935 (setq filename (expand-file-name filename))
3936 (setq newname (expand-file-name newname))
3937 (let* ((f-parsed (ange-ftp-ftp-name filename))
3938 (t-parsed (ange-ftp-ftp-name newname)))
3939 (if (and (or f-parsed t-parsed)
3940 (or (not ok-if-already-exists)
3941 (numberp ok-if-already-exists)))
3942 (ange-ftp-barf-or-query-if-file-exists
3943 newname
3944 "rename to it"
3945 (numberp ok-if-already-exists)))
3946 (if f-parsed
3947 (if t-parsed
3948 (ange-ftp-rename-remote-to-remote filename newname f-parsed
3949 t-parsed)
3950 (ange-ftp-rename-remote-to-local filename newname))
3951 (if t-parsed
3952 (ange-ftp-rename-local-to-remote filename newname)
3953 (ange-ftp-real-rename-file filename newname ok-if-already-exists)))))
3955 ;;;; ------------------------------------------------------------
3956 ;;;; File name completion support.
3957 ;;;; ------------------------------------------------------------
3959 ;; If the file entry is not a directory (nor a symlink pointing to a directory)
3960 ;; returns whether the file (or file pointed to by the symlink) is ignored
3961 ;; by completion-ignored-extensions.
3962 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern'
3963 ;; are used as free variables.
3964 (defun ange-ftp-file-entry-not-ignored-p (symname val)
3965 (if (stringp val)
3966 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir)))
3967 (or (file-directory-p file)
3968 (and (file-exists-p file)
3969 (not (string-match ange-ftp-completion-ignored-pattern
3970 symname)))))
3971 (or val ; is a directory name
3972 (not (string-match ange-ftp-completion-ignored-pattern symname)))))
3974 (defun ange-ftp-root-dir-p (dir)
3975 ;; Maybe we should use something more like
3976 ;; (equal dir (file-name-directory (directory-file-name dir))) -stef
3977 (or (and (eq system-type 'windows-nt)
3978 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir))
3979 (string-equal "/" dir)))
3981 (defmacro ange-ftp-ignore-errors-if-non-essential (&rest body)
3982 `(if non-essential
3983 (ignore-errors ,@body)
3984 (progn ,@body)))
3986 (defun ange-ftp-file-name-all-completions (file dir)
3987 (let ((ange-ftp-this-dir (expand-file-name dir)))
3988 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3989 (ange-ftp-ignore-errors-if-non-essential
3990 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3991 (setq ange-ftp-this-dir
3992 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir))
3993 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3994 (completions (all-completions file tbl)))
3996 ;; see whether each matching file is a directory or not...
3997 (mapcar
3998 (lambda (file)
3999 (let ((ent (gethash file tbl)))
4000 (if (and ent
4001 (or (not (stringp ent))
4002 (file-directory-p
4003 (ange-ftp-expand-symlink ent
4004 ange-ftp-this-dir))))
4005 (concat file "/")
4006 file)))
4007 completions)))
4009 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
4010 (nconc (all-completions file (ange-ftp-generate-root-prefixes))
4011 (ange-ftp-real-file-name-all-completions file
4012 ange-ftp-this-dir))
4013 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir)))))
4015 (defun ange-ftp-file-name-completion (file dir &optional predicate)
4016 (let ((ange-ftp-this-dir (expand-file-name dir)))
4017 (if (ange-ftp-ftp-name ange-ftp-this-dir)
4018 (progn
4019 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
4020 (if (equal file "")
4022 (setq ange-ftp-this-dir
4023 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real?
4024 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
4025 (ange-ftp-completion-ignored-pattern
4026 (mapconcat (lambda (s) (if (stringp s)
4027 (concat (regexp-quote s) "$")
4028 "/")) ; / never in filename
4029 completion-ignored-extensions
4030 "\\|")))
4031 (save-match-data
4032 (or (ange-ftp-file-name-completion-1
4033 file tbl ange-ftp-this-dir
4034 'ange-ftp-file-entry-not-ignored-p)
4035 (ange-ftp-file-name-completion-1
4036 file tbl ange-ftp-this-dir))))))
4038 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
4039 (try-completion
4040 file
4041 (nconc (ange-ftp-generate-root-prefixes)
4042 (ange-ftp-real-file-name-all-completions
4043 file ange-ftp-this-dir))
4044 predicate)
4045 (if predicate
4046 (ange-ftp-real-file-name-completion
4047 file ange-ftp-this-dir predicate)
4048 (ange-ftp-real-file-name-completion
4049 file ange-ftp-this-dir))))))
4052 (defun ange-ftp-file-name-completion-1 (file tbl dir &optional predicate)
4053 (let ((bestmatch (try-completion file tbl predicate)))
4054 (if bestmatch
4055 (if (eq bestmatch t)
4056 (if (file-directory-p (expand-file-name file dir))
4057 (concat file "/")
4059 (if (and (eq (try-completion bestmatch tbl predicate) t)
4060 (file-directory-p
4061 (expand-file-name bestmatch dir)))
4062 (concat bestmatch "/")
4063 bestmatch)))))
4065 ;; Put these lines uncommented in your .emacs if you want C-r to refresh
4066 ;; ange-ftp's cache whilst doing filename completion.
4068 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir)
4069 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir)
4071 ;;;###autoload
4072 (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
4074 ;;;###autoload
4075 (defun ange-ftp-reread-dir (&optional dir)
4076 "Reread remote directory DIR to update the directory cache.
4077 The implementation of remote FTP file names caches directory contents
4078 for speed. Therefore, when new remote files are created, Emacs
4079 may not know they exist. You can use this command to reread a specific
4080 directory, so that Emacs will know its current contents."
4081 (interactive)
4082 (if dir
4083 (setq dir (expand-file-name dir))
4084 (setq dir (file-name-directory (expand-file-name (buffer-string)))))
4085 (if (ange-ftp-ftp-name dir)
4086 (progn
4087 (setq ange-ftp-ls-cache-file nil)
4088 (remhash dir ange-ftp-files-hashtable)
4089 (ange-ftp-get-files dir t))))
4091 (defun ange-ftp-make-directory (dir &optional parents)
4092 (interactive (list (expand-file-name (read-directory-name "Make directory: "))))
4093 (if parents
4094 (let ((parent (file-name-directory (directory-file-name dir))))
4095 (or (file-exists-p parent)
4096 (ange-ftp-make-directory parent parents))))
4097 (if (file-exists-p dir)
4098 (unless parents
4099 (error "Cannot make directory %s: file already exists" dir))
4100 (let ((parsed (ange-ftp-ftp-name dir)))
4101 (if parsed
4102 (let* ((host (nth 0 parsed))
4103 (user (nth 1 parsed))
4104 ;; Some ftp's on unix machines (at least on Suns)
4105 ;; insist that mkdir take a filename, and not a
4106 ;; directory-name name as an arg. Argh!! This is a bug.
4107 ;; Non-unix machines will probably always insist
4108 ;; that mkdir takes a directory-name as an arg
4109 ;; (as the ftp man page says it should).
4110 (name (ange-ftp-quote-string
4111 (if (eq (ange-ftp-host-type host) 'unix)
4112 (ange-ftp-real-directory-file-name (nth 2 parsed))
4113 (ange-ftp-real-file-name-as-directory
4114 (nth 2 parsed)))))
4115 (abbr (ange-ftp-abbreviate-filename dir))
4116 (result (ange-ftp-send-cmd host user
4117 (list 'mkdir name)
4118 (format "Making directory %s"
4119 abbr))))
4120 (or (car result)
4121 (ange-ftp-error host user
4122 (format "Could not make directory %s: %s"
4124 (cdr result))))
4125 (ange-ftp-add-file-entry dir t))
4126 (ange-ftp-real-make-directory dir)))))
4128 (defun ange-ftp-delete-directory (dir &optional recursive)
4129 (if (file-directory-p dir)
4130 (let ((parsed (ange-ftp-ftp-name dir)))
4131 (if recursive
4132 (mapc
4133 (lambda (file)
4134 (if (file-directory-p file)
4135 (ange-ftp-delete-directory file recursive)
4136 (delete-file file)))
4137 ;; We do not want to delete "." and "..".
4138 (directory-files
4139 dir 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
4140 (if parsed
4141 (let* ((host (nth 0 parsed))
4142 (user (nth 1 parsed))
4143 ;; Some ftp's on unix machines (at least on Suns)
4144 ;; insist that rmdir take a filename, and not a
4145 ;; directory-name name as an arg. Argh!! This is a bug.
4146 ;; Non-unix machines will probably always insist
4147 ;; that rmdir takes a directory-name as an arg
4148 ;; (as the ftp man page says it should).
4149 (name (ange-ftp-quote-string
4150 (if (eq (ange-ftp-host-type host) 'unix)
4151 (ange-ftp-real-directory-file-name
4152 (nth 2 parsed))
4153 (ange-ftp-real-file-name-as-directory
4154 (nth 2 parsed)))))
4155 (abbr (ange-ftp-abbreviate-filename dir))
4156 (result
4157 (progn
4158 ;; CWD must not in this directory.
4159 (ange-ftp-cd host user "/" 'noerror)
4160 (ange-ftp-send-cmd host user
4161 (list 'rmdir name)
4162 (format "Removing directory %s"
4163 abbr)))))
4164 (or (car result)
4165 (ange-ftp-error host user
4166 (format "Could not remove directory %s: %s"
4168 (cdr result))))
4169 (ange-ftp-delete-file-entry dir t))
4170 (ange-ftp-real-delete-directory dir recursive)))
4171 (error "Not a directory: %s" dir)))
4173 ;; Make a local copy of FILE and return its name.
4175 (defun ange-ftp-file-local-copy (file)
4176 (let* ((fn1 (expand-file-name file))
4177 (pa1 (ange-ftp-ftp-name fn1)))
4178 (if pa1
4179 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)
4180 (file-name-extension file t))))
4181 (ange-ftp-copy-file-internal fn1 tmp1 t nil
4182 (format "Getting %s" fn1))
4183 tmp1))))
4185 (defun ange-ftp-file-remote-p (file &optional identification connected)
4186 (let* ((parsed (ange-ftp-ftp-name file))
4187 (host (nth 0 parsed))
4188 (user (nth 1 parsed))
4189 (localname (nth 2 parsed)))
4190 (and (or (not connected)
4191 (let ((proc (get-process (ange-ftp-ftp-process-buffer host user))))
4192 (and proc (processp proc)
4193 (memq (process-status proc) '(run open)))))
4194 (cond
4195 ((eq identification 'method) (and parsed "ftp"))
4196 ((eq identification 'user) user)
4197 ((eq identification 'host) host)
4198 ((eq identification 'localname) localname)
4199 (t (ange-ftp-replace-name-component file ""))))))
4201 (defun ange-ftp-load (file &optional noerror nomessage nosuffix)
4202 (if (ange-ftp-ftp-name file)
4203 (let ((tryfiles (if nosuffix
4204 (list file)
4205 (list (concat file ".elc") (concat file ".el") file)))
4206 ;; make sure there are no references to temp files
4207 (load-force-doc-strings t)
4208 copy)
4209 (while (and tryfiles (not copy))
4210 (catch 'ftp-error
4211 (let ((ange-ftp-waiting-flag t))
4212 (condition-case _error
4213 (setq copy (ange-ftp-file-local-copy (car tryfiles)))
4214 (ftp-error nil))))
4215 (setq tryfiles (cdr tryfiles)))
4216 (if copy
4217 (unwind-protect
4218 (funcall 'load copy noerror nomessage nosuffix)
4219 (delete-file copy))
4220 (or noerror
4221 (signal 'file-error (list "Cannot open load file" file)))
4222 nil))
4223 (ange-ftp-real-load file noerror nomessage nosuffix)))
4225 ;; Calculate default-unhandled-directory for a given ange-ftp buffer.
4226 (defun ange-ftp-unhandled-file-name-directory (_filename)
4227 nil)
4230 ;; Need the following functions for making filenames of compressed
4231 ;; files, because some OS's (unlike UNIX) do not allow a filename to
4232 ;; have two extensions.
4234 (defvar ange-ftp-make-compressed-filename-alist nil
4235 "Alist of host-type-specific functions to process file names for compression.
4236 Each element has the form (TYPE . FUNC).
4237 FUNC should take one argument, a file name, and return a list
4238 of the form (COMPRESSING NEWNAME).
4239 COMPRESSING should be t if the specified file should be compressed,
4240 and nil if it should be uncompressed (that is, if it is a compressed file).
4241 NEWNAME should be the name to give the new compressed or uncompressed file.")
4243 (declare-function dired-compress-file "dired-aux" (file))
4245 (defun ange-ftp-dired-compress-file (name)
4246 "Handler used by `dired-compress-file'."
4247 (let ((parsed (ange-ftp-ftp-name name))
4248 conversion-func)
4249 (if (and parsed
4250 (setq conversion-func
4251 (cdr (assq (ange-ftp-host-type (car parsed))
4252 ange-ftp-make-compressed-filename-alist))))
4253 (let* ((decision
4254 (save-match-data (funcall conversion-func name)))
4255 (compressing (car decision))
4256 (newfile (nth 1 decision)))
4257 (if compressing
4258 (ange-ftp-compress name newfile)
4259 (ange-ftp-uncompress name newfile)))
4260 (let (file-name-handler-alist)
4261 (dired-compress-file name)))))
4263 ;; Copy FILE to this machine, compress it, and copy out to NFILE.
4264 (defun ange-ftp-compress (file nfile)
4265 (let* ((parsed (ange-ftp-ftp-name file))
4266 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4267 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4268 (abbr (ange-ftp-abbreviate-filename file))
4269 (nabbr (ange-ftp-abbreviate-filename nfile))
4270 (msg1 (format "Getting %s" abbr))
4271 (msg2 (format "Putting %s" nabbr)))
4272 (unwind-protect
4273 (progn
4274 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4275 (and ange-ftp-process-verbose
4276 (ange-ftp-message "Compressing %s..." abbr))
4277 (call-process-region (point)
4278 (point)
4279 shell-file-name
4283 "-c"
4284 (format "compress -f -c < %s > %s" tmp1 tmp2))
4285 (and ange-ftp-process-verbose
4286 (ange-ftp-message "Compressing %s...done" abbr))
4287 (if (zerop (buffer-size))
4288 (progn
4289 (let (ange-ftp-process-verbose)
4290 (delete-file file))
4291 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4292 (ange-ftp-del-tmp-name tmp1)
4293 (ange-ftp-del-tmp-name tmp2))))
4295 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE.
4296 (defun ange-ftp-uncompress (file nfile)
4297 (let* ((parsed (ange-ftp-ftp-name file))
4298 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4299 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4300 (abbr (ange-ftp-abbreviate-filename file))
4301 (nabbr (ange-ftp-abbreviate-filename nfile))
4302 (msg1 (format "Getting %s" abbr))
4303 (msg2 (format "Putting %s" nabbr))
4304 ;; ;; Cheap hack because of problems with binary file transfers from
4305 ;; ;; VMS hosts.
4306 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed)))))
4308 (unwind-protect
4309 (progn
4310 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4311 (and ange-ftp-process-verbose
4312 (ange-ftp-message "Uncompressing %s..." abbr))
4313 (call-process-region (point)
4314 (point)
4315 shell-file-name
4319 "-c"
4320 (format "uncompress -c < %s > %s" tmp1 tmp2))
4321 (and ange-ftp-process-verbose
4322 (ange-ftp-message "Uncompressing %s...done" abbr))
4323 (if (zerop (buffer-size))
4324 (progn
4325 (let (ange-ftp-process-verbose)
4326 (delete-file file))
4327 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4328 (ange-ftp-del-tmp-name tmp1)
4329 (ange-ftp-del-tmp-name tmp2))))
4331 (defun ange-ftp-find-backup-file-name (fn)
4332 ;; Either return the ordinary backup name, etc.,
4333 ;; or return nil meaning don't make a backup.
4334 (if ange-ftp-make-backup-files
4335 (ange-ftp-real-find-backup-file-name fn)))
4337 ;;; Define the handler for special file names
4338 ;;; that causes ange-ftp to be invoked.
4340 ;;;###autoload
4341 (defun ange-ftp-hook-function (operation &rest args)
4342 (let ((fn (get operation 'ange-ftp)))
4343 (if fn
4344 ;; Catch also errors in process-filter.
4345 (condition-case err
4346 (let ((debug-on-error t))
4347 (save-match-data (apply fn args)))
4348 (error (signal (car err) (cdr err))))
4349 (ange-ftp-run-real-handler operation args))))
4351 ;; The following code is commented out because Tramp now deals with
4352 ;; Ange-FTP filenames, too.
4354 ;;-;;; This regexp takes care of real ange-ftp file names (with a slash
4355 ;;-;;; and colon).
4356 ;;-;;; Don't allow the host name to end in a period--some systems use /.:
4357 ;;-;;;###autoload
4358 ;;-(or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist)
4359 ;;- (setq file-name-handler-alist
4360 ;;- (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function)
4361 ;;- file-name-handler-alist)))
4363 ;;-;;; This regexp recognizes absolute filenames with only one component,
4364 ;;-;;; for the sake of hostname completion.
4365 ;;-;;;###autoload
4366 ;;-(or (assoc "^/[^/:]*\\'" file-name-handler-alist)
4367 ;;- (setq file-name-handler-alist
4368 ;;- (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function)
4369 ;;- file-name-handler-alist)))
4371 ;;-;;; This regexp recognizes absolute filenames with only one component
4372 ;;-;;; on Windows, for the sake of hostname completion.
4373 ;;-;;; NB. Do not mark this as autoload, because it is very common to
4374 ;;-;;; do completions in the root directory of drives on Windows.
4375 ;;-(and (memq system-type '(ms-dos windows-nt))
4376 ;;- (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist)
4377 ;;- (setq file-name-handler-alist
4378 ;;- (cons '("^[a-zA-Z]:/[^/:]*\\'" .
4379 ;;- ange-ftp-completion-hook-function)
4380 ;;- file-name-handler-alist))))
4382 ;;; The above two forms are sufficient to cause this file to be loaded
4383 ;;; if the user ever uses a file name with a colon in it.
4385 ;;; This sets the mode
4386 (add-hook 'find-file-hook 'ange-ftp-set-buffer-mode)
4388 ;;; Now say where to find the handlers for particular operations.
4390 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory)
4391 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory)
4392 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory)
4393 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name)
4394 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name)
4395 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory)
4396 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory)
4397 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents)
4398 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files)
4399 (put 'directory-files-and-attributes 'ange-ftp
4400 'ange-ftp-directory-files-and-attributes)
4401 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p)
4402 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p)
4403 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p)
4404 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p)
4405 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p)
4406 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file)
4407 (put 'verify-visited-file-modtime 'ange-ftp
4408 'ange-ftp-verify-visited-file-modtime)
4409 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p)
4410 (put 'write-region 'ange-ftp 'ange-ftp-write-region)
4411 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file)
4412 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file)
4413 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes)
4414 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p)
4415 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions)
4416 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion)
4417 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory)
4418 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy)
4419 (put 'file-remote-p 'ange-ftp 'ange-ftp-file-remote-p)
4420 (put 'unhandled-file-name-directory 'ange-ftp
4421 'ange-ftp-unhandled-file-name-directory)
4422 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions)
4423 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache)
4424 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file)
4425 (put 'load 'ange-ftp 'ange-ftp-load)
4426 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name)
4427 (put 'set-file-modes 'ange-ftp 'ange-ftp-set-file-modes)
4429 ;; Turn off truename processing to save time.
4430 ;; Treat each name as its own truename.
4431 (put 'file-truename 'ange-ftp 'identity)
4433 ;; We must return non-nil in order to mask our inability to do the job.
4434 ;; Otherwise there are errors when applied to the target file during
4435 ;; copying from a (localhost) Tramp file.
4436 (put 'set-file-times 'ange-ftp 'ignore)
4438 ;; Turn off RCS/SCCS processing to save time.
4439 ;; This returns nil for any file name as argument.
4440 (put 'vc-registered 'ange-ftp 'null)
4442 ;; We can handle process-file in a restricted way (just for chown).
4443 ;; Nothing possible for `start-file-process'.
4444 (put 'process-file 'ange-ftp 'ange-ftp-process-file)
4445 (put 'start-file-process 'ange-ftp 'ignore)
4446 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command)
4448 ;;; Define ways of getting at unmodified Emacs primitives,
4449 ;;; turning off our handler.
4451 (defun ange-ftp-run-real-handler-orig (operation args)
4452 (let ((inhibit-file-name-handlers
4453 (cons 'ange-ftp-hook-function
4454 (cons 'ange-ftp-completion-hook-function
4455 (and (eq inhibit-file-name-operation operation)
4456 inhibit-file-name-handlers))))
4457 (inhibit-file-name-operation operation))
4458 (apply operation args)))
4460 (defalias 'ange-ftp-run-real-handler
4461 (if (fboundp 'tramp-run-real-handler)
4462 'tramp-run-real-handler 'ange-ftp-run-real-handler-orig))
4464 (defun ange-ftp-real-file-name-directory (&rest args)
4465 (ange-ftp-run-real-handler 'file-name-directory args))
4466 (defun ange-ftp-real-file-name-nondirectory (&rest args)
4467 (ange-ftp-run-real-handler 'file-name-nondirectory args))
4468 (defun ange-ftp-real-file-name-as-directory (&rest args)
4469 (ange-ftp-run-real-handler 'file-name-as-directory args))
4470 (defun ange-ftp-real-directory-file-name (&rest args)
4471 (ange-ftp-run-real-handler 'directory-file-name args))
4472 (defun ange-ftp-real-expand-file-name (&rest args)
4473 (ange-ftp-run-real-handler 'expand-file-name args))
4474 (defun ange-ftp-real-make-directory (&rest args)
4475 (ange-ftp-run-real-handler 'make-directory args))
4476 (defun ange-ftp-real-delete-directory (&rest args)
4477 (ange-ftp-run-real-handler 'delete-directory args))
4478 (defun ange-ftp-real-insert-file-contents (&rest args)
4479 (ange-ftp-run-real-handler 'insert-file-contents args))
4480 (defun ange-ftp-real-directory-files (&rest args)
4481 (ange-ftp-run-real-handler 'directory-files args))
4482 (defun ange-ftp-real-directory-files-and-attributes (&rest args)
4483 (ange-ftp-run-real-handler 'directory-files-and-attributes args))
4484 (defun ange-ftp-real-file-directory-p (&rest args)
4485 (ange-ftp-run-real-handler 'file-directory-p args))
4486 (defun ange-ftp-real-file-writable-p (&rest args)
4487 (ange-ftp-run-real-handler 'file-writable-p args))
4488 (defun ange-ftp-real-file-readable-p (&rest args)
4489 (ange-ftp-run-real-handler 'file-readable-p args))
4490 (defun ange-ftp-real-file-executable-p (&rest args)
4491 (ange-ftp-run-real-handler 'file-executable-p args))
4492 (defun ange-ftp-real-file-symlink-p (&rest args)
4493 (ange-ftp-run-real-handler 'file-symlink-p args))
4494 (defun ange-ftp-real-delete-file (&rest args)
4495 (ange-ftp-run-real-handler 'delete-file args))
4496 (defun ange-ftp-real-verify-visited-file-modtime (&rest args)
4497 (ange-ftp-run-real-handler 'verify-visited-file-modtime args))
4498 (defun ange-ftp-real-file-exists-p (&rest args)
4499 (ange-ftp-run-real-handler 'file-exists-p args))
4500 (defun ange-ftp-real-write-region (&rest args)
4501 (ange-ftp-run-real-handler 'write-region args))
4502 (defun ange-ftp-real-backup-buffer (&rest args)
4503 (ange-ftp-run-real-handler 'backup-buffer args))
4504 (defun ange-ftp-real-copy-file (&rest args)
4505 (ange-ftp-run-real-handler 'copy-file args))
4506 (defun ange-ftp-real-rename-file (&rest args)
4507 (ange-ftp-run-real-handler 'rename-file args))
4508 (defun ange-ftp-real-file-attributes (&rest args)
4509 (ange-ftp-run-real-handler 'file-attributes args))
4510 (defun ange-ftp-real-file-newer-than-file-p (&rest args)
4511 (ange-ftp-run-real-handler 'file-newer-than-file-p args))
4512 (defun ange-ftp-real-file-name-all-completions (&rest args)
4513 (ange-ftp-run-real-handler 'file-name-all-completions args))
4514 (defun ange-ftp-real-file-name-completion (&rest args)
4515 (ange-ftp-run-real-handler 'file-name-completion args))
4516 (defun ange-ftp-real-insert-directory (&rest args)
4517 (ange-ftp-run-real-handler 'insert-directory args))
4518 (defun ange-ftp-real-file-name-sans-versions (&rest args)
4519 (ange-ftp-run-real-handler 'file-name-sans-versions args))
4520 (defun ange-ftp-real-shell-command (&rest args)
4521 (ange-ftp-run-real-handler 'shell-command args))
4522 (defun ange-ftp-real-load (&rest args)
4523 (ange-ftp-run-real-handler 'load args))
4524 (defun ange-ftp-real-find-backup-file-name (&rest args)
4525 (ange-ftp-run-real-handler 'find-backup-file-name args))
4527 ;; Here we support using dired on remote hosts.
4528 ;; I have turned off the support for using dired on foreign directory formats.
4529 ;; That involves too many unclean hooks.
4530 ;; It would be cleaner to support such operations by
4531 ;; converting the foreign directory format to something dired can understand;
4532 ;; something close to ls -l output.
4533 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing.
4535 ;; Some of the old dired hooks would still be needed even if this is done.
4536 ;; I have preserved (and modernized) those hooks.
4537 ;; So the format conversion should be all that is needed.
4539 ;; When called from dired, SWITCHES may start with "--dired".
4540 ;; `ange-ftp-ls' handles this.
4542 (defun ange-ftp-insert-directory (file switches &optional wildcard full)
4543 (if (not (ange-ftp-ftp-name (expand-file-name file)))
4544 (ange-ftp-real-insert-directory file switches wildcard full)
4545 ;; We used to follow symlinks on `file' here. Apparently it was done
4546 ;; because some FTP servers react to "ls foo" by listing the symlink foo
4547 ;; rather than the directory it points to. Now that ange-ftp-ls uses
4548 ;; "cd foo; ls" instead, this is not necessary any more.
4549 (let ((beg (point))
4550 (end (point-marker)))
4551 (set-marker-insertion-type end t)
4552 (insert
4553 (cond
4554 (wildcard
4555 (let ((default-directory (file-name-directory file)))
4556 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)))
4557 (full
4558 (ange-ftp-ls file switches 'parse))
4560 ;; If `full' is nil we're going to do `ls' for a single file.
4561 ;; Problem is that for various reasons, ange-ftp-ls needs to cd and
4562 ;; then do an ls of current dir, which obviously won't work if we
4563 ;; want to ls a file. So instead, we get a full listing of the
4564 ;; parent directory and extract the line corresponding to `file'.
4565 (when (string-match "-?d\\'" switches)
4566 ;; Remove "d" which dired added to `switches'.
4567 (setq switches (substring switches 0 (match-beginning 0))))
4568 (setq file (directory-file-name file))
4569 (let* ((dirlist (ange-ftp-ls (or (file-name-directory file) ".")
4570 switches 'parse))
4571 (filename (file-name-nondirectory file))
4572 (case-fold-search nil))
4573 ;; FIXME: This presumes a particular output format, which is
4574 ;; basically Unix.
4575 (if (string-match (concat "^.+[^ ] " (regexp-quote filename)
4576 "\\( -> .*\\)?[@/*=]?\n") dirlist)
4577 (match-string 0 dirlist)
4578 "")))))
4580 ;; Insert " " for dired's alignment sanity.
4581 (goto-char beg)
4582 (while (re-search-forward "^\\(\\S-\\)" end 'move)
4583 (replace-match " \\1"))
4585 ;; The inserted file could be from somewhere else.
4586 (when (and (not wildcard) (not full)
4587 (search-backward
4588 (if (zerop (length (file-name-nondirectory
4589 (expand-file-name file))))
4591 (file-name-nondirectory file))
4592 nil 'noerror))
4593 (replace-match (file-relative-name (expand-file-name file)) t)
4594 (goto-char end))
4596 (set-marker end nil))))
4598 (defun ange-ftp-dired-uncache (dir)
4599 (if (ange-ftp-ftp-name (expand-file-name dir))
4600 (setq ange-ftp-ls-cache-file nil)))
4602 (defvar ange-ftp-sans-version-alist nil
4603 "Alist of mapping host type into function to remove file version numbers.")
4605 (defun ange-ftp-file-name-sans-versions (file keep-backup-version)
4606 (let* ((short (ange-ftp-abbreviate-filename file))
4607 (parsed (ange-ftp-ftp-name short))
4608 (func (if parsed (cdr (assq (ange-ftp-host-type (car parsed))
4609 ange-ftp-sans-version-alist)))))
4610 (if func (funcall func file keep-backup-version)
4611 (ange-ftp-real-file-name-sans-versions file keep-backup-version))))
4613 ;; This is the handler for shell-command.
4614 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer)
4615 (let* ((parsed (ange-ftp-ftp-name default-directory))
4616 (host (nth 0 parsed))
4617 (name (nth 2 parsed)))
4618 (if (not parsed)
4619 (ange-ftp-real-shell-command command output-buffer error-buffer)
4620 (if (> (length name) 0) ; else it's $HOME
4621 (setq command (concat "cd " name "; " command)))
4622 ;; Remove port from the hostname
4623 (when (string-match "\\(.*\\)#" host)
4624 (setq host (match-string 1 host)))
4625 (setq command
4626 (format "%s %s \"%s\"" ; remsh -l USER does not work well
4627 ; on a hp-ux machine I tried
4628 remote-shell-program host command))
4629 (ange-ftp-message "Remote command `%s' ..." command)
4630 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it
4631 ;; would prepend "cd default-directory" --- which bombs because
4632 ;; default-directory is in ange-ftp syntax for remote file names.
4633 (ange-ftp-real-shell-command command output-buffer error-buffer))))
4635 ;;; This is the handler for process-file.
4636 (defun ange-ftp-process-file (program infile buffer display &rest arguments)
4637 ;; PROGRAM is always one of those below in the cond in dired.el.
4638 ;; The ARGUMENTS are (nearly) always files.
4639 (if (ange-ftp-ftp-name default-directory)
4640 ;; Can't use ange-ftp-dired-host-type here because the current
4641 ;; buffer is *dired-check-process output*
4642 (condition-case oops
4643 (cond ((equal (or (bound-and-true-p dired-chmod-program) "chmod")
4644 program)
4645 (ange-ftp-call-chmod arguments))
4646 ;; ((equal "chgrp" program))
4647 ;; ((equal dired-chown-program program))
4648 (t (error "Unknown remote command: %s" program)))
4649 (ftp-error (insert (format "%s: %s, %s\n"
4650 (nth 1 oops)
4651 (nth 2 oops)
4652 (nth 3 oops)))
4653 ;; Caller expects nonzero value to mean failure.
4655 (error (insert (format "%s\n" (nth 1 oops)))
4657 (apply 'call-process program infile buffer display arguments)))
4659 ;; Handle an attempt to run chmod on a remote file
4660 ;; by using the ftp chmod command.
4661 (defun ange-ftp-call-chmod (args)
4662 (if (< (length args) 2)
4663 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args))
4664 (let ((mode (car args))
4665 (rest (cdr args)))
4666 (if (equal "--" (car rest))
4667 (setq rest (cdr rest)))
4668 (mapc
4669 (lambda (file)
4670 (setq file (expand-file-name file))
4671 (let ((parsed (ange-ftp-ftp-name file)))
4672 (if parsed
4673 (let* ((host (nth 0 parsed))
4674 (user (nth 1 parsed))
4675 (name (ange-ftp-quote-string (nth 2 parsed)))
4676 (abbr (ange-ftp-abbreviate-filename file))
4677 (result (ange-ftp-send-cmd host user
4678 (list 'chmod mode name)
4679 (format "doing chmod %s"
4680 abbr))))
4681 (or (car result)
4682 (ange-ftp-error
4683 host user (concat "CHMOD failed: " (cdr result))))))))
4684 rest))
4685 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired.
4688 (defun ange-ftp-set-file-modes (filename mode)
4689 (ange-ftp-call-chmod (list (format "%o" mode) filename)))
4691 ;; This is turned off because it has nothing properly to do
4692 ;; with dired. It could be reasonable to adapt this to
4693 ;; replace ange-ftp-copy-file.
4695 ;;;;; ------------------------------------------------------------
4696 ;;;;; Noddy support for async copy-file within dired.
4697 ;;;;; ------------------------------------------------------------
4699 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait)
4700 ;; "Documented as original."
4701 ;; (dired-handle-overwrite to)
4702 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil
4703 ;; cont nowait))
4705 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg
4706 ;; &optional marker-char op1
4707 ;; how-to)
4708 ;; "Documented as original."
4709 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly
4710 ;; ;; called it rather than somebody else.
4711 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is
4712 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation
4713 ;; arg marker-char op1 how-to)))
4715 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor
4716 ;; &optional marker-char)
4717 ;; "Documented as original."
4718 ;; (if (and (boundp 'ange-ftp-dired-do-create-files)
4719 ;; ;; called from ange-ftp-dired-do-create-files?
4720 ;; ange-ftp-dired-do-create-files
4721 ;; ;; any files worth copying?
4722 ;; fn-list
4723 ;; ;; we only support async copy-file at the mo.
4724 ;; (eq file-creator 'dired-copy-file)
4725 ;; ;; it is only worth calling the alternative function for remote files
4726 ;; ;; as we tie ourself in recursive knots otherwise.
4727 ;; (or (ange-ftp-ftp-name (car fn-list))
4728 ;; ;; we can only call the name constructor for dired-do-create-files
4729 ;; ;; since the one for regexps starts prompting here, there and
4730 ;; ;; everywhere.
4731 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list)))))
4732 ;; ;; use the process-filter driven routine rather than the iterative one.
4733 ;; (ange-ftp-dcf-1 file-creator
4734 ;; operation
4735 ;; fn-list
4736 ;; name-constructor
4737 ;; (and (boundp 'target) target) ;dynamically bound
4738 ;; marker-char
4739 ;; (current-buffer)
4740 ;; nil ;overwrite-query
4741 ;; nil ;overwrite-backup-query
4742 ;; nil ;failures
4743 ;; nil ;skipped
4744 ;; 0 ;success-count
4745 ;; (length fn-list) ;total
4746 ;; )
4747 ;; ;; normal case... use the interactive routine... much cheaper.
4748 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list
4749 ;; name-constructor marker-char)))
4751 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor
4752 ;; target marker-char buffer overwrite-query
4753 ;; overwrite-backup-query failures skipped
4754 ;; success-count total)
4755 ;; (with-current-buffer buffer
4756 ;; (if (null fn-list)
4757 ;; (ange-ftp-dcf-3 failures operation total skipped
4758 ;; success-count buffer)
4760 ;; (let* ((from (car fn-list))
4761 ;; (to (funcall name-constructor from)))
4762 ;; (if (equal to from)
4763 ;; (progn
4764 ;; (setq to nil)
4765 ;; (dired-log "Cannot %s to same file: %s\n"
4766 ;; (downcase operation) from)))
4767 ;; (if (not to)
4768 ;; (ange-ftp-dcf-1 file-creator
4769 ;; operation
4770 ;; (cdr fn-list)
4771 ;; name-constructor
4772 ;; target
4773 ;; marker-char
4774 ;; buffer
4775 ;; overwrite-query
4776 ;; overwrite-backup-query
4777 ;; failures
4778 ;; (cons (dired-make-relative from) skipped)
4779 ;; success-count
4780 ;; total)
4781 ;; (let* ((overwrite (file-exists-p to))
4782 ;; (overwrite-confirmed ; for dired-handle-overwrite
4783 ;; (and overwrite
4784 ;; (let ((help-form '(format "\
4785 ;;Type SPC or `y' to overwrite file `%s',
4786 ;;DEL or `n' to skip to next,
4787 ;;ESC or `q' to not overwrite any of the remaining files,
4788 ;;`!' to overwrite all remaining files with no more questions." to)))
4789 ;; (dired-query 'overwrite-query
4790 ;; "Overwrite `%s'?" to))))
4791 ;; ;; must determine if FROM is marked before file-creator
4792 ;; ;; gets a chance to delete it (in case of a move).
4793 ;; (actual-marker-char
4794 ;; (cond ((integerp marker-char) marker-char)
4795 ;; (marker-char (dired-file-marker from)) ; slow
4796 ;; (t nil))))
4797 ;; (condition-case err
4798 ;; (funcall file-creator from to overwrite-confirmed
4799 ;; (list 'ange-ftp-dcf-2
4800 ;; nil ;err
4801 ;; file-creator operation fn-list
4802 ;; name-constructor
4803 ;; target
4804 ;; marker-char actual-marker-char
4805 ;; buffer to from
4806 ;; overwrite
4807 ;; overwrite-confirmed
4808 ;; overwrite-query
4809 ;; overwrite-backup-query
4810 ;; failures skipped success-count
4811 ;; total)
4812 ;; t)
4813 ;; (file-error ; FILE-CREATOR aborted
4814 ;; (ange-ftp-dcf-2 nil ;result
4815 ;; nil ;line
4816 ;; err
4817 ;; file-creator operation fn-list
4818 ;; name-constructor
4819 ;; target
4820 ;; marker-char actual-marker-char
4821 ;; buffer to from
4822 ;; overwrite
4823 ;; overwrite-confirmed
4824 ;; overwrite-query
4825 ;; overwrite-backup-query
4826 ;; failures skipped success-count
4827 ;; total)))))))))
4829 ;;(defun ange-ftp-dcf-2 (result line err
4830 ;; file-creator operation fn-list
4831 ;; name-constructor
4832 ;; target
4833 ;; marker-char actual-marker-char
4834 ;; buffer to from
4835 ;; overwrite
4836 ;; overwrite-confirmed
4837 ;; overwrite-query
4838 ;; overwrite-backup-query
4839 ;; failures skipped success-count
4840 ;; total)
4841 ;; (with-current-buffer buffer
4842 ;; (if (or err (not result))
4843 ;; (progn
4844 ;; (setq failures (cons (dired-make-relative from) failures))
4845 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n"
4846 ;; operation from to (or err line)))
4847 ;; (if overwrite
4848 ;; ;; If we get here, file-creator hasn't been aborted
4849 ;; ;; and the old entry (if any) has to be deleted
4850 ;; ;; before adding the new entry.
4851 ;; (dired-remove-file to))
4852 ;; (setq success-count (1+ success-count))
4853 ;; (message "%s: %d of %d" operation success-count total)
4854 ;; (dired-add-file to actual-marker-char))
4856 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list)
4857 ;; name-constructor
4858 ;; target
4859 ;; marker-char
4860 ;; buffer
4861 ;; overwrite-query
4862 ;; overwrite-backup-query
4863 ;; failures skipped success-count
4864 ;; total)))
4866 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count
4867 ;; buffer)
4868 ;; (with-current-buffer buffer
4869 ;; (cond
4870 ;; (failures
4871 ;; (dired-log-summary
4872 ;; (message "%s failed for %d of %d file%s %s"
4873 ;; operation (length failures) total
4874 ;; (dired-plural-s total) failures)))
4875 ;; (skipped
4876 ;; (dired-log-summary
4877 ;; (message "%s: %d of %d file%s skipped %s"
4878 ;; operation (length skipped) total
4879 ;; (dired-plural-s total) skipped)))
4880 ;; (t
4881 ;; (message "%s: %s file%s."
4882 ;; operation success-count (dired-plural-s success-count))))
4883 ;; (dired-move-to-filename)))
4885 ;;;; -----------------------------------------------
4886 ;;;; Unix Descriptive Listing (dl) Support
4887 ;;;; -----------------------------------------------
4889 ;; This is turned off because nothing uses it currently
4890 ;; and because I don't understand what it's supposed to be for. --rms.
4892 ;;(defconst ange-ftp-dired-dl-re-dir
4893 ;; "^. [^ /]+/[ \n]"
4894 ;; "Regular expression to use to search for dl directories.")
4896 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist)
4897 ;; (setq ange-ftp-dired-re-dir-alist
4898 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir)
4899 ;; ange-ftp-dired-re-dir-alist)))
4901 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol)
4902 ;; "In dired, move to the first character of the filename on this line."
4903 ;; ;; This is the Unix dl version.
4904 ;; (or eol (setq eol (progn (end-of-line) (point))))
4905 ;; (let (case-fold-search)
4906 ;; (beginning-of-line)
4907 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ")
4908 ;; (goto-char (+ (point) 2))
4909 ;; (if raise-error
4910 ;; (error "No file on this line")
4911 ;; nil))))
4913 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist)
4914 ;; (setq ange-ftp-dired-move-to-filename-alist
4915 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename)
4916 ;; ange-ftp-dired-move-to-filename-alist)))
4918 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol)
4919 ;; ;; Assumes point is at beginning of filename.
4920 ;; ;; So, it should be called only after (dired-move-to-filename t).
4921 ;; ;; On failure, signals an error or returns nil.
4922 ;; ;; This is the Unix dl version.
4923 ;; (let ((opoint (point))
4924 ;; case-fold-search hidden)
4925 ;; (or eol (setq eol (line-end-position)))
4926 ;; (setq hidden (and selective-display
4927 ;; (save-excursion
4928 ;; (search-forward "\r" eol t))))
4929 ;; (if hidden
4930 ;; (if no-error
4931 ;; nil
4932 ;; (error
4933 ;; (substitute-command-keys
4934 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
4935 ;; (skip-chars-forward "^ /" eol)
4936 ;; (if (eq opoint (point))
4937 ;; (if no-error
4938 ;; nil
4939 ;; (error "No file on this line"))
4940 ;; (point)))))
4942 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist)
4943 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4944 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename)
4945 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
4947 ;;;; ------------------------------------------------------------
4948 ;;;; VOS support (VOS support is probably broken,
4949 ;;;; but I don't know anything about VOS.)
4950 ;;;; ------------------------------------------------------------
4952 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse)
4953 ; (setq name (copy-sequence name))
4954 ; (let ((from (if reverse ?\> ?\/))
4955 ; (to (if reverse ?\/ ?\>))
4956 ; (i (1- (length name))))
4957 ; (while (>= i 0)
4958 ; (if (= (aref name i) from)
4959 ; (aset name i to))
4960 ; (setq i (1- i)))
4961 ; name))
4963 ;(or (assq 'vos ange-ftp-fix-name-func-alist)
4964 ; (setq ange-ftp-fix-name-func-alist
4965 ; (cons '(vos . ange-ftp-fix-name-for-vos)
4966 ; ange-ftp-fix-name-func-alist)))
4968 ;(or (memq 'vos ange-ftp-dumb-host-types)
4969 ; (setq ange-ftp-dumb-host-types
4970 ; (cons 'vos ange-ftp-dumb-host-types)))
4972 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name)
4973 ; (ange-ftp-fix-name-for-vos
4974 ; (concat dir-name
4975 ; (if (eq ?/ (aref dir-name (1- (length dir-name))))
4976 ; "" "/")
4977 ; "*")))
4979 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist)
4980 ; (setq ange-ftp-fix-dir-name-func-alist
4981 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos)
4982 ; ange-ftp-fix-dir-name-func-alist)))
4984 ;(defvar ange-ftp-vos-host-regexp nil
4985 ; "If a host matches this regexp then it is assumed to be running VOS.")
4987 ;(defun ange-ftp-vos-host (host)
4988 ; (and ange-ftp-vos-host-regexp
4989 ; (save-match-data
4990 ; (string-match ange-ftp-vos-host-regexp host))))
4992 ;(defun ange-ftp-parse-vos-listing ()
4993 ; "Parse the current buffer which is assumed to be in VOS list -all
4994 ;format, and return a hashtable as the result."
4995 ; (let ((tbl (ange-ftp-make-hashtable))
4996 ; (type-list
4997 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40)
4998 ; ("^Dirs: [0-9]+\n+" t 30)))
4999 ; type-regexp type-is-dir type-col file)
5000 ; (goto-char (point-min))
5001 ; (save-match-data
5002 ; (while type-list
5003 ; (setq type-regexp (car (car type-list))
5004 ; type-is-dir (nth 1 (car type-list))
5005 ; type-col (nth 2 (car type-list))
5006 ; type-list (cdr type-list))
5007 ; (if (re-search-forward type-regexp nil t)
5008 ; (while (eq (char-after (point)) ? )
5009 ; (move-to-column type-col)
5010 ; (setq file (buffer-substring (point)
5011 ; (progn
5012 ; (end-of-line 1)
5013 ; (point))))
5014 ; (puthash file type-is-dir tbl)
5015 ; (forward-line 1))))
5016 ; (puthash "." 'vosdir tbl)
5017 ; (puthash ".." 'vosdir tbl))
5018 ; tbl))
5020 ;(or (assq 'vos ange-ftp-parse-list-func-alist)
5021 ; (setq ange-ftp-parse-list-func-alist
5022 ; (cons '(vos . ange-ftp-parse-vos-listing)
5023 ; ange-ftp-parse-list-func-alist)))
5025 ;;;; ------------------------------------------------------------
5026 ;;;; VMS support.
5027 ;;;; ------------------------------------------------------------
5029 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS
5030 ;; to UNIX-ish.
5031 (defun ange-ftp-fix-name-for-vms (name &optional reverse)
5032 (save-match-data
5033 (if reverse
5034 (if (string-match "\\`\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)\\'" name)
5035 (let (drive dir file)
5036 (setq drive (match-string 1 name))
5037 (setq dir (match-string 2 name))
5038 (setq file (match-string 3 name))
5039 (and dir
5040 (setq dir (subst-char-in-string
5041 ?/ ?. (substring dir 1 -1) t)))
5042 (concat (and drive
5043 (concat "/" drive "/"))
5044 dir (and dir "/")
5045 file))
5046 (error "name %s didn't match" name))
5047 (let (drive dir file tmp quote)
5048 (if (string-match "\\`\".+\"\\'" name)
5049 (setq name (substring name 1 -1)
5050 quote "\"")
5051 (setq quote ""))
5052 (if (string-match "\\`/[^:]+:/" name)
5053 (setq drive (substring name 1
5054 (1- (match-end 0)))
5055 name (substring name (match-end 0))))
5056 (setq tmp (file-name-directory name))
5057 (if tmp
5058 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t)))
5059 (setq file (file-name-nondirectory name))
5060 (concat quote drive
5061 (and dir (concat "[" (if drive nil ".") dir "]"))
5062 file quote)))))
5064 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1")
5065 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t)
5067 (or (assq 'vms ange-ftp-fix-name-func-alist)
5068 (setq ange-ftp-fix-name-func-alist
5069 (cons '(vms . ange-ftp-fix-name-for-vms)
5070 ange-ftp-fix-name-func-alist)))
5072 (or (memq 'vms ange-ftp-dumb-host-types)
5073 (setq ange-ftp-dumb-host-types
5074 (cons 'vms ange-ftp-dumb-host-types)))
5076 ;; It is important that this function barf for directories for which we know
5077 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/".
5078 ;; This is because it saves an unnecessary FTP error, or possibly the listing
5079 ;; might succeed, but give erroneous info. This last case is particularly
5080 ;; likely for OS's (like MTS) for which we need to use a wildcard in order
5081 ;; to list a directory.
5083 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing.
5084 (defun ange-ftp-fix-dir-name-for-vms (dir-name)
5085 ;; Should there be entries for .. -> [-] and . -> [] below. Don't
5086 ;; think so, because expand-filename should have already short-circuited
5087 ;; them.
5088 (cond ((string-equal dir-name "/")
5089 (error "Cannot get listing for fictitious \"/\" directory"))
5090 ((string-match "\\`/[-A-Z0-9_$]+:/\\'" dir-name)
5091 (error "Cannot get listing for device"))
5092 ((ange-ftp-fix-name-for-vms dir-name))))
5094 (or (assq 'vms ange-ftp-fix-dir-name-func-alist)
5095 (setq ange-ftp-fix-dir-name-func-alist
5096 (cons '(vms . ange-ftp-fix-dir-name-for-vms)
5097 ange-ftp-fix-dir-name-func-alist)))
5099 (defvar ange-ftp-vms-host-regexp nil)
5101 ;; Return non-nil if HOST is running VMS.
5102 (defun ange-ftp-vms-host (host)
5103 (and ange-ftp-vms-host-regexp
5104 (string-match-p ange-ftp-vms-host-regexp host)))
5106 ;; Because some VMS ftp servers convert filenames to lower case
5107 ;; we allow a-z in the filename regexp. I'm not too happy about this.
5109 (defconst ange-ftp-vms-filename-regexp
5110 (concat
5111 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\."
5112 "[-_A-Za-z0-9$]*;+[0-9]*\\)")
5113 "Regular expression to match for a valid VMS file name in Dired buffer.
5114 Stupid freaking bug! Position of _ and $ shouldn't matter but they do.
5115 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX.
5116 Other orders of $ and _ seem to all work just fine.")
5118 ;; These parsing functions are as general as possible because the syntax
5119 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that
5120 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the
5121 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing
5122 ;; from vms.weird.net, then too bad.
5124 ;; Extract the next filename from a VMS dired-like listing.
5125 (defun ange-ftp-parse-vms-filename ()
5126 (if (re-search-forward
5127 ange-ftp-vms-filename-regexp
5128 nil t)
5129 (match-string 0)))
5131 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir
5132 ;; format, and return a hashtable as the result.
5133 (defun ange-ftp-parse-vms-listing ()
5134 (let ((tbl (make-hash-table :test 'equal))
5135 file)
5136 (goto-char (point-min))
5137 (save-match-data
5138 (while (setq file (ange-ftp-parse-vms-filename))
5139 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file)
5140 ;; deal with directories
5141 (puthash (substring file 0 (match-beginning 0)) t tbl)
5142 (puthash file nil tbl)
5143 (if (string-match ";[0-9]+\\'" file) ; deal with extension
5144 ;; sans extension
5145 (puthash (substring file 0 (match-beginning 0)) nil tbl)))
5146 (forward-line 1))
5147 ;; Would like to look for a "Total" line, or a "Directory" line to
5148 ;; make sure that the listing isn't complete garbage before putting
5149 ;; in "." and "..", but we can't count on VMS giving us
5150 ;; either of these.
5151 (puthash "." t tbl)
5152 (puthash ".." t tbl))
5153 tbl))
5155 (add-to-list 'ange-ftp-parse-list-func-alist
5156 '(vms . ange-ftp-parse-vms-listing))
5158 ;; This version only deletes file entries which have
5159 ;; explicit version numbers, because that is all VMS allows.
5161 ;; Can the following two functions be speeded up using file
5162 ;; completion functions?
5164 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p)
5165 (if dir-p
5166 (ange-ftp-internal-delete-file-entry name t)
5167 (save-match-data
5168 (let ((file (ange-ftp-get-file-part name)))
5169 (if (string-match ";[0-9]+\\'" file)
5170 ;; In VMS you can't delete a file without an explicit
5171 ;; version number, or wild-card (e.g. FOO;*)
5172 ;; For now, we give up on wildcards.
5173 (let ((files (gethash (file-name-directory name)
5174 ange-ftp-files-hashtable)))
5175 (if files
5176 (let* ((root (substring file 0
5177 (match-beginning 0)))
5178 (regexp (concat "^"
5179 (regexp-quote root)
5180 ";[0-9]+$"))
5181 versions)
5182 (remhash file files)
5183 ;; Now we need to check if there are any
5184 ;; versions left. If not, then delete the
5185 ;; root entry.
5186 (maphash
5187 (lambda (key _val)
5188 (and (string-match regexp key)
5189 (setq versions t)))
5190 files)
5191 (or versions
5192 (remhash root files))))))))))
5194 (or (assq 'vms ange-ftp-delete-file-entry-alist)
5195 (setq ange-ftp-delete-file-entry-alist
5196 (cons '(vms . ange-ftp-vms-delete-file-entry)
5197 ange-ftp-delete-file-entry-alist)))
5199 (defun ange-ftp-vms-add-file-entry (name &optional dir-p)
5200 (if dir-p
5201 (ange-ftp-internal-add-file-entry name t)
5202 (let ((files (gethash (file-name-directory name)
5203 ange-ftp-files-hashtable)))
5204 (if files
5205 (let ((file (ange-ftp-get-file-part name)))
5206 (save-match-data
5207 (if (string-match ";[0-9]+\\'" file)
5208 (puthash (substring file 0 (match-beginning 0)) nil files)
5209 ;; Need to figure out what version of the file
5210 ;; is being added.
5211 (let ((regexp (concat "^"
5212 (regexp-quote file)
5213 ";\\([0-9]+\\)$"))
5214 (version 0))
5215 (maphash
5216 (lambda (name val)
5217 (and (string-match regexp name)
5218 (setq version
5219 (max version
5220 (string-to-number (match-string 1 name))))))
5221 files)
5222 (setq version (1+ version))
5223 (puthash
5224 (concat file ";" (int-to-string version))
5225 nil files))))
5226 (puthash file nil files))))))
5228 (or (assq 'vms ange-ftp-add-file-entry-alist)
5229 (setq ange-ftp-add-file-entry-alist
5230 (cons '(vms . ange-ftp-vms-add-file-entry)
5231 ange-ftp-add-file-entry-alist)))
5234 (defun ange-ftp-add-vms-host (host)
5235 "Mark HOST as the name of a machine running VMS."
5236 (interactive
5237 (list (read-string "Host: "
5238 (let ((name (or (buffer-file-name) default-directory)))
5239 (and name (car (ange-ftp-ftp-name name)))))))
5240 (if (not (ange-ftp-vms-host host))
5241 (setq ange-ftp-vms-host-regexp
5242 (concat "^" (regexp-quote host) "$"
5243 (and ange-ftp-vms-host-regexp "\\|")
5244 ange-ftp-vms-host-regexp)
5245 ange-ftp-host-cache nil)))
5248 (defun ange-ftp-vms-file-name-as-directory (name)
5249 (save-match-data
5250 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?\\'" name)
5251 (setq name (substring name 0 (match-beginning 0))))
5252 (ange-ftp-real-file-name-as-directory name)))
5254 (or (assq 'vms ange-ftp-file-name-as-directory-alist)
5255 (setq ange-ftp-file-name-as-directory-alist
5256 (cons '(vms . ange-ftp-vms-file-name-as-directory)
5257 ange-ftp-file-name-as-directory-alist)))
5259 ;;; Tree dired support:
5261 ;; For this code I have borrowed liberally from Sebastian Kremer's
5262 ;; dired-vms.el
5265 ;;;; These regexps must be anchored to beginning of line.
5266 ;;;; Beware that the ftpd may put the device in front of the filename.
5268 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]"
5269 ;; "Regular expression to use to search for VMS executable files.")
5271 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]"
5272 ;; "Regular expression to use to search for VMS directories.")
5274 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist)
5275 ;; (setq ange-ftp-dired-re-exe-alist
5276 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe)
5277 ;; ange-ftp-dired-re-exe-alist)))
5279 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist)
5280 ;; (setq ange-ftp-dired-re-dir-alist
5281 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir)
5282 ;; ange-ftp-dired-re-dir-alist)))
5284 ;;(defun ange-ftp-dired-vms-insert-headerline (dir)
5285 ;; ;; VMS inserts a headerline. I would prefer the headerline
5286 ;; ;; to be in ange-ftp format. This version tries to
5287 ;; ;; be careful, because we can't count on a headerline
5288 ;; ;; over ftp, and we wouldn't want to delete anything
5289 ;; ;; important.
5290 ;; (save-excursion
5291 ;; (if (looking-at "^ wildcard ")
5292 ;; (forward-line 1))
5293 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n")
5294 ;; (delete-region (point) (match-end 0))))
5295 ;; (ange-ftp-real-dired-insert-headerline dir))
5297 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist)
5298 ;; (setq ange-ftp-dired-insert-headerline-alist
5299 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline)
5300 ;; ange-ftp-dired-insert-headerline-alist)))
5302 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol)
5303 ;; "In dired, move to first char of filename on this line.
5304 ;;Returns position (point) or nil if no filename on this line."
5305 ;; ;; This is the VMS version.
5306 ;; (let (case-fold-search)
5307 ;; (or eol (setq eol (progn (end-of-line) (point))))
5308 ;; (beginning-of-line)
5309 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t)
5310 ;; (goto-char (match-beginning 1))
5311 ;; (if raise-error
5312 ;; (error "No file on this line")
5313 ;; nil))))
5315 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist)
5316 ;; (setq ange-ftp-dired-move-to-filename-alist
5317 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename)
5318 ;; ange-ftp-dired-move-to-filename-alist)))
5320 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol)
5321 ;; ;; Assumes point is at beginning of filename.
5322 ;; ;; So, it should be called only after (dired-move-to-filename t).
5323 ;; ;; case-fold-search must be nil, at least for VMS.
5324 ;; ;; On failure, signals an error or returns nil.
5325 ;; ;; This is the VMS version.
5326 ;; (let (opoint hidden case-fold-search)
5327 ;; (setq opoint (point))
5328 ;; (or eol (setq eol (line-end-position)))
5329 ;; (setq hidden (and selective-display
5330 ;; (save-excursion (search-forward "\r" eol t))))
5331 ;; (if hidden
5332 ;; nil
5333 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t))
5334 ;; (or no-error
5335 ;; (not (eq opoint (point)))
5336 ;; (error
5337 ;; (if hidden
5338 ;; (substitute-command-keys
5339 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5340 ;; "No file on this line")))
5341 ;; (if (eq opoint (point))
5342 ;; nil
5343 ;; (point))))
5345 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist)
5346 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5347 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename)
5348 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5350 ;;(defun ange-ftp-dired-vms-between-files ()
5351 ;; (save-excursion
5352 ;; (beginning-of-line)
5353 ;; (or (equal (following-char) 10) ; newline
5354 ;; (equal (following-char) 9) ; tab
5355 ;; (progn (forward-char 2)
5356 ;; (or (looking-at "Total of")
5357 ;; (equal (following-char) 32))))))
5359 ;;(or (assq 'vms ange-ftp-dired-between-files-alist)
5360 ;; (setq ange-ftp-dired-between-files-alist
5361 ;; (cons '(vms . ange-ftp-dired-vms-between-files)
5362 ;; ange-ftp-dired-between-files-alist)))
5364 ;; Beware! In VMS filenames must be of the form "FILE.TYPE".
5365 ;; Therefore, we cannot just append a ".Z" to filenames for
5366 ;; compressed files. Instead, we turn "FILE.TYPE" into
5367 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do.
5369 (defun ange-ftp-vms-make-compressed-filename (name &optional _reverse)
5370 (cond
5371 ((string-match "-Z;[0-9]+\\'" name)
5372 (list nil (substring name 0 (match-beginning 0))))
5373 ((string-match ";[0-9]+\\'" name)
5374 (list nil (substring name 0 (match-beginning 0))))
5375 ((string-match "-Z\\'" name)
5376 (list nil (substring name 0 -2)))
5378 (list t
5379 (if (string-match ";[0-9]+\\'" name)
5380 (concat (substring name 0 (match-beginning 0))
5381 "-Z")
5382 (concat name "-Z"))))))
5384 (or (assq 'vms ange-ftp-make-compressed-filename-alist)
5385 (setq ange-ftp-make-compressed-filename-alist
5386 (cons '(vms . ange-ftp-vms-make-compressed-filename)
5387 ange-ftp-make-compressed-filename-alist)))
5389 ;;;; When the filename is too long, VMS will use two lines to list a file
5390 ;;;; (damn them!) This will confuse dired. To solve this, need to convince
5391 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of
5392 ;;;; (forward-line 1). This would require a number of changes to dired.el.
5393 ;;;; If dired gets confused, revert-buffer will fix it.
5395 ;;(defun ange-ftp-dired-vms-ls-trim ()
5396 ;; (goto-char (point-min))
5397 ;; (let ((case-fold-search nil))
5398 ;; (re-search-forward ange-ftp-vms-filename-regexp))
5399 ;; (beginning-of-line)
5400 ;; (delete-region (point-min) (point))
5401 ;; (forward-line 1)
5402 ;; (delete-region (point) (point-max)))
5405 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist)
5406 ;; (setq ange-ftp-dired-ls-trim-alist
5407 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim)
5408 ;; ange-ftp-dired-ls-trim-alist)))
5410 (defun ange-ftp-vms-sans-version (name &rest _args)
5411 (save-match-data
5412 (if (string-match ";[0-9]+\\'" name)
5413 (substring name 0 (match-beginning 0))
5414 name)))
5416 (or (assq 'vms ange-ftp-sans-version-alist)
5417 (setq ange-ftp-sans-version-alist
5418 (cons '(vms . ange-ftp-vms-sans-version)
5419 ange-ftp-sans-version-alist)))
5421 ;;(defvar ange-ftp-file-version-alist)
5423 ;;;;; The vms version of clean-directory has 2 more optional args
5424 ;;;;; than the usual dired version. This is so that it can be used by
5425 ;;;;; ange-ftp-dired-vms-flag-backup-files.
5427 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg)
5428 ;; "Flag numerical backups for deletion.
5429 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
5430 ;;Positive prefix arg KEEP overrides `dired-kept-versions';
5431 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
5433 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files]
5434 ;;with a prefix argument."
5435 ;;; (interactive "P") ; Never actually called interactively.
5436 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions)))
5437 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
5438 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS!
5439 ;; ;; This could wipe ALL copies of the file.
5440 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep)))
5441 ;; (action (or msg "Cleaning"))
5442 ;; (ange-ftp-trample-marker (or marker dired-del-marker))
5443 ;; (ange-ftp-file-version-alist ()))
5444 ;; (message (concat action
5445 ;; " numerical backups (keeping %d late, %d old)...")
5446 ;; late-retention early-retention)
5447 ;; ;; Look at each file.
5448 ;; ;; If the file has numeric backup versions,
5449 ;; ;; put on ange-ftp-file-version-alist an element of the form
5450 ;; ;; (FILENAME . VERSION-NUMBER-LIST)
5451 ;; (dired-map-dired-file-lines 'ange-ftp-dired-vms-collect-file-versions)
5452 ;; ;; Sort each VERSION-NUMBER-LIST,
5453 ;; ;; and remove the versions not to be deleted.
5454 ;; (let ((fval ange-ftp-file-version-alist))
5455 ;; (while fval
5456 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
5457 ;; (v-count (length sorted-v-list)))
5458 ;; (if (> v-count (+ early-retention late-retention))
5459 ;; (rplacd (nthcdr early-retention sorted-v-list)
5460 ;; (nthcdr (- v-count late-retention)
5461 ;; sorted-v-list)))
5462 ;; (rplacd (car fval)
5463 ;; (cdr sorted-v-list)))
5464 ;; (setq fval (cdr fval))))
5465 ;; ;; Look at each file. If it is a numeric backup file,
5466 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
5467 ;; (dired-map-dired-file-lines
5468 ;; 'ange-ftp-dired-vms-trample-file-versions mark)
5469 ;; (message (concat action " numerical backups...done"))))
5471 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist)
5472 ;; (setq ange-ftp-dired-clean-directory-alist
5473 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory)
5474 ;; ange-ftp-dired-clean-directory-alist)))
5476 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn)
5477 ;; ;; "If it looks like file FN has versions, return a list of the versions.
5478 ;; ;;That is a list of strings which are file names.
5479 ;; ;;The caller may want to flag some of these files for deletion."
5480 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn))))
5481 ;; (if (string-match ";[0-9]+$" name)
5482 ;; (let* ((name (substring name 0 (match-beginning 0)))
5483 ;; (fn (ange-ftp-replace-name-component fn name)))
5484 ;; (if (not (assq fn ange-ftp-file-version-alist))
5485 ;; (let* ((base-versions
5486 ;; (concat (file-name-nondirectory name) ";"))
5487 ;; (bv-length (length base-versions))
5488 ;; (possibilities (file-name-all-completions
5489 ;; base-versions
5490 ;; (file-name-directory fn)))
5491 ;; (versions (mapcar
5492 ;; (lambda (arg)
5493 ;; (if (and (string-match
5494 ;; "[0-9]+$" arg bv-length)
5495 ;; (= (match-beginning 0) bv-length))
5496 ;; (string-to-int (substring arg bv-length))
5497 ;; 0))
5498 ;; possibilities)))
5499 ;; (if versions
5500 ;; (setq
5501 ;; ange-ftp-file-version-alist
5502 ;; (cons (cons fn versions)
5503 ;; ange-ftp-file-version-alist)))))))))
5505 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn)
5506 ;; (let* ((start-vn (string-match ";[0-9]+$" fn))
5507 ;; base-version-list)
5508 ;; (and start-vn
5509 ;; (setq base-version-list ; there was a base version to which
5510 ;; (assoc (substring fn 0 start-vn) ; this looks like a
5511 ;; ange-ftp-file-version-alist)) ; subversion
5512 ;; (not (memq (string-to-int (substring fn (1+ start-vn)))
5513 ;; base-version-list)) ; this one doesn't make the cut
5514 ;; (progn (beginning-of-line)
5515 ;; (delete-char 1)
5516 ;; (insert ange-ftp-trample-marker)))))
5518 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p)
5519 ;; (let ((dired-kept-versions 1)
5520 ;; (kept-old-versions 0)
5521 ;; marker msg)
5522 ;; (if unflag-p
5523 ;; (setq marker ?\040 msg "Unflagging")
5524 ;; (setq marker dired-del-marker msg "Cleaning"))
5525 ;; (ange-ftp-dired-vms-clean-directory nil marker msg)))
5527 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist)
5528 ;; (setq ange-ftp-dired-flag-backup-files-alist
5529 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files)
5530 ;; ange-ftp-dired-flag-backup-files-alist)))
5532 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches)
5533 ;; (let ((file (dired-get-filename 'no-dir))
5534 ;; bak)
5535 ;; (if (and (string-match ";[0-9]+$" file)
5536 ;; ;; Find most recent previous version.
5537 ;; (let ((root (substring file 0 (match-beginning 0)))
5538 ;; (ver
5539 ;; (string-to-int (substring file (1+ (match-beginning 0)))))
5540 ;; found)
5541 ;; (setq ver (1- ver))
5542 ;; (while (and (> ver 0) (not found))
5543 ;; (setq bak (concat root ";" (int-to-string ver)))
5544 ;; (and (file-exists-p bak) (setq found t))
5545 ;; (setq ver (1- ver)))
5546 ;; found))
5547 ;; (if switches
5548 ;; (diff (expand-file-name bak) (expand-file-name file) switches)
5549 ;; (diff (expand-file-name bak) (expand-file-name file)))
5550 ;; (error "No previous version found for %s" file))))
5552 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist)
5553 ;; (setq ange-ftp-dired-backup-diff-alist
5554 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff)
5555 ;; ange-ftp-dired-backup-diff-alist)))
5558 ;;;; ------------------------------------------------------------
5559 ;;;; MTS support
5560 ;;;; ------------------------------------------------------------
5563 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from
5564 ;; MTS to UNIX-ish.
5565 (defun ange-ftp-fix-name-for-mts (name &optional reverse)
5566 (save-match-data
5567 (if reverse
5568 (if (string-match "\\`\\([^:]+:\\)?\\(.*\\)\\'" name)
5569 (let (acct file)
5570 (setq acct (match-string 1 name))
5571 (setq file (match-string 2 name))
5572 (concat (and acct (concat "/" acct "/"))
5573 file))
5574 (error "name %s didn't match" name))
5575 (if (string-match "\\`/\\([^:]+:\\)/\\(.*\\)\\'" name)
5576 (concat (match-string 1 name) (match-string 2 name))
5577 ;; Let's hope that mts will recognize it anyway.
5578 name))))
5580 (or (assq 'mts ange-ftp-fix-name-func-alist)
5581 (setq ange-ftp-fix-name-func-alist
5582 (cons '(mts . ange-ftp-fix-name-for-mts)
5583 ange-ftp-fix-name-func-alist)))
5585 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing.
5586 ;; Remember that there are no directories in MTS.
5587 (defun ange-ftp-fix-dir-name-for-mts (dir-name)
5588 (if (string-equal dir-name "/")
5589 (error "Cannot get listing for fictitious \"/\" directory")
5590 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name)))
5591 (cond
5592 ((string-equal dir-name "")
5593 "?")
5594 ((string-match ":\\'" dir-name)
5595 (concat dir-name "?"))
5596 (dir-name))))) ; It's just a single file.
5598 (or (assq 'mts ange-ftp-fix-dir-name-func-alist)
5599 (setq ange-ftp-fix-dir-name-func-alist
5600 (cons '(mts . ange-ftp-fix-dir-name-for-mts)
5601 ange-ftp-fix-dir-name-func-alist)))
5603 (or (memq 'mts ange-ftp-dumb-host-types)
5604 (setq ange-ftp-dumb-host-types
5605 (cons 'mts ange-ftp-dumb-host-types)))
5607 (defvar ange-ftp-mts-host-regexp nil)
5609 ;; Return non-nil if HOST is running MTS.
5610 (defun ange-ftp-mts-host (host)
5611 (and ange-ftp-mts-host-regexp
5612 (string-match-p ange-ftp-mts-host-regexp host)))
5614 ;; Parse the current buffer which is assumed to be in mts ftp dir format.
5615 (defun ange-ftp-parse-mts-listing ()
5616 (let ((tbl (make-hash-table :test 'equal)))
5617 (goto-char (point-min))
5618 (save-match-data
5619 (while (re-search-forward directory-listing-before-filename-regexp nil t)
5620 (end-of-line)
5621 (skip-chars-backward " ")
5622 (let ((end (point)))
5623 (skip-chars-backward "-A-Z0-9_.!")
5624 (puthash (buffer-substring (point) end) nil tbl))
5625 (forward-line 1)))
5626 ;; Don't need to bother with ..
5627 (puthash "." t tbl)
5628 tbl))
5630 (add-to-list 'ange-ftp-parse-list-func-alist
5631 '(mts . ange-ftp-parse-mts-listing))
5633 (defun ange-ftp-add-mts-host (host)
5634 "Mark HOST as the name of a machine running MTS."
5635 (interactive
5636 (list (read-string "Host: "
5637 (let ((name (or (buffer-file-name) default-directory)))
5638 (and name (car (ange-ftp-ftp-name name)))))))
5639 (if (not (ange-ftp-mts-host host))
5640 (setq ange-ftp-mts-host-regexp
5641 (concat "^" (regexp-quote host) "$"
5642 (and ange-ftp-mts-host-regexp "\\|")
5643 ange-ftp-mts-host-regexp)
5644 ange-ftp-host-cache nil)))
5646 ;;; Tree dired support:
5648 ;;;; There aren't too many systems left that use MTS. This dired support will
5649 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems
5650 ;;;; implement ftp in the same way. If not, it might be necessary to make the
5651 ;;;; following more flexible.
5653 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol)
5654 ;; "In dired, move to first char of filename on this line.
5655 ;;Returns position (point) or nil if no filename on this line."
5656 ;; ;; This is the MTS version.
5657 ;; (or eol (setq eol (progn (end-of-line) (point))))
5658 ;; (beginning-of-line)
5659 ;; (if (re-search-forward
5660 ;; ange-ftp-date-regexp eol t)
5661 ;; (progn
5662 ;; (skip-chars-forward " ") ; Eat blanks after date
5663 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year
5664 ;; (skip-chars-forward " " eol) ; one space before filename
5665 ;; ;; When listing an account other than the users own account it appends
5666 ;; ;; ACCT: to the beginning of the filename. Skip over this.
5667 ;; (and (looking-at "[A-Z0-9_.]+:")
5668 ;; (goto-char (match-end 0)))
5669 ;; (point))
5670 ;; (if raise-error
5671 ;; (error "No file on this line")
5672 ;; nil)))
5674 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist)
5675 ;; (setq ange-ftp-dired-move-to-filename-alist
5676 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename)
5677 ;; ange-ftp-dired-move-to-filename-alist)))
5679 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol)
5680 ;; ;; Assumes point is at beginning of filename.
5681 ;; ;; So, it should be called only after (dired-move-to-filename t).
5682 ;; ;; On failure, signals an error or returns nil.
5683 ;; ;; This is the MTS version.
5684 ;; (let (opoint hidden case-fold-search)
5685 ;; (setq opoint (point)
5686 ;; eol (line-end-position)
5687 ;; hidden (and selective-display
5688 ;; (save-excursion (search-forward "\r" eol t))))
5689 ;; (if hidden
5690 ;; nil
5691 ;; (skip-chars-forward "-A-Z0-9._!" eol))
5692 ;; (or no-error
5693 ;; (not (eq opoint (point)))
5694 ;; (error
5695 ;; (if hidden
5696 ;; (substitute-command-keys
5697 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5698 ;; "No file on this line")))
5699 ;; (if (eq opoint (point))
5700 ;; nil
5701 ;; (point))))
5703 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist)
5704 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5705 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename)
5706 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5708 ;;;; ------------------------------------------------------------
5709 ;;;; CMS support
5710 ;;;; ------------------------------------------------------------
5712 ;; Since CMS doesn't have any full file name syntax, we have to fudge
5713 ;; things with cd's. We actually send too many cd's, but it's dangerous
5714 ;; to try to remember the current minidisk, because if the connection
5715 ;; is closed and needs to be reopened, we will find ourselves back in
5716 ;; the default minidisk. This is fairly likely since CMS ftp servers
5717 ;; usually close the connection after 5 minutes of inactivity.
5719 ;; Have I got the filename character set right?
5721 (defun ange-ftp-fix-name-for-cms (name &optional reverse)
5722 (save-match-data
5723 (if reverse
5724 ;; Since we only convert output from a pwd in this direction,
5725 ;; we'll assume that it's a minidisk, and make it into a
5726 ;; directory file name. Note that the expand-dir-hashtable
5727 ;; stores directories without the trailing /. Is this
5728 ;; consistent?
5729 (concat "/" name)
5730 (if (string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'"
5731 name)
5732 (let ((minidisk (match-string 1 name)))
5733 (if (match-beginning 2)
5734 (let ((file (match-string 2 name))
5735 (cmd (concat "cd " minidisk))
5737 ;; Note that host and user are bound in the call
5738 ;; to ange-ftp-send-cmd
5739 (proc (ange-ftp-get-process ange-ftp-this-host
5740 ange-ftp-this-user)))
5742 ;; Must use ange-ftp-raw-send-cmd here to avoid
5743 ;; an infinite loop.
5744 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg))
5745 file
5746 ;; failed... try ONCE more.
5747 (setq proc (ange-ftp-get-process ange-ftp-this-host
5748 ange-ftp-this-user))
5749 (let ((result (ange-ftp-raw-send-cmd proc cmd
5750 ange-ftp-this-msg)))
5751 (if (car result)
5752 file
5753 ;; failed. give up.
5754 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5755 (format "cd to minidisk %s failed: %s"
5756 minidisk (cdr result)))))))
5757 ;; return the minidisk
5758 minidisk))
5759 (error "Invalid CMS filename")))))
5761 (or (assq 'cms ange-ftp-fix-name-func-alist)
5762 (setq ange-ftp-fix-name-func-alist
5763 (cons '(cms . ange-ftp-fix-name-for-cms)
5764 ange-ftp-fix-name-func-alist)))
5766 (or (memq 'cms ange-ftp-dumb-host-types)
5767 (setq ange-ftp-dumb-host-types
5768 (cons 'cms ange-ftp-dumb-host-types)))
5770 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing.
5771 (defun ange-ftp-fix-dir-name-for-cms (dir-name)
5772 (cond
5773 ((string-equal "/" dir-name)
5774 (error "Cannot get listing for fictitious \"/\" directory"))
5775 ((string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" dir-name)
5776 (let* ((minidisk (match-string 1 dir-name))
5777 ;; host and user are bound in the call to ange-ftp-send-cmd
5778 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user))
5779 (cmd (concat "cd " minidisk))
5780 (file (if (match-beginning 2)
5781 ;; it's a single file
5782 (match-string 2 dir-name)
5783 ;; use the wild-card
5784 "*")))
5785 (if (car (ange-ftp-raw-send-cmd proc cmd))
5786 file
5787 ;; try again...
5788 (setq proc (ange-ftp-get-process ange-ftp-this-host
5789 ange-ftp-this-user))
5790 (let ((result (ange-ftp-raw-send-cmd proc cmd)))
5791 (if (car result)
5792 file
5793 ;; give up
5794 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5795 (format "cd to minidisk %s failed: %s"
5796 minidisk (cdr result))))))))
5797 (t (error "Invalid CMS file name"))))
5799 (or (assq 'cms ange-ftp-fix-dir-name-func-alist)
5800 (setq ange-ftp-fix-dir-name-func-alist
5801 (cons '(cms . ange-ftp-fix-dir-name-for-cms)
5802 ange-ftp-fix-dir-name-func-alist)))
5804 (defvar ange-ftp-cms-host-regexp nil
5805 "Regular expression to match hosts running the CMS operating system.")
5807 ;; Return non-nil if HOST is running CMS.
5808 (defun ange-ftp-cms-host (host)
5809 (and ange-ftp-cms-host-regexp
5810 (string-match-p ange-ftp-cms-host-regexp host)))
5812 (defun ange-ftp-add-cms-host (host)
5813 "Mark HOST as the name of a CMS host."
5814 (interactive
5815 (list (read-string "Host: "
5816 (let ((name (or (buffer-file-name) default-directory)))
5817 (and name (car (ange-ftp-ftp-name name)))))))
5818 (if (not (ange-ftp-cms-host host))
5819 (setq ange-ftp-cms-host-regexp
5820 (concat "^" (regexp-quote host) "$"
5821 (and ange-ftp-cms-host-regexp "\\|")
5822 ange-ftp-cms-host-regexp)
5823 ange-ftp-host-cache nil)))
5825 (defun ange-ftp-parse-cms-listing ()
5826 ;; Parse the current buffer which is assumed to be a CMS directory listing.
5827 ;; If we succeed in getting a listing, then we will assume that the minidisk
5828 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work
5829 ;; because ange-ftp doesn't know that the root hashtable has only part of
5830 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't
5831 ;; exist. It would be nice if completion worked for minidisks, as we
5832 ;; discover them.
5833 ; (let* ((dir-file (directory-file-name file))
5834 ; (root (file-name-directory dir-file))
5835 ; (minidisk (ange-ftp-get-file-part dir-file))
5836 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable)))
5837 ; (if root-tbl
5838 ; (puthash minidisk t root-tbl)
5839 ; (setq root-tbl (ange-ftp-make-hashtable))
5840 ; (puthash minidisk t root-tbl)
5841 ; (puthash "." t root-tbl)
5842 ; (ange-ftp-set-files root root-tbl)))
5843 ;; Now do the usual parsing
5844 (let ((tbl (make-hash-table :test 'equal)))
5845 (goto-char (point-min))
5846 (save-match-data
5847 (while
5848 (re-search-forward
5849 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t)
5850 (puthash (concat (match-string 1) "." (match-string 2)) nil tbl)
5851 (forward-line 1))
5852 (puthash "." t tbl))
5853 tbl))
5855 (add-to-list 'ange-ftp-parse-list-func-alist
5856 '(cms . ange-ftp-parse-cms-listing))
5858 ;;;;; Tree dired support:
5860 ;;(defconst ange-ftp-dired-cms-re-exe
5861 ;; "^. [-A-Z0-9$_]+ +EXEC "
5862 ;; "Regular expression to use to search for CMS executables.")
5864 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist)
5865 ;; (setq ange-ftp-dired-re-exe-alist
5866 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe)
5867 ;; ange-ftp-dired-re-exe-alist)))
5870 ;;(defun ange-ftp-dired-cms-insert-headerline (dir)
5871 ;; ;; CMS has no total line, so we insert a blank line for
5872 ;; ;; aesthetics.
5873 ;; (insert "\n")
5874 ;; (forward-char -1)
5875 ;; (ange-ftp-real-dired-insert-headerline dir))
5877 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist)
5878 ;; (setq ange-ftp-dired-insert-headerline-alist
5879 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline)
5880 ;; ange-ftp-dired-insert-headerline-alist)))
5882 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol)
5883 ;; "In dired, move to the first char of filename on this line."
5884 ;; ;; This is the CMS version.
5885 ;; (or eol (setq eol (progn (end-of-line) (point))))
5886 ;; (let (case-fold-search)
5887 ;; (beginning-of-line)
5888 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t)
5889 ;; (goto-char (1+ (match-beginning 0)))
5890 ;; (if raise-error
5891 ;; (error "No file on this line")
5892 ;; nil))))
5894 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist)
5895 ;; (setq ange-ftp-dired-move-to-filename-alist
5896 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename)
5897 ;; ange-ftp-dired-move-to-filename-alist)))
5899 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol)
5900 ;; ;; Assumes point is at beginning of filename.
5901 ;; ;; So, it should be called only after (dired-move-to-filename t).
5902 ;; ;; case-fold-search must be nil, at least for VMS.
5903 ;; ;; On failure, signals an error or returns nil.
5904 ;; ;; This is the CMS version.
5905 ;; (let ((opoint (point))
5906 ;; case-fold-search hidden)
5907 ;; (or eol (setq eol (line-end-position)))
5908 ;; (setq hidden (and selective-display
5909 ;; (save-excursion
5910 ;; (search-forward "\r" eol t))))
5911 ;; (if hidden
5912 ;; (if no-error
5913 ;; nil
5914 ;; (error
5915 ;; (substitute-command-keys
5916 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
5917 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5918 ;; (skip-chars-forward " " eol)
5919 ;; (skip-chars-forward "-A-Z0-9$_" eol)
5920 ;; (if (eq opoint (point))
5921 ;; (if no-error
5922 ;; nil
5923 ;; (error "No file on this line"))
5924 ;; (point)))))
5926 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist)
5927 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5928 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename)
5929 ;; ange-ftp-dired-move-to-end-of-filename-alist)))
5931 (defun ange-ftp-cms-make-compressed-filename (name &optional _reverse)
5932 (if (string-match "-Z\\'" name)
5933 (list nil (substring name 0 -2))
5934 (list t (concat name "-Z"))))
5936 (or (assq 'cms ange-ftp-make-compressed-filename-alist)
5937 (setq ange-ftp-make-compressed-filename-alist
5938 (cons '(cms . ange-ftp-cms-make-compressed-filename)
5939 ange-ftp-make-compressed-filename-alist)))
5941 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep)
5942 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep)))
5943 ;; (and name
5944 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name)
5945 ;; (concat (substring name 0 (match-end 1))
5946 ;; "."
5947 ;; (substring name (match-beginning 2) (match-end 2)))
5948 ;; name))))
5950 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist)
5951 ;; (setq ange-ftp-dired-get-filename-alist
5952 ;; (cons '(cms . ange-ftp-dired-cms-get-filename)
5953 ;; ange-ftp-dired-get-filename-alist)))
5955 ;;;; ------------------------------------------------------------
5956 ;;;; BS2000 support
5957 ;;;; ------------------------------------------------------------
5959 ;; There seems to be an error with regexps. '-' has to be the first
5960 ;; character inside of the square brackets.
5961 (defconst ange-ftp-bs2000-short-filename-regexp
5962 "[-A-Z0-9$#@.]*[A-Z][-A-Z0-9$#@.]*"
5963 "Regular expression to match for a valid short BS2000 file name.")
5965 (defconst ange-ftp-bs2000-fix-name-regexp-reverse
5966 (concat
5967 "^\\(" ange-ftp-bs2000-filename-pubset-regexp "\\)?"
5968 "\\(" ange-ftp-bs2000-filename-username-regexp "\\)?"
5969 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
5970 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
5972 (defconst ange-ftp-bs2000-fix-name-regexp
5973 (concat
5974 "/?\\(" ange-ftp-bs2000-filename-pubset-regexp "/\\)?"
5975 "\\(\\$[A-Z0-9]*/\\)?"
5976 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
5977 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
5979 (defcustom ange-ftp-bs2000-special-prefix
5981 "Prefix used for filenames starting with `#' or `@'."
5982 :group 'ange-ftp
5983 :type 'string)
5985 ;; Convert NAME from UNIX-ish to BS2000. If REVERSE given then convert from
5986 ;; BS2000 to UNIX-ish.
5987 (defun ange-ftp-fix-name-for-bs2000 (name &optional reverse)
5988 (save-match-data
5989 (if reverse
5990 (if (string-match
5991 ange-ftp-bs2000-fix-name-regexp-reverse
5992 name)
5993 (let ((pubset (if (match-beginning 1)
5994 (substring name 0 (match-end 1))))
5995 (userid (if (match-beginning 2)
5996 (substring name
5997 (match-beginning 2)
5998 (1- (match-end 2)))))
5999 (filename (if (match-beginning 3)
6000 (substring name (match-beginning 3)))))
6001 (concat
6003 ;; we have to insert "_/" here to prevent expand-file-name to
6004 ;; interpret BS2000 pubsets as the special escape prefix:
6005 (and pubset (concat "_/" pubset "/"))
6006 (and userid (concat userid "/"))
6007 filename))
6008 (error "name %s didn't match" name))
6009 ;; and here we (maybe) have to remove the inserted "_/" 'cause
6010 ;; of our prevention of the special escape prefix above:
6011 (if (string-match (concat "^/_/") name)
6012 (setq name (substring name 2)))
6013 (if (string-match
6014 ange-ftp-bs2000-fix-name-regexp
6015 name)
6016 (let ((pubset (if (match-beginning 1)
6017 (substring name
6018 (match-beginning 1)
6019 (1- (match-end 1)))))
6020 (userid (if (match-beginning 2)
6021 (substring name
6022 (match-beginning 2)
6023 (1- (match-end 2)))))
6024 (filename (if (match-beginning 3)
6025 (substring name (match-beginning 3)))))
6026 (if (and (boundp 'filename)
6027 (stringp filename)
6028 (string-match "[#@].+" filename))
6029 (setq filename (concat ange-ftp-bs2000-special-prefix
6030 (substring filename 1))))
6031 (upcase
6032 (concat
6033 pubset
6034 (and userid (concat userid "."))
6035 ;; change every '/' in filename to a '.', normally not necessary
6036 (and filename
6037 (subst-char-in-string ?/ ?. filename)))))
6038 ;; Let's hope that BS2000 recognize this anyway:
6039 name))))
6041 (or (assq 'bs2000 ange-ftp-fix-name-func-alist)
6042 (setq ange-ftp-fix-name-func-alist
6043 (cons '(bs2000 . ange-ftp-fix-name-for-bs2000)
6044 ange-ftp-fix-name-func-alist)))
6046 ;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing.
6047 ;; Remember that there are no directories in BS2000.
6048 (defun ange-ftp-fix-dir-name-for-bs2000 (dir-name)
6049 (if (string-equal dir-name "/")
6050 "*" ;; Don't use an empty string here!
6051 (ange-ftp-fix-name-for-bs2000 dir-name)))
6053 (or (assq 'bs2000 ange-ftp-fix-dir-name-func-alist)
6054 (setq ange-ftp-fix-dir-name-func-alist
6055 (cons '(bs2000 . ange-ftp-fix-dir-name-for-bs2000)
6056 ange-ftp-fix-dir-name-func-alist)))
6058 (or (memq 'bs2000 ange-ftp-dumb-host-types)
6059 (setq ange-ftp-dumb-host-types
6060 (cons 'bs2000 ange-ftp-dumb-host-types)))
6062 (defvar ange-ftp-bs2000-host-regexp nil)
6063 (defvar ange-ftp-bs2000-posix-host-regexp nil)
6065 ;; Return non-nil if HOST is running BS2000.
6066 (defun ange-ftp-bs2000-host (host)
6067 (and ange-ftp-bs2000-host-regexp
6068 (string-match-p ange-ftp-bs2000-host-regexp host)))
6069 ;; Return non-nil if HOST is running BS2000 with POSIX subsystem.
6070 (defun ange-ftp-bs2000-posix-host (host)
6071 (and ange-ftp-bs2000-posix-host-regexp
6072 (string-match-p ange-ftp-bs2000-posix-host-regexp host)))
6074 (defun ange-ftp-add-bs2000-host (host)
6075 "Mark HOST as the name of a machine running BS2000."
6076 (interactive
6077 (list (read-string "Host: "
6078 (let ((name (or (buffer-file-name) default-directory)))
6079 (and name (car (ange-ftp-ftp-name name)))))))
6080 (if (not (ange-ftp-bs2000-host host))
6081 (setq ange-ftp-bs2000-host-regexp
6082 (concat "^" (regexp-quote host) "$"
6083 (and ange-ftp-bs2000-host-regexp "\\|")
6084 ange-ftp-bs2000-host-regexp)
6085 ange-ftp-host-cache nil)))
6087 (defun ange-ftp-add-bs2000-posix-host (host)
6088 "Mark HOST as the name of a machine running BS2000 with POSIX subsystem."
6089 (interactive
6090 (list (read-string "Host: "
6091 (let ((name (or (buffer-file-name) default-directory)))
6092 (and name (car (ange-ftp-ftp-name name)))))))
6093 (if (not (ange-ftp-bs2000-posix-host host))
6094 (setq ange-ftp-bs2000-posix-host-regexp
6095 (concat "^" (regexp-quote host) "$"
6096 (and ange-ftp-bs2000-posix-host-regexp "\\|")
6097 ange-ftp-bs2000-posix-host-regexp)
6098 ange-ftp-host-cache nil))
6099 ;; Install CD hook to cd to posix on connecting:
6100 (add-hook 'ange-ftp-process-startup-hook 'ange-ftp-bs2000-cd-to-posix)
6101 host)
6103 (defconst ange-ftp-bs2000-filename-regexp
6104 (concat
6105 "\\(" ange-ftp-bs2000-filename-prefix-regexp "\\)?"
6106 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)")
6107 "Regular expression to match for a valid BS2000 file name.")
6109 (defcustom ange-ftp-bs2000-additional-pubsets
6111 "List of additional pubsets available to all users."
6112 :group 'ange-ftp
6113 :type '(repeat string))
6115 ;; These parsing functions are as general as possible because the syntax
6116 ;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that
6117 ;; the BS2000 filename syntax is so rigid.
6119 ;; Extract the next filename from a BS2000 dired-like listing.
6120 (defun ange-ftp-parse-bs2000-filename ()
6121 (if (re-search-forward ange-ftp-bs2000-filename-regexp nil t)
6122 (match-string 2)))
6124 ;; Parse the current buffer which is assumed to be in (some) BS2000 FTP dir
6125 ;; format, and return a hashtable as the result.
6126 (defun ange-ftp-parse-bs2000-listing ()
6127 (let ((tbl (make-hash-table :test 'equal))
6128 pubset
6129 file)
6130 ;; get current pubset
6131 (goto-char (point-min))
6132 (if (re-search-forward ange-ftp-bs2000-filename-pubset-regexp nil t)
6133 (setq pubset (match-string 0)))
6134 ;; add files to hashtable
6135 (goto-char (point-min))
6136 (save-match-data
6137 (while (setq file (ange-ftp-parse-bs2000-filename))
6138 (puthash file nil tbl)))
6139 ;; add . and ..
6140 (puthash "." t tbl)
6141 (puthash ".." t tbl)
6142 ;; add all additional pubsets, if not listing one of them
6143 (if (not (member pubset ange-ftp-bs2000-additional-pubsets))
6144 (mapc (lambda (pubset) (puthash pubset t tbl))
6145 ange-ftp-bs2000-additional-pubsets))
6146 tbl))
6148 (add-to-list 'ange-ftp-parse-list-func-alist
6149 '(bs2000 . ange-ftp-parse-bs2000-listing))
6151 (defun ange-ftp-bs2000-cd-to-posix ()
6152 "cd to POSIX subsystem if the current host matches
6153 `ange-ftp-bs2000-posix-host-regexp'. All BS2000 hosts with POSIX subsystem
6154 MUST BE EXPLICITLY SET with `ange-ftp-add-bs2000-posix-host' for they cannot
6155 be recognized automatically (they are all valid BS2000 hosts too)."
6156 (if (and ange-ftp-this-host (ange-ftp-bs2000-posix-host ange-ftp-this-host))
6157 (progn
6158 ;; change to POSIX:
6159 ; (ange-ftp-raw-send-cmd proc "cd %POSIX")
6160 (ange-ftp-cd ange-ftp-this-host ange-ftp-this-user "%POSIX")
6161 ;; put new home directory in the expand-dir hashtable.
6162 ;; `ange-ftp-this-host' and `ange-ftp-this-user' are bound in
6163 ;; ange-ftp-get-process.
6164 (puthash (concat ange-ftp-this-host "/" ange-ftp-this-user "/~")
6165 (car (ange-ftp-get-pwd ange-ftp-this-host ange-ftp-this-user))
6166 ange-ftp-expand-dir-hashtable))))
6168 ;; Not available yet:
6169 ;; ange-ftp-bs2000-delete-file-entry
6170 ;; ange-ftp-bs2000-add-file-entry
6171 ;; ange-ftp-bs2000-file-name-as-directory
6172 ;; ange-ftp-bs2000-make-compressed-filename
6173 ;; ange-ftp-bs2000-file-name-sans-versions
6175 ;;;; ------------------------------------------------------------
6176 ;;;; Finally provide package.
6177 ;;;; ------------------------------------------------------------
6179 (provide 'ange-ftp)
6181 ;;; ange-ftp.el ends here