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