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