Mercurial > emacs
annotate lisp/ange-ftp.el @ 1377:dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
use that as file name to visit, and print it in the message.
Use it for file locking too.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 10 Oct 1992 08:34:51 +0000 |
parents | 82774f4b69dd |
children | 035c3f9fa12f |
rev | line source |
---|---|
1106 | 1 ;; -*-Emacs-Lisp-*- |
1174 | 2 ;;; ??? Waiting for papers from several people. |
1106 | 3 ;; Description: transparent FTP support for GNU Emacs |
4 | |
5 ;;; Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. | |
6 ;;; | |
7 ;;; Author: Andy Norman (ange@hplb.hpl.hp.com) | |
8 ;;; | |
9 ;;; This program is free software; you can redistribute it and/or modify | |
10 ;;; it under the terms of the GNU General Public License as published by | |
11 ;;; the Free Software Foundation; either version 1, or (at your option) | |
12 ;;; any later version. | |
13 ;;; | |
14 ;;; This program is distributed in the hope that it will be useful, | |
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;;; GNU General Public License for more details. | |
18 ;;; | |
19 ;;; A copy of the GNU General Public License can be obtained from this | |
20 ;;; program's author (send electronic mail to ange@hplb.hpl.hp.com) or from | |
21 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
22 ;;; 02139, USA. | |
23 | |
24 ;;; Description: | |
25 ;;; | |
26 ;;; This package attempts to make accessing files and directories using FTP | |
27 ;;; from within GNU Emacs as simple and transparent as possible. A subset of | |
28 ;;; the common file-handling routines are extended to interact with FTP. | |
29 | |
30 ;;; Usage: | |
31 ;;; | |
32 ;;; Some of the common GNU Emacs file-handling operations have been made | |
33 ;;; FTP-smart. If one of these routines is given a filename that matches | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
34 ;;; '/user@host:name' then it will spawn an FTP process connecting to machine |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
35 ;;; 'host' as account 'user' and perform its operation on the file 'name'. |
1106 | 36 ;;; |
37 ;;; For example: if find-file is given a filename of: | |
38 ;;; | |
39 ;;; /ange@anorman:/tmp/notes | |
40 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
41 ;;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as |
1106 | 42 ;;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the |
43 ;;; contents of that file as if it were on the local filesystem. If ange-ftp | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
44 ;;; needs a password to connect then it reads one in the echo area. |
1106 | 45 |
46 ;;; Extended filename syntax: | |
47 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
48 ;;; The default extended filename syntax is '/user@host:name', where the |
1106 | 49 ;;; 'user@' part may be omitted. This syntax can be customised to a certain |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
50 ;;; extent by changing ange-ftp-name-format. There are limitations. |
1106 | 51 ;;; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
52 ;;; If the user part is omitted then ange-ftp generates a default user |
1106 | 53 ;;; instead whose value depends on the variable ange-ftp-default-user. |
54 | |
55 ;;; Passwords: | |
56 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
57 ;;; A password is required for each host/user pair. Ange-ftp reads passwords |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
58 ;;; as needed. You can also specify a password with ange-ftp-set-passwd, or |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
59 ;;; in a *valid* ~/.netrc file. |
1106 | 60 |
61 ;;; Passwords for user "anonymous": | |
62 ;;; | |
1174 | 63 ;;; Passwords for the user "anonymous" (or "ftp") are handled |
64 ;;; specially. The variable `ange-ftp-generate-anonymous-password' | |
65 ;;; controls what happens: if the value of this variable is a string, | |
66 ;;; then this is used as the password; if non-nil (the default), then | |
67 ;;; a password is created from the name of the user and the hostname | |
68 ;;; of the machine on which GNU Emacs is running; if nil then the user | |
69 ;;; is prompted for a password as normal. | |
1106 | 70 |
71 ;;; "Dumb" UNIX hosts: | |
72 ;;; | |
73 ;;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
74 ;;; used. | |
75 ;;; | |
76 ;;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
77 ;;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
78 ;;; that this change will take effect for the current GNU Emacs session only. | |
79 ;;; See below for a discussion of non-UNIX hosts. If a large number of | |
80 ;;; machines with similar hostnames have this problem then it is easier to set | |
81 ;;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
82 ;;; is unable to automatically recognize dumb unix hosts. | |
83 | |
84 ;;; File name completion: | |
85 ;;; | |
86 ;;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
87 ;;; To do filename completion, ange-ftp needs a listing from the remote host. | |
88 ;;; Therefore, for very slow connections, it might not save any time. | |
89 | |
90 ;;; FTP processes: | |
91 ;;; | |
92 ;;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
93 ;;; purposes. Some FTP servers will close the connection after a period of | |
94 ;;; time, but ange-ftp should be able to quietly reconnect the next time that | |
95 ;;; the process is needed. | |
96 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
97 ;;; Killing the "*ftp user@host*" buffer also kills the ftp process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
98 ;;; This should not cause ange-ftp any grief. |
1106 | 99 |
100 ;;; Binary file transfers: | |
101 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
102 ;;; By default ange-ftp transfers files in ASCII mode. If a file being |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
103 ;;; transferred matches the value of ange-ftp-binary-file-name-regexp then |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
104 ;;; binary mode is used for that transfer. |
1106 | 105 |
106 ;;; Account passwords: | |
107 ;;; | |
108 ;;; Some FTP servers require an additional password which is sent by the | |
109 ;;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
110 ;;; specify an account password by either calling ange-ftp-set-account, or by | |
111 ;;; specifying an account token in the .netrc file. If the account password | |
112 ;;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
113 ;;; command upon starting the FTP process. | |
114 | |
115 ;;; Preloading: | |
116 ;;; | |
117 ;;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
118 ;;; not the site-load.el file in order for the documentation strings for the | |
119 ;;; functions being overloaded to be available. | |
120 | |
121 ;;; Status reports: | |
122 ;;; | |
123 ;;; Most ange-ftp commands that talk to the FTP process output a status | |
124 ;;; message on what they are doing. In addition, ange-ftp can take advantage | |
125 ;;; of the FTP client's HASH command to display the status of transferring | |
126 ;;; files and listing directories. See the documentation for the variables | |
127 ;;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
128 ;;; ange-ftp-process-verbose for more details. | |
129 | |
130 ;;; Gateways: | |
131 ;;; | |
132 ;;; Sometimes it is neccessary for the FTP process to be run on a different | |
133 ;;; machine than the machine running GNU Emacs. This can happen when the | |
134 ;;; local machine has restrictions on what hosts it can access. | |
135 ;;; | |
136 ;;; ange-ftp has support for running the ftp process on a different (gateway) | |
137 ;;; machine. The way it works is as follows: | |
138 ;;; | |
139 ;;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
140 ;;; that doesn't have the access restrictions. | |
141 ;;; | |
142 ;;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
143 ;;; that matches hosts that can be contacted from running a local ftp | |
144 ;;; process, but fails to match hosts that can't be accessed locally. For | |
145 ;;; example: | |
146 ;;; | |
147 ;;; "\\.hp\\.com$\\|^[^.]*$" | |
148 ;;; | |
149 ;;; will match all hosts that are in the .hp.com domain, or don't have an | |
150 ;;; explicit domain in their name, but will fail to match hosts with | |
151 ;;; explicit domains or that are specified by their ip address. | |
152 ;;; | |
153 ;;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
154 ;;; the *same* name between the local machine and the gateway machine. | |
155 ;;; This directory is neccessary for temporary files created by ange-ftp. | |
156 ;;; | |
157 ;;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
158 ;;; this directory plus an identifying filename prefix. For example: | |
159 ;;; | |
160 ;;; "/nfs/hplose/ange/ange-ftp" | |
161 ;;; | |
162 ;;; where /nfs/hplose/ange is a directory that is shared between the | |
163 ;;; gateway machine and the local machine. | |
164 ;;; | |
165 ;;; The simplest way of getting a ftp process running on the gateway machine | |
166 ;;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
167 ;;; can't do this for some reason such as security then points 7 onwards will | |
168 ;;; discuss an alternative approach. | |
169 ;;; | |
170 ;;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
171 ;;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
172 ;;; | |
173 ;;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
174 ;;; isn't already. This tells ange-ftp that you are using a remote shell | |
175 ;;; rather than logging in using telnet or rlogin. | |
176 ;;; | |
177 ;;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
178 ;;; the gateway machine. If you have to use telnet or rlogin to get to the | |
179 ;;; gateway machine then follow the instructions below. | |
180 ;;; | |
181 ;;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
182 ;;; that lets you log onto the gateway machine. This may be something like | |
183 ;;; telnet or rlogin. | |
184 ;;; | |
185 ;;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
186 ;;; expression that matches the prompt you get when you login to the | |
187 ;;; gateway machine. Be very specific here; this regexp must not match | |
188 ;;; *anything* in your login banner except this prompt. | |
189 ;;; shell-prompt-pattern is far too general as it appears to match some | |
190 ;;; login banners from Sun machines. For example: | |
191 ;;; | |
192 ;;; "^$*$ *" | |
193 ;;; | |
194 ;;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
195 ;;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
196 ;;; machine. | |
197 ;;; | |
198 ;;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
199 ;;; that will put the pty connected to the gateway machine into a | |
200 ;;; no-echoing mode, and will strip off carriage-returns from output from | |
201 ;;; the gateway machine. For example: | |
202 ;;; | |
203 ;;; "stty -onlcr -echo" | |
204 ;;; | |
205 ;;; will work on HP-UX machines, whereas: | |
206 ;;; | |
207 ;;; "stty -echo nl" | |
208 ;;; | |
209 ;;; appears to work for some Sun machines. | |
210 ;;; | |
211 ;;; That's all there is to it. | |
212 | |
213 ;;; Smart gateways: | |
214 ;;; | |
215 ;;; If you have a "smart" ftp program that allows you to issue commands like | |
216 ;;; "USER foo@bar" which do nice proxy things, then look at the variables | |
217 ;;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
218 | |
219 ;;; Tips for using ange-ftp: | |
220 ;;; | |
221 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
222 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
223 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
224 ;;; there is a chance you might connect to an ULTRIX machine (such as | |
225 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
226 ;;; the side effect that dired will have problems with symlinks whose names | |
227 ;;; end in an @. If you get youself into this situation then editing | |
228 ;;; dired's ls-switches to remove "F", will temporarily fix things. | |
229 ;;; | |
230 ;;; 2. If you know that you are connecting to a certain non-UNIX machine | |
231 ;;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
232 ;;; then setting the appropriate host-type regexp | |
233 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
234 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
235 ;;; ange-ftp's inability to recognize the host-type as a bug. | |
236 ;;; | |
237 ;;; 3. For slow connections, you might get "listing unreadable" error | |
238 ;;; messages, or get an empty buffer for a file that you know has something | |
239 ;;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
240 ;;; Its default value is 5 which is plenty for reasonable connections. | |
241 ;;; However, for some transatlantic connections I set this to 20. | |
242 ;;; | |
243 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
244 ;;; copying the file to the local machine, compressing it there, and then | |
245 ;;; sending it back. Binary file transfers between machines of different | |
246 ;;; architectures can be a risky business. Test things out first on some | |
247 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
248 ;;; moving them through the local machine. Again, be careful when doing | |
249 ;;; this with binary files on non-Unix machines. | |
250 ;;; | |
251 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
252 ;;; (list of dired commands for which confirmation is not asked). You | |
253 ;;; might want to reconsider your setting of this variable, because you | |
254 ;;; might want confirmation for more commands on remote direds than on | |
255 ;;; local direds. For example, I strongly recommend that you not include | |
256 ;;; compress and uncompress in this list. If there is enough demand it | |
257 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
258 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
259 ;;; is a list of commands for which confirmation would be suppressed. Then | |
260 ;;; remote dired listings would take their (buffer-local) value of | |
261 ;;; dired-no-confirm from this alist. Who votes for this? | |
262 | |
263 ;;; --------------------------------------------------------------------- | |
264 ;;; Non-UNIX support: | |
265 ;;; --------------------------------------------------------------------- | |
266 | |
267 ;;; VMS support: | |
268 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
269 ;;; Ange-ftp has full support for VMS hosts. It |
1106 | 270 ;;; should be able to automatically recognize any VMS machine. However, if it |
271 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
272 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
273 ;;; would be grateful if you would report any failures to automatically | |
274 ;;; recognize a VMS host as a bug. | |
275 ;;; | |
276 ;;; Filename Syntax: | |
277 ;;; | |
278 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
279 ;;; UNIX-y way. For example: | |
280 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
281 ;;; would be entered as: | |
282 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
283 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
284 ;;; [.CSV.POLICY]RULES.MEM | |
285 ;;; you would type: | |
286 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
287 ;;; | |
288 ;;; A legal VMS filename is of the form: FILE.TYPE;## | |
289 ;;; where FILE can be up to 39 characters | |
290 ;;; TYPE can be up to 39 characters | |
291 ;;; ## is a version number (an integer between 1 and 32,767) | |
292 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
293 ;;; $ cannot begin a filename, and - cannot be used as the first or last | |
294 ;;; character. | |
295 ;;; | |
296 ;;; Tips: | |
297 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
298 ;;; Therefore, to access a VMS file, you must enter the filename with upper | |
299 ;;; case letters. | |
300 ;;; 2. To access the latest version of file under VMS, you use the filename | |
301 ;;; without the ";" and version number. You should always edit the latest | |
302 ;;; version of a file. If you want to edit an earlier version, copy it to a | |
303 ;;; new file first. This has nothing to do with ange-ftp, but is simply | |
304 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
305 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
306 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
307 ;;; that VMS will not allow you to save the file because it will refuse to | |
308 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
309 ;;; attach the buffer to this file. To get out of this situation, M-x | |
310 ;;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
311 ;;; latest version of the file. For this reason, in dired "f" |
1106 | 312 ;;; (dired-find-file), always loads the file sans version, whereas "v", |
313 ;;; (dired-view-file), always loads the explicit version number. The | |
314 ;;; reasoning being that it reasonable to view old versions of a file, but | |
315 ;;; not to edit them. | |
316 ;;; 3. EMACS has a feature in which it does environment variable substitution | |
317 ;;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
318 ;;; by typing $$. |
1106 | 319 |
320 ;;; MTS support: | |
321 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
322 ;;; Ange-ftp has full support for hosts running |
1106 | 323 ;;; the Michigan terminal system. It should be able to automatically |
324 ;;; recognize any MTS machine. However, if it fails to do this, you can use | |
325 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
326 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
327 ;;; would report any failures to automatically recognize a MTS host as a bug. | |
328 ;;; | |
329 ;;; Filename syntax: | |
330 ;;; | |
331 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
332 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
333 ;;; entered as | |
334 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
335 ;;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
336 ;;; to access a file in another account, you must have access permission for | |
337 ;;; it. If FILE were in your own account, then you could enter it in a | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
338 ;;; relative name fashion as |
1106 | 339 ;;; /YYYY@mtsg.ubc.ca:FILE |
340 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
341 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
342 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
343 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
344 ;;; is. | |
345 | |
346 ;;; CMS support: | |
347 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
348 ;;; Ange-ftp has full support for hosts running |
1106 | 349 ;;; CMS. It should be able to automatically recognize any CMS machine. |
350 ;;; However, if it fails to do this, you can use the command | |
351 ;;; ange-ftp-add-cms-host. As well, you can set the variable | |
352 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
353 ;;; would report any failures to automatically recognize a CMS host as a bug. | |
354 ;;; | |
355 ;;; Filename syntax: | |
356 ;;; | |
357 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
358 ;;; treated as UNIX directories. For example to access the file READ.ME in | |
359 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
360 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
361 ;;; If *.301 is the default minidisk for this account, you could access | |
362 ;;; FOO.BAR on this minidisk as | |
363 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
364 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
365 ;;; up to 8 characters. Again, beware that CMS filenames are always upper | |
366 ;;; case, and hence must be entered as such. | |
367 ;;; | |
368 ;;; Tips: | |
369 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
370 ;;; need an account password. To have ange-ftp send an account password, | |
371 ;;; you can either include it in your .netrc file, or use | |
372 ;;; ange-ftp-set-account. | |
373 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
374 ;;; can fix this. | |
375 ;;; | |
376 ;;; ------------------------------------------------------------------ | |
377 ;;; Bugs: | |
378 ;;; ------------------------------------------------------------------ | |
379 ;;; | |
380 ;;; 1. Umask problems: | |
381 ;;; Be warned that files created by using ange-ftp will take account of the | |
382 ;;; umask of the ftp daemon process rather than the umask of the creating | |
383 ;;; user. This is particulary important when logging in as the root user. | |
384 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
385 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
386 ;;; suspect that there is something similar on other systems. | |
387 ;;; | |
388 ;;; 2. Some combinations of FTP clients and servers break and get out of sync | |
389 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
390 ;;; machines cause this problem for some FTP clients. Using | |
391 ;;; ange-ftp-kill-process can be used to restart the ftp process, which | |
392 ;;; should get things back in synch. | |
393 ;;; | |
394 ;;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
395 ;;; you provide a valid filename for the remote operating system. | |
396 ;;; If you do not, then the remote FTP server will most likely | |
397 ;;; translate your filename in some way. This may cause ange-ftp to | |
398 ;;; get confused about what exactly is the name of the file. The | |
399 ;;; most common causes of this are using lower case filenames on systems | |
400 ;;; which support only upper case, and using filenames which are too | |
401 ;;; long. | |
402 ;;; | |
403 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
404 ;;; | |
405 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
406 ;;; for some reason creates a FTP process that only talks via pipes then | |
407 ;;; ange-ftp won't be getting the information it requires at the time that | |
408 ;;; it wants it since pipes flush at different times to pty's. One | |
409 ;;; disgusting way around this problem is to talk to the FTP process via | |
410 ;;; rlogin which does the 'right' things with pty's. | |
411 ;;; | |
412 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
413 ;;; worried about this too much. Eventually, we should have some caching | |
414 ;;; of the current minidisk. | |
415 ;;; | |
416 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
417 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
418 ;;; to it. This is (understandably) beyond ange-ftp. | |
419 ;;; | |
420 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
421 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
422 ;;; will use binary mode for the copy. Between systems of different | |
423 ;;; architecture, this still may not be enough to guarantee the integrity | |
424 ;;; of binary files. Binary file transfers from VMS machines are | |
425 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
426 ;;; an alist of OS type, regexp pairs? | |
427 ;;; | |
428 ;;; 9. The code to do compression of files over ftp is not as careful as it | |
429 ;;; should be. It deletes the old remote version of the file, before | |
430 ;;; actually checking if the local to remote transfer of the compressed | |
431 ;;; file succeeds. Of course to delete the original version of the file | |
432 ;;; after transferring the compressed version back is also dangerous, | |
433 ;;; because some OS's have severe restrictions on the length of filenames, | |
434 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
435 ;;; truncated. Then, ange-ftp would delete the only remaining version of | |
436 ;;; the file. Maybe ange-ftp should make backups when it compresses files | |
437 ;;; (of course, the backup "~" could also be truncated off, sigh...). | |
438 ;;; Suggestions? | |
439 ;;; | |
440 | |
441 ;;; 10. If a dir listing is attempted for an empty directory on (at least | |
442 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
443 ;;; I don't know how to get ange-ftp work to around it. | |
444 ;;; | |
445 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
446 ;;; containing spaces, but beware that the remote ftpd may not like them | |
447 ;;; much. | |
448 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
449 ;;; 12. The dired support for non-Unix-like systems does not currently work. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
450 ;;; It needs to be reimplemented by modifying the parse-...-listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
451 ;;; functions to convert the directory listing to ls -l format. |
1106 | 452 ;;; |
453 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
454 ;;; with a trailing @ in a ls -alF listing. In order to account for this | |
455 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
456 ;;; parsing a listing with the F switch. This will cause ange-ftp to | |
457 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
458 ;;; ends in an @. ange-ftp will correct itself if you take F out of the | |
459 ;;; dired ls switches (C-u s will allow you to edit the switches). The | |
460 ;;; dired buffer will be automatically reverted, which will allow ange-ftp | |
461 ;;; to fix its files hashtable. A cookie to anyone who can think of a | |
462 ;;; fast, sure-fire way to recognize ULTRIX over ftp. | |
463 | |
464 ;;; If you find any bugs or problems with this package, PLEASE either e-mail | |
465 ;;; the above author, or send a message to the ange-ftp-lovers mailing list | |
466 ;;; below. Ideas and constructive comments are especially welcome. | |
467 | |
468 ;;; ange-ftp-lovers: | |
469 ;;; | |
470 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
471 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
472 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
473 ;;; the mailing list. | |
474 ;;; | |
475 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
476 ;;; list, please mail one of the following addresses: | |
477 ;;; | |
478 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
479 ;;; or | |
480 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
481 ;;; | |
482 ;;; Please don't forget the -request part. | |
483 ;;; | |
484 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
485 ;;; following addresses: | |
486 ;;; | |
487 ;;; ange-ftp-lovers@anorman.hpl.hp.com | |
488 ;;; or | |
489 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
490 ;;; | |
491 ;;; Alternatively, there is a mailing list that only gets announcements of new | |
492 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
493 ;;; subscribed to by e-mailing to the -request address as above. Please make | |
494 ;;; it clear in the request which mailing list you wish to join. | |
495 | |
496 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
497 ;;; from: | |
498 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
499 ;;; or: | |
500 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
501 ;;; or: | |
502 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
503 | |
504 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
505 ;;; | |
506 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
507 | |
508 ;;; ----------------------------------------------------------- | |
509 ;;; Technical information on this package: | |
510 ;;; ----------------------------------------------------------- | |
511 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
512 ;;; ange-ftp works by putting a handler on file-name-handler-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
513 ;;; which is called by many primitives, and a few non-primitives, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
514 ;;; whenever they see a file name of the appropriate sort. |
1106 | 515 |
516 ;;; Checklist for adding non-UNIX support for TYPE | |
517 ;;; | |
518 ;;; The following functions may need TYPE versions: | |
519 ;;; (not all functions will be needed for every OS) | |
520 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
521 ;;; ange-ftp-fix-name-for-TYPE |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
522 ;;; ange-ftp-fix-dir-name-for-TYPE |
1106 | 523 ;;; ange-ftp-TYPE-host |
524 ;;; ange-ftp-TYPE-add-host | |
525 ;;; ange-ftp-parse-TYPE-listing | |
526 ;;; ange-ftp-TYPE-delete-file-entry | |
527 ;;; ange-ftp-TYPE-add-file-entry | |
528 ;;; ange-ftp-TYPE-file-name-as-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
529 ;;; ange-ftp-TYPE-make-compressed-filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
530 ;;; ange-ftp-TYPE-file-name-sans-versions |
1106 | 531 ;;; |
532 ;;; Variables: | |
533 ;;; | |
534 ;;; ange-ftp-TYPE-host-regexp | |
535 ;;; May need to add TYPE to ange-ftp-dumb-host-types | |
536 ;;; | |
537 ;;; Check the following functions for OS dependent coding: | |
538 ;;; | |
539 ;;; ange-ftp-host-type | |
540 ;;; ange-ftp-guess-host-type | |
541 ;;; ange-ftp-allow-child-lookup | |
542 | |
543 ;;; Host type conventions: | |
544 ;;; | |
545 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
546 ;;; (mostly) follow the following conventions for remote host types. At | |
547 ;;; least, I think that future code should try to follow these conventions, | |
548 ;;; and the current code should eventually be made compliant. | |
549 ;;; | |
550 ;;; nil = local host type, whatever that is (probably unix). | |
551 ;;; Think nil as in "not a remote host". This value is used by | |
552 ;;; ange-ftp-dired-host-type for local buffers. | |
553 ;;; | |
554 ;;; t = a remote host of unknown type. Think t is in true, it's remote. | |
555 ;;; Currently, 'unix is used as the default remote host type. | |
556 ;;; Maybe we should use t. | |
557 ;;; | |
558 ;;; 'type = a remote host of TYPE type. | |
559 ;;; | |
560 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
561 ;;; program called list. This is currently only used for Unix | |
562 ;;; dl (descriptive listings), when ange-ftp-dired-host-type | |
563 ;;; is set to 'unix:dl. | |
564 | |
565 ;;; Bug report codes: | |
566 ;;; | |
567 ;;; Because of their naive faith in this code, there are certain situations | |
568 ;;; which the writers of this program believe could never happen. However, | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
569 ;;; being realists they have put calls to `error' in the program at these |
1106 | 570 ;;; points. These errors provide a code, which is an integer, greater than 1. |
571 ;;; To aid debugging. the error codes, and the functions in which they reside | |
572 ;;; are listed below. | |
573 ;;; | |
574 ;;; 1: See ange-ftp-ls | |
575 ;;; | |
576 | |
577 ;;; ----------------------------------------------------------- | |
578 ;;; Hall of fame: | |
579 ;;; ----------------------------------------------------------- | |
580 ;;; | |
581 ;;; Thanks to Roland McGrath for improving the filename syntax handling, | |
582 ;;; for suggesting many enhancements and for numerous cleanups to the code. | |
583 ;;; | |
584 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
585 ;;; | |
586 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
587 ;;; dired / shell auto-loading. | |
588 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
589 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and |
1106 | 590 ;;; bugfixes. |
591 ;;; | |
592 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
593 ;;; VOS support, and hostname completion. | |
594 ;;; | |
595 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
596 ;;; with file-name expansion, efficiency worries, stylistic concerns and many | |
597 ;;; bugfixes. | |
598 ;;; | |
599 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
600 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
601 ;;; auto-recognition of the host type. | |
602 ;;; | |
603 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
604 ;;; | |
605 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
606 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
607 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
608 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
609 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
610 ;;; whose names I've forgotten who have helped to debug and fix problems with | |
611 ;;; ange-ftp.el. | |
612 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
613 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
614 |
1106 | 615 ;;;; ------------------------------------------------------------ |
616 ;;;; User customization variables. | |
617 ;;;; ------------------------------------------------------------ | |
618 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
619 (defvar ange-ftp-name-format |
1106 | 620 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
621 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 This is a list of the form \(REGEXP HOST USER NAME\), |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
624 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 625 parenthesized expressions in REGEXP for the components (in that order).") |
626 | |
627 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
628 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
629 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
630 | |
631 (defvar ange-ftp-multi-msgs | |
632 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^530-\\|^4[25]1-" | |
633 "*Regular expression matching messages from the ftp process that start | |
634 a multiline reply.") | |
635 | |
636 (defvar ange-ftp-good-msgs | |
637 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
638 "*Regular expression matching messages from the ftp process that indicate | |
639 that the action that was initiated has completed successfully.") | |
640 | |
641 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
642 ;; Also CMS machines use a multiline 550- reply to say that you | |
643 ;; don't have write permission. ange-ftp gets into multi-line skip | |
644 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
645 ;; when it gets the 550 line, as it should. | |
646 | |
647 (defvar ange-ftp-skip-msgs | |
648 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
649 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
650 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") | |
651 "*Regular expression matching messages from the ftp process that can be | |
652 ignored.") | |
653 | |
654 (defvar ange-ftp-fatal-msgs | |
655 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
656 "^No control connection\\|unknown host\\|^lost connection") | |
657 "*Regular expression matching messages from the FTP process that indicate | |
658 something has gone drastically wrong attempting the action that was | |
659 initiated and that the FTP process should (or already has) been killed.") | |
660 | |
661 (defvar ange-ftp-gateway-fatal-msgs | |
662 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
663 "*Regular expression matching messages from the rlogin / telnet process that | |
664 indicates that logging in to the gateway machine has gone wrong.") | |
665 | |
666 (defvar ange-ftp-xfer-size-msgs | |
667 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
668 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
669 | |
670 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
671 "*Template used to create temporary files.") | |
672 | |
673 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
674 "*Template used to create temporary files when ftp-ing through a gateway. | |
675 Files starting with this prefix need to be accessible from BOTH the local | |
676 machine and the gateway machine, and need to have the SAME name on both | |
677 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
678 cross-mounted.") | |
679 | |
680 (defvar ange-ftp-netrc-filename "~/.netrc" | |
681 "*File in .netrc format to search for passwords.") | |
682 | |
683 (defvar ange-ftp-disable-netrc-security-check nil | |
684 "*If non-nil avoid checking permissions on the .netrc file.") | |
685 | |
686 (defvar ange-ftp-default-user nil | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
687 "*User name to use when none is specied in a file name. |
1106 | 688 If nil, then the name under which the user is logged in is used. |
689 If non-nil but not a string, the user is prompted for the name.") | |
690 | |
691 (defvar ange-ftp-default-password nil | |
692 "*Password to use when the user is the same as ange-ftp-default-user.") | |
693 | |
694 (defvar ange-ftp-default-account nil | |
695 "*Account password to use when the user is the same as ange-ftp-default-user.") | |
696 | |
1174 | 697 (defvar ange-ftp-generate-anonymous-password t |
1106 | 698 "*If t, use a password of user@host when logging in as the anonymous user. |
699 If a string then use that as the password. | |
700 If nil then prompt the user for a password.") | |
701 | |
702 (defvar ange-ftp-dumb-unix-host-regexp nil | |
703 "*If non-nil, if the host being ftp'd to matches this regexp then the FTP | |
704 process uses the \'dir\' command to get directory information.") | |
705 | |
706 (defvar ange-ftp-binary-file-name-regexp | |
707 (concat "\\.Z$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" | |
708 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|" | |
709 "\\.EXE\\(;[0-9]+\\)?$\\|\\.Z-part-..$") | |
710 "*If a file matches this regexp then it is transferred in binary mode.") | |
711 | |
712 (defvar ange-ftp-gateway-host nil | |
713 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
714 | |
715 (defvar ange-ftp-local-host-regexp ".*" | |
716 "*If a host being FTP'd to matches this regexp then the ftp process is started | |
717 locally, otherwise the FTP process is started on \`ange-ftp-gateway-host\' | |
718 instead.") | |
719 | |
720 (defvar ange-ftp-gateway-program-interactive nil | |
721 "*If non-nil then the gateway program is expected to connect to the gateway | |
722 machine and eventually give a shell prompt. Both telnet and rlogin do something | |
723 like this.") | |
724 | |
725 (defvar ange-ftp-gateway-program (if (eq system-type 'hpux) "remsh" "rsh") | |
726 "*Name of program to spawn a shell on the gateway machine. Valid candidates | |
727 are rsh (remsh on hp-ux), telnet and rlogin. See also the gateway variable | |
728 above.") | |
729 | |
730 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;]*[#$%>;] *" | |
731 "*Regexp used to detect that the logging-in sequence is completed on the | |
732 gateway machine and that the shell is now awaiting input. Make this regexp as | |
733 strict as possible; it shouldn't match *anything* at all except the user's | |
734 initial prompt. The above string will fail under most SUN-3's since it | |
735 matches the login banner.") | |
736 | |
737 (defvar ange-ftp-gateway-setup-term-command | |
738 (if (eq system-type 'hpux) | |
739 "stty -onlcr -echo\n" | |
740 "stty -echo nl\n") | |
741 "*Command to use after logging in to the gateway machine to stop the terminal | |
742 echoing each command and to strip out trailing ^M characters.") | |
743 | |
744 (defvar ange-ftp-smart-gateway nil | |
745 "*If the gateway FTP is smart enough to use proxy server, then don't bother | |
746 telnetting etc, just issue a user@host command instead.") | |
747 | |
748 (defvar ange-ftp-smart-gateway-port "21" | |
749 "*Port on gateway machine to use when smart gateway is in operation.") | |
750 | |
751 (defvar ange-ftp-send-hash t | |
752 "*If non-nil, send the HASH command to the FTP client.") | |
753 | |
754 (defvar ange-ftp-binary-hash-mark-size nil | |
755 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
756 If NIL, this variable will be locally overridden if the FTP client outputs a | |
757 suitable response to the HASH command. If non-NIL then this value takes | |
758 precedence over the local value.") | |
759 | |
760 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
761 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
762 This variable is buffer-local and will be locally overridden if the FTP client | |
763 outputs a suitable response to the HASH command.") | |
764 | |
765 (defvar ange-ftp-process-verbose t | |
766 "*If non-NIL then be chatty about interaction with the FTP process.") | |
767 | |
768 (defvar ange-ftp-ftp-program-name "ftp" | |
769 "*Name of FTP program to run.") | |
770 | |
771 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
772 "*Name of FTP program to run on gateway machine. | |
773 Some AT&T folks claim to use something called `pftp' here.") | |
774 | |
775 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
776 "*A list of arguments passed to the FTP program when started.") | |
777 | |
778 (defvar ange-ftp-nslookup-program nil | |
779 "*If non-NIL then a string naming nslookup program." ) | |
780 | |
781 (defvar ange-ftp-make-backup-files () | |
782 "*A list of operating systems for which ange-ftp will make Emacs backup | |
783 files files on the remote host. For example, '\(unix\) makes sense, but | |
784 '\(unix vms\) or '\(vms\) would be silly, since vms makes its own backups.") | |
785 | |
786 (defvar ange-ftp-retry-time 5 | |
787 "*Number of seconds to wait before retrying if a file or listing | |
788 doesn't arrive. This might need to be increased for very slow connections.") | |
789 | |
790 (defvar ange-ftp-auto-save 0 | |
791 "If 1, allows ange-ftp files to be auto-saved. | |
792 If 0, suppresses auto-saving of ange-ftp files. | |
793 Don't use any other value.") | |
794 | |
795 ;;;; ------------------------------------------------------------ | |
796 ;;;; Hash table support. | |
797 ;;;; ------------------------------------------------------------ | |
798 | |
799 (require 'backquote) | |
800 | |
801 (defun ange-ftp-make-hashtable (&optional size) | |
802 "Make an obarray suitable for use as a hashtable. | |
803 SIZE, if supplied, should be a prime number." | |
804 (make-vector (or size 31) 0)) | |
805 | |
806 (defun ange-ftp-map-hashtable (fun tbl) | |
807 "Call FUNCTION on each key and value in HASHTABLE." | |
808 (mapatoms | |
809 (function | |
810 (lambda (sym) | |
811 (funcall fun (get sym 'key) (get sym 'val)))) | |
812 tbl)) | |
813 | |
814 (defmacro ange-ftp-make-hash-key (key) | |
815 "Convert KEY into a suitable key for a hashtable." | |
816 (` (if (stringp (, key)) | |
817 (, key) | |
818 (prin1-to-string (, key))))) | |
819 | |
820 (defun ange-ftp-get-hash-entry (key tbl) | |
821 "Return the value associated with KEY in HASHTABLE." | |
822 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
823 (and sym (get sym 'val)))) | |
824 | |
825 (defun ange-ftp-put-hash-entry (key val tbl) | |
826 "Record an association between KEY and VALUE in HASHTABLE." | |
827 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
828 (put sym 'val val) | |
829 (put sym 'key key))) | |
830 | |
831 (defun ange-ftp-del-hash-entry (key tbl) | |
832 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
833 (let* ((len (length tbl)) | |
834 (new-tbl (ange-ftp-make-hashtable len)) | |
835 (i (1- len))) | |
836 (ange-ftp-map-hashtable | |
837 (function | |
838 (lambda (k v) | |
839 (or (equal k key) | |
840 (ange-ftp-put-hash-entry k v new-tbl)))) | |
841 tbl) | |
842 (while (>= i 0) | |
843 (aset tbl i (aref new-tbl i)) | |
844 (setq i (1- i))) | |
845 tbl)) | |
846 | |
847 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
848 "Return whether there is an association for KEY in TABLE." | |
849 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
850 | |
851 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 852 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 853 (sort (all-completions "" tbl) |
854 (function string-lessp))) | |
855 | |
856 ;;;; ------------------------------------------------------------ | |
857 ;;;; Internal variables. | |
858 ;;;; ------------------------------------------------------------ | |
859 | |
1242
82774f4b69dd
(ange-ftp-kill-ftp-process): Delete spurious ".
Richard M. Stallman <rms@gnu.org>
parents:
1233
diff
changeset
|
860 (defconst ange-ftp-version "$Revision: 1.7 $") |
1106 | 861 |
862 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
863 "Buffer name to hold directory listing data received from ftp process.") | |
864 | |
865 (defvar ange-ftp-netrc-modtime nil | |
866 "Last modified time of the netrc file from file-attributes.") | |
867 | |
868 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
869 "Hash table holding associations between HOST, USER pairs.") | |
870 | |
871 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
872 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
873 | |
874 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
875 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
876 | |
877 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
878 "Hash table for storing directories and their respective files.") | |
879 | |
880 (defvar ange-ftp-ls-cache-lsargs nil | |
881 "Last set of args used by ange-ftp-ls.") | |
882 | |
883 (defvar ange-ftp-ls-cache-file nil | |
884 "Last file passed to ange-ftp-ls.") | |
885 | |
886 (defvar ange-ftp-ls-cache-res nil | |
887 "Last result returned from ange-ftp-ls.") | |
888 | |
889 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
890 | |
891 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
892 | |
893 ;; These are local variables in each FTP process buffer. | |
894 (defvar ange-ftp-hash-mark-unit nil) | |
895 (defvar ange-ftp-hash-mark-count nil) | |
896 (defvar ange-ftp-xfer-size nil) | |
897 (defvar ange-ftp-process-string nil) | |
898 (defvar ange-ftp-process-result-line nil) | |
899 (defvar ange-ftp-process-busy nil) | |
900 (defvar ange-ftp-process-result nil) | |
901 (defvar ange-ftp-process-multi-skip nil) | |
902 (defvar ange-ftp-process-msg nil) | |
903 (defvar ange-ftp-process-continue nil) | |
904 (defvar ange-ftp-last-percent nil) | |
905 | |
906 ;; These variables are bound by one function and examined by another. | |
907 ;; Leave them void globally for error checking. | |
908 (defvar ange-ftp-this-file) | |
909 (defvar ange-ftp-this-dir) | |
910 (defvar ange-ftp-this-user) | |
911 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
912 (defvar ange-ftp-this-msg) |
1106 | 913 (defvar ange-ftp-completion-ignored-pattern) |
914 (defvar ange-ftp-trample-marker) | |
915 | |
916 ;; New error symbols. | |
917 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
918 ;; (put 'ftp-error 'error-message "FTP error") | |
919 | |
920 ;;; ------------------------------------------------------------ | |
921 ;;; Match-data support (stolen from Kyle I think) | |
922 ;;; ------------------------------------------------------------ | |
923 | |
924 (defmacro ange-ftp-save-match-data (&rest body) | |
925 "Execute the BODY forms, restoring the global value of the match data. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
926 Also makes matching case-sensitive within BODY." |
1106 | 927 (let ((original (make-symbol "match-data")) |
928 case-fold-search) | |
929 (list | |
930 'let (list (list original '(match-data))) | |
931 (list 'unwind-protect | |
932 (cons 'progn body) | |
933 (list 'store-match-data original))))) | |
934 | |
935 (put 'ange-ftp-save-match-data 'lisp-indent-hook 0) | |
936 (put 'ange-ftp-save-match-data 'edebug-form-hook '(&rest form)) | |
937 | |
938 ;;; ------------------------------------------------------------ | |
939 ;;; Enhanced message support. | |
940 ;;; ------------------------------------------------------------ | |
941 | |
942 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
943 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
944 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 945 (let ((msg (apply (function format) fmt args)) |
946 (max (window-width (minibuffer-window)))) | |
947 (if (>= (length msg) max) | |
948 (setq msg (concat "> " (substring msg (- 3 max))))) | |
949 (message "%s" msg))) | |
950 | |
951 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
952 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
953 If the optional parameter NEW is given and the non-directory parts match, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
954 only return the directory part of FILE." |
1106 | 955 (ange-ftp-save-match-data |
956 (if (and default-directory | |
957 (string-match (concat "^" | |
958 (regexp-quote default-directory) | |
959 ".") file)) | |
960 (setq file (substring file (1- (match-end 0))))) | |
961 (if (and new | |
962 (string-equal (file-name-nondirectory file) | |
963 (file-name-nondirectory new))) | |
964 (setq file (file-name-directory file))) | |
965 (or file "./"))) | |
966 | |
967 ;;;; ------------------------------------------------------------ | |
968 ;;;; User / Host mapping support. | |
969 ;;;; ------------------------------------------------------------ | |
970 | |
971 (defun ange-ftp-set-user (host user) | |
972 "For a given HOST, set or change the default USER." | |
973 (interactive "sHost: \nsUser: ") | |
974 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
975 | |
976 (defun ange-ftp-get-user (host) | |
977 "Given a HOST, return the default USER." | |
978 (ange-ftp-parse-netrc) | |
979 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
980 (or user | |
981 (prog1 | |
982 (setq user | |
983 (cond ((stringp ange-ftp-default-user) | |
984 ;; We have a default name. Use it. | |
985 ange-ftp-default-user) | |
986 (ange-ftp-default-user | |
987 ;; Ask the user. | |
988 (let ((enable-recursive-minibuffers t)) | |
989 (read-string (format "User for %s: " host) | |
990 (user-login-name)))) | |
991 ;; Default to the user's login name. | |
992 (t | |
993 (user-login-name)))) | |
994 (ange-ftp-set-user host user))))) | |
995 | |
996 ;;;; ------------------------------------------------------------ | |
997 ;;;; Password support. | |
998 ;;;; ------------------------------------------------------------ | |
999 | |
1000 (defun ange-ftp-read-passwd (prompt &optional default) | |
1001 "Read a password, echoing `.' for each character typed. | |
1002 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
1003 Optional DEFAULT is password to start with." | |
1004 (let ((pass (if default default "")) | |
1005 (c 0) | |
1006 (echo-keystrokes 0) | |
1007 (cursor-in-echo-area t)) | |
1008 (while (progn (message "%s%s" | |
1009 prompt | |
1010 (make-string (length pass) ?.)) | |
1011 (setq c (read-char)) | |
1012 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1013 (if (= c ?\C-u) | |
1014 (setq pass "") | |
1015 (if (and (/= c ?\b) (/= c ?\177)) | |
1016 (setq pass (concat pass (char-to-string c))) | |
1017 (if (> (length pass) 0) | |
1018 (setq pass (substring pass 0 -1)))))) | |
1019 (message "") | |
1020 ;; (ange-ftp-repaint-minibuffer) | |
1021 pass)) | |
1022 | |
1023 (defmacro ange-ftp-generate-passwd-key (host user) | |
1024 (` (concat (, host) "/" (, user)))) | |
1025 | |
1026 (defmacro ange-ftp-lookup-passwd (host user) | |
1027 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1028 ange-ftp-passwd-hashtable))) | |
1029 | |
1030 (defun ange-ftp-set-passwd (host user passwd) | |
1031 "For a given HOST and USER, set or change the associated PASSWORD." | |
1032 (interactive (list (read-string "Host: ") | |
1033 (read-string "User: ") | |
1034 (ange-ftp-read-passwd "Password: "))) | |
1035 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1036 passwd | |
1037 ange-ftp-passwd-hashtable)) | |
1038 | |
1039 (defun ange-ftp-get-host-with-passwd (user) | |
1040 "Given a USER, return a host we know the password for." | |
1041 (ange-ftp-parse-netrc) | |
1042 (catch 'found-one | |
1043 (ange-ftp-map-hashtable | |
1044 (function (lambda (host val) | |
1045 (if (ange-ftp-lookup-passwd host user) | |
1046 (throw 'found-one host)))) | |
1047 ange-ftp-user-hashtable) | |
1048 (ange-ftp-save-match-data | |
1049 (ange-ftp-map-hashtable | |
1050 (function | |
1051 (lambda (key value) | |
1052 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1053 (let ((host (substring key 0 (match-beginning 1)))) | |
1054 (if (and (string-equal user (substring key (match-end 1))) | |
1055 value) | |
1056 (throw 'found-one host)))))) | |
1057 ange-ftp-passwd-hashtable)) | |
1058 nil)) | |
1059 | |
1060 (defun ange-ftp-get-passwd (host user) | |
1061 "Return the password for specified HOST and USER, asking user if necessary." | |
1062 (ange-ftp-parse-netrc) | |
1063 | |
1064 ;; look up password in the hash table first; user might have overriden the | |
1065 ;; defaults. | |
1066 (cond ((ange-ftp-lookup-passwd host user)) | |
1067 | |
1068 ;; see if default user and password set from the .netrc file. | |
1069 ((and (stringp ange-ftp-default-user) | |
1070 ange-ftp-default-password | |
1071 (string-equal user ange-ftp-default-user)) | |
1072 ange-ftp-default-password) | |
1073 | |
1074 ;; anonymous ftp password is handled specially since there is an | |
1075 ;; unwritten rule about how that is used on the Internet. | |
1076 ((and (or (string-equal user "anonymous") | |
1077 (string-equal user "ftp")) | |
1078 ange-ftp-generate-anonymous-password) | |
1079 (if (stringp ange-ftp-generate-anonymous-password) | |
1080 ange-ftp-generate-anonymous-password | |
1081 (concat (user-login-name) "@" (system-name)))) | |
1082 | |
1083 ;; see if same user has logged in to other hosts; if so then prompt | |
1084 ;; with the password that was used there. | |
1085 (t | |
1086 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1087 (passwd (if other | |
1088 | |
1089 ;; found another machine with the same user. | |
1090 ;; Try that account. | |
1091 (ange-ftp-read-passwd | |
1092 (format "passwd for %s@%s (same as %s@%s): " | |
1093 user host user other) | |
1094 (ange-ftp-lookup-passwd other user)) | |
1095 | |
1096 ;; I give up. Ask the user for the password. | |
1097 (ange-ftp-read-passwd | |
1098 (format "Password for %s@%s: " user host))))) | |
1099 (ange-ftp-set-passwd host user passwd) | |
1100 passwd)))) | |
1101 | |
1102 ;;;; ------------------------------------------------------------ | |
1103 ;;;; Account support | |
1104 ;;;; ------------------------------------------------------------ | |
1105 | |
1106 ;; Account passwords must be either specified in the .netrc file, or set | |
1107 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1108 ;; check to see whether the FTP process is actually prompting for an account | |
1109 ;; password. | |
1110 | |
1111 (defun ange-ftp-set-account (host user account) | |
1112 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1113 (interactive (list (read-string "Host: ") | |
1114 (read-string "User: ") | |
1115 (ange-ftp-read-passwd "Account password: "))) | |
1116 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1117 account | |
1118 ange-ftp-account-hashtable)) | |
1119 | |
1120 (defun ange-ftp-get-account (host user) | |
1121 "Given a HOST and USER, return the FTP account." | |
1122 (ange-ftp-parse-netrc) | |
1123 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1124 ange-ftp-account-hashtable) | |
1125 (and (stringp ange-ftp-default-user) | |
1126 (string-equal user ange-ftp-default-user) | |
1127 ange-ftp-default-account))) | |
1128 | |
1129 ;;;; ------------------------------------------------------------ | |
1130 ;;;; ~/.netrc support | |
1131 ;;;; ------------------------------------------------------------ | |
1132 | |
1133 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1134 "Return the filename that FILE references, following all symbolic links." |
1106 | 1135 (let (temp) |
1136 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1137 (setq file | |
1138 (if (file-name-absolute-p temp) | |
1139 temp | |
1140 (concat (file-name-directory file) temp))))) | |
1141 file) | |
1142 | |
1143 (defun ange-ftp-parse-netrc-token (token limit) | |
1144 "Move along current line looking for the value of the TOKEN. | |
1145 Valid separators between TOKEN and its value are commas and | |
1146 whitespace. Second arg LIMIT is a limit for the search." | |
1147 (if (search-forward token limit t) | |
1148 (let (beg) | |
1149 (skip-chars-forward ", \t\r\n" limit) | |
1150 (if (eq (following-char) ?\") ;quoted token value | |
1151 (progn (forward-char 1) | |
1152 (setq beg (point)) | |
1153 (skip-chars-forward "^\"" limit) | |
1154 (forward-char 1) | |
1155 (buffer-substring beg (1- (point)))) | |
1156 (setq beg (point)) | |
1157 (skip-chars-forward "^, \t\r\n" limit) | |
1158 (buffer-substring beg (point)))))) | |
1159 | |
1160 (defun ange-ftp-parse-netrc-group () | |
1161 "Extract the values for the tokens \`machine\', \`login\', \`password\' | |
1162 and \`account\' in the current buffer. If successful, record the information | |
1163 found." | |
1164 (beginning-of-line) | |
1165 (let ((start (point)) | |
1166 (end (progn (re-search-forward "machine\\|default" | |
1167 (point-max) 'end 2) (point))) | |
1168 machine login password account) | |
1169 (goto-char start) | |
1170 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1171 login (ange-ftp-parse-netrc-token "login" end) | |
1172 password (ange-ftp-parse-netrc-token "password" end) | |
1173 account (ange-ftp-parse-netrc-token "account" end)) | |
1174 (if (and machine login) | |
1175 ;; found a `machine` token. | |
1176 (progn | |
1177 (ange-ftp-set-user machine login) | |
1178 (ange-ftp-set-passwd machine login password) | |
1179 (and account | |
1180 (ange-ftp-set-account machine login account))) | |
1181 (goto-char start) | |
1182 (if (search-forward "default" end t) | |
1183 ;; found a `default' token | |
1184 (progn | |
1185 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1186 password (ange-ftp-parse-netrc-token "password" end) | |
1187 account (ange-ftp-parse-netrc-token "account" end)) | |
1188 (and login | |
1189 (setq ange-ftp-default-user login)) | |
1190 (and password | |
1191 (setq ange-ftp-default-password password)) | |
1192 (and account | |
1193 (setq ange-ftp-default-account account))))) | |
1194 (goto-char end))) | |
1195 | |
1196 (defun ange-ftp-parse-netrc () | |
1233 | 1197 "Read in ~/.netrc, if one exists. |
1198 If ~/.netrc file exists and has the correct permissions then extract the | |
1106 | 1199 \`machine\', \`login\', \`password\' and \`account\' information from within." |
1200 | |
1201 ;; We set this before actually doing it to avoid the possibility | |
1202 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1203 (interactive) | |
1204 (let* ((file (ange-ftp-chase-symlinks | |
1205 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1206 (attr (ange-ftp-real-file-attributes file))) | |
1207 (if (and attr ; file exists. | |
1208 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1209 (ange-ftp-save-match-data | |
1210 (if (or ange-ftp-disable-netrc-security-check | |
1211 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1212 (string-match ".r..------" (nth 8 attr)))) | |
1213 (save-excursion | |
1214 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1215 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1216 ;; with the bit of logic below we should be able to have | |
1217 ;; encrypted .netrc files. | |
1218 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1219 (ange-ftp-real-insert-file-contents file) | |
1220 (setq buffer-file-name file) | |
1221 (setq default-directory (file-name-directory file)) | |
1222 (normal-mode t) | |
1223 (mapcar 'funcall find-file-hooks) | |
1224 (setq buffer-file-name nil) | |
1225 (goto-char (point-min)) | |
1226 (while (not (eobp)) | |
1227 (ange-ftp-parse-netrc-group)) | |
1228 (kill-buffer (current-buffer))) | |
1229 (ange-ftp-message "%s either not owned by you or badly protected." | |
1230 ange-ftp-netrc-filename) | |
1231 (sit-for 1)) | |
1232 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1233 | |
1234 (defun ange-ftp-generate-root-prefixes () | |
1235 "Return a list of prefixes of the form 'user@host:' to be used when | |
1236 completion is done in the root directory." | |
1237 (ange-ftp-parse-netrc) | |
1238 (ange-ftp-save-match-data | |
1239 (let (res) | |
1240 (ange-ftp-map-hashtable | |
1241 (function | |
1242 (lambda (key value) | |
1243 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1244 (let ((host (substring key 0 (match-beginning 1))) | |
1245 (user (substring key (match-end 1)))) | |
1246 (setq res (cons (list (concat user "@" host ":")) | |
1247 res)))))) | |
1248 ange-ftp-passwd-hashtable) | |
1249 (ange-ftp-map-hashtable | |
1250 (function (lambda (host user) | |
1251 (setq res (cons (list (concat host ":")) | |
1252 res)))) | |
1253 ange-ftp-user-hashtable) | |
1254 (or res (list nil))))) | |
1255 | |
1256 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1257 ;;;; Remote file name syntax support. |
1106 | 1258 ;;;; ------------------------------------------------------------ |
1259 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1260 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1261 "Extract the Nth ftp file name component from NS." |
1106 | 1262 (` (let ((elt (nth (, n) (, ns)))) |
1263 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1264 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1265 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1266 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1267 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1268 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1269 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1270 "Parse NAME according to `ange-ftp-name-format' (which see). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1271 Returns a list (HOST USER NAME), or nil if NAME does not match the format." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1272 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1273 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1274 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1275 ange-ftp-ftp-name-res |
1106 | 1276 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1277 (if (string-match (car ange-ftp-name-format) name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1278 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1279 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1280 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1281 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1282 (if (zerop (length user)) |
1283 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1284 (list host user name)) |
1106 | 1285 nil))))) |
1286 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1287 (defun ange-ftp-replace-name-component (fullname name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1288 "Take a FULLNAME that matches according to ange-ftp-name-format and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1289 replace the name component with NAME." |
1106 | 1290 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1291 (if (string-match (car ange-ftp-name-format) fullname) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1292 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1293 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1294 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1295 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1296 (substring fullname (match-end elt))))))) |
1106 | 1297 |
1298 ;;;; ------------------------------------------------------------ | |
1299 ;;;; Miscellaneous utils. | |
1300 ;;;; ------------------------------------------------------------ | |
1301 | |
1302 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1303 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1304 | |
1305 ;; (defun ange-ftp-repaint-minibuffer () | |
1306 ;; "Gross hack to set minibuf_message = 0, so that the contents of the | |
1307 ;; minibuffer will show." | |
1308 ;; (if (eq (selected-window) (minibuffer-window)) | |
1309 ;; (if (fboundp 'allocate-event) | |
1310 ;; ;; lemacs | |
1311 ;; (let ((unread-command-event (character-to-event ?\C-m | |
1312 ;; (allocate-event))) | |
1313 ;; (enable-recursive-minibuffers t)) | |
1314 ;; (read-from-minibuffer "" nil ange-ftp-tmp-keymap nil)) | |
1315 ;; ;; v18 GNU Emacs | |
1316 ;; (let ((unread-command-char ?\C-m) | |
1317 ;; (enable-recursive-minibuffers t)) | |
1318 ;; (read-from-minibuffer "" nil ange-ftp-tmp-keymap nil))))) | |
1319 | |
1320 (defun ange-ftp-ftp-process-buffer (host user) | |
1321 "Return the name of the buffer that collects output from the ftp process | |
1322 connected to the given HOST and USER pair." | |
1323 (concat "*ftp " user "@" host "*")) | |
1324 | |
1325 (defun ange-ftp-error (host user msg) | |
1326 "Display the last chunk of output from the ftp process for the given HOST | |
1327 USER pair, and signal an error including MSG in the text." | |
1328 (let ((cur (selected-window)) | |
1329 (pop-up-windows t)) | |
1330 (pop-to-buffer | |
1331 (get-buffer-create | |
1332 (ange-ftp-ftp-process-buffer host user))) | |
1333 (goto-char (point-max)) | |
1334 (select-window cur)) | |
1335 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1336 | |
1337 (defun ange-ftp-set-buffer-mode () | |
1338 "Set the correct modes for the current buffer if it is visiting a remote | |
1339 file." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1340 (make-local-variable 'make-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1341 (setq make-backup-files ange-ftp-make-backup-files) |
1106 | 1342 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1343 (ange-ftp-ftp-name buffer-file-name)) |
1106 | 1344 (progn |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
1345 (auto-save-mode ange-ftp-auto-save)))) |
1106 | 1346 |
1347 (defun ange-ftp-kill-ftp-process (buffer) | |
1242
82774f4b69dd
(ange-ftp-kill-ftp-process): Delete spurious ".
Richard M. Stallman <rms@gnu.org>
parents:
1233
diff
changeset
|
1348 "Kill the FTP process associated with BUFFER. |
1233 | 1349 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1350 then kill the related ftp process." |
1351 (interactive "bKill FTP process associated with buffer: ") | |
1352 (if (null buffer) | |
1353 (setq buffer (current-buffer))) | |
1354 (let ((file (or (buffer-file-name) default-directory))) | |
1355 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1356 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1357 (if parsed |
1358 (let ((host (nth 0 parsed)) | |
1359 (user (nth 1 parsed))) | |
1360 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1361 | |
1362 (defun ange-ftp-quote-string (string) | |
1363 "Quote any characters in STRING that may confuse the ftp process." | |
1364 (apply (function concat) | |
1365 (mapcar (function | |
1366 (lambda (char) | |
1367 (if (or (<= char ? ) | |
1368 (> char ?\~) | |
1369 (= char ?\") | |
1370 (= char ?\\)) | |
1371 (vector ?\\ char) | |
1372 (vector char)))) | |
1373 string))) | |
1374 | |
1375 (defun ange-ftp-barf-if-not-directory (directory) | |
1376 (or (file-directory-p directory) | |
1377 (signal 'file-error | |
1378 (list "Opening directory" | |
1379 (if (file-exists-p directory) | |
1380 "not a directory" | |
1381 "no such file or directory") | |
1382 directory)))) | |
1383 | |
1384 ;;;; ------------------------------------------------------------ | |
1385 ;;;; FTP process filter support. | |
1386 ;;;; ------------------------------------------------------------ | |
1387 | |
1388 (defun ange-ftp-process-handle-line (line proc) | |
1389 "Look at the given LINE from the ftp process PROC. Try to catagorize it | |
1390 into one of four categories: good, skip, fatal, or unknown." | |
1391 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
1392 (setq ange-ftp-xfer-size | |
1393 (ash (string-to-int (substring line | |
1394 (match-beginning 1) | |
1395 (match-end 1))) | |
1396 -10))) | |
1397 ((string-match ange-ftp-skip-msgs line) | |
1398 t) | |
1399 ((string-match ange-ftp-good-msgs line) | |
1400 (setq ange-ftp-process-busy nil | |
1401 ange-ftp-process-result t | |
1402 ange-ftp-process-result-line line)) | |
1403 ((string-match ange-ftp-fatal-msgs line) | |
1404 (delete-process proc) | |
1405 (setq ange-ftp-process-busy nil | |
1406 ange-ftp-process-result-line line)) | |
1407 ((string-match ange-ftp-multi-msgs line) | |
1408 (setq ange-ftp-process-multi-skip t)) | |
1409 (ange-ftp-process-multi-skip | |
1410 t) | |
1411 (t | |
1412 (setq ange-ftp-process-busy nil | |
1413 ange-ftp-process-result-line line)))) | |
1414 | |
1415 (defun ange-ftp-process-log-string (proc str) | |
1416 "For a given PROCESS, log the given STRING at the end of its | |
1417 associated buffer." | |
1418 (let ((old-buffer (current-buffer))) | |
1419 (unwind-protect | |
1420 (let (moving) | |
1421 (set-buffer (process-buffer proc)) | |
1422 (setq moving (= (point) (process-mark proc))) | |
1423 (save-excursion | |
1424 ;; Insert the text, moving the process-marker. | |
1425 (goto-char (process-mark proc)) | |
1426 (insert str) | |
1427 (set-marker (process-mark proc) (point))) | |
1428 (if moving (goto-char (process-mark proc)))) | |
1429 (set-buffer old-buffer)))) | |
1430 | |
1431 (defun ange-ftp-set-xfer-size (host user bytes) | |
1432 "Set the size of the next FTP transfer in bytes." | |
1433 (let ((proc (ange-ftp-get-process host user))) | |
1434 (if proc | |
1435 (let ((buf (process-buffer proc))) | |
1436 (if buf | |
1437 (save-excursion | |
1438 (set-buffer buf) | |
1439 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1440 | |
1441 (defun ange-ftp-process-handle-hash (str) | |
1442 "Remove hash marks from STRING and display count so far." | |
1443 (setq str (concat (substring str 0 (match-beginning 0)) | |
1444 (substring str (match-end 0))) | |
1445 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1446 (match-beginning 0)) | |
1447 ange-ftp-hash-mark-count)) | |
1448 (and ange-ftp-process-msg | |
1449 ange-ftp-process-verbose | |
1450 (not (eq (selected-window) (minibuffer-window))) | |
1451 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1452 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1453 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1454 ange-ftp-hash-mark-count) | |
1455 -6))) | |
1456 (if (zerop ange-ftp-xfer-size) | |
1457 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1458 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1459 ;; cut out the redisplay of identical %-age messages. | |
1460 (if (not (eq percent ange-ftp-last-percent)) | |
1461 (progn | |
1462 (setq ange-ftp-last-percent percent) | |
1463 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1464 str) | |
1465 | |
1466 (defun ange-ftp-call-cont (cont result line) | |
1467 "Call the function specified by CONT. CONT can be either a function or a | |
1468 list of a function and some args. The first two parameters passed to the | |
1469 function will be RESULT and LINE. The remaining args will be taken from CONT | |
1470 if a list was passed." | |
1471 (if cont | |
1472 (if (and (listp cont) | |
1473 (not (eq (car cont) 'lambda))) | |
1474 (apply (car cont) result line (cdr cont)) | |
1475 (funcall cont result line)))) | |
1476 | |
1477 (defun ange-ftp-process-filter (proc str) | |
1478 "Build up a complete line of output from the ftp PROCESS and pass it | |
1479 on to ange-ftp-process-handle-line to deal with." | |
1480 (let ((buffer (process-buffer proc)) | |
1481 (old-buffer (current-buffer))) | |
1482 | |
1483 ;; see if the buffer is still around... it could have been deleted. | |
1484 (if (buffer-name buffer) | |
1485 (unwind-protect | |
1486 (ange-ftp-save-match-data | |
1487 (set-buffer (process-buffer proc)) | |
1488 | |
1489 ;; handle hash mark printing | |
1490 (and ange-ftp-hash-mark-unit | |
1491 ange-ftp-process-busy | |
1492 (string-match "^#+$" str) | |
1493 (setq str (ange-ftp-process-handle-hash str))) | |
1494 (ange-ftp-process-log-string proc str) | |
1495 (if ange-ftp-process-busy | |
1496 (progn | |
1497 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1498 str)) | |
1499 | |
1500 ;; if we gave an empty password to the USER command earlier | |
1501 ;; then we should send a null password now. | |
1502 (if (string-match "Password: *$" ange-ftp-process-string) | |
1503 (send-string proc "\n")))) | |
1504 (while (and ange-ftp-process-busy | |
1505 (string-match "\n" ange-ftp-process-string)) | |
1506 (let ((line (substring ange-ftp-process-string | |
1507 0 | |
1508 (match-beginning 0)))) | |
1509 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1510 (match-end 0))) | |
1511 (while (string-match "^ftp> *" line) | |
1512 (setq line (substring line (match-end 0)))) | |
1513 (ange-ftp-process-handle-line line proc))) | |
1514 | |
1515 ;; has the ftp client finished? if so then do some clean-up | |
1516 ;; actions. | |
1517 (if (not ange-ftp-process-busy) | |
1518 (progn | |
1519 ;; reset the xfer size | |
1520 (setq ange-ftp-xfer-size 0) | |
1521 | |
1522 ;; issue the "done" message since we've finished. | |
1523 (if (and ange-ftp-process-msg | |
1524 ange-ftp-process-verbose | |
1525 ange-ftp-process-result) | |
1526 (progn | |
1527 (ange-ftp-message "%s...done" ange-ftp-process-msg) | |
1528 ;; (ange-ftp-repaint-minibuffer) | |
1529 (setq ange-ftp-process-msg nil))) | |
1530 | |
1531 ;; is there a continuation we should be calling? if so, | |
1532 ;; we'd better call it, making sure we only call it once. | |
1533 (if ange-ftp-process-continue | |
1534 (let ((cont ange-ftp-process-continue)) | |
1535 (setq ange-ftp-process-continue nil) | |
1536 (ange-ftp-call-cont cont | |
1537 ange-ftp-process-result | |
1538 ange-ftp-process-result-line)))))) | |
1539 (set-buffer old-buffer))))) | |
1540 | |
1541 (defun ange-ftp-process-sentinel (proc str) | |
1542 "When ftp process changes state, nuke all file-entries in cache." | |
1543 (ange-ftp-save-match-data | |
1544 (let ((name (process-name proc))) | |
1545 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name) | |
1546 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
1547 (host (substring name (match-beginning 2) (match-end 2)))) | |
1548 (ange-ftp-wipe-file-entries host user)))) | |
1549 (setq ange-ftp-ls-cache-file nil))) | |
1550 | |
1551 ;;;; ------------------------------------------------------------ | |
1552 ;;;; Gateway support. | |
1553 ;;;; ------------------------------------------------------------ | |
1554 | |
1555 (defun ange-ftp-use-gateway-p (host) | |
1556 "Returns whether to access this host via a normal (non-smart) gateway." | |
1557 ;; yes, I know that I could simplify the following expression, but it is | |
1558 ;; clearer (to me at least) this way. | |
1559 (and (not ange-ftp-smart-gateway) | |
1560 (ange-ftp-save-match-data | |
1561 (not (string-match ange-ftp-local-host-regexp host))))) | |
1562 | |
1563 (defun ange-ftp-use-smart-gateway-p (host) | |
1564 "Returns whether to access this host via a smart gateway." | |
1565 (and ange-ftp-smart-gateway | |
1566 (ange-ftp-save-match-data | |
1567 (not (string-match ange-ftp-local-host-regexp host))))) | |
1568 | |
1569 | |
1570 ;;; ------------------------------------------------------------ | |
1571 ;;; Temporary file location and deletion... | |
1572 ;;; ------------------------------------------------------------ | |
1573 | |
1574 (defvar ange-ftp-tmp-name-files ()) | |
1575 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1576 (defvar ange-ftp-pid nil) | |
1577 | |
1578 (defun ange-ftp-get-pid () | |
1579 "Half-hearted attempt to get the current process's id." | |
1580 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1581 | |
1582 (defun ange-ftp-make-tmp-name (host) | |
1583 "This routine will return the name of a new file." | |
1584 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1585 ange-ftp-gateway-tmp-name-template | |
1586 ange-ftp-tmp-name-template)) | |
1587 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1588 (start ?a) | |
1589 file entry) | |
1590 (while | |
1591 (progn | |
1592 (setq file (format "%s%c%s" template start pid)) | |
1593 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1594 (or (memq entry ange-ftp-tmp-name-files) | |
1595 (ange-ftp-real-file-exists-p file))) | |
1596 (if (> (setq start (1+ start)) ?z) | |
1597 (progn | |
1598 (setq template (concat template "X")) | |
1599 (setq start ?a)))) | |
1600 (setq ange-ftp-tmp-name-files | |
1601 (cons entry ange-ftp-tmp-name-files)) | |
1602 file)) | |
1603 | |
1604 (defun ange-ftp-del-tmp-name (temp) | |
1605 (setq ange-ftp-tmp-name-files | |
1606 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1607 ange-ftp-tmp-name-files)) | |
1608 (condition-case () | |
1609 (ange-ftp-real-delete-file temp) | |
1610 (error nil))) | |
1611 | |
1612 ;;;; ------------------------------------------------------------ | |
1613 ;;;; Interactive gateway program support. | |
1614 ;;;; ------------------------------------------------------------ | |
1615 | |
1616 (defvar ange-ftp-gwp-running t) | |
1617 (defvar ange-ftp-gwp-status nil) | |
1618 | |
1619 (defun ange-ftp-gwp-sentinel (proc str) | |
1620 (setq ange-ftp-gwp-running nil)) | |
1621 | |
1622 (defun ange-ftp-gwp-filter (proc str) | |
1623 (ange-ftp-save-match-data | |
1624 (ange-ftp-process-log-string proc str) | |
1625 (cond ((string-match "login: *$" str) | |
1626 (send-string proc | |
1627 (concat | |
1628 (let ((ange-ftp-default-user t)) | |
1629 (ange-ftp-get-user ange-ftp-gateway-host)) | |
1630 "\n"))) | |
1631 ((string-match "Password: *$" str) | |
1632 (send-string proc | |
1633 (concat | |
1634 (ange-ftp-get-passwd ange-ftp-gateway-host | |
1635 (ange-ftp-get-user | |
1636 ange-ftp-gateway-host)) | |
1637 "\n"))) | |
1638 ((string-match ange-ftp-gateway-fatal-msgs str) | |
1639 (delete-process proc) | |
1640 (setq ange-ftp-gwp-running nil)) | |
1641 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1642 (setq ange-ftp-gwp-running nil | |
1643 ange-ftp-gwp-status t))))) | |
1644 | |
1645 (defun ange-ftp-gwp-start (host user name args) | |
1646 "Login to the gateway machine and fire up an ftp process." | |
1647 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
1648 (proc (start-process name name | |
1649 ange-ftp-gateway-program | |
1650 ange-ftp-gateway-host)) | |
1651 (ftp (mapconcat (function identity) args " "))) | |
1652 (process-kill-without-query proc) | |
1653 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1654 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
1655 (set-marker (process-mark proc) (point)) | |
1656 (setq ange-ftp-gwp-running t | |
1657 ange-ftp-gwp-status nil) | |
1658 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1659 (while ange-ftp-gwp-running ;perform login sequence | |
1660 (accept-process-output proc)) | |
1661 (if (not ange-ftp-gwp-status) | |
1662 (ange-ftp-error host user "unable to login to gateway")) | |
1663 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1664 (setq ange-ftp-gwp-running t | |
1665 ange-ftp-gwp-status nil) | |
1666 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1667 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1668 (accept-process-output proc)) | |
1669 (if (not ange-ftp-gwp-status) | |
1670 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1671 (setq ange-ftp-gwp-running t | |
1672 ange-ftp-gwp-status nil) | |
1673 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1674 proc)) | |
1675 | |
1676 ;;;; ------------------------------------------------------------ | |
1677 ;;;; Support for sending commands to the ftp process. | |
1678 ;;;; ------------------------------------------------------------ | |
1679 | |
1680 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1681 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1682 MSG is an optional message to output before and after the command. | |
1683 If CONT is non-NIL then it is either a function or a list of function and | |
1684 some arguments. The function will be called when the ftp command has completed. | |
1685 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1686 is whether the command was successful, and LINE is the line from the FTP | |
1687 process that caused the command to complete. | |
1688 If NOWAIT is given then the routine will return immediately the command has | |
1689 been queued with no result. CONT will still be called, however." | |
1690 (if (memq (process-status proc) '(run open)) | |
1691 (save-excursion | |
1692 (set-buffer (process-buffer proc)) | |
1693 (while ange-ftp-process-busy | |
1694 (accept-process-output)) | |
1695 (setq ange-ftp-process-string "" | |
1696 ange-ftp-process-result-line "" | |
1697 ange-ftp-process-busy t | |
1698 ange-ftp-process-result nil | |
1699 ange-ftp-process-multi-skip nil | |
1700 ange-ftp-process-msg msg | |
1701 ange-ftp-process-continue cont | |
1702 ange-ftp-hash-mark-count 0 | |
1703 ange-ftp-last-percent -1 | |
1704 cmd (concat cmd "\n")) | |
1705 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1706 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1707 (move-marker comint-last-input-start (point)) |
1106 | 1708 ;; don't insert the password into the buffer on the USER command. |
1709 (ange-ftp-save-match-data | |
1710 (if (string-match "^user \"[^\"]*\"" cmd) | |
1711 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1712 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1713 (move-marker comint-last-input-end (point)) |
1106 | 1714 (send-string proc cmd) |
1715 (set-marker (process-mark proc) (point)) | |
1716 (if nowait | |
1717 nil | |
1718 ;; hang around for command to complete | |
1719 (while ange-ftp-process-busy | |
1720 (accept-process-output proc)) | |
1721 (if cont | |
1722 nil ;cont has already been called | |
1723 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1724 | |
1725 (defun ange-ftp-nslookup-host (host) | |
1726 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1727 (interactive "sHost: ") | |
1728 (if ange-ftp-nslookup-program | |
1729 (let ((proc (start-process " *nslookup*" " *nslookup*" | |
1730 ange-ftp-nslookup-program host)) | |
1731 (res host)) | |
1732 (process-kill-without-query proc) | |
1733 (save-excursion | |
1734 (set-buffer (process-buffer proc)) | |
1735 (while (memq (process-status proc) '(run open)) | |
1736 (accept-process-output proc)) | |
1737 (goto-char (point-min)) | |
1738 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1739 (setq res (buffer-substring (match-beginning 1) | |
1740 (match-end 1)))) | |
1741 (kill-buffer (current-buffer))) | |
1742 res) | |
1743 host)) | |
1744 | |
1745 (defun ange-ftp-start-process (host user name) | |
1746 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1747 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1748 on the gateway machine to do the ftp instead." | |
1749 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
1750 (ftp-prog (if use-gateway | |
1751 ange-ftp-gateway-ftp-program-name | |
1752 ange-ftp-ftp-program-name)) | |
1753 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
1754 proc) | |
1755 (if use-gateway | |
1756 (if ange-ftp-gateway-program-interactive | |
1757 (setq proc (ange-ftp-gwp-start host user name args)) | |
1758 (setq proc (apply 'start-process name name | |
1759 (append (list ange-ftp-gateway-program | |
1760 ange-ftp-gateway-host) | |
1761 args)))) | |
1762 (setq proc (apply 'start-process name name args))) | |
1763 (process-kill-without-query proc) | |
1764 (save-excursion | |
1765 (set-buffer (process-buffer proc)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1766 (ange-ftp-mode)) |
1106 | 1767 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1768 (set-process-filter proc (function ange-ftp-process-filter)) | |
1769 (accept-process-output proc) ;wait for ftp startup message | |
1770 proc)) | |
1771 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1772 (defun ange-ftp-mode () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1773 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1774 (comint-mode) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1775 (setq major-mode 'ange-ftp-mode) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1776 (setq mode-name "Ange-ftp") |
1106 | 1777 (let ((proc (get-buffer-process (current-buffer)))) |
1778 (goto-char (point-max)) | |
1779 (set-marker (process-mark proc) (point)) | |
1780 (make-local-variable 'ange-ftp-process-string) | |
1781 (setq ange-ftp-process-string "") | |
1782 (make-local-variable 'ange-ftp-process-busy) | |
1783 (make-local-variable 'ange-ftp-process-result) | |
1784 (make-local-variable 'ange-ftp-process-msg) | |
1785 (make-local-variable 'ange-ftp-process-multi-skip) | |
1786 (make-local-variable 'ange-ftp-process-result-line) | |
1787 (make-local-variable 'ange-ftp-process-continue) | |
1788 (make-local-variable 'ange-ftp-hash-mark-count) | |
1789 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1790 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1791 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1792 (make-local-variable 'ange-ftp-xfer-size) | |
1793 (make-local-variable 'ange-ftp-last-percent) | |
1794 (setq ange-ftp-hash-mark-count 0) | |
1795 (setq ange-ftp-xfer-size 0) | |
1796 (setq ange-ftp-process-result-line ""))) | |
1797 | |
1798 (defun ange-ftp-smart-login (host user pass account proc) | |
1799 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1800 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1801 host specified in ``ange-ftp-gateway-host''." | |
1802 (let ((result (ange-ftp-raw-send-cmd | |
1803 proc | |
1804 (format "open %s %s" | |
1805 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1806 ange-ftp-smart-gateway-port) | |
1807 (format "Opening FTP connection to %s via %s" | |
1808 host | |
1809 ange-ftp-gateway-host)))) | |
1810 (or (car result) | |
1811 (ange-ftp-error host user | |
1812 (concat "OPEN request failed: " | |
1813 (cdr result)))) | |
1814 (setq result (ange-ftp-raw-send-cmd | |
1815 proc (format "user \"%s\"@%s %s %s" | |
1816 user | |
1817 (ange-ftp-nslookup-host host) | |
1818 pass | |
1819 account) | |
1820 (format "Logging in as user %s@%s" | |
1821 user host))) | |
1822 (or (car result) | |
1823 (progn | |
1824 (ange-ftp-set-passwd host user nil) ; reset password | |
1825 (ange-ftp-set-account host user nil) ; reset account | |
1826 (ange-ftp-error host user | |
1827 (concat "USER request failed: " | |
1828 (cdr result))))))) | |
1829 | |
1830 (defun ange-ftp-normal-login (host user pass account proc) | |
1831 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1832 PROC is the process to the FTP-client." | |
1833 (let ((result (ange-ftp-raw-send-cmd | |
1834 proc | |
1835 (format "open %s" (ange-ftp-nslookup-host host)) | |
1836 (format "Opening FTP connection to %s" host)))) | |
1837 (or (car result) | |
1838 (ange-ftp-error host user | |
1839 (concat "OPEN request failed: " | |
1840 (cdr result)))) | |
1841 (setq result (ange-ftp-raw-send-cmd | |
1842 proc | |
1843 (format "user \"%s\" %s %s" user pass account) | |
1844 (format "Logging in as user %s@%s" user host))) | |
1845 (or (car result) | |
1846 (progn | |
1847 (ange-ftp-set-passwd host user nil) ;reset password. | |
1848 (ange-ftp-set-account host user nil) ;reset account. | |
1849 (ange-ftp-error host user | |
1850 (concat "USER request failed: " | |
1851 (cdr result))))))) | |
1852 | |
1853 (defvar ange-ftp-hash-mark-msgs | |
1854 "[hH]ash mark [^0-9]*\\([0-9]+\\)" | |
1855 "*Regexp matching the FTP client's output upon doing a HASH command.") | |
1856 | |
1857 (defun ange-ftp-guess-hash-mark-size (proc) | |
1858 (if ange-ftp-send-hash | |
1859 (save-excursion | |
1860 (set-buffer (process-buffer proc)) | |
1861 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1862 (result (car status)) | |
1863 (line (cdr status))) | |
1864 (ange-ftp-save-match-data | |
1865 (if (string-match ange-ftp-hash-mark-msgs line) | |
1866 (let ((size (string-to-int | |
1867 (substring line | |
1868 (match-beginning 1) | |
1869 (match-end 1))))) | |
1870 (setq ange-ftp-ascii-hash-mark-size size | |
1871 ange-ftp-hash-mark-unit (ash size -4)) | |
1872 | |
1873 ;; if a default value for this is set, use that value. | |
1874 (or ange-ftp-binary-hash-mark-size | |
1875 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1876 | |
1877 (defun ange-ftp-get-process (host user) | |
1878 "Return the process object for a FTP process connected to HOST and | |
1879 logged in as USER. Create a new process if needed." | |
1880 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
1881 (proc (get-process name))) | |
1882 (if (and proc (memq (process-status proc) '(run open))) | |
1883 proc | |
1884 (let ((pass (ange-ftp-quote-string | |
1885 (ange-ftp-get-passwd host user))) | |
1886 (account (ange-ftp-quote-string | |
1887 (ange-ftp-get-account host user)))) | |
1888 ;; grab a suitable process. | |
1889 (setq proc (ange-ftp-start-process host user name)) | |
1890 | |
1891 ;; login to FTP server. | |
1892 (if (ange-ftp-use-smart-gateway-p host) | |
1893 (ange-ftp-smart-login host user pass account proc) | |
1894 (ange-ftp-normal-login host user pass account proc)) | |
1895 | |
1896 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1897 ;; fatal if this command fails. | |
1898 (ange-ftp-guess-hash-mark-size proc) | |
1899 | |
1900 ;; Guess at the host type. | |
1901 (ange-ftp-guess-host-type host user) | |
1902 | |
1903 ;; Run any user-specified hooks. Note that proc, host and user are | |
1904 ;; dynamically bound at this point. | |
1905 (run-hooks 'ange-ftp-process-startup-hook)) | |
1906 proc))) | |
1907 | |
1908 ;; Variables for caching host and host-type | |
1909 (defvar ange-ftp-host-cache nil) | |
1910 (defvar ange-ftp-host-type-cache nil) | |
1911 | |
1912 ;; If ange-ftp-host-type is called with the optional user | |
1913 ;; argument, it will attempt to guess the host type by connecting | |
1914 ;; as user, if necessary. For efficiency, I have tried to give this | |
1915 ;; optional second argument only when necessary. Have I missed any calls | |
1916 ;; to ange-ftp-host-type where it should have been supplied? | |
1917 | |
1918 (defun ange-ftp-host-type (host &optional user) | |
1919 "Return a symbol which represents the type of the HOST given. | |
1920 If the optional argument USER is given, attempts to guess the | |
1921 host-type by logging in as USER." | |
1922 (if (eq host ange-ftp-host-cache) | |
1923 ange-ftp-host-type-cache | |
1924 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
1925 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
1926 ange-ftp-host-type-cache | |
1927 (setq ange-ftp-host-cache host | |
1928 ange-ftp-host-type-cache | |
1929 (cond ((ange-ftp-dumb-unix-host host) | |
1930 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1931 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1932 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1933 ;; 'vos) |
1106 | 1934 ((and (fboundp 'ange-ftp-vms-host) |
1935 (ange-ftp-vms-host host)) | |
1936 'vms) | |
1937 ((and (fboundp 'ange-ftp-mts-host) | |
1938 (ange-ftp-mts-host host)) | |
1939 'mts) | |
1940 ((and (fboundp 'ange-ftp-cms-host) | |
1941 (ange-ftp-cms-host host)) | |
1942 'cms) | |
1943 (t | |
1944 'unix)))))) | |
1945 | |
1946 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
1947 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
1948 ;; without sacrificing speed. Also, having separate variables | |
1949 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
1950 ;; set an alist to indicate that a host is of a given type. Even with | |
1951 ;; automatic host type recognition, setting a regexp is still a good idea | |
1952 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
1953 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1954 (defvar ange-ftp-fix-name-func-alist nil |
1106 | 1955 "Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1956 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 1957 TYPE.") |
1958 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1959 (defvar ange-ftp-fix-dir-name-func-alist nil |
1106 | 1960 "Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1961 which can change UNIX directory name into a directory name more suitable |
1106 | 1962 for a host of type TYPE.") |
1963 | |
1964 ;; *** Perhaps the sense of this variable should be inverted, since there | |
1965 ;; *** is only 1 host type that can take ls-style listing options. | |
1966 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
1967 "List of host types that can't take UNIX ls-style listing options.") | |
1968 | |
1969 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
1970 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
1971 MSG is an optional status message to be output before and after issuing the | |
1972 command. | |
1973 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
1974 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1975 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 1976 ;; capability. |
1977 (let ((cmd0 (car cmd)) | |
1978 (cmd1 (nth 1 cmd)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1979 cmd2 cmd3 host-type fix-name-func) |
1106 | 1980 |
1981 (cond | |
1982 | |
1983 ;; pwd case (We don't care what host-type.) | |
1984 ((null cmd1)) | |
1985 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1986 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 1987 ((progn |
1988 (setq cmd2 (nth 2 cmd) | |
1989 host-type (ange-ftp-host-type host user)) | |
1990 ;; This will trigger an FTP login, if one doesn't exist | |
1991 (eq cmd0 'dir)) | |
1992 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1993 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 1994 'identity) |
1995 cmd1) | |
1996 cmd3 (nth 3 cmd)) | |
1997 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
1998 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
1999 ;; be happy.) | |
2000 (and (eq host-type 'unix) | |
2001 (string-match "/$" cmd1) | |
2002 (not (string-match "R" cmd3)) | |
2003 (setq cmd1 (concat cmd1 "."))) | |
2004 ;; If the remote ls can take switches, put them in | |
2005 (or (memq host-type ange-ftp-dumb-host-types) | |
2006 (setq cmd0 'ls | |
2007 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2008 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2009 ;; First argument is the remote name |
1106 | 2010 ((let ((ange-ftp-this-user user) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2011 (ange-ftp-this-host host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2012 (ange-ftp-this-msg msg)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2013 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2014 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2015 'identity)) |
1106 | 2016 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2017 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2018 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2019 ;; Second argument is the remote name |
1106 | 2020 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2021 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2022 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2023 ;; Both arguments are remote names |
1106 | 2024 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2025 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2026 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2027 |
2028 ;; Turn the command into one long string | |
2029 (setq cmd0 (symbol-name cmd0)) | |
2030 (setq cmd (concat cmd0 | |
2031 (and cmd1 (concat " " cmd1)) | |
2032 (and cmd2 (concat " " cmd2)))) | |
2033 | |
2034 ;; Actually send the resulting command. | |
2035 (let (afsc-result | |
2036 afsc-line) | |
2037 (ange-ftp-raw-send-cmd | |
2038 (ange-ftp-get-process host user) | |
2039 cmd | |
2040 msg | |
2041 (list | |
2042 (function (lambda (result line host user | |
2043 cmd msg cont nowait) | |
2044 (or cont | |
2045 (setq afsc-result result | |
2046 afsc-line line)) | |
2047 (if result | |
2048 (ange-ftp-call-cont cont result line) | |
2049 (ange-ftp-raw-send-cmd | |
2050 (ange-ftp-get-process host user) | |
2051 cmd | |
2052 msg | |
2053 (list | |
2054 (function (lambda (result line cont) | |
2055 (or cont | |
2056 (setq afsc-result result | |
2057 afsc-line line)) | |
2058 (ange-ftp-call-cont cont result line))) | |
2059 cont) | |
2060 nowait)))) | |
2061 host user cmd msg cont nowait) | |
2062 nowait) | |
2063 | |
2064 (if nowait | |
2065 nil | |
2066 (if cont | |
2067 nil | |
2068 (cons afsc-result afsc-line)))))) | |
2069 | |
2070 ;; It might be nice to message users about the host type identified, | |
2071 ;; but there is so much other messaging going on, it would not be | |
2072 ;; seen. No point in slowing things down just so users can read | |
2073 ;; a host type message. | |
2074 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2075 (defconst ange-ftp-cms-name-template |
1106 | 2076 (concat |
2077 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2078 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2079 (defconst ange-ftp-vms-name-template |
1106 | 2080 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2081 (defconst ange-ftp-mts-name-template |
1106 | 2082 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2083 | |
2084 (defun ange-ftp-guess-host-type (host user) | |
2085 "Guess at the the host type of HOST by doing a pwd, and examining | |
2086 the directory syntax." | |
2087 (let ((host-type (ange-ftp-host-type host)) | |
2088 (key (concat host "/" user "/~"))) | |
2089 (if (eq host-type 'unix) | |
2090 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2091 (ange-ftp-save-match-data | |
2092 (let* ((result (ange-ftp-get-pwd host user)) | |
2093 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2094 fix-name-func) |
1106 | 2095 (cond ((null dir) |
2096 (message "Warning! Unable to get home directory") | |
2097 (sit-for 1) | |
2098 (if (string-match | |
2099 "^450 No current working directory defined$" | |
2100 (cdr result)) | |
2101 | |
2102 ;; We'll assume that if pwd bombs with this | |
2103 ;; error message, then it's CMS. | |
2104 (progn | |
2105 (ange-ftp-add-cms-host host) | |
2106 (setq ange-ftp-host-cache host | |
2107 ange-ftp-host-type-cache 'cms)))) | |
2108 | |
2109 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2110 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2111 (ange-ftp-add-vms-host host) |
2112 ;; The add-host functions clear the host type cache. | |
2113 ;; Therefore, need to set the cache afterwards. | |
2114 (setq ange-ftp-host-cache host | |
2115 ange-ftp-host-type-cache 'vms)) | |
2116 | |
2117 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2118 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2119 (ange-ftp-add-mts-host host) |
2120 (setq ange-ftp-host-cache host | |
2121 ange-ftp-host-type-cache 'mts)) | |
2122 | |
2123 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2124 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2125 (ange-ftp-add-cms-host host) |
2126 (setq ange-ftp-host-cache host | |
2127 ange-ftp-host-type-cache 'cms)) | |
2128 | |
2129 ;; assume UN*X | |
2130 (t | |
2131 (setq ange-ftp-host-cache host | |
2132 ange-ftp-host-type-cache 'unix))) | |
2133 | |
2134 ;; Now that we have done a pwd, might as well put it in | |
2135 ;; the expand-dir hashtable. | |
2136 (let ((ange-ftp-this-user user) | |
2137 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2138 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2139 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2140 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2141 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2142 (ange-ftp-put-hash-entry key dir |
2143 ange-ftp-expand-dir-hashtable)))) | |
2144 | |
2145 ;; In the special case of CMS make sure that know the | |
2146 ;; expansion of the home minidisk now, because we will | |
2147 ;; be doing a lot of cd's. | |
2148 (if (and (eq host-type 'cms) | |
2149 (not (ange-ftp-hash-entry-exists-p | |
2150 key ange-ftp-expand-dir-hashtable))) | |
2151 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2152 (if dir | |
2153 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2154 ange-ftp-expand-dir-hashtable) | |
2155 (message "Warning! Unable to get home directory") | |
2156 (sit-for 1)))))) | |
2157 | |
2158 | |
2159 ;;;; ------------------------------------------------------------ | |
2160 ;;;; Remote file and directory listing support. | |
2161 ;;;; ------------------------------------------------------------ | |
2162 | |
2163 (defun ange-ftp-dumb-unix-host (host) | |
2164 "Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
2165 to take switch arguments." | |
2166 (and ange-ftp-dumb-unix-host-regexp | |
2167 (ange-ftp-save-match-data | |
2168 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
2169 | |
2170 (defun ange-ftp-add-dumb-unix-host (host) | |
2171 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2172 (interactive | |
2173 (list (read-string "Host: " | |
2174 (let ((name (or (buffer-file-name) | |
2175 (and (eq major-mode 'dired-mode) | |
2176 dired-directory)))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2177 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2178 (if (not (ange-ftp-dumb-unix-host host)) |
2179 (setq ange-ftp-dumb-unix-host-regexp | |
2180 (concat "^" (regexp-quote host) "$" | |
2181 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2182 ange-ftp-dumb-unix-host-regexp) | |
2183 ange-ftp-host-cache nil))) | |
2184 | |
2185 (defvar ange-ftp-parse-list-func-alist nil | |
2186 "Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
2187 which can parse the output from a DIR listing for a host of type TYPE.") | |
2188 | |
2189 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2190 ;; an error if file is not an ange-ftp-name |
1106 | 2191 ;; (This should never happen.) |
2192 ;; an error if either the listing is unreadable or there is an ftp error. | |
2193 ;; the listing (a string), if everything works. | |
2194 ;; | |
2195 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2196 ;; an error if not an ange-ftp-name |
1106 | 2197 ;; error if listing is unreable (most likely caused by a slow connection) |
2198 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2199 ;; directory on a remote unix machine usually (except | |
2200 ;; maybe for dumb hosts) returns an ls error, but no | |
2201 ;; ftp error, if the same is done on a VMS machine, | |
2202 ;; an ftp error is returned. Need to trap the error | |
2203 ;; so we can go on and try to list the parent.) | |
2204 ;; the listing, if everything works. | |
2205 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2206 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2207 ;; in the wildcard case. Then we make a relative directory listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2208 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2209 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2210 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2211 "Return the output of an `DIR' or `ls' command done over ftp. |
2212 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2213 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2214 away in the internal cache." | |
2215 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2216 ;; full directory listings. | |
2217 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2219 (if parsed |
2220 (let* ((host (nth 0 parsed)) | |
2221 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2222 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2223 (key (directory-file-name ange-ftp-this-file)) |
2224 (host-type (ange-ftp-host-type host user)) | |
2225 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2226 result | |
2227 temp | |
2228 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2229 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2230 (setq name |
1106 | 2231 (ange-ftp-real-file-name-as-directory |
2232 (ange-ftp-expand-dir host user "~")))) | |
2233 (if (and ange-ftp-ls-cache-file | |
2234 (string-equal key ange-ftp-ls-cache-file) | |
2235 ;; Don't care about lsargs for dumb hosts. | |
2236 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2237 ange-ftp-ls-cache-res | |
2238 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2239 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2240 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2241 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2242 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2243 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2244 (unwind-protect |
2245 (if (car (setq result (ange-ftp-send-cmd | |
2246 host | |
2247 user | |
2248 lscmd | |
2249 (format "Listing %s" | |
2250 (ange-ftp-abbreviate-filename | |
2251 ange-ftp-this-file))))) | |
2252 (save-excursion | |
2253 (set-buffer (get-buffer-create | |
2254 ange-ftp-data-buffer-name)) | |
2255 (erase-buffer) | |
2256 (if (ange-ftp-real-file-readable-p temp) | |
2257 (ange-ftp-real-insert-file-contents temp) | |
2258 (sleep-for ange-ftp-retry-time) | |
2259 ;wait for file to possibly appear | |
2260 (if (ange-ftp-real-file-readable-p temp) | |
2261 ;; Try again. | |
2262 (ange-ftp-real-insert-file-contents temp) | |
2263 (ange-ftp-error host user | |
2264 (format | |
2265 "list data file %s not readable" | |
2266 temp)))) | |
2267 (if parse | |
2268 (ange-ftp-set-files | |
2269 ange-ftp-this-file | |
2270 (if (setq | |
2271 parse-func | |
2272 (cdr (assq host-type | |
2273 ange-ftp-parse-list-func-alist))) | |
2274 (funcall parse-func) | |
2275 (ange-ftp-parse-dired-listing lsargs)))) | |
2276 (setq ange-ftp-ls-cache-file key | |
2277 ange-ftp-ls-cache-lsargs lsargs | |
2278 ; For dumb hosts-types this is | |
2279 ; meaningless but harmless. | |
2280 ange-ftp-ls-cache-res (buffer-string)) | |
2281 ;; (kill-buffer (current-buffer)) | |
2282 ange-ftp-ls-cache-res) | |
2283 (if no-error | |
2284 nil | |
2285 (ange-ftp-error host user | |
2286 (concat "DIR failed: " (cdr result))))) | |
2287 (ange-ftp-del-tmp-name temp)))) | |
2288 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2289 | |
2290 ;;;; ------------------------------------------------------------ | |
2291 ;;;; Directory information caching support. | |
2292 ;;;; ------------------------------------------------------------ | |
2293 | |
2294 (defconst ange-ftp-date-regexp | |
2295 (concat | |
2296 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2297 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2298 | |
2299 (defvar ange-ftp-add-file-entry-alist nil | |
2300 "Association list of pairs \( TYPE \. FUNC \), where FUNC | |
2301 is a function to be used to add a file entry for the OS TYPE. The | |
2302 main reason for this alist is to deal with file versions in VMS.") | |
2303 | |
2304 (defvar ange-ftp-delete-file-entry-alist nil | |
2305 "Association list of pairs \( TYPE \. FUNC \), where FUNC | |
2306 is a function to be used to delete a file entry for the OS TYPE. | |
2307 The main reason for this alist is to deal with file versions in | |
2308 VMS.") | |
2309 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2310 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2311 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2312 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2313 (car (ange-ftp-ftp-name name))) |
1106 | 2314 ange-ftp-add-file-entry-alist)) |
2315 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2316 name dir-p) |
1106 | 2317 (setq ange-ftp-ls-cache-file nil)) |
2318 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2319 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2320 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2321 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2322 (car (ange-ftp-ftp-name name))) |
1106 | 2323 ange-ftp-delete-file-entry-alist)) |
2324 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2325 name dir-p) |
1106 | 2326 (setq ange-ftp-ls-cache-file nil)) |
2327 | |
2328 (defmacro ange-ftp-parse-filename () | |
2329 ;;Extract the filename from the current line of a dired-like listing. | |
2330 (` (let ((eol (progn (end-of-line) (point)))) | |
2331 (beginning-of-line) | |
2332 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2333 (progn | |
2334 (skip-chars-forward " ") | |
2335 (skip-chars-forward "^ " eol) | |
2336 (skip-chars-forward " " eol) | |
2337 ;; We bomb on filenames starting with a space. | |
2338 (buffer-substring (point) eol)))))) | |
2339 | |
2340 ;; This deals with the F switch. Should also do something about | |
2341 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2342 ;; switch. See Sebastian's dired-get-filename. | |
2343 | |
2344 (defmacro ange-ftp-ls-parser () | |
2345 ;; Note that switches is dynamically bound. | |
2346 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2347 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2348 (used-F (and (stringp switches) | |
2349 (string-match "F" switches))) | |
2350 file-type symlink directory file) | |
2351 (while (setq file (ange-ftp-parse-filename)) | |
2352 (beginning-of-line) | |
2353 (skip-chars-forward "\t 0-9") | |
2354 (setq file-type (following-char) | |
2355 directory (eq file-type ?d)) | |
2356 (if (eq file-type ?l) | |
2357 (if (string-match " -> " file) | |
2358 (setq symlink (substring file (match-end 0)) | |
2359 file (substring file 0 (match-beginning 0))) | |
2360 ;; Shouldn't happen | |
2361 (setq symlink "")) | |
2362 (setq symlink nil)) | |
2363 ;; Only do a costly regexp search if the F switch was used. | |
2364 (if (and used-F | |
2365 (not (string-equal file "")) | |
2366 (looking-at | |
2367 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2368 (let ((socket (eq file-type ?s)) | |
2369 (executable | |
2370 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2371 (string-match "[xst]" | |
2372 (concat | |
2373 (buffer-substring | |
2374 (match-beginning 1) | |
2375 (match-end 1)) | |
2376 (buffer-substring | |
2377 (match-beginning 2) | |
2378 (match-end 2)) | |
2379 (buffer-substring | |
2380 (match-beginning 3) | |
2381 (match-end 3))))))) | |
2382 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2383 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2384 ;; seem to believe in the F-switch | |
2385 (if (or (and symlink (string-match "@$" file)) | |
2386 (and directory (string-match "/$" file)) | |
2387 (and executable (string-match "*$" file)) | |
2388 (and socket (string-match "=$" file))) | |
2389 (setq file (substring file 0 -1))))) | |
2390 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2391 (forward-line 1)) | |
2392 (ange-ftp-put-hash-entry "." t tbl) | |
2393 (ange-ftp-put-hash-entry ".." t tbl) | |
2394 tbl))) | |
2395 | |
2396 ;;; The dl stuff for descriptive listings | |
2397 | |
2398 (defvar ange-ftp-dl-dir-regexp nil | |
2399 "Regexp matching directories which are listed in dl format. This regexp | |
2400 shouldn't be anchored with a trailing $ so that it will match subdirectories | |
2401 as well.") | |
2402 | |
2403 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2404 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2405 (interactive |
2406 (list (read-string "Directory: " | |
2407 (let ((name (or (buffer-file-name) | |
2408 (and (eq major-mode 'dired-mode) | |
2409 dired-directory)))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2410 (and name (ange-ftp-ftp-name name) |
1106 | 2411 (file-name-directory name)))))) |
2412 (if (not (and ange-ftp-dl-dir-regexp | |
2413 (string-match ange-ftp-dl-dir-regexp dir))) | |
2414 (setq ange-ftp-dl-dir-regexp | |
2415 (concat "^" (regexp-quote dir) | |
2416 (and ange-ftp-dl-dir-regexp "\\|") | |
2417 ange-ftp-dl-dir-regexp)))) | |
2418 | |
2419 (defmacro ange-ftp-dl-parser () | |
2420 ;; Parse the current buffer, which is assumed to be a descriptive | |
2421 ;; listing, and return a hashtable. | |
2422 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2423 (while (not (eobp)) | |
2424 (ange-ftp-put-hash-entry | |
2425 (buffer-substring (point) | |
2426 (progn | |
2427 (skip-chars-forward "^ /\n") | |
2428 (point))) | |
2429 (eq (following-char) ?/) | |
2430 tbl) | |
2431 (forward-line 1)) | |
2432 (ange-ftp-put-hash-entry "." t tbl) | |
2433 (ange-ftp-put-hash-entry ".." t tbl) | |
2434 tbl))) | |
2435 | |
2436 (defun ange-ftp-parse-dired-listing (&optional switches) | |
2437 "Parse the current buffer which is assumed to be in a dired-like listing | |
2438 format, and return a hashtable as the result. If the listing is not really | |
2439 a listing, then return nil." | |
2440 (ange-ftp-save-match-data | |
2441 (cond | |
2442 ((looking-at "^total [0-9]+$") | |
2443 (forward-line 1) | |
2444 (ange-ftp-ls-parser)) | |
2445 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2446 ;; It's an ls error message. | |
2447 nil) | |
2448 ((eobp) ; i.e. (zerop (buffer-size)) | |
2449 ;; This could be one of: | |
2450 ;; (1) An Ultrix ls error message | |
2451 ;; (2) A listing with the A switch of an empty directory | |
2452 ;; on a machine which doesn't give a total line. | |
2453 ;; (3) The twilight zone. | |
2454 ;; We'll assume (1) for now. | |
2455 nil) | |
2456 ((re-search-forward ange-ftp-date-regexp nil t) | |
2457 (beginning-of-line) | |
2458 (ange-ftp-ls-parser)) | |
2459 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2460 ;; It's a dl listing (I hope). | |
2461 ;; file is bound by the call to ange-ftp-ls | |
2462 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2463 (beginning-of-line) | |
2464 (ange-ftp-dl-parser)) | |
2465 (t nil)))) | |
2466 | |
2467 (defun ange-ftp-set-files (directory files) | |
2468 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2469 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2470 files ange-ftp-files-hashtable))) | |
2471 | |
2472 (defun ange-ftp-get-files (directory &optional no-error) | |
2473 "Given a given DIRECTORY, return a hashtable of file entries. | |
2474 This will give an error or return nil, depending on the value of | |
2475 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2476 (setq directory (file-name-as-directory directory)) ;normalize | |
2477 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
2478 (ange-ftp-save-match-data | |
2479 (and (ange-ftp-ls directory | |
2480 ;; This is an efficiency hack. We try to | |
2481 ;; anticipate what sort of listing dired | |
2482 ;; might want, and cache just such a listing. | |
2483 (if (and (boundp 'dired-actual-switches) | |
2484 (stringp dired-actual-switches) | |
2485 ;; We allow the A switch, which lists | |
2486 ;; all files except "." and "..". | |
2487 ;; This is OK because we manually | |
2488 ;; insert these entries | |
2489 ;; in the hash table. | |
2490 (string-match | |
2491 "[aA]" dired-actual-switches) | |
2492 (string-match | |
2493 "l" dired-actual-switches) | |
2494 (not (string-match | |
2495 "R" dired-actual-switches))) | |
2496 dired-actual-switches | |
2497 (if (and (boundp 'dired-listing-switches) | |
2498 (stringp dired-listing-switches) | |
2499 (string-match | |
2500 "[aA]" dired-listing-switches) | |
2501 (string-match | |
2502 "l" dired-listing-switches) | |
2503 (not (string-match | |
2504 "R" dired-listing-switches))) | |
2505 dired-listing-switches | |
2506 "-al")) | |
2507 t no-error) | |
2508 (ange-ftp-get-hash-entry | |
2509 directory ange-ftp-files-hashtable))))) | |
2510 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2511 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2512 "Given NAME, return the file part that can be used for looking up the |
1106 | 2513 file's entry in a hashtable." |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2514 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2515 (if (string-equal file "") |
2516 "." | |
2517 file)))) | |
2518 | |
2519 (defmacro ange-ftp-allow-child-lookup (dir file) | |
2520 "Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2521 allowed to determine if NAME is a sub-directory by listing it directly, |
1106 | 2522 rather than listing its parent directory. This is used for efficiency so |
2523 that a wasted listing is not done: | |
2524 1. When looking for a .dired file in dired-x.el. | |
2525 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2526 subdirectory. This is of course an OS dependent judgement." | |
2527 (` (not | |
2528 (let* ((efile (, file)) ; expand once. | |
2529 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2530 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2531 (host-type (ange-ftp-host-type |
2532 (car parsed)))) | |
2533 (or | |
2534 ;; Deal with dired | |
2535 (and (boundp 'dired-local-variables-file) | |
2536 (stringp dired-local-variables-file) | |
2537 (string-equal dired-local-variables-file efile)) | |
2538 ;; No dots in dir names in vms. | |
2539 (and (eq host-type 'vms) | |
2540 (string-match "\\." efile)) | |
2541 ;; No subdirs in mts of cms. | |
2542 (and (memq host-type '(mts cms)) | |
2543 (not (string-equal "/" (nth 2 parsed))))))))) | |
2544 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2545 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2546 "Given NAME, return whether there is a file entry for it." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2547 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2548 (dir (file-name-directory name)) |
1106 | 2549 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2550 (file (ange-ftp-get-file-part name))) |
1106 | 2551 (if ent |
2552 (ange-ftp-hash-entry-exists-p file ent) | |
2553 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2554 (setq ent (ange-ftp-get-files name t)) |
1106 | 2555 ;; Try a child lookup. i.e. try to list file as a |
2556 ;; subdirectory of dir. This is a good idea because | |
2557 ;; we may not have read permission for file's parent. Also, | |
2558 ;; people tend to work down directory trees anyway. We use | |
2559 ;; no-error ;; because if file does not exist as a subdir., | |
2560 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2561 ;; will simply send back the ls | |
2562 ;; error message. | |
2563 (ange-ftp-get-hash-entry "." ent)) | |
2564 ;; Child lookup failed. Try the parent. If this bombs, | |
2565 ;; we are at wits end -- signal an error. | |
2566 ;; Problem: If this signals an error, the error message | |
2567 ;; may not have a lot to do with what went wrong. | |
2568 (ange-ftp-hash-entry-exists-p file | |
2569 (ange-ftp-get-files dir)))))) | |
2570 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2571 (defun ange-ftp-get-file-entry (name) |
1233 | 2572 "Given NAME, return the given file entry. |
2573 The entry will be either t for a directory, nil for a normal file, | |
2574 or a string for a symlink. If the file isn't in the hashtable, | |
2575 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2576 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2577 (dir (file-name-directory name)) |
1106 | 2578 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2579 (file (ange-ftp-get-file-part name))) |
1106 | 2580 (if ent |
2581 (ange-ftp-get-hash-entry file ent) | |
2582 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2583 (setq ent (ange-ftp-get-files name t)) |
1106 | 2584 (ange-ftp-get-hash-entry "." ent)) |
2585 ;; i.e. it's a directory by child lookup | |
2586 (ange-ftp-get-hash-entry file | |
2587 (ange-ftp-get-files dir)))))) | |
2588 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2589 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2590 (if dir-p |
2591 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2592 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2593 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2594 (setq name (directory-file-name name)))) |
1106 | 2595 ;; Note that file-name-as-directory followed by directory-file-name |
2596 ;; serves to canonicalize directory file names to their unix form. | |
2597 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2598 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2599 ange-ftp-files-hashtable))) |
2600 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2601 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2602 files)))) |
2603 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2604 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2605 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2606 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2607 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2608 ange-ftp-files-hashtable))) |
2609 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2610 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2611 dir-p |
2612 files)))) | |
2613 | |
2614 (defun ange-ftp-wipe-file-entries (host user) | |
2615 "Replace the file entry information hashtable with one that doesn't have any | |
2616 entries for the given HOST, USER pair." | |
2617 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) | |
2618 (ange-ftp-map-hashtable | |
2619 (function | |
2620 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2621 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2622 (if parsed |
2623 (let ((h (nth 0 parsed)) | |
2624 (u (nth 1 parsed))) | |
2625 (or (and (equal host h) (equal user u)) | |
2626 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2627 ange-ftp-files-hashtable) | |
2628 (setq ange-ftp-files-hashtable new-tbl))) | |
2629 | |
2630 ;;;; ------------------------------------------------------------ | |
2631 ;;;; File transfer mode support. | |
2632 ;;;; ------------------------------------------------------------ | |
2633 | |
2634 (defun ange-ftp-set-binary-mode (host user) | |
2635 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2636 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2637 (if (not (car result)) | |
2638 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2639 (save-excursion | |
2640 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2641 (setq ange-ftp-hash-mark-unit (ash ange-ftp-binary-hash-mark-size -4)))))) | |
2642 | |
2643 (defun ange-ftp-set-ascii-mode (host user) | |
2644 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2645 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2646 (if (not (car result)) | |
2647 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2648 (save-excursion | |
2649 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2650 (setq ange-ftp-hash-mark-unit (ash ange-ftp-ascii-hash-mark-size -4)))))) | |
2651 | |
2652 (defun ange-ftp-cd (host user dir) | |
2653 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2654 (or (car result) | |
2655 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2656 | |
2657 (defun ange-ftp-get-pwd (host user) | |
2658 "Attempts to get the current working directory for the given HOST/USER pair. | |
2659 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2660 and LINE is the relevant success or fail line from the FTP-client." | |
2661 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2662 (line (cdr result)) | |
2663 dir) | |
2664 (if (car result) | |
2665 (ange-ftp-save-match-data | |
2666 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
2667 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2668 (setq dir (substring line | |
2669 (match-beginning 1) | |
2670 (match-end 1)))))) | |
2671 (cons dir line))) | |
2672 | |
2673 ;;; ------------------------------------------------------------ | |
2674 ;;; expand-file-name and friends...which currently don't work | |
2675 ;;; ------------------------------------------------------------ | |
2676 | |
2677 (defun ange-ftp-expand-dir (host user dir) | |
2678 "Return the result of doing a PWD in the current FTP session to machine HOST | |
2679 logged in as user USER and cd'd to directory DIR." | |
2680 (let* ((host-type (ange-ftp-host-type host user)) | |
2681 ;; It is more efficient to call ange-ftp-host-type | |
2682 ;; before binding res, because ange-ftp-host-type sometimes | |
2683 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2684 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2685 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2686 (key (concat host "/" user "/" dir)) |
2687 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2688 (or res | |
2689 (progn | |
2690 (or | |
2691 (string-equal user "anonymous") | |
2692 (string-equal user "ftp") | |
2693 (not (eq host-type 'unix)) | |
2694 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2695 "\\|" | |
2696 ange-ftp-good-msgs)) | |
2697 (result (ange-ftp-send-cmd host user | |
2698 (list 'get dir "/dev/null") | |
2699 (format "expanding %s" dir))) | |
2700 (line (cdr result))) | |
2701 (setq res | |
2702 (if (string-match ange-ftp-expand-dir-regexp line) | |
2703 (substring line | |
2704 (match-beginning 1) | |
2705 (match-end 1)))))) | |
2706 (or res | |
2707 (if (string-equal dir "~") | |
2708 (setq res (car (ange-ftp-get-pwd host user))) | |
2709 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2710 (unwind-protect | |
2711 (and (ange-ftp-cd host user dir) | |
2712 (setq res (car (ange-ftp-get-pwd host user)))) | |
2713 (ange-ftp-cd host user home))))) | |
2714 (if res | |
2715 (let ((ange-ftp-this-user user) | |
2716 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2717 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2718 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2719 (ange-ftp-put-hash-entry |
2720 key res ange-ftp-expand-dir-hashtable))) | |
2721 res)))) | |
2722 | |
2723 (defun ange-ftp-canonize-filename (n) | |
2724 "Take a string and short-circuit //, /. and /.." | |
2725 (if (string-match ".+//" n) ;don't upset Apollo users | |
2726 (setq n (substring n (1- (match-end 0))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2727 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2728 (if parsed |
2729 (let ((host (car parsed)) | |
2730 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2731 (name (nth 2 parsed))) |
1106 | 2732 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2733 ;; See if remote name is absolute. If so then just expand it and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2734 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2735 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2736 name) |
1106 | 2737 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2738 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2739 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2740 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2741 (let* ((tilda (substring name |
1106 | 2742 (match-beginning 0) |
2743 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2744 (rest (substring name (match-end 0))) |
1106 | 2745 (dir (ange-ftp-expand-dir host user tilda))) |
2746 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2747 (setq name (concat dir rest)) |
1106 | 2748 (error "User \"%s\" is not known" |
2749 (substring tilda 1))))) | |
2750 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2751 ;; relative name. Tack on homedir and re-expand. |
1106 | 2752 (t |
2753 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2754 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2755 (setq name (concat |
1106 | 2756 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2757 name)) |
1106 | 2758 (error "Unable to obtain CWD"))))) |
2759 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2760 (setq name (ange-ftp-real-expand-file-name name)) |
1106 | 2761 |
2762 ;; see if hit real expand-file-name bug... this will probably annoy | |
2763 ;; some Apollo people. I'll wait until they shout, however. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2764 (if (string-match "^//" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2765 (setq name (substring name 1))) |
1106 | 2766 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2767 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2768 (ange-ftp-replace-name-component n name)) |
1106 | 2769 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2770 ;; non-ange-ftp name. Just expand normally. |
1106 | 2771 (if (eq (string-to-char n) ?/) |
2772 (ange-ftp-real-expand-file-name n) | |
2773 (ange-ftp-real-expand-file-name | |
2774 (ange-ftp-real-file-name-nondirectory n) | |
2775 (ange-ftp-real-file-name-directory n)))))) | |
2776 | |
2777 (defun ange-ftp-expand-file-name (name &optional default) | |
2778 "Documented as original." | |
2779 (ange-ftp-save-match-data | |
2780 (if (eq (string-to-char name) ?/) | |
2781 (while (cond ((string-match ".+//" name) ;don't upset Apollo users | |
2782 (setq name (substring name (1- (match-end 0))))) | |
2783 ((string-match "/~" name) | |
2784 (setq name (substring name (1- (match-end 0)))))))) | |
2785 (cond ((eq (string-to-char name) ?~) | |
2786 (ange-ftp-real-expand-file-name name)) | |
2787 ((eq (string-to-char name) ?/) | |
2788 (ange-ftp-canonize-filename name)) | |
2789 ((zerop (length name)) | |
2790 (ange-ftp-canonize-filename (or default default-directory))) | |
2791 ((ange-ftp-canonize-filename | |
2792 (concat (file-name-as-directory (or default default-directory)) | |
2793 name)))))) | |
2794 | |
2795 ;;; These are problems--they are currently not enabled. | |
2796 | |
2797 (defvar ange-ftp-file-name-as-directory-alist nil | |
2798 "Association list of \( TYPE \. FUNC \) pairs, where | |
2799 FUNC converts a filename to a directory name for the operating | |
2800 system TYPE.") | |
2801 | |
2802 (defun ange-ftp-file-name-as-directory (name) | |
2803 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2804 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2805 (if parsed |
2806 (if (string-equal (nth 2 parsed) "") | |
2807 name | |
2808 (funcall (or (cdr (assq | |
2809 (ange-ftp-host-type (car parsed)) | |
2810 ange-ftp-file-name-as-directory-alist)) | |
2811 'ange-ftp-real-file-name-as-directory) | |
2812 name)) | |
2813 (ange-ftp-real-file-name-as-directory name)))) | |
2814 | |
2815 (defun ange-ftp-file-name-directory (name) | |
2816 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2817 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2818 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2819 (let ((filename (nth 2 parsed))) |
1106 | 2820 (if (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2821 (string-match "^~[^/]*$" filename)) |
1106 | 2822 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 (ange-ftp-replace-name-component |
1106 | 2824 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2825 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2826 (ange-ftp-real-file-name-directory name)))) |
2827 | |
2828 (defun ange-ftp-file-name-nondirectory (name) | |
2829 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2830 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2831 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2832 (let ((filename (nth 2 parsed))) |
1106 | 2833 (if (ange-ftp-save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2834 (string-match "^~[^/]*$" filename)) |
1106 | 2835 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2836 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2837 (ange-ftp-real-file-name-nondirectory name)))) |
2838 | |
2839 (defun ange-ftp-directory-file-name (dir) | |
2840 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2841 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2842 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2843 (ange-ftp-replace-name-component |
1106 | 2844 dir |
2845 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2846 (ange-ftp-real-directory-file-name dir)))) | |
2847 | |
2848 | |
2849 ;;; Hooks that handle Emacs primitives. | |
2850 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2851 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2852 (defun ange-ftp-binary-file (file) |
2853 (ange-ftp-save-match-data | |
2854 (string-match ange-ftp-binary-file-name-regexp file))) | |
2855 | |
2856 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2857 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2858 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2859 (if parsed |
2860 (let* ((host (nth 0 parsed)) | |
2861 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2862 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2863 (temp (ange-ftp-make-tmp-name host)) |
2864 (binary (ange-ftp-binary-file filename)) | |
2865 (cmd (if append 'append 'put)) | |
2866 (abbr (ange-ftp-abbreviate-filename filename))) | |
2867 (unwind-protect | |
2868 (progn | |
2869 (let ((executing-macro t) | |
2870 (filename (buffer-file-name)) | |
2871 (mod-p (buffer-modified-p))) | |
2872 (unwind-protect | |
2873 (ange-ftp-real-write-region start end temp nil visit) | |
2874 ;; cleanup forms | |
2875 (setq buffer-file-name filename) | |
2876 (set-buffer-modified-p mod-p))) | |
2877 (if binary | |
2878 (ange-ftp-set-binary-mode host user)) | |
2879 | |
2880 ;; tell the process filter what size the transfer will be. | |
2881 (let ((attr (file-attributes temp))) | |
2882 (if attr | |
2883 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2884 | |
2885 ;; put or append the file. | |
2886 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2887 (list cmd temp name) |
1106 | 2888 (format "Writing %s" abbr)))) |
2889 (or (car result) | |
2890 (signal 'ftp-error | |
2891 (list | |
2892 "Opening output file" | |
2893 (format "FTP Error: \"%s\"" (cdr result)) | |
2894 filename))))) | |
2895 (ange-ftp-del-tmp-name temp) | |
2896 (if binary | |
2897 (ange-ftp-set-ascii-mode host user))) | |
2898 (if (eq visit t) | |
2899 (progn | |
2900 (ange-ftp-set-buffer-mode) | |
2901 (setq buffer-file-name filename) | |
2902 (set-buffer-modified-p nil))) | |
2903 (ange-ftp-message "Wrote %s" abbr) | |
2904 (ange-ftp-add-file-entry filename)) | |
2905 (ange-ftp-real-write-region start end filename append visit)))) | |
2906 | |
2907 (defun ange-ftp-insert-file-contents (filename &optional visit) | |
2908 (barf-if-buffer-read-only) | |
2909 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2910 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2911 (if parsed |
2912 (progn | |
2913 (if visit | |
2914 (setq buffer-file-name filename)) | |
2915 (if (or (file-exists-p filename) | |
2916 (progn | |
2917 (setq ange-ftp-ls-cache-file nil) | |
2918 (ange-ftp-del-hash-entry (file-name-directory filename) | |
2919 ange-ftp-files-hashtable) | |
2920 (file-exists-p filename))) | |
2921 (let* ((host (nth 0 parsed)) | |
2922 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2923 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2924 (temp (ange-ftp-make-tmp-name host)) |
2925 (binary (ange-ftp-binary-file filename)) | |
2926 (abbr (ange-ftp-abbreviate-filename filename)) | |
2927 size) | |
2928 (unwind-protect | |
2929 (progn | |
2930 (if binary | |
2931 (ange-ftp-set-binary-mode host user)) | |
2932 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2933 (list 'get name temp) |
1106 | 2934 (format "Retrieving %s" abbr)))) |
2935 (or (car result) | |
2936 (signal 'ftp-error | |
2937 (list | |
2938 "Opening input file" | |
2939 (format "FTP Error: \"%s\"" (cdr result)) | |
2940 filename)))) | |
2941 (if (or (ange-ftp-real-file-readable-p temp) | |
2942 (sleep-for ange-ftp-retry-time) | |
2943 ;; Wait for file to hopefully appear. | |
2944 (ange-ftp-real-file-readable-p temp)) | |
2945 (setq | |
2946 size | |
2947 (nth 1 (ange-ftp-real-insert-file-contents temp | |
2948 visit))) | |
2949 (signal 'ftp-error | |
2950 (list | |
2951 "Opening input file:" | |
2952 (format | |
2953 "FTP Error: %s not arrived or readable" | |
2954 filename))))) | |
2955 (if binary | |
2956 (ange-ftp-set-ascii-mode host user)) | |
2957 (ange-ftp-del-tmp-name temp)) | |
2958 (if visit | |
2959 (setq buffer-file-name filename)) | |
2960 (list filename size)) | |
2961 (signal 'file-error | |
2962 (list | |
2963 "Opening input file" | |
2964 filename)))) | |
2965 (ange-ftp-real-insert-file-contents filename visit)))) | |
2966 | |
2967 (defun ange-ftp-expand-symlink (file dir) | |
2968 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2969 (ange-ftp-replace-name-component dir file) |
1106 | 2970 (expand-file-name file dir))) |
2971 | |
2972 (defun ange-ftp-file-symlink-p (file) | |
2973 ;; call ange-ftp-expand-file-name rather than the normal | |
2974 ;; expand-file-name to stop loops when using a package that | |
2975 ;; redefines both file-symlink-p and expand-file-name. | |
2976 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2977 (if (ange-ftp-ftp-name file) |
1106 | 2978 (let ((file-ent |
2979 (ange-ftp-get-hash-entry | |
2980 (ange-ftp-get-file-part file) | |
2981 (ange-ftp-get-files (file-name-directory file))))) | |
2982 (if (stringp file-ent) | |
2983 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2984 (ange-ftp-replace-name-component |
1106 | 2985 (file-name-directory file) file-ent) |
2986 file-ent))) | |
2987 (ange-ftp-real-file-symlink-p file))) | |
2988 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2989 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2990 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2991 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2992 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2993 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 2994 (if (stringp file-ent) |
2995 (file-exists-p | |
2996 (ange-ftp-expand-symlink file-ent | |
2997 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2998 (directory-file-name name)))) |
1106 | 2999 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3000 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3001 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3002 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3003 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3004 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3005 ;; We do a file-name-as-directory on name here because some |
1106 | 3006 ;; machines (VMS) use a .DIR to indicate the filename associated |
3007 ;; with a directory. This needs to be canonicalized. | |
3008 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3009 (ange-ftp-file-name-as-directory name)))) |
1106 | 3010 (if (stringp file-ent) |
3011 (file-directory-p | |
3012 (ange-ftp-expand-symlink file-ent | |
3013 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3014 (directory-file-name name)))) |
1106 | 3015 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3016 (ange-ftp-real-file-directory-p name))) |
1106 | 3017 |
3018 (defun ange-ftp-directory-files (directory &optional full match | |
3019 &rest v19-args) | |
3020 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3021 (if (ange-ftp-ftp-name directory) |
1106 | 3022 (progn |
3023 (ange-ftp-barf-if-not-directory directory) | |
3024 (let ((tail (ange-ftp-hash-table-keys | |
3025 (ange-ftp-get-files directory))) | |
3026 files f) | |
3027 (setq directory (file-name-as-directory directory)) | |
3028 (ange-ftp-save-match-data | |
3029 (while tail | |
3030 (setq f (car tail) | |
3031 tail (cdr tail)) | |
3032 (if (or (not match) (string-match match f)) | |
3033 (setq files | |
3034 (cons (if full (concat directory f) f) files))))) | |
3035 (nreverse files))) | |
3036 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3037 | |
3038 (defun ange-ftp-file-attributes (file) | |
3039 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3040 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3041 (if parsed |
3042 (let ((part (ange-ftp-get-file-part file)) | |
3043 (files (ange-ftp-get-files (file-name-directory file)))) | |
3044 (if (ange-ftp-hash-entry-exists-p part files) | |
3045 (let ((host (nth 0 parsed)) | |
3046 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3047 (name (nth 2 parsed)) |
1106 | 3048 (dirp (ange-ftp-get-hash-entry part files))) |
3049 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3050 (ange-ftp-expand-symlink dirp | |
3051 (file-name-directory file)) | |
3052 dirp) ;0 file type | |
3053 -1 ;1 link count | |
3054 -1 ;2 uid | |
3055 -1 ;3 gid | |
3056 '(0 0) ;4 atime | |
3057 '(0 0) ;5 mtime | |
3058 '(0 0) ;6 ctime | |
3059 -1 ;7 size | |
3060 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3061 "?????????") ;8 mode | |
3062 nil ;9 gid weird | |
3063 ;; Hack to give remote files a unique "inode number". | |
3064 ;; It's actually the sum of the characters in its name. | |
3065 (apply '+ (nconc (mapcar 'identity host) | |
3066 (mapcar 'identity user) | |
3067 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3068 (directory-file-name name)))) |
1106 | 3069 -1 ;11 device number [v19 only] |
3070 )))) | |
3071 (ange-ftp-real-file-attributes file)))) | |
3072 | |
3073 (defun ange-ftp-file-writable-p (file) | |
3074 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3075 (if (ange-ftp-ftp-name file) |
1106 | 3076 (or (file-exists-p file) ;guess here for speed |
3077 (file-directory-p (file-name-directory file))) | |
3078 (ange-ftp-real-file-writable-p file))) | |
3079 | |
3080 (defun ange-ftp-file-readable-p (file) | |
3081 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3082 (if (ange-ftp-ftp-name file) |
1106 | 3083 (file-exists-p file) |
3084 (ange-ftp-real-file-readable-p file))) | |
3085 | |
3086 (defun ange-ftp-delete-file (file) | |
3087 (interactive "fDelete file: ") | |
3088 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3089 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3090 (if parsed |
3091 (let* ((host (nth 0 parsed)) | |
3092 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3093 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3094 (abbr (ange-ftp-abbreviate-filename file)) |
3095 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3096 (list 'delete name) |
1106 | 3097 (format "Deleting %s" abbr)))) |
3098 (or (car result) | |
3099 (signal 'ftp-error | |
3100 (list | |
3101 "Removing old name" | |
3102 (format "FTP Error: \"%s\"" (cdr result)) | |
3103 file))) | |
3104 (ange-ftp-delete-file-entry file)) | |
3105 (ange-ftp-real-delete-file file)))) | |
3106 | |
3107 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3108 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3109 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3110 t |
3111 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3112 | |
3113 ;;;; ------------------------------------------------------------ | |
3114 ;;;; File copying support... totally re-written 6/24/92. | |
3115 ;;;; ------------------------------------------------------------ | |
3116 | |
3117 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3118 (if (file-exists-p absname) | |
3119 (if (not interactive) | |
3120 (signal 'file-already-exists (list absname)) | |
3121 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3122 absname querystring))) | |
3123 (signal 'file-already-exists (list absname)))))) | |
3124 | |
3125 ;; async local copy commented out for now since I don't seem to get | |
3126 ;; the process sentinel called for some processes. | |
3127 ;; | |
3128 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3129 ;; keep-date cont) | |
3130 ;; "Kludge to copy a local file and call a continuation when the copy | |
3131 ;; finishes." | |
3132 ;; ;; check to see if we can overwrite | |
3133 ;; (if (or (not ok-if-already-exists) | |
3134 ;; (numberp ok-if-already-exists)) | |
3135 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3136 ;; (numberp ok-if-already-exists))) | |
3137 ;; (let ((proc (start-process " *copy*" | |
3138 ;; (generate-new-buffer "*copy*") | |
3139 ;; "cp" | |
3140 ;; filename | |
3141 ;; newname)) | |
3142 ;; res) | |
3143 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3144 ;; (process-kill-without-query proc) | |
3145 ;; (save-excursion | |
3146 ;; (set-buffer (process-buffer proc)) | |
3147 ;; (make-variable-buffer-local 'copy-cont) | |
3148 ;; (setq copy-cont cont)))) | |
3149 ;; | |
3150 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3151 ;; (save-excursion | |
3152 ;; (set-buffer (process-buffer proc)) | |
3153 ;; (let ((cont copy-cont) | |
3154 ;; (result (buffer-string))) | |
3155 ;; (unwind-protect | |
3156 ;; (if (and (string-equal status "finished\n") | |
3157 ;; (zerop (length result))) | |
3158 ;; (ange-ftp-call-cont cont t nil) | |
3159 ;; (ange-ftp-call-cont cont | |
3160 ;; nil | |
3161 ;; (if (zerop (length result)) | |
3162 ;; (substring status 0 -1) | |
3163 ;; (substring result 0 -1)))) | |
3164 ;; (kill-buffer (current-buffer)))))) | |
3165 | |
3166 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3167 ;; asyncronously if asked nicely. | |
3168 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists | |
3169 keep-date &optional msg cont nowait) | |
3170 (setq filename (expand-file-name filename) | |
3171 newname (expand-file-name newname)) | |
3172 | |
3173 ;; canonicalize newname if a directory. | |
3174 (if (file-directory-p newname) | |
3175 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3176 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3177 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3178 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3179 |
3180 ;; local file to local file copy? | |
3181 (if (and (not f-parsed) (not t-parsed)) | |
3182 (progn | |
3183 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3184 keep-date) | |
3185 (if cont | |
3186 (ange-ftp-call-cont cont t "Copied locally"))) | |
3187 ;; one or both files are remote. | |
3188 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3189 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3190 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3191 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3192 (t-host (and t-parsed (nth 0 t-parsed))) | |
3193 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3194 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3195 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3196 (binary (or (ange-ftp-binary-file filename) | |
3197 (ange-ftp-binary-file newname))) | |
3198 temp1 | |
3199 temp2) | |
3200 | |
3201 ;; check to see if we can overwrite | |
3202 (if (or (not ok-if-already-exists) | |
3203 (numberp ok-if-already-exists)) | |
3204 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3205 (numberp ok-if-already-exists))) | |
3206 | |
3207 ;; do the copying. | |
3208 (if f-parsed | |
3209 | |
3210 ;; filename was remote. | |
3211 (progn | |
3212 (if (or (ange-ftp-use-gateway-p f-host) | |
3213 t-parsed) | |
3214 ;; have to use intermediate file if we are getting via | |
3215 ;; gateway machine or we are doing a remote to remote copy. | |
3216 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3217 | |
3218 (if binary | |
3219 (ange-ftp-set-binary-mode f-host f-user)) | |
3220 | |
3221 (ange-ftp-send-cmd | |
3222 f-host | |
3223 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3224 (list 'get f-name (or temp1 newname)) |
1106 | 3225 (or msg |
3226 (if (and temp1 t-parsed) | |
3227 (format "Getting %s" f-abbr) | |
3228 (format "Copying %s to %s" f-abbr t-abbr))) | |
3229 (list (function ange-ftp-cf1) | |
3230 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3231 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3232 t-parsed t-host t-user t-name t-abbr |
1106 | 3233 temp1 temp2 cont nowait) |
3234 nowait)) | |
3235 | |
3236 ;; filename wasn't remote. newname must be remote. call the | |
3237 ;; function which does the remainder of the copying work. | |
3238 (ange-ftp-cf1 t nil | |
3239 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3240 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3241 t-parsed t-host t-user t-name t-abbr |
1106 | 3242 nil nil cont nowait)))))) |
3243 | |
3244 ;; next part of copying routine. | |
3245 (defun ange-ftp-cf1 (result line | |
3246 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3247 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3248 t-parsed t-host t-user t-name t-abbr |
1106 | 3249 temp1 temp2 cont nowait) |
3250 (if line | |
3251 ;; filename must have been remote, and we must have just done a GET. | |
3252 (unwind-protect | |
3253 (or result | |
3254 ;; GET failed for some reason. Clean up and get out. | |
3255 (progn | |
3256 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3257 (or cont | |
3258 (signal 'ftp-error (list "Opening input file" | |
3259 (format "FTP Error: \"%s\"" line) | |
3260 filename))))) | |
3261 ;; cleanup | |
3262 (if binary | |
3263 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3264 | |
3265 (if result | |
3266 ;; We now have to copy either temp1 or filename to newname. | |
3267 (if t-parsed | |
3268 | |
3269 ;; newname was remote. | |
3270 (progn | |
3271 (if (ange-ftp-use-gateway-p t-host) | |
3272 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3273 | |
3274 ;; make sure data is moved into the right place for the | |
3275 ;; outgoing transfer. gateway temporary files complicate | |
3276 ;; things nicely. | |
3277 (if temp1 | |
3278 (if temp2 | |
3279 (if (string-equal temp1 temp2) | |
3280 (setq temp1 nil) | |
3281 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3282 (setq temp2 temp1 temp1 nil)) | |
3283 (if temp2 | |
3284 (ange-ftp-real-copy-file filename temp2 t))) | |
3285 | |
3286 (if binary | |
3287 (ange-ftp-set-binary-mode t-host t-user)) | |
3288 | |
3289 ;; tell the process filter what size the file is. | |
3290 (let ((attr (file-attributes (or temp2 filename)))) | |
3291 (if attr | |
3292 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3293 | |
3294 (ange-ftp-send-cmd | |
3295 t-host | |
3296 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3297 (list 'put (or temp2 filename) t-name) |
1106 | 3298 (or msg |
3299 (if (and temp2 f-parsed) | |
3300 (format "Putting %s" newname) | |
3301 (format "Copying %s to %s" f-abbr t-abbr))) | |
3302 (list (function ange-ftp-cf2) | |
3303 newname t-host t-user binary temp1 temp2 cont) | |
3304 nowait)) | |
3305 | |
3306 ;; newname wasn't remote. | |
3307 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3308 | |
3309 ;; first copy failed, tell caller | |
3310 (ange-ftp-call-cont cont result line))) | |
3311 | |
3312 ;; last part of copying routine. | |
3313 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3314 (unwind-protect | |
3315 (if line | |
3316 ;; result from doing a local to remote copy. | |
3317 (unwind-protect | |
3318 (progn | |
3319 (or result | |
3320 (or cont | |
3321 (signal 'ftp-error | |
3322 (list "Opening output file" | |
3323 (format "FTP Error: \"%s\"" line) | |
3324 newname)))) | |
3325 | |
3326 (ange-ftp-add-file-entry newname)) | |
3327 | |
3328 ;; cleanup. | |
3329 (if binary | |
3330 (ange-ftp-set-ascii-mode t-host t-user))) | |
3331 | |
3332 ;; newname was local. | |
3333 (if temp1 | |
3334 (ange-ftp-real-copy-file temp1 newname t))) | |
3335 | |
3336 ;; clean up | |
3337 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3338 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3339 (ange-ftp-call-cont cont result line))) | |
3340 | |
3341 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3342 keep-date) | |
3343 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3344 (ange-ftp-copy-file-internal filename | |
3345 newname | |
3346 ok-if-already-exists | |
3347 keep-date | |
3348 nil | |
3349 nil | |
3350 (interactive-p))) | |
3351 | |
3352 ;;;; ------------------------------------------------------------ | |
3353 ;;;; File renaming support. | |
3354 ;;;; ------------------------------------------------------------ | |
3355 | |
3356 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed | |
3357 binary) | |
3358 "Rename remote file FILE to remote file NEWNAME." | |
3359 (let ((f-host (nth 0 f-parsed)) | |
3360 (f-user (nth 1 f-parsed)) | |
3361 (t-host (nth 0 t-parsed)) | |
3362 (t-user (nth 1 t-parsed))) | |
3363 (if (and (string-equal f-host t-host) | |
3364 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3365 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3366 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3367 (cmd (list 'rename f-name t-name)) |
1106 | 3368 (fabbr (ange-ftp-abbreviate-filename filename)) |
3369 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3370 (result (ange-ftp-send-cmd f-host f-user cmd | |
3371 (format "Renaming %s to %s" | |
3372 fabbr | |
3373 nabbr)))) | |
3374 (or (car result) | |
3375 (signal 'ftp-error | |
3376 (list | |
3377 "Renaming" | |
3378 (format "FTP Error: \"%s\"" (cdr result)) | |
3379 filename | |
3380 newname))) | |
3381 (ange-ftp-add-file-entry newname) | |
3382 (ange-ftp-delete-file-entry filename)) | |
3383 (ange-ftp-copy-file-internal filename newname t nil) | |
3384 (delete-file filename)))) | |
3385 | |
3386 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3387 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3388 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3389 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3390 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3391 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3392 (let (ange-ftp-process-verbose) | |
3393 (delete-file filename)))) | |
3394 | |
3395 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3396 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3397 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3398 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3399 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3400 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3401 (let (ange-ftp-process-verbose) | |
3402 (delete-file filename)))) | |
3403 | |
3404 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3405 (interactive "fRename file: \nFRename %s to file: \np") | |
3406 (setq filename (expand-file-name filename)) | |
3407 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3408 (let* ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3409 (t-parsed (ange-ftp-ftp-name newname)) |
1106 | 3410 (binary (if (or f-parsed t-parsed) (ange-ftp-binary-file filename)))) |
3411 (if (and (or f-parsed t-parsed) | |
3412 (or (not ok-if-already-exists) | |
3413 (numberp ok-if-already-exists))) | |
3414 (ange-ftp-barf-or-query-if-file-exists | |
3415 newname | |
3416 "rename to it" | |
3417 (numberp ok-if-already-exists))) | |
3418 (if f-parsed | |
3419 (if t-parsed | |
3420 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3421 t-parsed binary) | |
3422 (ange-ftp-rename-remote-to-local filename newname)) | |
3423 (if t-parsed | |
3424 (ange-ftp-rename-local-to-remote filename newname) | |
3425 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3426 | |
3427 ;;;; ------------------------------------------------------------ | |
3428 ;;;; File name completion support. | |
3429 ;;;; ------------------------------------------------------------ | |
3430 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3431 ;; If the file entry SYM is a symlink, returns whether its file exists. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3432 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3433 (defun ange-ftp-file-entry-active-p (sym) |
3434 (let ((val (get sym 'val))) | |
3435 (or (not (stringp val)) | |
3436 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3437 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3438 ;; If the file entry is not a directory (nor a symlink pointing to a directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3439 ;; returns whether the file (or file pointed to by the symlink) is ignored |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3440 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3441 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3442 ;; are used as free variables. |
1106 | 3443 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3444 (let ((val (get sym 'val)) | |
3445 (symname (symbol-name sym))) | |
3446 (if (stringp val) | |
3447 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3448 (or (file-directory-p file) | |
3449 (and (file-exists-p file) | |
3450 (not (string-match ange-ftp-completion-ignored-pattern | |
3451 symname))))) | |
3452 (or val ; is a directory name | |
3453 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3454 | |
3455 (defun ange-ftp-file-name-all-completions (file dir) | |
3456 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3457 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3458 (progn |
3459 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3460 (setq ange-ftp-this-dir | |
3461 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3462 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3463 (completions | |
3464 (all-completions file tbl | |
3465 (function ange-ftp-file-entry-active-p)))) | |
3466 | |
3467 ;; see whether each matching file is a directory or not... | |
3468 (mapcar | |
3469 (function | |
3470 (lambda (file) | |
3471 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3472 (if (and ent | |
3473 (or (not (stringp ent)) | |
3474 (file-directory-p | |
3475 (ange-ftp-expand-symlink ent | |
3476 ange-ftp-this-dir)))) | |
3477 (concat file "/") | |
3478 file)))) | |
3479 completions))) | |
3480 | |
3481 (if (string-equal "/" ange-ftp-this-dir) | |
3482 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3483 (ange-ftp-real-file-name-all-completions file | |
3484 ange-ftp-this-dir)) | |
3485 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3486 | |
3487 (defun ange-ftp-file-name-completion (file dir) | |
3488 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3489 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3490 (progn |
3491 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3492 (if (equal file "") | |
3493 "" | |
3494 (setq ange-ftp-this-dir | |
3495 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3496 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3497 (ange-ftp-completion-ignored-pattern | |
3498 (mapconcat (function | |
3499 (lambda (s) (if (stringp s) | |
3500 (concat (regexp-quote s) "$") | |
3501 "/"))) ; / never in filename | |
3502 completion-ignored-extensions | |
3503 "\\|"))) | |
3504 (ange-ftp-save-match-data | |
3505 (or (ange-ftp-file-name-completion-1 | |
3506 file tbl ange-ftp-this-dir | |
3507 (function ange-ftp-file-entry-not-ignored-p)) | |
3508 (ange-ftp-file-name-completion-1 | |
3509 file tbl ange-ftp-this-dir | |
3510 (function ange-ftp-file-entry-active-p))))))) | |
3511 | |
3512 (if (string-equal "/" ange-ftp-this-dir) | |
3513 (try-completion | |
3514 file | |
3515 (nconc (ange-ftp-generate-root-prefixes) | |
3516 (mapcar 'list | |
3517 (ange-ftp-real-file-name-all-completions file "/")))) | |
3518 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3519 | |
3520 | |
3521 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3522 (let ((bestmatch (try-completion file tbl predicate))) | |
3523 (if bestmatch | |
3524 (if (eq bestmatch t) | |
3525 (if (file-directory-p (expand-file-name file dir)) | |
3526 (concat file "/") | |
3527 t) | |
3528 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3529 (file-directory-p | |
3530 (expand-file-name bestmatch dir))) | |
3531 (concat bestmatch "/") | |
3532 bestmatch))))) | |
3533 | |
3534 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3535 ;; ange-ftp's cache whilst doing filename completion. | |
3536 ;; | |
3537 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3538 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3539 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3540 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3541 ;; to the directory part of the contents of the current buffer. |
1106 | 3542 (defun ange-ftp-re-read-dir (&optional dir) |
3543 (interactive) | |
3544 (if dir | |
3545 (setq dir (expand-file-name dir)) | |
3546 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3547 (if (ange-ftp-ftp-name dir) |
1106 | 3548 (progn |
3549 (setq ange-ftp-ls-cache-file nil) | |
3550 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3551 (ange-ftp-get-files dir t)))) | |
3552 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3553 (defun ange-ftp-make-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3554 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3555 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3556 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3557 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3558 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3559 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3560 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3561 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3562 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3563 ;; directory-name name as an arg. Argh!! This is a bug. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3564 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3565 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3566 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3567 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3568 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3569 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3570 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3571 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3572 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3573 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3574 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3575 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3576 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3577 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3578 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3579 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3580 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3581 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3582 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3583 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3584 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3585 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3586 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3587 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3588 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3589 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3590 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3591 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3592 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3593 ;; directory-name name as an arg. Argh!! This is a bug. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3594 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3595 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3596 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3597 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3598 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3599 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3600 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3601 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3602 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3603 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3604 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3605 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3606 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3607 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3608 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3609 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3610 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3611 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3612 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3613 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3614 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3615 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3616 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3617 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3618 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3619 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3620 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3621 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3622 (if pa1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3623 (let* ((tmp1 (ange-ftp-make-tmp-name (car pa1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3624 (bin1 (ange-ftp-binary-file fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3625 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3626 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3627 tmp1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3628 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3629 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3630 ;; files, because some OS's (unlike UNIX) do not allow a filename to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3631 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3632 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3633 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3634 "Alist of host-type-specific functions to process file names for compression. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3635 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3636 FUNC should take one argument, a file name, and return a list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3637 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3638 COMPRESSING should be t if the specified file should be compressed, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3639 and nil if it should be uncompressed (that is, if it is a compressed file). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3640 NEWNAME should be the name to give the new compressed or uncompressed file.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3641 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3642 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3643 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3644 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3645 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3646 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3647 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3648 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3649 (let* ((decision |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3650 (ange-ftp-save-match-data (funcall conversion-func name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3651 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3652 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3653 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3654 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3655 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 (let (file-name-handler-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3657 (dired-compress-filename name))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3658 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3659 ;; Copy FILE to this machine, compress it, and copy out to NFILE. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3660 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3661 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3662 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3663 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3664 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3665 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3666 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3667 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3668 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3669 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3670 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3672 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3673 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3674 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3675 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3677 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3678 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3679 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3685 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3686 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3687 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3688 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3695 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3698 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3700 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3702 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3703 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3704 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3715 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3716 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3717 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3718 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3720 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 |
1106 | 3727 ;;; Define the handler for special file names |
3728 ;;; that causes ange-ftp to be invoked. | |
3729 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3730 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3731 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3732 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3733 (if fn (apply fn args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3734 (let (file-name-handler-alist) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3735 (apply operation args))))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3736 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3737 ;;;###autoload |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3738 (or (assoc "/[^/:]+:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3739 (setq file-name-handler-alist |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3740 (cons '("/[^/:]+:" . ange-ftp-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3741 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3742 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3743 ;;; The above two forms are sufficient to cause this file to be loaded |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3744 ;;; if the user ever uses a file name with a colon in it. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3745 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3746 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3747 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3748 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3749 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3750 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3751 ;;; Now say where to find the handlers for particular operations. |
1106 | 3752 |
3753 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3754 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3755 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3756 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3757 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3758 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3759 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3760 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3761 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3762 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3763 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3764 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
3765 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) | |
3766 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3767 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3768 (put 'verify-visited-file-modtime 'ange-ftp | |
3769 'ange-ftp-verify-visited-file-modtime) | |
3770 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3771 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3772 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3773 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3774 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3775 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3776 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3777 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3778 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3779 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3781 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3782 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3783 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3784 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3785 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3786 |
1106 | 3787 (defun ange-ftp-real-file-name-directory (&rest args) |
3788 (let (file-name-handler-alist) | |
3789 (apply 'file-name-directory args))) | |
3790 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
3791 (let (file-name-handler-alist) | |
3792 (apply 'file-name-nondirectory args))) | |
3793 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
3794 (let (file-name-handler-alist) | |
3795 (apply 'file-name-as-directory args))) | |
3796 (defun ange-ftp-real-directory-file-name (&rest args) | |
3797 (let (file-name-handler-alist) | |
3798 (apply 'directory-file-name args))) | |
3799 (defun ange-ftp-real-expand-file-name (&rest args) | |
3800 (let (file-name-handler-alist) | |
3801 (apply 'expand-file-name args))) | |
3802 (defun ange-ftp-real-make-directory (&rest args) | |
3803 (let (file-name-handler-alist) | |
3804 (apply 'make-directory args))) | |
3805 (defun ange-ftp-real-delete-directory (&rest args) | |
3806 (let (file-name-handler-alist) | |
3807 (apply 'delete-directory args))) | |
3808 (defun ange-ftp-real-insert-file-contents (&rest args) | |
3809 (let (file-name-handler-alist) | |
3810 (apply 'insert-file-contents args))) | |
3811 (defun ange-ftp-real-directory-files (&rest args) | |
3812 (let (file-name-handler-alist) | |
3813 (apply 'directory-files args))) | |
3814 (defun ange-ftp-real-file-directory-p (&rest args) | |
3815 (let (file-name-handler-alist) | |
3816 (apply 'file-directory-p args))) | |
3817 (defun ange-ftp-real-file-writable-p (&rest args) | |
3818 (let (file-name-handler-alist) | |
3819 (apply 'file-writable-p args))) | |
3820 (defun ange-ftp-real-file-readable-p (&rest args) | |
3821 (let (file-name-handler-alist) | |
3822 (apply 'file-readable-p args))) | |
3823 (defun ange-ftp-real-file-symlink-p (&rest args) | |
3824 (let (file-name-handler-alist) | |
3825 (apply 'file-symlink-p args))) | |
3826 (defun ange-ftp-real-delete-file (&rest args) | |
3827 (let (file-name-handler-alist) | |
3828 (apply 'delete-file args))) | |
3829 (defun ange-ftp-real-read-file-name-internal (&rest args) | |
3830 (let (file-name-handler-alist) | |
3831 (apply 'read-file-name-internal args))) | |
3832 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
3833 (let (file-name-handler-alist) | |
3834 (apply 'verify-visited-file-modtime args))) | |
3835 (defun ange-ftp-real-file-exists-p (&rest args) | |
3836 (let (file-name-handler-alist) | |
3837 (apply 'file-exists-p args))) | |
3838 (defun ange-ftp-real-write-region (&rest args) | |
3839 (let (file-name-handler-alist) | |
3840 (apply 'write-region args))) | |
3841 (defun ange-ftp-real-backup-buffer (&rest args) | |
3842 (let (file-name-handler-alist) | |
3843 (apply 'backup-buffer args))) | |
3844 (defun ange-ftp-real-copy-file (&rest args) | |
3845 (let (file-name-handler-alist) | |
3846 (apply 'copy-file args))) | |
3847 (defun ange-ftp-real-rename-file (&rest args) | |
3848 (let (file-name-handler-alist) | |
3849 (apply 'rename-file args))) | |
3850 (defun ange-ftp-real-file-attributes (&rest args) | |
3851 (let (file-name-handler-alist) | |
3852 (apply 'file-attributes args))) | |
3853 (defun ange-ftp-real-file-name-all-completions (&rest args) | |
3854 (let (file-name-handler-alist) | |
3855 (apply 'file-name-all-completions args))) | |
3856 (defun ange-ftp-real-file-name-completion (&rest args) | |
3857 (let (file-name-handler-alist) | |
3858 (apply 'file-name-completion args))) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3859 (defun ange-ftp-real-insert-directory (&rest args) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3860 (let (file-name-handler-alist) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3861 (apply 'insert-directory args))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3862 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3863 (let (file-name-handler-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3864 (apply 'file-name-sans-versions args))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3865 (defun ange-ftp-real-shell-command (&rest args) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3866 (let (file-name-handler-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3867 (apply 'shell-command args))) |
1106 | 3868 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3869 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3870 ;; I have turned off the support for using dired on foreign directory formats. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3871 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3872 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3873 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3874 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3875 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3876 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3877 ;; Some of the old dired hooks would still be needed even if this is done. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3878 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3879 ;; So the format conversion should be all that is needed. |
1106 | 3880 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3881 (defun ange-ftp-insert-directory (file switches &optional wildcard full) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3882 (let ((short (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3883 (parsed (ange-ftp-ftp-name file))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3884 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3885 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3886 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3887 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3888 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3889 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3890 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 3891 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3892 (defun ange-ftp-dired-uncache (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3893 (if (ange-ftp-ftp-name (expand-file-name dir))) |
1106 | 3894 (setq ange-ftp-ls-cache-file nil)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3895 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3896 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3897 "Alist of mapping host type into function to remove file version numbers.") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3898 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3899 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3900 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3901 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3902 host-type func) |
1106 | 3903 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3904 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3905 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3906 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3907 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3908 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 3909 |
3910 (defvar ange-ftp-remote-shell-file-name | |
3911 (if (memq system-type '(hpux usg-unix-v)) ; hope that's right | |
3912 "remsh" | |
3913 "rsh") | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3914 "Name of command to run a remote shell, for ange-ftp.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3915 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3916 ;;; This doesn't work yet; a new hook needs to be created. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3917 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3918 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3919 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 3920 (host (nth 0 parsed)) |
3921 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3922 (name (nth 2 parsed))) |
1106 | 3923 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3924 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3925 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3926 (setq command (concat "cd " name "; " command))) |
1106 | 3927 (setq command |
3928 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
3929 ; on a hp-ux machine I tried | |
3930 ange-ftp-remote-shell-file-name host command)) | |
3931 (ange-ftp-message "Remote command '%s' ..." command) | |
3932 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
3933 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3934 ;; default-directory is in ange-ftp syntax for remote file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3935 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3936 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3937 ;;; Thisis not hooked up yet. |
1106 | 3938 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
3939 ;; PROGRAM is always one of those below in the cond in dired.el. | |
3940 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3941 (if (ange-ftp-ftp-name default-directory) |
1106 | 3942 ;; Can't use ange-ftp-dired-host-type here because the current |
3943 ;; buffer is *dired-check-process output* | |
3944 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3945 (cond ((equal "chmod" program) |
1106 | 3946 (ange-ftp-call-chmod arguments)) |
3947 ;; ((equal "chgrp" program)) | |
3948 ;; ((equal dired-chown-program program)) | |
3949 (t (error "Unknown remote command: %s" program))) | |
3950 (ftp-error (insert (format "%s: %s, %s\n" | |
3951 (nth 1 oops) | |
3952 (nth 2 oops) | |
3953 (nth 3 oops)))) | |
3954 (error (insert (format "%s\n" (nth 1 oops))))) | |
3955 (apply 'call-process program nil (not discard) nil arguments))) | |
3956 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3957 ;;; This currently does not work; it is never called. |
1106 | 3958 (defun ange-ftp-call-chmod (args) |
3959 (if (< (length args) 2) | |
3960 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
3961 (let ((mode (car args))) | |
3962 (mapcar | |
3963 (function | |
3964 (lambda (file) | |
3965 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3966 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3967 (if parsed |
3968 (let* ((host (nth 0 parsed)) | |
3969 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3970 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3971 (abbr (ange-ftp-abbreviate-filename file)) |
3972 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3973 (list 'chmod mode name) |
1106 | 3974 (format "doing chmod %s" |
3975 abbr)))) | |
3976 (or (car result) | |
3977 (ange-ftp-error host user | |
3978 (format "chmod: %s: \"%s\"" | |
3979 file | |
3980 (cdr result))))))))) | |
3981 (cdr args))) | |
3982 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
3983 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3984 ;;; This is turned off because it has nothing properly to do |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3985 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3986 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3987 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3988 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3989 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3990 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3991 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3992 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3993 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3994 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3995 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3996 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3997 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3998 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3999 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4000 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4001 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4002 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4003 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4004 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4005 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4006 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4007 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4008 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4009 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4010 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4011 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4013 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4015 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4018 ;; ;; it is only worth calling the alternative function for remote files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4020 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4021 ;; ;; we can only call the name constructor for dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4022 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4023 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4025 ;; ;; use the process-filter driven routine rather than the iterative one. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4026 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4027 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4028 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4029 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4030 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4031 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4032 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4033 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4034 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4035 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4038 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4039 ;; ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4040 ;; ;; normal case... use the interative routine... much cheaper. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4042 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4043 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4044 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4046 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4047 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4048 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4049 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4050 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4051 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4052 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4053 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4054 ;; success-count buffer) |
1106 | 4055 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4058 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4059 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4060 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4061 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4062 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4063 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4064 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4065 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4066 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4067 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4068 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4069 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4070 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4071 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4072 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4073 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4074 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4075 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4076 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4077 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4078 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4079 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4080 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4081 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4082 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4083 ;;ESC or `q' to not overwrite any of the remaining files, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4084 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4085 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4086 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4087 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4088 ;; ;; gets a chance to delete it (in case of a move). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4089 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4090 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4091 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4092 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4093 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4094 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4095 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4096 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4097 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4098 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4099 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4100 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4101 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4102 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4103 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4105 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4106 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4107 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4108 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4109 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4110 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4111 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4112 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4113 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4114 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4115 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4116 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4117 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4118 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4119 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4120 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4121 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4122 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4123 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4126 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4130 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4133 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4134 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4137 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4139 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4140 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4141 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4143 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4147 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;; (dired-add-file to actual-marker-char)) |
1106 | 4155 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4156 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4160 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4164 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4174 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; (set-buffer old-buf)))) |
1106 | 4189 |
4190 ;;;; ----------------------------------------------- | |
4191 ;;;; Unix Descriptive Listing (dl) Support | |
4192 ;;;; ----------------------------------------------- | |
4193 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; and because I don't understand what it's supposed to be for. --rms. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; "In dired, move to the first character of the filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4222 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4251 |
4252 ;;;; ------------------------------------------------------------ | |
4253 ;;;; VOS support (VOS support is probably broken, | |
4254 ;;;; but I don't know anything about VOS.) | |
4255 ;;;; ------------------------------------------------------------ | |
4256 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ; (setq name (copy-sequence name)) |
1106 | 4259 ; (let ((from (if reverse ?\> ?\/)) |
4260 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ; (i (1- (length name)))) |
1106 | 4262 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4263 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ; (aset name i to)) |
1106 | 4265 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ; name)) |
1106 | 4267 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ; ange-ftp-fix-name-func-alist))) |
1106 | 4272 ; |
4273 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4274 ; (setq ange-ftp-dumb-host-types | |
4275 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4276 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4281 ; "" "/") |
4282 ; "*"))) | |
4283 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4288 ; |
4289 ;(defvar ange-ftp-vos-host-regexp nil | |
4290 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4291 ; | |
4292 ;(defun ange-ftp-vos-host (host) | |
4293 ; (and ange-ftp-vos-host-regexp | |
4294 ; (ange-ftp-save-match-data | |
4295 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4296 ; | |
4297 ;(defun ange-ftp-parse-vos-listing () | |
4298 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4299 ;format, and return a hashtable as the result." | |
4300 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4301 ; (type-list | |
4302 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4303 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4304 ; type-regexp type-is-dir type-col file) | |
4305 ; (goto-char (point-min)) | |
4306 ; (ange-ftp-save-match-data | |
4307 ; (while type-list | |
4308 ; (setq type-regexp (car (car type-list)) | |
4309 ; type-is-dir (nth 1 (car type-list)) | |
4310 ; type-col (nth 2 (car type-list)) | |
4311 ; type-list (cdr type-list)) | |
4312 ; (if (re-search-forward type-regexp nil t) | |
4313 ; (while (eq (char-after (point)) ? ) | |
4314 ; (move-to-column type-col) | |
4315 ; (setq file (buffer-substring (point) | |
4316 ; (progn | |
4317 ; (end-of-line 1) | |
4318 ; (point)))) | |
4319 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4320 ; (forward-line 1)))) | |
4321 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4322 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4323 ; tbl)) | |
4324 ; | |
4325 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4326 ; (setq ange-ftp-parse-list-func-alist | |
4327 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4328 ; ange-ftp-parse-list-func-alist))) | |
4329 | |
4330 ;;;; ------------------------------------------------------------ | |
4331 ;;;; VMS support. | |
4332 ;;;; ------------------------------------------------------------ | |
4333 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4334 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 (defun ange-ftp-fix-name-for-vms (name &optional reverse) |
1106 | 4337 (ange-ftp-save-match-data |
4338 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4340 (let (drive dir file) |
4341 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4342 (setq drive (substring name |
1106 | 4343 (match-beginning 1) |
4344 (match-end 1)))) | |
4345 (if (match-beginning 2) | |
4346 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4348 (if (match-beginning 3) |
4349 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4351 (and dir |
4352 (setq dir (apply (function concat) | |
4353 (mapcar (function | |
4354 (lambda (char) | |
4355 (if (= char ?.) | |
4356 (vector ?/) | |
4357 (vector char)))) | |
4358 (substring dir 1 -1))))) | |
4359 (concat (and drive | |
4360 (concat "/" drive "/")) | |
4361 dir (and dir "/") | |
4362 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 (error "name %s didn't match" name)) |
1106 | 4364 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4365 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 (setq drive (substring name 1 |
1106 | 4367 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 (setq tmp (file-name-directory name)) |
1106 | 4370 (if tmp |
4371 (setq dir (apply (function concat) | |
4372 (mapcar (function | |
4373 (lambda (char) | |
4374 (if (= char ?/) | |
4375 (vector ?.) | |
4376 (vector char)))) | |
4377 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 (setq file (file-name-nondirectory name)) |
1106 | 4379 (concat drive |
4380 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4381 file))))) | |
4382 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4384 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4385 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4386 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4388 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4389 ange-ftp-fix-name-func-alist))) |
1106 | 4390 |
4391 (or (memq 'vms ange-ftp-dumb-host-types) | |
4392 (setq ange-ftp-dumb-host-types | |
4393 (cons 'vms ange-ftp-dumb-host-types))) | |
4394 | |
4395 ;; It is important that this function barf for directories for which we know | |
4396 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4397 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4398 ;; might succeed, but give erroneous info. This last case is particularly | |
4399 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4400 ;; to list a directory. | |
4401 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4402 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4404 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4405 ;; think so, because expand-filename should have already short-circuited | |
4406 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 (cond ((string-equal dir-name "/") |
1106 | 4408 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4409 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4410 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4411 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4412 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4413 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4415 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4416 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4417 |
4418 (defvar ange-ftp-vms-host-regexp nil) | |
4419 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4420 ;; Return non-nil if HOST is running VMS. |
1106 | 4421 (defun ange-ftp-vms-host (host) |
4422 (and ange-ftp-vms-host-regexp | |
4423 (ange-ftp-save-match-data | |
4424 (string-match ange-ftp-vms-host-regexp host)))) | |
4425 | |
4426 ;; Because some VMS ftp servers convert filenames to lower case | |
4427 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4428 | |
4429 (defconst ange-ftp-vms-filename-regexp | |
4430 (concat | |
4431 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][_A-Za-z0-9$---]*\\)\\." | |
4432 "[_A-Za-z0-9$---]*;+[0-9]*\\)") | |
4433 "Regular expression to match for a valid VMS file name in Dired buffer. | |
4434 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4435 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4436 Other orders of $ and _ seem to all work just fine.") | |
4437 | |
4438 ;; These parsing functions are as general as possible because the syntax | |
4439 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4440 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4441 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4442 ;; from vms.weird.net, then too bad. | |
4443 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4444 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4445 (defun ange-ftp-parse-vms-filename () |
4446 (if (re-search-forward | |
4447 ange-ftp-vms-filename-regexp | |
4448 nil t) | |
4449 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4450 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4451 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4452 ;; format, and return a hashtable as the result. |
1106 | 4453 (defun ange-ftp-parse-vms-listing () |
4454 (let ((tbl (ange-ftp-make-hashtable)) | |
4455 file) | |
4456 (goto-char (point-min)) | |
4457 (ange-ftp-save-match-data | |
4458 (while (setq file (ange-ftp-parse-vms-filename)) | |
4459 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4460 ;; deal with directories | |
4461 (ange-ftp-put-hash-entry | |
4462 (substring file 0 (match-beginning 0)) t tbl) | |
4463 (ange-ftp-put-hash-entry file nil tbl) | |
4464 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4465 ;; sans extension | |
4466 (ange-ftp-put-hash-entry | |
4467 (substring file 0 (match-beginning 0)) nil tbl))) | |
4468 (forward-line 1)) | |
4469 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4470 ;; make sure that the listing isn't complete garbage before putting | |
4471 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4472 ;; either of these. | |
4473 (ange-ftp-put-hash-entry "." t tbl) | |
4474 (ange-ftp-put-hash-entry ".." t tbl)) | |
4475 tbl)) | |
4476 | |
4477 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4478 (setq ange-ftp-parse-list-func-alist | |
4479 (cons '(vms . ange-ftp-parse-vms-listing) | |
4480 ange-ftp-parse-list-func-alist))) | |
4481 | |
4482 ;; This version only deletes file entries which have | |
4483 ;; explicit version numbers, because that is all VMS allows. | |
4484 | |
4485 ;; Can the following two functions be speeded up using file | |
4486 ;; completion functions? | |
4487 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4488 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4489 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4490 (ange-ftp-internal-delete-file-entry name t) |
1106 | 4491 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4492 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4493 (if (string-match ";[0-9]+$" file) |
4494 ;; In VMS you can't delete a file without an explicit | |
4495 ;; version number, or wild-card (e.g. FOO;*) | |
4496 ;; For now, we give up on wildcards. | |
4497 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4498 (file-name-directory name) |
1106 | 4499 ange-ftp-files-hashtable))) |
4500 (if files | |
4501 (let* ((root (substring file 0 | |
4502 (match-beginning 0))) | |
4503 (regexp (concat "^" | |
4504 (regexp-quote root) | |
4505 ";[0-9]+$")) | |
4506 versions) | |
4507 (ange-ftp-del-hash-entry file files) | |
4508 ;; Now we need to check if there are any | |
4509 ;; versions left. If not, then delete the | |
4510 ;; root entry. | |
4511 (mapatoms | |
4512 '(lambda (sym) | |
4513 (and (string-match regexp (get sym 'key)) | |
4514 (setq versions t))) | |
4515 files) | |
4516 (or versions | |
4517 (ange-ftp-del-hash-entry root files)))))))))) | |
4518 | |
4519 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4520 (setq ange-ftp-delete-file-entry-alist | |
4521 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4522 ange-ftp-delete-file-entry-alist))) | |
4523 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4524 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4525 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4526 (ange-ftp-internal-add-file-entry name t) |
1106 | 4527 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4528 (file-name-directory name) |
1106 | 4529 ange-ftp-files-hashtable))) |
4530 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4531 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4532 (ange-ftp-save-match-data |
4533 (if (string-match ";[0-9]+$" file) | |
4534 (ange-ftp-put-hash-entry | |
4535 (substring file 0 (match-beginning 0)) | |
4536 nil files) | |
4537 ;; Need to figure out what version of the file | |
4538 ;; is being added. | |
4539 (let ((regexp (concat "^" | |
4540 (regexp-quote file) | |
4541 ";\\([0-9]+\\)$")) | |
4542 (version 0)) | |
4543 (mapatoms | |
4544 '(lambda (sym) | |
4545 (let ((name (get sym 'key))) | |
4546 (and (string-match regexp name) | |
4547 (setq version | |
4548 (max version | |
4549 (string-to-int | |
4550 (substring name | |
4551 (match-beginning 1) | |
4552 (match-end 1)))))))) | |
4553 files) | |
4554 (setq version (1+ version)) | |
4555 (ange-ftp-put-hash-entry | |
4556 (concat file ";" (int-to-string version)) | |
4557 nil files)))) | |
4558 (ange-ftp-put-hash-entry file nil files)))))) | |
4559 | |
4560 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4561 (setq ange-ftp-add-file-entry-alist | |
4562 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4563 ange-ftp-add-file-entry-alist))) | |
4564 | |
4565 | |
4566 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4567 "Mark HOST as the name of a machine running VMS." |
1106 | 4568 (interactive |
4569 (list (read-string "Host: " | |
4570 (let ((name (or (buffer-file-name) | |
4571 (and (eq major-mode 'dired-mode) | |
4572 dired-directory)))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4573 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4574 (if (not (ange-ftp-vms-host host)) |
4575 (setq ange-ftp-vms-host-regexp | |
4576 (concat "^" (regexp-quote host) "$" | |
4577 (and ange-ftp-vms-host-regexp "\\|") | |
4578 ange-ftp-vms-host-regexp) | |
4579 ange-ftp-host-cache nil))) | |
4580 | |
4581 | |
4582 (defun ange-ftp-vms-file-name-as-directory (name) | |
4583 (ange-ftp-save-match-data | |
4584 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
4585 (setq name (substring name 0 (match-beginning 0)))) | |
4586 (ange-ftp-real-file-name-as-directory name))) | |
4587 | |
4588 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4589 (setq ange-ftp-file-name-as-directory-alist | |
4590 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4591 ange-ftp-file-name-as-directory-alist))) | |
4592 | |
4593 ;;; Tree dired support: | |
4594 | |
4595 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4596 ;; dired-vms.el | |
4597 | |
4598 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4599 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4600 ;;;; Beware that the ftpd may put the device in front of the filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4601 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4602 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4603 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4604 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4605 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4606 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4607 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4608 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4609 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4610 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4611 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4612 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4613 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4614 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4615 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4616 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4617 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4618 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4619 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4620 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4621 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4622 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4623 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4624 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4625 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4626 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4627 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4628 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4629 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4630 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4631 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4632 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4633 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4634 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4635 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4636 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4637 ;; "In dired, move to first char of filename on this line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4638 ;;Returns position (point) or nil if no filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4639 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4640 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4641 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4642 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4643 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4644 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4645 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4646 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4647 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4648 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4649 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4650 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4651 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4652 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4653 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4654 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4655 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4656 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4657 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4658 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4659 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4660 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4661 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4662 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4663 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4664 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4665 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4666 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4667 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4668 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4669 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4670 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4671 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4672 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4673 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4674 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4675 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4676 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4677 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4678 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4679 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4680 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4681 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4682 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4683 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4684 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4685 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4686 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4687 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4688 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4689 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4690 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4691 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4692 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4693 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4694 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4695 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4696 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4697 |
4698 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4699 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4700 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4701 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4702 | |
4703 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4704 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4706 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4707 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4708 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4709 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4710 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4711 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4712 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4713 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4714 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4715 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4716 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4717 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4718 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4719 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4720 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4721 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4722 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4723 ;;;; When the filename is too long, VMS will use two lines to list a file |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4724 ;;;; (damn them!) This will confuse dired. To solve this, need to convince |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4725 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4726 ;;;; (forward-line 1). This would require a number of changes to dired.el. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4727 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4728 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4729 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4730 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4733 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4737 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4743 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 (defun ange-ftp-vms-sans-version (name) |
1106 | 4745 (ange-ftp-save-match-data |
4746 (if (string-match ";[0-9]+$" name) | |
4747 (substring name 0 (match-beginning 0)) | |
4748 name))) | |
4749 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 ;;;;; The vms version of clean-directory has 2 more optional args |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;;;;; than the usual dired version. This is so that it can be used by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4764 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4767 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4769 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 ;; ;; put on ange-ftp-file-version-alist an element of the form |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4789 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4791 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4793 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4795 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4800 ;; ;; Look at each file. If it is a numeric backup file, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4801 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4812 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 ;; ;; "If it looks like file FN has versions, return a list of the versions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4814 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 ;; ;;The caller may want to flag some of these files for deletion." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4816 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4818 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4829 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4831 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4833 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4835 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4836 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4837 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4838 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4840 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4843 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4844 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4845 ;; (setq base-version-list ; there was a base version to which |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4860 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4861 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4862 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4863 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4866 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4867 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4879 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4880 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4881 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4883 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4885 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 4892 |
4893 | |
4894 ;;;; ------------------------------------------------------------ | |
4895 ;;;; MTS support | |
4896 ;;;; ------------------------------------------------------------ | |
4897 | |
4898 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4900 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 (defun ange-ftp-fix-name-for-mts (name &optional reverse) |
1106 | 4902 (ange-ftp-save-match-data |
4903 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 4905 (let (acct file) |
4906 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4907 (setq acct (substring name 0 (match-end 1)))) |
1106 | 4908 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4909 (setq file (substring name |
1106 | 4910 (match-beginning 2) (match-end 2)))) |
4911 (concat (and acct (concat "/" acct "/")) | |
4912 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 (substring name (match-beginning 2) (match-end 2))) |
1106 | 4917 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4920 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 (if (string-equal dir-name "/") |
1106 | 4929 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 4931 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ((string-equal dir-name "") |
1106 | 4933 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4934 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4938 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4942 |
4943 (or (memq 'mts ange-ftp-dumb-host-types) | |
4944 (setq ange-ftp-dumb-host-types | |
4945 (cons 'mts ange-ftp-dumb-host-types))) | |
4946 | |
4947 (defvar ange-ftp-mts-host-regexp nil) | |
4948 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; Return non-nil if HOST is running MTS. |
1106 | 4950 (defun ange-ftp-mts-host (host) |
4951 (and ange-ftp-mts-host-regexp | |
4952 (ange-ftp-save-match-data | |
4953 (string-match ange-ftp-mts-host-regexp host)))) | |
4954 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 4956 (defun ange-ftp-parse-mts-listing () |
4957 (let ((tbl (ange-ftp-make-hashtable))) | |
4958 (goto-char (point-min)) | |
4959 (ange-ftp-save-match-data | |
4960 (while (re-search-forward ange-ftp-date-regexp nil t) | |
4961 (end-of-line) | |
4962 (skip-chars-backward " ") | |
4963 (let ((end (point))) | |
4964 (skip-chars-backward "-A-Z0-9_.!") | |
4965 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
4966 (forward-line 1))) | |
4967 ;; Don't need to bother with .. | |
4968 (ange-ftp-put-hash-entry "." t tbl) | |
4969 tbl)) | |
4970 | |
4971 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
4972 (setq ange-ftp-parse-list-func-alist | |
4973 (cons '(mts . ange-ftp-parse-mts-listing) | |
4974 ange-ftp-parse-list-func-alist))) | |
4975 | |
4976 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4977 "Mark HOST as the name of a machine running MTS." |
1106 | 4978 (interactive |
4979 (list (read-string "Host: " | |
4980 (let ((name (or (buffer-file-name) | |
4981 (and (eq major-mode 'dired-mode) | |
4982 dired-directory)))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4984 (if (not (ange-ftp-mts-host host)) |
4985 (setq ange-ftp-mts-host-regexp | |
4986 (concat "^" (regexp-quote host) "$" | |
4987 (and ange-ftp-mts-host-regexp "\\|") | |
4988 ange-ftp-mts-host-regexp) | |
4989 ange-ftp-host-cache nil))) | |
4990 | |
4991 ;;; Tree dired support: | |
4992 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 ;;;; There aren't too many systems left that use MTS. This dired support will |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 ;;;; implement ftp in the same way. If not, it might be necessary to make the |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 ;; "In dired, move to first char of filename on this line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 ;;Returns position (point) or nil if no filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; ;; When listing an account other than the users own account it appends |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5019 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5025 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5027 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5028 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5029 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5030 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5031 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5032 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5034 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5036 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5038 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5040 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5041 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5042 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5043 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5044 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5048 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5049 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5052 |
5053 ;;;; ------------------------------------------------------------ | |
5054 ;;;; CMS support | |
5055 ;;;; ------------------------------------------------------------ | |
5056 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5057 ;; Since CMS doesn't have any full file name syntax, we have to fudge |
1106 | 5058 ;; things with cd's. We actually send too many cd's, but is dangerous |
5059 ;; to try to remember the current minidisk, because if the connection | |
5060 ;; is closed and needs to be reopened, we will find ourselves back in | |
5061 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5062 ;; usually close the connection after 5 minutes of inactivity. | |
5063 | |
5064 ;; Have I got the filename character set right? | |
5065 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5066 (defun ange-ftp-fix-name-for-cms (name &optional reverse) |
1106 | 5067 (ange-ftp-save-match-data |
5068 (if reverse | |
5069 ;; Since we only convert output from a pwd in this direction, | |
5070 ;; we'll assume that it's a minidisk, and make it into a | |
5071 ;; directory file name. Note that the expand-dir-hashtable | |
5072 ;; stores directories without the trailing /. Is this | |
5073 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5074 (concat "/" name) |
1106 | 5075 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5078 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 (let ((file (substring name (match-beginning 2) |
1106 | 5080 (match-end 2))) |
5081 (cmd (concat "cd " minidisk)) | |
5082 | |
5083 ;; Note that host and user are bound in the call | |
5084 ;; to ange-ftp-send-cmd | |
5085 (proc (ange-ftp-get-process ange-ftp-this-host | |
5086 ange-ftp-this-user))) | |
5087 | |
5088 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5089 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5090 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5091 file |
5092 ;; failed... try ONCE more. | |
5093 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5094 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 ange-ftp-this-msg))) |
1106 | 5097 (if (car result) |
5098 file | |
5099 ;; failed. give up. | |
5100 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5101 (format "cd to minidisk %s failed: %s" | |
5102 minidisk (cdr result))))))) | |
5103 ;; return the minidisk | |
5104 minidisk)) | |
5105 (error "Invalid CMS filename"))))) | |
5106 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5107 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5108 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5110 ange-ftp-fix-name-func-alist))) |
1106 | 5111 |
5112 (or (memq 'cms ange-ftp-dumb-host-types) | |
5113 (setq ange-ftp-dumb-host-types | |
5114 (cons 'cms ange-ftp-dumb-host-types))) | |
5115 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5116 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5117 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5118 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5119 ((string-equal "/" dir-name) |
1106 | 5120 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5121 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5122 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5123 ;; host and user are bound in the call to ange-ftp-send-cmd |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5124 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5125 (cmd (concat "cd " minidisk)) |
5126 (file (if (match-beginning 2) | |
5127 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5128 (substring dir-name (match-beginning 2) |
1106 | 5129 (match-end 2)) |
5130 ;; use the wild-card | |
5131 "*"))) | |
5132 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5133 file | |
5134 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5135 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ange-ftp-this-user)) |
1106 | 5137 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5138 (if (car result) | |
5139 file | |
5140 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5142 (format "cd to minidisk %s failed: " |
5143 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5145 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5147 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5148 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5149 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5150 |
5151 (defvar ange-ftp-cms-host-regexp nil | |
5152 "Regular expression to match hosts running the CMS operating system.") | |
5153 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5154 ;; Return non-nil if HOST is running CMS. |
1106 | 5155 (defun ange-ftp-cms-host (host) |
5156 (and ange-ftp-cms-host-regexp | |
5157 (ange-ftp-save-match-data | |
5158 (string-match ange-ftp-cms-host-regexp host)))) | |
5159 | |
5160 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5161 "Mark HOST as the name of a CMS host." |
1106 | 5162 (interactive |
5163 (list (read-string "Host: " | |
5164 (let ((name (or (buffer-file-name) | |
5165 (and (eq major-mode 'dired-mode) | |
5166 dired-directory)))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5168 (if (not (ange-ftp-cms-host host)) |
5169 (setq ange-ftp-cms-host-regexp | |
5170 (concat "^" (regexp-quote host) "$" | |
5171 (and ange-ftp-cms-host-regexp "\\|") | |
5172 ange-ftp-cms-host-regexp) | |
5173 ange-ftp-host-cache nil))) | |
5174 | |
5175 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5177 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5178 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5179 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5180 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5181 ;; exist. It would be nice if completion worked for minidisks, as we | |
5182 ;; discover them. | |
5183 ; (let* ((dir-file (directory-file-name file)) | |
5184 ; (root (file-name-directory dir-file)) | |
5185 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5186 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5187 ; (if root-tbl | |
5188 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5189 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5190 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5191 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5192 ; (ange-ftp-set-files root root-tbl))) | |
5193 ;; Now do the usual parsing | |
5194 (let ((tbl (ange-ftp-make-hashtable))) | |
5195 (goto-char (point-min)) | |
5196 (ange-ftp-save-match-data | |
5197 (while | |
5198 (re-search-forward | |
5199 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5200 (ange-ftp-put-hash-entry | |
5201 (concat (buffer-substring (match-beginning 1) | |
5202 (match-end 1)) | |
5203 "." | |
5204 (buffer-substring (match-beginning 2) | |
5205 (match-end 2))) | |
5206 nil tbl) | |
5207 (forward-line 1)) | |
5208 (ange-ftp-put-hash-entry "." t tbl)) | |
5209 tbl)) | |
5210 | |
5211 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5212 (setq ange-ftp-parse-list-func-alist | |
5213 (cons '(cms . ange-ftp-parse-cms-listing) | |
5214 ange-ftp-parse-list-func-alist))) | |
5215 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5216 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5217 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5218 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5219 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5220 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5221 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5222 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5223 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5225 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5226 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5227 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5228 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5229 ;; ;; CMS has no total line, so we insert a blank line for |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5230 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5231 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5232 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5233 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5234 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5235 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5236 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5238 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5239 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 ;; "In dired, move to the first char of filename on this line." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5242 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5243 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5244 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5245 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5246 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5247 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5248 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5249 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5250 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5251 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5252 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5253 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5254 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5255 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5256 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5257 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5258 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5259 ;; ;; So, it should be called only after (dired-move-to-filename t). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5260 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5261 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5262 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5263 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5264 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5265 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5266 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5267 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5268 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5269 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5270 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5271 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5272 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5273 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5274 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5275 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5276 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5277 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5278 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5279 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5281 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5284 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5285 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5286 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5287 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5288 |
5289 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5290 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5291 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5292 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5293 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5294 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5295 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5296 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5297 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5298 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5300 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5301 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5302 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5303 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5306 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5307 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5308 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5309 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5310 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5311 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5312 |
5313 ;;;; ------------------------------------------------------------ | |
5314 ;;;; Finally provide package. | |
5315 ;;;; ------------------------------------------------------------ | |
5316 | |
5317 (provide 'ange-ftp) |