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