Mercurial > emacs
annotate lisp/net/ange-ftp.el @ 42972:41ffbfee5d0b
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 26 Jan 2002 12:06:47 +0000 |
parents | 79af049b102e |
children | 992a5c499b47 |
rev | line source |
---|---|
28210 | 1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
2 | |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3 ;; Copyright (C) 1989,90,91,92,93,94,95,96,98, 2000, 2001 |
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
28210 | 5 |
6 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) | |
7 ;; Maintainer: FSF | |
8 ;; Keywords: comm | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; This package attempts to make accessing files and directories using FTP | |
30 ;; from within GNU Emacs as simple and transparent as possible. A subset of | |
31 ;; the common file-handling routines are extended to interact with FTP. | |
32 | |
33 ;; Usage: | |
34 ;; | |
35 ;; Some of the common GNU Emacs file-handling operations have been made | |
36 ;; FTP-smart. If one of these routines is given a filename that matches | |
37 ;; '/user@host:name' then it will spawn an FTP process connecting to machine | |
38 ;; 'host' as account 'user' and perform its operation on the file 'name'. | |
39 ;; | |
40 ;; For example: if find-file is given a filename of: | |
41 ;; | |
42 ;; /ange@anorman:/tmp/notes | |
43 ;; | |
44 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as | |
45 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the | |
46 ;; contents of that file as if it were on the local filesystem. If ange-ftp | |
47 ;; needs a password to connect then it reads one in the echo area. | |
48 | |
49 ;; Extended filename syntax: | |
50 ;; | |
51 ;; The default extended filename syntax is '/user@host:name', where the | |
52 ;; 'user@' part may be omitted. This syntax can be customised to a certain | |
53 ;; extent by changing ange-ftp-name-format. There are limitations. | |
54 ;; The `host' part has an optional suffix `#port' which may be used to | |
55 ;; specify a non-default port number for the connexion. | |
56 ;; | |
57 ;; If the user part is omitted then ange-ftp generates a default user | |
58 ;; instead whose value depends on the variable ange-ftp-default-user. | |
59 | |
60 ;; Passwords: | |
61 ;; | |
62 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
63 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
64 ;; in a *valid* ~/.netrc file. | |
65 | |
66 ;; Passwords for user "anonymous": | |
67 ;; | |
68 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
69 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
70 ;; controls what happens: if the value of this variable is a string, | |
71 ;; then this is used as the password; if non-nil (the default), then | |
72 ;; the value of `user-mail-address' is used; if nil then the user | |
73 ;; is prompted for a password as normal. | |
74 | |
75 ;; "Dumb" UNIX hosts: | |
76 ;; | |
77 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
78 ;; used. | |
79 ;; | |
80 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
81 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
82 ;; that this change will take effect for the current GNU Emacs session only. | |
83 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
84 ;; machines with similar hostnames have this problem then it is easier to set | |
85 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
86 ;; is unable to automatically recognize dumb unix hosts. | |
87 | |
88 ;; File name completion: | |
89 ;; | |
90 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
91 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
92 ;; Therefore, for very slow connections, it might not save any time. | |
93 | |
94 ;; FTP processes: | |
95 ;; | |
96 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
97 ;; purposes. Some FTP servers will close the connection after a period of | |
98 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
99 ;; the process is needed. | |
100 ;; | |
101 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
102 ;; This should not cause ange-ftp any grief. | |
103 | |
104 ;; Binary file transfers: | |
105 ;; | |
106 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
107 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
108 ;; binary mode is used for that transfer. | |
109 | |
110 ;; Account passwords: | |
111 ;; | |
112 ;; Some FTP servers require an additional password which is sent by the | |
113 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
114 ;; specify an account password by either calling ange-ftp-set-account, or by | |
115 ;; specifying an account token in the .netrc file. If the account password | |
116 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
117 ;; command upon starting the FTP process. | |
118 | |
119 ;; Preloading: | |
120 ;; | |
121 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
122 ;; not the site-load.el file in order for the documentation strings for the | |
123 ;; functions being overloaded to be available. | |
124 | |
125 ;; Status reports: | |
126 ;; | |
127 ;; Most ange-ftp commands that talk to the FTP process output a status | |
128 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
129 ;; of the FTP client's HASH command to display the status of transferring | |
130 ;; files and listing directories. See the documentation for the variables | |
131 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
132 ;; ange-ftp-process-verbose for more details. | |
133 | |
134 ;; Gateways: | |
135 ;; | |
136 ;; Sometimes it is necessary for the FTP process to be run on a different | |
137 ;; machine than the machine running GNU Emacs. This can happen when the | |
138 ;; local machine has restrictions on what hosts it can access. | |
139 ;; | |
140 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
141 ;; machine. The way it works is as follows: | |
142 ;; | |
143 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
144 ;; that doesn't have the access restrictions. | |
145 ;; | |
146 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
147 ;; that matches hosts that can be contacted from running a local ftp | |
148 ;; process, but fails to match hosts that can't be accessed locally. For | |
149 ;; example: | |
150 ;; | |
151 ;; "\\.hp\\.com$\\|^[^.]*$" | |
152 ;; | |
153 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
154 ;; explicit domain in their name, but will fail to match hosts with | |
155 ;; explicit domains or that are specified by their ip address. | |
156 ;; | |
157 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
158 ;; the *same* name between the local machine and the gateway machine. | |
159 ;; This directory is necessary for temporary files created by ange-ftp. | |
160 ;; | |
161 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
162 ;; this directory plus an identifying filename prefix. For example: | |
163 ;; | |
164 ;; "/nfs/hplose/ange/ange-ftp" | |
165 ;; | |
166 ;; where /nfs/hplose/ange is a directory that is shared between the | |
167 ;; gateway machine and the local machine. | |
168 ;; | |
169 ;; The simplest way of getting a ftp process running on the gateway machine | |
170 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
171 ;; can't do this for some reason such as security then points 7 onwards will | |
172 ;; discuss an alternative approach. | |
173 ;; | |
174 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
175 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
176 ;; | |
177 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
178 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
179 ;; rather than logging in using telnet or rlogin. | |
180 ;; | |
181 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
182 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
183 ;; gateway machine then follow the instructions below. | |
184 ;; | |
185 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
186 ;; that lets you log onto the gateway machine. This may be something like | |
187 ;; telnet or rlogin. | |
188 ;; | |
189 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
190 ;; expression that matches the prompt you get when you login to the | |
191 ;; gateway machine. Be very specific here; this regexp must not match | |
192 ;; *anything* in your login banner except this prompt. | |
193 ;; shell-prompt-pattern is far too general as it appears to match some | |
194 ;; login banners from Sun machines. For example: | |
195 ;; | |
196 ;; "^$*$ *" | |
197 ;; | |
198 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
199 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
200 ;; machine. | |
201 ;; | |
202 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
203 ;; that will put the pty connected to the gateway machine into a | |
204 ;; no-echoing mode, and will strip off carriage-returns from output from | |
205 ;; the gateway machine. For example: | |
206 ;; | |
207 ;; "stty -onlcr -echo" | |
208 ;; | |
209 ;; will work on HP-UX machines, whereas: | |
210 ;; | |
211 ;; "stty -echo nl" | |
212 ;; | |
213 ;; appears to work for some Sun machines. | |
214 ;; | |
215 ;; That's all there is to it. | |
216 | |
217 ;; Smart gateways: | |
218 ;; | |
219 ;; If you have a "smart" ftp program that allows you to issue commands like | |
220 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
221 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
222 ;; | |
223 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
224 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
225 ;; connect you directly to the desired destination host: | |
226 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
227 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
228 ;; Leave ange-ftp-gateway-host set to nil. | |
229 ;; Set ange-ftp-smart-gateway to t. | |
230 | |
231 ;; Tips for using ange-ftp: | |
232 ;; | |
233 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
234 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
235 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
236 ;; there is a chance you might connect to an ULTRIX machine (such as | |
237 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
238 ;; the side effect that dired will have problems with symlinks whose names | |
239 ;; end in an @. If you get yourself into this situation then editing | |
240 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
241 ;; | |
242 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
243 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
244 ;; then setting the appropriate host-type regexp | |
245 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
246 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
247 ;; ange-ftp's inability to recognize the host-type as a bug. | |
248 ;; | |
249 ;; 3. For slow connections, you might get "listing unreadable" error | |
250 ;; messages, or get an empty buffer for a file that you know has something | |
251 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
252 ;; Its default value is 5 which is plenty for reasonable connections. | |
253 ;; However, for some transatlantic connections I set this to 20. | |
254 ;; | |
255 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
256 ;; copying the file to the local machine, compressing it there, and then | |
257 ;; sending it back. Binary file transfers between machines of different | |
258 ;; architectures can be a risky business. Test things out first on some | |
259 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
260 ;; moving them through the local machine. Again, be careful when doing | |
261 ;; this with binary files on non-Unix machines. | |
262 ;; | |
263 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
264 ;; (list of dired commands for which confirmation is not asked). You | |
265 ;; might want to reconsider your setting of this variable, because you | |
266 ;; might want confirmation for more commands on remote direds than on | |
267 ;; local direds. For example, I strongly recommend that you not include | |
268 ;; compress and uncompress in this list. If there is enough demand it | |
269 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
270 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
271 ;; is a list of commands for which confirmation would be suppressed. Then | |
272 ;; remote dired listings would take their (buffer-local) value of | |
273 ;; dired-no-confirm from this alist. Who votes for this? | |
274 | |
275 ;; --------------------------------------------------------------------- | |
276 ;; Non-UNIX support: | |
277 ;; --------------------------------------------------------------------- | |
278 | |
279 ;; VMS support: | |
280 ;; | |
281 ;; Ange-ftp has full support for VMS hosts. It | |
282 ;; should be able to automatically recognize any VMS machine. However, if it | |
283 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
284 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
285 ;; would be grateful if you would report any failures to automatically | |
286 ;; recognize a VMS host as a bug. | |
287 ;; | |
288 ;; Filename Syntax: | |
289 ;; | |
290 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
291 ;; UNIX-y way. For example: | |
292 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
293 ;; would be entered as: | |
294 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
295 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
296 ;; [.CSV.POLICY]RULES.MEM | |
297 ;; you would type: | |
298 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
299 ;; | |
300 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
301 ;; where FILE can be up to 39 characters | |
302 ;; TYPE can be up to 39 characters | |
303 ;; ## is a version number (an integer between 1 and 32,767) | |
304 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
305 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
306 ;; character. | |
307 ;; | |
308 ;; Tips: | |
309 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
310 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
311 ;; case letters. | |
312 ;; 2. To access the latest version of file under VMS, you use the filename | |
313 ;; without the ";" and version number. You should always edit the latest | |
314 ;; version of a file. If you want to edit an earlier version, copy it to a | |
315 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
316 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
317 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
318 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
319 ;; that VMS will not allow you to save the file because it will refuse to | |
320 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
321 ;; attach the buffer to this file. To get out of this situation, M-x | |
322 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
323 ;; latest version of the file. For this reason, in dired "f" | |
324 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
325 ;; (dired-view-file), always loads the explicit version number. The | |
326 ;; reasoning being that it reasonable to view old versions of a file, but | |
327 ;; not to edit them. | |
328 ;; 3. EMACS has a feature in which it does environment variable substitution | |
329 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
330 ;; by typing $$. | |
331 | |
332 ;; MTS support: | |
333 ;; | |
334 ;; Ange-ftp has full support for hosts running | |
335 ;; the Michigan terminal system. It should be able to automatically | |
336 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
337 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
338 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
339 ;; would report any failures to automatically recognize a MTS host as a bug. | |
340 ;; | |
341 ;; Filename syntax: | |
30459 | 342 ;; |
28210 | 343 ;; MTS filenames are entered in a UNIX-y way. For example, if your account |
344 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
345 ;; entered as | |
346 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
347 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
348 ;; to access a file in another account, you must have access permission for | |
349 ;; it. If FILE were in your own account, then you could enter it in a | |
350 ;; relative name fashion as | |
351 ;; /YYYY@mtsg.ubc.ca:FILE | |
352 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
353 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
354 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
355 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
356 ;; is. | |
357 | |
358 ;; CMS support: | |
30459 | 359 ;; |
28210 | 360 ;; Ange-ftp has full support for hosts running |
361 ;; CMS. It should be able to automatically recognize any CMS machine. | |
362 ;; However, if it fails to do this, you can use the command | |
363 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
364 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
365 ;; would report any failures to automatically recognize a CMS host as a bug. | |
30459 | 366 ;; |
28210 | 367 ;; Filename syntax: |
368 ;; | |
369 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
370 ;; treated as UNIX directories. For example to access the file READ.ME in | |
371 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
372 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
373 ;; If *.301 is the default minidisk for this account, you could access | |
374 ;; FOO.BAR on this minidisk as | |
375 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
376 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
377 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
378 ;; case, and hence must be entered as such. | |
379 ;; | |
380 ;; Tips: | |
381 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
382 ;; need an account password. To have ange-ftp send an account password, | |
383 ;; you can either include it in your .netrc file, or use | |
384 ;; ange-ftp-set-account. | |
385 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
386 ;; can fix this. | |
387 ;; | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
388 ;; BS2000 support: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
389 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
390 ;; Ange-ftp has full support for BS2000 hosts. It should be able to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
391 ;; automatically recognize any BS2000 machine. However, if it fails to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
392 ;; do this, you can use the command ange-ftp-add-bs2000-host. As well, |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
393 ;; you can set the variable ange-ftp-bs2000-host-regexp in your .emacs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
394 ;; file. We would be grateful if you would report any failures to auto- |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
395 ;; matically recognize a BS2000 host as a bug. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
396 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
397 ;; If you want to access the POSIX subsystem on BS2000 you MUST use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
398 ;; command ange-ftp-add-bs2000-posix-host for that particular |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
399 ;; hostname. ange-ftp can't decide if you want to access the native |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
400 ;; filesystem or the POSIX filesystem, so it accesses the native |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
401 ;; filesystem by default. And if you have an ASCII filesystem in |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
402 ;; your BS2000 POSIX subsystem you must use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
403 ;; ange-ftp-binary-file-name-regexp to access its files. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
404 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
405 ;; Filename Syntax: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
406 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
407 ;; For ease of *implementation*, the user enters the BS2000 filename |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
408 ;; syntax in a UNIX-y way. For example: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
409 ;; :PUB:$PUBLIC.ANONYMOUS.SDSCPUB.NEXT.README.TXT |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
410 ;; would be entered as: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
411 ;; /:PUB:/$$PUBLIC/ANONYMOUS.SDSCPUB.NEXT.README.TXT |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
412 ;; You dont't have to type pubset and account, if they have default values, |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
413 ;; i.e. to log in as anonymous on bs2000.anywhere.com and grab the file |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
414 ;; IMPORTANT.TEXT.ON.BS2000 on the default pubset X on userid PUBLIC |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
415 ;; (there are only 8 characters in a valid username), you could type: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
416 ;; C-x C-f /public@bs2000.anywhere.com:/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
417 ;; or |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
418 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/$$PUBLIC/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
419 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
420 ;; If X is not your default pubset, you could add it as 'subdirectory' (BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
421 ;; has a flat architecture) with the command |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
422 ;; (setq ange-ftp-bs2000-additional-pubsets '(":X:")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
423 ;; and then you could type: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
424 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
425 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
426 ;; Valid characters in an BS2000 filename are A-Z 0-9 $ # @ . - |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
427 ;; If the first character in a filename is # or @, this is replaced with |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
428 ;; ange-ftp-bs2000-special-prefix because names starting with # or @ |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
429 ;; are reserved for temporary files. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
430 ;; This is especially important for auto-save files. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
431 ;; Valid file generations are ending with ([+|-|*]0-9...) . |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
432 ;; File generations are not supported yet! |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
433 ;; A filename must at least contain one character (A-Z) and cannot be longer |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
434 ;; than 41 characters. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
435 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
436 ;; Tips: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
437 ;; 1. Although BS2000 is not case sensitive, EMACS running under UNIX is. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
438 ;; Therefore, to access a BS2000 file, you must enter the filename with |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
439 ;; upper case letters. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
440 ;; 2. EMACS has a feature in which it does environment variable substitution |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
441 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
442 ;; by typing $$. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
443 ;; 3. BS2000 machines, with the exception of anonymous accounts, nearly |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
444 ;; always need an account password. To have ange-ftp send an account |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
445 ;; password, you can either include it in your .netrc file, or use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
446 ;; ange-ftp-set-account. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
447 ;; |
28210 | 448 ;; ------------------------------------------------------------------ |
449 ;; Bugs: | |
450 ;; ------------------------------------------------------------------ | |
30459 | 451 ;; |
28210 | 452 ;; 1. Umask problems: |
453 ;; Be warned that files created by using ange-ftp will take account of the | |
454 ;; umask of the ftp daemon process rather than the umask of the creating | |
455 ;; user. This is particularly important when logging in as the root user. | |
456 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
457 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
458 ;; suspect that there is something similar on other systems. | |
459 ;; | |
460 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
461 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
462 ;; machines cause this problem for some FTP clients. Using | |
463 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
464 ;; should get things back in sync. | |
465 ;; | |
466 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
467 ;; you provide a valid filename for the remote operating system. | |
468 ;; If you do not, then the remote FTP server will most likely | |
469 ;; translate your filename in some way. This may cause ange-ftp to | |
470 ;; get confused about what exactly is the name of the file. The | |
471 ;; most common causes of this are using lower case filenames on systems | |
472 ;; which support only upper case, and using filenames which are too | |
473 ;; long. | |
474 ;; | |
475 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
476 ;; | |
477 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
478 ;; for some reason creates a FTP process that only talks via pipes then | |
479 ;; ange-ftp won't be getting the information it requires at the time that | |
480 ;; it wants it since pipes flush at different times to pty's. One | |
481 ;; disgusting way around this problem is to talk to the FTP process via | |
482 ;; rlogin which does the 'right' things with pty's. | |
483 ;; | |
484 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
485 ;; worried about this too much. Eventually, we should have some caching | |
486 ;; of the current minidisk. | |
30459 | 487 ;; |
28210 | 488 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as |
489 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
490 ;; to it. This is (understandably) beyond ange-ftp. | |
491 ;; | |
492 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
493 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
494 ;; will use binary mode for the copy. Between systems of different | |
495 ;; architecture, this still may not be enough to guarantee the integrity | |
496 ;; of binary files. Binary file transfers from VMS machines are | |
497 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
498 ;; an alist of OS type, regexp pairs? | |
499 ;; | |
500 ;; 9. The code to do compression of files over ftp is not as careful as it | |
501 ;; should be. It deletes the old remote version of the file, before | |
502 ;; actually checking if the local to remote transfer of the compressed | |
503 ;; file succeeds. Of course to delete the original version of the file | |
504 ;; after transferring the compressed version back is also dangerous, | |
505 ;; because some OS's have severe restrictions on the length of filenames, | |
506 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
507 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
508 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
509 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
510 ;; Suggestions? | |
511 ;; | |
512 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
513 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
514 ;; I don't know how to get ange-ftp work to around it. | |
515 ;; | |
516 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
517 ;; containing spaces, but beware that the remote ftpd may not like them | |
518 ;; much. | |
519 ;; | |
520 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
521 ;; It needs to be reimplemented by modifying the parse-...-listing | |
522 ;; functions to convert the directory listing to ls -l format. | |
30459 | 523 ;; |
28210 | 524 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks |
525 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
526 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
527 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
528 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
529 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
530 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
531 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
532 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
533 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
534 | |
535 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
536 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
537 ;; below. Ideas and constructive comments are especially welcome. | |
538 | |
539 ;; ange-ftp-lovers: | |
540 ;; | |
541 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
542 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
543 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
544 ;; the mailing list. | |
545 | |
546 ;; [The following information about lists may be obsolete.] | |
547 | |
548 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
549 ;; list, please mail one of the following addresses: | |
550 ;; | |
551 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
552 ;; or | |
553 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
554 ;; | |
555 ;; Please don't forget the -request part. | |
556 ;; | |
557 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
558 ;; following addresses: | |
30459 | 559 ;; |
28210 | 560 ;; ange-ftp-lovers@anorman.hpl.hp.com |
561 ;; or | |
562 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
563 ;; | |
564 ;; Alternatively, there is a mailing list that only gets announcements of new | |
565 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
566 ;; subscribed to by e-mailing to the -request address as above. Please make | |
567 ;; it clear in the request which mailing list you wish to join. | |
568 | |
569 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
570 ;; | |
571 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
572 | |
573 ;; ----------------------------------------------------------- | |
574 ;; Technical information on this package: | |
575 ;; ----------------------------------------------------------- | |
576 | |
577 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
578 ;; which is called by many primitives, and a few non-primitives, | |
579 ;; whenever they see a file name of the appropriate sort. | |
580 | |
581 ;; Checklist for adding non-UNIX support for TYPE | |
30459 | 582 ;; |
28210 | 583 ;; The following functions may need TYPE versions: |
584 ;; (not all functions will be needed for every OS) | |
585 ;; | |
586 ;; ange-ftp-fix-name-for-TYPE | |
587 ;; ange-ftp-fix-dir-name-for-TYPE | |
588 ;; ange-ftp-TYPE-host | |
589 ;; ange-ftp-TYPE-add-host | |
590 ;; ange-ftp-parse-TYPE-listing | |
591 ;; ange-ftp-TYPE-delete-file-entry | |
592 ;; ange-ftp-TYPE-add-file-entry | |
593 ;; ange-ftp-TYPE-file-name-as-directory | |
594 ;; ange-ftp-TYPE-make-compressed-filename | |
595 ;; ange-ftp-TYPE-file-name-sans-versions | |
596 ;; | |
597 ;; Variables: | |
598 ;; | |
599 ;; ange-ftp-TYPE-host-regexp | |
600 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
601 ;; | |
602 ;; Check the following functions for OS dependent coding: | |
603 ;; | |
604 ;; ange-ftp-host-type | |
605 ;; ange-ftp-guess-host-type | |
606 ;; ange-ftp-allow-child-lookup | |
607 | |
608 ;; Host type conventions: | |
609 ;; | |
610 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
611 ;; (mostly) follow the following conventions for remote host types. At | |
612 ;; least, I think that future code should try to follow these conventions, | |
613 ;; and the current code should eventually be made compliant. | |
614 ;; | |
615 ;; nil = local host type, whatever that is (probably unix). | |
616 ;; Think nil as in "not a remote host". This value is used by | |
617 ;; ange-ftp-dired-host-type for local buffers. | |
618 ;; | |
619 ;; t = a remote host of unknown type. Think t as in true, it's remote. | |
620 ;; Currently, `unix' is used as the default remote host type. | |
621 ;; Maybe we should use t. | |
622 ;; | |
623 ;; TYPE = a remote host of TYPE type. | |
624 ;; | |
625 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing | |
626 ;; program called list. This is currently only used for Unix | |
627 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
628 ;; is set to `unix:dl'. | |
629 | |
630 ;; Bug report codes: | |
631 ;; | |
632 ;; Because of their naive faith in this code, there are certain situations | |
633 ;; which the writers of this program believe could never happen. However, | |
634 ;; being realists they have put calls to `error' in the program at these | |
635 ;; points. These errors provide a code, which is an integer, greater than 1. | |
636 ;; To aid debugging. the error codes, and the functions in which they reside | |
637 ;; are listed below. | |
30459 | 638 ;; |
28210 | 639 ;; 1: See ange-ftp-ls |
640 ;; | |
641 | |
642 ;; ----------------------------------------------------------- | |
643 ;; Hall of fame: | |
644 ;; ----------------------------------------------------------- | |
30459 | 645 ;; |
28210 | 646 ;; Thanks to Roland McGrath for improving the filename syntax handling, |
647 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
648 ;; | |
649 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
650 ;; | |
651 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
652 ;; dired / shell auto-loading. | |
653 ;; | |
654 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
655 ;; bugfixes. | |
656 ;; | |
657 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
658 ;; VOS support, and hostname completion. | |
659 ;; | |
660 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
661 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
662 ;; bugfixes. | |
663 ;; | |
664 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
665 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
666 ;; auto-recognition of the host type. | |
667 ;; | |
668 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
669 ;; | |
670 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
671 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
672 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
673 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
674 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
675 ;; whose names I've forgotten who have helped to debug and fix problems with | |
676 ;; ange-ftp.el. | |
677 | |
678 ;;; Code: | |
679 | |
680 (require 'comint) | |
681 ;; Silence compiler: | |
682 (eval-when-compile | |
683 (require 'dired) | |
684 (defvar comint-last-output-start nil) | |
685 (defvar comint-last-input-start nil) | |
686 (defvar comint-last-input-end nil)) | |
687 | |
688 ;;;; ------------------------------------------------------------ | |
689 ;;;; User customization variables. | |
690 ;;;; ------------------------------------------------------------ | |
691 | |
692 (defgroup ange-ftp nil | |
30459 | 693 "Accessing remote files and directories using FTP |
28210 | 694 made as simple and transparent as possible." |
695 :group 'files | |
696 :prefix "ange-ftp-") | |
697 | |
698 (defcustom ange-ftp-name-format | |
699 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) | |
700 "*Format of a fully expanded remote file name. | |
701 | |
702 This is a list of the form \(REGEXP HOST USER NAME\), | |
703 where REGEXP is a regular expression matching | |
704 the full remote name, and HOST, USER, and NAME are the numbers of | |
705 parenthesized expressions in REGEXP for the components (in that order)." | |
706 :group 'ange-ftp | |
30459 | 707 :type '(list regexp |
28210 | 708 (integer :tag "Host group") |
709 (integer :tag "User group") | |
710 (integer :tag "Name group"))) | |
711 | |
712 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
713 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
714 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
715 | |
716 (defvar ange-ftp-multi-msgs | |
717 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" | |
718 "*Regular expression matching the start of a multiline ftp reply.") | |
719 | |
720 (defvar ange-ftp-good-msgs | |
721 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
722 "*Regular expression matching ftp \"success\" messages.") | |
723 | |
724 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
725 ;; Also CMS machines use a multiline 550- reply to say that you | |
726 ;; don't have write permission. ange-ftp gets into multi-line skip | |
727 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
728 ;; when it gets the 550 line, as it should. | |
729 | |
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
730 ;; RFC2228 "FTP Security Extensions" defines extensions to the FTP |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
731 ;; protocol which involve the client requesting particular |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
732 ;; authentication methods (typically) at connection establishment. Non |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
733 ;; security-aware FTP servers should respond to this with a 500 code, |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
734 ;; which we ignore. |
28210 | 735 (defcustom ange-ftp-skip-msgs |
736 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
737 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
738 "^Data connection \\|" | |
739 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" | |
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
740 "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" |
39533
75cd77e6f1d5
(ange-ftp-skip-msgs): Add 227 and 228 for Long
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
741 "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") |
28210 | 742 "*Regular expression matching ftp messages that can be ignored." |
743 :group 'ange-ftp | |
744 :type 'regexp) | |
745 | |
746 (defcustom ange-ftp-fatal-msgs | |
747 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
748 "^No control connection\\|unknown host\\|^lost connection") | |
749 "*Regular expression matching ftp messages that indicate serious errors. | |
750 | |
751 These mean that the FTP process should (or already has) been killed." | |
752 :group 'ange-ftp | |
753 :type 'regexp) | |
754 | |
755 (defcustom ange-ftp-gateway-fatal-msgs | |
756 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
757 "*Regular expression matching login failure messages from rlogin/telnet." | |
758 :group 'ange-ftp | |
759 :type 'regexp) | |
760 | |
761 (defcustom ange-ftp-xfer-size-msgs | |
762 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
763 "*Regular expression used to determine the number of bytes in a FTP transfer." | |
764 :group 'ange-ftp | |
765 :type 'regexp) | |
766 | |
30459 | 767 (defcustom ange-ftp-tmp-name-template |
28210 | 768 (expand-file-name "ange-ftp" temporary-file-directory) |
769 "*Template used to create temporary files." | |
770 :group 'ange-ftp | |
771 :type 'directory) | |
772 | |
773 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
774 "*Template used to create temporary files when ftp-ing through a gateway. | |
775 | |
776 Files starting with this prefix need to be accessible from BOTH the local | |
777 machine and the gateway machine, and need to have the SAME name on both | |
778 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
779 cross-mounted." | |
780 :group 'ange-ftp | |
781 :type 'directory) | |
782 | |
783 (defcustom ange-ftp-netrc-filename "~/.netrc" | |
784 "*File in .netrc format to search for passwords." | |
785 :group 'ange-ftp | |
786 :type 'file) | |
787 | |
788 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt) | |
789 "*If non-nil avoid checking permissions on the .netrc file." | |
790 :group 'ange-ftp | |
791 :type 'boolean) | |
792 | |
793 (defcustom ange-ftp-default-user nil | |
794 "*User name to use when none is specified in a file name. | |
795 | |
796 If non-nil but not a string, you are prompted for the name. | |
797 If nil, the value of `ange-ftp-netrc-default-user' is used. | |
798 If that is nil too, then your login name is used. | |
799 | |
800 Once a connection to a given host has been initiated, the user name | |
801 and password information for that host are cached and re-used by | |
802 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, | |
803 since setting `ange-ftp-default-user' directly does not affect | |
804 the cached information." | |
805 :group 'ange-ftp | |
806 :type '(choice (const :tag "Default" nil) | |
807 string | |
808 (other :tag "Prompt" t))) | |
809 | |
810 (defcustom ange-ftp-netrc-default-user nil | |
811 "Alternate default user name to use when none is specified. | |
812 | |
813 This variable is set from the `default' command in your `.netrc' file, | |
814 if there is one." | |
815 :group 'ange-ftp | |
816 :type '(choice (const :tag "Default" nil) | |
817 string)) | |
818 | |
819 (defcustom ange-ftp-default-password nil | |
820 "*Password to use when the user name equals `ange-ftp-default-user'." | |
821 :group 'ange-ftp | |
822 :type '(choice (const :tag "Default" nil) | |
823 string)) | |
824 | |
825 (defcustom ange-ftp-default-account nil | |
826 "*Account to use when the user name equals `ange-ftp-default-user'." | |
827 :group 'ange-ftp | |
828 :type '(choice (const :tag "Default" nil) | |
829 string)) | |
830 | |
831 (defcustom ange-ftp-netrc-default-password nil | |
832 "*Password to use when the user name equals `ange-ftp-netrc-default-user'." | |
833 :group 'ange-ftp | |
834 :type '(choice (const :tag "Default" nil) | |
835 string)) | |
836 | |
837 (defcustom ange-ftp-netrc-default-account nil | |
838 "*Account to use when the user name equals `ange-ftp-netrc-default-user'." | |
839 :group 'ange-ftp | |
840 :type '(choice (const :tag "Default" nil) | |
841 string)) | |
842 | |
843 (defcustom ange-ftp-generate-anonymous-password t | |
844 "*If t, use value of `user-mail-address' as password for anonymous ftp. | |
845 | |
846 If a string, then use that string as the password. | |
847 If nil, prompt the user for a password." | |
848 :group 'ange-ftp | |
849 :type '(choice (const :tag "Prompt" nil) | |
850 string | |
851 (other :tag "User address" t))) | |
852 | |
853 (defcustom ange-ftp-dumb-unix-host-regexp nil | |
854 "*If non-nil, regexp matching hosts on which `dir' command lists directory." | |
855 :group 'ange-ftp | |
856 :type '(choice (const :tag "Default" nil) | |
857 string)) | |
858 | |
859 (defcustom ange-ftp-binary-file-name-regexp | |
860 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" | |
861 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|" | |
862 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|" | |
863 "\\.taz$\\|\\.tgz$") | |
864 "*If a file matches this regexp then it is transferred in binary mode." | |
865 :group 'ange-ftp | |
866 :type 'regexp) | |
867 | |
868 (defcustom ange-ftp-gateway-host nil | |
869 "*Name of host to use as gateway machine when local FTP isn't possible." | |
870 :group 'ange-ftp | |
871 :type '(choice (const :tag "Default" nil) | |
872 string)) | |
873 | |
874 (defcustom ange-ftp-local-host-regexp ".*" | |
875 "*Regexp selecting hosts which can be reached directly with ftp. | |
876 | |
877 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
878 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'." | |
879 :group 'ange-ftp | |
880 :type 'regexp) | |
881 | |
882 (defcustom ange-ftp-gateway-program-interactive nil | |
883 "*If non-nil then the gateway program should give a shell prompt. | |
884 | |
885 Both telnet and rlogin do something like this." | |
886 :group 'ange-ftp | |
887 :type 'boolean) | |
888 | |
889 (defcustom ange-ftp-gateway-program remote-shell-program | |
890 "*Name of program to spawn a shell on the gateway machine. | |
891 | |
892 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See | |
893 also the gateway variable above." | |
894 :group 'ange-ftp | |
895 :type '(choice (const "rsh") | |
896 (const "telnet") | |
897 (const "rlogin") | |
898 string)) | |
899 | |
900 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" | |
901 "*Regexp matching prompt after complete login sequence on gateway machine. | |
902 | |
903 A match for this means the shell is now awaiting input. Make this regexp as | |
904 strict as possible; it shouldn't match *anything* at all except the user's | |
905 initial prompt. The above string will fail under most SUN-3's since it | |
906 matches the login banner." | |
907 :group 'ange-ftp | |
908 :type 'regexp) | |
909 | |
910 (defvar ange-ftp-gateway-setup-term-command | |
911 (if (eq system-type 'hpux) | |
912 "stty -onlcr -echo\n" | |
913 "stty -echo nl\n") | |
914 "*Set up terminal after logging in to the gateway machine. | |
915 This command should stop the terminal from echoing each command, and | |
916 arrange to strip out trailing ^M characters.") | |
917 | |
918 (defcustom ange-ftp-smart-gateway nil | |
919 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. | |
920 | |
921 Don't bother telnetting, etc., already connected to desired host transparently, | |
922 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil." | |
923 :group 'ange-ftp | |
924 :type 'boolean) | |
925 | |
926 (defcustom ange-ftp-smart-gateway-port "21" | |
927 "*Port on gateway machine to use when smart gateway is in operation." | |
928 :group 'ange-ftp | |
929 :type 'string) | |
930 | |
931 (defcustom ange-ftp-send-hash t | |
932 "*If non-nil, send the HASH command to the FTP client." | |
933 :group 'ange-ftp | |
934 :type 'boolean) | |
935 | |
936 (defcustom ange-ftp-binary-hash-mark-size nil | |
937 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
938 If nil, this variable will be locally overridden if the FTP client outputs a | |
939 suitable response to the HASH command. If non-nil, this value takes | |
940 precedence over the local value." | |
941 :group 'ange-ftp | |
942 :type '(choice (const :tag "Overridden" nil) | |
943 integer)) | |
944 | |
945 (defcustom ange-ftp-ascii-hash-mark-size 1024 | |
946 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
947 This variable is buffer-local and will be locally overridden if the FTP client | |
948 outputs a suitable response to the HASH command." | |
949 :group 'ange-ftp | |
950 :type 'integer) | |
951 | |
952 (defcustom ange-ftp-process-verbose t | |
953 "*If non-nil then be chatty about interaction with the FTP process." | |
954 :group 'ange-ftp | |
955 :type 'boolean) | |
956 | |
957 (defcustom ange-ftp-ftp-program-name "ftp" | |
958 "*Name of FTP program to run." | |
959 :group 'ange-ftp | |
960 :type 'string) | |
961 | |
962 (defcustom ange-ftp-gateway-ftp-program-name "ftp" | |
963 "*Name of FTP program to run when accessing non-local hosts. | |
964 | |
965 Some AT&T folks claim to use something called `pftp' here." | |
966 :group 'ange-ftp | |
967 :type 'string) | |
968 | |
969 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
970 "*A list of arguments passed to the FTP program when started." | |
971 :group 'ange-ftp | |
972 :type '(repeat string)) | |
973 | |
974 (defcustom ange-ftp-nslookup-program nil | |
30459 | 975 "*If non-nil, this is a string naming the nslookup program." |
28210 | 976 :group 'ange-ftp |
977 :type '(choice (const :tag "None" nil) | |
978 string)) | |
979 | |
980 (defcustom ange-ftp-make-backup-files () | |
981 "*Non-nil means make backup files for \"magic\" remote files." | |
982 :group 'ange-ftp | |
983 :type 'boolean) | |
984 | |
985 (defcustom ange-ftp-retry-time 5 | |
986 "*Number of seconds to wait before retry if file or listing doesn't arrive. | |
987 This might need to be increased for very slow connections." | |
988 :group 'ange-ftp | |
989 :type 'integer) | |
990 | |
991 (defcustom ange-ftp-auto-save 0 | |
992 "If 1, allow ange-ftp files to be auto-saved. | |
993 If 0, inhibit auto-saving of ange-ftp files. | |
994 Don't use any other value." | |
995 :group 'ange-ftp | |
996 :type '(choice (const :tag "Suppress" 0) | |
997 (const :tag "Allow" 1))) | |
998 | |
999 (defcustom ange-ftp-try-passive-mode nil | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1000 "It t, try to use passive mode in ftp, if the client program supports it." |
28210 | 1001 :group 'ange-ftp |
1002 :type 'boolean | |
1003 :version 21.1) | |
1004 | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1005 (defcustom ange-ftp-passive-host-alist nil |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1006 "Alist of FTP servers that need \"passive\" mode. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1007 Each element is of the form (HOSTNAME . SETTING). |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1008 HOSTNAME is a regular expression to match the FTP server host name(s). |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1009 SETTING is \"on\" to turn passive mode on, \"off\" to turn it off, |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1010 or nil meaning don't change it." |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1011 :group 'ange-ftp |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1012 :type '(list (cons regex (choice (const :tag "On" "on") |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1013 (const :tag "Off" "off") |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1014 (const :tag "Don't change" nil)))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1015 :version 21.3) |
28210 | 1016 |
1017 ;;;; ------------------------------------------------------------ | |
1018 ;;;; Hash table support. | |
1019 ;;;; ------------------------------------------------------------ | |
1020 | |
1021 (require 'backquote) | |
1022 | |
1023 (defun ange-ftp-make-hashtable (&optional size) | |
1024 "Make an obarray suitable for use as a hashtable. | |
1025 SIZE, if supplied, should be a prime number." | |
1026 (make-vector (or size 31) 0)) | |
1027 | |
1028 (defun ange-ftp-map-hashtable (fun tbl) | |
1029 "Call FUNCTION on each key and value in HASHTABLE." | |
1030 (mapatoms | |
30459 | 1031 (function |
28210 | 1032 (lambda (sym) |
1033 (funcall fun (get sym 'key) (get sym 'val)))) | |
1034 tbl)) | |
1035 | |
1036 (defmacro ange-ftp-make-hash-key (key) | |
1037 "Convert KEY into a suitable key for a hashtable." | |
30459 | 1038 `(if (stringp ,key) |
1039 ,key | |
1040 (prin1-to-string ,key))) | |
28210 | 1041 |
1042 (defun ange-ftp-get-hash-entry (key tbl) | |
1043 "Return the value associated with KEY in HASHTABLE." | |
1044 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
1045 (and sym (get sym 'val)))) | |
1046 | |
1047 (defun ange-ftp-put-hash-entry (key val tbl) | |
1048 "Record an association between KEY and VALUE in HASHTABLE." | |
1049 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
1050 (put sym 'val val) | |
1051 (put sym 'key key))) | |
1052 | |
1053 (defun ange-ftp-del-hash-entry (key tbl) | |
1054 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
1055 (let* ((len (length tbl)) | |
1056 (new-tbl (ange-ftp-make-hashtable len)) | |
1057 (i (1- len))) | |
1058 (ange-ftp-map-hashtable | |
1059 (function | |
1060 (lambda (k v) | |
1061 (or (equal k key) | |
1062 (ange-ftp-put-hash-entry k v new-tbl)))) | |
1063 tbl) | |
1064 (while (>= i 0) | |
1065 (aset tbl i (aref new-tbl i)) | |
1066 (setq i (1- i))) | |
1067 tbl)) | |
1068 | |
1069 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
1070 "Return whether there is an association for KEY in TABLE." | |
1071 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
1072 | |
1073 (defun ange-ftp-hash-table-keys (tbl) | |
1074 "Return a sorted list of all the active keys in TABLE, as strings." | |
1075 (sort (all-completions "" tbl) | |
1076 (function string-lessp))) | |
1077 | |
1078 ;;;; ------------------------------------------------------------ | |
1079 ;;;; Internal variables. | |
1080 ;;;; ------------------------------------------------------------ | |
1081 | |
1082 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
1083 "Buffer name to hold directory listing data received from ftp process.") | |
1084 | |
1085 (defvar ange-ftp-netrc-modtime nil | |
1086 "Last modified time of the netrc file from file-attributes.") | |
1087 | |
1088 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
1089 "Hash table holding associations between HOST, USER pairs.") | |
1090 | |
1091 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
1092 "Mapping between a HOST, USER pair and a PASSWORD for them. | |
1093 All HOST values should be in lower case.") | |
1094 | |
1095 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
1096 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
1097 | |
1098 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
1099 "Hash table for storing directories and their respective files.") | |
1100 | |
1101 (defvar ange-ftp-inodes-hashtable (ange-ftp-make-hashtable 97) | |
1102 "Hash table for storing file names and their \"inode numbers\".") | |
1103 | |
1104 (defvar ange-ftp-next-inode-number 1 | |
1105 "Next \"inode number\" value. We give each file name a unique number.") | |
1106 | |
1107 (defvar ange-ftp-ls-cache-lsargs nil | |
1108 "Last set of args used by ange-ftp-ls.") | |
1109 | |
1110 (defvar ange-ftp-ls-cache-file nil | |
1111 "Last file passed to ange-ftp-ls.") | |
1112 | |
1113 (defvar ange-ftp-ls-cache-res nil | |
1114 "Last result returned from ange-ftp-ls.") | |
1115 | |
1116 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
1117 | |
1118 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
1119 | |
1120 ;; These are local variables in each FTP process buffer. | |
1121 (defvar ange-ftp-hash-mark-unit nil) | |
1122 (defvar ange-ftp-hash-mark-count nil) | |
1123 (defvar ange-ftp-xfer-size nil) | |
1124 (defvar ange-ftp-process-string nil) | |
1125 (defvar ange-ftp-process-result-line nil) | |
1126 (defvar ange-ftp-process-busy nil) | |
1127 (defvar ange-ftp-process-result nil) | |
1128 (defvar ange-ftp-process-multi-skip nil) | |
1129 (defvar ange-ftp-process-msg nil) | |
1130 (defvar ange-ftp-process-continue nil) | |
1131 (defvar ange-ftp-last-percent nil) | |
1132 | |
1133 ;; These variables are bound by one function and examined by another. | |
1134 ;; Leave them void globally for error checking. | |
1135 (defvar ange-ftp-this-file) | |
1136 (defvar ange-ftp-this-dir) | |
1137 (defvar ange-ftp-this-user) | |
1138 (defvar ange-ftp-this-host) | |
1139 (defvar ange-ftp-this-msg) | |
1140 (defvar ange-ftp-completion-ignored-pattern) | |
1141 (defvar ange-ftp-trample-marker) | |
1142 | |
1143 ;; New error symbols. | |
1144 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
1145 ;; (put 'ftp-error 'error-message "FTP error") | |
1146 | |
1147 ;;; ------------------------------------------------------------ | |
1148 ;;; Enhanced message support. | |
1149 ;;; ------------------------------------------------------------ | |
1150 | |
1151 (defun ange-ftp-message (fmt &rest args) | |
1152 "Display message in echo area, but indicate if truncated. | |
1153 Args are as in `message': a format string, plus arguments to be formatted." | |
1154 (let ((msg (apply (function format) fmt args)) | |
1155 (max (window-width (minibuffer-window)))) | |
1156 (if noninteractive | |
1157 msg | |
1158 (if (>= (length msg) max) | |
1159 ;; Take just the last MAX - 3 chars of the string. | |
1160 (setq msg (concat "> " (substring msg (- 3 max))))) | |
1161 (message "%s" msg)))) | |
1162 | |
1163 (defun ange-ftp-abbreviate-filename (file &optional new) | |
30459 | 1164 "Abbreviate the file name FILE relative to the `default-directory'. |
28210 | 1165 If the optional parameter NEW is given and the non-directory parts match, |
1166 only return the directory part of FILE." | |
1167 (save-match-data | |
1168 (if (and default-directory | |
1169 (string-match (concat "^" | |
1170 (regexp-quote default-directory) | |
1171 ".") file)) | |
1172 (setq file (substring file (1- (match-end 0))))) | |
1173 (if (and new | |
1174 (string-equal (file-name-nondirectory file) | |
1175 (file-name-nondirectory new))) | |
1176 (setq file (file-name-directory file))) | |
1177 (or file "./"))) | |
1178 | |
1179 ;;;; ------------------------------------------------------------ | |
1180 ;;;; User / Host mapping support. | |
1181 ;;;; ------------------------------------------------------------ | |
1182 | |
1183 (defun ange-ftp-set-user (host user) | |
1184 "For a given HOST, set or change the default USER." | |
1185 (interactive "sHost: \nsUser: ") | |
1186 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
1187 | |
1188 (defun ange-ftp-get-user (host) | |
1189 "Given a HOST, return the default USER." | |
1190 (ange-ftp-parse-netrc) | |
1191 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
1192 (or user | |
1193 (prog1 | |
1194 (setq user | |
1195 (cond ((stringp ange-ftp-default-user) | |
1196 ;; We have a default name. Use it. | |
1197 ange-ftp-default-user) | |
1198 (ange-ftp-default-user | |
1199 ;; Ask the user. | |
1200 (let ((enable-recursive-minibuffers t)) | |
1201 (read-string (format "User for %s: " host) | |
1202 (user-login-name)))) | |
1203 (ange-ftp-netrc-default-user) | |
1204 ;; Default to the user's login name. | |
1205 (t | |
1206 (user-login-name)))) | |
1207 (ange-ftp-set-user host user))))) | |
1208 | |
1209 ;;;; ------------------------------------------------------------ | |
1210 ;;;; Password support. | |
1211 ;;;; ------------------------------------------------------------ | |
1212 | |
1213 (defmacro ange-ftp-generate-passwd-key (host user) | |
30459 | 1214 `(concat (downcase ,host) "/" ,user)) |
28210 | 1215 |
1216 (defmacro ange-ftp-lookup-passwd (host user) | |
30459 | 1217 `(ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key ,host ,user) |
1218 ange-ftp-passwd-hashtable)) | |
28210 | 1219 |
1220 (defun ange-ftp-set-passwd (host user passwd) | |
1221 "For a given HOST and USER, set or change the associated PASSWORD." | |
1222 (interactive (list (read-string "Host: ") | |
1223 (read-string "User: ") | |
1224 (read-passwd "Password: "))) | |
1225 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1226 passwd | |
1227 ange-ftp-passwd-hashtable)) | |
1228 | |
1229 (defun ange-ftp-get-host-with-passwd (user) | |
1230 "Given a USER, return a host we know the password for." | |
1231 (ange-ftp-parse-netrc) | |
1232 (catch 'found-one | |
1233 (ange-ftp-map-hashtable | |
1234 (function (lambda (host val) | |
1235 (if (ange-ftp-lookup-passwd host user) | |
1236 (throw 'found-one host)))) | |
1237 ange-ftp-user-hashtable) | |
1238 (save-match-data | |
1239 (ange-ftp-map-hashtable | |
1240 (function | |
1241 (lambda (key value) | |
1242 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1243 (let ((host (substring key 0 (match-beginning 1)))) | |
1244 (if (and (string-equal user (substring key (match-end 1))) | |
1245 value) | |
1246 (throw 'found-one host)))))) | |
1247 ange-ftp-passwd-hashtable)) | |
1248 nil)) | |
1249 | |
1250 (defun ange-ftp-get-passwd (host user) | |
1251 "Return the password for specified HOST and USER, asking user if necessary." | |
1252 (ange-ftp-parse-netrc) | |
1253 | |
1254 ;; look up password in the hash table first; user might have overridden the | |
1255 ;; defaults. | |
1256 (cond ((ange-ftp-lookup-passwd host user)) | |
30459 | 1257 |
28210 | 1258 ;; See if default user and password set. |
1259 ((and (stringp ange-ftp-default-user) | |
1260 ange-ftp-default-password | |
1261 (string-equal user ange-ftp-default-user)) | |
1262 ange-ftp-default-password) | |
30459 | 1263 |
28210 | 1264 ;; See if default user and password set from .netrc file. |
1265 ((and (stringp ange-ftp-netrc-default-user) | |
1266 ange-ftp-netrc-default-password | |
1267 (string-equal user ange-ftp-netrc-default-user)) | |
1268 ange-ftp-netrc-default-password) | |
30459 | 1269 |
28210 | 1270 ;; anonymous ftp password is handled specially since there is an |
1271 ;; unwritten rule about how that is used on the Internet. | |
1272 ((and (or (string-equal user "anonymous") | |
1273 (string-equal user "ftp")) | |
1274 ange-ftp-generate-anonymous-password) | |
1275 (if (stringp ange-ftp-generate-anonymous-password) | |
1276 ange-ftp-generate-anonymous-password | |
1277 user-mail-address)) | |
30459 | 1278 |
28210 | 1279 ;; see if same user has logged in to other hosts; if so then prompt |
1280 ;; with the password that was used there. | |
1281 (t | |
1282 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1283 (passwd (if other | |
30459 | 1284 |
28210 | 1285 ;; found another machine with the same user. |
1286 ;; Try that account. | |
1287 (read-passwd | |
1288 (format "passwd for %s@%s (default same as %s@%s): " | |
1289 user host user other) | |
1290 nil | |
1291 (ange-ftp-lookup-passwd other user)) | |
30459 | 1292 |
28210 | 1293 ;; I give up. Ask the user for the password. |
1294 (read-passwd | |
1295 (format "Password for %s@%s: " user host))))) | |
1296 (ange-ftp-set-passwd host user passwd) | |
1297 passwd)))) | |
1298 | |
1299 ;;;; ------------------------------------------------------------ | |
1300 ;;;; Account support | |
1301 ;;;; ------------------------------------------------------------ | |
1302 | |
1303 ;; Account passwords must be either specified in the .netrc file, or set | |
1304 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1305 ;; check to see whether the FTP process is actually prompting for an account | |
1306 ;; password. | |
30459 | 1307 |
28210 | 1308 (defun ange-ftp-set-account (host user account) |
1309 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1310 (interactive (list (read-string "Host: ") | |
1311 (read-string "User: ") | |
1312 (read-passwd "Account password: "))) | |
1313 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1314 account | |
1315 ange-ftp-account-hashtable)) | |
1316 | |
1317 (defun ange-ftp-get-account (host user) | |
1318 "Given a HOST and USER, return the FTP account." | |
1319 (ange-ftp-parse-netrc) | |
1320 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1321 ange-ftp-account-hashtable) | |
1322 (and (stringp ange-ftp-default-user) | |
1323 (string-equal user ange-ftp-default-user) | |
1324 ange-ftp-default-account) | |
1325 (and (stringp ange-ftp-netrc-default-user) | |
1326 (string-equal user ange-ftp-netrc-default-user) | |
1327 ange-ftp-netrc-default-account))) | |
1328 | |
1329 ;;;; ------------------------------------------------------------ | |
1330 ;;;; ~/.netrc support | |
1331 ;;;; ------------------------------------------------------------ | |
1332 | |
1333 (defun ange-ftp-chase-symlinks (file) | |
1334 "Return the filename that FILE references, following all symbolic links." | |
1335 (let (temp) | |
1336 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1337 (setq file | |
1338 (if (file-name-absolute-p temp) | |
1339 temp | |
1340 (concat (file-name-directory file) temp))))) | |
1341 file) | |
1342 | |
1343 ;; Move along current line looking for the value of the TOKEN. | |
1344 ;; Valid separators between TOKEN and its value are commas and | |
1345 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1346 | |
1347 (defun ange-ftp-parse-netrc-token (token limit) | |
1348 (if (search-forward token limit t) | |
1349 (let (beg) | |
1350 (skip-chars-forward ", \t\r\n" limit) | |
1351 (if (eq (following-char) ?\") ;quoted token value | |
1352 (progn (forward-char 1) | |
1353 (setq beg (point)) | |
1354 (skip-chars-forward "^\"" limit) | |
1355 (forward-char 1) | |
1356 (buffer-substring beg (1- (point)))) | |
1357 (setq beg (point)) | |
1358 (skip-chars-forward "^, \t\r\n" limit) | |
1359 (buffer-substring beg (point)))))) | |
1360 | |
1361 ;; Extract the values for the tokens `machine', `login', | |
1362 ;; `password' and `account' in the current buffer. If successful, | |
1363 ;; record the information found. | |
1364 | |
1365 (defun ange-ftp-parse-netrc-group () | |
1366 (let ((start (point)) | |
1367 (end (save-excursion | |
1368 (if (looking-at "machine\\>") | |
1369 ;; Skip `machine' and the machine name that follows. | |
1370 (progn | |
1371 (skip-chars-forward "^ \t\r\n") | |
1372 (skip-chars-forward " \t\r\n") | |
1373 (skip-chars-forward "^ \t\r\n")) | |
1374 ;; Skip `default'. | |
1375 (skip-chars-forward "^ \t\r\n")) | |
1376 ;; Find start of the next `machine' or `default' | |
1377 ;; or the end of the buffer. | |
1378 (if (re-search-forward "machine\\>\\|default\\>" nil t) | |
1379 (match-beginning 0) | |
1380 (point-max)))) | |
1381 machine login password account) | |
1382 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1383 login (ange-ftp-parse-netrc-token "login" end) | |
1384 password (ange-ftp-parse-netrc-token "password" end) | |
1385 account (ange-ftp-parse-netrc-token "account" end)) | |
1386 (if (and machine login) | |
1387 ;; found a `machine` token. | |
1388 (progn | |
1389 (ange-ftp-set-user machine login) | |
1390 (ange-ftp-set-passwd machine login password) | |
1391 (and account | |
1392 (ange-ftp-set-account machine login account))) | |
1393 (goto-char start) | |
1394 (if (search-forward "default" end t) | |
1395 ;; found a `default' token | |
1396 (progn | |
1397 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1398 password (ange-ftp-parse-netrc-token "password" end) | |
1399 account (ange-ftp-parse-netrc-token "account" end)) | |
1400 (and login | |
1401 (setq ange-ftp-netrc-default-user login)) | |
1402 (and password | |
1403 (setq ange-ftp-netrc-default-password password)) | |
1404 (and account | |
1405 (setq ange-ftp-netrc-default-account account))))) | |
1406 (goto-char end))) | |
1407 | |
1408 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has | |
1409 ;; the correct permissions then extract the \`machine\', \`login\', | |
1410 ;; \`password\' and \`account\' information from within. | |
1411 | |
1412 (defun ange-ftp-parse-netrc () | |
1413 ;; We set this before actually doing it to avoid the possibility | |
1414 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1415 (interactive) | |
1416 (let (file attr) | |
1417 (let ((default-directory "/")) | |
1418 (setq file (ange-ftp-chase-symlinks | |
1419 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1420 (setq attr (ange-ftp-real-file-attributes file))) | |
1421 (if (and attr ; file exists. | |
1422 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1423 (save-match-data | |
1424 (if (or ange-ftp-disable-netrc-security-check | |
1425 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1426 (string-match ".r..------" (nth 8 attr)))) | |
1427 (save-excursion | |
1428 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1429 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1430 ;; with the bit of logic below we should be able to have | |
1431 ;; encrypted .netrc files. | |
1432 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1433 (ange-ftp-real-insert-file-contents file) | |
1434 (setq buffer-file-name file) | |
1435 (setq default-directory (file-name-directory file)) | |
1436 (normal-mode t) | |
1437 (mapcar 'funcall find-file-hooks) | |
1438 (setq buffer-file-name nil) | |
1439 (goto-char (point-min)) | |
1440 (skip-chars-forward " \t\r\n") | |
1441 (while (not (eobp)) | |
1442 (ange-ftp-parse-netrc-group)) | |
1443 (kill-buffer (current-buffer))) | |
1444 (ange-ftp-message "%s either not owned by you or badly protected." | |
1445 ange-ftp-netrc-filename) | |
1446 (sit-for 1)) | |
1447 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1448 | |
1449 ;; Return a list of prefixes of the form 'user@host:' to be used when | |
1450 ;; completion is done in the root directory. | |
1451 | |
1452 (defun ange-ftp-generate-root-prefixes () | |
1453 (ange-ftp-parse-netrc) | |
1454 (save-match-data | |
1455 (let (res) | |
1456 (ange-ftp-map-hashtable | |
1457 (function | |
1458 (lambda (key value) | |
1459 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1460 (let ((host (substring key 0 (match-beginning 1))) | |
1461 (user (substring key (match-end 1)))) | |
1462 (setq res (cons (list (concat user "@" host ":")) | |
1463 res)))))) | |
1464 ange-ftp-passwd-hashtable) | |
1465 (ange-ftp-map-hashtable | |
1466 (function (lambda (host user) | |
1467 (setq res (cons (list (concat host ":")) | |
1468 res)))) | |
1469 ange-ftp-user-hashtable) | |
1470 (or res (list nil))))) | |
1471 | |
1472 ;;;; ------------------------------------------------------------ | |
1473 ;;;; Remote file name syntax support. | |
1474 ;;;; ------------------------------------------------------------ | |
1475 | |
1476 (defmacro ange-ftp-ftp-name-component (n ns name) | |
1477 "Extract the Nth ftp file name component from NS." | |
30459 | 1478 `(let ((elt (nth ,n ,ns))) |
1479 (if (match-beginning elt) | |
1480 (substring ,name (match-beginning elt) (match-end elt))))) | |
28210 | 1481 |
1482 (defvar ange-ftp-ftp-name-arg "") | |
1483 (defvar ange-ftp-ftp-name-res nil) | |
1484 | |
1485 ;; Parse NAME according to `ange-ftp-name-format' (which see). | |
1486 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
1487 (defun ange-ftp-ftp-name (name) | |
1488 (if (string-equal name ange-ftp-ftp-name-arg) | |
1489 ange-ftp-ftp-name-res | |
1490 (setq ange-ftp-ftp-name-arg name | |
1491 ange-ftp-ftp-name-res | |
1492 (save-match-data | |
1493 (if (posix-string-match (car ange-ftp-name-format) name) | |
1494 (let* ((ns (cdr ange-ftp-name-format)) | |
1495 (host (ange-ftp-ftp-name-component 0 ns name)) | |
1496 (user (ange-ftp-ftp-name-component 1 ns name)) | |
1497 (name (ange-ftp-ftp-name-component 2 ns name))) | |
1498 (if (zerop (length user)) | |
1499 (setq user (ange-ftp-get-user host))) | |
1500 (list host user name)) | |
1501 nil))))) | |
1502 | |
1503 ;; Take a FULLNAME that matches according to ange-ftp-name-format and | |
1504 ;; replace the name component with NAME. | |
1505 (defun ange-ftp-replace-name-component (fullname name) | |
1506 (save-match-data | |
1507 (if (posix-string-match (car ange-ftp-name-format) fullname) | |
1508 (let* ((ns (cdr ange-ftp-name-format)) | |
1509 (elt (nth 2 ns))) | |
1510 (concat (substring fullname 0 (match-beginning elt)) | |
1511 name | |
1512 (substring fullname (match-end elt))))))) | |
1513 | |
1514 ;;;; ------------------------------------------------------------ | |
1515 ;;;; Miscellaneous utils. | |
1516 ;;;; ------------------------------------------------------------ | |
1517 | |
1518 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1519 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1520 | |
1521 (defun ange-ftp-repaint-minibuffer () | |
1522 "Clear any existing minibuffer message; let the minibuffer contents show." | |
1523 (message nil)) | |
1524 | |
1525 ;; Return the name of the buffer that collects output from the ftp process | |
1526 ;; connected to the given HOST and USER pair. | |
1527 (defun ange-ftp-ftp-process-buffer (host user) | |
1528 (concat "*ftp " user "@" host "*")) | |
1529 | |
1530 ;; Display the last chunk of output from the ftp process for the given HOST | |
1531 ;; USER pair, and signal an error including MSG in the text. | |
1532 (defun ange-ftp-error (host user msg) | |
1533 (let ((cur (selected-window)) | |
1534 (pop-up-windows t)) | |
1535 (pop-to-buffer | |
1536 (get-buffer-create | |
1537 (ange-ftp-ftp-process-buffer host user))) | |
1538 (goto-char (point-max)) | |
1539 (select-window cur)) | |
1540 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1541 | |
1542 (defun ange-ftp-set-buffer-mode () | |
1543 "Set correct modes for the current buffer if visiting a remote file." | |
1544 (if (and (stringp buffer-file-name) | |
1545 (ange-ftp-ftp-name buffer-file-name)) | |
1546 (auto-save-mode ange-ftp-auto-save))) | |
1547 | |
1548 (defun ange-ftp-kill-ftp-process (&optional buffer) | |
1549 "Kill the FTP process associated with BUFFER (the current buffer, if nil). | |
1550 If the BUFFER's visited filename or default-directory is an ftp filename | |
1551 then kill the related ftp process." | |
1552 (interactive "bKill FTP process associated with buffer: ") | |
1553 (if (null buffer) | |
1554 (setq buffer (current-buffer)) | |
1555 (setq buffer (get-buffer buffer))) | |
1556 (let ((file (or (buffer-file-name buffer) | |
1557 (save-excursion (set-buffer buffer) default-directory)))) | |
1558 (if file | |
1559 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) | |
1560 (if parsed | |
1561 (let ((host (nth 0 parsed)) | |
1562 (user (nth 1 parsed))) | |
1563 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) | |
1564 | |
1565 (defun ange-ftp-quote-string (string) | |
1566 "Quote any characters in STRING that may confuse the ftp process." | |
1567 (apply (function concat) | |
1568 (mapcar (function | |
1569 ;; This is said to be wrong; ftp is said to | |
1570 ;; need quoting only for ", and that by doubling it. | |
1571 ;; But experiment says this kind of quoting is correct | |
1572 ;; when talking to ftp on GNU/Linux systems. | |
1573 (lambda (char) | |
1574 (if (or (<= char ? ) | |
1575 (> char ?\~) | |
1576 (= char ?\") | |
1577 (= char ?\\)) | |
1578 (vector ?\\ char) | |
1579 (vector char)))) | |
1580 string))) | |
1581 | |
1582 (defun ange-ftp-barf-if-not-directory (directory) | |
1583 (or (file-directory-p directory) | |
1584 (signal 'file-error | |
1585 (list "Opening directory" | |
1586 (if (file-exists-p directory) | |
1587 "not a directory" | |
1588 "no such file or directory") | |
1589 directory)))) | |
1590 | |
1591 ;;;; ------------------------------------------------------------ | |
1592 ;;;; FTP process filter support. | |
1593 ;;;; ------------------------------------------------------------ | |
1594 | |
1595 (defun ange-ftp-process-handle-line (line proc) | |
1596 "Look at the given LINE from the ftp process PROC. | |
1597 Try to categorize it into one of four categories: | |
1598 good, skip, fatal, or unknown." | |
1599 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
1600 (setq ange-ftp-xfer-size | |
1601 (ash (string-to-int (substring line | |
1602 (match-beginning 1) | |
1603 (match-end 1))) | |
1604 -10))) | |
1605 ((string-match ange-ftp-skip-msgs line) | |
1606 t) | |
1607 ((string-match ange-ftp-good-msgs line) | |
1608 (setq ange-ftp-process-busy nil | |
1609 ange-ftp-process-result t | |
1610 ange-ftp-process-result-line line)) | |
1611 ;; Check this before checking for errors. | |
1612 ;; Otherwise the last line of these three seems to be an error: | |
1613 ;; 230-see a significant impact from the move. For those of you who can't | |
1614 ;; 230-use DNS to resolve hostnames and get an error message like | |
1615 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
1616 ((string-match ange-ftp-multi-msgs line) | |
1617 (setq ange-ftp-process-multi-skip t)) | |
1618 ((string-match ange-ftp-fatal-msgs line) | |
1619 (delete-process proc) | |
1620 (setq ange-ftp-process-busy nil | |
1621 ange-ftp-process-result-line line)) | |
1622 (ange-ftp-process-multi-skip | |
1623 t) | |
1624 (t | |
1625 (setq ange-ftp-process-busy nil | |
1626 ange-ftp-process-result-line line)))) | |
1627 | |
1628 (defun ange-ftp-set-xfer-size (host user bytes) | |
1629 "Set the size of the next FTP transfer in bytes." | |
1630 (let ((proc (ange-ftp-get-process host user))) | |
1631 (if proc | |
1632 (let ((buf (process-buffer proc))) | |
1633 (if buf | |
1634 (save-excursion | |
1635 (set-buffer buf) | |
1636 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1637 | |
1638 (defun ange-ftp-process-handle-hash (str) | |
1639 "Remove hash marks from STRING and display count so far." | |
1640 (setq str (concat (substring str 0 (match-beginning 0)) | |
1641 (substring str (match-end 0))) | |
1642 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1643 (match-beginning 0)) | |
1644 ange-ftp-hash-mark-count)) | |
1645 (and ange-ftp-hash-mark-unit | |
1646 ange-ftp-process-msg | |
1647 ange-ftp-process-verbose | |
1648 (not (eq (selected-window) (minibuffer-window))) | |
1649 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1650 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1651 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1652 ange-ftp-hash-mark-count) | |
1653 -6))) | |
1654 (if (zerop ange-ftp-xfer-size) | |
1655 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1656 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1657 ;; cut out the redisplay of identical %-age messages. | |
1658 (if (not (eq percent ange-ftp-last-percent)) | |
1659 (progn | |
1660 (setq ange-ftp-last-percent percent) | |
1661 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1662 str) | |
1663 | |
1664 ;; Call the function specified by CONT. CONT can be either a function | |
1665 ;; or a list of a function and some args. The first two parameters | |
1666 ;; passed to the function will be RESULT and LINE. The remaining args | |
1667 ;; will be taken from CONT if a list was passed. | |
1668 | |
1669 (defun ange-ftp-call-cont (cont result line) | |
1670 (if cont | |
1671 (if (and (listp cont) | |
1672 (not (eq (car cont) 'lambda))) | |
1673 (apply (car cont) result line (cdr cont)) | |
1674 (funcall cont result line)))) | |
1675 | |
1676 ;; Build up a complete line of output from the ftp PROCESS and pass it | |
1677 ;; on to ange-ftp-process-handle-line to deal with. | |
1678 | |
1679 (defun ange-ftp-process-filter (proc str) | |
1680 (let ((buffer (process-buffer proc)) | |
1681 (old-buffer (current-buffer))) | |
1682 | |
1683 ;; Eliminate nulls. | |
1684 (while (string-match "\000+" str) | |
30459 | 1685 (setq str (replace-match "" nil nil str))) |
28210 | 1686 |
1687 ;; see if the buffer is still around... it could have been deleted. | |
1688 (if (buffer-name buffer) | |
1689 (unwind-protect | |
1690 (progn | |
1691 (set-buffer (process-buffer proc)) | |
30459 | 1692 |
28210 | 1693 ;; handle hash mark printing |
1694 (and ange-ftp-process-busy | |
1695 (string-match "^#+$" str) | |
1696 (setq str (ange-ftp-process-handle-hash str))) | |
1697 (comint-output-filter proc str) | |
1698 ;; Replace STR by the result of the comint processing. | |
1699 (setq str (buffer-substring comint-last-output-start | |
1700 (process-mark proc))) | |
1701 (if ange-ftp-process-busy | |
1702 (progn | |
1703 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1704 str)) | |
30459 | 1705 |
28210 | 1706 ;; if we gave an empty password to the USER command earlier |
1707 ;; then we should send a null password now. | |
1708 (if (string-match "Password: *$" ange-ftp-process-string) | |
1709 (send-string proc "\n")))) | |
1710 (while (and ange-ftp-process-busy | |
1711 (string-match "\n" ange-ftp-process-string)) | |
1712 (let ((line (substring ange-ftp-process-string | |
1713 0 | |
1714 (match-beginning 0)))) | |
1715 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1716 (match-end 0))) | |
1717 (while (string-match "^ftp> *" line) | |
1718 (setq line (substring line (match-end 0)))) | |
1719 (ange-ftp-process-handle-line line proc))) | |
1720 | |
1721 ;; has the ftp client finished? if so then do some clean-up | |
1722 ;; actions. | |
1723 (if (not ange-ftp-process-busy) | |
1724 (progn | |
1725 ;; reset the xfer size | |
1726 (setq ange-ftp-xfer-size 0) | |
1727 | |
1728 ;; issue the "done" message since we've finished. | |
1729 (if (and ange-ftp-process-msg | |
1730 ange-ftp-process-verbose | |
1731 ange-ftp-process-result) | |
1732 (progn | |
1733 (ange-ftp-message "%s...done" ange-ftp-process-msg) | |
1734 (ange-ftp-repaint-minibuffer) | |
1735 (setq ange-ftp-process-msg nil))) | |
30459 | 1736 |
28210 | 1737 ;; is there a continuation we should be calling? if so, |
1738 ;; we'd better call it, making sure we only call it once. | |
1739 (if ange-ftp-process-continue | |
1740 (let ((cont ange-ftp-process-continue)) | |
1741 (setq ange-ftp-process-continue nil) | |
1742 (ange-ftp-call-cont cont | |
1743 ange-ftp-process-result | |
1744 ange-ftp-process-result-line)))))) | |
1745 (set-buffer old-buffer))))) | |
1746 | |
1747 (defun ange-ftp-process-sentinel (proc str) | |
1748 "When ftp process changes state, nuke all file-entries in cache." | |
1749 (let ((name (process-name proc))) | |
1750 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) | |
1751 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
1752 (host (substring name (match-beginning 2) (match-end 2)))) | |
1753 (ange-ftp-wipe-file-entries host user)))) | |
1754 (setq ange-ftp-ls-cache-file nil)) | |
1755 | |
1756 ;;;; ------------------------------------------------------------ | |
1757 ;;;; Gateway support. | |
1758 ;;;; ------------------------------------------------------------ | |
1759 | |
1760 (defun ange-ftp-use-gateway-p (host) | |
1761 "Returns whether to access this host via a normal (non-smart) gateway." | |
1762 ;; yes, I know that I could simplify the following expression, but it is | |
1763 ;; clearer (to me at least) this way. | |
1764 (and (not ange-ftp-smart-gateway) | |
1765 (save-match-data | |
1766 (not (string-match ange-ftp-local-host-regexp host))))) | |
1767 | |
1768 (defun ange-ftp-use-smart-gateway-p (host) | |
1769 "Returns whether to access this host via a smart gateway." | |
1770 (and ange-ftp-smart-gateway | |
1771 (save-match-data | |
1772 (not (string-match ange-ftp-local-host-regexp host))))) | |
1773 | |
1774 | |
1775 ;;; ------------------------------------------------------------ | |
1776 ;;; Temporary file location and deletion... | |
1777 ;;; ------------------------------------------------------------ | |
1778 | |
1779 (defun ange-ftp-make-tmp-name (host) | |
1780 "This routine will return the name of a new file." | |
1781 (make-temp-file (if (ange-ftp-use-gateway-p host) | |
1782 ange-ftp-gateway-tmp-name-template | |
1783 ange-ftp-tmp-name-template))) | |
1784 | |
1785 (defalias 'ange-ftp-del-tmp-name 'delete-file) | |
1786 | |
1787 ;;;; ------------------------------------------------------------ | |
1788 ;;;; Interactive gateway program support. | |
1789 ;;;; ------------------------------------------------------------ | |
1790 | |
1791 (defvar ange-ftp-gwp-running t) | |
1792 (defvar ange-ftp-gwp-status nil) | |
1793 | |
1794 (defun ange-ftp-gwp-sentinel (proc str) | |
1795 (setq ange-ftp-gwp-running nil)) | |
1796 | |
1797 (defun ange-ftp-gwp-filter (proc str) | |
1798 (comint-output-filter proc str) | |
1799 (save-excursion | |
1800 (set-buffer (process-buffer proc)) | |
1801 ;; Replace STR by the result of the comint processing. | |
1802 (setq str (buffer-substring comint-last-output-start (process-mark proc)))) | |
1803 (cond ((string-match "login: *$" str) | |
1804 (send-string proc | |
1805 (concat | |
1806 (let ((ange-ftp-default-user t)) | |
1807 (ange-ftp-get-user ange-ftp-gateway-host)) | |
1808 "\n"))) | |
1809 ((string-match "Password: *$" str) | |
1810 (send-string proc | |
1811 (concat | |
1812 (ange-ftp-get-passwd ange-ftp-gateway-host | |
1813 (ange-ftp-get-user | |
1814 ange-ftp-gateway-host)) | |
1815 "\n"))) | |
1816 ((string-match ange-ftp-gateway-fatal-msgs str) | |
1817 (delete-process proc) | |
1818 (setq ange-ftp-gwp-running nil)) | |
1819 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1820 (setq ange-ftp-gwp-running nil | |
1821 ange-ftp-gwp-status t)))) | |
1822 | |
1823 (defun ange-ftp-gwp-start (host user name args) | |
1824 "Login to the gateway machine and fire up an ftp process." | |
1825 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
1826 ;; It would be nice to make process-connection-type nil, | |
1827 ;; but that doesn't work: ftp never responds. | |
1828 ;; Can anyone find a fix for that? | |
1829 (proc (let ((process-connection-type t)) | |
1830 (start-process name name | |
1831 ange-ftp-gateway-program | |
1832 ange-ftp-gateway-host))) | |
1833 (ftp (mapconcat (function identity) args " "))) | |
1834 (process-kill-without-query proc) | |
1835 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1836 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
1837 (save-excursion | |
1838 (set-buffer (process-buffer proc)) | |
1839 (goto-char (point-max)) | |
1840 (set-marker (process-mark proc) (point))) | |
1841 (setq ange-ftp-gwp-running t | |
1842 ange-ftp-gwp-status nil) | |
1843 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1844 (while ange-ftp-gwp-running ;perform login sequence | |
1845 (accept-process-output proc)) | |
1846 (if (not ange-ftp-gwp-status) | |
1847 (ange-ftp-error host user "unable to login to gateway")) | |
1848 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1849 (setq ange-ftp-gwp-running t | |
1850 ange-ftp-gwp-status nil) | |
1851 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1852 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1853 (accept-process-output proc)) | |
1854 (if (not ange-ftp-gwp-status) | |
1855 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1856 (setq ange-ftp-gwp-running t | |
1857 ange-ftp-gwp-status nil) | |
1858 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1859 proc)) | |
1860 | |
1861 ;;;; ------------------------------------------------------------ | |
1862 ;;;; Support for sending commands to the ftp process. | |
1863 ;;;; ------------------------------------------------------------ | |
1864 | |
1865 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1866 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1867 MSG is an optional message to output before and after the command. | |
30459 | 1868 If CONT is non-nil then it is either a function or a list of function |
1869 and some arguments. The function will be called when the ftp command | |
1870 has completed. | |
1871 If CONT is nil then this routine will return \(RESULT . LINE\) where RESULT | |
28210 | 1872 is whether the command was successful, and LINE is the line from the FTP |
1873 process that caused the command to complete. | |
1874 If NOWAIT is given then the routine will return immediately the command has | |
1875 been queued with no result. CONT will still be called, however." | |
1876 (if (memq (process-status proc) '(run open)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
1877 (with-current-buffer (process-buffer proc) |
28210 | 1878 (ange-ftp-wait-not-busy proc) |
1879 (setq ange-ftp-process-string "" | |
1880 ange-ftp-process-result-line "" | |
1881 ange-ftp-process-busy t | |
1882 ange-ftp-process-result nil | |
1883 ange-ftp-process-multi-skip nil | |
1884 ange-ftp-process-msg msg | |
1885 ange-ftp-process-continue cont | |
1886 ange-ftp-hash-mark-count 0 | |
1887 ange-ftp-last-percent -1 | |
1888 cmd (concat cmd "\n")) | |
1889 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1890 (goto-char (point-max)) | |
1891 (move-marker comint-last-input-start (point)) | |
1892 ;; don't insert the password into the buffer on the USER command. | |
1893 (save-match-data | |
1894 (if (string-match "^user \"[^\"]*\"" cmd) | |
1895 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1896 (insert cmd))) | |
1897 (move-marker comint-last-input-end (point)) | |
1898 (send-string proc cmd) | |
1899 (set-marker (process-mark proc) (point)) | |
1900 (if nowait | |
1901 nil | |
1902 (ange-ftp-wait-not-busy proc) | |
1903 (if cont | |
1904 nil ;cont has already been called | |
1905 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1906 | |
1907 ;; Wait for the ange-ftp process PROC not to be busy. | |
1908 (defun ange-ftp-wait-not-busy (proc) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
1909 (with-current-buffer (process-buffer proc) |
28210 | 1910 (condition-case nil |
1911 ;; This is a kludge to let user quit in case ftp gets hung. | |
1912 ;; It matters because this function can be called from the filter. | |
1913 ;; It is bad to allow quitting in a filter, but getting hung | |
1914 ;; is worse. By binding quit-flag to nil, we might avoid | |
1915 ;; most of the probability of getting screwed because the user | |
1916 ;; wants to quit some command. | |
1917 (let ((quit-flag nil) | |
1918 (inhibit-quit nil)) | |
1919 (while ange-ftp-process-busy | |
1920 (accept-process-output proc))) | |
1921 (quit | |
1922 ;; If the user does quit out of this, | |
1923 ;; kill the process. That stops any transfer in progress. | |
1924 ;; The next operation will open a new ftp connection. | |
1925 (delete-process proc) | |
1926 (signal 'quit nil))))) | |
1927 | |
1928 (defun ange-ftp-nslookup-host (host) | |
1929 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1930 (interactive "sHost: ") | |
1931 (if ange-ftp-nslookup-program | |
1932 (let ((default-directory | |
1933 (if (file-accessible-directory-p default-directory) | |
1934 default-directory | |
1935 exec-directory)) | |
1936 ;; It would be nice to make process-connection-type nil, | |
1937 ;; but that doesn't work: ftp never responds. | |
1938 ;; Can anyone find a fix for that? | |
1939 (proc (let ((process-connection-type t)) | |
1940 (start-process " *nslookup*" " *nslookup*" | |
1941 ange-ftp-nslookup-program host))) | |
1942 (res host)) | |
1943 (process-kill-without-query proc) | |
1944 (save-excursion | |
1945 (set-buffer (process-buffer proc)) | |
1946 (while (memq (process-status proc) '(run open)) | |
1947 (accept-process-output proc)) | |
1948 (goto-char (point-min)) | |
1949 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1950 (setq res (buffer-substring (match-beginning 1) | |
1951 (match-end 1)))) | |
1952 (kill-buffer (current-buffer))) | |
1953 res) | |
1954 host)) | |
1955 | |
1956 (defun ange-ftp-start-process (host user name) | |
1957 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1958 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1959 on the gateway machine to do the ftp instead." | |
1960 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
1961 (use-smart-ftp (and (not ange-ftp-gateway-host) | |
1962 (ange-ftp-use-smart-gateway-p host))) | |
1963 (ftp-prog (if (or use-gateway | |
30459 | 1964 use-smart-ftp) |
28210 | 1965 ange-ftp-gateway-ftp-program-name |
1966 ange-ftp-ftp-program-name)) | |
1967 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
1968 ;; Without the following binding, ange-ftp-start-process | |
1969 ;; recurses on file-accessible-directory-p, since it needs to | |
1970 ;; restart its process in order to determine anything about | |
1971 ;; default-directory. | |
1972 (file-name-handler-alist) | |
1973 (default-directory | |
1974 (if (file-accessible-directory-p default-directory) | |
1975 default-directory | |
1976 exec-directory)) | |
1977 proc) | |
1978 ;; It would be nice to make process-connection-type nil, | |
1979 ;; but that doesn't work: ftp never responds. | |
1980 ;; Can anyone find a fix for that? | |
1981 (let ((process-connection-type t) | |
1982 (process-environment process-environment) | |
1983 (buffer (get-buffer-create name))) | |
1984 (save-excursion | |
1985 (set-buffer buffer) | |
1986 (internal-ange-ftp-mode)) | |
1987 ;; This tells GNU ftp not to output any fancy escape sequences. | |
1988 (setenv "TERM" "dumb") | |
1989 (if use-gateway | |
1990 (if ange-ftp-gateway-program-interactive | |
1991 (setq proc (ange-ftp-gwp-start host user name args)) | |
1992 (setq proc (apply 'start-process name name | |
1993 (append (list ange-ftp-gateway-program | |
1994 ange-ftp-gateway-host) | |
1995 args)))) | |
1996 (setq proc (apply 'start-process name name args)))) | |
1997 (save-excursion | |
1998 (set-buffer (process-buffer proc)) | |
1999 (goto-char (point-max)) | |
2000 (set-marker (process-mark proc) (point))) | |
2001 (process-kill-without-query proc) | |
2002 (set-process-sentinel proc (function ange-ftp-process-sentinel)) | |
2003 (set-process-filter proc (function ange-ftp-process-filter)) | |
2004 ;; On Windows, the standard ftp client buffers its output (because | |
2005 ;; stdout is a pipe handle) so the startup message may never appear: | |
2006 ;; `accept-process-output' at this point would hang indefinitely. | |
2007 ;; However, sending an innocuous command ("help foo") forces some | |
2008 ;; output that will be ignored, which is just as good. Once we | |
2009 ;; start sending normal commands, the output no longer appears to be | |
2010 ;; buffered, and everything works correctly. My guess is that the | |
2011 ;; output of interest is being sent to stderr which is not buffered. | |
2012 (when (eq system-type 'windows-nt) | |
2013 ;; force ftp output to be treated as DOS text, otherwise the | |
2014 ;; output of "help foo" confuses the EOL detection logic. | |
2015 (set-process-coding-system proc 'raw-text-dos) | |
2016 (process-send-string proc "help foo\n")) | |
2017 (accept-process-output proc) ;wait for ftp startup message | |
2018 proc)) | |
2019 | |
2020 (put 'internal-ange-ftp-mode 'mode-class 'special) | |
2021 | |
2022 (defun internal-ange-ftp-mode () | |
2023 "Major mode for interacting with the FTP process. | |
2024 | |
2025 \\{comint-mode-map}" | |
2026 (interactive) | |
2027 (comint-mode) | |
2028 (setq major-mode 'internal-ange-ftp-mode) | |
2029 (setq mode-name "Internal Ange-ftp") | |
2030 (let ((proc (get-buffer-process (current-buffer)))) | |
2031 (make-local-variable 'ange-ftp-process-string) | |
2032 (setq ange-ftp-process-string "") | |
2033 (make-local-variable 'ange-ftp-process-busy) | |
2034 (make-local-variable 'ange-ftp-process-result) | |
2035 (make-local-variable 'ange-ftp-process-msg) | |
2036 (make-local-variable 'ange-ftp-process-multi-skip) | |
2037 (make-local-variable 'ange-ftp-process-result-line) | |
2038 (make-local-variable 'ange-ftp-process-continue) | |
2039 (make-local-variable 'ange-ftp-hash-mark-count) | |
2040 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
2041 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
2042 (make-local-variable 'ange-ftp-hash-mark-unit) | |
2043 (make-local-variable 'ange-ftp-xfer-size) | |
2044 (make-local-variable 'ange-ftp-last-percent) | |
2045 (setq ange-ftp-hash-mark-count 0) | |
2046 (setq ange-ftp-xfer-size 0) | |
2047 (setq ange-ftp-process-result-line "") | |
2048 | |
2049 (setq comint-prompt-regexp "^ftp> ") | |
2050 (make-local-variable 'comint-password-prompt-regexp) | |
2051 ;; This is a regexp that can't match anything. | |
2052 ;; ange-ftp has its own ways of handling passwords. | |
2053 (setq comint-password-prompt-regexp "^a\\'z") | |
2054 (make-local-variable 'paragraph-start) | |
2055 (setq paragraph-start comint-prompt-regexp))) | |
2056 | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2057 (defcustom ange-ftp-raw-login nil |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2058 "*Use raw ftp commands for login, if account password is not nil. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2059 Some ftp implementations need this, e.g. ftp in NT 4.0." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2060 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2061 :version "21.3" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2062 :type 'boolean) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2063 |
28210 | 2064 (defun ange-ftp-smart-login (host user pass account proc) |
2065 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
2066 PROC is the FTP-client's process. This routine uses the smart-gateway | |
30459 | 2067 host specified in `ange-ftp-gateway-host'." |
28210 | 2068 (let ((result (ange-ftp-raw-send-cmd |
2069 proc | |
2070 (format "open %s %s" | |
2071 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
2072 ange-ftp-smart-gateway-port) | |
2073 (format "Opening FTP connection to %s via %s" | |
2074 host | |
2075 ange-ftp-gateway-host)))) | |
2076 (or (car result) | |
30459 | 2077 (ange-ftp-error host user |
28210 | 2078 (concat "OPEN request failed: " |
2079 (cdr result)))) | |
2080 (setq result (ange-ftp-raw-send-cmd | |
2081 proc (format "user \"%s\"@%s %s %s" | |
2082 user | |
2083 (ange-ftp-nslookup-host host) | |
2084 pass | |
2085 account) | |
2086 (format "Logging in as user %s@%s" | |
2087 user host))) | |
2088 (or (car result) | |
2089 (progn | |
2090 (ange-ftp-set-passwd host user nil) ; reset password | |
2091 (ange-ftp-set-account host user nil) ; reset account | |
2092 (ange-ftp-error host user | |
2093 (concat "USER request failed: " | |
2094 (cdr result))))))) | |
2095 | |
2096 (defun ange-ftp-normal-login (host user pass account proc) | |
2097 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
2098 PROC is the process to the FTP-client. HOST may have an optional | |
2099 suffix of the form #PORT to specify a non-default port" | |
2100 (save-match-data | |
2101 (string-match "^\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host) | |
2102 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host))) | |
2103 (port (match-string 3 host)) | |
2104 (result (ange-ftp-raw-send-cmd | |
2105 proc | |
2106 (if port | |
2107 (format "open %s %s" nshost port) | |
2108 (format "open %s" nshost)) | |
2109 (format "Opening FTP connection to %s" host)))) | |
2110 (or (car result) | |
2111 (ange-ftp-error host user | |
2112 (concat "OPEN request failed: " | |
2113 (cdr result)))) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2114 (if (not (and ange-ftp-raw-login (string< "" account))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2115 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2116 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2117 (if (and (ange-ftp-use-smart-gateway-p host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2118 ange-ftp-gateway-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2119 (format "user \"%s\"@%s %s %s" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2120 user nshost pass account) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2121 (format "user \"%s\" %s %s" user pass account)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2122 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2123 (let ((good ange-ftp-good-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2124 (skip ange-ftp-skip-msgs)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2125 (setq ange-ftp-good-msgs (concat ange-ftp-good-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2126 "\\|^331 \\|^332 ")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2127 (if (string-match (regexp-quote "\\|^331 ") ange-ftp-skip-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2128 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2129 (replace-match "" t t ange-ftp-skip-msgs))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2130 (if (string-match (regexp-quote "\\|^332 ") ange-ftp-skip-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2131 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2132 (replace-match "" t t ange-ftp-skip-msgs))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2133 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2134 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2135 (format "quote \"USER %s\"" user) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2136 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2137 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2138 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2139 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2140 (format "quote \"PASS %s\"" pass) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2141 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2142 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2143 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2144 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2145 (format "quote \"ACCT %s\"" account) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2146 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2147 )) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2148 (setq ange-ftp-good-msgs good |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2149 ange-ftp-skip-msgs skip))) |
28210 | 2150 (or (car result) |
2151 (progn | |
2152 (ange-ftp-set-passwd host user nil) ;reset password. | |
2153 (ange-ftp-set-account host user nil) ;reset account. | |
2154 (ange-ftp-error host user | |
2155 (concat "USER request failed: " | |
2156 (cdr result)))))))) | |
2157 | |
2158 ;; ange@hplb.hpl.hp.com says this should not be changed. | |
2159 (defvar ange-ftp-hash-mark-msgs | |
2160 "[hH]ash mark [^0-9]*\\([0-9]+\\)" | |
2161 "*Regexp matching the FTP client's output upon doing a HASH command.") | |
2162 | |
2163 (defun ange-ftp-guess-hash-mark-size (proc) | |
2164 (if ange-ftp-send-hash | |
2165 (save-excursion | |
2166 (set-buffer (process-buffer proc)) | |
2167 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
2168 (result (car status)) | |
2169 (line (cdr status))) | |
2170 (save-match-data | |
2171 (if (string-match ange-ftp-hash-mark-msgs line) | |
2172 (let ((size (string-to-int | |
2173 (substring line | |
2174 (match-beginning 1) | |
2175 (match-end 1))))) | |
2176 (setq ange-ftp-ascii-hash-mark-size size | |
2177 ange-ftp-hash-mark-unit (ash size -4)) | |
2178 | |
2179 ;; if a default value for this is set, use that value. | |
2180 (or ange-ftp-binary-hash-mark-size | |
2181 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
2182 | |
2183 (defun ange-ftp-get-process (host user) | |
2184 "Return an FTP subprocess connected to HOST and logged in as USER. | |
2185 Create a new process if needed." | |
2186 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
2187 (proc (get-process name))) | |
2188 (if (and proc (memq (process-status proc) '(run open))) | |
2189 proc | |
2190 ;; Must delete dead process so that new process can reuse the name. | |
2191 (if proc (delete-process proc)) | |
2192 (let ((pass (ange-ftp-quote-string | |
2193 (ange-ftp-get-passwd host user))) | |
2194 (account (ange-ftp-quote-string | |
2195 (ange-ftp-get-account host user)))) | |
2196 ;; grab a suitable process. | |
2197 (setq proc (ange-ftp-start-process host user name)) | |
30459 | 2198 |
28210 | 2199 ;; login to FTP server. |
2200 (if (and (ange-ftp-use-smart-gateway-p host) | |
2201 ange-ftp-gateway-host) | |
2202 (ange-ftp-smart-login host user pass account proc) | |
2203 (ange-ftp-normal-login host user pass account proc)) | |
30459 | 2204 |
28210 | 2205 ;; Tell client to send back hash-marks as progress. It isn't usually |
2206 ;; fatal if this command fails. | |
2207 (ange-ftp-guess-hash-mark-size proc) | |
2208 | |
2209 ;; Guess at the host type. | |
2210 (ange-ftp-guess-host-type host user) | |
2211 | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2212 ;; Turn passive mode on or off as requested. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2213 (let* ((case-fold-search t) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2214 (passive |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2215 (or (assoc-default host ange-ftp-passive-host-alist |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2216 'string-match) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2217 (if ange-ftp-try-passive-mode "on")))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2218 (if passive |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2219 (ange-ftp-passive-mode proc passive))) |
28210 | 2220 |
2221 ;; Run any user-specified hooks. Note that proc, host and user are | |
2222 ;; dynamically bound at this point. | |
2223 (run-hooks 'ange-ftp-process-startup-hook)) | |
2224 proc))) | |
2225 | |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2226 (defun ange-ftp-passive-mode (proc on-or-off) |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2227 (if (string-match (concat "Passive mode " on-or-off) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2228 (cdr (ange-ftp-raw-send-cmd |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2229 proc (concat "passive " on-or-off) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2230 "Trying passive mode..." nil))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2231 (ange-ftp-message (concat "Trying passive mode..." on-or-off)) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2232 (error "Trying passive mode...failed"))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2233 |
28210 | 2234 ;; Variables for caching host and host-type |
2235 (defvar ange-ftp-host-cache nil) | |
2236 (defvar ange-ftp-host-type-cache nil) | |
2237 | |
2238 ;; If ange-ftp-host-type is called with the optional user | |
2239 ;; argument, it will attempt to guess the host type by connecting | |
2240 ;; as user, if necessary. For efficiency, I have tried to give this | |
2241 ;; optional second argument only when necessary. Have I missed any calls | |
2242 ;; to ange-ftp-host-type where it should have been supplied? | |
2243 | |
2244 (defun ange-ftp-host-type (host &optional user) | |
2245 "Return a symbol which represents the type of the HOST given. | |
2246 If the optional argument USER is given, attempts to guess the | |
2247 host-type by logging in as USER." | |
2248 (cond ((null host) 'unix) | |
2249 ;; Return `unix' if HOST is nil, since that's the most vanilla | |
2250 ;; possible return value. | |
2251 ((eq host ange-ftp-host-cache) | |
2252 ange-ftp-host-type-cache) | |
2253 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
2254 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
2255 ange-ftp-host-type-cache) | |
2256 (t | |
2257 (setq ange-ftp-host-cache host | |
2258 ange-ftp-host-type-cache | |
2259 (cond ((ange-ftp-dumb-unix-host host) | |
2260 'dumb-unix) | |
2261 ;; ((and (fboundp 'ange-ftp-vos-host) | |
2262 ;; (ange-ftp-vos-host host)) | |
2263 ;; 'vos) | |
2264 ((and (fboundp 'ange-ftp-vms-host) | |
2265 (ange-ftp-vms-host host)) | |
2266 'vms) | |
2267 ((and (fboundp 'ange-ftp-mts-host) | |
2268 (ange-ftp-mts-host host)) | |
2269 'mts) | |
2270 ((and (fboundp 'ange-ftp-cms-host) | |
2271 (ange-ftp-cms-host host)) | |
2272 'cms) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2273 ((and (fboundp 'ange-ftp-bs2000-posix-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2274 (ange-ftp-bs2000-posix-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2275 'text-unix) ; POSIX is a non-ASCII Unix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2276 ((and (fboundp 'ange-ftp-bs2000-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2277 (ange-ftp-bs2000-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2278 'bs2000) |
28210 | 2279 (t |
2280 'unix)))))) | |
2281 | |
2282 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2283 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2284 ;; without sacrificing speed. Also, having separate variables | |
2285 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2286 ;; set an alist to indicate that a host is of a given type. Even with | |
2287 ;; automatic host type recognition, setting a regexp is still a good idea | |
2288 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2289 | |
2290 (defvar ange-ftp-fix-name-func-alist nil | |
2291 "Alist saying how to convert file name to the host's syntax. | |
2292 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
2293 which can change a UNIX file name into a name more suitable for a host of type | |
2294 TYPE.") | |
2295 | |
2296 (defvar ange-ftp-fix-dir-name-func-alist nil | |
2297 "Alist saying how to convert directory name to the host's syntax. | |
2298 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
2299 which can change UNIX directory name into a directory name more suitable | |
2300 for a host of type TYPE.") | |
2301 | |
2302 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2303 ;; *** is only 1 host type that can take ls-style listing options. | |
2304 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2305 "List of host types that can't take UNIX ls-style listing options.") | |
2306 | |
2307 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2308 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2309 MSG is an optional status message to be output before and after issuing the | |
2310 command. | |
30459 | 2311 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT |
28210 | 2312 and NOWAIT." |
2313 ;; Handle conversion to remote file name syntax and remote ls option | |
2314 ;; capability. | |
2315 (let ((cmd0 (car cmd)) | |
2316 (cmd1 (nth 1 cmd)) | |
2317 (ange-ftp-this-user user) | |
2318 (ange-ftp-this-host host) | |
2319 (ange-ftp-this-msg msg) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2320 cmd2 cmd3 host-type fix-name-func result) |
28210 | 2321 |
2322 (cond | |
30459 | 2323 |
28210 | 2324 ;; pwd case (We don't care what host-type.) |
2325 ((null cmd1)) | |
30459 | 2326 |
28210 | 2327 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
2328 ((progn | |
2329 (setq cmd2 (nth 2 cmd) | |
2330 host-type (ange-ftp-host-type host user)) | |
2331 ;; This will trigger an FTP login, if one doesn't exist | |
2332 (eq cmd0 'dir)) | |
2333 (setq cmd1 (funcall | |
2334 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) | |
2335 'identity) | |
2336 cmd1) | |
2337 cmd3 (nth 3 cmd)) | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
2338 ;; Need to deal with the HP-UX ftp bug. This should also allow us to |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
2339 ;; resolve symlinks to directories on SysV machines. (Sebastian will |
28210 | 2340 ;; be happy.) |
2341 (and (eq host-type 'unix) | |
2342 (string-match "/$" cmd1) | |
2343 (not (string-match "R" cmd3)) | |
2344 (setq cmd1 (concat cmd1 "."))) | |
2345 | |
2346 ;; If the dir name contains a space, some ftp servers will | |
2347 ;; refuse to list it. We instead change directory to the | |
2348 ;; directory in question and ls ".". | |
2349 (when (string-match " " cmd1) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2350 ;; Keep the result. In case of failure, we will (see below) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2351 ;; short-circuit CMD and return this result directly. |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2352 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)) |
28210 | 2353 (setq cmd1 ".")) |
2354 | |
2355 ;; If the remote ls can take switches, put them in | |
2356 (or (memq host-type ange-ftp-dumb-host-types) | |
2357 (setq cmd0 'ls | |
2358 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
30459 | 2359 |
28210 | 2360 ;; First argument is the remote name |
2361 ((progn | |
2362 (setq fix-name-func (or (cdr (assq host-type | |
2363 ange-ftp-fix-name-func-alist)) | |
2364 'identity)) | |
2365 (memq cmd0 '(get delete mkdir rmdir cd))) | |
2366 (setq cmd1 (funcall fix-name-func cmd1))) | |
2367 | |
2368 ;; Second argument is the remote name | |
40361
8c6df631e62d
(ange-ftp-send-cmd): Call fix-name-func for
Gerd Moellmann <gerd@gnu.org>
parents:
39888
diff
changeset
|
2369 ((or (memq cmd0 '(append put chmod)) |
8c6df631e62d
(ange-ftp-send-cmd): Call fix-name-func for
Gerd Moellmann <gerd@gnu.org>
parents:
39888
diff
changeset
|
2370 (and (eq cmd0 'quote) (string= cmd1 "mdtm"))) |
28210 | 2371 (setq cmd2 (funcall fix-name-func cmd2))) |
2372 ;; Both arguments are remote names | |
2373 ((eq cmd0 'rename) | |
2374 (setq cmd1 (funcall fix-name-func cmd1) | |
2375 cmd2 (funcall fix-name-func cmd2)))) | |
30459 | 2376 |
2377 ;; Turn the command into one long string | |
28210 | 2378 (setq cmd0 (symbol-name cmd0)) |
2379 (setq cmd (concat cmd0 | |
2380 (and cmd1 (concat " " cmd1)) | |
2381 (and cmd2 (concat " " cmd2)))) | |
2382 | |
2383 ;; Actually send the resulting command. | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2384 (if (and (consp result) (null (car result))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2385 ;; `ange-ftp-cd' has failed, so there's no point sending `cmd'. |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2386 result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2387 (let (afsc-result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2388 afsc-line) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2389 (ange-ftp-raw-send-cmd |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2390 (ange-ftp-get-process host user) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2391 cmd |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2392 msg |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2393 (list (lambda (result line host user cmd msg cont nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2394 (or cont (setq afsc-result result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2395 afsc-line line)) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2396 (if result (ange-ftp-call-cont cont result line) |
30459 | 2397 (ange-ftp-raw-send-cmd |
2398 (ange-ftp-get-process host user) | |
2399 cmd | |
2400 msg | |
2401 (list (lambda (result line cont) | |
2402 (or cont (setq afsc-result result | |
2403 afsc-line line)) | |
2404 (ange-ftp-call-cont cont result line)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2405 cont) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2406 nowait))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2407 host user cmd msg cont nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2408 nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2409 |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2410 (if nowait |
28210 | 2411 nil |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2412 (if cont |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2413 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2414 (cons afsc-result afsc-line))))))) |
28210 | 2415 |
2416 ;; It might be nice to message users about the host type identified, | |
2417 ;; but there is so much other messaging going on, it would not be | |
2418 ;; seen. No point in slowing things down just so users can read | |
2419 ;; a host type message. | |
2420 | |
2421 (defconst ange-ftp-cms-name-template | |
2422 (concat | |
2423 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2424 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
2425 (defconst ange-ftp-vms-name-template | |
2426 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") | |
2427 (defconst ange-ftp-mts-name-template | |
2428 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2429 (defconst ange-ftp-bs2000-filename-pubset-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2430 ":[A-Z0-9]+:" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2431 "Valid pubset for an BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2432 (defconst ange-ftp-bs2000-filename-username-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2433 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2434 "\\$[A-Z0-9]*\\.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2435 "Valid username for an BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2436 (defconst ange-ftp-bs2000-filename-prefix-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2437 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2438 ange-ftp-bs2000-filename-pubset-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2439 ange-ftp-bs2000-filename-username-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2440 "Valid prefix for an BS2000 file name (pubset and user).") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2441 (defconst ange-ftp-bs2000-name-template |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2442 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$")) |
28210 | 2443 |
2444 (defun ange-ftp-guess-host-type (host user) | |
42706 | 2445 "Guess the host type of HOST. |
28210 | 2446 Works by doing a pwd and examining the directory syntax." |
2447 (let ((host-type (ange-ftp-host-type host)) | |
2448 (key (concat host "/" user "/~"))) | |
2449 (if (eq host-type 'unix) | |
2450 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2451 (save-match-data | |
2452 (let* ((result (ange-ftp-get-pwd host user)) | |
2453 (dir (car result)) | |
2454 fix-name-func) | |
2455 (cond ((null dir) | |
2456 (message "Warning! Unable to get home directory") | |
2457 (sit-for 1) | |
2458 (if (string-match | |
2459 "^450 No current working directory defined$" | |
2460 (cdr result)) | |
30459 | 2461 |
28210 | 2462 ;; We'll assume that if pwd bombs with this |
2463 ;; error message, then it's CMS. | |
2464 (progn | |
2465 (ange-ftp-add-cms-host host) | |
2466 (setq ange-ftp-host-cache host | |
2467 ange-ftp-host-type-cache 'cms)))) | |
2468 | |
2469 ;; try for VMS | |
2470 ((string-match ange-ftp-vms-name-template dir) | |
2471 (ange-ftp-add-vms-host host) | |
2472 ;; The add-host functions clear the host type cache. | |
2473 ;; Therefore, need to set the cache afterwards. | |
2474 (setq ange-ftp-host-cache host | |
2475 ange-ftp-host-type-cache 'vms)) | |
2476 | |
2477 ;; try for MTS | |
2478 ((string-match ange-ftp-mts-name-template dir) | |
2479 (ange-ftp-add-mts-host host) | |
2480 (setq ange-ftp-host-cache host | |
2481 ange-ftp-host-type-cache 'mts)) | |
30459 | 2482 |
28210 | 2483 ;; try for CMS |
2484 ((string-match ange-ftp-cms-name-template dir) | |
2485 (ange-ftp-add-cms-host host) | |
2486 (setq ange-ftp-host-cache host | |
2487 ange-ftp-host-type-cache 'cms)) | |
2488 | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2489 ;; try for BS2000-POSIX |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2490 ((ange-ftp-bs2000-posix-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2491 (ange-ftp-add-bs2000-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2492 (setq ange-ftp-host-cache host |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2493 ange-ftp-host-type-cache 'text-unix)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2494 ;; try for BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2495 ((and (string-match ange-ftp-bs2000-name-template dir) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2496 (not (ange-ftp-bs2000-posix-host host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2497 (ange-ftp-add-bs2000-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2498 (setq ange-ftp-host-cache host |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2499 ange-ftp-host-type-cache 'bs2000)) |
28210 | 2500 ;; assume UN*X |
2501 (t | |
2502 (setq ange-ftp-host-cache host | |
2503 ange-ftp-host-type-cache 'unix))) | |
2504 | |
2505 ;; Now that we have done a pwd, might as well put it in | |
2506 ;; the expand-dir hashtable. | |
2507 (let ((ange-ftp-this-user user) | |
2508 (ange-ftp-this-host host)) | |
2509 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache | |
2510 ange-ftp-fix-name-func-alist))) | |
2511 (if fix-name-func | |
2512 (setq dir (funcall fix-name-func dir 'reverse)))) | |
2513 (ange-ftp-put-hash-entry key dir | |
2514 ange-ftp-expand-dir-hashtable)))) | |
2515 | |
2516 ;; In the special case of CMS make sure that know the | |
2517 ;; expansion of the home minidisk now, because we will | |
2518 ;; be doing a lot of cd's. | |
2519 (if (and (eq host-type 'cms) | |
2520 (not (ange-ftp-hash-entry-exists-p | |
2521 key ange-ftp-expand-dir-hashtable))) | |
2522 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2523 (if dir | |
2524 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2525 ange-ftp-expand-dir-hashtable) | |
2526 (message "Warning! Unable to get home directory") | |
2527 (sit-for 1)))))) | |
2528 | |
2529 | |
2530 ;;;; ------------------------------------------------------------ | |
2531 ;;;; Remote file and directory listing support. | |
2532 ;;;; ------------------------------------------------------------ | |
2533 | |
2534 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
2535 ;; to take switch arguments. | |
2536 (defun ange-ftp-dumb-unix-host (host) | |
2537 (and host ange-ftp-dumb-unix-host-regexp | |
2538 (save-match-data | |
2539 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
2540 | |
2541 (defun ange-ftp-add-dumb-unix-host (host) | |
2542 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2543 (interactive | |
2544 (list (read-string "Host: " | |
2545 (let ((name (or (buffer-file-name) default-directory))) | |
2546 (and name (car (ange-ftp-ftp-name name))))))) | |
2547 (if (not (ange-ftp-dumb-unix-host host)) | |
2548 (setq ange-ftp-dumb-unix-host-regexp | |
2549 (concat "^" (regexp-quote host) "$" | |
2550 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2551 ange-ftp-dumb-unix-host-regexp) | |
2552 ange-ftp-host-cache nil))) | |
2553 | |
2554 (defvar ange-ftp-parse-list-func-alist nil | |
2555 "Alist saying how to parse directory listings for certain OS types. | |
2556 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
2557 which can parse the output from a DIR listing for a host of type TYPE.") | |
2558 | |
2559 ;; With no-error nil, this function returns: | |
2560 ;; an error if file is not an ange-ftp-name | |
30459 | 2561 ;; (This should never happen.) |
28210 | 2562 ;; an error if either the listing is unreadable or there is an ftp error. |
2563 ;; the listing (a string), if everything works. | |
30459 | 2564 ;; |
28210 | 2565 ;; With no-error t, it returns: |
2566 ;; an error if not an ange-ftp-name | |
2567 ;; error if listing is unreadable (most likely caused by a slow connection) | |
2568 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2569 ;; directory on a remote unix machine usually (except | |
2570 ;; maybe for dumb hosts) returns an ls error, but no | |
2571 ;; ftp error, if the same is done on a VMS machine, | |
2572 ;; an ftp error is returned. Need to trap the error | |
2573 ;; so we can go on and try to list the parent.) | |
2574 ;; the listing, if everything works. | |
2575 | |
2576 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory | |
2577 ;; in the wildcard case. Then we make a relative directory listing | |
2578 ;; of FILE within the directory specified by `default-directory'. | |
2579 | |
2580 (defvar ange-ftp-before-parse-ls-hook nil | |
2581 "Normal hook run before parsing the text of an ftp directory listing.") | |
2582 | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2583 (defvar ange-ftp-after-parse-ls-hook nil |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2584 "Normal hook run after parsing the text of an ftp directory listing.") |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2585 |
28210 | 2586 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2587 "Return the output of a `DIR' or `ls' command done over ftp. |
28210 | 2588 FILE is the full name of the remote file, LSARGS is any args to pass to the |
2589 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2590 away in the internal cache." | |
2591 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2592 ;; full directory listings. | |
2593 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
2594 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) | |
2595 (if parsed | |
2596 (let* ((host (nth 0 parsed)) | |
2597 (user (nth 1 parsed)) | |
2598 (name (ange-ftp-quote-string (nth 2 parsed))) | |
2599 (key (directory-file-name ange-ftp-this-file)) | |
2600 (host-type (ange-ftp-host-type host user)) | |
2601 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2602 result | |
2603 temp | |
2604 lscmd parse-func) | |
2605 (if (string-equal name "") | |
2606 (setq name | |
2607 (ange-ftp-real-file-name-as-directory | |
2608 (ange-ftp-expand-dir host user "~")))) | |
2609 (if (and ange-ftp-ls-cache-file | |
2610 (string-equal key ange-ftp-ls-cache-file) | |
2611 ;; Don't care about lsargs for dumb hosts. | |
2612 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2613 ange-ftp-ls-cache-res | |
2614 (setq temp (ange-ftp-make-tmp-name host)) | |
2615 (if wildcard | |
2616 (progn | |
2617 (ange-ftp-cd host user (file-name-directory name)) | |
2618 (setq lscmd (list 'dir file temp lsargs))) | |
2619 (setq lscmd (list 'dir name temp lsargs))) | |
2620 (unwind-protect | |
2621 (if (car (setq result (ange-ftp-send-cmd | |
2622 host | |
2623 user | |
2624 lscmd | |
2625 (format "Listing %s" | |
2626 (ange-ftp-abbreviate-filename | |
2627 ange-ftp-this-file))))) | |
2628 (save-excursion | |
2629 (set-buffer (get-buffer-create | |
2630 ange-ftp-data-buffer-name)) | |
2631 (erase-buffer) | |
2632 (if (ange-ftp-real-file-readable-p temp) | |
2633 (ange-ftp-real-insert-file-contents temp) | |
2634 (sleep-for ange-ftp-retry-time) | |
2635 ;wait for file to possibly appear | |
2636 (if (ange-ftp-real-file-readable-p temp) | |
2637 ;; Try again. | |
2638 (ange-ftp-real-insert-file-contents temp) | |
2639 (ange-ftp-error host user | |
2640 (format | |
2641 "list data file %s not readable" | |
2642 temp)))) | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2643 ;; remove ^M inserted by the win32 ftp client |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2644 (while (re-search-forward "\r$" nil t) |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2645 (replace-match "")) |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2646 (goto-char 1) |
28210 | 2647 (run-hooks 'ange-ftp-before-parse-ls-hook) |
2648 (if parse | |
2649 (ange-ftp-set-files | |
2650 ange-ftp-this-file | |
2651 (if (setq | |
2652 parse-func | |
2653 (cdr (assq host-type | |
2654 ange-ftp-parse-list-func-alist))) | |
2655 (funcall parse-func) | |
2656 (ange-ftp-parse-dired-listing lsargs)))) | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2657 ;; Place this hook here to convert the contents of the |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2658 ;; buffer to a ls compatible format if the host system |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2659 ;; that is being queried is other than Unix i.e. VMS |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2660 ;; returns an ls format that really sucks. |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2661 (run-hooks 'ange-ftp-after-parse-ls-hook) |
28210 | 2662 (setq ange-ftp-ls-cache-file key |
2663 ange-ftp-ls-cache-lsargs lsargs | |
2664 ; For dumb hosts-types this is | |
2665 ; meaningless but harmless. | |
2666 ange-ftp-ls-cache-res (buffer-string)) | |
2667 ;; (kill-buffer (current-buffer)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2668 (if (equal ange-ftp-ls-cache-res "total 0\n") |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2669 ;; wu-ftpd seems to return a successful result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2670 ;; with an empty file-listing when doing a |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2671 ;; `DIR /some/file/.' which leads ange-ftp to |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2672 ;; believe that /some/file is a directory ;-( |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2673 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2674 ange-ftp-ls-cache-res)) |
28210 | 2675 (if no-error |
2676 nil | |
2677 (ange-ftp-error host user | |
2678 (concat "DIR failed: " (cdr result))))) | |
2679 (ange-ftp-del-tmp-name temp)))) | |
2680 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2681 | |
2682 ;;;; ------------------------------------------------------------ | |
2683 ;;;; Directory information caching support. | |
2684 ;;;; ------------------------------------------------------------ | |
2685 | |
2686 (defconst ange-ftp-date-regexp | |
2687 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)") | |
2688 ;; In some locales, month abbreviations are as short as 2 letters, | |
2689 ;; and they can be padded on the right with spaces. | |
2690 ;; weiand: changed: month ends with . or , or ., | |
2691 ;;old (month (concat l l "+ *")) | |
2692 (month (concat l l "+[.]?,? *")) | |
30459 | 2693 ;; Recognize any non-ASCII character. |
28210 | 2694 ;; The purpose is to match a Kanji character. |
2695 (k "[^\0-\177]") | |
2696 (s " ") | |
2697 (mm "[ 0-1][0-9]") | |
2698 ;; weiand: changed: day ends with . | |
2699 ;;old (dd "[ 0-3][0-9]") | |
2700 (dd "[ 0-3][0-9][.]?") | |
2701 (western (concat "\\(" month s dd "\\|" dd s month "\\)")) | |
2702 (japanese (concat mm k s dd k))) | |
2703 ;; Require the previous column to end in a digit. | |
2704 ;; This avoids recognizing `1 may 1997' as a date in the line: | |
2705 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README | |
2706 (concat "[0-9]" s "\\(" western "\\|" japanese "\\)" s)) | |
2707 "Regular expression to match up to the column before the file name in a | |
2708 directory listing. This regular expression is designed to recognize dates | |
2709 regardless of the language.") | |
2710 | |
2711 (defvar ange-ftp-add-file-entry-alist nil | |
2712 "Alist saying how to add file entries on certain OS types. | |
2713 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
2714 is a function to be used to add a file entry for the OS TYPE. The | |
2715 main reason for this alist is to deal with file versions in VMS.") | |
2716 | |
2717 (defvar ange-ftp-delete-file-entry-alist nil | |
2718 "Alist saying how to delete files on certain OS types. | |
2719 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
2720 is a function to be used to delete a file entry for the OS TYPE. | |
2721 The main reason for this alist is to deal with file versions in VMS.") | |
2722 | |
2723 (defun ange-ftp-add-file-entry (name &optional dir-p) | |
2724 "Add a file entry for file NAME, if its directory info exists." | |
2725 (funcall (or (cdr (assq (ange-ftp-host-type | |
2726 (car (ange-ftp-ftp-name name))) | |
2727 ange-ftp-add-file-entry-alist)) | |
2728 'ange-ftp-internal-add-file-entry) | |
2729 name dir-p) | |
2730 (setq ange-ftp-ls-cache-file nil)) | |
2731 | |
2732 (defun ange-ftp-delete-file-entry (name &optional dir-p) | |
2733 "Delete the file entry for file NAME, if its directory info exists." | |
2734 (funcall (or (cdr (assq (ange-ftp-host-type | |
2735 (car (ange-ftp-ftp-name name))) | |
2736 ange-ftp-delete-file-entry-alist)) | |
2737 'ange-ftp-internal-delete-file-entry) | |
2738 name dir-p) | |
2739 (setq ange-ftp-ls-cache-file nil)) | |
2740 | |
2741 (defmacro ange-ftp-parse-filename () | |
2742 ;;Extract the filename from the current line of a dired-like listing. | |
30459 | 2743 `(let ((eol (progn (end-of-line) (point)))) |
2744 (beginning-of-line) | |
2745 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2746 (progn | |
2747 (skip-chars-forward " ") | |
2748 (skip-chars-forward "^ " eol) | |
2749 (skip-chars-forward " " eol) | |
2750 ;; We bomb on filenames starting with a space. | |
2751 (buffer-substring (point) eol))))) | |
2752 | |
28210 | 2753 ;; This deals with the F switch. Should also do something about |
2754 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2755 ;; switch. See Sebastian's dired-get-filename. | |
2756 | |
2757 (defmacro ange-ftp-ls-parser () | |
2758 ;; Note that switches is dynamically bound. | |
2759 ;; Meant to be called by ange-ftp-parse-dired-listing | |
30459 | 2760 `(let ((tbl (ange-ftp-make-hashtable)) |
2761 (used-F (and (stringp switches) | |
2762 (string-match "F" switches))) | |
2763 file-type symlink directory file) | |
2764 (while (setq file (ange-ftp-parse-filename)) | |
2765 (beginning-of-line) | |
2766 (skip-chars-forward "\t 0-9") | |
2767 (setq file-type (following-char) | |
2768 directory (eq file-type ?d)) | |
2769 (if (eq file-type ?l) | |
2770 (if (string-match " -> " file) | |
2771 (setq symlink (substring file (match-end 0)) | |
2772 file (substring file 0 (match-beginning 0))) | |
2773 ;; Shouldn't happen | |
2774 (setq symlink "")) | |
2775 (setq symlink nil)) | |
2776 ;; Only do a costly regexp search if the F switch was used. | |
2777 (if (and used-F | |
2778 (not (string-equal file "")) | |
2779 (looking-at | |
2780 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2781 (let ((socket (eq file-type ?s)) | |
2782 (executable | |
2783 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2784 (string-match | |
2785 "[xst]" | |
2786 (concat (buffer-substring | |
2787 (match-beginning 1) (match-end 1)) | |
2788 (buffer-substring | |
2789 (match-beginning 2) (match-end 2)) | |
2790 (buffer-substring | |
2791 (match-beginning 3) (match-end 3))))))) | |
2792 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2793 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2794 ;; seem to believe in the F-switch | |
2795 (if (or (and symlink (string-match "@$" file)) | |
2796 (and directory (string-match "/$" file)) | |
2797 (and executable (string-match "*$" file)) | |
2798 (and socket (string-match "=$" file))) | |
2799 (setq file (substring file 0 -1))))) | |
2800 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2801 (forward-line 1)) | |
2802 (ange-ftp-put-hash-entry "." t tbl) | |
2803 (ange-ftp-put-hash-entry ".." t tbl) | |
2804 tbl)) | |
28210 | 2805 |
2806 ;;; The dl stuff for descriptive listings | |
2807 | |
2808 (defvar ange-ftp-dl-dir-regexp nil | |
2809 "Regexp matching directories which are listed in dl format. | |
2810 This regexp should not be anchored with a trailing `$', because it should | |
2811 match subdirectories as well.") | |
2812 | |
2813 (defun ange-ftp-add-dl-dir (dir) | |
2814 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." | |
2815 (interactive | |
2816 (list (read-string "Directory: " | |
2817 (let ((name (or (buffer-file-name) default-directory))) | |
2818 (and name (ange-ftp-ftp-name name) | |
2819 (file-name-directory name)))))) | |
2820 (if (not (and ange-ftp-dl-dir-regexp | |
2821 (string-match ange-ftp-dl-dir-regexp dir))) | |
2822 (setq ange-ftp-dl-dir-regexp | |
2823 (concat "^" (regexp-quote dir) | |
2824 (and ange-ftp-dl-dir-regexp "\\|") | |
2825 ange-ftp-dl-dir-regexp)))) | |
2826 | |
2827 (defmacro ange-ftp-dl-parser () | |
2828 ;; Parse the current buffer, which is assumed to be a descriptive | |
2829 ;; listing, and return a hashtable. | |
30459 | 2830 `(let ((tbl (ange-ftp-make-hashtable))) |
2831 (while (not (eobp)) | |
2832 (ange-ftp-put-hash-entry | |
2833 (buffer-substring (point) | |
2834 (progn | |
2835 (skip-chars-forward "^ /\n") | |
2836 (point))) | |
2837 (eq (following-char) ?/) | |
2838 tbl) | |
2839 (forward-line 1)) | |
2840 (ange-ftp-put-hash-entry "." t tbl) | |
2841 (ange-ftp-put-hash-entry ".." t tbl) | |
2842 tbl)) | |
28210 | 2843 |
2844 ;; Parse the current buffer which is assumed to be in a dired-like listing | |
2845 ;; format, and return a hashtable as the result. If the listing is not really | |
2846 ;; a listing, then return nil. | |
2847 | |
2848 (defun ange-ftp-parse-dired-listing (&optional switches) | |
2849 (save-match-data | |
2850 (cond | |
2851 ((looking-at "^total [0-9]+$") | |
2852 (forward-line 1) | |
2853 ;; Some systems put in a blank line here. | |
2854 (if (eolp) (forward-line 1)) | |
2855 (ange-ftp-ls-parser)) | |
2856 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2857 ;; It's an ls error message. | |
2858 nil) | |
2859 ((eobp) ; i.e. (zerop (buffer-size)) | |
2860 ;; This could be one of: | |
2861 ;; (1) An Ultrix ls error message | |
2862 ;; (2) A listing with the A switch of an empty directory | |
2863 ;; on a machine which doesn't give a total line. | |
2864 ;; (3) The twilight zone. | |
2865 ;; We'll assume (1) for now. | |
2866 nil) | |
2867 ((re-search-forward ange-ftp-date-regexp nil t) | |
2868 (beginning-of-line) | |
2869 (ange-ftp-ls-parser)) | |
2870 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2871 ;; It's a dl listing (I hope). | |
2872 ;; file is bound by the call to ange-ftp-ls | |
2873 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2874 (beginning-of-line) | |
2875 (ange-ftp-dl-parser)) | |
2876 (t nil)))) | |
2877 | |
2878 (defun ange-ftp-set-files (directory files) | |
2879 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2880 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2881 files ange-ftp-files-hashtable))) | |
2882 | |
2883 (defun ange-ftp-get-files (directory &optional no-error) | |
2884 "Given a given DIRECTORY, return a hashtable of file entries. | |
2885 This will give an error or return nil, depending on the value of | |
2886 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2887 (setq directory (file-name-as-directory directory)) ;normalize | |
2888 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
2889 (save-match-data | |
2890 (and (ange-ftp-ls directory | |
2891 ;; This is an efficiency hack. We try to | |
2892 ;; anticipate what sort of listing dired | |
2893 ;; might want, and cache just such a listing. | |
2894 (if (and (boundp 'dired-actual-switches) | |
2895 (stringp dired-actual-switches) | |
2896 ;; We allow the A switch, which lists | |
2897 ;; all files except "." and "..". | |
2898 ;; This is OK because we manually | |
2899 ;; insert these entries | |
2900 ;; in the hash table. | |
2901 (string-match | |
2902 "[aA]" dired-actual-switches) | |
2903 (string-match | |
2904 "l" dired-actual-switches) | |
2905 (not (string-match | |
2906 "R" dired-actual-switches))) | |
2907 dired-actual-switches | |
2908 (if (and (boundp 'dired-listing-switches) | |
2909 (stringp dired-listing-switches) | |
2910 (string-match | |
2911 "[aA]" dired-listing-switches) | |
2912 (string-match | |
2913 "l" dired-listing-switches) | |
2914 (not (string-match | |
2915 "R" dired-listing-switches))) | |
2916 dired-listing-switches | |
2917 "-al")) | |
2918 t no-error) | |
2919 (ange-ftp-get-hash-entry | |
2920 directory ange-ftp-files-hashtable))))) | |
2921 | |
2922 ;; Given NAME, return the file part that can be used for looking up the | |
2923 ;; file's entry in a hashtable. | |
2924 (defmacro ange-ftp-get-file-part (name) | |
30459 | 2925 `(let ((file (file-name-nondirectory ,name))) |
2926 (if (string-equal file "") | |
2927 "." | |
2928 file))) | |
28210 | 2929 |
2930 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are | |
2931 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2932 ;; rather than listing its parent directory. This is used for efficiency so | |
2933 ;; that a wasted listing is not done: | |
2934 ;; 1. When looking for a .dired file in dired-x.el. | |
2935 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2936 ;; subdirectory. This is of course an OS dependent judgement. | |
2937 | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2938 ;;; Nowadays, the judgement for #2 is always "no". |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2939 ;;; With today's ftp servers on Unix and GNU systems, |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2940 ;;; it appears to be impossible to tell from the result |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2941 ;;; of the directory listing whether the argument is a directory. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2942 ;;; This appears to be true even in Emacs 20.7 |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2943 |
28210 | 2944 (defmacro ange-ftp-allow-child-lookup (dir file) |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2945 nil) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2946 ;;; `(not |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2947 ;;; (let* ((efile ,file) ; expand once. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2948 ;;; (edir ,dir) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2949 ;;; (parsed (ange-ftp-ftp-name edir)) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2950 ;;; (host-type (ange-ftp-host-type |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2951 ;;; (car parsed)))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2952 ;;; (or |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2953 ;;; ;; Deal with dired |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2954 ;;; (and (boundp 'dired-local-variables-file) ; in the dired-x package |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2955 ;;; (stringp dired-local-variables-file) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2956 ;;; (string-equal dired-local-variables-file efile)) |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2957 ;;; ;; No dots in dir names in vms. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2958 ;;; (and (eq host-type 'vms) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2959 ;;; (string-match "\\." efile)) |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2960 ;;; ;; No subdirs in mts of cms. |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2961 ;;; (and (memq host-type '(mts cms)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2962 ;;; (not (string-equal "/" (nth 2 parsed)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2963 ;;; ;; No dots in pseudo-dir names in bs2000. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2964 ;;; (and (eq host-type 'bs2000) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2965 ;;; (string-match "\\." efile))))))) |
28210 | 2966 |
2967 (defun ange-ftp-file-entry-p (name) | |
2968 "Given NAME, return whether there is a file entry for it." | |
2969 (let* ((name (directory-file-name name)) | |
2970 (dir (file-name-directory name)) | |
2971 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) | |
2972 (file (ange-ftp-get-file-part name))) | |
2973 (if ent | |
2974 (ange-ftp-hash-entry-exists-p file ent) | |
2975 (or (and (ange-ftp-allow-child-lookup dir file) | |
2976 (setq ent (ange-ftp-get-files name t)) | |
2977 ;; Try a child lookup. i.e. try to list file as a | |
2978 ;; subdirectory of dir. This is a good idea because | |
2979 ;; we may not have read permission for file's parent. Also, | |
2980 ;; people tend to work down directory trees anyway. We use | |
2981 ;; no-error ;; because if file does not exist as a subdir., | |
2982 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2983 ;; will simply send back the ls | |
2984 ;; error message. | |
2985 (ange-ftp-get-hash-entry "." ent)) | |
2986 ;; Child lookup failed, so try the parent. | |
2987 (let ((table (ange-ftp-get-files dir))) | |
2988 ;; If the dir doesn't exist, don't use it as a hash table. | |
2989 (and table | |
2990 (ange-ftp-hash-entry-exists-p file | |
2991 table))))))) | |
2992 | |
2993 (defun ange-ftp-get-file-entry (name) | |
2994 "Given NAME, return the given file entry. | |
2995 The entry will be either t for a directory, nil for a normal file, | |
2996 or a string for a symlink. If the file isn't in the hashtable, | |
2997 this also returns nil." | |
2998 (let* ((name (directory-file-name name)) | |
2999 (dir (file-name-directory name)) | |
3000 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) | |
3001 (file (ange-ftp-get-file-part name))) | |
3002 (if ent | |
3003 (ange-ftp-get-hash-entry file ent) | |
3004 (or (and (ange-ftp-allow-child-lookup dir file) | |
3005 (setq ent (ange-ftp-get-files name t)) | |
3006 (ange-ftp-get-hash-entry "." ent)) | |
3007 ;; i.e. it's a directory by child lookup | |
3008 (ange-ftp-get-hash-entry file | |
3009 (ange-ftp-get-files dir)))))) | |
3010 | |
3011 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) | |
3012 (if dir-p | |
30459 | 3013 (progn |
28210 | 3014 (setq name (file-name-as-directory name)) |
3015 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) | |
3016 (setq name (directory-file-name name)))) | |
3017 ;; Note that file-name-as-directory followed by directory-file-name | |
3018 ;; serves to canonicalize directory file names to their unix form. | |
3019 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
3020 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) | |
3021 ange-ftp-files-hashtable))) | |
3022 (if files | |
3023 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) | |
3024 files)))) | |
3025 | |
3026 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) | |
3027 (and dir-p | |
3028 (setq name (directory-file-name name))) | |
3029 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) | |
3030 ange-ftp-files-hashtable))) | |
3031 (if files | |
3032 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) | |
3033 dir-p | |
3034 files)))) | |
3035 | |
3036 (defun ange-ftp-wipe-file-entries (host user) | |
3037 "Get rid of entry for HOST, USER pair from file entry information hashtable." | |
3038 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) | |
3039 (ange-ftp-map-hashtable | |
30459 | 3040 (lambda (key val) |
3041 (let ((parsed (ange-ftp-ftp-name key))) | |
3042 (if parsed | |
3043 (let ((h (nth 0 parsed)) | |
3044 (u (nth 1 parsed))) | |
3045 (or (and (equal host h) (equal user u)) | |
3046 (ange-ftp-put-hash-entry key val new-tbl)))))) | |
28210 | 3047 ange-ftp-files-hashtable) |
3048 (setq ange-ftp-files-hashtable new-tbl))) | |
3049 | |
3050 ;;;; ------------------------------------------------------------ | |
3051 ;;;; File transfer mode support. | |
3052 ;;;; ------------------------------------------------------------ | |
3053 | |
3054 (defun ange-ftp-set-binary-mode (host user) | |
3055 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
3056 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
3057 (if (not (car result)) | |
3058 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
3059 (save-excursion | |
3060 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
3061 (and ange-ftp-binary-hash-mark-size | |
3062 (setq ange-ftp-hash-mark-unit | |
3063 (ash ange-ftp-binary-hash-mark-size -4))))))) | |
3064 | |
3065 (defun ange-ftp-set-ascii-mode (host user) | |
3066 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
3067 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
3068 (if (not (car result)) | |
3069 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
3070 (save-excursion | |
3071 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
3072 (and ange-ftp-ascii-hash-mark-size | |
3073 (setq ange-ftp-hash-mark-unit | |
3074 (ash ange-ftp-ascii-hash-mark-size -4))))))) | |
3075 | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3076 (defun ange-ftp-cd (host user dir &optional noerror) |
28210 | 3077 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3078 (if noerror result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3079 (or (car result) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3080 (ange-ftp-error host user (concat "CD failed: " (cdr result))))))) |
28210 | 3081 |
3082 (defun ange-ftp-get-pwd (host user) | |
3083 "Attempts to get the current working directory for the given HOST/USER pair. | |
3084 Returns \( DIR . LINE \) where DIR is either the directory or nil if not found, | |
3085 and LINE is the relevant success or fail line from the FTP-client." | |
3086 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
3087 (line (cdr result)) | |
3088 dir) | |
3089 (if (car result) | |
3090 (save-match-data | |
3091 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
3092 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
3093 (setq dir (substring line | |
3094 (match-beginning 1) | |
3095 (match-end 1)))))) | |
3096 (cons dir line))) | |
3097 | |
3098 ;;; ------------------------------------------------------------ | |
3099 ;;; expand-file-name and friends...which currently don't work | |
3100 ;;; ------------------------------------------------------------ | |
3101 | |
3102 (defun ange-ftp-expand-dir (host user dir) | |
3103 "Return the result of doing a PWD in the current FTP session. | |
3104 Use the connection to machine HOST | |
3105 logged in as user USER and cd'd to directory DIR." | |
3106 (let* ((host-type (ange-ftp-host-type host user)) | |
3107 ;; It is more efficient to call ange-ftp-host-type | |
3108 ;; before binding res, because ange-ftp-host-type sometimes | |
3109 ;; adds to the info in the expand-dir-hashtable. | |
3110 (fix-name-func | |
3111 (cdr (assq host-type ange-ftp-fix-name-func-alist))) | |
3112 (key (concat host "/" user "/" dir)) | |
3113 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
3114 (or res | |
3115 (progn | |
3116 (or | |
3117 (string-equal user "anonymous") | |
3118 (string-equal user "ftp") | |
3119 (not (eq host-type 'unix)) | |
3120 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
3121 "\\|" | |
3122 ange-ftp-good-msgs)) | |
3123 (result (ange-ftp-send-cmd host user | |
3124 (list 'get dir null-device) | |
3125 (format "expanding %s" dir))) | |
3126 (line (cdr result))) | |
3127 (setq res | |
3128 (if (string-match ange-ftp-expand-dir-regexp line) | |
30459 | 3129 (substring line |
28210 | 3130 (match-beginning 1) |
3131 (match-end 1)))))) | |
3132 (or res | |
3133 (if (string-equal dir "~") | |
3134 (setq res (car (ange-ftp-get-pwd host user))) | |
3135 (let ((home (ange-ftp-expand-dir host user "~"))) | |
3136 (unwind-protect | |
3137 (and (ange-ftp-cd host user dir) | |
3138 (setq res (car (ange-ftp-get-pwd host user)))) | |
3139 (ange-ftp-cd host user home))))) | |
3140 (if res | |
3141 (let ((ange-ftp-this-user user) | |
3142 (ange-ftp-this-host host)) | |
3143 (if fix-name-func | |
3144 (setq res (funcall fix-name-func res 'reverse))) | |
3145 (ange-ftp-put-hash-entry | |
3146 key res ange-ftp-expand-dir-hashtable))) | |
3147 res)))) | |
3148 | |
3149 (defun ange-ftp-canonize-filename (n) | |
3150 "Take a string and short-circuit //, /. and /.." | |
3151 (if (string-match "[^:]+//" n) ;don't upset Apollo users | |
3152 (setq n (substring n (1- (match-end 0))))) | |
3153 (let ((parsed (ange-ftp-ftp-name n))) | |
3154 (if parsed | |
3155 (let ((host (car parsed)) | |
3156 (user (nth 1 parsed)) | |
3157 (name (nth 2 parsed))) | |
30459 | 3158 |
28210 | 3159 ;; See if remote name is absolute. If so then just expand it and |
3160 ;; replace the name component of the overall name. | |
3161 (cond ((string-match "^/" name) | |
3162 name) | |
30459 | 3163 |
28210 | 3164 ;; Name starts with ~ or ~user. Resolve that part of the name |
3165 ;; making it absolute then re-expand it. | |
3166 ((string-match "^~[^/]*" name) | |
3167 (let* ((tilda (substring name | |
30459 | 3168 (match-beginning 0) |
28210 | 3169 (match-end 0))) |
3170 (rest (substring name (match-end 0))) | |
3171 (dir (ange-ftp-expand-dir host user tilda))) | |
3172 (if dir | |
42898
79af049b102e
(ange-ftp-canonize-filename): Avoid duplicate slash if DIR is just slash.
Richard M. Stallman <rms@gnu.org>
parents:
42891
diff
changeset
|
3173 (setq name (if (string-equal dir "/") |
79af049b102e
(ange-ftp-canonize-filename): Avoid duplicate slash if DIR is just slash.
Richard M. Stallman <rms@gnu.org>
parents:
42891
diff
changeset
|
3174 rest (concat dir rest))) |
30459 | 3175 (error "User \"%s\" is not known" |
28210 | 3176 (substring tilda 1))))) |
30459 | 3177 |
28210 | 3178 ;; relative name. Tack on homedir and re-expand. |
3179 (t | |
3180 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
3181 (if dir | |
3182 (setq name (concat | |
3183 (ange-ftp-real-file-name-as-directory dir) | |
3184 name)) | |
3185 (error "Unable to obtain CWD"))))) | |
30459 | 3186 |
28210 | 3187 ;; If name starts with //, preserve that, for apollo system. |
3188 (if (not (string-match "^//" name)) | |
3189 (progn | |
3190 (if (not (eq system-type 'windows-nt)) | |
3191 (setq name (ange-ftp-real-expand-file-name name)) | |
3192 ;; Windows UNC default dirs do not make sense for ftp. | |
3193 (if (string-match "^//" default-directory) | |
3194 (setq name (ange-ftp-real-expand-file-name name "c:/")) | |
3195 (setq name (ange-ftp-real-expand-file-name name))) | |
3196 ;; Strip off possible drive specifier. | |
3197 (if (string-match "^[a-zA-Z]:" name) | |
3198 (setq name (substring name 2)))) | |
3199 (if (string-match "^//" name) | |
3200 (setq name (substring name 1))))) | |
30459 | 3201 |
28210 | 3202 ;; Now substitute the expanded name back into the overall filename. |
3203 (ange-ftp-replace-name-component n name)) | |
30459 | 3204 |
28210 | 3205 ;; non-ange-ftp name. Just expand normally. |
3206 (if (eq (string-to-char n) ?/) | |
3207 (ange-ftp-real-expand-file-name n) | |
3208 (ange-ftp-real-expand-file-name | |
3209 (ange-ftp-real-file-name-nondirectory n) | |
3210 (ange-ftp-real-file-name-directory n)))))) | |
3211 | |
3212 (defun ange-ftp-expand-file-name (name &optional default) | |
3213 "Documented as original." | |
3214 (save-match-data | |
3215 (setq default (or default default-directory)) | |
3216 (cond ((eq (string-to-char name) ?~) | |
3217 (ange-ftp-real-expand-file-name name)) | |
3218 ((eq (string-to-char name) ?/) | |
3219 (ange-ftp-canonize-filename name)) | |
3220 ((and (eq system-type 'windows-nt) | |
3221 (eq (string-to-char name) ?\\)) | |
3222 (ange-ftp-canonize-filename name)) | |
3223 ((and (eq system-type 'windows-nt) | |
3224 (or (string-match "^[a-zA-Z]:" name) | |
3225 (string-match "^[a-zA-Z]:" default))) | |
3226 (ange-ftp-real-expand-file-name name default)) | |
3227 ((zerop (length name)) | |
3228 (ange-ftp-canonize-filename default)) | |
3229 ((ange-ftp-canonize-filename | |
3230 (concat (file-name-as-directory default) name)))))) | |
3231 | |
3232 ;;; These are problems--they are currently not enabled. | |
3233 | |
3234 (defvar ange-ftp-file-name-as-directory-alist nil | |
3235 "Association list of \( TYPE \. FUNC \) pairs. | |
3236 FUNC converts a filename to a directory name for the operating | |
3237 system TYPE.") | |
3238 | |
3239 (defun ange-ftp-file-name-as-directory (name) | |
3240 "Documented as original." | |
3241 (let ((parsed (ange-ftp-ftp-name name))) | |
3242 (if parsed | |
3243 (if (string-equal (nth 2 parsed) "") | |
3244 name | |
3245 (funcall (or (cdr (assq | |
3246 (ange-ftp-host-type (car parsed)) | |
3247 ange-ftp-file-name-as-directory-alist)) | |
3248 'ange-ftp-real-file-name-as-directory) | |
3249 name)) | |
3250 (ange-ftp-real-file-name-as-directory name)))) | |
30459 | 3251 |
28210 | 3252 (defun ange-ftp-file-name-directory (name) |
3253 "Documented as original." | |
3254 (let ((parsed (ange-ftp-ftp-name name))) | |
3255 (if parsed | |
3256 (let ((filename (nth 2 parsed))) | |
3257 (if (save-match-data | |
3258 (string-match "^~[^/]*$" filename)) | |
3259 name | |
3260 (ange-ftp-replace-name-component | |
3261 name | |
3262 (ange-ftp-real-file-name-directory filename)))) | |
3263 (ange-ftp-real-file-name-directory name)))) | |
3264 | |
3265 (defun ange-ftp-file-name-nondirectory (name) | |
3266 "Documented as original." | |
3267 (let ((parsed (ange-ftp-ftp-name name))) | |
3268 (if parsed | |
3269 (let ((filename (nth 2 parsed))) | |
3270 (if (save-match-data | |
3271 (string-match "^~[^/]*$" filename)) | |
3272 "" | |
3273 (ange-ftp-real-file-name-nondirectory filename))) | |
3274 (ange-ftp-real-file-name-nondirectory name)))) | |
3275 | |
3276 (defun ange-ftp-directory-file-name (dir) | |
3277 "Documented as original." | |
3278 (let ((parsed (ange-ftp-ftp-name dir))) | |
3279 (if parsed | |
3280 (ange-ftp-replace-name-component | |
3281 dir | |
3282 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
3283 (ange-ftp-real-directory-file-name dir)))) | |
3284 | |
3285 | |
3286 ;;; Hooks that handle Emacs primitives. | |
3287 | |
3288 ;; Returns non-nil if should transfer FILE in binary mode. | |
3289 (defun ange-ftp-binary-file (file) | |
3290 (save-match-data | |
3291 (string-match ange-ftp-binary-file-name-regexp file))) | |
3292 | |
3293 (defun ange-ftp-write-region (start end filename &optional append visit) | |
3294 (setq filename (expand-file-name filename)) | |
3295 (let ((parsed (ange-ftp-ftp-name filename))) | |
3296 (if parsed | |
3297 (let* ((host (nth 0 parsed)) | |
3298 (user (nth 1 parsed)) | |
3299 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3300 (temp (ange-ftp-make-tmp-name host)) | |
3301 ;; What we REALLY need here is a way to determine if the mode | |
3302 ;; of the transfer is irrelevant, i.e. we can use binary mode | |
3303 ;; regardless. Maybe a system-type to host-type lookup? | |
3304 (binary (or (ange-ftp-binary-file filename) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3305 (and (not (memq system-type |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3306 '(ms-dos windows-nt macos vax-vms))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3307 (memq (ange-ftp-host-type host user) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3308 '(unix dumb-unix))))) |
28210 | 3309 (cmd (if append 'append 'put)) |
3310 (abbr (ange-ftp-abbreviate-filename filename)) | |
3311 ;; we need to reset `last-coding-system-used' to its | |
3312 ;; value immediately after calling the real write-region, | |
3313 ;; so that `basic-save-buffer' doesn't see whatever value | |
3314 ;; might be used when communicating with the ftp process. | |
3315 (coding-system-used last-coding-system-used)) | |
3316 (unwind-protect | |
3317 (progn | |
3318 (let ((executing-kbd-macro t) | |
3319 (filename (buffer-file-name)) | |
3320 (mod-p (buffer-modified-p))) | |
3321 (unwind-protect | |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3322 (progn |
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3323 (ange-ftp-real-write-region start end temp nil visit) |
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3324 (setq coding-system-used last-coding-system-used)) |
28210 | 3325 ;; cleanup forms |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3326 (setq coding-system-used last-coding-system-used) |
28210 | 3327 (setq buffer-file-name filename) |
3328 (set-buffer-modified-p mod-p))) | |
3329 (if binary | |
3330 (ange-ftp-set-binary-mode host user)) | |
3331 | |
3332 ;; tell the process filter what size the transfer will be. | |
3333 (let ((attr (file-attributes temp))) | |
3334 (if attr | |
3335 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
3336 | |
3337 ;; put or append the file. | |
3338 (let ((result (ange-ftp-send-cmd host user | |
3339 (list cmd temp name) | |
3340 (format "Writing %s" abbr)))) | |
3341 (or (car result) | |
3342 (signal 'ftp-error | |
3343 (list | |
3344 "Opening output file" | |
3345 (format "FTP Error: \"%s\"" (cdr result)) | |
3346 filename))))) | |
3347 (ange-ftp-del-tmp-name temp) | |
30459 | 3348 (if binary |
28210 | 3349 (ange-ftp-set-ascii-mode host user))) |
3350 (if (eq visit t) | |
3351 (progn | |
30459 | 3352 (set-visited-file-modtime (ange-ftp-file-modtime filename)) |
28210 | 3353 (ange-ftp-set-buffer-mode) |
3354 (setq buffer-file-name filename) | |
3355 (set-buffer-modified-p nil))) | |
3356 ;; ensure `last-coding-system-used' has an appropriate value | |
3357 (setq last-coding-system-used coding-system-used) | |
3358 (ange-ftp-message "Wrote %s" abbr) | |
3359 (ange-ftp-add-file-entry filename)) | |
3360 (ange-ftp-real-write-region start end filename append visit)))) | |
3361 | |
3362 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) | |
3363 (barf-if-buffer-read-only) | |
3364 (setq filename (expand-file-name filename)) | |
3365 (let ((parsed (ange-ftp-ftp-name filename))) | |
3366 (if parsed | |
3367 (progn | |
3368 (if visit | |
3369 (setq buffer-file-name filename)) | |
3370 (if (or (file-exists-p filename) | |
3371 (progn | |
3372 (setq ange-ftp-ls-cache-file nil) | |
3373 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3374 ange-ftp-files-hashtable) | |
3375 (file-exists-p filename))) | |
3376 (let* ((host (nth 0 parsed)) | |
3377 (user (nth 1 parsed)) | |
3378 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3379 (temp (ange-ftp-make-tmp-name host)) | |
3380 (binary (or (ange-ftp-binary-file filename) | |
3381 (memq (ange-ftp-host-type host user) | |
3382 '(unix dumb-unix)))) | |
3383 (abbr (ange-ftp-abbreviate-filename filename)) | |
3384 (coding-system-used last-coding-system-used) | |
3385 size) | |
3386 (unwind-protect | |
3387 (progn | |
3388 (if binary | |
3389 (ange-ftp-set-binary-mode host user)) | |
3390 (let ((result (ange-ftp-send-cmd host user | |
3391 (list 'get name temp) | |
3392 (format "Retrieving %s" abbr)))) | |
3393 (or (car result) | |
3394 (signal 'ftp-error | |
3395 (list | |
3396 "Opening input file" | |
3397 (format "FTP Error: \"%s\"" (cdr result)) | |
3398 filename)))) | |
3399 (if (or (ange-ftp-real-file-readable-p temp) | |
3400 (sleep-for ange-ftp-retry-time) | |
3401 ;; Wait for file to hopefully appear. | |
3402 (ange-ftp-real-file-readable-p temp)) | |
3403 (setq | |
3404 size | |
3405 (nth 1 (ange-ftp-real-insert-file-contents | |
3406 temp visit beg end replace)) | |
3407 coding-system-used last-coding-system-used | |
3408 ;; override autodetection of buffer file type | |
3409 ;; to ensure buffer is saved in DOS format | |
3410 buffer-file-type binary) | |
3411 (signal 'ftp-error | |
3412 (list | |
3413 "Opening input file:" | |
3414 (format | |
3415 "FTP Error: %s not arrived or readable" | |
3416 filename))))) | |
3417 (if binary | |
3418 ;; We must keep `last-coding-system-used' | |
3419 ;; unchanged. | |
3420 (let (last-coding-system-used) | |
3421 (ange-ftp-set-ascii-mode host user))) | |
3422 (ange-ftp-del-tmp-name temp)) | |
3423 (if visit | |
3424 (progn | |
30459 | 3425 (set-visited-file-modtime |
3426 (ange-ftp-file-modtime filename)) | |
28210 | 3427 (setq buffer-file-name filename))) |
3428 (setq last-coding-system-used coding-system-used) | |
3429 (list filename size)) | |
3430 (signal 'file-error | |
30459 | 3431 (list |
28210 | 3432 "Opening input file" |
3433 filename)))) | |
3434 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) | |
30459 | 3435 |
28210 | 3436 (defun ange-ftp-expand-symlink (file dir) |
3437 (if (file-name-absolute-p file) | |
3438 (ange-ftp-replace-name-component dir file) | |
3439 (expand-file-name file dir))) | |
3440 | |
3441 (defun ange-ftp-file-symlink-p (file) | |
3442 ;; call ange-ftp-expand-file-name rather than the normal | |
3443 ;; expand-file-name to stop loops when using a package that | |
3444 ;; redefines both file-symlink-p and expand-file-name. | |
3445 (setq file (ange-ftp-expand-file-name file)) | |
3446 (if (ange-ftp-ftp-name file) | |
3447 (let ((file-ent | |
3448 (ange-ftp-get-hash-entry | |
3449 (ange-ftp-get-file-part file) | |
3450 (ange-ftp-get-files (file-name-directory file))))) | |
3451 (if (stringp file-ent) | |
3452 (if (file-name-absolute-p file-ent) | |
3453 (ange-ftp-replace-name-component | |
3454 (file-name-directory file) file-ent) | |
3455 file-ent))) | |
3456 (ange-ftp-real-file-symlink-p file))) | |
3457 | |
3458 (defun ange-ftp-file-exists-p (name) | |
3459 (setq name (expand-file-name name)) | |
3460 (if (ange-ftp-ftp-name name) | |
3461 (if (ange-ftp-file-entry-p name) | |
3462 (let ((file-ent (ange-ftp-get-file-entry name))) | |
3463 (if (stringp file-ent) | |
3464 (file-exists-p | |
3465 (ange-ftp-expand-symlink file-ent | |
3466 (file-name-directory | |
3467 (directory-file-name name)))) | |
3468 t))) | |
3469 (ange-ftp-real-file-exists-p name))) | |
3470 | |
3471 (defun ange-ftp-file-directory-p (name) | |
3472 (setq name (expand-file-name name)) | |
3473 (if (ange-ftp-ftp-name name) | |
3474 ;; We do a file-name-as-directory on name here because some | |
3475 ;; machines (VMS) use a .DIR to indicate the filename associated | |
3476 ;; with a directory. This needs to be canonicalized. | |
3477 (let ((file-ent (ange-ftp-get-file-entry | |
3478 (ange-ftp-file-name-as-directory name)))) | |
3479 (if (stringp file-ent) | |
3480 (file-directory-p | |
3481 (ange-ftp-expand-symlink file-ent | |
3482 (file-name-directory | |
3483 (directory-file-name name)))) | |
3484 file-ent)) | |
3485 (ange-ftp-real-file-directory-p name))) | |
3486 | |
3487 (defun ange-ftp-directory-files (directory &optional full match | |
3488 &rest v19-args) | |
3489 (setq directory (expand-file-name directory)) | |
3490 (if (ange-ftp-ftp-name directory) | |
3491 (progn | |
3492 (ange-ftp-barf-if-not-directory directory) | |
3493 (let ((tail (ange-ftp-hash-table-keys | |
3494 (ange-ftp-get-files directory))) | |
3495 files f) | |
3496 (setq directory (file-name-as-directory directory)) | |
3497 (save-match-data | |
3498 (while tail | |
3499 (setq f (car tail) | |
3500 tail (cdr tail)) | |
3501 (if (or (not match) (string-match match f)) | |
3502 (setq files | |
3503 (cons (if full (concat directory f) f) files))))) | |
3504 (nreverse files))) | |
3505 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3506 | |
3507 (defun ange-ftp-file-attributes (file) | |
3508 (setq file (expand-file-name file)) | |
3509 (let ((parsed (ange-ftp-ftp-name file))) | |
3510 (if parsed | |
3511 (let ((part (ange-ftp-get-file-part file)) | |
3512 (files (ange-ftp-get-files (file-name-directory file)))) | |
3513 (if (ange-ftp-hash-entry-exists-p part files) | |
3514 (let ((host (nth 0 parsed)) | |
3515 (user (nth 1 parsed)) | |
3516 (name (nth 2 parsed)) | |
3517 (dirp (ange-ftp-get-hash-entry part files)) | |
3518 (inode (ange-ftp-get-hash-entry | |
3519 file ange-ftp-inodes-hashtable))) | |
3520 (unless inode | |
3521 (setq inode ange-ftp-next-inode-number | |
3522 ange-ftp-next-inode-number (1+ inode)) | |
3523 (ange-ftp-put-hash-entry file inode ange-ftp-inodes-hashtable)) | |
3524 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3525 (ange-ftp-expand-symlink dirp | |
3526 (file-name-directory file)) | |
3527 dirp) ;0 file type | |
3528 -1 ;1 link count | |
3529 -1 ;2 uid | |
3530 -1 ;3 gid | |
3531 '(0 0) ;4 atime | |
30459 | 3532 (ange-ftp-file-modtime file) ;5 mtime |
28210 | 3533 '(0 0) ;6 ctime |
3534 -1 ;7 size | |
3535 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3536 "?????????") ;8 mode | |
3537 nil ;9 gid weird | |
3538 inode ;10 "inode number". | |
3539 -1 ;11 device number [v19 only] | |
3540 )))) | |
3541 (ange-ftp-real-file-attributes file)))) | |
3542 | |
30481 | 3543 (defun ange-ftp-file-newer-than-file-p (f1 f2) |
3544 (let ((f1-parsed (ange-ftp-ftp-name f1)) | |
3545 (f2-parsed (ange-ftp-ftp-name f2))) | |
3546 (if (or f1-parsed f2-parsed) | |
3547 (let ((f1-mt (nth 5 (file-attributes f1))) | |
3548 (f2-mt (nth 5 (file-attributes f2)))) | |
3549 (cond ((null f1-mt) nil) | |
3550 ((null f2-mt) t) | |
3551 (t (> (float-time f1-mt) (float-time f2-mt))))) | |
3552 (ange-ftp-real-file-newer-than-file-p f1 f2)))) | |
3553 | |
28210 | 3554 (defun ange-ftp-file-writable-p (file) |
33533 | 3555 (let ((ange-ftp-process-verbose nil)) |
3556 (setq file (expand-file-name file)) | |
3557 (if (ange-ftp-ftp-name file) | |
3558 (or (file-exists-p file) ;guess here for speed | |
3559 (file-directory-p (file-name-directory file))) | |
3560 (ange-ftp-real-file-writable-p file)))) | |
28210 | 3561 |
3562 (defun ange-ftp-file-readable-p (file) | |
33533 | 3563 (let ((ange-ftp-process-verbose nil)) |
3564 (setq file (expand-file-name file)) | |
3565 (if (ange-ftp-ftp-name file) | |
3566 (file-exists-p file) | |
3567 (ange-ftp-real-file-readable-p file)))) | |
28210 | 3568 |
3569 (defun ange-ftp-file-executable-p (file) | |
33533 | 3570 (let ((ange-ftp-process-verbose nil)) |
3571 (setq file (expand-file-name file)) | |
3572 (if (ange-ftp-ftp-name file) | |
3573 (file-exists-p file) | |
3574 (ange-ftp-real-file-executable-p file)))) | |
28210 | 3575 |
3576 (defun ange-ftp-delete-file (file) | |
3577 (interactive "fDelete file: ") | |
3578 (setq file (expand-file-name file)) | |
3579 (let ((parsed (ange-ftp-ftp-name file))) | |
3580 (if parsed | |
3581 (let* ((host (nth 0 parsed)) | |
3582 (user (nth 1 parsed)) | |
3583 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3584 (abbr (ange-ftp-abbreviate-filename file)) | |
3585 (result (ange-ftp-send-cmd host user | |
3586 (list 'delete name) | |
3587 (format "Deleting %s" abbr)))) | |
3588 (or (car result) | |
3589 (signal 'ftp-error | |
3590 (list | |
3591 "Removing old name" | |
3592 (format "FTP Error: \"%s\"" (cdr result)) | |
3593 file))) | |
3594 (ange-ftp-delete-file-entry file)) | |
3595 (ange-ftp-real-delete-file file)))) | |
3596 | |
30459 | 3597 (defun ange-ftp-file-modtime (file) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3598 "Return the modification time of remote file FILE. |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3599 Value is (0 0) if the modification time cannot be determined." |
30459 | 3600 (let* ((parsed (ange-ftp-ftp-name file)) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3601 ;; At least one FTP server (wu-ftpd) can return a "226 |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3602 ;; Transfer complete" before the "213 MODTIME". Let's skip |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3603 ;; that. |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3604 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226")) |
30459 | 3605 (res (ange-ftp-send-cmd (car parsed) (cadr parsed) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3606 (list 'quote "mdtm" (cadr (cdr parsed))))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3607 (line (cdr res)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3608 (modtime '(0 0))) |
38328
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3609 ;; MDTM should return "213 YYYYMMDDhhmmss" GMT on success |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3610 ;; following the Internet draft for FTP extensions. |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3611 ;; Bob@rattlesnake.com reports that is returns something different |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3612 ;; for at least one FTP server. So, let's use the response only |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3613 ;; if it matches the Internet draft. |
42251
d2e8e0db6666
(ange-ftp-file-modtime): Use save-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
40361
diff
changeset
|
3614 (when (save-match-data (string-match "^213 [0-9]\\{14\\}$" line)) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3615 (setq modtime |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3616 (encode-time |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3617 (string-to-number (substring line 16 18)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3618 (string-to-number (substring line 14 16)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3619 (string-to-number (substring line 12 14)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3620 (string-to-number (substring line 10 12)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3621 (string-to-number (substring line 8 10)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3622 (string-to-number (substring line 4 8)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3623 0))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3624 modtime)) |
30459 | 3625 |
28210 | 3626 (defun ange-ftp-verify-visited-file-modtime (buf) |
3627 (let ((name (buffer-file-name buf))) | |
3628 (if (and (stringp name) (ange-ftp-ftp-name name)) | |
30459 | 3629 (let ((file-mdtm (ange-ftp-file-modtime name)) |
3630 (buf-mdtm (with-current-buffer buf (visited-file-modtime)))) | |
3631 (or (zerop (car file-mdtm)) | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
3632 (<= (float-time file-mdtm) (float-time buf-mdtm)))) |
28210 | 3633 (ange-ftp-real-verify-visited-file-modtime buf)))) |
3634 | |
3635 ;;;; ------------------------------------------------------------ | |
3636 ;;;; File copying support... totally re-written 6/24/92. | |
3637 ;;;; ------------------------------------------------------------ | |
3638 | |
3639 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3640 (if (file-exists-p absname) | |
3641 (if (not interactive) | |
3642 (signal 'file-already-exists (list absname)) | |
3643 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3644 absname querystring))) | |
3645 (signal 'file-already-exists (list absname)))))) | |
3646 | |
3647 ;; async local copy commented out for now since I don't seem to get | |
3648 ;; the process sentinel called for some processes. | |
3649 ;; | |
3650 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3651 ;; keep-date cont) | |
3652 ;; "Kludge to copy a local file and call a continuation when the copy | |
3653 ;; finishes." | |
3654 ;; ;; check to see if we can overwrite | |
3655 ;; (if (or (not ok-if-already-exists) | |
3656 ;; (numberp ok-if-already-exists)) | |
30459 | 3657 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3658 ;; (numberp ok-if-already-exists))) |
3659 ;; (let ((proc (start-process " *copy*" | |
3660 ;; (generate-new-buffer "*copy*") | |
3661 ;; "cp" | |
3662 ;; filename | |
3663 ;; newname)) | |
3664 ;; res) | |
3665 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3666 ;; (process-kill-without-query proc) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3667 ;; (with-current-buffer (process-buffer proc) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3668 ;; (set (make-local-variable 'copy-cont) cont)))) |
30459 | 3669 ;; |
28210 | 3670 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) |
3671 ;; (save-excursion | |
3672 ;; (set-buffer (process-buffer proc)) | |
3673 ;; (let ((cont copy-cont) | |
3674 ;; (result (buffer-string))) | |
3675 ;; (unwind-protect | |
3676 ;; (if (and (string-equal status "finished\n") | |
3677 ;; (zerop (length result))) | |
3678 ;; (ange-ftp-call-cont cont t nil) | |
3679 ;; (ange-ftp-call-cont cont | |
3680 ;; nil | |
3681 ;; (if (zerop (length result)) | |
3682 ;; (substring status 0 -1) | |
3683 ;; (substring result 0 -1)))) | |
3684 ;; (kill-buffer (current-buffer)))))) | |
3685 | |
3686 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3687 ;; asynchronously if asked nicely. | |
3688 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists | |
3689 keep-date &optional msg cont nowait) | |
3690 (setq filename (expand-file-name filename) | |
3691 newname (expand-file-name newname)) | |
3692 | |
3693 ;; canonicalize newname if a directory. | |
3694 (if (file-directory-p newname) | |
3695 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3696 | |
3697 (let ((f-parsed (ange-ftp-ftp-name filename)) | |
3698 (t-parsed (ange-ftp-ftp-name newname))) | |
3699 | |
3700 ;; local file to local file copy? | |
3701 (if (and (not f-parsed) (not t-parsed)) | |
3702 (progn | |
3703 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3704 keep-date) | |
3705 (if cont | |
3706 (ange-ftp-call-cont cont t "Copied locally"))) | |
3707 ;; one or both files are remote. | |
3708 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3709 (f-user (and f-parsed (nth 1 f-parsed))) | |
3710 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) | |
3711 (f-abbr (ange-ftp-abbreviate-filename filename)) | |
3712 (t-host (and t-parsed (nth 0 t-parsed))) | |
3713 (t-user (and t-parsed (nth 1 t-parsed))) | |
3714 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) | |
3715 (t-abbr (ange-ftp-abbreviate-filename newname filename)) | |
3716 (binary (or (ange-ftp-binary-file filename) | |
3717 (ange-ftp-binary-file newname) | |
3718 (and (memq (ange-ftp-host-type f-host f-user) | |
3719 '(unix dumb-unix)) | |
3720 (memq (ange-ftp-host-type t-host t-user) | |
3721 '(unix dumb-unix))))) | |
3722 temp1 | |
3723 temp2) | |
3724 | |
3725 ;; check to see if we can overwrite | |
3726 (if (or (not ok-if-already-exists) | |
3727 (numberp ok-if-already-exists)) | |
30459 | 3728 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3729 (numberp ok-if-already-exists))) |
3730 | |
3731 ;; do the copying. | |
3732 (if f-parsed | |
30459 | 3733 |
28210 | 3734 ;; filename was remote. |
3735 (progn | |
3736 (if (or (ange-ftp-use-gateway-p f-host) | |
3737 t-parsed) | |
3738 ;; have to use intermediate file if we are getting via | |
3739 ;; gateway machine or we are doing a remote to remote copy. | |
3740 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
30459 | 3741 |
28210 | 3742 (if binary |
3743 (ange-ftp-set-binary-mode f-host f-user)) | |
3744 | |
3745 (ange-ftp-send-cmd | |
3746 f-host | |
3747 f-user | |
3748 (list 'get f-name (or temp1 (ange-ftp-quote-string newname))) | |
3749 (or msg | |
3750 (if (and temp1 t-parsed) | |
3751 (format "Getting %s" f-abbr) | |
3752 (format "Copying %s to %s" f-abbr t-abbr))) | |
3753 (list (function ange-ftp-cf1) | |
3754 filename newname binary msg | |
3755 f-parsed f-host f-user f-name f-abbr | |
3756 t-parsed t-host t-user t-name t-abbr | |
3757 temp1 temp2 cont nowait) | |
3758 nowait)) | |
3759 | |
3760 ;; filename wasn't remote. newname must be remote. call the | |
3761 ;; function which does the remainder of the copying work. | |
3762 (ange-ftp-cf1 t nil | |
3763 filename newname binary msg | |
3764 f-parsed f-host f-user f-name f-abbr | |
3765 t-parsed t-host t-user t-name t-abbr | |
3766 nil nil cont nowait)))))) | |
3767 | |
3768 (defvar ange-ftp-waiting-flag nil) | |
3769 | |
3770 ;; next part of copying routine. | |
3771 (defun ange-ftp-cf1 (result line | |
3772 filename newname binary msg | |
3773 f-parsed f-host f-user f-name f-abbr | |
3774 t-parsed t-host t-user t-name t-abbr | |
3775 temp1 temp2 cont nowait) | |
3776 (if line | |
3777 ;; filename must have been remote, and we must have just done a GET. | |
3778 (unwind-protect | |
3779 (or result | |
3780 ;; GET failed for some reason. Clean up and get out. | |
3781 (progn | |
3782 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3783 (or cont | |
3784 (if ange-ftp-waiting-flag | |
3785 (throw 'ftp-error t) | |
3786 (signal 'ftp-error | |
3787 (list "Opening input file" | |
3788 (format "FTP Error: \"%s\"" line) | |
3789 filename)))))) | |
3790 ;; cleanup | |
3791 (if binary | |
3792 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3793 | |
3794 (if result | |
3795 ;; We now have to copy either temp1 or filename to newname. | |
3796 (if t-parsed | |
30459 | 3797 |
28210 | 3798 ;; newname was remote. |
3799 (progn | |
3800 (if (ange-ftp-use-gateway-p t-host) | |
3801 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
30459 | 3802 |
28210 | 3803 ;; make sure data is moved into the right place for the |
3804 ;; outgoing transfer. gateway temporary files complicate | |
3805 ;; things nicely. | |
3806 (if temp1 | |
3807 (if temp2 | |
3808 (if (string-equal temp1 temp2) | |
3809 (setq temp1 nil) | |
3810 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3811 (setq temp2 temp1 temp1 nil)) | |
3812 (if temp2 | |
3813 (ange-ftp-real-copy-file filename temp2 t))) | |
30459 | 3814 |
28210 | 3815 (if binary |
3816 (ange-ftp-set-binary-mode t-host t-user)) | |
3817 | |
3818 ;; tell the process filter what size the file is. | |
3819 (let ((attr (file-attributes (or temp2 filename)))) | |
3820 (if attr | |
3821 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3822 | |
3823 (ange-ftp-send-cmd | |
3824 t-host | |
3825 t-user | |
3826 (list 'put (or temp2 filename) t-name) | |
3827 (or msg | |
3828 (if (and temp2 f-parsed) | |
3829 (format "Putting %s" newname) | |
3830 (format "Copying %s to %s" f-abbr t-abbr))) | |
3831 (list (function ange-ftp-cf2) | |
3832 newname t-host t-user binary temp1 temp2 cont) | |
3833 nowait)) | |
30459 | 3834 |
28210 | 3835 ;; newname wasn't remote. |
3836 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3837 | |
3838 ;; first copy failed, tell caller | |
3839 (ange-ftp-call-cont cont result line))) | |
3840 | |
3841 ;; last part of copying routine. | |
3842 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3843 (unwind-protect | |
3844 (if line | |
3845 ;; result from doing a local to remote copy. | |
3846 (unwind-protect | |
3847 (progn | |
3848 (or result | |
3849 (or cont | |
3850 (if ange-ftp-waiting-flag | |
3851 (throw 'ftp-error t) | |
3852 (signal 'ftp-error | |
3853 (list "Opening output file" | |
3854 (format "FTP Error: \"%s\"" line) | |
3855 newname))))) | |
30459 | 3856 |
28210 | 3857 (ange-ftp-add-file-entry newname)) |
30459 | 3858 |
28210 | 3859 ;; cleanup. |
3860 (if binary | |
3861 (ange-ftp-set-ascii-mode t-host t-user))) | |
30459 | 3862 |
28210 | 3863 ;; newname was local. |
3864 (if temp1 | |
3865 (ange-ftp-real-copy-file temp1 newname t))) | |
30459 | 3866 |
28210 | 3867 ;; clean up |
3868 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3869 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3870 (ange-ftp-call-cont cont result line))) | |
3871 | |
3872 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3873 keep-date) | |
3874 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3875 (ange-ftp-copy-file-internal filename | |
3876 newname | |
3877 ok-if-already-exists | |
3878 keep-date | |
3879 nil | |
3880 nil | |
3881 (interactive-p))) | |
39839
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3882 |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3883 (defun ange-ftp-copy-files-async (okay-p line verbose-p files) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3884 "Copy some files in the background. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3885 Arguments: (OKAY-P LINE VERBOSE-P FILES) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3886 OKAY-P must be T, and LINE does not matter. They are here to make this |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3887 function a valid CONT argument for `ange-ftp-raw-send-cmd'. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3888 If VERBOSE-P is non-nil, print progress report in the echo area. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3889 When all the files have been copied already, a message is shown anyway. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3890 FILES is a list of files to copy in the form |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3891 (from-file to-file ok-if-already-exists keep-date) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3892 E.g., |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3893 (ange-ftp-copy-files-async t nil t '((\"a\" \"b\" t t) (\"c\" \"d\" t t)))" |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3894 (unless okay-p (error "%s: %s" 'ange-ftp-copy-files-async line)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3895 (if files |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3896 (let* ((ff (car files)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3897 (from-file (nth 0 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3898 (to-file (nth 1 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3899 (ok-if-exists (nth 2 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3900 (keep-date (nth 3 ff))) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3901 (ange-ftp-copy-file-internal |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3902 from-file to-file ok-if-exists keep-date |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3903 (and verbose-p (format "%s --> %s" from-file to-file)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3904 (list 'ange-ftp-copy-files-async verbose-p (cdr files)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3905 t)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3906 (message "%s: done" 'ange-ftp-copy-files-async))) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3907 |
28210 | 3908 |
3909 ;;;; ------------------------------------------------------------ | |
3910 ;;;; File renaming support. | |
3911 ;;;; ------------------------------------------------------------ | |
3912 | |
3913 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) | |
3914 "Rename remote file FILE to remote file NEWNAME." | |
3915 (let ((f-host (nth 0 f-parsed)) | |
3916 (f-user (nth 1 f-parsed)) | |
3917 (t-host (nth 0 t-parsed)) | |
3918 (t-user (nth 1 t-parsed))) | |
3919 (if (and (string-equal f-host t-host) | |
3920 (string-equal f-user t-user)) | |
3921 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) | |
3922 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) | |
3923 (cmd (list 'rename f-name t-name)) | |
3924 (fabbr (ange-ftp-abbreviate-filename filename)) | |
3925 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3926 (result (ange-ftp-send-cmd f-host f-user cmd | |
3927 (format "Renaming %s to %s" | |
3928 fabbr | |
3929 nabbr)))) | |
3930 (or (car result) | |
3931 (signal 'ftp-error | |
3932 (list | |
3933 "Renaming" | |
3934 (format "FTP Error: \"%s\"" (cdr result)) | |
3935 filename | |
3936 newname))) | |
3937 (ange-ftp-add-file-entry newname) | |
3938 (ange-ftp-delete-file-entry filename)) | |
3939 (ange-ftp-copy-file-internal filename newname t nil) | |
3940 (delete-file filename)))) | |
3941 | |
3942 (defun ange-ftp-rename-local-to-remote (filename newname) | |
3943 "Rename local FILENAME to remote file NEWNAME." | |
3944 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
3945 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3946 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3947 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3948 (let (ange-ftp-process-verbose) | |
3949 (delete-file filename)))) | |
3950 | |
3951 (defun ange-ftp-rename-remote-to-local (filename newname) | |
3952 "Rename remote file FILENAME to local file NEWNAME." | |
3953 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
3954 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3955 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3956 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3957 (let (ange-ftp-process-verbose) | |
3958 (delete-file filename)))) | |
3959 | |
3960 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3961 (interactive "fRename file: \nFRename %s to file: \np") | |
3962 (setq filename (expand-file-name filename)) | |
3963 (setq newname (expand-file-name newname)) | |
3964 (let* ((f-parsed (ange-ftp-ftp-name filename)) | |
3965 (t-parsed (ange-ftp-ftp-name newname))) | |
3966 (if (and (or f-parsed t-parsed) | |
3967 (or (not ok-if-already-exists) | |
3968 (numberp ok-if-already-exists))) | |
3969 (ange-ftp-barf-or-query-if-file-exists | |
3970 newname | |
3971 "rename to it" | |
3972 (numberp ok-if-already-exists))) | |
3973 (if f-parsed | |
3974 (if t-parsed | |
3975 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3976 t-parsed) | |
3977 (ange-ftp-rename-remote-to-local filename newname)) | |
3978 (if t-parsed | |
3979 (ange-ftp-rename-local-to-remote filename newname) | |
3980 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3981 | |
3982 ;;;; ------------------------------------------------------------ | |
3983 ;;;; File name completion support. | |
3984 ;;;; ------------------------------------------------------------ | |
3985 | |
3986 ;; If the file entry SYM is a symlink, returns whether its file exists. | |
3987 ;; Note that `ange-ftp-this-dir' is used as a free variable. | |
3988 (defun ange-ftp-file-entry-active-p (sym) | |
3989 (let ((val (get sym 'val))) | |
3990 (or (not (stringp val)) | |
3991 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3992 | |
3993 ;; If the file entry is not a directory (nor a symlink pointing to a directory) | |
3994 ;; returns whether the file (or file pointed to by the symlink) is ignored | |
3995 ;; by completion-ignored-extensions. | |
3996 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' | |
3997 ;; are used as free variables. | |
3998 (defun ange-ftp-file-entry-not-ignored-p (sym) | |
3999 (let ((val (get sym 'val)) | |
4000 (symname (symbol-name sym))) | |
4001 (if (stringp val) | |
4002 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
4003 (or (file-directory-p file) | |
4004 (and (file-exists-p file) | |
4005 (not (string-match ange-ftp-completion-ignored-pattern | |
4006 symname))))) | |
4007 (or val ; is a directory name | |
4008 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
4009 | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4010 (defun ange-ftp-root-dir-p (dir) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4011 ;; Maybe we should use something more like |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4012 ;; (equal dir (file-name-directory (directory-file-name dir))) -stef |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4013 (or (and (eq system-type 'windows-nt) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4014 (string-match "^[a-zA-Z]:[/\\]$" dir)) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4015 (string-equal "/" dir))) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4016 |
28210 | 4017 (defun ange-ftp-file-name-all-completions (file dir) |
4018 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
4019 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
4020 (progn | |
4021 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
4022 (setq ange-ftp-this-dir | |
4023 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
4024 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
4025 (completions | |
4026 (all-completions file tbl | |
4027 (function ange-ftp-file-entry-active-p)))) | |
4028 | |
4029 ;; see whether each matching file is a directory or not... | |
4030 (mapcar | |
30459 | 4031 (lambda (file) |
4032 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
4033 (if (and ent | |
4034 (or (not (stringp ent)) | |
4035 (file-directory-p | |
4036 (ange-ftp-expand-symlink ent | |
4037 ange-ftp-this-dir)))) | |
4038 (concat file "/") | |
4039 file))) | |
28210 | 4040 completions))) |
4041 | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4042 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 4043 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) |
4044 (ange-ftp-real-file-name-all-completions file | |
4045 ange-ftp-this-dir)) | |
4046 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
4047 | |
4048 (defun ange-ftp-file-name-completion (file dir) | |
4049 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
4050 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
4051 (progn | |
4052 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
4053 (if (equal file "") | |
4054 "" | |
4055 (setq ange-ftp-this-dir | |
4056 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
4057 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
4058 (ange-ftp-completion-ignored-pattern | |
30459 | 4059 (mapconcat (lambda (s) (if (stringp s) |
4060 (concat (regexp-quote s) "$") | |
4061 "/")) ; / never in filename | |
28210 | 4062 completion-ignored-extensions |
4063 "\\|"))) | |
4064 (save-match-data | |
4065 (or (ange-ftp-file-name-completion-1 | |
4066 file tbl ange-ftp-this-dir | |
4067 (function ange-ftp-file-entry-not-ignored-p)) | |
4068 (ange-ftp-file-name-completion-1 | |
4069 file tbl ange-ftp-this-dir | |
4070 (function ange-ftp-file-entry-active-p))))))) | |
4071 | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4072 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 4073 (try-completion |
4074 file | |
4075 (nconc (ange-ftp-generate-root-prefixes) | |
4076 (mapcar 'list | |
4077 (ange-ftp-real-file-name-all-completions | |
4078 file ange-ftp-this-dir)))) | |
4079 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
4080 | |
4081 | |
4082 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
4083 (let ((bestmatch (try-completion file tbl predicate))) | |
4084 (if bestmatch | |
4085 (if (eq bestmatch t) | |
4086 (if (file-directory-p (expand-file-name file dir)) | |
4087 (concat file "/") | |
4088 t) | |
4089 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
4090 (file-directory-p | |
4091 (expand-file-name bestmatch dir))) | |
4092 (concat bestmatch "/") | |
4093 bestmatch))))) | |
4094 | |
4095 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
4096 ;; ange-ftp's cache whilst doing filename completion. | |
4097 ;; | |
4098 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
4099 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
4100 | |
4101 ;; The autoload cookie is to make sure the doc is always available. | |
4102 ;;;###autoload (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | |
4103 ;;;###autoload | |
4104 (defun ange-ftp-reread-dir (&optional dir) | |
4105 "Reread remote directory DIR to update the directory cache. | |
4106 The implementation of remote ftp file names caches directory contents | |
4107 for speed. Therefore, when new remote files are created, Emacs | |
4108 may not know they exist. You can use this command to reread a specific | |
4109 directory, so that Emacs will know its current contents." | |
4110 (interactive) | |
4111 (if dir | |
4112 (setq dir (expand-file-name dir)) | |
4113 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
4114 (if (ange-ftp-ftp-name dir) | |
4115 (progn | |
4116 (setq ange-ftp-ls-cache-file nil) | |
4117 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
4118 (ange-ftp-get-files dir t)))) | |
4119 | |
4120 (defun ange-ftp-make-directory (dir &optional parents) | |
4121 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) | |
4122 (if parents | |
4123 (let ((parent (file-name-directory (directory-file-name dir)))) | |
4124 (or (file-exists-p parent) | |
4125 (ange-ftp-make-directory parent parents)))) | |
4126 (if (file-exists-p dir) | |
4127 (error "Cannot make directory %s: file already exists" dir) | |
4128 (let ((parsed (ange-ftp-ftp-name dir))) | |
4129 (if parsed | |
4130 (let* ((host (nth 0 parsed)) | |
4131 (user (nth 1 parsed)) | |
4132 ;; Some ftp's on unix machines (at least on Suns) | |
4133 ;; insist that mkdir take a filename, and not a | |
4134 ;; directory-name name as an arg. Argh!! This is a bug. | |
4135 ;; Non-unix machines will probably always insist | |
4136 ;; that mkdir takes a directory-name as an arg | |
4137 ;; (as the ftp man page says it should). | |
4138 (name (ange-ftp-quote-string | |
4139 (if (eq (ange-ftp-host-type host) 'unix) | |
4140 (ange-ftp-real-directory-file-name (nth 2 parsed)) | |
4141 (ange-ftp-real-file-name-as-directory | |
4142 (nth 2 parsed))))) | |
4143 (abbr (ange-ftp-abbreviate-filename dir)) | |
4144 (result (ange-ftp-send-cmd host user | |
4145 (list 'mkdir name) | |
4146 (format "Making directory %s" | |
4147 abbr)))) | |
4148 (or (car result) | |
4149 (ange-ftp-error host user | |
4150 (format "Could not make directory %s: %s" | |
4151 dir | |
4152 (cdr result)))) | |
4153 (ange-ftp-add-file-entry dir t)) | |
4154 (ange-ftp-real-make-directory dir))))) | |
4155 | |
4156 (defun ange-ftp-delete-directory (dir) | |
4157 (if (file-directory-p dir) | |
4158 (let ((parsed (ange-ftp-ftp-name dir))) | |
4159 (if parsed | |
4160 (let* ((host (nth 0 parsed)) | |
4161 (user (nth 1 parsed)) | |
4162 ;; Some ftp's on unix machines (at least on Suns) | |
4163 ;; insist that rmdir take a filename, and not a | |
4164 ;; directory-name name as an arg. Argh!! This is a bug. | |
4165 ;; Non-unix machines will probably always insist | |
4166 ;; that rmdir takes a directory-name as an arg | |
4167 ;; (as the ftp man page says it should). | |
4168 (name (ange-ftp-quote-string | |
4169 (if (eq (ange-ftp-host-type host) 'unix) | |
4170 (ange-ftp-real-directory-file-name | |
4171 (nth 2 parsed)) | |
4172 (ange-ftp-real-file-name-as-directory | |
4173 (nth 2 parsed))))) | |
4174 (abbr (ange-ftp-abbreviate-filename dir)) | |
4175 (result (ange-ftp-send-cmd host user | |
4176 (list 'rmdir name) | |
4177 (format "Removing directory %s" | |
4178 abbr)))) | |
4179 (or (car result) | |
4180 (ange-ftp-error host user | |
4181 (format "Could not remove directory %s: %s" | |
4182 dir | |
4183 (cdr result)))) | |
4184 (ange-ftp-delete-file-entry dir t)) | |
4185 (ange-ftp-real-delete-directory dir))) | |
4186 (error "Not a directory: %s" dir))) | |
4187 | |
4188 ;; Make a local copy of FILE and return its name. | |
4189 | |
4190 (defun ange-ftp-file-local-copy (file) | |
4191 (let* ((fn1 (expand-file-name file)) | |
4192 (pa1 (ange-ftp-ftp-name fn1))) | |
4193 (if pa1 | |
4194 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) | |
4195 (ange-ftp-copy-file-internal fn1 tmp1 t nil | |
4196 (format "Getting %s" fn1)) | |
4197 tmp1)))) | |
4198 | |
4199 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) | |
4200 (if (ange-ftp-ftp-name file) | |
4201 (let ((tryfiles (if nosuffix | |
4202 (list file) | |
4203 (list (concat file ".elc") (concat file ".el") file))) | |
4204 ;; make sure there are no references to temp files | |
4205 (load-force-doc-strings t) | |
4206 copy) | |
4207 (while (and tryfiles (not copy)) | |
4208 (catch 'ftp-error | |
4209 (let ((ange-ftp-waiting-flag t)) | |
4210 (condition-case error | |
4211 (setq copy (ange-ftp-file-local-copy (car tryfiles))) | |
4212 (ftp-error nil)))) | |
4213 (setq tryfiles (cdr tryfiles))) | |
4214 (if copy | |
4215 (unwind-protect | |
4216 (funcall 'load copy noerror nomessage nosuffix) | |
4217 (delete-file copy)) | |
4218 (or noerror | |
4219 (signal 'file-error (list "Cannot open load file" file))) | |
4220 nil)) | |
4221 (ange-ftp-real-load file noerror nomessage nosuffix))) | |
4222 | |
4223 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. | |
4224 (defun ange-ftp-unhandled-file-name-directory (filename) | |
4225 (file-name-directory ange-ftp-tmp-name-template)) | |
4226 | |
4227 | |
4228 ;; Need the following functions for making filenames of compressed | |
4229 ;; files, because some OS's (unlike UNIX) do not allow a filename to | |
4230 ;; have two extensions. | |
4231 | |
4232 (defvar ange-ftp-make-compressed-filename-alist nil | |
4233 "Alist of host-type-specific functions to process file names for compression. | |
4234 Each element has the form (TYPE . FUNC). | |
4235 FUNC should take one argument, a file name, and return a list | |
4236 of the form (COMPRESSING NEWNAME). | |
30459 | 4237 COMPRESSING should be t if the specified file should be compressed, |
28210 | 4238 and nil if it should be uncompressed (that is, if it is a compressed file). |
4239 NEWNAME should be the name to give the new compressed or uncompressed file.") | |
4240 | |
4241 (defun ange-ftp-dired-compress-file (name) | |
4242 (let ((parsed (ange-ftp-ftp-name name)) | |
4243 conversion-func) | |
4244 (if (and parsed | |
4245 (setq conversion-func | |
4246 (cdr (assq (ange-ftp-host-type (car parsed)) | |
4247 ange-ftp-make-compressed-filename-alist)))) | |
4248 (let* ((decision | |
4249 (save-match-data (funcall conversion-func name))) | |
4250 (compressing (car decision)) | |
4251 (newfile (nth 1 decision))) | |
4252 (if compressing | |
4253 (ange-ftp-compress name newfile) | |
4254 (ange-ftp-uncompress name newfile))) | |
4255 (let (file-name-handler-alist) | |
4256 (dired-compress-file name))))) | |
4257 | |
4258 ;; Copy FILE to this machine, compress it, and copy out to NFILE. | |
4259 (defun ange-ftp-compress (file nfile) | |
4260 (let* ((parsed (ange-ftp-ftp-name file)) | |
4261 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4262 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4263 (abbr (ange-ftp-abbreviate-filename file)) | |
4264 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4265 (msg1 (format "Getting %s" abbr)) | |
4266 (msg2 (format "Putting %s" nabbr))) | |
4267 (unwind-protect | |
4268 (progn | |
4269 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4270 (and ange-ftp-process-verbose | |
4271 (ange-ftp-message "Compressing %s..." abbr)) | |
4272 (call-process-region (point) | |
4273 (point) | |
4274 shell-file-name | |
4275 nil | |
4276 t | |
4277 nil | |
4278 "-c" | |
4279 (format "compress -f -c < %s > %s" tmp1 tmp2)) | |
4280 (and ange-ftp-process-verbose | |
4281 (ange-ftp-message "Compressing %s...done" abbr)) | |
4282 (if (zerop (buffer-size)) | |
4283 (progn | |
4284 (let (ange-ftp-process-verbose) | |
4285 (delete-file file)) | |
4286 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
4287 (ange-ftp-del-tmp-name tmp1) | |
4288 (ange-ftp-del-tmp-name tmp2)))) | |
30459 | 4289 |
28210 | 4290 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
4291 (defun ange-ftp-uncompress (file nfile) | |
4292 (let* ((parsed (ange-ftp-ftp-name file)) | |
4293 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4294 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4295 (abbr (ange-ftp-abbreviate-filename file)) | |
4296 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4297 (msg1 (format "Getting %s" abbr)) | |
4298 (msg2 (format "Putting %s" nabbr)) | |
4299 ;; ;; Cheap hack because of problems with binary file transfers from | |
4300 ;; ;; VMS hosts. | |
4301 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) | |
4302 ) | |
4303 (unwind-protect | |
4304 (progn | |
4305 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4306 (and ange-ftp-process-verbose | |
4307 (ange-ftp-message "Uncompressing %s..." abbr)) | |
4308 (call-process-region (point) | |
4309 (point) | |
4310 shell-file-name | |
4311 nil | |
4312 t | |
4313 nil | |
4314 "-c" | |
4315 (format "uncompress -c < %s > %s" tmp1 tmp2)) | |
4316 (and ange-ftp-process-verbose | |
4317 (ange-ftp-message "Uncompressing %s...done" abbr)) | |
4318 (if (zerop (buffer-size)) | |
4319 (progn | |
4320 (let (ange-ftp-process-verbose) | |
4321 (delete-file file)) | |
4322 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
4323 (ange-ftp-del-tmp-name tmp1) | |
4324 (ange-ftp-del-tmp-name tmp2)))) | |
4325 | |
4326 (defun ange-ftp-find-backup-file-name (fn) | |
4327 ;; Either return the ordinary backup name, etc., | |
4328 ;; or return nil meaning don't make a backup. | |
4329 (if ange-ftp-make-backup-files | |
4330 (ange-ftp-real-find-backup-file-name fn))) | |
4331 | |
4332 ;;; Define the handler for special file names | |
4333 ;;; that causes ange-ftp to be invoked. | |
4334 | |
4335 ;;;###autoload | |
4336 (defun ange-ftp-hook-function (operation &rest args) | |
4337 (let ((fn (get operation 'ange-ftp))) | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4338 (if fn (save-match-data (apply fn args)) |
28210 | 4339 (ange-ftp-run-real-handler operation args)))) |
4340 | |
4341 | |
4342 ;;; This regexp takes care of real ange-ftp file names (with a slash | |
4343 ;;; and colon). | |
4344 ;;; Don't allow the host name to end in a period--some systems use /.: | |
4345 ;;;###autoload | |
4346 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) | |
4347 (setq file-name-handler-alist | |
4348 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) | |
4349 file-name-handler-alist))) | |
4350 | |
4351 ;;; This regexp recognizes absolute filenames with only one component, | |
4352 ;;; for the sake of hostname completion. | |
4353 ;;;###autoload | |
4354 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) | |
4355 (setq file-name-handler-alist | |
4356 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) | |
4357 file-name-handler-alist))) | |
4358 | |
4359 ;;; This regexp recognizes absolute filenames with only one component | |
4360 ;;; on Windows, for the sake of hostname completion. | |
4361 ;;; NB. Do not mark this as autoload, because it is very common to | |
4362 ;;; do completions in the root directory of drives on Windows. | |
4363 (and (memq system-type '(ms-dos windows-nt)) | |
4364 (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist) | |
4365 (setq file-name-handler-alist | |
30459 | 4366 (cons '("^[a-zA-Z]:/[^/:]*\\'" . |
28210 | 4367 ange-ftp-completion-hook-function) |
4368 file-name-handler-alist)))) | |
4369 | |
4370 ;;; The above two forms are sufficient to cause this file to be loaded | |
4371 ;;; if the user ever uses a file name with a colon in it. | |
4372 | |
30459 | 4373 ;;; This sets the mode |
28210 | 4374 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
4375 (setq find-file-hooks | |
4376 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) | |
4377 | |
4378 ;;; Now say where to find the handlers for particular operations. | |
4379 | |
4380 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
4381 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
4382 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
4383 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
4384 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
4385 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
4386 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
4387 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
4388 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
4389 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
4390 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
4391 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
4392 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) | |
4393 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) | |
4394 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
4395 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
4396 (put 'verify-visited-file-modtime 'ange-ftp | |
4397 'ange-ftp-verify-visited-file-modtime) | |
4398 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
4399 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
4400 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
4401 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
4402 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
4403 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
30481 | 4404 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p) |
28210 | 4405 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) |
4406 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
4407 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) | |
4408 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) | |
4409 (put 'unhandled-file-name-directory 'ange-ftp | |
4410 'ange-ftp-unhandled-file-name-directory) | |
4411 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) | |
4412 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) | |
4413 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) | |
4414 (put 'load 'ange-ftp 'ange-ftp-load) | |
4415 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name) | |
4416 | |
4417 ;; Turn off truename processing to save time. | |
4418 ;; Treat each name as its own truename. | |
4419 (put 'file-truename 'ange-ftp 'identity) | |
4420 | |
4421 ;; Turn off RCS/SCCS processing to save time. | |
4422 ;; This returns nil for any file name as argument. | |
4423 (put 'vc-registered 'ange-ftp 'null) | |
4424 | |
4425 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) | |
4426 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) | |
4427 | |
4428 ;;; Define ways of getting at unmodified Emacs primitives, | |
4429 ;;; turning off our handler. | |
4430 | |
4431 (defun ange-ftp-run-real-handler (operation args) | |
4432 (let ((inhibit-file-name-handlers | |
4433 (cons 'ange-ftp-hook-function | |
4434 (cons 'ange-ftp-completion-hook-function | |
4435 (and (eq inhibit-file-name-operation operation) | |
4436 inhibit-file-name-handlers)))) | |
4437 (inhibit-file-name-operation operation)) | |
4438 (apply operation args))) | |
4439 | |
4440 (defun ange-ftp-real-file-name-directory (&rest args) | |
4441 (ange-ftp-run-real-handler 'file-name-directory args)) | |
4442 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
4443 (ange-ftp-run-real-handler 'file-name-nondirectory args)) | |
4444 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
4445 (ange-ftp-run-real-handler 'file-name-as-directory args)) | |
4446 (defun ange-ftp-real-directory-file-name (&rest args) | |
4447 (ange-ftp-run-real-handler 'directory-file-name args)) | |
4448 (defun ange-ftp-real-expand-file-name (&rest args) | |
4449 (ange-ftp-run-real-handler 'expand-file-name args)) | |
4450 (defun ange-ftp-real-make-directory (&rest args) | |
4451 (ange-ftp-run-real-handler 'make-directory args)) | |
4452 (defun ange-ftp-real-delete-directory (&rest args) | |
4453 (ange-ftp-run-real-handler 'delete-directory args)) | |
4454 (defun ange-ftp-real-insert-file-contents (&rest args) | |
4455 (ange-ftp-run-real-handler 'insert-file-contents args)) | |
4456 (defun ange-ftp-real-directory-files (&rest args) | |
4457 (ange-ftp-run-real-handler 'directory-files args)) | |
4458 (defun ange-ftp-real-file-directory-p (&rest args) | |
4459 (ange-ftp-run-real-handler 'file-directory-p args)) | |
4460 (defun ange-ftp-real-file-writable-p (&rest args) | |
4461 (ange-ftp-run-real-handler 'file-writable-p args)) | |
4462 (defun ange-ftp-real-file-readable-p (&rest args) | |
4463 (ange-ftp-run-real-handler 'file-readable-p args)) | |
4464 (defun ange-ftp-real-file-executable-p (&rest args) | |
4465 (ange-ftp-run-real-handler 'file-executable-p args)) | |
4466 (defun ange-ftp-real-file-symlink-p (&rest args) | |
4467 (ange-ftp-run-real-handler 'file-symlink-p args)) | |
4468 (defun ange-ftp-real-delete-file (&rest args) | |
4469 (ange-ftp-run-real-handler 'delete-file args)) | |
4470 (defun ange-ftp-real-read-file-name-internal (&rest args) | |
4471 (ange-ftp-run-real-handler 'read-file-name-internal args)) | |
4472 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
4473 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) | |
4474 (defun ange-ftp-real-file-exists-p (&rest args) | |
4475 (ange-ftp-run-real-handler 'file-exists-p args)) | |
4476 (defun ange-ftp-real-write-region (&rest args) | |
4477 (ange-ftp-run-real-handler 'write-region args)) | |
4478 (defun ange-ftp-real-backup-buffer (&rest args) | |
4479 (ange-ftp-run-real-handler 'backup-buffer args)) | |
4480 (defun ange-ftp-real-copy-file (&rest args) | |
4481 (ange-ftp-run-real-handler 'copy-file args)) | |
4482 (defun ange-ftp-real-rename-file (&rest args) | |
4483 (ange-ftp-run-real-handler 'rename-file args)) | |
4484 (defun ange-ftp-real-file-attributes (&rest args) | |
4485 (ange-ftp-run-real-handler 'file-attributes args)) | |
30481 | 4486 (defun ange-ftp-real-file-newer-than-file-p (&rest args) |
4487 (ange-ftp-run-real-handler 'file-newer-than-file-p args)) | |
28210 | 4488 (defun ange-ftp-real-file-name-all-completions (&rest args) |
4489 (ange-ftp-run-real-handler 'file-name-all-completions args)) | |
4490 (defun ange-ftp-real-file-name-completion (&rest args) | |
4491 (ange-ftp-run-real-handler 'file-name-completion args)) | |
4492 (defun ange-ftp-real-insert-directory (&rest args) | |
4493 (ange-ftp-run-real-handler 'insert-directory args)) | |
4494 (defun ange-ftp-real-file-name-sans-versions (&rest args) | |
4495 (ange-ftp-run-real-handler 'file-name-sans-versions args)) | |
4496 (defun ange-ftp-real-shell-command (&rest args) | |
4497 (ange-ftp-run-real-handler 'shell-command args)) | |
4498 (defun ange-ftp-real-load (&rest args) | |
4499 (ange-ftp-run-real-handler 'load args)) | |
4500 (defun ange-ftp-real-find-backup-file-name (&rest args) | |
4501 (ange-ftp-run-real-handler 'find-backup-file-name args)) | |
4502 | |
4503 ;; Here we support using dired on remote hosts. | |
4504 ;; I have turned off the support for using dired on foreign directory formats. | |
4505 ;; That involves too many unclean hooks. | |
30459 | 4506 ;; It would be cleaner to support such operations by |
28210 | 4507 ;; converting the foreign directory format to something dired can understand; |
4508 ;; something close to ls -l output. | |
4509 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. | |
4510 | |
4511 ;; Some of the old dired hooks would still be needed even if this is done. | |
4512 ;; I have preserved (and modernized) those hooks. | |
4513 ;; So the format conversion should be all that is needed. | |
4514 | |
4515 (defun ange-ftp-insert-directory (file switches &optional wildcard full) | |
4516 (let ((short (ange-ftp-abbreviate-filename file)) | |
42397
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4517 (parsed (ange-ftp-ftp-name (expand-file-name file))) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4518 tem) |
28210 | 4519 (if parsed |
42397
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4520 (if (and (not wildcard) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4521 (setq tem (file-symlink-p (directory-file-name file)))) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4522 (ange-ftp-insert-directory |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4523 (ange-ftp-replace-name-component file tem) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4524 switches wildcard full) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4525 (insert |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4526 (if wildcard |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4527 (let ((default-directory (file-name-directory file))) |
47ec068f97d5
(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman <rms@gnu.org>
parents:
42393
diff
changeset
|
4528 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)) |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4529 (ange-ftp-ls file switches full)))) |
28210 | 4530 (ange-ftp-real-insert-directory file switches wildcard full)))) |
4531 | |
4532 (defun ange-ftp-dired-uncache (dir) | |
4533 (if (ange-ftp-ftp-name (expand-file-name dir)) | |
4534 (setq ange-ftp-ls-cache-file nil))) | |
4535 | |
4536 (defvar ange-ftp-sans-version-alist nil | |
4537 "Alist of mapping host type into function to remove file version numbers.") | |
4538 | |
4539 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) | |
4540 (let* ((short (ange-ftp-abbreviate-filename file)) | |
4541 (parsed (ange-ftp-ftp-name short)) | |
4542 host-type func) | |
4543 (if parsed | |
4544 (setq host-type (ange-ftp-host-type (car parsed)) | |
4545 func (cdr (assq (ange-ftp-host-type (car parsed)) | |
4546 ange-ftp-sans-version-alist)))) | |
4547 (if func (funcall func file keep-backup-version) | |
4548 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) | |
4549 | |
4550 ;; This is the handler for shell-command. | |
4551 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) | |
4552 (let* ((parsed (ange-ftp-ftp-name default-directory)) | |
4553 (host (nth 0 parsed)) | |
4554 (user (nth 1 parsed)) | |
4555 (name (nth 2 parsed))) | |
4556 (if (not parsed) | |
4557 (ange-ftp-real-shell-command command output-buffer error-buffer) | |
4558 (if (> (length name) 0) ; else it's $HOME | |
4559 (setq command (concat "cd " name "; " command))) | |
42495
09f1b967d12e
(ange-ftp-shell-command): Remove port specification from the hostname.
Pavel Janík <Pavel@Janik.cz>
parents:
42397
diff
changeset
|
4560 ;; Remove port from the hostname |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4561 (when (string-match "\\(.*\\)#" host) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4562 (setq host (match-string 1 host))) |
28210 | 4563 (setq command |
4564 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4565 ; on a hp-ux machine I tried | |
4566 remote-shell-program host command)) | |
4567 (ange-ftp-message "Remote command '%s' ..." command) | |
4568 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4569 ;; would prepend "cd default-directory" --- which bombs because | |
4570 ;; default-directory is in ange-ftp syntax for remote file names. | |
4571 (ange-ftp-real-shell-command command output-buffer error-buffer)))) | |
4572 | |
4573 ;;; This is the handler for call-process. | |
4574 (defun ange-ftp-dired-call-process (program discard &rest arguments) | |
4575 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4576 ;; The ARGUMENTS are (nearly) always files. | |
4577 (if (ange-ftp-ftp-name default-directory) | |
4578 ;; Can't use ange-ftp-dired-host-type here because the current | |
4579 ;; buffer is *dired-check-process output* | |
4580 (condition-case oops | |
4581 (cond ((equal dired-chmod-program program) | |
4582 (ange-ftp-call-chmod arguments)) | |
4583 ;; ((equal "chgrp" program)) | |
4584 ;; ((equal dired-chown-program program)) | |
4585 (t (error "Unknown remote command: %s" program))) | |
4586 (ftp-error (insert (format "%s: %s, %s\n" | |
4587 (nth 1 oops) | |
4588 (nth 2 oops) | |
4589 (nth 3 oops))) | |
4590 ;; Caller expects nonzero value to mean failure. | |
4591 1) | |
4592 (error (insert (format "%s\n" (nth 1 oops))) | |
4593 1)) | |
4594 (apply 'call-process program nil (not discard) nil arguments))) | |
4595 | |
30459 | 4596 (defvar ange-ftp-remote-shell "rsh" |
28210 | 4597 "Remote shell to use for chmod, if FTP server rejects the `chmod' command.") |
4598 | |
4599 ;; Handle an attempt to run chmod on a remote file | |
4600 ;; by using the ftp chmod command. | |
4601 (defun ange-ftp-call-chmod (args) | |
4602 (if (< (length args) 2) | |
4603 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4604 (let ((mode (car args)) | |
4605 (rest (cdr args))) | |
4606 (if (equal "--" (car rest)) | |
4607 (setq rest (cdr rest))) | |
4608 (mapcar | |
30459 | 4609 (lambda (file) |
4610 (setq file (expand-file-name file)) | |
4611 (let ((parsed (ange-ftp-ftp-name file))) | |
4612 (if parsed | |
4613 (let* ((host (nth 0 parsed)) | |
4614 (user (nth 1 parsed)) | |
4615 (name (ange-ftp-quote-string (nth 2 parsed))) | |
4616 (abbr (ange-ftp-abbreviate-filename file)) | |
4617 (result (ange-ftp-send-cmd host user | |
4618 (list 'chmod mode name) | |
4619 (format "doing chmod %s" | |
4620 abbr)))) | |
4621 (or (car result) | |
4622 (call-process | |
4623 ange-ftp-remote-shell | |
4624 nil t nil host dired-chmod-program mode name)))))) | |
28210 | 4625 rest)) |
4626 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. | |
4627 0) | |
4628 | |
4629 ;;; This is turned off because it has nothing properly to do | |
4630 ;;; with dired. It could be reasonable to adapt this to | |
4631 ;;; replace ange-ftp-copy-file. | |
4632 | |
4633 ;;;;; ------------------------------------------------------------ | |
4634 ;;;;; Noddy support for async copy-file within dired. | |
4635 ;;;;; ------------------------------------------------------------ | |
4636 | |
4637 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) | |
4638 ;; "Documented as original." | |
4639 ;; (dired-handle-overwrite to) | |
4640 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil | |
4641 ;; cont nowait)) | |
4642 | |
4643 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg | |
4644 ;; &optional marker-char op1 | |
4645 ;; how-to) | |
4646 ;; "Documented as original." | |
4647 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly | |
4648 ;; ;; called it rather than somebody else. | |
4649 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is | |
4650 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation | |
4651 ;; arg marker-char op1 how-to))) | |
4652 | |
4653 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor | |
4654 ;; &optional marker-char) | |
4655 ;; "Documented as original." | |
4656 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) | |
4657 ;; ;; called from ange-ftp-dired-do-create-files? | |
4658 ;; ange-ftp-dired-do-create-files | |
4659 ;; ;; any files worth copying? | |
4660 ;; fn-list | |
4661 ;; ;; we only support async copy-file at the mo. | |
4662 ;; (eq file-creator 'dired-copy-file) | |
4663 ;; ;; it is only worth calling the alternative function for remote files | |
4664 ;; ;; as we tie ourself in recursive knots otherwise. | |
4665 ;; (or (ange-ftp-ftp-name (car fn-list)) | |
4666 ;; ;; we can only call the name constructor for dired-do-create-files | |
4667 ;; ;; since the one for regexps starts prompting here, there and | |
4668 ;; ;; everywhere. | |
4669 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) | |
4670 ;; ;; use the process-filter driven routine rather than the iterative one. | |
4671 ;; (ange-ftp-dcf-1 file-creator | |
4672 ;; operation | |
4673 ;; fn-list | |
4674 ;; name-constructor | |
4675 ;; (and (boundp 'target) target) ;dynamically bound | |
4676 ;; marker-char | |
4677 ;; (current-buffer) | |
4678 ;; nil ;overwrite-query | |
4679 ;; nil ;overwrite-backup-query | |
4680 ;; nil ;failures | |
4681 ;; nil ;skipped | |
4682 ;; 0 ;success-count | |
4683 ;; (length fn-list) ;total | |
4684 ;; ) | |
4685 ;; ;; normal case... use the interactive routine... much cheaper. | |
4686 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list | |
4687 ;; name-constructor marker-char))) | |
4688 | |
4689 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor | |
30459 | 4690 ;; target marker-char buffer overwrite-query |
28210 | 4691 ;; overwrite-backup-query failures skipped |
4692 ;; success-count total) | |
4693 ;; (let ((old-buf (current-buffer))) | |
4694 ;; (unwind-protect | |
4695 ;; (progn | |
4696 ;; (set-buffer buffer) | |
4697 ;; (if (null fn-list) | |
4698 ;; (ange-ftp-dcf-3 failures operation total skipped | |
4699 ;; success-count buffer) | |
30459 | 4700 |
28210 | 4701 ;; (let* ((from (car fn-list)) |
4702 ;; (to (funcall name-constructor from))) | |
4703 ;; (if (equal to from) | |
4704 ;; (progn | |
4705 ;; (setq to nil) | |
4706 ;; (dired-log "Cannot %s to same file: %s\n" | |
4707 ;; (downcase operation) from))) | |
4708 ;; (if (not to) | |
4709 ;; (ange-ftp-dcf-1 file-creator | |
4710 ;; operation | |
4711 ;; (cdr fn-list) | |
4712 ;; name-constructor | |
4713 ;; target | |
4714 ;; marker-char | |
4715 ;; buffer | |
4716 ;; overwrite-query | |
4717 ;; overwrite-backup-query | |
4718 ;; failures | |
4719 ;; (cons (dired-make-relative from) skipped) | |
4720 ;; success-count | |
4721 ;; total) | |
4722 ;; (let* ((overwrite (file-exists-p to)) | |
4723 ;; (overwrite-confirmed ; for dired-handle-overwrite | |
4724 ;; (and overwrite | |
4725 ;; (let ((help-form '(format "\ | |
4726 ;;Type SPC or `y' to overwrite file `%s', | |
4727 ;;DEL or `n' to skip to next, | |
4728 ;;ESC or `q' to not overwrite any of the remaining files, | |
4729 ;;`!' to overwrite all remaining files with no more questions." to))) | |
4730 ;; (dired-query 'overwrite-query | |
4731 ;; "Overwrite `%s'?" to)))) | |
4732 ;; ;; must determine if FROM is marked before file-creator | |
4733 ;; ;; gets a chance to delete it (in case of a move). | |
4734 ;; (actual-marker-char | |
4735 ;; (cond ((integerp marker-char) marker-char) | |
4736 ;; (marker-char (dired-file-marker from)) ; slow | |
4737 ;; (t nil)))) | |
4738 ;; (condition-case err | |
4739 ;; (funcall file-creator from to overwrite-confirmed | |
4740 ;; (list (function ange-ftp-dcf-2) | |
4741 ;; nil ;err | |
4742 ;; file-creator operation fn-list | |
4743 ;; name-constructor | |
4744 ;; target | |
4745 ;; marker-char actual-marker-char | |
4746 ;; buffer to from | |
4747 ;; overwrite | |
4748 ;; overwrite-confirmed | |
30459 | 4749 ;; overwrite-query |
28210 | 4750 ;; overwrite-backup-query |
4751 ;; failures skipped success-count | |
4752 ;; total) | |
4753 ;; t) | |
4754 ;; (file-error ; FILE-CREATOR aborted | |
4755 ;; (ange-ftp-dcf-2 nil ;result | |
4756 ;; nil ;line | |
4757 ;; err | |
4758 ;; file-creator operation fn-list | |
4759 ;; name-constructor | |
4760 ;; target | |
4761 ;; marker-char actual-marker-char | |
4762 ;; buffer to from | |
4763 ;; overwrite | |
4764 ;; overwrite-confirmed | |
30459 | 4765 ;; overwrite-query |
28210 | 4766 ;; overwrite-backup-query |
4767 ;; failures skipped success-count | |
4768 ;; total)))))))) | |
4769 ;; (set-buffer old-buf)))) | |
4770 | |
4771 ;;(defun ange-ftp-dcf-2 (result line err | |
4772 ;; file-creator operation fn-list | |
4773 ;; name-constructor | |
4774 ;; target | |
4775 ;; marker-char actual-marker-char | |
4776 ;; buffer to from | |
4777 ;; overwrite | |
4778 ;; overwrite-confirmed | |
30459 | 4779 ;; overwrite-query |
28210 | 4780 ;; overwrite-backup-query |
4781 ;; failures skipped success-count | |
4782 ;; total) | |
4783 ;; (let ((old-buf (current-buffer))) | |
4784 ;; (unwind-protect | |
4785 ;; (progn | |
4786 ;; (set-buffer buffer) | |
4787 ;; (if (or err (not result)) | |
4788 ;; (progn | |
4789 ;; (setq failures (cons (dired-make-relative from) failures)) | |
4790 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
4791 ;; operation from to (or err line))) | |
4792 ;; (if overwrite | |
4793 ;; ;; If we get here, file-creator hasn't been aborted | |
4794 ;; ;; and the old entry (if any) has to be deleted | |
4795 ;; ;; before adding the new entry. | |
4796 ;; (dired-remove-file to)) | |
4797 ;; (setq success-count (1+ success-count)) | |
4798 ;; (message "%s: %d of %d" operation success-count total) | |
4799 ;; (dired-add-file to actual-marker-char)) | |
30459 | 4800 |
28210 | 4801 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4802 ;; name-constructor | |
4803 ;; target | |
4804 ;; marker-char | |
4805 ;; buffer | |
30459 | 4806 ;; overwrite-query |
28210 | 4807 ;; overwrite-backup-query |
4808 ;; failures skipped success-count | |
4809 ;; total)) | |
4810 ;; (set-buffer old-buf)))) | |
4811 | |
4812 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count | |
4813 ;; buffer) | |
4814 ;; (let ((old-buf (current-buffer))) | |
4815 ;; (unwind-protect | |
4816 ;; (progn | |
4817 ;; (set-buffer buffer) | |
4818 ;; (cond | |
4819 ;; (failures | |
4820 ;; (dired-log-summary | |
4821 ;; (message "%s failed for %d of %d file%s %s" | |
4822 ;; operation (length failures) total | |
4823 ;; (dired-plural-s total) failures))) | |
4824 ;; (skipped | |
4825 ;; (dired-log-summary | |
4826 ;; (message "%s: %d of %d file%s skipped %s" | |
4827 ;; operation (length skipped) total | |
4828 ;; (dired-plural-s total) skipped))) | |
4829 ;; (t | |
4830 ;; (message "%s: %s file%s." | |
4831 ;; operation success-count (dired-plural-s success-count)))) | |
4832 ;; (dired-move-to-filename)) | |
4833 ;; (set-buffer old-buf)))) | |
4834 | |
4835 ;;;; ----------------------------------------------- | |
4836 ;;;; Unix Descriptive Listing (dl) Support | |
4837 ;;;; ----------------------------------------------- | |
4838 | |
4839 ;; This is turned off because nothing uses it currently | |
4840 ;; and because I don't understand what it's supposed to be for. --rms. | |
4841 | |
4842 ;;(defconst ange-ftp-dired-dl-re-dir | |
4843 ;; "^. [^ /]+/[ \n]" | |
4844 ;; "Regular expression to use to search for dl directories.") | |
4845 | |
4846 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) | |
4847 ;; (setq ange-ftp-dired-re-dir-alist | |
4848 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) | |
4849 ;; ange-ftp-dired-re-dir-alist))) | |
4850 | |
4851 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) | |
4852 ;; "In dired, move to the first character of the filename on this line." | |
4853 ;; ;; This is the Unix dl version. | |
4854 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
4855 ;; (let (case-fold-search) | |
4856 ;; (beginning-of-line) | |
4857 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") | |
4858 ;; (goto-char (+ (point) 2)) | |
4859 ;; (if raise-error | |
4860 ;; (error "No file on this line") | |
4861 ;; nil)))) | |
4862 | |
4863 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) | |
4864 ;; (setq ange-ftp-dired-move-to-filename-alist | |
4865 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) | |
4866 ;; ange-ftp-dired-move-to-filename-alist))) | |
4867 | |
4868 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) | |
4869 ;; ;; Assumes point is at beginning of filename. | |
4870 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
4871 ;; ;; On failure, signals an error or returns nil. | |
4872 ;; ;; This is the Unix dl version. | |
4873 ;; (let ((opoint (point)) | |
4874 ;; case-fold-search hidden) | |
4875 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
4876 ;; (setq hidden (and selective-display | |
4877 ;; (save-excursion | |
4878 ;; (search-forward "\r" eol t)))) | |
4879 ;; (if hidden | |
4880 ;; (if no-error | |
4881 ;; nil | |
4882 ;; (error | |
4883 ;; (substitute-command-keys | |
4884 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
4885 ;; (skip-chars-forward "^ /" eol) | |
4886 ;; (if (eq opoint (point)) | |
4887 ;; (if no-error | |
4888 ;; nil | |
4889 ;; (error "No file on this line")) | |
4890 ;; (point))))) | |
4891 | |
4892 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) | |
4893 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
4894 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) | |
4895 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
4896 | |
4897 ;;;; ------------------------------------------------------------ | |
4898 ;;;; VOS support (VOS support is probably broken, | |
4899 ;;;; but I don't know anything about VOS.) | |
4900 ;;;; ------------------------------------------------------------ | |
4901 ; | |
4902 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) | |
4903 ; (setq name (copy-sequence name)) | |
4904 ; (let ((from (if reverse ?\> ?\/)) | |
4905 ; (to (if reverse ?\/ ?\>)) | |
4906 ; (i (1- (length name)))) | |
4907 ; (while (>= i 0) | |
4908 ; (if (= (aref name i) from) | |
4909 ; (aset name i to)) | |
4910 ; (setq i (1- i))) | |
4911 ; name)) | |
4912 ; | |
4913 ;(or (assq 'vos ange-ftp-fix-name-func-alist) | |
4914 ; (setq ange-ftp-fix-name-func-alist | |
4915 ; (cons '(vos . ange-ftp-fix-name-for-vos) | |
4916 ; ange-ftp-fix-name-func-alist))) | |
4917 ; | |
4918 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4919 ; (setq ange-ftp-dumb-host-types | |
4920 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4921 ; | |
4922 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) | |
4923 ; (ange-ftp-fix-name-for-vos | |
4924 ; (concat dir-name | |
4925 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) | |
4926 ; "" "/") | |
4927 ; "*"))) | |
4928 ; | |
4929 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) | |
4930 ; (setq ange-ftp-fix-dir-name-func-alist | |
4931 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) | |
4932 ; ange-ftp-fix-dir-name-func-alist))) | |
4933 ; | |
4934 ;(defvar ange-ftp-vos-host-regexp nil | |
4935 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4936 ; | |
4937 ;(defun ange-ftp-vos-host (host) | |
4938 ; (and ange-ftp-vos-host-regexp | |
4939 ; (save-match-data | |
4940 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4941 ; | |
4942 ;(defun ange-ftp-parse-vos-listing () | |
4943 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4944 ;format, and return a hashtable as the result." | |
4945 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4946 ; (type-list | |
4947 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4948 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4949 ; type-regexp type-is-dir type-col file) | |
4950 ; (goto-char (point-min)) | |
4951 ; (save-match-data | |
4952 ; (while type-list | |
4953 ; (setq type-regexp (car (car type-list)) | |
4954 ; type-is-dir (nth 1 (car type-list)) | |
4955 ; type-col (nth 2 (car type-list)) | |
4956 ; type-list (cdr type-list)) | |
4957 ; (if (re-search-forward type-regexp nil t) | |
4958 ; (while (eq (char-after (point)) ? ) | |
4959 ; (move-to-column type-col) | |
4960 ; (setq file (buffer-substring (point) | |
4961 ; (progn | |
4962 ; (end-of-line 1) | |
4963 ; (point)))) | |
4964 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4965 ; (forward-line 1)))) | |
4966 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4967 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4968 ; tbl)) | |
4969 ; | |
4970 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4971 ; (setq ange-ftp-parse-list-func-alist | |
4972 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4973 ; ange-ftp-parse-list-func-alist))) | |
4974 | |
4975 ;;;; ------------------------------------------------------------ | |
4976 ;;;; VMS support. | |
4977 ;;;; ------------------------------------------------------------ | |
4978 | |
4979 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS | |
4980 ;; to UNIX-ish. | |
4981 (defun ange-ftp-fix-name-for-vms (name &optional reverse) | |
4982 (save-match-data | |
4983 (if reverse | |
4984 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) | |
4985 (let (drive dir file) | |
4986 (if (match-beginning 1) | |
4987 (setq drive (substring name | |
4988 (match-beginning 1) | |
4989 (match-end 1)))) | |
4990 (if (match-beginning 2) | |
4991 (setq dir | |
4992 (substring name (match-beginning 2) (match-end 2)))) | |
4993 (if (match-beginning 3) | |
4994 (setq file | |
4995 (substring name (match-beginning 3) (match-end 3)))) | |
4996 (and dir | |
30481 | 4997 (setq dir (subst-char-in-string |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
4998 ?/ ?. (substring dir 1 -1) t))) |
28210 | 4999 (concat (and drive |
5000 (concat "/" drive "/")) | |
5001 dir (and dir "/") | |
5002 file)) | |
5003 (error "name %s didn't match" name)) | |
5004 (let (drive dir file tmp) | |
5005 (if (string-match "^/[^:]+:/" name) | |
5006 (setq drive (substring name 1 | |
5007 (1- (match-end 0))) | |
5008 name (substring name (match-end 0)))) | |
5009 (setq tmp (file-name-directory name)) | |
5010 (if tmp | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
5011 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t))) |
28210 | 5012 (setq file (file-name-nondirectory name)) |
5013 (concat drive | |
5014 (and dir (concat "[" (if drive nil ".") dir "]")) | |
5015 file))))) | |
5016 | |
5017 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") | |
5018 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) | |
5019 | |
5020 (or (assq 'vms ange-ftp-fix-name-func-alist) | |
5021 (setq ange-ftp-fix-name-func-alist | |
5022 (cons '(vms . ange-ftp-fix-name-for-vms) | |
5023 ange-ftp-fix-name-func-alist))) | |
5024 | |
5025 (or (memq 'vms ange-ftp-dumb-host-types) | |
5026 (setq ange-ftp-dumb-host-types | |
5027 (cons 'vms ange-ftp-dumb-host-types))) | |
5028 | |
5029 ;; It is important that this function barf for directories for which we know | |
5030 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
5031 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
5032 ;; might succeed, but give erroneous info. This last case is particularly | |
5033 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
5034 ;; to list a directory. | |
5035 | |
5036 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. | |
5037 (defun ange-ftp-fix-dir-name-for-vms (dir-name) | |
5038 ;; Should there be entries for .. -> [-] and . -> [] below. Don't | |
5039 ;; think so, because expand-filename should have already short-circuited | |
5040 ;; them. | |
5041 (cond ((string-equal dir-name "/") | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5042 (error "Cannot get listing for fictitious \"/\" directory")) |
28210 | 5043 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5044 (error "Cannot get listing for device")) |
28210 | 5045 ((ange-ftp-fix-name-for-vms dir-name)))) |
30459 | 5046 |
28210 | 5047 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
5048 (setq ange-ftp-fix-dir-name-func-alist | |
5049 (cons '(vms . ange-ftp-fix-dir-name-for-vms) | |
5050 ange-ftp-fix-dir-name-func-alist))) | |
5051 | |
5052 (defvar ange-ftp-vms-host-regexp nil) | |
5053 | |
5054 ;; Return non-nil if HOST is running VMS. | |
5055 (defun ange-ftp-vms-host (host) | |
5056 (and ange-ftp-vms-host-regexp | |
5057 (save-match-data | |
5058 (string-match ange-ftp-vms-host-regexp host)))) | |
5059 | |
5060 ;; Because some VMS ftp servers convert filenames to lower case | |
5061 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
5062 | |
5063 (defconst ange-ftp-vms-filename-regexp | |
5064 (concat | |
5065 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." | |
5066 "[-_A-Za-z0-9$]*;+[0-9]*\\)") | |
5067 "Regular expression to match for a valid VMS file name in Dired buffer. | |
5068 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
5069 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
5070 Other orders of $ and _ seem to all work just fine.") | |
5071 | |
5072 ;; These parsing functions are as general as possible because the syntax | |
5073 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
5074 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
5075 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
5076 ;; from vms.weird.net, then too bad. | |
5077 | |
5078 ;; Extract the next filename from a VMS dired-like listing. | |
5079 (defun ange-ftp-parse-vms-filename () | |
5080 (if (re-search-forward | |
5081 ange-ftp-vms-filename-regexp | |
5082 nil t) | |
5083 (buffer-substring (match-beginning 0) (match-end 0)))) | |
5084 | |
5085 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir | |
5086 ;; format, and return a hashtable as the result. | |
5087 (defun ange-ftp-parse-vms-listing () | |
5088 (let ((tbl (ange-ftp-make-hashtable)) | |
5089 file) | |
5090 (goto-char (point-min)) | |
5091 (save-match-data | |
5092 (while (setq file (ange-ftp-parse-vms-filename)) | |
5093 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
5094 ;; deal with directories | |
5095 (ange-ftp-put-hash-entry | |
5096 (substring file 0 (match-beginning 0)) t tbl) | |
5097 (ange-ftp-put-hash-entry file nil tbl) | |
5098 (if (string-match ";[0-9]+$" file) ; deal with extension | |
5099 ;; sans extension | |
5100 (ange-ftp-put-hash-entry | |
5101 (substring file 0 (match-beginning 0)) nil tbl))) | |
5102 (forward-line 1)) | |
5103 ;; Would like to look for a "Total" line, or a "Directory" line to | |
5104 ;; make sure that the listing isn't complete garbage before putting | |
5105 ;; in "." and "..", but we can't even count on all VAX's giving us | |
5106 ;; either of these. | |
5107 (ange-ftp-put-hash-entry "." t tbl) | |
5108 (ange-ftp-put-hash-entry ".." t tbl)) | |
5109 tbl)) | |
5110 | |
5111 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
5112 (setq ange-ftp-parse-list-func-alist | |
5113 (cons '(vms . ange-ftp-parse-vms-listing) | |
5114 ange-ftp-parse-list-func-alist))) | |
5115 | |
5116 ;; This version only deletes file entries which have | |
5117 ;; explicit version numbers, because that is all VMS allows. | |
5118 | |
5119 ;; Can the following two functions be speeded up using file | |
5120 ;; completion functions? | |
5121 | |
5122 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) | |
5123 (if dir-p | |
5124 (ange-ftp-internal-delete-file-entry name t) | |
5125 (save-match-data | |
5126 (let ((file (ange-ftp-get-file-part name))) | |
5127 (if (string-match ";[0-9]+$" file) | |
30459 | 5128 ;; In VMS you can't delete a file without an explicit |
28210 | 5129 ;; version number, or wild-card (e.g. FOO;*) |
5130 ;; For now, we give up on wildcards. | |
5131 (let ((files (ange-ftp-get-hash-entry | |
5132 (file-name-directory name) | |
5133 ange-ftp-files-hashtable))) | |
5134 (if files | |
5135 (let* ((root (substring file 0 | |
5136 (match-beginning 0))) | |
5137 (regexp (concat "^" | |
5138 (regexp-quote root) | |
5139 ";[0-9]+$")) | |
5140 versions) | |
5141 (ange-ftp-del-hash-entry file files) | |
5142 ;; Now we need to check if there are any | |
5143 ;; versions left. If not, then delete the | |
5144 ;; root entry. | |
5145 (mapatoms | |
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5146 (lambda (sym) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5147 (and (string-match regexp (get sym 'key)) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5148 (setq versions t))) |
28210 | 5149 files) |
5150 (or versions | |
5151 (ange-ftp-del-hash-entry root files)))))))))) | |
5152 | |
5153 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
5154 (setq ange-ftp-delete-file-entry-alist | |
5155 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
5156 ange-ftp-delete-file-entry-alist))) | |
5157 | |
5158 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) | |
5159 (if dir-p | |
5160 (ange-ftp-internal-add-file-entry name t) | |
5161 (let ((files (ange-ftp-get-hash-entry | |
5162 (file-name-directory name) | |
5163 ange-ftp-files-hashtable))) | |
5164 (if files | |
5165 (let ((file (ange-ftp-get-file-part name))) | |
5166 (save-match-data | |
5167 (if (string-match ";[0-9]+$" file) | |
5168 (ange-ftp-put-hash-entry | |
5169 (substring file 0 (match-beginning 0)) | |
5170 nil files) | |
5171 ;; Need to figure out what version of the file | |
5172 ;; is being added. | |
5173 (let ((regexp (concat "^" | |
5174 (regexp-quote file) | |
5175 ";\\([0-9]+\\)$")) | |
5176 (version 0)) | |
5177 (mapatoms | |
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5178 (lambda (sym) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5179 (let ((name (get sym 'key))) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5180 (and (string-match regexp name) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5181 (setq version |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5182 (max version |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5183 (string-to-int |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5184 (substring name |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5185 (match-beginning 1) |
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5186 (match-end 1)))))))) |
28210 | 5187 files) |
5188 (setq version (1+ version)) | |
5189 (ange-ftp-put-hash-entry | |
5190 (concat file ";" (int-to-string version)) | |
5191 nil files)))) | |
5192 (ange-ftp-put-hash-entry file nil files)))))) | |
5193 | |
5194 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
5195 (setq ange-ftp-add-file-entry-alist | |
5196 (cons '(vms . ange-ftp-vms-add-file-entry) | |
5197 ange-ftp-add-file-entry-alist))) | |
5198 | |
5199 | |
5200 (defun ange-ftp-add-vms-host (host) | |
5201 "Mark HOST as the name of a machine running VMS." | |
5202 (interactive | |
5203 (list (read-string "Host: " | |
5204 (let ((name (or (buffer-file-name) default-directory))) | |
5205 (and name (car (ange-ftp-ftp-name name))))))) | |
5206 (if (not (ange-ftp-vms-host host)) | |
5207 (setq ange-ftp-vms-host-regexp | |
5208 (concat "^" (regexp-quote host) "$" | |
5209 (and ange-ftp-vms-host-regexp "\\|") | |
5210 ange-ftp-vms-host-regexp) | |
5211 ange-ftp-host-cache nil))) | |
5212 | |
5213 | |
5214 (defun ange-ftp-vms-file-name-as-directory (name) | |
5215 (save-match-data | |
5216 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
5217 (setq name (substring name 0 (match-beginning 0)))) | |
5218 (ange-ftp-real-file-name-as-directory name))) | |
5219 | |
5220 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
5221 (setq ange-ftp-file-name-as-directory-alist | |
5222 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
5223 ange-ftp-file-name-as-directory-alist))) | |
5224 | |
5225 ;;; Tree dired support: | |
5226 | |
5227 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
5228 ;; dired-vms.el | |
5229 | |
5230 | |
5231 ;;;; These regexps must be anchored to beginning of line. | |
5232 ;;;; Beware that the ftpd may put the device in front of the filename. | |
5233 | |
5234 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" | |
5235 ;; "Regular expression to use to search for VMS executable files.") | |
5236 | |
5237 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" | |
5238 ;; "Regular expression to use to search for VMS directories.") | |
5239 | |
5240 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) | |
5241 ;; (setq ange-ftp-dired-re-exe-alist | |
5242 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) | |
5243 ;; ange-ftp-dired-re-exe-alist))) | |
5244 | |
5245 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) | |
5246 ;; (setq ange-ftp-dired-re-dir-alist | |
5247 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) | |
5248 ;; ange-ftp-dired-re-dir-alist))) | |
5249 | |
5250 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) | |
5251 ;; ;; VMS inserts a headerline. I would prefer the headerline | |
5252 ;; ;; to be in ange-ftp format. This version tries to | |
5253 ;; ;; be careful, because we can't count on a headerline | |
5254 ;; ;; over ftp, and we wouldn't want to delete anything | |
5255 ;; ;; important. | |
5256 ;; (save-excursion | |
5257 ;; (if (looking-at "^ wildcard ") | |
5258 ;; (forward-line 1)) | |
5259 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") | |
5260 ;; (delete-region (point) (match-end 0)))) | |
5261 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5262 | |
5263 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) | |
5264 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5265 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) | |
5266 ;; ange-ftp-dired-insert-headerline-alist))) | |
5267 | |
5268 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) | |
5269 ;; "In dired, move to first char of filename on this line. | |
5270 ;;Returns position (point) or nil if no filename on this line." | |
5271 ;; ;; This is the VMS version. | |
5272 ;; (let (case-fold-search) | |
5273 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5274 ;; (beginning-of-line) | |
5275 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) | |
5276 ;; (goto-char (match-beginning 1)) | |
5277 ;; (if raise-error | |
5278 ;; (error "No file on this line") | |
5279 ;; nil)))) | |
5280 | |
5281 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) | |
5282 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5283 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) | |
5284 ;; ange-ftp-dired-move-to-filename-alist))) | |
5285 | |
5286 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) | |
5287 ;; ;; Assumes point is at beginning of filename. | |
5288 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5289 ;; ;; case-fold-search must be nil, at least for VMS. | |
5290 ;; ;; On failure, signals an error or returns nil. | |
5291 ;; ;; This is the VMS version. | |
5292 ;; (let (opoint hidden case-fold-search) | |
5293 ;; (setq opoint (point)) | |
5294 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5295 ;; (setq hidden (and selective-display | |
5296 ;; (save-excursion (search-forward "\r" eol t)))) | |
5297 ;; (if hidden | |
5298 ;; nil | |
5299 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) | |
5300 ;; (or no-error | |
5301 ;; (not (eq opoint (point))) | |
5302 ;; (error | |
5303 ;; (if hidden | |
5304 ;; (substitute-command-keys | |
5305 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5306 ;; "No file on this line"))) | |
5307 ;; (if (eq opoint (point)) | |
5308 ;; nil | |
5309 ;; (point)))) | |
5310 | |
5311 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) | |
5312 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5313 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) | |
5314 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5315 | |
5316 ;;(defun ange-ftp-dired-vms-between-files () | |
5317 ;; (save-excursion | |
5318 ;; (beginning-of-line) | |
5319 ;; (or (equal (following-char) 10) ; newline | |
5320 ;; (equal (following-char) 9) ; tab | |
5321 ;; (progn (forward-char 2) | |
5322 ;; (or (looking-at "Total of") | |
5323 ;; (equal (following-char) 32)))))) | |
5324 | |
5325 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) | |
5326 ;; (setq ange-ftp-dired-between-files-alist | |
5327 ;; (cons '(vms . ange-ftp-dired-vms-between-files) | |
5328 ;; ange-ftp-dired-between-files-alist))) | |
5329 | |
5330 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
5331 ;; Therefore, we cannot just append a ".Z" to filenames for | |
5332 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
5333 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
5334 | |
5335 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
5336 (cond | |
5337 ((string-match "-Z;[0-9]+$" name) | |
5338 (list nil (substring name 0 (match-beginning 0)))) | |
5339 ((string-match ";[0-9]+$" name) | |
5340 (list nil (substring name 0 (match-beginning 0)))) | |
5341 ((string-match "-Z$" name) | |
5342 (list nil (substring name 0 -2))) | |
5343 (t | |
5344 (list t | |
5345 (if (string-match ";[0-9]+$" name) | |
5346 (concat (substring name 0 (match-beginning 0)) | |
5347 "-Z") | |
5348 (concat name "-Z")))))) | |
5349 | |
5350 (or (assq 'vms ange-ftp-make-compressed-filename-alist) | |
5351 (setq ange-ftp-make-compressed-filename-alist | |
5352 (cons '(vms . ange-ftp-vms-make-compressed-filename) | |
5353 ange-ftp-make-compressed-filename-alist))) | |
5354 | |
5355 ;;;; When the filename is too long, VMS will use two lines to list a file | |
5356 ;;;; (damn them!) This will confuse dired. To solve this, need to convince | |
5357 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of | |
5358 ;;;; (forward-line 1). This would require a number of changes to dired.el. | |
5359 ;;;; If dired gets confused, revert-buffer will fix it. | |
5360 | |
5361 ;;(defun ange-ftp-dired-vms-ls-trim () | |
5362 ;; (goto-char (point-min)) | |
5363 ;; (let ((case-fold-search nil)) | |
5364 ;; (re-search-forward ange-ftp-vms-filename-regexp)) | |
5365 ;; (beginning-of-line) | |
5366 ;; (delete-region (point-min) (point)) | |
5367 ;; (forward-line 1) | |
5368 ;; (delete-region (point) (point-max))) | |
5369 | |
5370 | |
5371 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) | |
5372 ;; (setq ange-ftp-dired-ls-trim-alist | |
5373 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) | |
30459 | 5374 ;; ange-ftp-dired-ls-trim-alist))) |
28210 | 5375 |
5376 (defun ange-ftp-vms-sans-version (name &rest args) | |
5377 (save-match-data | |
5378 (if (string-match ";[0-9]+$" name) | |
5379 (substring name 0 (match-beginning 0)) | |
5380 name))) | |
5381 | |
5382 (or (assq 'vms ange-ftp-sans-version-alist) | |
5383 (setq ange-ftp-sans-version-alist | |
5384 (cons '(vms . ange-ftp-vms-sans-version) | |
5385 ange-ftp-sans-version-alist))) | |
5386 | |
5387 ;;(defvar ange-ftp-file-version-alist) | |
5388 | |
5389 ;;;;; The vms version of clean-directory has 2 more optional args | |
5390 ;;;;; than the usual dired version. This is so that it can be used by | |
5391 ;;;;; ange-ftp-dired-vms-flag-backup-files. | |
5392 | |
5393 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) | |
5394 ;; "Flag numerical backups for deletion. | |
5395 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | |
5396 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; | |
5397 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. | |
5398 | |
5399 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] | |
5400 ;;with a prefix argument." | |
5401 ;;; (interactive "P") ; Never actually called interactively. | |
5402 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) | |
5403 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) | |
5404 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! | |
5405 ;; ;; This could wipe ALL copies of the file. | |
5406 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) | |
5407 ;; (action (or msg "Cleaning")) | |
5408 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) | |
5409 ;; (ange-ftp-file-version-alist ())) | |
5410 ;; (message (concat action | |
5411 ;; " numerical backups (keeping %d late, %d old)...") | |
5412 ;; late-retention early-retention) | |
5413 ;; ;; Look at each file. | |
5414 ;; ;; If the file has numeric backup versions, | |
5415 ;; ;; put on ange-ftp-file-version-alist an element of the form | |
5416 ;; ;; (FILENAME . VERSION-NUMBER-LIST) | |
5417 ;; (dired-map-dired-file-lines (function | |
5418 ;; ange-ftp-dired-vms-collect-file-versions)) | |
5419 ;; ;; Sort each VERSION-NUMBER-LIST, | |
5420 ;; ;; and remove the versions not to be deleted. | |
5421 ;; (let ((fval ange-ftp-file-version-alist)) | |
5422 ;; (while fval | |
5423 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) | |
5424 ;; (v-count (length sorted-v-list))) | |
5425 ;; (if (> v-count (+ early-retention late-retention)) | |
5426 ;; (rplacd (nthcdr early-retention sorted-v-list) | |
5427 ;; (nthcdr (- v-count late-retention) | |
5428 ;; sorted-v-list))) | |
5429 ;; (rplacd (car fval) | |
5430 ;; (cdr sorted-v-list))) | |
5431 ;; (setq fval (cdr fval)))) | |
5432 ;; ;; Look at each file. If it is a numeric backup file, | |
5433 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. | |
5434 ;; (dired-map-dired-file-lines | |
5435 ;; (function | |
5436 ;; ange-ftp-dired-vms-trample-file-versions mark)) | |
5437 ;; (message (concat action " numerical backups...done")))) | |
5438 | |
5439 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) | |
5440 ;; (setq ange-ftp-dired-clean-directory-alist | |
5441 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) | |
5442 ;; ange-ftp-dired-clean-directory-alist))) | |
5443 | |
5444 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) | |
5445 ;; ;; "If it looks like file FN has versions, return a list of the versions. | |
5446 ;; ;;That is a list of strings which are file names. | |
5447 ;; ;;The caller may want to flag some of these files for deletion." | |
5448 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) | |
5449 ;; (if (string-match ";[0-9]+$" name) | |
5450 ;; (let* ((name (substring name 0 (match-beginning 0))) | |
5451 ;; (fn (ange-ftp-replace-name-component fn name))) | |
5452 ;; (if (not (assq fn ange-ftp-file-version-alist)) | |
5453 ;; (let* ((base-versions | |
5454 ;; (concat (file-name-nondirectory name) ";")) | |
5455 ;; (bv-length (length base-versions)) | |
5456 ;; (possibilities (file-name-all-completions | |
5457 ;; base-versions | |
5458 ;; (file-name-directory fn))) | |
5459 ;; (versions (mapcar | |
5460 ;; '(lambda (arg) | |
5461 ;; (if (and (string-match | |
5462 ;; "[0-9]+$" arg bv-length) | |
5463 ;; (= (match-beginning 0) bv-length)) | |
5464 ;; (string-to-int (substring arg bv-length)) | |
5465 ;; 0)) | |
5466 ;; possibilities))) | |
5467 ;; (if versions | |
5468 ;; (setq | |
5469 ;; ange-ftp-file-version-alist | |
5470 ;; (cons (cons fn versions) | |
5471 ;; ange-ftp-file-version-alist))))))))) | |
5472 | |
5473 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) | |
5474 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) | |
5475 ;; base-version-list) | |
5476 ;; (and start-vn | |
5477 ;; (setq base-version-list ; there was a base version to which | |
5478 ;; (assoc (substring fn 0 start-vn) ; this looks like a | |
5479 ;; ange-ftp-file-version-alist)) ; subversion | |
5480 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) | |
5481 ;; base-version-list)) ; this one doesn't make the cut | |
5482 ;; (progn (beginning-of-line) | |
5483 ;; (delete-char 1) | |
5484 ;; (insert ange-ftp-trample-marker))))) | |
5485 | |
5486 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) | |
5487 ;; (let ((dired-kept-versions 1) | |
5488 ;; (kept-old-versions 0) | |
5489 ;; marker msg) | |
5490 ;; (if unflag-p | |
5491 ;; (setq marker ?\040 msg "Unflagging") | |
5492 ;; (setq marker dired-del-marker msg "Cleaning")) | |
5493 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) | |
5494 | |
5495 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) | |
5496 ;; (setq ange-ftp-dired-flag-backup-files-alist | |
5497 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) | |
5498 ;; ange-ftp-dired-flag-backup-files-alist))) | |
5499 | |
5500 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) | |
5501 ;; (let ((file (dired-get-filename 'no-dir)) | |
5502 ;; bak) | |
5503 ;; (if (and (string-match ";[0-9]+$" file) | |
5504 ;; ;; Find most recent previous version. | |
5505 ;; (let ((root (substring file 0 (match-beginning 0))) | |
5506 ;; (ver | |
5507 ;; (string-to-int (substring file (1+ (match-beginning 0))))) | |
5508 ;; found) | |
5509 ;; (setq ver (1- ver)) | |
5510 ;; (while (and (> ver 0) (not found)) | |
5511 ;; (setq bak (concat root ";" (int-to-string ver))) | |
5512 ;; (and (file-exists-p bak) (setq found t)) | |
5513 ;; (setq ver (1- ver))) | |
5514 ;; found)) | |
5515 ;; (if switches | |
5516 ;; (diff (expand-file-name bak) (expand-file-name file) switches) | |
5517 ;; (diff (expand-file-name bak) (expand-file-name file))) | |
5518 ;; (error "No previous version found for %s" file)))) | |
5519 | |
5520 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) | |
5521 ;; (setq ange-ftp-dired-backup-diff-alist | |
5522 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) | |
5523 ;; ange-ftp-dired-backup-diff-alist))) | |
5524 | |
5525 | |
5526 ;;;; ------------------------------------------------------------ | |
5527 ;;;; MTS support | |
5528 ;;;; ------------------------------------------------------------ | |
5529 | |
5530 | |
5531 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from | |
5532 ;; MTS to UNIX-ish. | |
5533 (defun ange-ftp-fix-name-for-mts (name &optional reverse) | |
5534 (save-match-data | |
5535 (if reverse | |
5536 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) | |
5537 (let (acct file) | |
5538 (if (match-beginning 1) | |
5539 (setq acct (substring name 0 (match-end 1)))) | |
5540 (if (match-beginning 2) | |
5541 (setq file (substring name | |
5542 (match-beginning 2) (match-end 2)))) | |
5543 (concat (and acct (concat "/" acct "/")) | |
5544 file)) | |
5545 (error "name %s didn't match" name)) | |
5546 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) | |
5547 (concat (substring name 1 (match-end 1)) | |
5548 (substring name (match-beginning 2) (match-end 2))) | |
5549 ;; Let's hope that mts will recognize it anyway. | |
5550 name)))) | |
5551 | |
5552 (or (assq 'mts ange-ftp-fix-name-func-alist) | |
5553 (setq ange-ftp-fix-name-func-alist | |
5554 (cons '(mts . ange-ftp-fix-name-for-mts) | |
5555 ange-ftp-fix-name-func-alist))) | |
5556 | |
5557 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. | |
5558 ;; Remember that there are no directories in MTS. | |
5559 (defun ange-ftp-fix-dir-name-for-mts (dir-name) | |
5560 (if (string-equal dir-name "/") | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5561 (error "Cannot get listing for fictitious \"/\" directory") |
28210 | 5562 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
5563 (cond | |
5564 ((string-equal dir-name "") | |
5565 "?") | |
5566 ((string-match ":$" dir-name) | |
5567 (concat dir-name "?")) | |
5568 (dir-name))))) ; It's just a single file. | |
5569 | |
5570 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) | |
5571 (setq ange-ftp-fix-dir-name-func-alist | |
5572 (cons '(mts . ange-ftp-fix-dir-name-for-mts) | |
5573 ange-ftp-fix-dir-name-func-alist))) | |
5574 | |
5575 (or (memq 'mts ange-ftp-dumb-host-types) | |
5576 (setq ange-ftp-dumb-host-types | |
5577 (cons 'mts ange-ftp-dumb-host-types))) | |
5578 | |
5579 (defvar ange-ftp-mts-host-regexp nil) | |
5580 | |
5581 ;; Return non-nil if HOST is running MTS. | |
5582 (defun ange-ftp-mts-host (host) | |
5583 (and ange-ftp-mts-host-regexp | |
5584 (save-match-data | |
5585 (string-match ange-ftp-mts-host-regexp host)))) | |
5586 | |
5587 ;; Parse the current buffer which is assumed to be in mts ftp dir format. | |
5588 (defun ange-ftp-parse-mts-listing () | |
5589 (let ((tbl (ange-ftp-make-hashtable))) | |
5590 (goto-char (point-min)) | |
5591 (save-match-data | |
5592 (while (re-search-forward ange-ftp-date-regexp nil t) | |
5593 (end-of-line) | |
5594 (skip-chars-backward " ") | |
5595 (let ((end (point))) | |
5596 (skip-chars-backward "-A-Z0-9_.!") | |
5597 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5598 (forward-line 1))) | |
5599 ;; Don't need to bother with .. | |
5600 (ange-ftp-put-hash-entry "." t tbl) | |
5601 tbl)) | |
5602 | |
5603 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5604 (setq ange-ftp-parse-list-func-alist | |
5605 (cons '(mts . ange-ftp-parse-mts-listing) | |
5606 ange-ftp-parse-list-func-alist))) | |
5607 | |
5608 (defun ange-ftp-add-mts-host (host) | |
5609 "Mark HOST as the name of a machine running MTS." | |
5610 (interactive | |
5611 (list (read-string "Host: " | |
5612 (let ((name (or (buffer-file-name) default-directory))) | |
5613 (and name (car (ange-ftp-ftp-name name))))))) | |
5614 (if (not (ange-ftp-mts-host host)) | |
5615 (setq ange-ftp-mts-host-regexp | |
5616 (concat "^" (regexp-quote host) "$" | |
5617 (and ange-ftp-mts-host-regexp "\\|") | |
5618 ange-ftp-mts-host-regexp) | |
5619 ange-ftp-host-cache nil))) | |
5620 | |
5621 ;;; Tree dired support: | |
5622 | |
5623 ;;;; There aren't too many systems left that use MTS. This dired support will | |
5624 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems | |
5625 ;;;; implement ftp in the same way. If not, it might be necessary to make the | |
5626 ;;;; following more flexible. | |
5627 | |
5628 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) | |
5629 ;; "In dired, move to first char of filename on this line. | |
5630 ;;Returns position (point) or nil if no filename on this line." | |
5631 ;; ;; This is the MTS version. | |
5632 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5633 ;; (beginning-of-line) | |
5634 ;; (if (re-search-forward | |
5635 ;; ange-ftp-date-regexp eol t) | |
5636 ;; (progn | |
5637 ;; (skip-chars-forward " ") ; Eat blanks after date | |
5638 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year | |
5639 ;; (skip-chars-forward " " eol) ; one space before filename | |
5640 ;; ;; When listing an account other than the users own account it appends | |
5641 ;; ;; ACCT: to the beginning of the filename. Skip over this. | |
5642 ;; (and (looking-at "[A-Z0-9_.]+:") | |
5643 ;; (goto-char (match-end 0))) | |
5644 ;; (point)) | |
5645 ;; (if raise-error | |
5646 ;; (error "No file on this line") | |
5647 ;; nil))) | |
5648 | |
5649 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) | |
5650 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5651 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) | |
5652 ;; ange-ftp-dired-move-to-filename-alist))) | |
5653 | |
5654 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) | |
5655 ;; ;; Assumes point is at beginning of filename. | |
5656 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5657 ;; ;; On failure, signals an error or returns nil. | |
5658 ;; ;; This is the MTS version. | |
5659 ;; (let (opoint hidden case-fold-search) | |
5660 ;; (setq opoint (point) | |
5661 ;; eol (save-excursion (end-of-line) (point)) | |
5662 ;; hidden (and selective-display | |
5663 ;; (save-excursion (search-forward "\r" eol t)))) | |
5664 ;; (if hidden | |
5665 ;; nil | |
5666 ;; (skip-chars-forward "-A-Z0-9._!" eol)) | |
5667 ;; (or no-error | |
5668 ;; (not (eq opoint (point))) | |
5669 ;; (error | |
5670 ;; (if hidden | |
5671 ;; (substitute-command-keys | |
5672 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5673 ;; "No file on this line"))) | |
5674 ;; (if (eq opoint (point)) | |
5675 ;; nil | |
5676 ;; (point)))) | |
5677 | |
5678 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) | |
5679 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5680 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) | |
5681 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5682 | |
5683 ;;;; ------------------------------------------------------------ | |
5684 ;;;; CMS support | |
5685 ;;;; ------------------------------------------------------------ | |
5686 | |
5687 ;; Since CMS doesn't have any full file name syntax, we have to fudge | |
5688 ;; things with cd's. We actually send too many cd's, but it's dangerous | |
5689 ;; to try to remember the current minidisk, because if the connection | |
5690 ;; is closed and needs to be reopened, we will find ourselves back in | |
5691 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5692 ;; usually close the connection after 5 minutes of inactivity. | |
5693 | |
5694 ;; Have I got the filename character set right? | |
5695 | |
5696 (defun ange-ftp-fix-name-for-cms (name &optional reverse) | |
5697 (save-match-data | |
5698 (if reverse | |
5699 ;; Since we only convert output from a pwd in this direction, | |
5700 ;; we'll assume that it's a minidisk, and make it into a | |
5701 ;; directory file name. Note that the expand-dir-hashtable | |
5702 ;; stores directories without the trailing /. Is this | |
5703 ;; consistent? | |
5704 (concat "/" name) | |
5705 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" | |
5706 name) | |
5707 (let ((minidisk (substring name 1 (match-end 1)))) | |
5708 (if (match-beginning 2) | |
5709 (let ((file (substring name (match-beginning 2) | |
5710 (match-end 2))) | |
5711 (cmd (concat "cd " minidisk)) | |
5712 | |
5713 ;; Note that host and user are bound in the call | |
5714 ;; to ange-ftp-send-cmd | |
5715 (proc (ange-ftp-get-process ange-ftp-this-host | |
5716 ange-ftp-this-user))) | |
5717 | |
5718 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5719 ;; an infinite loop. | |
5720 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) | |
5721 file | |
5722 ;; failed... try ONCE more. | |
5723 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5724 ange-ftp-this-user)) | |
5725 (let ((result (ange-ftp-raw-send-cmd proc cmd | |
5726 ange-ftp-this-msg))) | |
5727 (if (car result) | |
5728 file | |
5729 ;; failed. give up. | |
5730 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5731 (format "cd to minidisk %s failed: %s" | |
5732 minidisk (cdr result))))))) | |
5733 ;; return the minidisk | |
5734 minidisk)) | |
5735 (error "Invalid CMS filename"))))) | |
5736 | |
5737 (or (assq 'cms ange-ftp-fix-name-func-alist) | |
5738 (setq ange-ftp-fix-name-func-alist | |
5739 (cons '(cms . ange-ftp-fix-name-for-cms) | |
5740 ange-ftp-fix-name-func-alist))) | |
5741 | |
5742 (or (memq 'cms ange-ftp-dumb-host-types) | |
5743 (setq ange-ftp-dumb-host-types | |
5744 (cons 'cms ange-ftp-dumb-host-types))) | |
5745 | |
5746 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. | |
5747 (defun ange-ftp-fix-dir-name-for-cms (dir-name) | |
5748 (cond | |
5749 ((string-equal "/" dir-name) | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5750 (error "Cannot get listing for fictitious \"/\" directory")) |
28210 | 5751 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
5752 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) | |
5753 ;; host and user are bound in the call to ange-ftp-send-cmd | |
5754 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) | |
5755 (cmd (concat "cd " minidisk)) | |
5756 (file (if (match-beginning 2) | |
5757 ;; it's a single file | |
5758 (substring dir-name (match-beginning 2) | |
5759 (match-end 2)) | |
5760 ;; use the wild-card | |
5761 "*"))) | |
5762 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5763 file | |
5764 ;; try again... | |
5765 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5766 ange-ftp-this-user)) | |
5767 (let ((result (ange-ftp-raw-send-cmd proc cmd))) | |
5768 (if (car result) | |
5769 file | |
5770 ;; give up | |
5771 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5772 (format "cd to minidisk %s failed: %s" | |
5773 minidisk (cdr result)))))))) | |
5774 (t (error "Invalid CMS file name")))) | |
5775 | |
5776 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) | |
5777 (setq ange-ftp-fix-dir-name-func-alist | |
5778 (cons '(cms . ange-ftp-fix-dir-name-for-cms) | |
5779 ange-ftp-fix-dir-name-func-alist))) | |
5780 | |
5781 (defvar ange-ftp-cms-host-regexp nil | |
5782 "Regular expression to match hosts running the CMS operating system.") | |
5783 | |
5784 ;; Return non-nil if HOST is running CMS. | |
5785 (defun ange-ftp-cms-host (host) | |
5786 (and ange-ftp-cms-host-regexp | |
5787 (save-match-data | |
5788 (string-match ange-ftp-cms-host-regexp host)))) | |
5789 | |
5790 (defun ange-ftp-add-cms-host (host) | |
5791 "Mark HOST as the name of a CMS host." | |
5792 (interactive | |
5793 (list (read-string "Host: " | |
5794 (let ((name (or (buffer-file-name) default-directory))) | |
5795 (and name (car (ange-ftp-ftp-name name))))))) | |
5796 (if (not (ange-ftp-cms-host host)) | |
5797 (setq ange-ftp-cms-host-regexp | |
5798 (concat "^" (regexp-quote host) "$" | |
5799 (and ange-ftp-cms-host-regexp "\\|") | |
5800 ange-ftp-cms-host-regexp) | |
5801 ange-ftp-host-cache nil))) | |
5802 | |
5803 (defun ange-ftp-parse-cms-listing () | |
5804 ;; Parse the current buffer which is assumed to be a CMS directory listing. | |
5805 ;; If we succeed in getting a listing, then we will assume that the minidisk | |
5806 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5807 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5808 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5809 ;; exist. It would be nice if completion worked for minidisks, as we | |
5810 ;; discover them. | |
5811 ; (let* ((dir-file (directory-file-name file)) | |
5812 ; (root (file-name-directory dir-file)) | |
5813 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5814 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5815 ; (if root-tbl | |
5816 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5817 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5818 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5819 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5820 ; (ange-ftp-set-files root root-tbl))) | |
5821 ;; Now do the usual parsing | |
5822 (let ((tbl (ange-ftp-make-hashtable))) | |
5823 (goto-char (point-min)) | |
5824 (save-match-data | |
5825 (while | |
5826 (re-search-forward | |
5827 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5828 (ange-ftp-put-hash-entry | |
5829 (concat (buffer-substring (match-beginning 1) | |
5830 (match-end 1)) | |
5831 "." | |
5832 (buffer-substring (match-beginning 2) | |
5833 (match-end 2))) | |
5834 nil tbl) | |
5835 (forward-line 1)) | |
5836 (ange-ftp-put-hash-entry "." t tbl)) | |
5837 tbl)) | |
5838 | |
5839 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5840 (setq ange-ftp-parse-list-func-alist | |
5841 (cons '(cms . ange-ftp-parse-cms-listing) | |
5842 ange-ftp-parse-list-func-alist))) | |
30459 | 5843 |
28210 | 5844 ;;;;; Tree dired support: |
5845 | |
5846 ;;(defconst ange-ftp-dired-cms-re-exe | |
5847 ;; "^. [-A-Z0-9$_]+ +EXEC " | |
5848 ;; "Regular expression to use to search for CMS executables.") | |
5849 | |
5850 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) | |
5851 ;; (setq ange-ftp-dired-re-exe-alist | |
5852 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) | |
5853 ;; ange-ftp-dired-re-exe-alist))) | |
5854 | |
5855 | |
5856 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) | |
5857 ;; ;; CMS has no total line, so we insert a blank line for | |
5858 ;; ;; aesthetics. | |
5859 ;; (insert "\n") | |
5860 ;; (forward-char -1) | |
5861 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5862 | |
5863 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) | |
5864 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5865 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) | |
5866 ;; ange-ftp-dired-insert-headerline-alist))) | |
5867 | |
5868 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) | |
5869 ;; "In dired, move to the first char of filename on this line." | |
5870 ;; ;; This is the CMS version. | |
5871 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5872 ;; (let (case-fold-search) | |
5873 ;; (beginning-of-line) | |
5874 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) | |
5875 ;; (goto-char (1+ (match-beginning 0))) | |
5876 ;; (if raise-error | |
5877 ;; (error "No file on this line") | |
5878 ;; nil)))) | |
5879 | |
5880 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) | |
5881 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5882 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) | |
5883 ;; ange-ftp-dired-move-to-filename-alist))) | |
5884 | |
5885 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) | |
5886 ;; ;; Assumes point is at beginning of filename. | |
5887 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5888 ;; ;; case-fold-search must be nil, at least for VMS. | |
5889 ;; ;; On failure, signals an error or returns nil. | |
5890 ;; ;; This is the CMS version. | |
5891 ;; (let ((opoint (point)) | |
5892 ;; case-fold-search hidden) | |
5893 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5894 ;; (setq hidden (and selective-display | |
5895 ;; (save-excursion | |
5896 ;; (search-forward "\r" eol t)))) | |
5897 ;; (if hidden | |
5898 ;; (if no-error | |
5899 ;; nil | |
5900 ;; (error | |
5901 ;; (substitute-command-keys | |
5902 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
5903 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5904 ;; (skip-chars-forward " " eol) | |
5905 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5906 ;; (if (eq opoint (point)) | |
5907 ;; (if no-error | |
5908 ;; nil | |
5909 ;; (error "No file on this line")) | |
5910 ;; (point))))) | |
5911 | |
5912 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) | |
5913 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5914 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) | |
5915 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5916 | |
5917 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse) | |
5918 (if (string-match "-Z$" name) | |
5919 (list nil (substring name 0 -2)) | |
5920 (list t (concat name "-Z")))) | |
5921 | |
5922 (or (assq 'cms ange-ftp-make-compressed-filename-alist) | |
5923 (setq ange-ftp-make-compressed-filename-alist | |
5924 (cons '(cms . ange-ftp-cms-make-compressed-filename) | |
5925 ange-ftp-make-compressed-filename-alist))) | |
5926 | |
5927 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) | |
5928 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) | |
5929 ;; (and name | |
5930 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) | |
5931 ;; (concat (substring name 0 (match-end 1)) | |
5932 ;; "." | |
5933 ;; (substring name (match-beginning 2) (match-end 2))) | |
5934 ;; name)))) | |
5935 | |
5936 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) | |
5937 ;; (setq ange-ftp-dired-get-filename-alist | |
5938 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) | |
5939 ;; ange-ftp-dired-get-filename-alist))) | |
5940 | |
5941 ;;;; ------------------------------------------------------------ | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5942 ;;;; BS2000 support |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5943 ;;;; ------------------------------------------------------------ |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5944 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5945 ;; There seems to be an error with regexps. '-' has to be the first |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5946 ;; character inside of the square brackets. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5947 (defconst ange-ftp-bs2000-short-filename-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5948 "[-A-Z0-9$#@.]*[A-Z][-A-Z0-9$#@.]*" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5949 "Regular expression to match for a valid short BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5950 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5951 (defconst ange-ftp-bs2000-fix-name-regexp-reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5952 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5953 "^\\(" ange-ftp-bs2000-filename-pubset-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5954 "\\(" ange-ftp-bs2000-filename-username-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5955 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5956 "Regular expression used in ange-ftp-fix-name-for-bs2000.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5957 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5958 (defconst ange-ftp-bs2000-fix-name-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5959 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5960 "/?\\(" ange-ftp-bs2000-filename-pubset-regexp "/\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5961 "\\(\\$[A-Z0-9]*/\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5962 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5963 "Regular expression used in ange-ftp-fix-name-for-bs2000.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5964 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5965 (defcustom ange-ftp-bs2000-special-prefix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5966 "X" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5967 "*Prefix used for filenames starting with '#' or '@'." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5968 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5969 :type 'string) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5970 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5971 ;; Convert NAME from UNIX-ish to BS2000. If REVERSE given then convert from |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5972 ;; BS2000 to UNIX-ish. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5973 (defun ange-ftp-fix-name-for-bs2000 (name &optional reverse) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5974 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5975 (if reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5976 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5977 ange-ftp-bs2000-fix-name-regexp-reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5978 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5979 (let ((pubset (if (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5980 (substring name 0 (match-end 1)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5981 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5982 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5983 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5984 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5985 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5986 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5987 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5988 "/" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5989 ;; we have to insert "_/" here to prevent expand-file-name to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5990 ;; interpret BS2000 pubsets as the special escape prefix: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5991 (and pubset (concat "_/" pubset "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5992 (and userid (concat userid "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5993 filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5994 (error "name %s didn't match" name)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5995 ;; and here we (maybe) have to remove the inserted "_/" 'cause |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5996 ;; of our prevention of the special escape prefix above: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5997 (if (string-match (concat "^/_/") name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5998 (setq name (substring name 2))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5999 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6000 ange-ftp-bs2000-fix-name-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6001 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6002 (let ((pubset (if (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6003 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6004 (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6005 (1- (match-end 1))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6006 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6007 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6008 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6009 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6010 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6011 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6012 (if (and (boundp 'filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6013 (stringp filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6014 (string-match "[#@].+" filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6015 (setq filename (concat ange-ftp-bs2000-special-prefix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6016 (substring filename 1)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6017 (upcase |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6018 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6019 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6020 (and userid (concat userid ".")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6021 ;; change every '/' in filename to a '.', normally not neccessary |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6022 (and filename |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6023 (apply (function concat) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6024 (mapcar (function (lambda (char) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6025 (if (= char ?/) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6026 (vector ?.) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6027 (vector char)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6028 filename)))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6029 ;; Let's hope that BS2000 recognize this anyway: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6030 name)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6031 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6032 (or (assq 'bs2000 ange-ftp-fix-name-func-alist) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6033 (setq ange-ftp-fix-name-func-alist |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6034 (cons '(bs2000 . ange-ftp-fix-name-for-bs2000) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6035 ange-ftp-fix-name-func-alist))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6036 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6037 ;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6038 ;; Remember that there are no directories in BS2000. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6039 (defun ange-ftp-fix-dir-name-for-bs2000 (dir-name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6040 (if (string-equal dir-name "/") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6041 "*" ;; Don't use an empty string here! |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6042 (ange-ftp-fix-name-for-bs2000 dir-name))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6043 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6044 (or (assq 'bs2000 ange-ftp-fix-dir-name-func-alist) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6045 (setq ange-ftp-fix-dir-name-func-alist |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6046 (cons '(bs2000 . ange-ftp-fix-dir-name-for-bs2000) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6047 ange-ftp-fix-dir-name-func-alist))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6048 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6049 (or (memq 'bs2000 ange-ftp-dumb-host-types) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6050 (setq ange-ftp-dumb-host-types |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6051 (cons 'bs2000 ange-ftp-dumb-host-types))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6052 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6053 (defvar ange-ftp-bs2000-host-regexp nil) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6054 (defvar ange-ftp-bs2000-posix-host-regexp nil) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6055 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6056 ;; Return non-nil if HOST is running BS2000. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6057 (defun ange-ftp-bs2000-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6058 (and ange-ftp-bs2000-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6059 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6060 (string-match ange-ftp-bs2000-host-regexp host)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6061 ;; Return non-nil if HOST is running BS2000 with POSIX subsystem. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6062 (defun ange-ftp-bs2000-posix-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6063 (and ange-ftp-bs2000-posix-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6064 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6065 (string-match ange-ftp-bs2000-posix-host-regexp host)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6066 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6067 (defun ange-ftp-add-bs2000-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6068 "Mark HOST as the name of a machine running BS2000." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6069 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6070 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6071 (let ((name (or (buffer-file-name) default-directory))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6072 (and name (car (ange-ftp-ftp-name name))))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6073 (if (not (ange-ftp-bs2000-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6074 (setq ange-ftp-bs2000-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6075 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6076 (and ange-ftp-bs2000-host-regexp "\\|") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6077 ange-ftp-bs2000-host-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6078 ange-ftp-host-cache nil))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6079 |
42891
3f3b687cc8bf
(ange-ftp-bs2000-posix-hook-installed): Move defvar up.
Richard M. Stallman <rms@gnu.org>
parents:
42861
diff
changeset
|
6080 (defvar ange-ftp-bs2000-posix-hook-installed nil) |
3f3b687cc8bf
(ange-ftp-bs2000-posix-hook-installed): Move defvar up.
Richard M. Stallman <rms@gnu.org>
parents:
42861
diff
changeset
|
6081 |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6082 (defun ange-ftp-add-bs2000-posix-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6083 "Mark HOST as the name of a machine running BS2000 with POSIX subsystem." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6084 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6085 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6086 (let ((name (or (buffer-file-name) default-directory))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6087 (and name (car (ange-ftp-ftp-name name))))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6088 (if (not (ange-ftp-bs2000-posix-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6089 (setq ange-ftp-bs2000-posix-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6090 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6091 (and ange-ftp-bs2000-posix-host-regexp "\\|") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6092 ange-ftp-bs2000-posix-host-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6093 ange-ftp-host-cache nil)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6094 ;; Install CD hook to cd to posix on connecting: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6095 (and (not ange-ftp-bs2000-posix-hook-installed) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6096 (add-hook 'ange-ftp-process-startup-hook 'ange-ftp-bs2000-cd-to-posix) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6097 (setq ange-ftp-bs2000-posix-hook-installed t)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6098 host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6099 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6100 (defconst ange-ftp-bs2000-filename-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6101 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6102 "\\(" ange-ftp-bs2000-filename-prefix-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6103 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6104 "Regular expression to match for a valid BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6105 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6106 (defcustom ange-ftp-bs2000-additional-pubsets |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6107 nil |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6108 "*List of additional pubsets available to all users." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6109 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6110 :type 'string) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6111 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6112 ;; These parsing functions are as general as possible because the syntax |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6113 ;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6114 ;; the BS2000 filename syntax is so rigid. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6115 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6116 ;; Extract the next filename from a BS2000 dired-like listing. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6117 (defun ange-ftp-parse-bs2000-filename () |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6118 (if (re-search-forward ange-ftp-bs2000-filename-regexp nil t) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6119 (buffer-substring (match-beginning 2) (match-end 2)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6120 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6121 ;; Parse the current buffer which is assumed to be in (some) BS2000 FTP dir |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6122 ;; format, and return a hashtable as the result. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6123 (defun ange-ftp-parse-bs2000-listing () |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6124 (let ((tbl (ange-ftp-make-hashtable)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6125 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6126 file) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6127 ;; get current pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6128 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6129 (if (re-search-forward ange-ftp-bs2000-filename-pubset-regexp nil t) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6130 (setq pubset (buffer-substring (match-beginning 0) (match-end 0)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6131 ;; add files to hashtable |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6132 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6133 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6134 (while (setq file (ange-ftp-parse-bs2000-filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6135 (ange-ftp-put-hash-entry file nil tbl))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6136 ;; add . and .. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6137 (ange-ftp-put-hash-entry "." t tbl) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6138 (ange-ftp-put-hash-entry ".." t tbl) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6139 ;; add all additional pubsets, if not listing one of them |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6140 (if (not (member pubset ange-ftp-bs2000-additional-pubsets)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6141 (mapcar (function (lambda (pubset) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6142 (ange-ftp-put-hash-entry pubset t tbl))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6143 ange-ftp-bs2000-additional-pubsets)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6144 tbl)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6145 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6146 (or (assq 'bs2000 ange-ftp-parse-list-func-alist) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6147 (setq ange-ftp-parse-list-func-alist |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6148 (cons '(bs2000 . ange-ftp-parse-bs2000-listing) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6149 ange-ftp-parse-list-func-alist))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6150 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6151 (defun ange-ftp-bs2000-cd-to-posix () |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6152 "cd to POSIX subsystem if the current host matches |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6153 ange-ftp-bs2000-posix-host-regexp. All BS2000 hosts with POSIX subsystem |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6154 MUST BE EXPLICITLY SET with ange-ftp-add-bs2000-posix-host for they cannot |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6155 be recognized automatically (they are all valid BS2000 hosts too)." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6156 (if (and host (ange-ftp-bs2000-posix-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6157 (progn |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6158 ;; change to POSIX: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6159 ; (ange-ftp-raw-send-cmd proc "cd %POSIX") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6160 (ange-ftp-cd host user "%POSIX") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6161 ;; put new home directory in the expand-dir hashtable. |
42891
3f3b687cc8bf
(ange-ftp-bs2000-posix-hook-installed): Move defvar up.
Richard M. Stallman <rms@gnu.org>
parents:
42861
diff
changeset
|
6162 ;; `host' and `user' are bound in ange-ftp-get-process. |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6163 (ange-ftp-put-hash-entry (concat host "/" user "/~") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6164 (car (ange-ftp-get-pwd host user)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6165 ange-ftp-expand-dir-hashtable)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6166 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6167 ;; Not available yet: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6168 ;; ange-ftp-bs2000-delete-file-entry |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6169 ;; ange-ftp-bs2000-add-file-entry |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6170 ;; ange-ftp-bs2000-file-name-as-directory |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6171 ;; ange-ftp-bs2000-make-compressed-filename |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6172 ;; ange-ftp-bs2000-file-name-sans-versions |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6173 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6174 ;;;; ------------------------------------------------------------ |
28210 | 6175 ;;;; Finally provide package. |
6176 ;;;; ------------------------------------------------------------ | |
6177 | |
6178 (provide 'ange-ftp) | |
6179 | |
6180 ;;; ange-ftp.el ends here |