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