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