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