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