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