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