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