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