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