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