(compile-last): Ensure GREP_OPTIONS is null before calling
[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)
b3ee21ac 1179 `(and (stringp ,host) (stringp ,user) (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
844f7784 1971(define-derived-mode internal-ange-ftp-mode comint-mode "Internal Ange-ftp"
8749abea
GM
1972 "Major mode for interacting with the FTP process.
1973
1974\\{comint-mode-map}"
ccedb10b
LK
1975 (make-local-variable 'ange-ftp-process-string)
1976 (setq ange-ftp-process-string "")
1977 (make-local-variable 'ange-ftp-process-busy)
1978 (make-local-variable 'ange-ftp-process-result)
1979 (make-local-variable 'ange-ftp-process-msg)
1980 (make-local-variable 'ange-ftp-process-multi-skip)
1981 (make-local-variable 'ange-ftp-process-result-line)
1982 (make-local-variable 'ange-ftp-process-continue)
1983 (make-local-variable 'ange-ftp-hash-mark-count)
1984 (make-local-variable 'ange-ftp-binary-hash-mark-size)
1985 (make-local-variable 'ange-ftp-ascii-hash-mark-size)
1986 (make-local-variable 'ange-ftp-hash-mark-unit)
1987 (make-local-variable 'ange-ftp-xfer-size)
1988 (make-local-variable 'ange-ftp-last-percent)
1989 (setq ange-ftp-hash-mark-count 0)
1990 (setq ange-ftp-xfer-size 0)
1991 (setq ange-ftp-process-result-line "")
1992 (setq comint-prompt-regexp "^ftp> ")
1993 (make-local-variable 'comint-password-prompt-regexp)
1994 ;; This is a regexp that can't match anything.
1995 ;; ange-ftp has its own ways of handling passwords.
92482d77 1996 (setq comint-password-prompt-regexp "\\`a\\`")
ccedb10b 1997 (make-local-variable 'paragraph-start)
844f7784 1998 (setq paragraph-start comint-prompt-regexp))
8749abea 1999
9c35d706 2000(defcustom ange-ftp-raw-login nil
4671dba5
JB
2001 "Use raw FTP commands for login, if account password is not nil.
2002Some FTP implementations need this, e.g. ftp in NT 4.0."
9c35d706
RS
2003 :group 'ange-ftp
2004 :version "21.3"
2005 :type 'boolean)
2006
4671dba5 2007(defun ange-ftp-smart-login (host user password account proc)
8749abea
GM
2008 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2009PROC is the FTP-client's process. This routine uses the smart-gateway
25759a92 2010host specified in `ange-ftp-gateway-host'."
8749abea
GM
2011 (let ((result (ange-ftp-raw-send-cmd
2012 proc
2013 (format "open %s %s"
2014 (ange-ftp-nslookup-host ange-ftp-gateway-host)
2015 ange-ftp-smart-gateway-port)
2016 (format "Opening FTP connection to %s via %s"
2017 host
2018 ange-ftp-gateway-host))))
2019 (or (car result)
25759a92 2020 (ange-ftp-error host user
8749abea
GM
2021 (concat "OPEN request failed: "
2022 (cdr result))))
2023 (setq result (ange-ftp-raw-send-cmd
2024 proc (format "user \"%s\"@%s %s %s"
2025 user
2026 (ange-ftp-nslookup-host host)
4671dba5 2027 password
8749abea
GM
2028 account)
2029 (format "Logging in as user %s@%s"
2030 user host)))
2031 (or (car result)
2032 (progn
2033 (ange-ftp-set-passwd host user nil) ; reset password
2034 (ange-ftp-set-account host user nil) ; reset account
2035 (ange-ftp-error host user
2036 (concat "USER request failed: "
2037 (cdr result)))))))
2038
4671dba5 2039(defun ange-ftp-normal-login (host user password account proc)
8749abea
GM
2040 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
2041PROC is the process to the FTP-client. HOST may have an optional
4671dba5 2042suffix of the form #PORT to specify a non-default port."
8749abea 2043 (save-match-data
aa6f7b96 2044 (string-match "\\`\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host)
8749abea
GM
2045 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host)))
2046 (port (match-string 3 host))
2047 (result (ange-ftp-raw-send-cmd
2048 proc
2049 (if port
2050 (format "open %s %s" nshost port)
2051 (format "open %s" nshost))
2052 (format "Opening FTP connection to %s" host))))
2053 (or (car result)
2054 (ange-ftp-error host user
2055 (concat "OPEN request failed: "
2056 (cdr result))))
9c35d706
RS
2057 (if (not (and ange-ftp-raw-login (string< "" account)))
2058 (setq result (ange-ftp-raw-send-cmd
2059 proc
2060 (if (and (ange-ftp-use-smart-gateway-p host)
2061 ange-ftp-gateway-host)
2062 (format "user \"%s\"@%s %s %s"
4671dba5
JB
2063 user nshost password account)
2064 (format "user \"%s\" %s %s" user password account))
9c35d706
RS
2065 (format "Logging in as user %s@%s" user host)))
2066 (let ((good ange-ftp-good-msgs)
2067 (skip ange-ftp-skip-msgs))
2068 (setq ange-ftp-good-msgs (concat ange-ftp-good-msgs
2069 "\\|^331 \\|^332 "))
2070 (if (string-match (regexp-quote "\\|^331 ") ange-ftp-skip-msgs)
2071 (setq ange-ftp-skip-msgs
2072 (replace-match "" t t ange-ftp-skip-msgs)))
2073 (if (string-match (regexp-quote "\\|^332 ") ange-ftp-skip-msgs)
2074 (setq ange-ftp-skip-msgs
2075 (replace-match "" t t ange-ftp-skip-msgs)))
2076 (setq result (ange-ftp-raw-send-cmd
2077 proc
2078 (format "quote \"USER %s\"" user)
2079 (format "Logging in as user %s@%s" user host)))
2080 (and (car result)
2081 (setq result (ange-ftp-raw-send-cmd
2082 proc
4671dba5 2083 (format "quote \"PASS %s\"" password)
9c35d706
RS
2084 (format "Logging in as user %s@%s" user host)))
2085 (and (car result)
2086 (setq result (ange-ftp-raw-send-cmd
2087 proc
2088 (format "quote \"ACCT %s\"" account)
2089 (format "Logging in as user %s@%s" user host)))
2090 ))
2091 (setq ange-ftp-good-msgs good
2092 ange-ftp-skip-msgs skip)))
8749abea
GM
2093 (or (car result)
2094 (progn
e3441f42 2095 (ange-ftp-set-passwd host user nil) ;reset password.
8749abea
GM
2096 (ange-ftp-set-account host user nil) ;reset account.
2097 (ange-ftp-error host user
2098 (concat "USER request failed: "
2099 (cdr result))))))))
2100
2101;; ange@hplb.hpl.hp.com says this should not be changed.
2102(defvar ange-ftp-hash-mark-msgs
2103 "[hH]ash mark [^0-9]*\\([0-9]+\\)"
2104 "*Regexp matching the FTP client's output upon doing a HASH command.")
2105
2106(defun ange-ftp-guess-hash-mark-size (proc)
2107 (if ange-ftp-send-hash
b63f6e81 2108 (with-current-buffer (process-buffer proc)
8749abea 2109 (let* ((status (ange-ftp-raw-send-cmd proc "hash"))
8749abea
GM
2110 (line (cdr status)))
2111 (save-match-data
2112 (if (string-match ange-ftp-hash-mark-msgs line)
027a4b6b 2113 (let ((size (string-to-number (match-string 1 line))))
8749abea
GM
2114 (setq ange-ftp-ascii-hash-mark-size size
2115 ange-ftp-hash-mark-unit (ash size -4))
2116
2117 ;; if a default value for this is set, use that value.
2118 (or ange-ftp-binary-hash-mark-size
2119 (setq ange-ftp-binary-hash-mark-size size)))))))))
2120
aa6f7b96
SM
2121(defvar ange-ftp-process-startup-hook nil)
2122
8749abea
GM
2123(defun ange-ftp-get-process (host user)
2124 "Return an FTP subprocess connected to HOST and logged in as USER.
2125Create a new process if needed."
2126 (let* ((name (ange-ftp-ftp-process-buffer host user))
2127 (proc (get-process name)))
2128 (if (and proc (memq (process-status proc) '(run open)))
2129 proc
2130 ;; Must delete dead process so that new process can reuse the name.
2131 (if proc (delete-process proc))
2132 (let ((pass (ange-ftp-quote-string
2133 (ange-ftp-get-passwd host user)))
2134 (account (ange-ftp-quote-string
2135 (ange-ftp-get-account host user))))
2136 ;; grab a suitable process.
2137 (setq proc (ange-ftp-start-process host user name))
25759a92 2138
8749abea
GM
2139 ;; login to FTP server.
2140 (if (and (ange-ftp-use-smart-gateway-p host)
2141 ange-ftp-gateway-host)
2142 (ange-ftp-smart-login host user pass account proc)
2143 (ange-ftp-normal-login host user pass account proc))
25759a92 2144
8749abea
GM
2145 ;; Tell client to send back hash-marks as progress. It isn't usually
2146 ;; fatal if this command fails.
2147 (ange-ftp-guess-hash-mark-size proc)
2148
2149 ;; Guess at the host type.
2150 (ange-ftp-guess-host-type host user)
2151
1d0653f8
RS
2152 ;; Turn passive mode on or off as requested.
2153 (let* ((case-fold-search t)
2154 (passive
2155 (or (assoc-default host ange-ftp-passive-host-alist
2156 'string-match)
2157 (if ange-ftp-try-passive-mode "on"))))
2158 (if passive
31bcb0dc 2159 (ange-ftp-passive-mode proc passive)))
8749abea
GM
2160
2161 ;; Run any user-specified hooks. Note that proc, host and user are
2162 ;; dynamically bound at this point.
e3441f42
SM
2163 (let ((ange-ftp-this-user user)
2164 (ange-ftp-this-host host))
2165 (run-hooks 'ange-ftp-process-startup-hook)))
8749abea
GM
2166 proc)))
2167
31bcb0dc 2168(defun ange-ftp-passive-mode (proc on-or-off)
1d0653f8
RS
2169 (if (string-match (concat "Passive mode " on-or-off)
2170 (cdr (ange-ftp-raw-send-cmd
2171 proc (concat "passive " on-or-off)
2172 "Trying passive mode..." nil)))
2173 (ange-ftp-message (concat "Trying passive mode..." on-or-off))
2174 (error "Trying passive mode...failed")))
2175
8749abea
GM
2176;; Variables for caching host and host-type
2177(defvar ange-ftp-host-cache nil)
2178(defvar ange-ftp-host-type-cache nil)
2179
2180;; If ange-ftp-host-type is called with the optional user
2181;; argument, it will attempt to guess the host type by connecting
2182;; as user, if necessary. For efficiency, I have tried to give this
2183;; optional second argument only when necessary. Have I missed any calls
2184;; to ange-ftp-host-type where it should have been supplied?
2185
2186(defun ange-ftp-host-type (host &optional user)
2187 "Return a symbol which represents the type of the HOST given.
2188If the optional argument USER is given, attempts to guess the
2189host-type by logging in as USER."
2190 (cond ((null host) 'unix)
2191 ;; Return `unix' if HOST is nil, since that's the most vanilla
2192 ;; possible return value.
2193 ((eq host ange-ftp-host-cache)
2194 ange-ftp-host-type-cache)
2195 ;; Trigger an ftp connection, in case we need to guess at the host type.
2196 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache))
2197 ange-ftp-host-type-cache)
2198 (t
2199 (setq ange-ftp-host-cache host
2200 ange-ftp-host-type-cache
2201 (cond ((ange-ftp-dumb-unix-host host)
2202 'dumb-unix)
2203 ;; ((and (fboundp 'ange-ftp-vos-host)
2204 ;; (ange-ftp-vos-host host))
2205 ;; 'vos)
2206 ((and (fboundp 'ange-ftp-vms-host)
2207 (ange-ftp-vms-host host))
2208 'vms)
2209 ((and (fboundp 'ange-ftp-mts-host)
2210 (ange-ftp-mts-host host))
2211 'mts)
2212 ((and (fboundp 'ange-ftp-cms-host)
2213 (ange-ftp-cms-host host))
2214 'cms)
9c35d706
RS
2215 ((and (fboundp 'ange-ftp-bs2000-posix-host)
2216 (ange-ftp-bs2000-posix-host host))
2217 'text-unix) ; POSIX is a non-ASCII Unix
2218 ((and (fboundp 'ange-ftp-bs2000-host)
2219 (ange-ftp-bs2000-host host))
2220 'bs2000)
8749abea
GM
2221 (t
2222 'unix))))))
2223
2224;; It would be nice to abstract the functions ange-ftp-TYPE-host and
2225;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
2226;; without sacrificing speed. Also, having separate variables
2227;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
2228;; set an alist to indicate that a host is of a given type. Even with
2229;; automatic host type recognition, setting a regexp is still a good idea
2230;; (for efficiency) if you log into a particular non-UNIX host frequently.
2231
2232(defvar ange-ftp-fix-name-func-alist nil
2233 "Alist saying how to convert file name to the host's syntax.
4671dba5
JB
2234Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2235change a UNIX file name into a name more suitable for a host of type TYPE.")
8749abea
GM
2236
2237(defvar ange-ftp-fix-dir-name-func-alist nil
2238 "Alist saying how to convert directory name to the host's syntax.
4671dba5
JB
2239Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
2240change UNIX directory name into a directory name more suitable for a host
2241of type TYPE.")
8749abea
GM
2242
2243;; *** Perhaps the sense of this variable should be inverted, since there
2244;; *** is only 1 host type that can take ls-style listing options.
2245(defvar ange-ftp-dumb-host-types '(dumb-unix)
2246 "List of host types that can't take UNIX ls-style listing options.")
2247
2248(defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait)
4671dba5 2249 "Find an FTP process connected to HOST logged in as USER and send it CMD.
8749abea
GM
2250MSG is an optional status message to be output before and after issuing the
2251command.
25759a92 2252See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT
8749abea
GM
2253and NOWAIT."
2254 ;; Handle conversion to remote file name syntax and remote ls option
2255 ;; capability.
2256 (let ((cmd0 (car cmd))
2257 (cmd1 (nth 1 cmd))
2258 (ange-ftp-this-user user)
2259 (ange-ftp-this-host host)
2260 (ange-ftp-this-msg msg)
67f300f8 2261 cmd2 cmd3 host-type fix-name-func result)
8749abea
GM
2262
2263 (cond
25759a92 2264
8749abea
GM
2265 ;; pwd case (We don't care what host-type.)
2266 ((null cmd1))
25759a92 2267
8749abea
GM
2268 ;; cmd == 'dir "remote-name" "local-name" "ls-switches"
2269 ((progn
2270 (setq cmd2 (nth 2 cmd)
2271 host-type (ange-ftp-host-type host user))
2272 ;; This will trigger an FTP login, if one doesn't exist
2273 (eq cmd0 'dir))
2274 (setq cmd1 (funcall
2275 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist))
2276 'identity)
2277 cmd1)
2278 cmd3 (nth 3 cmd))
ae0bec0b
SM
2279 ;; Need to deal with the HP-UX ftp bug. This should also allow us to
2280 ;; resolve symlinks to directories on SysV machines. (Sebastian will
8749abea
GM
2281 ;; be happy.)
2282 (and (eq host-type 'unix)
aa6f7b96 2283 (string-match "/\\'" cmd1)
8749abea
GM
2284 (not (string-match "R" cmd3))
2285 (setq cmd1 (concat cmd1 ".")))
2286
b63f6e81
SM
2287 ;; Using "ls -flags foo" has several problems:
2288 ;; - if foo is a symlink, we may get a single line showing the symlink
2289 ;; rather than the listing of the directory it points to.
2290 ;; - if "foo" has spaces, the parsing of the command may be done wrong.
2291 ;; - some version of netbsd's ftpd only accept a single argument after
2292 ;; `ls', which can either be the directory or the flags.
2293 ;; So to work around those problems, we use "cd foo; ls -flags".
2294
8749abea
GM
2295 ;; If the dir name contains a space, some ftp servers will
2296 ;; refuse to list it. We instead change directory to the
2297 ;; directory in question and ls ".".
2298 (when (string-match " " cmd1)
67f300f8
SM
2299 ;; Keep the result. In case of failure, we will (see below)
2300 ;; short-circuit CMD and return this result directly.
2301 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror))
8749abea
GM
2302 (setq cmd1 "."))
2303
2304 ;; If the remote ls can take switches, put them in
7ca26b02
SM
2305 (unless (memq host-type ange-ftp-dumb-host-types)
2306 (setq cmd0 'ls)
2307 ;; We cd and then use `ls' with no directory argument.
aa6f7b96
SM
2308 ;; This works around a misfeature of some versions of netbsd ftpd
2309 ;; where `ls' can only take one argument: either one set of flags
2310 ;; or a file/directory name.
3bd1644e 2311 ;; If we're trying to `ls' a single file, this fails since we
aa6f7b96
SM
2312 ;; can't cd to a file. We can't fix this problem here, tho, because
2313 ;; at this point we don't know whether the argument is a file or
3bd1644e 2314 ;; a directory. Such an `ls' is only ever used (apparently) from
aa6f7b96
SM
2315 ;; `insert-directory' when the `full-directory-p' argument is nil
2316 ;; (which seems to only be used by dired when updating its display
3bd1644e
SM
2317 ;; after operating on a set of files). So we've changed
2318 ;; `ange-ftp-insert-directory' such that in this case it gets
aa6f7b96
SM
2319 ;; a full listing of the directory and extracting the line
2320 ;; corresponding to the requested file.
7ca26b02 2321 (unless (equal cmd1 ".")
aa6f7b96
SM
2322 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)))
2323 (setq cmd1 cmd3)))
25759a92 2324
8749abea
GM
2325 ;; First argument is the remote name
2326 ((progn
2327 (setq fix-name-func (or (cdr (assq host-type
2328 ange-ftp-fix-name-func-alist))
2329 'identity))
2330 (memq cmd0 '(get delete mkdir rmdir cd)))
2331 (setq cmd1 (funcall fix-name-func cmd1)))
2332
2333 ;; Second argument is the remote name
cfc3aed3 2334 ((or (memq cmd0 '(append put chmod))
412707c2 2335 (and (eq cmd0 'quote) (member cmd1 '("mdtm" "size"))))
8749abea 2336 (setq cmd2 (funcall fix-name-func cmd2)))
8749abea
GM
2337 ;; Both arguments are remote names
2338 ((eq cmd0 'rename)
2339 (setq cmd1 (funcall fix-name-func cmd1)
2340 cmd2 (funcall fix-name-func cmd2))))
25759a92
SS
2341
2342 ;; Turn the command into one long string
8749abea
GM
2343 (setq cmd0 (symbol-name cmd0))
2344 (setq cmd (concat cmd0
2345 (and cmd1 (concat " " cmd1))
2346 (and cmd2 (concat " " cmd2))))
2347
2348 ;; Actually send the resulting command.
67f300f8
SM
2349 (if (and (consp result) (null (car result)))
2350 ;; `ange-ftp-cd' has failed, so there's no point sending `cmd'.
2351 result
2352 (let (afsc-result
2353 afsc-line)
2354 (ange-ftp-raw-send-cmd
2355 (ange-ftp-get-process host user)
2356 cmd
2357 msg
2358 (list (lambda (result line host user cmd msg cont nowait)
2359 (or cont (setq afsc-result result
2360 afsc-line line))
2361 (if result (ange-ftp-call-cont cont result line)
25759a92
SS
2362 (ange-ftp-raw-send-cmd
2363 (ange-ftp-get-process host user)
2364 cmd
2365 msg
2366 (list (lambda (result line cont)
2367 (or cont (setq afsc-result result
2368 afsc-line line))
2369 (ange-ftp-call-cont cont result line))
67f300f8
SM
2370 cont)
2371 nowait)))
2372 host user cmd msg cont nowait)
2373 nowait)
2374
2375 (if nowait
8749abea 2376 nil
67f300f8
SM
2377 (if cont
2378 nil
2379 (cons afsc-result afsc-line)))))))
8749abea
GM
2380
2381;; It might be nice to message users about the host type identified,
2382;; but there is so much other messaging going on, it would not be
2383;; seen. No point in slowing things down just so users can read
2384;; a host type message.
2385
2386(defconst ange-ftp-cms-name-template
2387 (concat
2388 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?"
2389 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$"))
2390(defconst ange-ftp-vms-name-template
2391 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$")
2392(defconst ange-ftp-mts-name-template
2393 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$")
9c35d706
RS
2394(defconst ange-ftp-bs2000-filename-pubset-regexp
2395 ":[A-Z0-9]+:"
2396 "Valid pubset for an BS2000 file name.")
2397(defconst ange-ftp-bs2000-filename-username-regexp
2398 (concat
2399 "\\$[A-Z0-9]*\\.")
2400 "Valid username for an BS2000 file name.")
2401(defconst ange-ftp-bs2000-filename-prefix-regexp
2402 (concat
2403 ange-ftp-bs2000-filename-pubset-regexp
2404 ange-ftp-bs2000-filename-username-regexp)
2405 "Valid prefix for an BS2000 file name (pubset and user).")
2406(defconst ange-ftp-bs2000-name-template
2407 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$"))
8749abea
GM
2408
2409(defun ange-ftp-guess-host-type (host user)
110c171f 2410 "Guess the host type of HOST.
8749abea
GM
2411Works by doing a pwd and examining the directory syntax."
2412 (let ((host-type (ange-ftp-host-type host))
2413 (key (concat host "/" user "/~")))
2414 (if (eq host-type 'unix)
2415 ;; Note that ange-ftp-host-type returns unix as the default value.
2416 (save-match-data
2417 (let* ((result (ange-ftp-get-pwd host user))
2418 (dir (car result))
2419 fix-name-func)
2420 (cond ((null dir)
2421 (message "Warning! Unable to get home directory")
2422 (sit-for 1)
2423 (if (string-match
2424 "^450 No current working directory defined$"
2425 (cdr result))
25759a92 2426
8749abea
GM
2427 ;; We'll assume that if pwd bombs with this
2428 ;; error message, then it's CMS.
2429 (progn
2430 (ange-ftp-add-cms-host host)
2431 (setq ange-ftp-host-cache host
2432 ange-ftp-host-type-cache 'cms))))
2433
2434 ;; try for VMS
2435 ((string-match ange-ftp-vms-name-template dir)
2436 (ange-ftp-add-vms-host host)
2437 ;; The add-host functions clear the host type cache.
2438 ;; Therefore, need to set the cache afterwards.
2439 (setq ange-ftp-host-cache host
2440 ange-ftp-host-type-cache 'vms))
2441
2442 ;; try for MTS
2443 ((string-match ange-ftp-mts-name-template dir)
2444 (ange-ftp-add-mts-host host)
2445 (setq ange-ftp-host-cache host
2446 ange-ftp-host-type-cache 'mts))
25759a92 2447
8749abea
GM
2448 ;; try for CMS
2449 ((string-match ange-ftp-cms-name-template dir)
2450 (ange-ftp-add-cms-host host)
2451 (setq ange-ftp-host-cache host
2452 ange-ftp-host-type-cache 'cms))
2453
9c35d706
RS
2454 ;; try for BS2000-POSIX
2455 ((ange-ftp-bs2000-posix-host host)
2456 (ange-ftp-add-bs2000-host host)
2457 (setq ange-ftp-host-cache host
2458 ange-ftp-host-type-cache 'text-unix))
2459 ;; try for BS2000
2460 ((and (string-match ange-ftp-bs2000-name-template dir)
2461 (not (ange-ftp-bs2000-posix-host host)))
2462 (ange-ftp-add-bs2000-host host)
2463 (setq ange-ftp-host-cache host
2464 ange-ftp-host-type-cache 'bs2000))
8749abea
GM
2465 ;; assume UN*X
2466 (t
2467 (setq ange-ftp-host-cache host
2468 ange-ftp-host-type-cache 'unix)))
2469
2470 ;; Now that we have done a pwd, might as well put it in
2471 ;; the expand-dir hashtable.
2472 (let ((ange-ftp-this-user user)
2473 (ange-ftp-this-host host))
2474 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache
2475 ange-ftp-fix-name-func-alist)))
2476 (if fix-name-func
2477 (setq dir (funcall fix-name-func dir 'reverse))))
6e85ef5f 2478 (puthash key dir ange-ftp-expand-dir-hashtable))))
8749abea
GM
2479
2480 ;; In the special case of CMS make sure that know the
2481 ;; expansion of the home minidisk now, because we will
2482 ;; be doing a lot of cd's.
2483 (if (and (eq host-type 'cms)
2484 (not (ange-ftp-hash-entry-exists-p
2485 key ange-ftp-expand-dir-hashtable)))
2486 (let ((dir (car (ange-ftp-get-pwd host user))))
2487 (if dir
6e85ef5f 2488 (puthash key (concat "/" dir) ange-ftp-expand-dir-hashtable)
8749abea
GM
2489 (message "Warning! Unable to get home directory")
2490 (sit-for 1))))))
2491
2492\f
2493;;;; ------------------------------------------------------------
2494;;;; Remote file and directory listing support.
2495;;;; ------------------------------------------------------------
2496
2497;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands
2498;; to take switch arguments.
2499(defun ange-ftp-dumb-unix-host (host)
2500 (and host ange-ftp-dumb-unix-host-regexp
4671dba5 2501 (string-match-p ange-ftp-dumb-unix-host-regexp host)))
8749abea
GM
2502
2503(defun ange-ftp-add-dumb-unix-host (host)
4671dba5 2504 "Interactively add a given HOST to `ange-ftp-dumb-unix-host-regexp'."
8749abea
GM
2505 (interactive
2506 (list (read-string "Host: "
2507 (let ((name (or (buffer-file-name) default-directory)))
2508 (and name (car (ange-ftp-ftp-name name)))))))
2509 (if (not (ange-ftp-dumb-unix-host host))
2510 (setq ange-ftp-dumb-unix-host-regexp
2511 (concat "^" (regexp-quote host) "$"
2512 (and ange-ftp-dumb-unix-host-regexp "\\|")
2513 ange-ftp-dumb-unix-host-regexp)
2514 ange-ftp-host-cache nil)))
2515
2516(defvar ange-ftp-parse-list-func-alist nil
2517 "Alist saying how to parse directory listings for certain OS types.
4671dba5
JB
2518Association list of (TYPE . FUNC) pairs. The FUNC is a routine which
2519can parse the output from a DIR listing for a host of type TYPE.")
8749abea
GM
2520
2521;; With no-error nil, this function returns:
2522;; an error if file is not an ange-ftp-name
25759a92 2523;; (This should never happen.)
8749abea
GM
2524;; an error if either the listing is unreadable or there is an ftp error.
2525;; the listing (a string), if everything works.
25759a92 2526;;
8749abea
GM
2527;; With no-error t, it returns:
2528;; an error if not an ange-ftp-name
2529;; error if listing is unreadable (most likely caused by a slow connection)
2530;; nil if ftp error (this is because although asking to list a nonexistent
2531;; directory on a remote unix machine usually (except
2532;; maybe for dumb hosts) returns an ls error, but no
2533;; ftp error, if the same is done on a VMS machine,
2534;; an ftp error is returned. Need to trap the error
2535;; so we can go on and try to list the parent.)
2536;; the listing, if everything works.
2537
2538;; If WILDCARD is non-nil, then this implements the guts of insert-directory
2539;; in the wildcard case. Then we make a relative directory listing
2540;; of FILE within the directory specified by `default-directory'.
2541
2542(defvar ange-ftp-before-parse-ls-hook nil
4671dba5 2543 "Normal hook run before parsing the text of an FTP directory listing.")
8749abea 2544
a724ed38 2545(defvar ange-ftp-after-parse-ls-hook nil
4671dba5 2546 "Normal hook run after parsing the text of an FTP directory listing.")
a724ed38 2547
8749abea 2548(defun ange-ftp-ls (file lsargs parse &optional no-error wildcard)
4671dba5 2549 "Return the output of a `DIR' or `ls' command done over FTP.
8749abea
GM
2550FILE is the full name of the remote file, LSARGS is any args to pass to the
2551`ls' command, and PARSE specifies that the output should be parsed and stored
2552away in the internal cache."
1fc85dae
KG
2553 (when (string-match "^--dired\\s-+" lsargs)
2554 (setq lsargs (replace-match "" nil t lsargs)))
8749abea
GM
2555 ;; If parse is t, we assume that file is a directory. i.e. we only parse
2556 ;; full directory listings.
2557 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file))
2558 (parsed (ange-ftp-ftp-name ange-ftp-this-file)))
2559 (if parsed
2560 (let* ((host (nth 0 parsed))
2561 (user (nth 1 parsed))
2562 (name (ange-ftp-quote-string (nth 2 parsed)))
2563 (key (directory-file-name ange-ftp-this-file))
2564 (host-type (ange-ftp-host-type host user))
2565 (dumb (memq host-type ange-ftp-dumb-host-types))
2566 result
2567 temp
2568 lscmd parse-func)
2569 (if (string-equal name "")
2570 (setq name
2571 (ange-ftp-real-file-name-as-directory
6e85ef5f 2572 (ange-ftp-expand-dir host user "~"))))
8749abea
GM
2573 (if (and ange-ftp-ls-cache-file
2574 (string-equal key ange-ftp-ls-cache-file)
2575 ;; Don't care about lsargs for dumb hosts.
2576 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs)))
2577 ange-ftp-ls-cache-res
2578 (setq temp (ange-ftp-make-tmp-name host))
2579 (if wildcard
2580 (progn
2581 (ange-ftp-cd host user (file-name-directory name))
06531fc3 2582 (setq lscmd (list 'ls file temp lsargs)))
8749abea
GM
2583 (setq lscmd (list 'dir name temp lsargs)))
2584 (unwind-protect
2585 (if (car (setq result (ange-ftp-send-cmd
2586 host
2587 user
2588 lscmd
2589 (format "Listing %s"
2590 (ange-ftp-abbreviate-filename
2591 ange-ftp-this-file)))))
b63f6e81 2592 (with-current-buffer (get-buffer-create
c7bef55f 2593 ange-ftp-data-buffer-name)
8749abea
GM
2594 (erase-buffer)
2595 (if (ange-ftp-real-file-readable-p temp)
2596 (ange-ftp-real-insert-file-contents temp)
2597 (sleep-for ange-ftp-retry-time)
2598 ;wait for file to possibly appear
2599 (if (ange-ftp-real-file-readable-p temp)
2600 ;; Try again.
2601 (ange-ftp-real-insert-file-contents temp)
2602 (ange-ftp-error host user
2603 (format
2604 "list data file %s not readable"
2605 temp))))
9d453139
SS
2606 ;; remove ^M inserted by the win32 ftp client
2607 (while (re-search-forward "\r$" nil t)
2608 (replace-match ""))
2609 (goto-char 1)
8749abea
GM
2610 (run-hooks 'ange-ftp-before-parse-ls-hook)
2611 (if parse
2612 (ange-ftp-set-files
2613 ange-ftp-this-file
2614 (if (setq
2615 parse-func
2616 (cdr (assq host-type
2617 ange-ftp-parse-list-func-alist)))
2618 (funcall parse-func)
2619 (ange-ftp-parse-dired-listing lsargs))))
a724ed38
GM
2620 ;; Place this hook here to convert the contents of the
2621 ;; buffer to a ls compatible format if the host system
2622 ;; that is being queried is other than Unix i.e. VMS
2623 ;; returns an ls format that really sucks.
2624 (run-hooks 'ange-ftp-after-parse-ls-hook)
8749abea
GM
2625 (setq ange-ftp-ls-cache-file key
2626 ange-ftp-ls-cache-lsargs lsargs
2627 ; For dumb hosts-types this is
2628 ; meaningless but harmless.
2629 ange-ftp-ls-cache-res (buffer-string))
2630 ;; (kill-buffer (current-buffer))
67f300f8
SM
2631 (if (equal ange-ftp-ls-cache-res "total 0\n")
2632 ;; wu-ftpd seems to return a successful result
2633 ;; with an empty file-listing when doing a
2634 ;; `DIR /some/file/.' which leads ange-ftp to
2635 ;; believe that /some/file is a directory ;-(
2636 nil
2637 ange-ftp-ls-cache-res))
8749abea
GM
2638 (if no-error
2639 nil
2640 (ange-ftp-error host user
2641 (concat "DIR failed: " (cdr result)))))
2642 (ange-ftp-del-tmp-name temp))))
2643 (error "Should never happen. Please report. Bug ref. no.: 1"))))
2644\f
2645;;;; ------------------------------------------------------------
2646;;;; Directory information caching support.
2647;;;; ------------------------------------------------------------
2648
8749abea
GM
2649(defvar ange-ftp-add-file-entry-alist nil
2650 "Alist saying how to add file entries on certain OS types.
4671dba5
JB
2651Association list of pairs (TYPE . FUNC), where FUNC is a function
2652to be used to add a file entry for the OS TYPE.
2653The main reason for this alist is to deal with file versions in VMS.")
8749abea
GM
2654
2655(defvar ange-ftp-delete-file-entry-alist nil
2656 "Alist saying how to delete files on certain OS types.
4671dba5
JB
2657Association list of pairs (TYPE . FUNC), where FUNC is a function
2658to be used to delete a file entry for the OS TYPE.
8749abea
GM
2659The main reason for this alist is to deal with file versions in VMS.")
2660
2661(defun ange-ftp-add-file-entry (name &optional dir-p)
2662 "Add a file entry for file NAME, if its directory info exists."
2663 (funcall (or (cdr (assq (ange-ftp-host-type
2664 (car (ange-ftp-ftp-name name)))
2665 ange-ftp-add-file-entry-alist))
2666 'ange-ftp-internal-add-file-entry)
2667 name dir-p)
2668 (setq ange-ftp-ls-cache-file nil))
2669
2670(defun ange-ftp-delete-file-entry (name &optional dir-p)
2671 "Delete the file entry for file NAME, if its directory info exists."
2672 (funcall (or (cdr (assq (ange-ftp-host-type
2673 (car (ange-ftp-ftp-name name)))
2674 ange-ftp-delete-file-entry-alist))
2675 'ange-ftp-internal-delete-file-entry)
2676 name dir-p)
2677 (setq ange-ftp-ls-cache-file nil))
2678
2679(defmacro ange-ftp-parse-filename ()
2680 ;;Extract the filename from the current line of a dired-like listing.
25759a92
SS
2681 `(let ((eol (progn (end-of-line) (point))))
2682 (beginning-of-line)
9bc260cf
MA
2683 (if (re-search-forward directory-listing-before-filename-regexp eol t)
2684 (buffer-substring (point) eol))))
25759a92 2685
8749abea
GM
2686;; This deals with the F switch. Should also do something about
2687;; unquoting names obtained with the SysV b switch and the GNU Q
2688;; switch. See Sebastian's dired-get-filename.
2689
e3441f42 2690(defun ange-ftp-ls-parser (switches)
8749abea 2691 ;; Meant to be called by ange-ftp-parse-dired-listing
6e85ef5f 2692 (let ((tbl (make-hash-table :test 'equal))
c8607dc7
SM
2693 (used-F (and (stringp switches)
2694 (string-match "F" switches)))
2695 file-type symlink directory file)
2696 (while (setq file (ange-ftp-parse-filename))
2697 (beginning-of-line)
2698 (skip-chars-forward "\t 0-9")
2699 (setq file-type (following-char)
2700 directory (eq file-type ?d))
2701 (if (eq file-type ?l)
2702 (let ((end (string-match " -> " file)))
2703 (if end
2704 ;; Sometimes `ls' appends a @ at the end of the target.
2705 (setq symlink (substring file (match-end 0)
2706 (string-match "@\\'" file))
2707 file (substring file 0 end))
2708 ;; Shouldn't happen
2709 (setq symlink "")))
2710 (setq symlink nil))
2711 ;; Only do a costly regexp search if the F switch was used.
2712 (if (and used-F
2713 (not (string-equal file ""))
2714 (looking-at
2715 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"))
2716 (let ((socket (eq file-type ?s))
2717 (executable
2718 (and (not symlink) ; x bits don't mean a thing for symlinks
2719 (string-match
2720 "[xst]"
e3441f42
SM
2721 (concat (match-string 1)
2722 (match-string 2)
2723 (match-string 3))))))
c8607dc7
SM
2724 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX)
2725 ;; and others don't. (sigh...) Beware, that some Unix's don't
2726 ;; seem to believe in the F-switch
aa6f7b96
SM
2727 (if (or (and symlink (string-match "@\\'" file))
2728 (and directory (string-match "/\\'" file))
2729 (and executable (string-match "*\\'" file))
2730 (and socket (string-match "=\\'" file)))
c8607dc7 2731 (setq file (substring file 0 -1)))))
6e85ef5f 2732 (puthash file (or symlink directory) tbl)
c8607dc7 2733 (forward-line 1))
6e85ef5f
SM
2734 (puthash "." t tbl)
2735 (puthash ".." t tbl)
25759a92 2736 tbl))
8749abea
GM
2737
2738;;; The dl stuff for descriptive listings
2739
2740(defvar ange-ftp-dl-dir-regexp nil
2741 "Regexp matching directories which are listed in dl format.
2742This regexp should not be anchored with a trailing `$', because it should
2743match subdirectories as well.")
2744
2745(defun ange-ftp-add-dl-dir (dir)
4671dba5 2746 "Interactively add a DIR to `ange-ftp-dl-dir-regexp'."
8749abea
GM
2747 (interactive
2748 (list (read-string "Directory: "
2749 (let ((name (or (buffer-file-name) default-directory)))
2750 (and name (ange-ftp-ftp-name name)
2751 (file-name-directory name))))))
2752 (if (not (and ange-ftp-dl-dir-regexp
2753 (string-match ange-ftp-dl-dir-regexp dir)))
2754 (setq ange-ftp-dl-dir-regexp
2755 (concat "^" (regexp-quote dir)
2756 (and ange-ftp-dl-dir-regexp "\\|")
2757 ange-ftp-dl-dir-regexp))))
2758
2759(defmacro ange-ftp-dl-parser ()
2760 ;; Parse the current buffer, which is assumed to be a descriptive
2761 ;; listing, and return a hashtable.
6e85ef5f 2762 `(let ((tbl (make-hash-table :test 'equal)))
25759a92 2763 (while (not (eobp))
6e85ef5f 2764 (puthash
25759a92
SS
2765 (buffer-substring (point)
2766 (progn
2767 (skip-chars-forward "^ /\n")
2768 (point)))
2769 (eq (following-char) ?/)
2770 tbl)
2771 (forward-line 1))
6e85ef5f
SM
2772 (puthash "." t tbl)
2773 (puthash ".." t tbl)
2774 tbl))
8749abea
GM
2775
2776;; Parse the current buffer which is assumed to be in a dired-like listing
2777;; format, and return a hashtable as the result. If the listing is not really
2778;; a listing, then return nil.
2779
2780(defun ange-ftp-parse-dired-listing (&optional switches)
2781 (save-match-data
2782 (cond
2783 ((looking-at "^total [0-9]+$")
2784 (forward-line 1)
2785 ;; Some systems put in a blank line here.
2786 (if (eolp) (forward-line 1))
e3441f42 2787 (ange-ftp-ls-parser switches))
8749abea
GM
2788 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'")
2789 ;; It's an ls error message.
2790 nil)
2791 ((eobp) ; i.e. (zerop (buffer-size))
2792 ;; This could be one of:
2793 ;; (1) An Ultrix ls error message
2794 ;; (2) A listing with the A switch of an empty directory
2795 ;; on a machine which doesn't give a total line.
2796 ;; (3) The twilight zone.
2797 ;; We'll assume (1) for now.
2798 nil)
9bc260cf 2799 ((re-search-forward directory-listing-before-filename-regexp nil t)
8749abea 2800 (beginning-of-line)
e3441f42 2801 (ange-ftp-ls-parser switches))
8749abea
GM
2802 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t)
2803 ;; It's a dl listing (I hope).
2804 ;; file is bound by the call to ange-ftp-ls
2805 (ange-ftp-add-dl-dir ange-ftp-this-file)
2806 (beginning-of-line)
2807 (ange-ftp-dl-parser))
2808 (t nil))))
2809
2810(defun ange-ftp-set-files (directory files)
2811 "For a given DIRECTORY, set or change the associated FILES hashtable."
6e85ef5f
SM
2812 (and files (puthash (file-name-as-directory directory)
2813 files ange-ftp-files-hashtable)))
8749abea
GM
2814
2815(defun ange-ftp-get-files (directory &optional no-error)
4671dba5 2816 "Given a DIRECTORY, return a hashtable of file entries.
8749abea
GM
2817This will give an error or return nil, depending on the value of
2818NO-ERROR, if a listing for DIRECTORY cannot be obtained."
2819 (setq directory (file-name-as-directory directory)) ;normalize
6e85ef5f 2820 (or (gethash directory ange-ftp-files-hashtable)
8749abea
GM
2821 (save-match-data
2822 (and (ange-ftp-ls directory
2823 ;; This is an efficiency hack. We try to
2824 ;; anticipate what sort of listing dired
2825 ;; might want, and cache just such a listing.
2826 (if (and (boundp 'dired-actual-switches)
2827 (stringp dired-actual-switches)
2828 ;; We allow the A switch, which lists
2829 ;; all files except "." and "..".
2830 ;; This is OK because we manually
2831 ;; insert these entries
2832 ;; in the hash table.
2833 (string-match
2834 "[aA]" dired-actual-switches)
2835 (string-match
2836 "l" dired-actual-switches)
2837 (not (string-match
2838 "R" dired-actual-switches)))
2839 dired-actual-switches
2840 (if (and (boundp 'dired-listing-switches)
2841 (stringp dired-listing-switches)
2842 (string-match
2843 "[aA]" dired-listing-switches)
2844 (string-match
2845 "l" dired-listing-switches)
2846 (not (string-match
2847 "R" dired-listing-switches)))
2848 dired-listing-switches
2849 "-al"))
2850 t no-error)
6e85ef5f 2851 (gethash directory ange-ftp-files-hashtable)))))
8749abea
GM
2852
2853;; Given NAME, return the file part that can be used for looking up the
2854;; file's entry in a hashtable.
2855(defmacro ange-ftp-get-file-part (name)
25759a92
SS
2856 `(let ((file (file-name-nondirectory ,name)))
2857 (if (string-equal file "")
e3441f42 2858 "."
25759a92 2859 file)))
8749abea
GM
2860
2861;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are
2862;; allowed to determine if NAME is a sub-directory by listing it directly,
2863;; rather than listing its parent directory. This is used for efficiency so
2864;; that a wasted listing is not done:
2865;; 1. When looking for a .dired file in dired-x.el.
2866;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid
2867;; subdirectory. This is of course an OS dependent judgement.
2868
e3441f42 2869(defvar dired-local-variables-file)
8749abea 2870(defmacro ange-ftp-allow-child-lookup (dir file)
76a98a50
SM
2871 `(not
2872 (let* ((efile ,file) ; expand once.
2873 (edir ,dir)
2874 (parsed (ange-ftp-ftp-name edir))
2875 (host-type (ange-ftp-host-type
2876 (car parsed))))
2877 (or
2878 ;; Deal with dired
2879 (and (boundp 'dired-local-variables-file) ; in the dired-x package
2880 (stringp dired-local-variables-file)
2881 (string-equal dired-local-variables-file efile))
2882 ;; No dots in dir names in vms.
2883 (and (eq host-type 'vms)
2884 (string-match "\\." efile))
2885 ;; No subdirs in mts of cms.
2886 (and (memq host-type '(mts cms))
2887 (not (string-equal "/" (nth 2 parsed))))
2888 ;; No dots in pseudo-dir names in bs2000.
2889 (and (eq host-type 'bs2000)
2890 (string-match "\\." efile))))))
8749abea
GM
2891
2892(defun ange-ftp-file-entry-p (name)
2893 "Given NAME, return whether there is a file entry for it."
2894 (let* ((name (directory-file-name name))
2895 (dir (file-name-directory name))
6e85ef5f 2896 (ent (gethash dir ange-ftp-files-hashtable))
8749abea
GM
2897 (file (ange-ftp-get-file-part name)))
2898 (if ent
2899 (ange-ftp-hash-entry-exists-p file ent)
2900 (or (and (ange-ftp-allow-child-lookup dir file)
2901 (setq ent (ange-ftp-get-files name t))
2902 ;; Try a child lookup. i.e. try to list file as a
2903 ;; subdirectory of dir. This is a good idea because
2904 ;; we may not have read permission for file's parent. Also,
2905 ;; people tend to work down directory trees anyway. We use
2906 ;; no-error ;; because if file does not exist as a subdir.,
2907 ;; then dumb hosts will give an ftp error. Smart unix hosts
2908 ;; will simply send back the ls
2909 ;; error message.
6e85ef5f 2910 (gethash "." ent))
8749abea 2911 ;; Child lookup failed, so try the parent.
311f32fe
DK
2912 (ange-ftp-hash-entry-exists-p
2913 file (ange-ftp-get-files dir 'no-error))))))
8749abea
GM
2914
2915(defun ange-ftp-get-file-entry (name)
2916 "Given NAME, return the given file entry.
2917The entry will be either t for a directory, nil for a normal file,
4671dba5 2918or a string for a symlink. If the file isn't in the hashtable,
8749abea
GM
2919this also returns nil."
2920 (let* ((name (directory-file-name name))
2921 (dir (file-name-directory name))
6e85ef5f 2922 (ent (gethash dir ange-ftp-files-hashtable))
8749abea
GM
2923 (file (ange-ftp-get-file-part name)))
2924 (if ent
6e85ef5f 2925 (gethash file ent)
8749abea
GM
2926 (or (and (ange-ftp-allow-child-lookup dir file)
2927 (setq ent (ange-ftp-get-files name t))
6e85ef5f
SM
2928 (gethash "." ent))
2929 ;; i.e. it's a directory by child lookup
57199263
DK
2930 (and (setq ent (ange-ftp-get-files dir t))
2931 (gethash file ent))))))
8749abea
GM
2932
2933(defun ange-ftp-internal-delete-file-entry (name &optional dir-p)
6e85ef5f
SM
2934 (when dir-p
2935 (setq name (file-name-as-directory name))
2936 (remhash name ange-ftp-files-hashtable)
2937 (setq name (directory-file-name name)))
8749abea
GM
2938 ;; Note that file-name-as-directory followed by directory-file-name
2939 ;; serves to canonicalize directory file names to their unix form.
2940 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO
6e85ef5f 2941 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
8749abea 2942 (if files
6e85ef5f 2943 (remhash (ange-ftp-get-file-part name) files))))
8749abea
GM
2944
2945(defun ange-ftp-internal-add-file-entry (name &optional dir-p)
2946 (and dir-p
2947 (setq name (directory-file-name name)))
6e85ef5f 2948 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable)))
8749abea 2949 (if files
6e85ef5f 2950 (puthash (ange-ftp-get-file-part name) dir-p files))))
8749abea
GM
2951
2952(defun ange-ftp-wipe-file-entries (host user)
2953 "Get rid of entry for HOST, USER pair from file entry information hashtable."
6e85ef5f 2954 (let ((new-tbl (make-hash-table :test 'equal
7adee48a
DK
2955 :size (hash-table-size
2956 ange-ftp-files-hashtable))))
6e85ef5f 2957 (maphash
25759a92
SS
2958 (lambda (key val)
2959 (let ((parsed (ange-ftp-ftp-name key)))
2960 (if parsed
2961 (let ((h (nth 0 parsed))
2962 (u (nth 1 parsed)))
2963 (or (and (equal host h) (equal user u))
6e85ef5f 2964 (puthash key val new-tbl))))))
8749abea
GM
2965 ange-ftp-files-hashtable)
2966 (setq ange-ftp-files-hashtable new-tbl)))
2967\f
2968;;;; ------------------------------------------------------------
2969;;;; File transfer mode support.
2970;;;; ------------------------------------------------------------
2971
2972(defun ange-ftp-set-binary-mode (host user)
4671dba5 2973 "Tell the FTP process for the given HOST & USER to switch to binary mode."
412707c2
SM
2974 ;; FIXME: We should keep track of the current mode, so as to avoid
2975 ;; unnecessary roundtrips.
8749abea
GM
2976 (let ((result (ange-ftp-send-cmd host user '(type "binary"))))
2977 (if (not (car result))
2978 (ange-ftp-error host user (concat "BINARY failed: " (cdr result)))
b63f6e81 2979 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
8749abea
GM
2980 (and ange-ftp-binary-hash-mark-size
2981 (setq ange-ftp-hash-mark-unit
2982 (ash ange-ftp-binary-hash-mark-size -4)))))))
2983
2984(defun ange-ftp-set-ascii-mode (host user)
4671dba5 2985 "Tell the FTP process for the given HOST & USER to switch to ASCII mode."
412707c2
SM
2986 ;; FIXME: We should keep track of the current mode, so as to avoid
2987 ;; unnecessary roundtrips.
8749abea
GM
2988 (let ((result (ange-ftp-send-cmd host user '(type "ascii"))))
2989 (if (not (car result))
2990 (ange-ftp-error host user (concat "ASCII failed: " (cdr result)))
b63f6e81 2991 (with-current-buffer (process-buffer (ange-ftp-get-process host user))
8749abea
GM
2992 (and ange-ftp-ascii-hash-mark-size
2993 (setq ange-ftp-hash-mark-unit
2994 (ash ange-ftp-ascii-hash-mark-size -4)))))))
2995\f
67f300f8 2996(defun ange-ftp-cd (host user dir &optional noerror)
8749abea 2997 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD")))
67f300f8
SM
2998 (if noerror result
2999 (or (car result)
3000 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))))
8749abea
GM
3001
3002(defun ange-ftp-get-pwd (host user)
4671dba5
JB
3003 "Attempt to get the current working directory for the given HOST/USER pair.
3004Returns (DIR . LINE) where DIR is either the directory or nil if not found,
8749abea
GM
3005and LINE is the relevant success or fail line from the FTP-client."
3006 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD"))
3007 (line (cdr result))
3008 dir)
3009 (if (car result)
3010 (save-match-data
3011 (and (or (string-match "\"\\([^\"]*\\)\"" line)
e3441f42
SM
3012 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers!
3013 (setq dir (match-string 1 line)))))
8749abea
GM
3014 (cons dir line)))
3015\f
3016;;; ------------------------------------------------------------
3017;;; expand-file-name and friends...which currently don't work
3018;;; ------------------------------------------------------------
3019
3020(defun ange-ftp-expand-dir (host user dir)
3021 "Return the result of doing a PWD in the current FTP session.
3022Use the connection to machine HOST
3023logged in as user USER and cd'd to directory DIR."
3024 (let* ((host-type (ange-ftp-host-type host user))
3025 ;; It is more efficient to call ange-ftp-host-type
3026 ;; before binding res, because ange-ftp-host-type sometimes
3027 ;; adds to the info in the expand-dir-hashtable.
3028 (fix-name-func
3029 (cdr (assq host-type ange-ftp-fix-name-func-alist)))
3030 (key (concat host "/" user "/" dir))
6e85ef5f 3031 (res (gethash key ange-ftp-expand-dir-hashtable)))
8749abea
GM
3032 (or res
3033 (progn
3034 (or
3035 (string-equal user "anonymous")
3036 (string-equal user "ftp")
3037 (not (eq host-type 'unix))
3038 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp
3039 "\\|"
3040 ange-ftp-good-msgs))
3041 (result (ange-ftp-send-cmd host user
3042 (list 'get dir null-device)
3043 (format "expanding %s" dir)))
3044 (line (cdr result)))
3045 (setq res
3046 (if (string-match ange-ftp-expand-dir-regexp line)
e3441f42 3047 (match-string 1 line)))))
8749abea
GM
3048 (or res
3049 (if (string-equal dir "~")
3050 (setq res (car (ange-ftp-get-pwd host user)))
3051 (let ((home (ange-ftp-expand-dir host user "~")))
3052 (unwind-protect
3053 (and (ange-ftp-cd host user dir)
3054 (setq res (car (ange-ftp-get-pwd host user))))
3055 (ange-ftp-cd host user home)))))
3056 (if res
3057 (let ((ange-ftp-this-user user)
3058 (ange-ftp-this-host host))
3059 (if fix-name-func
3060 (setq res (funcall fix-name-func res 'reverse)))
6e85ef5f 3061 (puthash key res ange-ftp-expand-dir-hashtable)))
8749abea
GM
3062 res))))
3063
3064(defun ange-ftp-canonize-filename (n)
4671dba5 3065 "Take a string N and short-circuit //, /. and /.."
8749abea
GM
3066 (if (string-match "[^:]+//" n) ;don't upset Apollo users
3067 (setq n (substring n (1- (match-end 0)))))
3068 (let ((parsed (ange-ftp-ftp-name n)))
3069 (if parsed
3070 (let ((host (car parsed))
3071 (user (nth 1 parsed))
3072 (name (nth 2 parsed)))
25759a92 3073
8749abea
GM
3074 ;; See if remote name is absolute. If so then just expand it and
3075 ;; replace the name component of the overall name.
aa6f7b96 3076 (cond ((string-match "\\`/" name)
8749abea 3077 name)
25759a92 3078
8749abea
GM
3079 ;; Name starts with ~ or ~user. Resolve that part of the name
3080 ;; making it absolute then re-expand it.
aa6f7b96 3081 ((string-match "\\`~[^/]*" name)
e3441f42 3082 (let* ((tilda (match-string 0 name))
8749abea
GM
3083 (rest (substring name (match-end 0)))
3084 (dir (ange-ftp-expand-dir host user tilda)))
3085 (if dir
aa6f7b96
SM
3086 ;; C-x d /ftp:anonymous@ftp.gnu.org:~/ RET
3087 ;; seems to cause `rest' to sometimes be empty.
3088 ;; Maybe it's an error for `rest' to be empty here,
3089 ;; but until we figure this out, this quick fix
3090 ;; seems to do the trick.
3091 (setq name (cond ((string-equal rest "") dir)
3092 ((string-equal dir "/") rest)
3093 (t (concat dir rest))))
25759a92 3094 (error "User \"%s\" is not known"
8749abea 3095 (substring tilda 1)))))
25759a92 3096
8749abea
GM
3097 ;; relative name. Tack on homedir and re-expand.
3098 (t
3099 (let ((dir (ange-ftp-expand-dir host user "~")))
3100 (if dir
3101 (setq name (concat
3102 (ange-ftp-real-file-name-as-directory dir)
3103 name))
3104 (error "Unable to obtain CWD")))))
25759a92 3105
8749abea 3106 ;; If name starts with //, preserve that, for apollo system.
aa6f7b96
SM
3107 (unless (string-match "\\`//" name)
3108 (if (not (eq system-type 'windows-nt))
3109 (setq name (ange-ftp-real-expand-file-name name))
3110 ;; Windows UNC default dirs do not make sense for ftp.
3111 (setq name (if (string-match "\\`//" default-directory)
3112 (ange-ftp-real-expand-file-name name "c:/")
3113 (ange-ftp-real-expand-file-name name)))
3114 ;; Strip off possible drive specifier.
3115 (if (string-match "\\`[a-zA-Z]:" name)
3116 (setq name (substring name 2))))
3117 (if (string-match "\\`//" name)
3118 (setq name (substring name 1))))
25759a92 3119
8749abea
GM
3120 ;; Now substitute the expanded name back into the overall filename.
3121 (ange-ftp-replace-name-component n name))
25759a92 3122
8749abea
GM
3123 ;; non-ange-ftp name. Just expand normally.
3124 (if (eq (string-to-char n) ?/)
3125 (ange-ftp-real-expand-file-name n)
3126 (ange-ftp-real-expand-file-name
3127 (ange-ftp-real-file-name-nondirectory n)
3128 (ange-ftp-real-file-name-directory n))))))
3129
3130(defun ange-ftp-expand-file-name (name &optional default)
3bd1644e 3131 "Documented as `expand-file-name'."
8749abea
GM
3132 (save-match-data
3133 (setq default (or default default-directory))
3134 (cond ((eq (string-to-char name) ?~)
3135 (ange-ftp-real-expand-file-name name))
3136 ((eq (string-to-char name) ?/)
3137 (ange-ftp-canonize-filename name))
3138 ((and (eq system-type 'windows-nt)
3139 (eq (string-to-char name) ?\\))
3140 (ange-ftp-canonize-filename name))
3141 ((and (eq system-type 'windows-nt)
aa6f7b96
SM
3142 (or (string-match "\\`[a-zA-Z]:" name)
3143 (string-match "\\`[a-zA-Z]:" default)))
8749abea
GM
3144 (ange-ftp-real-expand-file-name name default))
3145 ((zerop (length name))
3146 (ange-ftp-canonize-filename default))
3147 ((ange-ftp-canonize-filename
3148 (concat (file-name-as-directory default) name))))))
3149\f
3150;;; These are problems--they are currently not enabled.
3151
3152(defvar ange-ftp-file-name-as-directory-alist nil
4671dba5 3153 "Association list of (TYPE . FUNC) pairs.
8749abea
GM
3154FUNC converts a filename to a directory name for the operating
3155system TYPE.")
3156
3157(defun ange-ftp-file-name-as-directory (name)
4671dba5 3158 "Documented as `file-name-as-directory'."
8749abea
GM
3159 (let ((parsed (ange-ftp-ftp-name name)))
3160 (if parsed
3161 (if (string-equal (nth 2 parsed) "")
3162 name
3163 (funcall (or (cdr (assq
3164 (ange-ftp-host-type (car parsed))
3165 ange-ftp-file-name-as-directory-alist))
3166 'ange-ftp-real-file-name-as-directory)
3167 name))
3168 (ange-ftp-real-file-name-as-directory name))))
25759a92 3169
8749abea 3170(defun ange-ftp-file-name-directory (name)
4671dba5 3171 "Documented as `file-name-directory'."
8749abea
GM
3172 (let ((parsed (ange-ftp-ftp-name name)))
3173 (if parsed
3174 (let ((filename (nth 2 parsed)))
4671dba5 3175 (if (string-match-p "\\`~[^/]*\\'" filename)
8749abea
GM
3176 name
3177 (ange-ftp-replace-name-component
3178 name
3179 (ange-ftp-real-file-name-directory filename))))
3180 (ange-ftp-real-file-name-directory name))))
3181
3182(defun ange-ftp-file-name-nondirectory (name)
4671dba5 3183 "Documented as `file-name-nondirectory'."
8749abea
GM
3184 (let ((parsed (ange-ftp-ftp-name name)))
3185 (if parsed
3186 (let ((filename (nth 2 parsed)))
4671dba5 3187 (if (string-match-p "\\`~[^/]*\\'" filename)
8749abea
GM
3188 ""
3189 (ange-ftp-real-file-name-nondirectory filename)))
3190 (ange-ftp-real-file-name-nondirectory name))))
3191
3192(defun ange-ftp-directory-file-name (dir)
4671dba5 3193 "Documented as `directory-file-name'."
8749abea
GM
3194 (let ((parsed (ange-ftp-ftp-name dir)))
3195 (if parsed
3196 (ange-ftp-replace-name-component
e3441f42
SM
3197 dir
3198 (ange-ftp-real-directory-file-name (nth 2 parsed)))
8749abea
GM
3199 (ange-ftp-real-directory-file-name dir))))
3200
3201\f
3202;;; Hooks that handle Emacs primitives.
3203
3204;; Returns non-nil if should transfer FILE in binary mode.
3205(defun ange-ftp-binary-file (file)
4671dba5 3206 (string-match-p ange-ftp-binary-file-name-regexp file))
8749abea
GM
3207
3208(defun ange-ftp-write-region (start end filename &optional append visit)
3209 (setq filename (expand-file-name filename))
3210 (let ((parsed (ange-ftp-ftp-name filename)))
3211 (if parsed
3212 (let* ((host (nth 0 parsed))
3213 (user (nth 1 parsed))
3214 (name (ange-ftp-quote-string (nth 2 parsed)))
3215 (temp (ange-ftp-make-tmp-name host))
3216 ;; What we REALLY need here is a way to determine if the mode
3217 ;; of the transfer is irrelevant, i.e. we can use binary mode
3218 ;; regardless. Maybe a system-type to host-type lookup?
3219 (binary (or (ange-ftp-binary-file filename)
67f300f8 3220 (and (not (memq system-type
a3374680 3221 '(ms-dos windows-nt)))
67f300f8
SM
3222 (memq (ange-ftp-host-type host user)
3223 '(unix dumb-unix)))))
8749abea
GM
3224 (cmd (if append 'append 'put))
3225 (abbr (ange-ftp-abbreviate-filename filename))
3226 ;; we need to reset `last-coding-system-used' to its
3227 ;; value immediately after calling the real write-region,
3228 ;; so that `basic-save-buffer' doesn't see whatever value
3229 ;; might be used when communicating with the ftp process.
3230 (coding-system-used last-coding-system-used))
3231 (unwind-protect
3232 (progn
4494f50d 3233 (let ((filename (buffer-file-name))
8749abea
GM
3234 (mod-p (buffer-modified-p)))
3235 (unwind-protect
2ca0d5f1 3236 (progn
4494f50d
RS
3237 (ange-ftp-real-write-region start end temp nil
3238 (or visit 'quiet))
2ca0d5f1 3239 (setq coding-system-used last-coding-system-used))
8749abea 3240 ;; cleanup forms
2ca0d5f1 3241 (setq coding-system-used last-coding-system-used)
8749abea 3242 (setq buffer-file-name filename)
b63f6e81 3243 (restore-buffer-modified-p mod-p)))
8749abea
GM
3244 (if binary
3245 (ange-ftp-set-binary-mode host user))
3246
3247 ;; tell the process filter what size the transfer will be.
3248 (let ((attr (file-attributes temp)))
3249 (if attr
3250 (ange-ftp-set-xfer-size host user (nth 7 attr))))
3251
3252 ;; put or append the file.
3253 (let ((result (ange-ftp-send-cmd host user
3254 (list cmd temp name)
3255 (format "Writing %s" abbr))))
3256 (or (car result)
3257 (signal 'ftp-error
3258 (list
3259 "Opening output file"
3260 (format "FTP Error: \"%s\"" (cdr result))
3261 filename)))))
3262 (ange-ftp-del-tmp-name temp)
25759a92 3263 (if binary
8749abea
GM
3264 (ange-ftp-set-ascii-mode host user)))
3265 (if (eq visit t)
3266 (progn
25759a92 3267 (set-visited-file-modtime (ange-ftp-file-modtime filename))
8749abea
GM
3268 (ange-ftp-set-buffer-mode)
3269 (setq buffer-file-name filename)
3270 (set-buffer-modified-p nil)))
3271 ;; ensure `last-coding-system-used' has an appropriate value
3272 (setq last-coding-system-used coding-system-used)
3273 (ange-ftp-message "Wrote %s" abbr)
3274 (ange-ftp-add-file-entry filename))
3275 (ange-ftp-real-write-region start end filename append visit))))
3276
3277(defun ange-ftp-insert-file-contents (filename &optional visit beg end replace)
3278 (barf-if-buffer-read-only)
3279 (setq filename (expand-file-name filename))
3280 (let ((parsed (ange-ftp-ftp-name filename)))
3281 (if parsed
3282 (progn
3283 (if visit
3284 (setq buffer-file-name filename))
3285 (if (or (file-exists-p filename)
3286 (progn
3287 (setq ange-ftp-ls-cache-file nil)
6e85ef5f
SM
3288 (remhash (file-name-directory filename)
3289 ange-ftp-files-hashtable)
8749abea
GM
3290 (file-exists-p filename)))
3291 (let* ((host (nth 0 parsed))
3292 (user (nth 1 parsed))
3293 (name (ange-ftp-quote-string (nth 2 parsed)))
3294 (temp (ange-ftp-make-tmp-name host))
3295 (binary (or (ange-ftp-binary-file filename)
3296 (memq (ange-ftp-host-type host user)
3297 '(unix dumb-unix))))
3298 (abbr (ange-ftp-abbreviate-filename filename))
3299 (coding-system-used last-coding-system-used)
3300 size)
3301 (unwind-protect
3302 (progn
3303 (if binary
3304 (ange-ftp-set-binary-mode host user))
3305 (let ((result (ange-ftp-send-cmd host user
3306 (list 'get name temp)
3307 (format "Retrieving %s" abbr))))
3308 (or (car result)
3309 (signal 'ftp-error
3310 (list
3311 "Opening input file"
3312 (format "FTP Error: \"%s\"" (cdr result))
3313 filename))))
3314 (if (or (ange-ftp-real-file-readable-p temp)
3315 (sleep-for ange-ftp-retry-time)
3316 ;; Wait for file to hopefully appear.
3317 (ange-ftp-real-file-readable-p temp))
3318 (setq
3319 size
3320 (nth 1 (ange-ftp-real-insert-file-contents
3321 temp visit beg end replace))
3322 coding-system-used last-coding-system-used
3323 ;; override autodetection of buffer file type
3324 ;; to ensure buffer is saved in DOS format
3325 buffer-file-type binary)
3326 (signal 'ftp-error
3327 (list
3328 "Opening input file:"
3329 (format
3330 "FTP Error: %s not arrived or readable"
3331 filename)))))
3332 (if binary
3333 ;; We must keep `last-coding-system-used'
3334 ;; unchanged.
3335 (let (last-coding-system-used)
3336 (ange-ftp-set-ascii-mode host user)))
3337 (ange-ftp-del-tmp-name temp))
3338 (if visit
3339 (progn
25759a92
SS
3340 (set-visited-file-modtime
3341 (ange-ftp-file-modtime filename))
8749abea
GM
3342 (setq buffer-file-name filename)))
3343 (setq last-coding-system-used coding-system-used)
3344 (list filename size))
3345 (signal 'file-error
25759a92 3346 (list
8749abea
GM
3347 "Opening input file"
3348 filename))))
3349 (ange-ftp-real-insert-file-contents filename visit beg end replace))))
25759a92 3350
8749abea 3351(defun ange-ftp-expand-symlink (file dir)
64cf2455
KG
3352 (let ((res (if (file-name-absolute-p file)
3353 (ange-ftp-replace-name-component dir file)
3354 (expand-file-name file dir))))
3355 (if (file-symlink-p res)
3356 (ange-ftp-expand-symlink
3357 (ange-ftp-get-file-entry res)
3358 (file-name-directory (directory-file-name res)))
3359 res)))
8749abea
GM
3360
3361(defun ange-ftp-file-symlink-p (file)
3362 ;; call ange-ftp-expand-file-name rather than the normal
3363 ;; expand-file-name to stop loops when using a package that
3364 ;; redefines both file-symlink-p and expand-file-name.
3365 (setq file (ange-ftp-expand-file-name file))
3366 (if (ange-ftp-ftp-name file)
34301ace 3367 (condition-case nil
311f32fe
DK
3368 (let ((ent (ange-ftp-get-files (file-name-directory file))))
3369 (and ent
3370 (stringp (setq ent
3371 (gethash (ange-ftp-get-file-part file) ent)))
3372 ent))
34301ace
RS
3373 ;; If we can't read the parent directory, just assume
3374 ;; this file is not a symlink.
3375 ;; This makes it possible to access a directory that
3376 ;; whose parent is not readable.
3377 (file-error nil))
8749abea
GM
3378 (ange-ftp-real-file-symlink-p file)))
3379
3380(defun ange-ftp-file-exists-p (name)
3381 (setq name (expand-file-name name))
3382 (if (ange-ftp-ftp-name name)
3383 (if (ange-ftp-file-entry-p name)
3384 (let ((file-ent (ange-ftp-get-file-entry name)))
3385 (if (stringp file-ent)
3386 (file-exists-p
3387 (ange-ftp-expand-symlink file-ent
3388 (file-name-directory
3389 (directory-file-name name))))
3390 t)))
3391 (ange-ftp-real-file-exists-p name)))
3392
3393(defun ange-ftp-file-directory-p (name)
3394 (setq name (expand-file-name name))
3395 (if (ange-ftp-ftp-name name)
3396 ;; We do a file-name-as-directory on name here because some
3397 ;; machines (VMS) use a .DIR to indicate the filename associated
3398 ;; with a directory. This needs to be canonicalized.
3399 (let ((file-ent (ange-ftp-get-file-entry
3400 (ange-ftp-file-name-as-directory name))))
3401 (if (stringp file-ent)
3bd1644e
SM
3402 ;; Calling file-directory-p doesn't work because ange-ftp
3403 ;; is temporarily disabled for this operation.
3404 (ange-ftp-file-directory-p
8749abea
GM
3405 (ange-ftp-expand-symlink file-ent
3406 (file-name-directory
3407 (directory-file-name name))))
3408 file-ent))
3409 (ange-ftp-real-file-directory-p name)))
3410
3411(defun ange-ftp-directory-files (directory &optional full match
3412 &rest v19-args)
3413 (setq directory (expand-file-name directory))
3414 (if (ange-ftp-ftp-name directory)
3415 (progn
3416 (ange-ftp-barf-if-not-directory directory)
3417 (let ((tail (ange-ftp-hash-table-keys
3418 (ange-ftp-get-files directory)))
3419 files f)
3420 (setq directory (file-name-as-directory directory))
4671dba5
JB
3421 (while tail
3422 (setq f (car tail)
3423 tail (cdr tail))
3424 (if (or (not match) (string-match-p match f))
3425 (setq files
3426 (cons (if full (concat directory f) f) files))))
8749abea
GM
3427 (nreverse files)))
3428 (apply 'ange-ftp-real-directory-files directory full match v19-args)))
3429
c4383667 3430(defun ange-ftp-file-attributes (file &optional id-format)
8749abea
GM
3431 (setq file (expand-file-name file))
3432 (let ((parsed (ange-ftp-ftp-name file)))
3433 (if parsed
3434 (let ((part (ange-ftp-get-file-part file))
3435 (files (ange-ftp-get-files (file-name-directory file))))
3436 (if (ange-ftp-hash-entry-exists-p part files)
3437 (let ((host (nth 0 parsed))
3438 (user (nth 1 parsed))
3439 (name (nth 2 parsed))
6e85ef5f
SM
3440 (dirp (gethash part files))
3441 (inode (gethash file ange-ftp-inodes-hashtable)))
8749abea
GM
3442 (unless inode
3443 (setq inode ange-ftp-next-inode-number
3444 ange-ftp-next-inode-number (1+ inode))
6e85ef5f 3445 (puthash file inode ange-ftp-inodes-hashtable))
8749abea
GM
3446 (list (if (and (stringp dirp) (file-name-absolute-p dirp))
3447 (ange-ftp-expand-symlink dirp
3448 (file-name-directory file))
3449 dirp) ;0 file type
3450 -1 ;1 link count
3451 -1 ;2 uid
3452 -1 ;3 gid
3453 '(0 0) ;4 atime
25759a92 3454 (ange-ftp-file-modtime file) ;5 mtime
8749abea 3455 '(0 0) ;6 ctime
412707c2 3456 (ange-ftp-file-size file) ;7 size
8749abea
GM
3457 (concat (if (stringp dirp) "l" (if dirp "d" "-"))
3458 "?????????") ;8 mode
3459 nil ;9 gid weird
3460 inode ;10 "inode number".
3461 -1 ;11 device number [v19 only]
3462 ))))
836078f6
RS
3463 (if id-format
3464 (ange-ftp-real-file-attributes file id-format)
3465 (ange-ftp-real-file-attributes file)))))
8749abea 3466
a1f84f6d
SS
3467(defun ange-ftp-file-newer-than-file-p (f1 f2)
3468 (let ((f1-parsed (ange-ftp-ftp-name f1))
3469 (f2-parsed (ange-ftp-ftp-name f2)))
3470 (if (or f1-parsed f2-parsed)
3471 (let ((f1-mt (nth 5 (file-attributes f1)))
3472 (f2-mt (nth 5 (file-attributes f2))))
3473 (cond ((null f1-mt) nil)
3474 ((null f2-mt) t)
3475 (t (> (float-time f1-mt) (float-time f2-mt)))))
3476 (ange-ftp-real-file-newer-than-file-p f1 f2))))
3477
8749abea 3478(defun ange-ftp-file-writable-p (file)
0e14fe9f
GM
3479 (let ((ange-ftp-process-verbose nil))
3480 (setq file (expand-file-name file))
3481 (if (ange-ftp-ftp-name file)
3482 (or (file-exists-p file) ;guess here for speed
3483 (file-directory-p (file-name-directory file)))
3484 (ange-ftp-real-file-writable-p file))))
8749abea
GM
3485
3486(defun ange-ftp-file-readable-p (file)
0e14fe9f
GM
3487 (let ((ange-ftp-process-verbose nil))
3488 (setq file (expand-file-name file))
3489 (if (ange-ftp-ftp-name file)
3490 (file-exists-p file)
3491 (ange-ftp-real-file-readable-p file))))
8749abea
GM
3492
3493(defun ange-ftp-file-executable-p (file)
0e14fe9f
GM
3494 (let ((ange-ftp-process-verbose nil))
3495 (setq file (expand-file-name file))
3496 (if (ange-ftp-ftp-name file)
3497 (file-exists-p file)
3498 (ange-ftp-real-file-executable-p file))))
8749abea
GM
3499
3500(defun ange-ftp-delete-file (file)
3501 (interactive "fDelete file: ")
3502 (setq file (expand-file-name file))
3503 (let ((parsed (ange-ftp-ftp-name file)))
3504 (if parsed
3505 (let* ((host (nth 0 parsed))
3506 (user (nth 1 parsed))
3507 (name (ange-ftp-quote-string (nth 2 parsed)))
3508 (abbr (ange-ftp-abbreviate-filename file))
3509 (result (ange-ftp-send-cmd host user
3510 (list 'delete name)
3511 (format "Deleting %s" abbr))))
3512 (or (car result)
3513 (signal 'ftp-error
3514 (list
3515 "Removing old name"
3516 (format "FTP Error: \"%s\"" (cdr result))
3517 file)))
3518 (ange-ftp-delete-file-entry file))
3519 (ange-ftp-real-delete-file file))))
3520
25759a92 3521(defun ange-ftp-file-modtime (file)
6573d87f
GM
3522 "Return the modification time of remote file FILE.
3523Value is (0 0) if the modification time cannot be determined."
25759a92 3524 (let* ((parsed (ange-ftp-ftp-name file))
6573d87f
GM
3525 ;; At least one FTP server (wu-ftpd) can return a "226
3526 ;; Transfer complete" before the "213 MODTIME". Let's skip
3527 ;; that.
3528 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
25759a92 3529 (res (ange-ftp-send-cmd (car parsed) (cadr parsed)
6573d87f
GM
3530 (list 'quote "mdtm" (cadr (cdr parsed)))))
3531 (line (cdr res))
3532 (modtime '(0 0)))
524ac5b2
GM
3533 ;; MDTM should return "213 YYYYMMDDhhmmss" GMT on success
3534 ;; following the Internet draft for FTP extensions.
3535 ;; Bob@rattlesnake.com reports that is returns something different
3536 ;; for at least one FTP server. So, let's use the response only
3537 ;; if it matches the Internet draft.
4671dba5 3538 (when (string-match-p "^213 [0-9]\\{14\\}$" line)
6573d87f
GM
3539 (setq modtime
3540 (encode-time
3541 (string-to-number (substring line 16 18))
3542 (string-to-number (substring line 14 16))
3543 (string-to-number (substring line 12 14))
3544 (string-to-number (substring line 10 12))
3545 (string-to-number (substring line 8 10))
3546 (string-to-number (substring line 4 8))
3547 0)))
3548 modtime))
25759a92 3549
8749abea
GM
3550(defun ange-ftp-verify-visited-file-modtime (buf)
3551 (let ((name (buffer-file-name buf)))
3552 (if (and (stringp name) (ange-ftp-ftp-name name))
25759a92
SS
3553 (let ((file-mdtm (ange-ftp-file-modtime name))
3554 (buf-mdtm (with-current-buffer buf (visited-file-modtime))))
3555 (or (zerop (car file-mdtm))
9d453139 3556 (<= (float-time file-mdtm) (float-time buf-mdtm))))
8749abea 3557 (ange-ftp-real-verify-visited-file-modtime buf))))
412707c2
SM
3558
3559(defun ange-ftp-file-size (file &optional ascii-mode)
3560 "Return the size of remote file FILE. Return -1 if can't get it.
3561If ascii-mode is non-nil, return the size with the extra octets that
3562need to be inserted, one at the end of each line, to provide correct
3563end-of-line semantics for a transfer using TYPE=A. The default is nil,
3564so return the size on the remote host exactly. See RFC 3659."
3565 (let* ((parsed (ange-ftp-ftp-name file))
3566 (host (nth 0 parsed))
3567 (user (nth 1 parsed))
3568 (name (ange-ftp-quote-string (nth 2 parsed)))
3569 ;; At least one FTP server (wu-ftpd) can return a "226
3570 ;; Transfer complete" before the "213 SIZE". Let's skip
3571 ;; that.
3572 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226"))
3573 (res (prog2
3574 (unless ascii-mode
3575 (ange-ftp-set-binary-mode host user))
3576 (ange-ftp-send-cmd host user (list 'quote "size" name))
3577 (unless ascii-mode
3578 (ange-ftp-set-ascii-mode host user))))
3579 (line (cdr res)))
3580 (if (string-match "^213 \\([0-9]+\\)$" line)
3581 (string-to-number (match-string 1 line))
3582 -1)))
3583
8749abea
GM
3584\f
3585;;;; ------------------------------------------------------------
3586;;;; File copying support... totally re-written 6/24/92.
3587;;;; ------------------------------------------------------------
3588
3589(defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive)
3590 (if (file-exists-p absname)
3591 (if (not interactive)
3592 (signal 'file-already-exists (list absname))
3593 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? "
3594 absname querystring)))
3595 (signal 'file-already-exists (list absname))))))
3596
3597;; async local copy commented out for now since I don't seem to get
3598;; the process sentinel called for some processes.
3599;;
3600;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists
3601;; keep-date cont)
3602;; "Kludge to copy a local file and call a continuation when the copy
3603;; finishes."
3604;; ;; check to see if we can overwrite
3605;; (if (or (not ok-if-already-exists)
3606;; (numberp ok-if-already-exists))
25759a92 3607;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
8749abea
GM
3608;; (numberp ok-if-already-exists)))
3609;; (let ((proc (start-process " *copy*"
3610;; (generate-new-buffer "*copy*")
3611;; "cp"
3612;; filename
3613;; newname))
3614;; res)
e3441f42 3615;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
8749abea 3616;; (process-kill-without-query proc)
67f300f8
SM
3617;; (with-current-buffer (process-buffer proc)
3618;; (set (make-local-variable 'copy-cont) cont))))
25759a92 3619;;
8749abea 3620;; (defun ange-ftp-copy-file-locally-sentinel (proc status)
b63f6e81 3621;; (with-current-buffer (process-buffer proc)
8749abea
GM
3622;; (let ((cont copy-cont)
3623;; (result (buffer-string)))
3624;; (unwind-protect
3625;; (if (and (string-equal status "finished\n")
3626;; (zerop (length result)))
3627;; (ange-ftp-call-cont cont t nil)
3628;; (ange-ftp-call-cont cont
3629;; nil
3630;; (if (zerop (length result))
3631;; (substring status 0 -1)
3632;; (substring result 0 -1))))
3633;; (kill-buffer (current-buffer))))))
3634
3635;; this is the extended version of ange-ftp-copy-file-internal that works
3636;; asynchronously if asked nicely.
3637(defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists
3638 keep-date &optional msg cont nowait)
3639 (setq filename (expand-file-name filename)
3640 newname (expand-file-name newname))
3641
3642 ;; canonicalize newname if a directory.
3643 (if (file-directory-p newname)
3644 (setq newname (expand-file-name (file-name-nondirectory filename) newname)))
3645
3646 (let ((f-parsed (ange-ftp-ftp-name filename))
3647 (t-parsed (ange-ftp-ftp-name newname)))
3648
3649 ;; local file to local file copy?
3650 (if (and (not f-parsed) (not t-parsed))
3651 (progn
3652 (ange-ftp-real-copy-file filename newname ok-if-already-exists
3653 keep-date)
3654 (if cont
3655 (ange-ftp-call-cont cont t "Copied locally")))
3656 ;; one or both files are remote.
3657 (let* ((f-host (and f-parsed (nth 0 f-parsed)))
3658 (f-user (and f-parsed (nth 1 f-parsed)))
3659 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed))))
3660 (f-abbr (ange-ftp-abbreviate-filename filename))
3661 (t-host (and t-parsed (nth 0 t-parsed)))
3662 (t-user (and t-parsed (nth 1 t-parsed)))
3663 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed))))
3664 (t-abbr (ange-ftp-abbreviate-filename newname filename))
3665 (binary (or (ange-ftp-binary-file filename)
3666 (ange-ftp-binary-file newname)
3667 (and (memq (ange-ftp-host-type f-host f-user)
3668 '(unix dumb-unix))
3669 (memq (ange-ftp-host-type t-host t-user)
3670 '(unix dumb-unix)))))
3671 temp1
3672 temp2)
3673
3674 ;; check to see if we can overwrite
3675 (if (or (not ok-if-already-exists)
3676 (numberp ok-if-already-exists))
25759a92 3677 (ange-ftp-barf-or-query-if-file-exists newname "copy to it"
8749abea
GM
3678 (numberp ok-if-already-exists)))
3679
3680 ;; do the copying.
3681 (if f-parsed
25759a92 3682
8749abea
GM
3683 ;; filename was remote.
3684 (progn
3685 (if (or (ange-ftp-use-gateway-p f-host)
3686 t-parsed)
3687 ;; have to use intermediate file if we are getting via
3688 ;; gateway machine or we are doing a remote to remote copy.
3689 (setq temp1 (ange-ftp-make-tmp-name f-host)))
25759a92 3690
8749abea
GM
3691 (if binary
3692 (ange-ftp-set-binary-mode f-host f-user))
3693
3694 (ange-ftp-send-cmd
3695 f-host
3696 f-user
3697 (list 'get f-name (or temp1 (ange-ftp-quote-string newname)))
3698 (or msg
3699 (if (and temp1 t-parsed)
3700 (format "Getting %s" f-abbr)
3701 (format "Copying %s to %s" f-abbr t-abbr)))
e3441f42 3702 (list 'ange-ftp-cf1
8749abea
GM
3703 filename newname binary msg
3704 f-parsed f-host f-user f-name f-abbr
3705 t-parsed t-host t-user t-name t-abbr
3706 temp1 temp2 cont nowait)
3707 nowait))
3708
3709 ;; filename wasn't remote. newname must be remote. call the
3710 ;; function which does the remainder of the copying work.
3711 (ange-ftp-cf1 t nil
3712 filename newname binary msg
3713 f-parsed f-host f-user f-name f-abbr
3714 t-parsed t-host t-user t-name t-abbr
3715 nil nil cont nowait))))))
3716
3717(defvar ange-ftp-waiting-flag nil)
3718
3719;; next part of copying routine.
3720(defun ange-ftp-cf1 (result line
3721 filename newname binary msg
3722 f-parsed f-host f-user f-name f-abbr
3723 t-parsed t-host t-user t-name t-abbr
3724 temp1 temp2 cont nowait)
3725 (if line
3726 ;; filename must have been remote, and we must have just done a GET.
3727 (unwind-protect
3728 (or result
3729 ;; GET failed for some reason. Clean up and get out.
3730 (progn
3731 (and temp1 (ange-ftp-del-tmp-name temp1))
3732 (or cont
3733 (if ange-ftp-waiting-flag
3734 (throw 'ftp-error t)
3735 (signal 'ftp-error
3736 (list "Opening input file"
3737 (format "FTP Error: \"%s\"" line)
3738 filename))))))
3739 ;; cleanup
3740 (if binary
3741 (ange-ftp-set-ascii-mode f-host f-user))))
3742
3743 (if result
3744 ;; We now have to copy either temp1 or filename to newname.
3745 (if t-parsed
25759a92 3746
8749abea
GM
3747 ;; newname was remote.
3748 (progn
3749 (if (ange-ftp-use-gateway-p t-host)
3750 (setq temp2 (ange-ftp-make-tmp-name t-host)))
25759a92 3751
8749abea
GM
3752 ;; make sure data is moved into the right place for the
3753 ;; outgoing transfer. gateway temporary files complicate
3754 ;; things nicely.
3755 (if temp1
3756 (if temp2
3757 (if (string-equal temp1 temp2)
3758 (setq temp1 nil)
3759 (ange-ftp-real-copy-file temp1 temp2 t))
3760 (setq temp2 temp1 temp1 nil))
3761 (if temp2
3762 (ange-ftp-real-copy-file filename temp2 t)))
25759a92 3763
8749abea
GM
3764 (if binary
3765 (ange-ftp-set-binary-mode t-host t-user))
3766
3767 ;; tell the process filter what size the file is.
3768 (let ((attr (file-attributes (or temp2 filename))))
3769 (if attr
3770 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr))))
3771
3772 (ange-ftp-send-cmd
3773 t-host
3774 t-user
1860f08d 3775 (list 'put (or temp2 (ange-ftp-quote-string filename)) t-name)
8749abea
GM
3776 (or msg
3777 (if (and temp2 f-parsed)
3778 (format "Putting %s" newname)
3779 (format "Copying %s to %s" f-abbr t-abbr)))
e3441f42 3780 (list 'ange-ftp-cf2
8749abea
GM
3781 newname t-host t-user binary temp1 temp2 cont)
3782 nowait))
25759a92 3783
8749abea
GM
3784 ;; newname wasn't remote.
3785 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont))
3786
3787 ;; first copy failed, tell caller
3788 (ange-ftp-call-cont cont result line)))
3789
3790;; last part of copying routine.
3791(defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont)
3792 (unwind-protect
3793 (if line
3794 ;; result from doing a local to remote copy.
3795 (unwind-protect
3796 (progn
3797 (or result
3798 (or cont
3799 (if ange-ftp-waiting-flag
3800 (throw 'ftp-error t)
3801 (signal 'ftp-error
3802 (list "Opening output file"
3803 (format "FTP Error: \"%s\"" line)
3804 newname)))))
25759a92 3805
8749abea 3806 (ange-ftp-add-file-entry newname))
25759a92 3807
8749abea
GM
3808 ;; cleanup.
3809 (if binary
3810 (ange-ftp-set-ascii-mode t-host t-user)))
25759a92 3811
8749abea
GM
3812 ;; newname was local.
3813 (if temp1
3814 (ange-ftp-real-copy-file temp1 newname t)))
25759a92 3815
8749abea
GM
3816 ;; clean up
3817 (and temp1 (ange-ftp-del-tmp-name temp1))
3818 (and temp2 (ange-ftp-del-tmp-name temp2))
3819 (ange-ftp-call-cont cont result line)))
3820
3821(defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists
5b2e628f 3822 keep-date preserve-uid-gid)
8749abea
GM
3823 (interactive "fCopy file: \nFCopy %s to file: \np")
3824 (ange-ftp-copy-file-internal filename
3825 newname
3826 ok-if-already-exists
3827 keep-date
3828 nil
3829 nil
32226619 3830 (called-interactively-p 'interactive)))
b878b8c3
SS
3831
3832(defun ange-ftp-copy-files-async (okay-p line verbose-p files)
3833 "Copy some files in the background.
4671dba5 3834OKAY-P must be t, and LINE does not matter. They are here to make this
b878b8c3
SS
3835 function a valid CONT argument for `ange-ftp-raw-send-cmd'.
3836If VERBOSE-P is non-nil, print progress report in the echo area.
3837 When all the files have been copied already, a message is shown anyway.
3838FILES is a list of files to copy in the form
3839 (from-file to-file ok-if-already-exists keep-date)
3840E.g.,
3841 (ange-ftp-copy-files-async t nil t '((\"a\" \"b\" t t) (\"c\" \"d\" t t)))"
3842 (unless okay-p (error "%s: %s" 'ange-ftp-copy-files-async line))
3843 (if files
3844 (let* ((ff (car files))
3845 (from-file (nth 0 ff))
3846 (to-file (nth 1 ff))
3847 (ok-if-exists (nth 2 ff))
3848 (keep-date (nth 3 ff)))
3849 (ange-ftp-copy-file-internal
3850 from-file to-file ok-if-exists keep-date
3851 (and verbose-p (format "%s --> %s" from-file to-file))
3852 (list 'ange-ftp-copy-files-async verbose-p (cdr files))
3853 t))
6e85ef5f 3854 (message "%s: done" 'ange-ftp-copy-files-async)))
b878b8c3 3855
8749abea
GM
3856\f
3857;;;; ------------------------------------------------------------
3858;;;; File renaming support.
3859;;;; ------------------------------------------------------------
3860
3861(defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed)
4671dba5 3862 "Rename remote file FILENAME to remote file NEWNAME."
8749abea
GM
3863 (let ((f-host (nth 0 f-parsed))
3864 (f-user (nth 1 f-parsed))
3865 (t-host (nth 0 t-parsed))
3866 (t-user (nth 1 t-parsed)))
3867 (if (and (string-equal f-host t-host)
3868 (string-equal f-user t-user))
3869 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed)))
3870 (t-name (ange-ftp-quote-string (nth 2 t-parsed)))
3871 (cmd (list 'rename f-name t-name))
3872 (fabbr (ange-ftp-abbreviate-filename filename))
3873 (nabbr (ange-ftp-abbreviate-filename newname filename))
3874 (result (ange-ftp-send-cmd f-host f-user cmd
3875 (format "Renaming %s to %s"
3876 fabbr
3877 nabbr))))
3878 (or (car result)
3879 (signal 'ftp-error
3880 (list
3881 "Renaming"
3882 (format "FTP Error: \"%s\"" (cdr result))
3883 filename
3884 newname)))
3885 (ange-ftp-add-file-entry newname)
3886 (ange-ftp-delete-file-entry filename))
3887 (ange-ftp-copy-file-internal filename newname t nil)
3888 (delete-file filename))))
3889
3890(defun ange-ftp-rename-local-to-remote (filename newname)
4671dba5 3891 "Rename local file FILENAME to remote file NEWNAME."
8749abea
GM
3892 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3893 (nabbr (ange-ftp-abbreviate-filename newname filename))
3894 (msg (format "Renaming %s to %s" fabbr nabbr)))
3895 (ange-ftp-copy-file-internal filename newname t nil msg)
3896 (let (ange-ftp-process-verbose)
3897 (delete-file filename))))
3898
3899(defun ange-ftp-rename-remote-to-local (filename newname)
3900 "Rename remote file FILENAME to local file NEWNAME."
3901 (let* ((fabbr (ange-ftp-abbreviate-filename filename))
3902 (nabbr (ange-ftp-abbreviate-filename newname filename))
3903 (msg (format "Renaming %s to %s" fabbr nabbr)))
3904 (ange-ftp-copy-file-internal filename newname t nil msg)
3905 (let (ange-ftp-process-verbose)
3906 (delete-file filename))))
3907
3908(defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists)
3909 (interactive "fRename file: \nFRename %s to file: \np")
3910 (setq filename (expand-file-name filename))
3911 (setq newname (expand-file-name newname))
3912 (let* ((f-parsed (ange-ftp-ftp-name filename))
3913 (t-parsed (ange-ftp-ftp-name newname)))
3914 (if (and (or f-parsed t-parsed)
3915 (or (not ok-if-already-exists)
3916 (numberp ok-if-already-exists)))
3917 (ange-ftp-barf-or-query-if-file-exists
3918 newname
3919 "rename to it"
3920 (numberp ok-if-already-exists)))
3921 (if f-parsed
3922 (if t-parsed
3923 (ange-ftp-rename-remote-to-remote filename newname f-parsed
3924 t-parsed)
3925 (ange-ftp-rename-remote-to-local filename newname))
3926 (if t-parsed
3927 (ange-ftp-rename-local-to-remote filename newname)
3928 (ange-ftp-real-rename-file filename newname ok-if-already-exists)))))
3929\f
3930;;;; ------------------------------------------------------------
3931;;;; File name completion support.
3932;;;; ------------------------------------------------------------
3933
8749abea
GM
3934;; If the file entry is not a directory (nor a symlink pointing to a directory)
3935;; returns whether the file (or file pointed to by the symlink) is ignored
3936;; by completion-ignored-extensions.
3937;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern'
3938;; are used as free variables.
6e85ef5f
SM
3939(defun ange-ftp-file-entry-not-ignored-p (symname val)
3940 (if (stringp val)
3941 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir)))
3942 (or (file-directory-p file)
3943 (and (file-exists-p file)
3944 (not (string-match ange-ftp-completion-ignored-pattern
3945 symname)))))
3946 (or val ; is a directory name
3947 (not (string-match ange-ftp-completion-ignored-pattern symname)))))
8749abea 3948
ae0bec0b
SM
3949(defun ange-ftp-root-dir-p (dir)
3950 ;; Maybe we should use something more like
3951 ;; (equal dir (file-name-directory (directory-file-name dir))) -stef
3952 (or (and (eq system-type 'windows-nt)
aa6f7b96 3953 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir))
ae0bec0b
SM
3954 (string-equal "/" dir)))
3955
8749abea
GM
3956(defun ange-ftp-file-name-all-completions (file dir)
3957 (let ((ange-ftp-this-dir (expand-file-name dir)))
3958 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3959 (progn
3960 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3961 (setq ange-ftp-this-dir
3962 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir))
3963 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
e3441f42 3964 (completions (all-completions file tbl)))
8749abea
GM
3965
3966 ;; see whether each matching file is a directory or not...
3967 (mapcar
25759a92 3968 (lambda (file)
6e85ef5f 3969 (let ((ent (gethash file tbl)))
25759a92
SS
3970 (if (and ent
3971 (or (not (stringp ent))
3972 (file-directory-p
3973 (ange-ftp-expand-symlink ent
3974 ange-ftp-this-dir))))
3975 (concat file "/")
6e85ef5f 3976 file)))
8749abea
GM
3977 completions)))
3978
ae0bec0b 3979 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
8749abea
GM
3980 (nconc (all-completions file (ange-ftp-generate-root-prefixes))
3981 (ange-ftp-real-file-name-all-completions file
3982 ange-ftp-this-dir))
3983 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir)))))
3984
e1e17cae 3985(defun ange-ftp-file-name-completion (file dir &optional predicate)
8749abea
GM
3986 (let ((ange-ftp-this-dir (expand-file-name dir)))
3987 (if (ange-ftp-ftp-name ange-ftp-this-dir)
3988 (progn
3989 (ange-ftp-barf-if-not-directory ange-ftp-this-dir)
3990 (if (equal file "")
3991 ""
3992 (setq ange-ftp-this-dir
3993 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real?
3994 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir))
3995 (ange-ftp-completion-ignored-pattern
25759a92 3996 (mapconcat (lambda (s) (if (stringp s)
aa6f7b96
SM
3997 (concat (regexp-quote s) "$")
3998 "/")) ; / never in filename
8749abea
GM
3999 completion-ignored-extensions
4000 "\\|")))
4001 (save-match-data
4002 (or (ange-ftp-file-name-completion-1
4003 file tbl ange-ftp-this-dir
e3441f42 4004 'ange-ftp-file-entry-not-ignored-p)
8749abea 4005 (ange-ftp-file-name-completion-1
e3441f42 4006 file tbl ange-ftp-this-dir))))))
8749abea 4007
ae0bec0b 4008 (if (ange-ftp-root-dir-p ange-ftp-this-dir)
8749abea
GM
4009 (try-completion
4010 file
4011 (nconc (ange-ftp-generate-root-prefixes)
7ca26b02 4012 (ange-ftp-real-file-name-all-completions
e1e17cae
MA
4013 file ange-ftp-this-dir))
4014 predicate)
4015 (if predicate
4016 (ange-ftp-real-file-name-completion
4017 file ange-ftp-this-dir predicate)
4018 (ange-ftp-real-file-name-completion
4019 file ange-ftp-this-dir))))))
8749abea
GM
4020
4021
e3441f42 4022(defun ange-ftp-file-name-completion-1 (file tbl dir &optional predicate)
8749abea
GM
4023 (let ((bestmatch (try-completion file tbl predicate)))
4024 (if bestmatch
4025 (if (eq bestmatch t)
4026 (if (file-directory-p (expand-file-name file dir))
4027 (concat file "/")
4028 t)
4029 (if (and (eq (try-completion bestmatch tbl predicate) t)
4030 (file-directory-p
4031 (expand-file-name bestmatch dir)))
4032 (concat bestmatch "/")
4033 bestmatch)))))
4034
4035;; Put these lines uncommmented in your .emacs if you want C-r to refresh
4036;; ange-ftp's cache whilst doing filename completion.
4037;;
4038;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir)
4039;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir)
4040
b2ce953f
MR
4041;;;###autoload
4042(defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
4043
8749abea
GM
4044;;;###autoload
4045(defun ange-ftp-reread-dir (&optional dir)
4046 "Reread remote directory DIR to update the directory cache.
4671dba5 4047The implementation of remote FTP file names caches directory contents
8749abea
GM
4048for speed. Therefore, when new remote files are created, Emacs
4049may not know they exist. You can use this command to reread a specific
4050directory, so that Emacs will know its current contents."
4051 (interactive)
4052 (if dir
4053 (setq dir (expand-file-name dir))
4054 (setq dir (file-name-directory (expand-file-name (buffer-string)))))
4055 (if (ange-ftp-ftp-name dir)
4056 (progn
4057 (setq ange-ftp-ls-cache-file nil)
6e85ef5f 4058 (remhash dir ange-ftp-files-hashtable)
8749abea
GM
4059 (ange-ftp-get-files dir t))))
4060\f
4061(defun ange-ftp-make-directory (dir &optional parents)
4062 (interactive (list (expand-file-name (read-file-name "Make directory: "))))
4063 (if parents
4064 (let ((parent (file-name-directory (directory-file-name dir))))
4065 (or (file-exists-p parent)
4066 (ange-ftp-make-directory parent parents))))
4067 (if (file-exists-p dir)
4068 (error "Cannot make directory %s: file already exists" dir)
4069 (let ((parsed (ange-ftp-ftp-name dir)))
4070 (if parsed
4071 (let* ((host (nth 0 parsed))
4072 (user (nth 1 parsed))
4073 ;; Some ftp's on unix machines (at least on Suns)
4074 ;; insist that mkdir take a filename, and not a
4075 ;; directory-name name as an arg. Argh!! This is a bug.
4076 ;; Non-unix machines will probably always insist
4077 ;; that mkdir takes a directory-name as an arg
4078 ;; (as the ftp man page says it should).
4079 (name (ange-ftp-quote-string
4080 (if (eq (ange-ftp-host-type host) 'unix)
4081 (ange-ftp-real-directory-file-name (nth 2 parsed))
4082 (ange-ftp-real-file-name-as-directory
4083 (nth 2 parsed)))))
4084 (abbr (ange-ftp-abbreviate-filename dir))
4085 (result (ange-ftp-send-cmd host user
4086 (list 'mkdir name)
4087 (format "Making directory %s"
4088 abbr))))
4089 (or (car result)
4090 (ange-ftp-error host user
4091 (format "Could not make directory %s: %s"
4092 dir
4093 (cdr result))))
4094 (ange-ftp-add-file-entry dir t))
4095 (ange-ftp-real-make-directory dir)))))
4096
c90a8a9f 4097(defun ange-ftp-delete-directory (dir &optional recursive)
8749abea
GM
4098 (if (file-directory-p dir)
4099 (let ((parsed (ange-ftp-ftp-name dir)))
b3ee21ac
MA
4100 (if recursive
4101 (mapc
4102 (lambda (file)
4103 (if (file-directory-p file)
4104 (ange-ftp-delete-directory file recursive)
4105 (delete-file file)))
4106 ;; We do not want to delete "." and "..".
4107 (directory-files
4108 dir 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")))
8749abea
GM
4109 (if parsed
4110 (let* ((host (nth 0 parsed))
4111 (user (nth 1 parsed))
4112 ;; Some ftp's on unix machines (at least on Suns)
4113 ;; insist that rmdir take a filename, and not a
4114 ;; directory-name name as an arg. Argh!! This is a bug.
4115 ;; Non-unix machines will probably always insist
4116 ;; that rmdir takes a directory-name as an arg
4117 ;; (as the ftp man page says it should).
4118 (name (ange-ftp-quote-string
4119 (if (eq (ange-ftp-host-type host) 'unix)
4120 (ange-ftp-real-directory-file-name
4121 (nth 2 parsed))
4122 (ange-ftp-real-file-name-as-directory
4123 (nth 2 parsed)))))
e3441f42 4124 (abbr (ange-ftp-abbreviate-filename dir))
b3ee21ac
MA
4125 (result
4126 (progn
4127 ;; CWD must not in this directory.
4128 (ange-ftp-cd host user "/" 'noerror)
4129 (ange-ftp-send-cmd host user
4130 (list 'rmdir name)
4131 (format "Removing directory %s"
4132 abbr)))))
8749abea
GM
4133 (or (car result)
4134 (ange-ftp-error host user
4135 (format "Could not remove directory %s: %s"
4136 dir
4137 (cdr result))))
4138 (ange-ftp-delete-file-entry dir t))
c90a8a9f 4139 (ange-ftp-real-delete-directory dir recursive)))
8749abea
GM
4140 (error "Not a directory: %s" dir)))
4141\f
4142;; Make a local copy of FILE and return its name.
4143
4144(defun ange-ftp-file-local-copy (file)
4145 (let* ((fn1 (expand-file-name file))
4146 (pa1 (ange-ftp-ftp-name fn1)))
4147 (if pa1
4148 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1))))
4149 (ange-ftp-copy-file-internal fn1 tmp1 t nil
4150 (format "Getting %s" fn1))
4151 tmp1))))
4152
3bd84a22
MA
4153(defun ange-ftp-file-remote-p (file &optional identification connected)
4154 (let* ((parsed (ange-ftp-ftp-name file))
4155 (host (nth 0 parsed))
d5fb39b4
MA
4156 (user (nth 1 parsed))
4157 (localname (nth 2 parsed)))
3bd84a22
MA
4158 (and (or (not connected)
4159 (let ((proc (get-process (ange-ftp-ftp-process-buffer host user))))
4160 (and proc (processp proc)
4161 (memq (process-status proc) '(run open)))))
4162 (cond
4163 ((eq identification 'method) (and parsed "ftp"))
4164 ((eq identification 'user) user)
4165 ((eq identification 'host) host)
d5fb39b4 4166 ((eq identification 'localname) localname)
3bd84a22 4167 (t (ange-ftp-replace-name-component file ""))))))
e28c0668 4168
8749abea
GM
4169(defun ange-ftp-load (file &optional noerror nomessage nosuffix)
4170 (if (ange-ftp-ftp-name file)
4171 (let ((tryfiles (if nosuffix
4172 (list file)
4173 (list (concat file ".elc") (concat file ".el") file)))
4174 ;; make sure there are no references to temp files
4175 (load-force-doc-strings t)
4176 copy)
4177 (while (and tryfiles (not copy))
4178 (catch 'ftp-error
4179 (let ((ange-ftp-waiting-flag t))
4180 (condition-case error
4181 (setq copy (ange-ftp-file-local-copy (car tryfiles)))
4182 (ftp-error nil))))
4183 (setq tryfiles (cdr tryfiles)))
4184 (if copy
4185 (unwind-protect
4186 (funcall 'load copy noerror nomessage nosuffix)
4187 (delete-file copy))
4188 (or noerror
4189 (signal 'file-error (list "Cannot open load file" file)))
4190 nil))
4191 (ange-ftp-real-load file noerror nomessage nosuffix)))
4192
4193;; Calculate default-unhandled-directory for a given ange-ftp buffer.
4194(defun ange-ftp-unhandled-file-name-directory (filename)
e61e836b 4195 nil)
8749abea
GM
4196
4197\f
4198;; Need the following functions for making filenames of compressed
4199;; files, because some OS's (unlike UNIX) do not allow a filename to
4200;; have two extensions.
4201
4202(defvar ange-ftp-make-compressed-filename-alist nil
4203 "Alist of host-type-specific functions to process file names for compression.
4204Each element has the form (TYPE . FUNC).
4205FUNC should take one argument, a file name, and return a list
4206of the form (COMPRESSING NEWNAME).
25759a92 4207COMPRESSING should be t if the specified file should be compressed,
8749abea
GM
4208and nil if it should be uncompressed (that is, if it is a compressed file).
4209NEWNAME should be the name to give the new compressed or uncompressed file.")
4210
7e596924
GM
4211(declare-function dired-compress-file "dired-aux" (file))
4212
8749abea 4213(defun ange-ftp-dired-compress-file (name)
7e596924 4214 "Handler used by `dired-compress-file'."
8749abea
GM
4215 (let ((parsed (ange-ftp-ftp-name name))
4216 conversion-func)
4217 (if (and parsed
4218 (setq conversion-func
4219 (cdr (assq (ange-ftp-host-type (car parsed))
4220 ange-ftp-make-compressed-filename-alist))))
4221 (let* ((decision
4222 (save-match-data (funcall conversion-func name)))
4223 (compressing (car decision))
4224 (newfile (nth 1 decision)))
4225 (if compressing
4226 (ange-ftp-compress name newfile)
4227 (ange-ftp-uncompress name newfile)))
4228 (let (file-name-handler-alist)
4229 (dired-compress-file name)))))
4230
4231;; Copy FILE to this machine, compress it, and copy out to NFILE.
4232(defun ange-ftp-compress (file nfile)
4233 (let* ((parsed (ange-ftp-ftp-name file))
4234 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4235 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4236 (abbr (ange-ftp-abbreviate-filename file))
4237 (nabbr (ange-ftp-abbreviate-filename nfile))
4238 (msg1 (format "Getting %s" abbr))
4239 (msg2 (format "Putting %s" nabbr)))
4240 (unwind-protect
4241 (progn
4242 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4243 (and ange-ftp-process-verbose
4244 (ange-ftp-message "Compressing %s..." abbr))
4245 (call-process-region (point)
4246 (point)
4247 shell-file-name
4248 nil
4249 t
4250 nil
4251 "-c"
4252 (format "compress -f -c < %s > %s" tmp1 tmp2))
4253 (and ange-ftp-process-verbose
4254 (ange-ftp-message "Compressing %s...done" abbr))
4255 (if (zerop (buffer-size))
4256 (progn
4257 (let (ange-ftp-process-verbose)
4258 (delete-file file))
4259 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4260 (ange-ftp-del-tmp-name tmp1)
4261 (ange-ftp-del-tmp-name tmp2))))
25759a92 4262
8749abea
GM
4263;; Copy FILE to this machine, uncompress it, and copy out to NFILE.
4264(defun ange-ftp-uncompress (file nfile)
4265 (let* ((parsed (ange-ftp-ftp-name file))
4266 (tmp1 (ange-ftp-make-tmp-name (car parsed)))
4267 (tmp2 (ange-ftp-make-tmp-name (car parsed)))
4268 (abbr (ange-ftp-abbreviate-filename file))
4269 (nabbr (ange-ftp-abbreviate-filename nfile))
4270 (msg1 (format "Getting %s" abbr))
4271 (msg2 (format "Putting %s" nabbr))
4272;; ;; Cheap hack because of problems with binary file transfers from
4273;; ;; VMS hosts.
4274;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed)))))
4275 )
4276 (unwind-protect
4277 (progn
4278 (ange-ftp-copy-file-internal file tmp1 t nil msg1)
4279 (and ange-ftp-process-verbose
4280 (ange-ftp-message "Uncompressing %s..." abbr))
4281 (call-process-region (point)
4282 (point)
4283 shell-file-name
4284 nil
4285 t
4286 nil
4287 "-c"
4288 (format "uncompress -c < %s > %s" tmp1 tmp2))
4289 (and ange-ftp-process-verbose
4290 (ange-ftp-message "Uncompressing %s...done" abbr))
4291 (if (zerop (buffer-size))
4292 (progn
4293 (let (ange-ftp-process-verbose)
4294 (delete-file file))
4295 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2))))
4296 (ange-ftp-del-tmp-name tmp1)
4297 (ange-ftp-del-tmp-name tmp2))))
4298
4299(defun ange-ftp-find-backup-file-name (fn)
4300 ;; Either return the ordinary backup name, etc.,
4301 ;; or return nil meaning don't make a backup.
4302 (if ange-ftp-make-backup-files
4303 (ange-ftp-real-find-backup-file-name fn)))
4304\f
4305;;; Define the handler for special file names
4306;;; that causes ange-ftp to be invoked.
4307
4308;;;###autoload
4309(defun ange-ftp-hook-function (operation &rest args)
4310 (let ((fn (get operation 'ange-ftp)))
227eb744
MA
4311 (if fn
4312 ;; Catch also errors in process-filter.
4313 (condition-case err
4314 (let ((debug-on-error t))
4315 (save-match-data (apply fn args)))
75c23f5f 4316 (error (signal (car err) (cdr err))))
8749abea 4317 (ange-ftp-run-real-handler operation args))))
8749abea 4318
65399e83
KG
4319;; The following code is commented out because Tramp now deals with
4320;; Ange-FTP filenames, too.
4321
4322;;-;;; This regexp takes care of real ange-ftp file names (with a slash
4323;;-;;; and colon).
4324;;-;;; Don't allow the host name to end in a period--some systems use /.:
4325;;-;;;###autoload
4326;;-(or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist)
4327;;- (setq file-name-handler-alist
4328;;- (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function)
4329;;- file-name-handler-alist)))
4330;;-
4331;;-;;; This regexp recognizes absolute filenames with only one component,
4332;;-;;; for the sake of hostname completion.
4333;;-;;;###autoload
4334;;-(or (assoc "^/[^/:]*\\'" file-name-handler-alist)
4335;;- (setq file-name-handler-alist
4336;;- (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function)
4337;;- file-name-handler-alist)))
4338;;-
4339;;-;;; This regexp recognizes absolute filenames with only one component
4340;;-;;; on Windows, for the sake of hostname completion.
4341;;-;;; NB. Do not mark this as autoload, because it is very common to
4342;;-;;; do completions in the root directory of drives on Windows.
4343;;-(and (memq system-type '(ms-dos windows-nt))
4344;;- (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist)
4345;;- (setq file-name-handler-alist
4346;;- (cons '("^[a-zA-Z]:/[^/:]*\\'" .
4347;;- ange-ftp-completion-hook-function)
4348;;- file-name-handler-alist))))
8749abea
GM
4349
4350;;; The above two forms are sufficient to cause this file to be loaded
4351;;; if the user ever uses a file name with a colon in it.
4352
25759a92 4353;;; This sets the mode
c8607dc7 4354(add-hook 'find-file-hook 'ange-ftp-set-buffer-mode)
8749abea
GM
4355
4356;;; Now say where to find the handlers for particular operations.
4357
4358(put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory)
4359(put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory)
4360(put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory)
4361(put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name)
4362(put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name)
4363(put 'make-directory 'ange-ftp 'ange-ftp-make-directory)
4364(put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory)
4365(put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents)
4366(put 'directory-files 'ange-ftp 'ange-ftp-directory-files)
4367(put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p)
4368(put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p)
4369(put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p)
4370(put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p)
4371(put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p)
4372(put 'delete-file 'ange-ftp 'ange-ftp-delete-file)
8749abea
GM
4373(put 'verify-visited-file-modtime 'ange-ftp
4374 'ange-ftp-verify-visited-file-modtime)
4375(put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p)
4376(put 'write-region 'ange-ftp 'ange-ftp-write-region)
8749abea
GM
4377(put 'copy-file 'ange-ftp 'ange-ftp-copy-file)
4378(put 'rename-file 'ange-ftp 'ange-ftp-rename-file)
4379(put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes)
a1f84f6d 4380(put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p)
8749abea
GM
4381(put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions)
4382(put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion)
4383(put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory)
4384(put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy)
e28c0668 4385(put 'file-remote-p 'ange-ftp 'ange-ftp-file-remote-p)
8749abea
GM
4386(put 'unhandled-file-name-directory 'ange-ftp
4387 'ange-ftp-unhandled-file-name-directory)
4388(put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions)
4389(put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache)
4390(put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file)
4391(put 'load 'ange-ftp 'ange-ftp-load)
4392(put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name)
c42e03b4 4393(put 'set-file-modes 'ange-ftp 'ange-ftp-set-file-modes)
8749abea
GM
4394
4395;; Turn off truename processing to save time.
4396;; Treat each name as its own truename.
4397(put 'file-truename 'ange-ftp 'identity)
4398
b83483d5
MA
4399;; We must return non-nil in order to mask our inability to do the job.
4400;; Otherwise there are errors when applied to the target file during
4401;; copying from a (localhost) Tramp file.
b83483d5
MA
4402(put 'set-file-times 'ange-ftp 'ignore)
4403
8749abea
GM
4404;; Turn off RCS/SCCS processing to save time.
4405;; This returns nil for any file name as argument.
4406(put 'vc-registered 'ange-ftp 'null)
4407
00d6fd04 4408;; We can handle process-file in a restricted way (just for chown).
b83483d5 4409;; Nothing possible for `start-file-process'.
4a725859 4410(put 'process-file 'ange-ftp 'ange-ftp-process-file)
00d6fd04 4411(put 'start-file-process 'ange-ftp 'ignore)
8749abea
GM
4412(put 'shell-command 'ange-ftp 'ange-ftp-shell-command)
4413\f
4414;;; Define ways of getting at unmodified Emacs primitives,
4415;;; turning off our handler.
4416
4417(defun ange-ftp-run-real-handler (operation args)
4418 (let ((inhibit-file-name-handlers
4419 (cons 'ange-ftp-hook-function
4420 (cons 'ange-ftp-completion-hook-function
4421 (and (eq inhibit-file-name-operation operation)
4422 inhibit-file-name-handlers))))
4423 (inhibit-file-name-operation operation))
4424 (apply operation args)))
4425
4426(defun ange-ftp-real-file-name-directory (&rest args)
4427 (ange-ftp-run-real-handler 'file-name-directory args))
4428(defun ange-ftp-real-file-name-nondirectory (&rest args)
4429 (ange-ftp-run-real-handler 'file-name-nondirectory args))
4430(defun ange-ftp-real-file-name-as-directory (&rest args)
4431 (ange-ftp-run-real-handler 'file-name-as-directory args))
4432(defun ange-ftp-real-directory-file-name (&rest args)
4433 (ange-ftp-run-real-handler 'directory-file-name args))
4434(defun ange-ftp-real-expand-file-name (&rest args)
4435 (ange-ftp-run-real-handler 'expand-file-name args))
4436(defun ange-ftp-real-make-directory (&rest args)
4437 (ange-ftp-run-real-handler 'make-directory args))
4438(defun ange-ftp-real-delete-directory (&rest args)
4439 (ange-ftp-run-real-handler 'delete-directory args))
4440(defun ange-ftp-real-insert-file-contents (&rest args)
4441 (ange-ftp-run-real-handler 'insert-file-contents args))
4442(defun ange-ftp-real-directory-files (&rest args)
4443 (ange-ftp-run-real-handler 'directory-files args))
4444(defun ange-ftp-real-file-directory-p (&rest args)
4445 (ange-ftp-run-real-handler 'file-directory-p args))
4446(defun ange-ftp-real-file-writable-p (&rest args)
4447 (ange-ftp-run-real-handler 'file-writable-p args))
4448(defun ange-ftp-real-file-readable-p (&rest args)
4449 (ange-ftp-run-real-handler 'file-readable-p args))
4450(defun ange-ftp-real-file-executable-p (&rest args)
4451 (ange-ftp-run-real-handler 'file-executable-p args))
4452(defun ange-ftp-real-file-symlink-p (&rest args)
4453 (ange-ftp-run-real-handler 'file-symlink-p args))
4454(defun ange-ftp-real-delete-file (&rest args)
4455 (ange-ftp-run-real-handler 'delete-file args))
8749abea
GM
4456(defun ange-ftp-real-verify-visited-file-modtime (&rest args)
4457 (ange-ftp-run-real-handler 'verify-visited-file-modtime args))
4458(defun ange-ftp-real-file-exists-p (&rest args)
4459 (ange-ftp-run-real-handler 'file-exists-p args))
4460(defun ange-ftp-real-write-region (&rest args)
4461 (ange-ftp-run-real-handler 'write-region args))
4462(defun ange-ftp-real-backup-buffer (&rest args)
4463 (ange-ftp-run-real-handler 'backup-buffer args))
4464(defun ange-ftp-real-copy-file (&rest args)
4465 (ange-ftp-run-real-handler 'copy-file args))
4466(defun ange-ftp-real-rename-file (&rest args)
4467 (ange-ftp-run-real-handler 'rename-file args))
4468(defun ange-ftp-real-file-attributes (&rest args)
4469 (ange-ftp-run-real-handler 'file-attributes args))
a1f84f6d
SS
4470(defun ange-ftp-real-file-newer-than-file-p (&rest args)
4471 (ange-ftp-run-real-handler 'file-newer-than-file-p args))
8749abea
GM
4472(defun ange-ftp-real-file-name-all-completions (&rest args)
4473 (ange-ftp-run-real-handler 'file-name-all-completions args))
4474(defun ange-ftp-real-file-name-completion (&rest args)
4475 (ange-ftp-run-real-handler 'file-name-completion args))
4476(defun ange-ftp-real-insert-directory (&rest args)
4477 (ange-ftp-run-real-handler 'insert-directory args))
4478(defun ange-ftp-real-file-name-sans-versions (&rest args)
4479 (ange-ftp-run-real-handler 'file-name-sans-versions args))
4480(defun ange-ftp-real-shell-command (&rest args)
4481 (ange-ftp-run-real-handler 'shell-command args))
4482(defun ange-ftp-real-load (&rest args)
4483 (ange-ftp-run-real-handler 'load args))
4484(defun ange-ftp-real-find-backup-file-name (&rest args)
4485 (ange-ftp-run-real-handler 'find-backup-file-name args))
4486\f
4487;; Here we support using dired on remote hosts.
4488;; I have turned off the support for using dired on foreign directory formats.
4489;; That involves too many unclean hooks.
25759a92 4490;; It would be cleaner to support such operations by
8749abea
GM
4491;; converting the foreign directory format to something dired can understand;
4492;; something close to ls -l output.
4493;; The logical place to do this is in the functions ange-ftp-parse-...-listing.
4494
4495;; Some of the old dired hooks would still be needed even if this is done.
4496;; I have preserved (and modernized) those hooks.
4497;; So the format conversion should be all that is needed.
4498
1fc85dae
KG
4499;; When called from dired, SWITCHES may start with "--dired".
4500;; `ange-ftp-ls' handles this.
4501
8749abea 4502(defun ange-ftp-insert-directory (file switches &optional wildcard full)
3bd1644e
SM
4503 (if (not (ange-ftp-ftp-name (expand-file-name file)))
4504 (ange-ftp-real-insert-directory file switches wildcard full)
b63f6e81
SM
4505 ;; We used to follow symlinks on `file' here. Apparently it was done
4506 ;; because some FTP servers react to "ls foo" by listing the symlink foo
4507 ;; rather than the directory it points to. Now that ange-ftp-ls uses
4508 ;; "cd foo; ls" instead, this is not necesssary any more.
3bd1644e
SM
4509 (insert
4510 (cond
4511 (wildcard
4512 (let ((default-directory (file-name-directory file)))
4513 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)))
4514 (full
4515 (ange-ftp-ls file switches 'parse))
4516 (t
4517 ;; If `full' is nil we're going to do `ls' for a single file.
4518 ;; Problem is that for various reasons, ange-ftp-ls needs to cd and
4519 ;; then do an ls of current dir, which obviously won't work if we
4520 ;; want to ls a file. So instead, we get a full listing of the
4521 ;; parent directory and extract the line corresponding to `file'.
cc5be3ab 4522 (when (string-match "-?d\\'" switches)
3bd1644e
SM
4523 ;; Remove "d" which dired added to `switches'.
4524 (setq switches (substring switches 0 (match-beginning 0))))
4525 (let* ((dirlist (ange-ftp-ls (or (file-name-directory file) ".")
4526 switches nil))
edb18c43 4527 (filename (file-name-nondirectory (directory-file-name file)))
3bd1644e
SM
4528 (case-fold-search nil))
4529 ;; FIXME: This presumes a particular output format, which is
4530 ;; basically Unix.
edb18c43 4531 (if (string-match (concat "^.+[^ ] " (regexp-quote filename)
3bd1644e
SM
4532 "\\( -> .*\\)?[@/*=]?\n") dirlist)
4533 (match-string 0 dirlist)
4534 "")))))))
8749abea
GM
4535
4536(defun ange-ftp-dired-uncache (dir)
4537 (if (ange-ftp-ftp-name (expand-file-name dir))
4538 (setq ange-ftp-ls-cache-file nil)))
4539
4540(defvar ange-ftp-sans-version-alist nil
4541 "Alist of mapping host type into function to remove file version numbers.")
4542
4543(defun ange-ftp-file-name-sans-versions (file keep-backup-version)
4544 (let* ((short (ange-ftp-abbreviate-filename file))
4545 (parsed (ange-ftp-ftp-name short))
3bd1644e
SM
4546 (func (if parsed (cdr (assq (ange-ftp-host-type (car parsed))
4547 ange-ftp-sans-version-alist)))))
8749abea
GM
4548 (if func (funcall func file keep-backup-version)
4549 (ange-ftp-real-file-name-sans-versions file keep-backup-version))))
4550
4551;; This is the handler for shell-command.
4552(defun ange-ftp-shell-command (command &optional output-buffer error-buffer)
4553 (let* ((parsed (ange-ftp-ftp-name default-directory))
4554 (host (nth 0 parsed))
4555 (user (nth 1 parsed))
4556 (name (nth 2 parsed)))
4557 (if (not parsed)
4558 (ange-ftp-real-shell-command command output-buffer error-buffer)
4559 (if (> (length name) 0) ; else it's $HOME
4560 (setq command (concat "cd " name "; " command)))
cdc51589 4561 ;; Remove port from the hostname
ae0bec0b
SM
4562 (when (string-match "\\(.*\\)#" host)
4563 (setq host (match-string 1 host)))
8749abea
GM
4564 (setq command
4565 (format "%s %s \"%s\"" ; remsh -l USER does not work well
4566 ; on a hp-ux machine I tried
4567 remote-shell-program host command))
4568 (ange-ftp-message "Remote command '%s' ..." command)
4569 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it
4570 ;; would prepend "cd default-directory" --- which bombs because
4571 ;; default-directory is in ange-ftp syntax for remote file names.
4572 (ange-ftp-real-shell-command command output-buffer error-buffer))))
4573
4a725859
MA
4574;;; This is the handler for process-file.
4575(defun ange-ftp-process-file (program infile buffer display &rest arguments)
8749abea
GM
4576 ;; PROGRAM is always one of those below in the cond in dired.el.
4577 ;; The ARGUMENTS are (nearly) always files.
4578 (if (ange-ftp-ftp-name default-directory)
4579 ;; Can't use ange-ftp-dired-host-type here because the current
4580 ;; buffer is *dired-check-process output*
4581 (condition-case oops
4582 (cond ((equal dired-chmod-program program)
4583 (ange-ftp-call-chmod arguments))
4584 ;; ((equal "chgrp" program))
4585 ;; ((equal dired-chown-program program))
4586 (t (error "Unknown remote command: %s" program)))
4587 (ftp-error (insert (format "%s: %s, %s\n"
e3441f42
SM
4588 (nth 1 oops)
4589 (nth 2 oops)
4590 (nth 3 oops)))
8749abea
GM
4591 ;; Caller expects nonzero value to mean failure.
4592 1)
4593 (error (insert (format "%s\n" (nth 1 oops)))
4594 1))
4a725859 4595 (apply 'call-process program infile buffer display arguments)))
8749abea 4596
8749abea
GM
4597;; Handle an attempt to run chmod on a remote file
4598;; by using the ftp chmod command.
4599(defun ange-ftp-call-chmod (args)
4600 (if (< (length args) 2)
4601 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args))
4602 (let ((mode (car args))
4603 (rest (cdr args)))
4604 (if (equal "--" (car rest))
4605 (setq rest (cdr rest)))
d590ea4d 4606 (mapc
25759a92
SS
4607 (lambda (file)
4608 (setq file (expand-file-name file))
4609 (let ((parsed (ange-ftp-ftp-name file)))
4610 (if parsed
4611 (let* ((host (nth 0 parsed))
4612 (user (nth 1 parsed))
4613 (name (ange-ftp-quote-string (nth 2 parsed)))
4614 (abbr (ange-ftp-abbreviate-filename file))
4615 (result (ange-ftp-send-cmd host user
4616 (list 'chmod mode name)
4617 (format "doing chmod %s"
4618 abbr))))
4619 (or (car result)
c42e03b4
MA
4620 (ange-ftp-error
4621 host user (concat "CHMOD failed: " (cdr result))))))))
8749abea
GM
4622 rest))
4623 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired.
4624 0)
c42e03b4
MA
4625
4626(defun ange-ftp-set-file-modes (filename mode)
4627 (ange-ftp-call-chmod (list (format "%o" mode) filename)))
8749abea 4628\f
92482d77
SM
4629;; This is turned off because it has nothing properly to do
4630;; with dired. It could be reasonable to adapt this to
4631;; replace ange-ftp-copy-file.
8749abea
GM
4632
4633;;;;; ------------------------------------------------------------
4634;;;;; Noddy support for async copy-file within dired.
4635;;;;; ------------------------------------------------------------
4636
4637;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait)
4638;; "Documented as original."
4639;; (dired-handle-overwrite to)
4640;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil
4641;; cont nowait))
4642
4643;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg
4644;; &optional marker-char op1
4645;; how-to)
4646;; "Documented as original."
4647;; ;; we need to let ange-ftp-dired-create-files know that we indirectly
4648;; ;; called it rather than somebody else.
4649;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is
4650;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation
4651;; arg marker-char op1 how-to)))
4652
4653;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor
4654;; &optional marker-char)
4655;; "Documented as original."
4656;; (if (and (boundp 'ange-ftp-dired-do-create-files)
4657;; ;; called from ange-ftp-dired-do-create-files?
4658;; ange-ftp-dired-do-create-files
4659;; ;; any files worth copying?
4660;; fn-list
4661;; ;; we only support async copy-file at the mo.
4662;; (eq file-creator 'dired-copy-file)
4663;; ;; it is only worth calling the alternative function for remote files
4664;; ;; as we tie ourself in recursive knots otherwise.
4665;; (or (ange-ftp-ftp-name (car fn-list))
4666;; ;; we can only call the name constructor for dired-do-create-files
4667;; ;; since the one for regexps starts prompting here, there and
4668;; ;; everywhere.
4669;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list)))))
4670;; ;; use the process-filter driven routine rather than the iterative one.
4671;; (ange-ftp-dcf-1 file-creator
4672;; operation
4673;; fn-list
4674;; name-constructor
4675;; (and (boundp 'target) target) ;dynamically bound
4676;; marker-char
4677;; (current-buffer)
4678;; nil ;overwrite-query
4679;; nil ;overwrite-backup-query
4680;; nil ;failures
4681;; nil ;skipped
4682;; 0 ;success-count
4683;; (length fn-list) ;total
4684;; )
4685;; ;; normal case... use the interactive routine... much cheaper.
4686;; (ange-ftp-real-dired-create-files file-creator operation fn-list
4687;; name-constructor marker-char)))
4688
4689;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor
25759a92 4690;; target marker-char buffer overwrite-query
8749abea
GM
4691;; overwrite-backup-query failures skipped
4692;; success-count total)
b63f6e81 4693;; (with-current-buffer buffer
8749abea
GM
4694;; (if (null fn-list)
4695;; (ange-ftp-dcf-3 failures operation total skipped
4696;; success-count buffer)
25759a92 4697
8749abea
GM
4698;; (let* ((from (car fn-list))
4699;; (to (funcall name-constructor from)))
4700;; (if (equal to from)
4701;; (progn
4702;; (setq to nil)
4703;; (dired-log "Cannot %s to same file: %s\n"
4704;; (downcase operation) from)))
4705;; (if (not to)
4706;; (ange-ftp-dcf-1 file-creator
4707;; operation
4708;; (cdr fn-list)
4709;; name-constructor
4710;; target
4711;; marker-char
4712;; buffer
4713;; overwrite-query
4714;; overwrite-backup-query
4715;; failures
4716;; (cons (dired-make-relative from) skipped)
4717;; success-count
4718;; total)
4719;; (let* ((overwrite (file-exists-p to))
4720;; (overwrite-confirmed ; for dired-handle-overwrite
4721;; (and overwrite
4722;; (let ((help-form '(format "\
4723;;Type SPC or `y' to overwrite file `%s',
4724;;DEL or `n' to skip to next,
4725;;ESC or `q' to not overwrite any of the remaining files,
4726;;`!' to overwrite all remaining files with no more questions." to)))
4727;; (dired-query 'overwrite-query
4728;; "Overwrite `%s'?" to))))
4729;; ;; must determine if FROM is marked before file-creator
4730;; ;; gets a chance to delete it (in case of a move).
4731;; (actual-marker-char
4732;; (cond ((integerp marker-char) marker-char)
4733;; (marker-char (dired-file-marker from)) ; slow
4734;; (t nil))))
4735;; (condition-case err
4736;; (funcall file-creator from to overwrite-confirmed
e3441f42 4737;; (list 'ange-ftp-dcf-2
8749abea
GM
4738;; nil ;err
4739;; file-creator operation fn-list
4740;; name-constructor
4741;; target
4742;; marker-char actual-marker-char
4743;; buffer to from
4744;; overwrite
4745;; overwrite-confirmed
25759a92 4746;; overwrite-query
8749abea
GM
4747;; overwrite-backup-query
4748;; failures skipped success-count
4749;; total)
4750;; t)
4751;; (file-error ; FILE-CREATOR aborted
4752;; (ange-ftp-dcf-2 nil ;result
4753;; nil ;line
4754;; err
4755;; file-creator operation fn-list
4756;; name-constructor
4757;; target
4758;; marker-char actual-marker-char
4759;; buffer to from
4760;; overwrite
4761;; overwrite-confirmed
25759a92 4762;; overwrite-query
8749abea
GM
4763;; overwrite-backup-query
4764;; failures skipped success-count
b63f6e81 4765;; total)))))))))
8749abea
GM
4766
4767;;(defun ange-ftp-dcf-2 (result line err
4768;; file-creator operation fn-list
4769;; name-constructor
4770;; target
4771;; marker-char actual-marker-char
4772;; buffer to from
4773;; overwrite
4774;; overwrite-confirmed
25759a92 4775;; overwrite-query
8749abea
GM
4776;; overwrite-backup-query
4777;; failures skipped success-count
4778;; total)
b63f6e81 4779;; (with-current-buffer buffer
8749abea
GM
4780;; (if (or err (not result))
4781;; (progn
4782;; (setq failures (cons (dired-make-relative from) failures))
4783;; (dired-log "%s `%s' to `%s' failed:\n%s\n"
4784;; operation from to (or err line)))
4785;; (if overwrite
4786;; ;; If we get here, file-creator hasn't been aborted
4787;; ;; and the old entry (if any) has to be deleted
4788;; ;; before adding the new entry.
4789;; (dired-remove-file to))
4790;; (setq success-count (1+ success-count))
4791;; (message "%s: %d of %d" operation success-count total)
4792;; (dired-add-file to actual-marker-char))
25759a92 4793
8749abea
GM
4794;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list)
4795;; name-constructor
4796;; target
4797;; marker-char
4798;; buffer
25759a92 4799;; overwrite-query
8749abea
GM
4800;; overwrite-backup-query
4801;; failures skipped success-count
b63f6e81 4802;; total)))
8749abea
GM
4803
4804;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count
4805;; buffer)
b63f6e81 4806;; (with-current-buffer buffer
8749abea
GM
4807;; (cond
4808;; (failures
4809;; (dired-log-summary
4810;; (message "%s failed for %d of %d file%s %s"
4811;; operation (length failures) total
4812;; (dired-plural-s total) failures)))
4813;; (skipped
4814;; (dired-log-summary
4815;; (message "%s: %d of %d file%s skipped %s"
4816;; operation (length skipped) total
4817;; (dired-plural-s total) skipped)))
4818;; (t
4819;; (message "%s: %s file%s."
4820;; operation success-count (dired-plural-s success-count))))
b63f6e81 4821;; (dired-move-to-filename)))
8749abea
GM
4822\f
4823;;;; -----------------------------------------------
4824;;;; Unix Descriptive Listing (dl) Support
4825;;;; -----------------------------------------------
4826
4827;; This is turned off because nothing uses it currently
4828;; and because I don't understand what it's supposed to be for. --rms.
4829
4830;;(defconst ange-ftp-dired-dl-re-dir
4831;; "^. [^ /]+/[ \n]"
4832;; "Regular expression to use to search for dl directories.")
4833
4834;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist)
4835;; (setq ange-ftp-dired-re-dir-alist
4836;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir)
4837;; ange-ftp-dired-re-dir-alist)))
4838
4839;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol)
4840;; "In dired, move to the first character of the filename on this line."
4841;; ;; This is the Unix dl version.
4842;; (or eol (setq eol (progn (end-of-line) (point))))
4843;; (let (case-fold-search)
4844;; (beginning-of-line)
4845;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ")
4846;; (goto-char (+ (point) 2))
4847;; (if raise-error
4848;; (error "No file on this line")
4849;; nil))))
4850
4851;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist)
4852;; (setq ange-ftp-dired-move-to-filename-alist
4853;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename)
4854;; ange-ftp-dired-move-to-filename-alist)))
4855
4856;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol)
4857;; ;; Assumes point is at beginning of filename.
4858;; ;; So, it should be called only after (dired-move-to-filename t).
4859;; ;; On failure, signals an error or returns nil.
4860;; ;; This is the Unix dl version.
4861;; (let ((opoint (point))
4862;; case-fold-search hidden)
4863;; (or eol (setq eol (save-excursion (end-of-line) (point))))
4864;; (setq hidden (and selective-display
4865;; (save-excursion
4866;; (search-forward "\r" eol t))))
4867;; (if hidden
4868;; (if no-error
4869;; nil
4870;; (error
4871;; (substitute-command-keys
4872;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
4873;; (skip-chars-forward "^ /" eol)
4874;; (if (eq opoint (point))
4875;; (if no-error
4876;; nil
4877;; (error "No file on this line"))
4878;; (point)))))
4879
4880;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist)
4881;; (setq ange-ftp-dired-move-to-end-of-filename-alist
4882;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename)
4883;; ange-ftp-dired-move-to-end-of-filename-alist)))
4884\f
4885;;;; ------------------------------------------------------------
4886;;;; VOS support (VOS support is probably broken,
4887;;;; but I don't know anything about VOS.)
4888;;;; ------------------------------------------------------------
4889;
4890;(defun ange-ftp-fix-name-for-vos (name &optional reverse)
4891; (setq name (copy-sequence name))
4892; (let ((from (if reverse ?\> ?\/))
4893; (to (if reverse ?\/ ?\>))
4894; (i (1- (length name))))
4895; (while (>= i 0)
4896; (if (= (aref name i) from)
4897; (aset name i to))
4898; (setq i (1- i)))
4899; name))
4900;
4901;(or (assq 'vos ange-ftp-fix-name-func-alist)
4902; (setq ange-ftp-fix-name-func-alist
4903; (cons '(vos . ange-ftp-fix-name-for-vos)
4904; ange-ftp-fix-name-func-alist)))
4905;
4906;(or (memq 'vos ange-ftp-dumb-host-types)
4907; (setq ange-ftp-dumb-host-types
4908; (cons 'vos ange-ftp-dumb-host-types)))
4909;
4910;(defun ange-ftp-fix-dir-name-for-vos (dir-name)
4911; (ange-ftp-fix-name-for-vos
4912; (concat dir-name
4913; (if (eq ?/ (aref dir-name (1- (length dir-name))))
4914; "" "/")
4915; "*")))
4916;
4917;(or (assq 'vos ange-ftp-fix-dir-name-func-alist)
4918; (setq ange-ftp-fix-dir-name-func-alist
4919; (cons '(vos . ange-ftp-fix-dir-name-for-vos)
4920; ange-ftp-fix-dir-name-func-alist)))
4921;
4922;(defvar ange-ftp-vos-host-regexp nil
4923; "If a host matches this regexp then it is assumed to be running VOS.")
4924;
4925;(defun ange-ftp-vos-host (host)
4926; (and ange-ftp-vos-host-regexp
4927; (save-match-data
4928; (string-match ange-ftp-vos-host-regexp host))))
4929;
4930;(defun ange-ftp-parse-vos-listing ()
4931; "Parse the current buffer which is assumed to be in VOS list -all
4932;format, and return a hashtable as the result."
4933; (let ((tbl (ange-ftp-make-hashtable))
4934; (type-list
4935; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40)
4936; ("^Dirs: [0-9]+\n+" t 30)))
4937; type-regexp type-is-dir type-col file)
4938; (goto-char (point-min))
4939; (save-match-data
4940; (while type-list
4941; (setq type-regexp (car (car type-list))
4942; type-is-dir (nth 1 (car type-list))
4943; type-col (nth 2 (car type-list))
4944; type-list (cdr type-list))
4945; (if (re-search-forward type-regexp nil t)
4946; (while (eq (char-after (point)) ? )
4947; (move-to-column type-col)
4948; (setq file (buffer-substring (point)
4949; (progn
4950; (end-of-line 1)
4951; (point))))
6e85ef5f 4952; (puthash file type-is-dir tbl)
8749abea 4953; (forward-line 1))))
6e85ef5f
SM
4954; (puthash "." 'vosdir tbl)
4955; (puthash ".." 'vosdir tbl))
8749abea
GM
4956; tbl))
4957;
4958;(or (assq 'vos ange-ftp-parse-list-func-alist)
4959; (setq ange-ftp-parse-list-func-alist
4960; (cons '(vos . ange-ftp-parse-vos-listing)
4961; ange-ftp-parse-list-func-alist)))
4962\f
4963;;;; ------------------------------------------------------------
4964;;;; VMS support.
4965;;;; ------------------------------------------------------------
4966
4967;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS
4968;; to UNIX-ish.
4969(defun ange-ftp-fix-name-for-vms (name &optional reverse)
4970 (save-match-data
4971 (if reverse
aa6f7b96 4972 (if (string-match "\\`\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)\\'" name)
8749abea 4973 (let (drive dir file)
e3441f42
SM
4974 (setq drive (match-string 1 name))
4975 (setq dir (match-string 2 name))
4976 (setq file (match-string 3 name))
8749abea 4977 (and dir
a1f84f6d 4978 (setq dir (subst-char-in-string
a724ed38 4979 ?/ ?. (substring dir 1 -1) t)))
8749abea
GM
4980 (concat (and drive
4981 (concat "/" drive "/"))
4982 dir (and dir "/")
4983 file))
4984 (error "name %s didn't match" name))
4985 (let (drive dir file tmp)
aa6f7b96 4986 (if (string-match "\\`/[^:]+:/" name)
8749abea
GM
4987 (setq drive (substring name 1
4988 (1- (match-end 0)))
4989 name (substring name (match-end 0))))
4990 (setq tmp (file-name-directory name))
4991 (if tmp
a724ed38 4992 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t)))
8749abea
GM
4993 (setq file (file-name-nondirectory name))
4994 (concat drive
4995 (and dir (concat "[" (if drive nil ".") dir "]"))
4996 file)))))
4997
4998;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1")
4999;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t)
5000
5001(or (assq 'vms ange-ftp-fix-name-func-alist)
5002 (setq ange-ftp-fix-name-func-alist
5003 (cons '(vms . ange-ftp-fix-name-for-vms)
5004 ange-ftp-fix-name-func-alist)))
5005
5006(or (memq 'vms ange-ftp-dumb-host-types)
5007 (setq ange-ftp-dumb-host-types
5008 (cons 'vms ange-ftp-dumb-host-types)))
5009
5010;; It is important that this function barf for directories for which we know
5011;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/".
5012;; This is because it saves an unnecessary FTP error, or possibly the listing
5013;; might succeed, but give erroneous info. This last case is particularly
5014;; likely for OS's (like MTS) for which we need to use a wildcard in order
5015;; to list a directory.
5016
5017;; Convert name from UNIX-ish to VMS ready for a DIRectory listing.
5018(defun ange-ftp-fix-dir-name-for-vms (dir-name)
5019 ;; Should there be entries for .. -> [-] and . -> [] below. Don't
5020 ;; think so, because expand-filename should have already short-circuited
5021 ;; them.
5022 (cond ((string-equal dir-name "/")
55535639 5023 (error "Cannot get listing for fictitious \"/\" directory"))
aa6f7b96 5024 ((string-match "\\`/[-A-Z0-9_$]+:/\\'" dir-name)
55535639 5025 (error "Cannot get listing for device"))
8749abea 5026 ((ange-ftp-fix-name-for-vms dir-name))))
25759a92 5027
8749abea
GM
5028(or (assq 'vms ange-ftp-fix-dir-name-func-alist)
5029 (setq ange-ftp-fix-dir-name-func-alist
5030 (cons '(vms . ange-ftp-fix-dir-name-for-vms)
5031 ange-ftp-fix-dir-name-func-alist)))
5032
5033(defvar ange-ftp-vms-host-regexp nil)
5034
5035;; Return non-nil if HOST is running VMS.
5036(defun ange-ftp-vms-host (host)
5037 (and ange-ftp-vms-host-regexp
4671dba5 5038 (string-match-p ange-ftp-vms-host-regexp host)))
8749abea
GM
5039
5040;; Because some VMS ftp servers convert filenames to lower case
5041;; we allow a-z in the filename regexp. I'm not too happy about this.
5042
5043(defconst ange-ftp-vms-filename-regexp
5044 (concat
5045 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\."
5046 "[-_A-Za-z0-9$]*;+[0-9]*\\)")
5047 "Regular expression to match for a valid VMS file name in Dired buffer.
4671dba5
JB
5048Stupid freaking bug! Position of _ and $ shouldn't matter but they do.
5049Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX.
8749abea
GM
5050Other orders of $ and _ seem to all work just fine.")
5051
5052;; These parsing functions are as general as possible because the syntax
5053;; of ftp listings from VMS hosts is a bit erratic. What saves us is that
5054;; the VMS filename syntax is so rigid. If they bomb on a listing in the
5055;; standard VMS Multinet format, then this is a bug. If they bomb on a listing
5056;; from vms.weird.net, then too bad.
5057
5058;; Extract the next filename from a VMS dired-like listing.
5059(defun ange-ftp-parse-vms-filename ()
5060 (if (re-search-forward
e3441f42
SM
5061 ange-ftp-vms-filename-regexp
5062 nil t)
5063 (match-string 0)))
8749abea
GM
5064
5065;; Parse the current buffer which is assumed to be in MultiNet FTP dir
5066;; format, and return a hashtable as the result.
5067(defun ange-ftp-parse-vms-listing ()
6e85ef5f 5068 (let ((tbl (make-hash-table :test 'equal))
8749abea
GM
5069 file)
5070 (goto-char (point-min))
5071 (save-match-data
5072 (while (setq file (ange-ftp-parse-vms-filename))
5073 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file)
5074 ;; deal with directories
6e85ef5f
SM
5075 (puthash (substring file 0 (match-beginning 0)) t tbl)
5076 (puthash file nil tbl)
aa6f7b96 5077 (if (string-match ";[0-9]+\\'" file) ; deal with extension
8749abea 5078 ;; sans extension
6e85ef5f 5079 (puthash (substring file 0 (match-beginning 0)) nil tbl)))
8749abea
GM
5080 (forward-line 1))
5081 ;; Would like to look for a "Total" line, or a "Directory" line to
5082 ;; make sure that the listing isn't complete garbage before putting
5083 ;; in "." and "..", but we can't even count on all VAX's giving us
5084 ;; either of these.
6e85ef5f
SM
5085 (puthash "." t tbl)
5086 (puthash ".." t tbl))
8749abea
GM
5087 tbl))
5088
e3441f42
SM
5089(add-to-list 'ange-ftp-parse-list-func-alist
5090 '(vms . ange-ftp-parse-vms-listing))
8749abea
GM
5091
5092;; This version only deletes file entries which have
5093;; explicit version numbers, because that is all VMS allows.
5094
5095;; Can the following two functions be speeded up using file
5096;; completion functions?
5097
5098(defun ange-ftp-vms-delete-file-entry (name &optional dir-p)
5099 (if dir-p
5100 (ange-ftp-internal-delete-file-entry name t)
5101 (save-match-data
5102 (let ((file (ange-ftp-get-file-part name)))
aa6f7b96 5103 (if (string-match ";[0-9]+\\'" file)
25759a92 5104 ;; In VMS you can't delete a file without an explicit
8749abea
GM
5105 ;; version number, or wild-card (e.g. FOO;*)
5106 ;; For now, we give up on wildcards.
6e85ef5f
SM
5107 (let ((files (gethash (file-name-directory name)
5108 ange-ftp-files-hashtable)))
8749abea
GM
5109 (if files
5110 (let* ((root (substring file 0
5111 (match-beginning 0)))
5112 (regexp (concat "^"
5113 (regexp-quote root)
5114 ";[0-9]+$"))
5115 versions)
6e85ef5f 5116 (remhash file files)
8749abea
GM
5117 ;; Now we need to check if there are any
5118 ;; versions left. If not, then delete the
5119 ;; root entry.
6e85ef5f
SM
5120 (maphash
5121 (lambda (key val)
5122 (and (string-match regexp key)
aeb18228 5123 (setq versions t)))
8749abea
GM
5124 files)
5125 (or versions
6e85ef5f 5126 (remhash root files))))))))))
8749abea
GM
5127
5128(or (assq 'vms ange-ftp-delete-file-entry-alist)
5129 (setq ange-ftp-delete-file-entry-alist
5130 (cons '(vms . ange-ftp-vms-delete-file-entry)
5131 ange-ftp-delete-file-entry-alist)))
5132
5133(defun ange-ftp-vms-add-file-entry (name &optional dir-p)
5134 (if dir-p
5135 (ange-ftp-internal-add-file-entry name t)
6e85ef5f
SM
5136 (let ((files (gethash (file-name-directory name)
5137 ange-ftp-files-hashtable)))
8749abea
GM
5138 (if files
5139 (let ((file (ange-ftp-get-file-part name)))
5140 (save-match-data
aa6f7b96 5141 (if (string-match ";[0-9]+\\'" file)
6e85ef5f 5142 (puthash (substring file 0 (match-beginning 0)) nil files)
8749abea
GM
5143 ;; Need to figure out what version of the file
5144 ;; is being added.
5145 (let ((regexp (concat "^"
5146 (regexp-quote file)
5147 ";\\([0-9]+\\)$"))
5148 (version 0))
6e85ef5f
SM
5149 (maphash
5150 (lambda (name val)
5151 (and (string-match regexp name)
5152 (setq version
5153 (max version
027a4b6b 5154 (string-to-number (match-string 1 name))))))
8749abea
GM
5155 files)
5156 (setq version (1+ version))
6e85ef5f 5157 (puthash
8749abea
GM
5158 (concat file ";" (int-to-string version))
5159 nil files))))
6e85ef5f 5160 (puthash file nil files))))))
8749abea
GM
5161
5162(or (assq 'vms ange-ftp-add-file-entry-alist)
5163 (setq ange-ftp-add-file-entry-alist
5164 (cons '(vms . ange-ftp-vms-add-file-entry)
5165 ange-ftp-add-file-entry-alist)))
5166
5167
5168(defun ange-ftp-add-vms-host (host)
5169 "Mark HOST as the name of a machine running VMS."
5170 (interactive
5171 (list (read-string "Host: "
5172 (let ((name (or (buffer-file-name) default-directory)))
5173 (and name (car (ange-ftp-ftp-name name)))))))
5174 (if (not (ange-ftp-vms-host host))
5175 (setq ange-ftp-vms-host-regexp
5176 (concat "^" (regexp-quote host) "$"
5177 (and ange-ftp-vms-host-regexp "\\|")
5178 ange-ftp-vms-host-regexp)
5179 ange-ftp-host-cache nil)))
5180
5181
5182(defun ange-ftp-vms-file-name-as-directory (name)
5183 (save-match-data
aa6f7b96 5184 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?\\'" name)
8749abea
GM
5185 (setq name (substring name 0 (match-beginning 0))))
5186 (ange-ftp-real-file-name-as-directory name)))
5187
5188(or (assq 'vms ange-ftp-file-name-as-directory-alist)
5189 (setq ange-ftp-file-name-as-directory-alist
5190 (cons '(vms . ange-ftp-vms-file-name-as-directory)
5191 ange-ftp-file-name-as-directory-alist)))
5192
5193;;; Tree dired support:
5194
5195;; For this code I have borrowed liberally from Sebastian Kremer's
5196;; dired-vms.el
5197
5198
5199;;;; These regexps must be anchored to beginning of line.
5200;;;; Beware that the ftpd may put the device in front of the filename.
5201
5202;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]"
5203;; "Regular expression to use to search for VMS executable files.")
5204
5205;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]"
5206;; "Regular expression to use to search for VMS directories.")
5207
5208;;(or (assq 'vms ange-ftp-dired-re-exe-alist)
5209;; (setq ange-ftp-dired-re-exe-alist
5210;; (cons (cons 'vms ange-ftp-dired-vms-re-exe)
5211;; ange-ftp-dired-re-exe-alist)))
5212
5213;;(or (assq 'vms ange-ftp-dired-re-dir-alist)
5214;; (setq ange-ftp-dired-re-dir-alist
5215;; (cons (cons 'vms ange-ftp-dired-vms-re-dir)
5216;; ange-ftp-dired-re-dir-alist)))
5217
5218;;(defun ange-ftp-dired-vms-insert-headerline (dir)
5219;; ;; VMS inserts a headerline. I would prefer the headerline
5220;; ;; to be in ange-ftp format. This version tries to
5221;; ;; be careful, because we can't count on a headerline
5222;; ;; over ftp, and we wouldn't want to delete anything
5223;; ;; important.
5224;; (save-excursion
5225;; (if (looking-at "^ wildcard ")
5226;; (forward-line 1))
5227;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n")
5228;; (delete-region (point) (match-end 0))))
5229;; (ange-ftp-real-dired-insert-headerline dir))
5230
5231;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist)
5232;; (setq ange-ftp-dired-insert-headerline-alist
5233;; (cons '(vms . ange-ftp-dired-vms-insert-headerline)
5234;; ange-ftp-dired-insert-headerline-alist)))
5235
5236;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol)
5237;; "In dired, move to first char of filename on this line.
5238;;Returns position (point) or nil if no filename on this line."
5239;; ;; This is the VMS version.
5240;; (let (case-fold-search)
5241;; (or eol (setq eol (progn (end-of-line) (point))))
5242;; (beginning-of-line)
5243;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t)
5244;; (goto-char (match-beginning 1))
5245;; (if raise-error
5246;; (error "No file on this line")
5247;; nil))))
5248
5249;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist)
5250;; (setq ange-ftp-dired-move-to-filename-alist
5251;; (cons '(vms . ange-ftp-dired-vms-move-to-filename)
5252;; ange-ftp-dired-move-to-filename-alist)))
5253
5254;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol)
5255;; ;; Assumes point is at beginning of filename.
5256;; ;; So, it should be called only after (dired-move-to-filename t).
5257;; ;; case-fold-search must be nil, at least for VMS.
5258;; ;; On failure, signals an error or returns nil.
5259;; ;; This is the VMS version.
5260;; (let (opoint hidden case-fold-search)
5261;; (setq opoint (point))
5262;; (or eol (setq eol (save-excursion (end-of-line) (point))))
5263;; (setq hidden (and selective-display
5264;; (save-excursion (search-forward "\r" eol t))))
5265;; (if hidden
5266;; nil
5267;; (re-search-forward ange-ftp-vms-filename-regexp eol t))
5268;; (or no-error
5269;; (not (eq opoint (point)))
5270;; (error
5271;; (if hidden
5272;; (substitute-command-keys
5273;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5274;; "No file on this line")))
5275;; (if (eq opoint (point))
5276;; nil
5277;; (point))))
5278
5279;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist)
5280;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5281;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename)
5282;; ange-ftp-dired-move-to-end-of-filename-alist)))
5283
5284;;(defun ange-ftp-dired-vms-between-files ()
5285;; (save-excursion
5286;; (beginning-of-line)
5287;; (or (equal (following-char) 10) ; newline
5288;; (equal (following-char) 9) ; tab
5289;; (progn (forward-char 2)
5290;; (or (looking-at "Total of")
5291;; (equal (following-char) 32))))))
5292
5293;;(or (assq 'vms ange-ftp-dired-between-files-alist)
5294;; (setq ange-ftp-dired-between-files-alist
5295;; (cons '(vms . ange-ftp-dired-vms-between-files)
5296;; ange-ftp-dired-between-files-alist)))
5297
5298;; Beware! In VMS filenames must be of the form "FILE.TYPE".
5299;; Therefore, we cannot just append a ".Z" to filenames for
5300;; compressed files. Instead, we turn "FILE.TYPE" into
5301;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do.
5302
5303(defun ange-ftp-vms-make-compressed-filename (name &optional reverse)
5304 (cond
aa6f7b96 5305 ((string-match "-Z;[0-9]+\\'" name)
8749abea 5306 (list nil (substring name 0 (match-beginning 0))))
aa6f7b96 5307 ((string-match ";[0-9]+\\'" name)
8749abea 5308 (list nil (substring name 0 (match-beginning 0))))
aa6f7b96 5309 ((string-match "-Z\\'" name)
8749abea
GM
5310 (list nil (substring name 0 -2)))
5311 (t
5312 (list t
aa6f7b96 5313 (if (string-match ";[0-9]+\\'" name)
8749abea
GM
5314 (concat (substring name 0 (match-beginning 0))
5315 "-Z")
5316 (concat name "-Z"))))))
5317
5318(or (assq 'vms ange-ftp-make-compressed-filename-alist)
5319 (setq ange-ftp-make-compressed-filename-alist
5320 (cons '(vms . ange-ftp-vms-make-compressed-filename)
5321 ange-ftp-make-compressed-filename-alist)))
5322
5323;;;; When the filename is too long, VMS will use two lines to list a file
5324;;;; (damn them!) This will confuse dired. To solve this, need to convince
5325;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of
5326;;;; (forward-line 1). This would require a number of changes to dired.el.
5327;;;; If dired gets confused, revert-buffer will fix it.
5328
5329;;(defun ange-ftp-dired-vms-ls-trim ()
5330;; (goto-char (point-min))
5331;; (let ((case-fold-search nil))
5332;; (re-search-forward ange-ftp-vms-filename-regexp))
5333;; (beginning-of-line)
5334;; (delete-region (point-min) (point))
5335;; (forward-line 1)
5336;; (delete-region (point) (point-max)))
5337
5338
5339;;(or (assq 'vms ange-ftp-dired-ls-trim-alist)
5340;; (setq ange-ftp-dired-ls-trim-alist
5341;; (cons '(vms . ange-ftp-dired-vms-ls-trim)
25759a92 5342;; ange-ftp-dired-ls-trim-alist)))
8749abea
GM
5343
5344(defun ange-ftp-vms-sans-version (name &rest args)
5345 (save-match-data
aa6f7b96 5346 (if (string-match ";[0-9]+\\'" name)
8749abea
GM
5347 (substring name 0 (match-beginning 0))
5348 name)))
5349
5350(or (assq 'vms ange-ftp-sans-version-alist)
5351 (setq ange-ftp-sans-version-alist
5352 (cons '(vms . ange-ftp-vms-sans-version)
5353 ange-ftp-sans-version-alist)))
5354
5355;;(defvar ange-ftp-file-version-alist)
5356
5357;;;;; The vms version of clean-directory has 2 more optional args
5358;;;;; than the usual dired version. This is so that it can be used by
5359;;;;; ange-ftp-dired-vms-flag-backup-files.
5360
5361;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg)
5362;; "Flag numerical backups for deletion.
5363;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
5364;;Positive prefix arg KEEP overrides `dired-kept-versions';
5365;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
5366
5367;;To clear the flags on these files, you can use \\[dired-flag-backup-files]
5368;;with a prefix argument."
5369;;; (interactive "P") ; Never actually called interactively.
5370;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions)))
5371;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
5372;; ;; late-retention must NEVER be allowed to be less than 1 in VMS!
5373;; ;; This could wipe ALL copies of the file.
5374;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep)))
5375;; (action (or msg "Cleaning"))
5376;; (ange-ftp-trample-marker (or marker dired-del-marker))
5377;; (ange-ftp-file-version-alist ()))
5378;; (message (concat action
5379;; " numerical backups (keeping %d late, %d old)...")
5380;; late-retention early-retention)
5381;; ;; Look at each file.
5382;; ;; If the file has numeric backup versions,
5383;; ;; put on ange-ftp-file-version-alist an element of the form
5384;; ;; (FILENAME . VERSION-NUMBER-LIST)
e3441f42 5385;; (dired-map-dired-file-lines 'ange-ftp-dired-vms-collect-file-versions)
8749abea
GM
5386;; ;; Sort each VERSION-NUMBER-LIST,
5387;; ;; and remove the versions not to be deleted.
5388;; (let ((fval ange-ftp-file-version-alist))
5389;; (while fval
5390;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
5391;; (v-count (length sorted-v-list)))
5392;; (if (> v-count (+ early-retention late-retention))
5393;; (rplacd (nthcdr early-retention sorted-v-list)
5394;; (nthcdr (- v-count late-retention)
5395;; sorted-v-list)))
5396;; (rplacd (car fval)
5397;; (cdr sorted-v-list)))
5398;; (setq fval (cdr fval))))
5399;; ;; Look at each file. If it is a numeric backup file,
5400;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
5401;; (dired-map-dired-file-lines
e3441f42 5402;; 'ange-ftp-dired-vms-trample-file-versions mark)
8749abea
GM
5403;; (message (concat action " numerical backups...done"))))
5404
5405;;(or (assq 'vms ange-ftp-dired-clean-directory-alist)
5406;; (setq ange-ftp-dired-clean-directory-alist
5407;; (cons '(vms . ange-ftp-dired-vms-clean-directory)
5408;; ange-ftp-dired-clean-directory-alist)))
5409
5410;;(defun ange-ftp-dired-vms-collect-file-versions (fn)
5411;; ;; "If it looks like file FN has versions, return a list of the versions.
5412;; ;;That is a list of strings which are file names.
5413;; ;;The caller may want to flag some of these files for deletion."
5414;;(let ((name (nth 2 (ange-ftp-ftp-name fn))))
5415;; (if (string-match ";[0-9]+$" name)
5416;; (let* ((name (substring name 0 (match-beginning 0)))
5417;; (fn (ange-ftp-replace-name-component fn name)))
5418;; (if (not (assq fn ange-ftp-file-version-alist))
5419;; (let* ((base-versions
5420;; (concat (file-name-nondirectory name) ";"))
5421;; (bv-length (length base-versions))
5422;; (possibilities (file-name-all-completions
5423;; base-versions
5424;; (file-name-directory fn)))
5425;; (versions (mapcar
5426;; '(lambda (arg)
5427;; (if (and (string-match
5428;; "[0-9]+$" arg bv-length)
5429;; (= (match-beginning 0) bv-length))
5430;; (string-to-int (substring arg bv-length))
5431;; 0))
5432;; possibilities)))
5433;; (if versions
5434;; (setq
5435;; ange-ftp-file-version-alist
5436;; (cons (cons fn versions)
5437;; ange-ftp-file-version-alist)))))))))
5438
5439;;(defun ange-ftp-dired-vms-trample-file-versions (fn)
5440;; (let* ((start-vn (string-match ";[0-9]+$" fn))
5441;; base-version-list)
5442;; (and start-vn
5443;; (setq base-version-list ; there was a base version to which
5444;; (assoc (substring fn 0 start-vn) ; this looks like a
5445;; ange-ftp-file-version-alist)) ; subversion
5446;; (not (memq (string-to-int (substring fn (1+ start-vn)))
5447;; base-version-list)) ; this one doesn't make the cut
5448;; (progn (beginning-of-line)
5449;; (delete-char 1)
5450;; (insert ange-ftp-trample-marker)))))
5451
5452;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p)
5453;; (let ((dired-kept-versions 1)
5454;; (kept-old-versions 0)
5455;; marker msg)
5456;; (if unflag-p
5457;; (setq marker ?\040 msg "Unflagging")
5458;; (setq marker dired-del-marker msg "Cleaning"))
5459;; (ange-ftp-dired-vms-clean-directory nil marker msg)))
5460
5461;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist)
5462;; (setq ange-ftp-dired-flag-backup-files-alist
5463;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files)
5464;; ange-ftp-dired-flag-backup-files-alist)))
5465
5466;;(defun ange-ftp-dired-vms-backup-diff (&optional switches)
5467;; (let ((file (dired-get-filename 'no-dir))
5468;; bak)
5469;; (if (and (string-match ";[0-9]+$" file)
5470;; ;; Find most recent previous version.
5471;; (let ((root (substring file 0 (match-beginning 0)))
5472;; (ver
5473;; (string-to-int (substring file (1+ (match-beginning 0)))))
5474;; found)
5475;; (setq ver (1- ver))
5476;; (while (and (> ver 0) (not found))
5477;; (setq bak (concat root ";" (int-to-string ver)))
5478;; (and (file-exists-p bak) (setq found t))
5479;; (setq ver (1- ver)))
5480;; found))
5481;; (if switches
5482;; (diff (expand-file-name bak) (expand-file-name file) switches)
5483;; (diff (expand-file-name bak) (expand-file-name file)))
5484;; (error "No previous version found for %s" file))))
5485
5486;;(or (assq 'vms ange-ftp-dired-backup-diff-alist)
5487;; (setq ange-ftp-dired-backup-diff-alist
5488;; (cons '(vms . ange-ftp-dired-vms-backup-diff)
5489;; ange-ftp-dired-backup-diff-alist)))
5490
5491\f
5492;;;; ------------------------------------------------------------
5493;;;; MTS support
5494;;;; ------------------------------------------------------------
5495
5496
5497;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from
5498;; MTS to UNIX-ish.
5499(defun ange-ftp-fix-name-for-mts (name &optional reverse)
5500 (save-match-data
5501 (if reverse
aa6f7b96 5502 (if (string-match "\\`\\([^:]+:\\)?\\(.*\\)\\'" name)
8749abea 5503 (let (acct file)
e3441f42
SM
5504 (setq acct (match-string 1 name))
5505 (setq file (match-string 2 name))
8749abea
GM
5506 (concat (and acct (concat "/" acct "/"))
5507 file))
5508 (error "name %s didn't match" name))
aa6f7b96 5509 (if (string-match "\\`/\\([^:]+:\\)/\\(.*\\)\\'" name)
e3441f42 5510 (concat (match-string 1 name) (match-string 2 name))
8749abea
GM
5511 ;; Let's hope that mts will recognize it anyway.
5512 name))))
5513
5514(or (assq 'mts ange-ftp-fix-name-func-alist)
5515 (setq ange-ftp-fix-name-func-alist
5516 (cons '(mts . ange-ftp-fix-name-for-mts)
5517 ange-ftp-fix-name-func-alist)))
5518
5519;; Convert name from UNIX-ish to MTS ready for a DIRectory listing.
5520;; Remember that there are no directories in MTS.
5521(defun ange-ftp-fix-dir-name-for-mts (dir-name)
5522 (if (string-equal dir-name "/")
55535639 5523 (error "Cannot get listing for fictitious \"/\" directory")
8749abea
GM
5524 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name)))
5525 (cond
5526 ((string-equal dir-name "")
5527 "?")
aa6f7b96 5528 ((string-match ":\\'" dir-name)
8749abea
GM
5529 (concat dir-name "?"))
5530 (dir-name))))) ; It's just a single file.
5531
5532(or (assq 'mts ange-ftp-fix-dir-name-func-alist)
5533 (setq ange-ftp-fix-dir-name-func-alist
5534 (cons '(mts . ange-ftp-fix-dir-name-for-mts)
5535 ange-ftp-fix-dir-name-func-alist)))
5536
5537(or (memq 'mts ange-ftp-dumb-host-types)
5538 (setq ange-ftp-dumb-host-types
5539 (cons 'mts ange-ftp-dumb-host-types)))
5540
5541(defvar ange-ftp-mts-host-regexp nil)
5542
5543;; Return non-nil if HOST is running MTS.
5544(defun ange-ftp-mts-host (host)
5545 (and ange-ftp-mts-host-regexp
4671dba5 5546 (string-match-p ange-ftp-mts-host-regexp host)))
8749abea
GM
5547
5548;; Parse the current buffer which is assumed to be in mts ftp dir format.
5549(defun ange-ftp-parse-mts-listing ()
6e85ef5f 5550 (let ((tbl (make-hash-table :test 'equal)))
8749abea
GM
5551 (goto-char (point-min))
5552 (save-match-data
9bc260cf 5553 (while (re-search-forward directory-listing-before-filename-regexp nil t)
8749abea
GM
5554 (end-of-line)
5555 (skip-chars-backward " ")
5556 (let ((end (point)))
5557 (skip-chars-backward "-A-Z0-9_.!")
6e85ef5f 5558 (puthash (buffer-substring (point) end) nil tbl))
8749abea 5559 (forward-line 1)))
6e85ef5f
SM
5560 ;; Don't need to bother with ..
5561 (puthash "." t tbl)
8749abea
GM
5562 tbl))
5563
e3441f42
SM
5564(add-to-list 'ange-ftp-parse-list-func-alist
5565 '(mts . ange-ftp-parse-mts-listing))
8749abea
GM
5566
5567(defun ange-ftp-add-mts-host (host)
5568 "Mark HOST as the name of a machine running MTS."
5569 (interactive
5570 (list (read-string "Host: "
5571 (let ((name (or (buffer-file-name) default-directory)))
5572 (and name (car (ange-ftp-ftp-name name)))))))
5573 (if (not (ange-ftp-mts-host host))
5574 (setq ange-ftp-mts-host-regexp
5575 (concat "^" (regexp-quote host) "$"
5576 (and ange-ftp-mts-host-regexp "\\|")
5577 ange-ftp-mts-host-regexp)
5578 ange-ftp-host-cache nil)))
5579
5580;;; Tree dired support:
5581
5582;;;; There aren't too many systems left that use MTS. This dired support will
5583;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems
5584;;;; implement ftp in the same way. If not, it might be necessary to make the
5585;;;; following more flexible.
5586
5587;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol)
5588;; "In dired, move to first char of filename on this line.
5589;;Returns position (point) or nil if no filename on this line."
5590;; ;; This is the MTS version.
5591;; (or eol (setq eol (progn (end-of-line) (point))))
5592;; (beginning-of-line)
5593;; (if (re-search-forward
5594;; ange-ftp-date-regexp eol t)
5595;; (progn
5596;; (skip-chars-forward " ") ; Eat blanks after date
5597;; (skip-chars-forward "0-9:" eol) ; Eat time or year
5598;; (skip-chars-forward " " eol) ; one space before filename
5599;; ;; When listing an account other than the users own account it appends
5600;; ;; ACCT: to the beginning of the filename. Skip over this.
5601;; (and (looking-at "[A-Z0-9_.]+:")
5602;; (goto-char (match-end 0)))
5603;; (point))
5604;; (if raise-error
5605;; (error "No file on this line")
5606;; nil)))
5607
5608;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist)
5609;; (setq ange-ftp-dired-move-to-filename-alist
5610;; (cons '(mts . ange-ftp-dired-mts-move-to-filename)
5611;; ange-ftp-dired-move-to-filename-alist)))
5612
5613;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol)
5614;; ;; Assumes point is at beginning of filename.
5615;; ;; So, it should be called only after (dired-move-to-filename t).
5616;; ;; On failure, signals an error or returns nil.
5617;; ;; This is the MTS version.
5618;; (let (opoint hidden case-fold-search)
5619;; (setq opoint (point)
5620;; eol (save-excursion (end-of-line) (point))
5621;; hidden (and selective-display
5622;; (save-excursion (search-forward "\r" eol t))))
5623;; (if hidden
5624;; nil
5625;; (skip-chars-forward "-A-Z0-9._!" eol))
5626;; (or no-error
5627;; (not (eq opoint (point)))
5628;; (error
5629;; (if hidden
5630;; (substitute-command-keys
5631;; "File line is hidden, type \\[dired-hide-subdir] to unhide")
5632;; "No file on this line")))
5633;; (if (eq opoint (point))
5634;; nil
5635;; (point))))
5636
5637;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist)
5638;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5639;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename)
5640;; ange-ftp-dired-move-to-end-of-filename-alist)))
5641\f
5642;;;; ------------------------------------------------------------
5643;;;; CMS support
5644;;;; ------------------------------------------------------------
5645
5646;; Since CMS doesn't have any full file name syntax, we have to fudge
5647;; things with cd's. We actually send too many cd's, but it's dangerous
5648;; to try to remember the current minidisk, because if the connection
5649;; is closed and needs to be reopened, we will find ourselves back in
5650;; the default minidisk. This is fairly likely since CMS ftp servers
5651;; usually close the connection after 5 minutes of inactivity.
5652
5653;; Have I got the filename character set right?
5654
5655(defun ange-ftp-fix-name-for-cms (name &optional reverse)
5656 (save-match-data
5657 (if reverse
5658 ;; Since we only convert output from a pwd in this direction,
5659 ;; we'll assume that it's a minidisk, and make it into a
5660 ;; directory file name. Note that the expand-dir-hashtable
5661 ;; stores directories without the trailing /. Is this
5662 ;; consistent?
5663 (concat "/" name)
aa6f7b96 5664 (if (string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'"
8749abea 5665 name)
e3441f42 5666 (let ((minidisk (match-string 1 name)))
8749abea 5667 (if (match-beginning 2)
e3441f42 5668 (let ((file (match-string 2 name))
8749abea
GM
5669 (cmd (concat "cd " minidisk))
5670
5671 ;; Note that host and user are bound in the call
5672 ;; to ange-ftp-send-cmd
5673 (proc (ange-ftp-get-process ange-ftp-this-host
5674 ange-ftp-this-user)))
5675
5676 ;; Must use ange-ftp-raw-send-cmd here to avoid
5677 ;; an infinite loop.
5678 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg))
5679 file
5680 ;; failed... try ONCE more.
5681 (setq proc (ange-ftp-get-process ange-ftp-this-host
5682 ange-ftp-this-user))
5683 (let ((result (ange-ftp-raw-send-cmd proc cmd
5684 ange-ftp-this-msg)))
5685 (if (car result)
5686 file
5687 ;; failed. give up.
5688 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5689 (format "cd to minidisk %s failed: %s"
5690 minidisk (cdr result)))))))
5691 ;; return the minidisk
5692 minidisk))
5693 (error "Invalid CMS filename")))))
5694
5695(or (assq 'cms ange-ftp-fix-name-func-alist)
5696 (setq ange-ftp-fix-name-func-alist
5697 (cons '(cms . ange-ftp-fix-name-for-cms)
5698 ange-ftp-fix-name-func-alist)))
5699
5700(or (memq 'cms ange-ftp-dumb-host-types)
5701 (setq ange-ftp-dumb-host-types
5702 (cons 'cms ange-ftp-dumb-host-types)))
5703
5704;; Convert name from UNIX-ish to CMS ready for a DIRectory listing.
5705(defun ange-ftp-fix-dir-name-for-cms (dir-name)
5706 (cond
5707 ((string-equal "/" dir-name)
55535639 5708 (error "Cannot get listing for fictitious \"/\" directory"))
aa6f7b96 5709 ((string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" dir-name)
e3441f42 5710 (let* ((minidisk (match-string 1 dir-name))
8749abea
GM
5711 ;; host and user are bound in the call to ange-ftp-send-cmd
5712 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user))
5713 (cmd (concat "cd " minidisk))
5714 (file (if (match-beginning 2)
5715 ;; it's a single file
e3441f42 5716 (match-string 2 dir-name)
8749abea
GM
5717 ;; use the wild-card
5718 "*")))
5719 (if (car (ange-ftp-raw-send-cmd proc cmd))
5720 file
5721 ;; try again...
5722 (setq proc (ange-ftp-get-process ange-ftp-this-host
5723 ange-ftp-this-user))
5724 (let ((result (ange-ftp-raw-send-cmd proc cmd)))
5725 (if (car result)
5726 file
5727 ;; give up
5728 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user
5729 (format "cd to minidisk %s failed: %s"
5730 minidisk (cdr result))))))))
5731 (t (error "Invalid CMS file name"))))
5732
5733(or (assq 'cms ange-ftp-fix-dir-name-func-alist)
5734 (setq ange-ftp-fix-dir-name-func-alist
5735 (cons '(cms . ange-ftp-fix-dir-name-for-cms)
5736 ange-ftp-fix-dir-name-func-alist)))
5737
5738(defvar ange-ftp-cms-host-regexp nil
5739 "Regular expression to match hosts running the CMS operating system.")
5740
5741;; Return non-nil if HOST is running CMS.
5742(defun ange-ftp-cms-host (host)
5743 (and ange-ftp-cms-host-regexp
4671dba5 5744 (string-match-p ange-ftp-cms-host-regexp host)))
8749abea
GM
5745
5746(defun ange-ftp-add-cms-host (host)
5747 "Mark HOST as the name of a CMS host."
5748 (interactive
5749 (list (read-string "Host: "
5750 (let ((name (or (buffer-file-name) default-directory)))
5751 (and name (car (ange-ftp-ftp-name name)))))))
5752 (if (not (ange-ftp-cms-host host))
5753 (setq ange-ftp-cms-host-regexp
5754 (concat "^" (regexp-quote host) "$"
5755 (and ange-ftp-cms-host-regexp "\\|")
5756 ange-ftp-cms-host-regexp)
5757 ange-ftp-host-cache nil)))
5758
5759(defun ange-ftp-parse-cms-listing ()
5760 ;; Parse the current buffer which is assumed to be a CMS directory listing.
5761 ;; If we succeed in getting a listing, then we will assume that the minidisk
5762 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work
5763 ;; because ange-ftp doesn't know that the root hashtable has only part of
5764 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't
5765 ;; exist. It would be nice if completion worked for minidisks, as we
5766 ;; discover them.
5767; (let* ((dir-file (directory-file-name file))
5768; (root (file-name-directory dir-file))
5769; (minidisk (ange-ftp-get-file-part dir-file))
5770; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable)))
5771; (if root-tbl
6e85ef5f 5772; (puthash minidisk t root-tbl)
8749abea 5773; (setq root-tbl (ange-ftp-make-hashtable))
6e85ef5f
SM
5774; (puthash minidisk t root-tbl)
5775; (puthash "." t root-tbl)
8749abea
GM
5776; (ange-ftp-set-files root root-tbl)))
5777 ;; Now do the usual parsing
6e85ef5f 5778 (let ((tbl (make-hash-table :test 'equal)))
8749abea
GM
5779 (goto-char (point-min))
5780 (save-match-data
5781 (while
5782 (re-search-forward
5783 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t)
e3441f42 5784 (puthash (concat (match-string 1) "." (match-string 2)) nil tbl)
8749abea 5785 (forward-line 1))
6e85ef5f 5786 (puthash "." t tbl))
8749abea
GM
5787 tbl))
5788
e3441f42
SM
5789(add-to-list 'ange-ftp-parse-list-func-alist
5790 '(cms . ange-ftp-parse-cms-listing))
25759a92 5791
8749abea
GM
5792;;;;; Tree dired support:
5793
5794;;(defconst ange-ftp-dired-cms-re-exe
5795;; "^. [-A-Z0-9$_]+ +EXEC "
5796;; "Regular expression to use to search for CMS executables.")
5797
5798;;(or (assq 'cms ange-ftp-dired-re-exe-alist)
5799;; (setq ange-ftp-dired-re-exe-alist
5800;; (cons (cons 'cms ange-ftp-dired-cms-re-exe)
5801;; ange-ftp-dired-re-exe-alist)))
5802
5803
5804;;(defun ange-ftp-dired-cms-insert-headerline (dir)
5805;; ;; CMS has no total line, so we insert a blank line for
5806;; ;; aesthetics.
5807;; (insert "\n")
5808;; (forward-char -1)
5809;; (ange-ftp-real-dired-insert-headerline dir))
5810
5811;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist)
5812;; (setq ange-ftp-dired-insert-headerline-alist
5813;; (cons '(cms . ange-ftp-dired-cms-insert-headerline)
5814;; ange-ftp-dired-insert-headerline-alist)))
5815
5816;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol)
5817;; "In dired, move to the first char of filename on this line."
5818;; ;; This is the CMS version.
5819;; (or eol (setq eol (progn (end-of-line) (point))))
5820;; (let (case-fold-search)
5821;; (beginning-of-line)
5822;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t)
5823;; (goto-char (1+ (match-beginning 0)))
5824;; (if raise-error
5825;; (error "No file on this line")
5826;; nil))))
5827
5828;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist)
5829;; (setq ange-ftp-dired-move-to-filename-alist
5830;; (cons '(cms . ange-ftp-dired-cms-move-to-filename)
5831;; ange-ftp-dired-move-to-filename-alist)))
5832
5833;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol)
5834;; ;; Assumes point is at beginning of filename.
5835;; ;; So, it should be called only after (dired-move-to-filename t).
5836;; ;; case-fold-search must be nil, at least for VMS.
5837;; ;; On failure, signals an error or returns nil.
5838;; ;; This is the CMS version.
5839;; (let ((opoint (point))
5840;; case-fold-search hidden)
5841;; (or eol (setq eol (save-excursion (end-of-line) (point))))
5842;; (setq hidden (and selective-display
5843;; (save-excursion
5844;; (search-forward "\r" eol t))))
5845;; (if hidden
5846;; (if no-error
5847;; nil
5848;; (error
5849;; (substitute-command-keys
5850;; "File line is hidden, type \\[dired-hide-subdir] to unhide")))
5851;; (skip-chars-forward "-A-Z0-9$_" eol)
5852;; (skip-chars-forward " " eol)
5853;; (skip-chars-forward "-A-Z0-9$_" eol)
5854;; (if (eq opoint (point))
5855;; (if no-error
5856;; nil
5857;; (error "No file on this line"))
5858;; (point)))))
5859
5860;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist)
5861;; (setq ange-ftp-dired-move-to-end-of-filename-alist
5862;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename)
5863;; ange-ftp-dired-move-to-end-of-filename-alist)))
5864
5865(defun ange-ftp-cms-make-compressed-filename (name &optional reverse)
aa6f7b96 5866 (if (string-match "-Z\\'" name)
8749abea
GM
5867 (list nil (substring name 0 -2))
5868 (list t (concat name "-Z"))))
5869
5870(or (assq 'cms ange-ftp-make-compressed-filename-alist)
5871 (setq ange-ftp-make-compressed-filename-alist
5872 (cons '(cms . ange-ftp-cms-make-compressed-filename)
5873 ange-ftp-make-compressed-filename-alist)))
5874
5875;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep)
5876;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep)))
5877;; (and name
5878;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name)
5879;; (concat (substring name 0 (match-end 1))
5880;; "."
5881;; (substring name (match-beginning 2) (match-end 2)))
5882;; name))))
5883
5884;;(or (assq 'cms ange-ftp-dired-get-filename-alist)
5885;; (setq ange-ftp-dired-get-filename-alist
5886;; (cons '(cms . ange-ftp-dired-cms-get-filename)
5887;; ange-ftp-dired-get-filename-alist)))
5888\f
9c35d706
RS
5889;;;; ------------------------------------------------------------
5890;;;; BS2000 support
5891;;;; ------------------------------------------------------------
5892
5893;; There seems to be an error with regexps. '-' has to be the first
5894;; character inside of the square brackets.
5895(defconst ange-ftp-bs2000-short-filename-regexp
5896 "[-A-Z0-9$#@.]*[A-Z][-A-Z0-9$#@.]*"
5897 "Regular expression to match for a valid short BS2000 file name.")
5898
5899(defconst ange-ftp-bs2000-fix-name-regexp-reverse
5900 (concat
5901 "^\\(" ange-ftp-bs2000-filename-pubset-regexp "\\)?"
5902 "\\(" ange-ftp-bs2000-filename-username-regexp "\\)?"
5903 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
4671dba5 5904 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
9c35d706
RS
5905
5906(defconst ange-ftp-bs2000-fix-name-regexp
5907 (concat
5908 "/?\\(" ange-ftp-bs2000-filename-pubset-regexp "/\\)?"
5909 "\\(\\$[A-Z0-9]*/\\)?"
5910 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?")
4671dba5 5911 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.")
9c35d706
RS
5912
5913(defcustom ange-ftp-bs2000-special-prefix
5914 "X"
4671dba5 5915 "Prefix used for filenames starting with '#' or '@'."
9c35d706
RS
5916 :group 'ange-ftp
5917 :type 'string)
5918
5919;; Convert NAME from UNIX-ish to BS2000. If REVERSE given then convert from
5920;; BS2000 to UNIX-ish.
5921(defun ange-ftp-fix-name-for-bs2000 (name &optional reverse)
5922 (save-match-data
5923 (if reverse
5924 (if (string-match
5925 ange-ftp-bs2000-fix-name-regexp-reverse
5926 name)
5927 (let ((pubset (if (match-beginning 1)
5928 (substring name 0 (match-end 1))))
5929 (userid (if (match-beginning 2)
5930 (substring name
5931 (match-beginning 2)
5932 (1- (match-end 2)))))
5933 (filename (if (match-beginning 3)
5934 (substring name (match-beginning 3)))))
5935 (concat
5936 "/"
5937 ;; we have to insert "_/" here to prevent expand-file-name to
5938 ;; interpret BS2000 pubsets as the special escape prefix:
5939 (and pubset (concat "_/" pubset "/"))
5940 (and userid (concat userid "/"))
5941 filename))
5942 (error "name %s didn't match" name))
5943 ;; and here we (maybe) have to remove the inserted "_/" 'cause
5944 ;; of our prevention of the special escape prefix above:
5945 (if (string-match (concat "^/_/") name)
5946 (setq name (substring name 2)))
5947 (if (string-match
5948 ange-ftp-bs2000-fix-name-regexp
5949 name)
5950 (let ((pubset (if (match-beginning 1)
5951 (substring name
5952 (match-beginning 1)
5953 (1- (match-end 1)))))
5954 (userid (if (match-beginning 2)
5955 (substring name
5956 (match-beginning 2)
5957 (1- (match-end 2)))))
5958 (filename (if (match-beginning 3)
5959 (substring name (match-beginning 3)))))
5960 (if (and (boundp 'filename)
5961 (stringp filename)
5962 (string-match "[#@].+" filename))
5963 (setq filename (concat ange-ftp-bs2000-special-prefix
5964 (substring filename 1))))
5965 (upcase
5966 (concat
5967 pubset
5968 (and userid (concat userid "."))
5969 ;; change every '/' in filename to a '.', normally not neccessary
5970 (and filename
e3441f42 5971 (subst-char-in-string ?/ ?. filename)))))
9c35d706
RS
5972 ;; Let's hope that BS2000 recognize this anyway:
5973 name))))
5974
5975(or (assq 'bs2000 ange-ftp-fix-name-func-alist)
5976 (setq ange-ftp-fix-name-func-alist
5977 (cons '(bs2000 . ange-ftp-fix-name-for-bs2000)
5978 ange-ftp-fix-name-func-alist)))
5979
5980;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing.
5981;; Remember that there are no directories in BS2000.
5982(defun ange-ftp-fix-dir-name-for-bs2000 (dir-name)
5983 (if (string-equal dir-name "/")
5984 "*" ;; Don't use an empty string here!
5985 (ange-ftp-fix-name-for-bs2000 dir-name)))
5986
5987(or (assq 'bs2000 ange-ftp-fix-dir-name-func-alist)
5988 (setq ange-ftp-fix-dir-name-func-alist
5989 (cons '(bs2000 . ange-ftp-fix-dir-name-for-bs2000)
5990 ange-ftp-fix-dir-name-func-alist)))
5991
5992(or (memq 'bs2000 ange-ftp-dumb-host-types)
5993 (setq ange-ftp-dumb-host-types
5994 (cons 'bs2000 ange-ftp-dumb-host-types)))
5995
5996(defvar ange-ftp-bs2000-host-regexp nil)
5997(defvar ange-ftp-bs2000-posix-host-regexp nil)
5998
5999;; Return non-nil if HOST is running BS2000.
6000(defun ange-ftp-bs2000-host (host)
6001 (and ange-ftp-bs2000-host-regexp
4671dba5 6002 (string-match-p ange-ftp-bs2000-host-regexp host)))
9c35d706
RS
6003;; Return non-nil if HOST is running BS2000 with POSIX subsystem.
6004(defun ange-ftp-bs2000-posix-host (host)
6005 (and ange-ftp-bs2000-posix-host-regexp
4671dba5 6006 (string-match-p ange-ftp-bs2000-posix-host-regexp host)))
9c35d706
RS
6007
6008(defun ange-ftp-add-bs2000-host (host)
6009 "Mark HOST as the name of a machine running BS2000."
6010 (interactive
6011 (list (read-string "Host: "
6012 (let ((name (or (buffer-file-name) default-directory)))
6013 (and name (car (ange-ftp-ftp-name name)))))))
6014 (if (not (ange-ftp-bs2000-host host))
6015 (setq ange-ftp-bs2000-host-regexp
6016 (concat "^" (regexp-quote host) "$"
6017 (and ange-ftp-bs2000-host-regexp "\\|")
6018 ange-ftp-bs2000-host-regexp)
6019 ange-ftp-host-cache nil)))
6020
6021(defun ange-ftp-add-bs2000-posix-host (host)
6022 "Mark HOST as the name of a machine running BS2000 with POSIX subsystem."
6023 (interactive
6024 (list (read-string "Host: "
6025 (let ((name (or (buffer-file-name) default-directory)))
6026 (and name (car (ange-ftp-ftp-name name)))))))
6027 (if (not (ange-ftp-bs2000-posix-host host))
6028 (setq ange-ftp-bs2000-posix-host-regexp
6029 (concat "^" (regexp-quote host) "$"
6030 (and ange-ftp-bs2000-posix-host-regexp "\\|")
6031 ange-ftp-bs2000-posix-host-regexp)
6032 ange-ftp-host-cache nil))
6033 ;; Install CD hook to cd to posix on connecting:
e3441f42 6034 (add-hook 'ange-ftp-process-startup-hook 'ange-ftp-bs2000-cd-to-posix)
9c35d706
RS
6035 host)
6036
6037(defconst ange-ftp-bs2000-filename-regexp
6038 (concat
6039 "\\(" ange-ftp-bs2000-filename-prefix-regexp "\\)?"
6040 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)")
6041 "Regular expression to match for a valid BS2000 file name.")
6042
6043(defcustom ange-ftp-bs2000-additional-pubsets
6044 nil
6045 "*List of additional pubsets available to all users."
6046 :group 'ange-ftp
33ceea4f 6047 :type '(repeat string))
9c35d706
RS
6048
6049;; These parsing functions are as general as possible because the syntax
6050;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that
6051;; the BS2000 filename syntax is so rigid.
6052
6053;; Extract the next filename from a BS2000 dired-like listing.
6054(defun ange-ftp-parse-bs2000-filename ()
6055 (if (re-search-forward ange-ftp-bs2000-filename-regexp nil t)
e3441f42 6056 (match-string 2)))
9c35d706
RS
6057
6058;; Parse the current buffer which is assumed to be in (some) BS2000 FTP dir
6059;; format, and return a hashtable as the result.
6060(defun ange-ftp-parse-bs2000-listing ()
6e85ef5f 6061 (let ((tbl (make-hash-table :test 'equal))
9c35d706
RS
6062 pubset
6063 file)
6064 ;; get current pubset
6065 (goto-char (point-min))
6066 (if (re-search-forward ange-ftp-bs2000-filename-pubset-regexp nil t)
e3441f42 6067 (setq pubset (match-string 0)))
9c35d706
RS
6068 ;; add files to hashtable
6069 (goto-char (point-min))
6070 (save-match-data
6071 (while (setq file (ange-ftp-parse-bs2000-filename))
6e85ef5f 6072 (puthash file nil tbl)))
9c35d706 6073 ;; add . and ..
6e85ef5f
SM
6074 (puthash "." t tbl)
6075 (puthash ".." t tbl)
9c35d706
RS
6076 ;; add all additional pubsets, if not listing one of them
6077 (if (not (member pubset ange-ftp-bs2000-additional-pubsets))
d590ea4d
JB
6078 (mapc (lambda (pubset) (puthash pubset t tbl))
6079 ange-ftp-bs2000-additional-pubsets))
9c35d706
RS
6080 tbl))
6081
e3441f42
SM
6082(add-to-list 'ange-ftp-parse-list-func-alist
6083 '(bs2000 . ange-ftp-parse-bs2000-listing))
9c35d706 6084
9c35d706
RS
6085(defun ange-ftp-bs2000-cd-to-posix ()
6086 "cd to POSIX subsystem if the current host matches
e3441f42
SM
6087`ange-ftp-bs2000-posix-host-regexp'. All BS2000 hosts with POSIX subsystem
6088MUST BE EXPLICITLY SET with `ange-ftp-add-bs2000-posix-host' for they cannot
9c35d706 6089be recognized automatically (they are all valid BS2000 hosts too)."
e3441f42 6090 (if (and ange-ftp-this-host (ange-ftp-bs2000-posix-host ange-ftp-this-host))
9c35d706
RS
6091 (progn
6092 ;; change to POSIX:
6093; (ange-ftp-raw-send-cmd proc "cd %POSIX")
e3441f42 6094 (ange-ftp-cd ange-ftp-this-host ange-ftp-this-user "%POSIX")
9c35d706 6095 ;; put new home directory in the expand-dir hashtable.
e3441f42
SM
6096 ;; `ange-ftp-this-host' and `ange-ftp-this-user' are bound in
6097 ;; ange-ftp-get-process.
6098 (puthash (concat ange-ftp-this-host "/" ange-ftp-this-user "/~")
6099 (car (ange-ftp-get-pwd ange-ftp-this-host ange-ftp-this-user))
6e85ef5f 6100 ange-ftp-expand-dir-hashtable))))
9c35d706
RS
6101
6102;; Not available yet:
6103;; ange-ftp-bs2000-delete-file-entry
6104;; ange-ftp-bs2000-add-file-entry
6105;; ange-ftp-bs2000-file-name-as-directory
6106;; ange-ftp-bs2000-make-compressed-filename
6107;; ange-ftp-bs2000-file-name-sans-versions
6108\f
8749abea
GM
6109;;;; ------------------------------------------------------------
6110;;;; Finally provide package.
6111;;;; ------------------------------------------------------------
6112
6113(provide 'ange-ftp)
6114
aa6f7b96 6115;; arch-tag: 2987ef88-cb56-4ec1-87a9-79132572e316
8749abea 6116;;; ange-ftp.el ends here