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