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