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