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