Mercurial > emacs
annotate lisp/ange-ftp.el @ 5890:3a543d9ccca5
Add #undef SYS_SIGLIST_DECLARED.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Fri, 11 Feb 1994 02:50:00 +0000 |
parents | e173b4b346e5 |
children | ec9477c8db1d |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
1106 | 2 |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
3 ;;; Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc. |
1106 | 4 ;;; |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
6 ;; Keywords: comm | |
1106 | 7 ;;; |
8 ;;; This program is free software; you can redistribute it and/or modify | |
9 ;;; it under the terms of the GNU General Public License as published by | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
10 ;;; the Free Software Foundation; either version 2, or (at your option) |
1106 | 11 ;;; any later version. |
12 ;;; | |
13 ;;; This program is distributed in the hope that it will be useful, | |
14 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 ;;; GNU General Public License for more details. | |
17 ;;; | |
18 ;;; A copy of the GNU General Public License can be obtained from this | |
19 ;;; program's author (send electronic mail to ange@hplb.hpl.hp.com) or from | |
20 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
21 ;;; 02139, USA. | |
22 | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
23 ;;; Commentary: |
1106 | 24 ;;; |
25 ;;; This package attempts to make accessing files and directories using FTP | |
26 ;;; from within GNU Emacs as simple and transparent as possible. A subset of | |
27 ;;; the common file-handling routines are extended to interact with FTP. | |
28 | |
29 ;;; Usage: | |
30 ;;; | |
31 ;;; Some of the common GNU Emacs file-handling operations have been made | |
32 ;;; 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
|
33 ;;; '/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
|
34 ;;; 'host' as account 'user' and perform its operation on the file 'name'. |
1106 | 35 ;;; |
36 ;;; For example: if find-file is given a filename of: | |
37 ;;; | |
38 ;;; /ange@anorman:/tmp/notes | |
39 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
40 ;;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as |
1106 | 41 ;;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the |
42 ;;; 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
|
43 ;;; needs a password to connect then it reads one in the echo area. |
1106 | 44 |
45 ;;; Extended filename syntax: | |
46 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
47 ;;; The default extended filename syntax is '/user@host:name', where the |
1106 | 48 ;;; '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
|
49 ;;; extent by changing ange-ftp-name-format. There are limitations. |
1106 | 50 ;;; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
51 ;;; If the user part is omitted then ange-ftp generates a default user |
1106 | 52 ;;; instead whose value depends on the variable ange-ftp-default-user. |
53 | |
54 ;;; Passwords: | |
55 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
56 ;;; 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
|
57 ;;; 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
|
58 ;;; in a *valid* ~/.netrc file. |
1106 | 59 |
60 ;;; Passwords for user "anonymous": | |
61 ;;; | |
1174 | 62 ;;; Passwords for the user "anonymous" (or "ftp") are handled |
63 ;;; specially. The variable `ange-ftp-generate-anonymous-password' | |
64 ;;; controls what happens: if the value of this variable is a string, | |
65 ;;; then this is used as the password; if non-nil (the default), then | |
66 ;;; a password is created from the name of the user and the hostname | |
67 ;;; of the machine on which GNU Emacs is running; if nil then the user | |
68 ;;; is prompted for a password as normal. | |
1106 | 69 |
70 ;;; "Dumb" UNIX hosts: | |
71 ;;; | |
72 ;;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
73 ;;; used. | |
74 ;;; | |
75 ;;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
76 ;;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
77 ;;; that this change will take effect for the current GNU Emacs session only. | |
78 ;;; See below for a discussion of non-UNIX hosts. If a large number of | |
79 ;;; machines with similar hostnames have this problem then it is easier to set | |
80 ;;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
81 ;;; is unable to automatically recognize dumb unix hosts. | |
82 | |
83 ;;; File name completion: | |
84 ;;; | |
85 ;;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
86 ;;; To do filename completion, ange-ftp needs a listing from the remote host. | |
87 ;;; Therefore, for very slow connections, it might not save any time. | |
88 | |
89 ;;; FTP processes: | |
90 ;;; | |
91 ;;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
92 ;;; purposes. Some FTP servers will close the connection after a period of | |
93 ;;; time, but ange-ftp should be able to quietly reconnect the next time that | |
94 ;;; the process is needed. | |
95 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
96 ;;; 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
|
97 ;;; This should not cause ange-ftp any grief. |
1106 | 98 |
99 ;;; Binary file transfers: | |
100 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
101 ;;; 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
|
102 ;;; 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
|
103 ;;; binary mode is used for that transfer. |
1106 | 104 |
105 ;;; Account passwords: | |
106 ;;; | |
107 ;;; Some FTP servers require an additional password which is sent by the | |
108 ;;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
109 ;;; specify an account password by either calling ange-ftp-set-account, or by | |
110 ;;; specifying an account token in the .netrc file. If the account password | |
111 ;;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
112 ;;; command upon starting the FTP process. | |
113 | |
114 ;;; Preloading: | |
115 ;;; | |
116 ;;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
117 ;;; not the site-load.el file in order for the documentation strings for the | |
118 ;;; functions being overloaded to be available. | |
119 | |
120 ;;; Status reports: | |
121 ;;; | |
122 ;;; Most ange-ftp commands that talk to the FTP process output a status | |
123 ;;; message on what they are doing. In addition, ange-ftp can take advantage | |
124 ;;; of the FTP client's HASH command to display the status of transferring | |
125 ;;; files and listing directories. See the documentation for the variables | |
126 ;;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
127 ;;; ange-ftp-process-verbose for more details. | |
128 | |
129 ;;; Gateways: | |
130 ;;; | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
131 ;;; Sometimes it is necessary for the FTP process to be run on a different |
1106 | 132 ;;; machine than the machine running GNU Emacs. This can happen when the |
133 ;;; local machine has restrictions on what hosts it can access. | |
134 ;;; | |
135 ;;; ange-ftp has support for running the ftp process on a different (gateway) | |
136 ;;; machine. The way it works is as follows: | |
137 ;;; | |
138 ;;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
139 ;;; that doesn't have the access restrictions. | |
140 ;;; | |
141 ;;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
142 ;;; that matches hosts that can be contacted from running a local ftp | |
143 ;;; process, but fails to match hosts that can't be accessed locally. For | |
144 ;;; example: | |
145 ;;; | |
146 ;;; "\\.hp\\.com$\\|^[^.]*$" | |
147 ;;; | |
148 ;;; will match all hosts that are in the .hp.com domain, or don't have an | |
149 ;;; explicit domain in their name, but will fail to match hosts with | |
150 ;;; explicit domains or that are specified by their ip address. | |
151 ;;; | |
152 ;;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
153 ;;; the *same* name between the local machine and the gateway machine. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
154 ;;; This directory is necessary for temporary files created by ange-ftp. |
1106 | 155 ;;; |
156 ;;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
157 ;;; this directory plus an identifying filename prefix. For example: | |
158 ;;; | |
159 ;;; "/nfs/hplose/ange/ange-ftp" | |
160 ;;; | |
161 ;;; where /nfs/hplose/ange is a directory that is shared between the | |
162 ;;; gateway machine and the local machine. | |
163 ;;; | |
164 ;;; The simplest way of getting a ftp process running on the gateway machine | |
165 ;;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
166 ;;; can't do this for some reason such as security then points 7 onwards will | |
167 ;;; discuss an alternative approach. | |
168 ;;; | |
169 ;;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
170 ;;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
171 ;;; | |
172 ;;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
173 ;;; isn't already. This tells ange-ftp that you are using a remote shell | |
174 ;;; rather than logging in using telnet or rlogin. | |
175 ;;; | |
176 ;;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
177 ;;; the gateway machine. If you have to use telnet or rlogin to get to the | |
178 ;;; gateway machine then follow the instructions below. | |
179 ;;; | |
180 ;;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
181 ;;; that lets you log onto the gateway machine. This may be something like | |
182 ;;; telnet or rlogin. | |
183 ;;; | |
184 ;;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
185 ;;; expression that matches the prompt you get when you login to the | |
186 ;;; gateway machine. Be very specific here; this regexp must not match | |
187 ;;; *anything* in your login banner except this prompt. | |
188 ;;; shell-prompt-pattern is far too general as it appears to match some | |
189 ;;; login banners from Sun machines. For example: | |
190 ;;; | |
191 ;;; "^$*$ *" | |
192 ;;; | |
193 ;;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
194 ;;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
195 ;;; machine. | |
196 ;;; | |
197 ;;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
198 ;;; that will put the pty connected to the gateway machine into a | |
199 ;;; no-echoing mode, and will strip off carriage-returns from output from | |
200 ;;; the gateway machine. For example: | |
201 ;;; | |
202 ;;; "stty -onlcr -echo" | |
203 ;;; | |
204 ;;; will work on HP-UX machines, whereas: | |
205 ;;; | |
206 ;;; "stty -echo nl" | |
207 ;;; | |
208 ;;; appears to work for some Sun machines. | |
209 ;;; | |
210 ;;; That's all there is to it. | |
211 | |
212 ;;; Smart gateways: | |
213 ;;; | |
214 ;;; If you have a "smart" ftp program that allows you to issue commands like | |
215 ;;; "USER foo@bar" which do nice proxy things, then look at the variables | |
216 ;;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
217 | |
218 ;;; Tips for using ange-ftp: | |
219 ;;; | |
220 ;;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
221 ;;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
222 ;;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
223 ;;; there is a chance you might connect to an ULTRIX machine (such as | |
224 ;;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
225 ;;; the side effect that dired will have problems with symlinks whose names | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
226 ;;; end in an @. If you get yourself into this situation then editing |
1106 | 227 ;;; dired's ls-switches to remove "F", will temporarily fix things. |
228 ;;; | |
229 ;;; 2. If you know that you are connecting to a certain non-UNIX machine | |
230 ;;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
231 ;;; then setting the appropriate host-type regexp | |
232 ;;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
233 ;;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
234 ;;; ange-ftp's inability to recognize the host-type as a bug. | |
235 ;;; | |
236 ;;; 3. For slow connections, you might get "listing unreadable" error | |
237 ;;; messages, or get an empty buffer for a file that you know has something | |
238 ;;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
239 ;;; Its default value is 5 which is plenty for reasonable connections. | |
240 ;;; However, for some transatlantic connections I set this to 20. | |
241 ;;; | |
242 ;;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
243 ;;; copying the file to the local machine, compressing it there, and then | |
244 ;;; sending it back. Binary file transfers between machines of different | |
245 ;;; architectures can be a risky business. Test things out first on some | |
246 ;;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
247 ;;; moving them through the local machine. Again, be careful when doing | |
248 ;;; this with binary files on non-Unix machines. | |
249 ;;; | |
250 ;;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
251 ;;; (list of dired commands for which confirmation is not asked). You | |
252 ;;; might want to reconsider your setting of this variable, because you | |
253 ;;; might want confirmation for more commands on remote direds than on | |
254 ;;; local direds. For example, I strongly recommend that you not include | |
255 ;;; compress and uncompress in this list. If there is enough demand it | |
256 ;;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
257 ;;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
258 ;;; is a list of commands for which confirmation would be suppressed. Then | |
259 ;;; remote dired listings would take their (buffer-local) value of | |
260 ;;; dired-no-confirm from this alist. Who votes for this? | |
261 | |
262 ;;; --------------------------------------------------------------------- | |
263 ;;; Non-UNIX support: | |
264 ;;; --------------------------------------------------------------------- | |
265 | |
266 ;;; VMS support: | |
267 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
268 ;;; Ange-ftp has full support for VMS hosts. It |
1106 | 269 ;;; should be able to automatically recognize any VMS machine. However, if it |
270 ;;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
271 ;;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
272 ;;; would be grateful if you would report any failures to automatically | |
273 ;;; recognize a VMS host as a bug. | |
274 ;;; | |
275 ;;; Filename Syntax: | |
276 ;;; | |
277 ;;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
278 ;;; UNIX-y way. For example: | |
279 ;;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
280 ;;; would be entered as: | |
281 ;;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
282 ;;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
283 ;;; [.CSV.POLICY]RULES.MEM | |
284 ;;; you would type: | |
285 ;;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
286 ;;; | |
287 ;;; A legal VMS filename is of the form: FILE.TYPE;## | |
288 ;;; where FILE can be up to 39 characters | |
289 ;;; TYPE can be up to 39 characters | |
290 ;;; ## is a version number (an integer between 1 and 32,767) | |
291 ;;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
292 ;;; $ cannot begin a filename, and - cannot be used as the first or last | |
293 ;;; character. | |
294 ;;; | |
295 ;;; Tips: | |
296 ;;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
297 ;;; Therefore, to access a VMS file, you must enter the filename with upper | |
298 ;;; case letters. | |
299 ;;; 2. To access the latest version of file under VMS, you use the filename | |
300 ;;; without the ";" and version number. You should always edit the latest | |
301 ;;; version of a file. If you want to edit an earlier version, copy it to a | |
302 ;;; new file first. This has nothing to do with ange-ftp, but is simply | |
303 ;;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
304 ;;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
305 ;;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
306 ;;; that VMS will not allow you to save the file because it will refuse to | |
307 ;;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
308 ;;; attach the buffer to this file. To get out of this situation, M-x | |
309 ;;; 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
|
310 ;;; latest version of the file. For this reason, in dired "f" |
1106 | 311 ;;; (dired-find-file), always loads the file sans version, whereas "v", |
312 ;;; (dired-view-file), always loads the explicit version number. The | |
313 ;;; reasoning being that it reasonable to view old versions of a file, but | |
314 ;;; not to edit them. | |
315 ;;; 3. EMACS has a feature in which it does environment variable substitution | |
316 ;;; 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
|
317 ;;; by typing $$. |
1106 | 318 |
319 ;;; MTS support: | |
320 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
321 ;;; Ange-ftp has full support for hosts running |
1106 | 322 ;;; the Michigan terminal system. It should be able to automatically |
323 ;;; recognize any MTS machine. However, if it fails to do this, you can use | |
324 ;;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
325 ;;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
326 ;;; would report any failures to automatically recognize a MTS host as a bug. | |
327 ;;; | |
328 ;;; Filename syntax: | |
329 ;;; | |
330 ;;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
331 ;;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
332 ;;; entered as | |
333 ;;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
334 ;;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
335 ;;; to access a file in another account, you must have access permission for | |
336 ;;; 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
|
337 ;;; relative name fashion as |
1106 | 338 ;;; /YYYY@mtsg.ubc.ca:FILE |
339 ;;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
340 ;;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
341 ;;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
342 ;;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
343 ;;; is. | |
344 | |
345 ;;; CMS support: | |
346 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
347 ;;; Ange-ftp has full support for hosts running |
1106 | 348 ;;; CMS. It should be able to automatically recognize any CMS machine. |
349 ;;; However, if it fails to do this, you can use the command | |
350 ;;; ange-ftp-add-cms-host. As well, you can set the variable | |
351 ;;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
352 ;;; would report any failures to automatically recognize a CMS host as a bug. | |
353 ;;; | |
354 ;;; Filename syntax: | |
355 ;;; | |
356 ;;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
357 ;;; treated as UNIX directories. For example to access the file READ.ME in | |
358 ;;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
359 ;;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
360 ;;; If *.301 is the default minidisk for this account, you could access | |
361 ;;; FOO.BAR on this minidisk as | |
362 ;;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
363 ;;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
364 ;;; up to 8 characters. Again, beware that CMS filenames are always upper | |
365 ;;; case, and hence must be entered as such. | |
366 ;;; | |
367 ;;; Tips: | |
368 ;;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
369 ;;; need an account password. To have ange-ftp send an account password, | |
370 ;;; you can either include it in your .netrc file, or use | |
371 ;;; ange-ftp-set-account. | |
372 ;;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
373 ;;; can fix this. | |
374 ;;; | |
375 ;;; ------------------------------------------------------------------ | |
376 ;;; Bugs: | |
377 ;;; ------------------------------------------------------------------ | |
378 ;;; | |
379 ;;; 1. Umask problems: | |
380 ;;; Be warned that files created by using ange-ftp will take account of the | |
381 ;;; umask of the ftp daemon process rather than the umask of the creating | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
382 ;;; user. This is particularly important when logging in as the root user. |
1106 | 383 ;;; The way that I tighten up the ftp daemon's umask under HP-UX is to make |
384 ;;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
385 ;;; suspect that there is something similar on other systems. | |
386 ;;; | |
387 ;;; 2. Some combinations of FTP clients and servers break and get out of sync | |
388 ;;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
389 ;;; machines cause this problem for some FTP clients. Using | |
390 ;;; ange-ftp-kill-process can be used to restart the ftp process, which | |
391 ;;; should get things back in synch. | |
392 ;;; | |
393 ;;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
394 ;;; you provide a valid filename for the remote operating system. | |
395 ;;; If you do not, then the remote FTP server will most likely | |
396 ;;; translate your filename in some way. This may cause ange-ftp to | |
397 ;;; get confused about what exactly is the name of the file. The | |
398 ;;; most common causes of this are using lower case filenames on systems | |
399 ;;; which support only upper case, and using filenames which are too | |
400 ;;; long. | |
401 ;;; | |
402 ;;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
403 ;;; | |
404 ;;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
405 ;;; for some reason creates a FTP process that only talks via pipes then | |
406 ;;; ange-ftp won't be getting the information it requires at the time that | |
407 ;;; it wants it since pipes flush at different times to pty's. One | |
408 ;;; disgusting way around this problem is to talk to the FTP process via | |
409 ;;; rlogin which does the 'right' things with pty's. | |
410 ;;; | |
411 ;;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
412 ;;; worried about this too much. Eventually, we should have some caching | |
413 ;;; of the current minidisk. | |
414 ;;; | |
415 ;;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
416 ;;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
417 ;;; to it. This is (understandably) beyond ange-ftp. | |
418 ;;; | |
419 ;;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
420 ;;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
421 ;;; will use binary mode for the copy. Between systems of different | |
422 ;;; architecture, this still may not be enough to guarantee the integrity | |
423 ;;; of binary files. Binary file transfers from VMS machines are | |
424 ;;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
425 ;;; an alist of OS type, regexp pairs? | |
426 ;;; | |
427 ;;; 9. The code to do compression of files over ftp is not as careful as it | |
428 ;;; should be. It deletes the old remote version of the file, before | |
429 ;;; actually checking if the local to remote transfer of the compressed | |
430 ;;; file succeeds. Of course to delete the original version of the file | |
431 ;;; after transferring the compressed version back is also dangerous, | |
432 ;;; because some OS's have severe restrictions on the length of filenames, | |
433 ;;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
434 ;;; truncated. Then, ange-ftp would delete the only remaining version of | |
435 ;;; the file. Maybe ange-ftp should make backups when it compresses files | |
436 ;;; (of course, the backup "~" could also be truncated off, sigh...). | |
437 ;;; Suggestions? | |
438 ;;; | |
439 | |
440 ;;; 10. If a dir listing is attempted for an empty directory on (at least | |
441 ;;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
442 ;;; I don't know how to get ange-ftp work to around it. | |
443 ;;; | |
444 ;;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
445 ;;; containing spaces, but beware that the remote ftpd may not like them | |
446 ;;; much. | |
447 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
448 ;;; 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
|
449 ;;; It needs to be reimplemented by modifying the parse-...-listing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
450 ;;; functions to convert the directory listing to ls -l format. |
1106 | 451 ;;; |
452 ;;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
453 ;;; with a trailing @ in a ls -alF listing. In order to account for this | |
454 ;;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
455 ;;; parsing a listing with the F switch. This will cause ange-ftp to | |
456 ;;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
457 ;;; ends in an @. ange-ftp will correct itself if you take F out of the | |
458 ;;; dired ls switches (C-u s will allow you to edit the switches). The | |
459 ;;; dired buffer will be automatically reverted, which will allow ange-ftp | |
460 ;;; to fix its files hashtable. A cookie to anyone who can think of a | |
461 ;;; fast, sure-fire way to recognize ULTRIX over ftp. | |
462 | |
463 ;;; If you find any bugs or problems with this package, PLEASE either e-mail | |
464 ;;; the above author, or send a message to the ange-ftp-lovers mailing list | |
465 ;;; below. Ideas and constructive comments are especially welcome. | |
466 | |
467 ;;; ange-ftp-lovers: | |
468 ;;; | |
469 ;;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
470 ;;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
471 ;;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
472 ;;; the mailing list. | |
473 ;;; | |
474 ;;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
475 ;;; list, please mail one of the following addresses: | |
476 ;;; | |
477 ;;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
478 ;;; or | |
479 ;;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
480 ;;; | |
481 ;;; Please don't forget the -request part. | |
482 ;;; | |
483 ;;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
484 ;;; following addresses: | |
485 ;;; | |
486 ;;; ange-ftp-lovers@anorman.hpl.hp.com | |
487 ;;; or | |
488 ;;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
489 ;;; | |
490 ;;; Alternatively, there is a mailing list that only gets announcements of new | |
491 ;;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
492 ;;; subscribed to by e-mailing to the -request address as above. Please make | |
493 ;;; it clear in the request which mailing list you wish to join. | |
494 | |
495 ;;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
496 ;;; from: | |
497 ;;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
498 ;;; or: | |
499 ;;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
500 ;;; or: | |
501 ;;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
502 | |
503 ;;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
504 ;;; | |
505 ;;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
506 | |
507 ;;; ----------------------------------------------------------- | |
508 ;;; Technical information on this package: | |
509 ;;; ----------------------------------------------------------- | |
510 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
511 ;;; 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
|
512 ;;; 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
|
513 ;;; whenever they see a file name of the appropriate sort. |
1106 | 514 |
515 ;;; Checklist for adding non-UNIX support for TYPE | |
516 ;;; | |
517 ;;; The following functions may need TYPE versions: | |
518 ;;; (not all functions will be needed for every OS) | |
519 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
520 ;;; ange-ftp-fix-name-for-TYPE |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
521 ;;; ange-ftp-fix-dir-name-for-TYPE |
1106 | 522 ;;; ange-ftp-TYPE-host |
523 ;;; ange-ftp-TYPE-add-host | |
524 ;;; ange-ftp-parse-TYPE-listing | |
525 ;;; ange-ftp-TYPE-delete-file-entry | |
526 ;;; ange-ftp-TYPE-add-file-entry | |
527 ;;; ange-ftp-TYPE-file-name-as-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
528 ;;; ange-ftp-TYPE-make-compressed-filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
529 ;;; ange-ftp-TYPE-file-name-sans-versions |
1106 | 530 ;;; |
531 ;;; Variables: | |
532 ;;; | |
533 ;;; ange-ftp-TYPE-host-regexp | |
534 ;;; May need to add TYPE to ange-ftp-dumb-host-types | |
535 ;;; | |
536 ;;; Check the following functions for OS dependent coding: | |
537 ;;; | |
538 ;;; ange-ftp-host-type | |
539 ;;; ange-ftp-guess-host-type | |
540 ;;; ange-ftp-allow-child-lookup | |
541 | |
542 ;;; Host type conventions: | |
543 ;;; | |
544 ;;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
545 ;;; (mostly) follow the following conventions for remote host types. At | |
546 ;;; least, I think that future code should try to follow these conventions, | |
547 ;;; and the current code should eventually be made compliant. | |
548 ;;; | |
549 ;;; nil = local host type, whatever that is (probably unix). | |
550 ;;; Think nil as in "not a remote host". This value is used by | |
551 ;;; ange-ftp-dired-host-type for local buffers. | |
552 ;;; | |
553 ;;; t = a remote host of unknown type. Think t is in true, it's remote. | |
554 ;;; Currently, 'unix is used as the default remote host type. | |
555 ;;; Maybe we should use t. | |
556 ;;; | |
557 ;;; 'type = a remote host of TYPE type. | |
558 ;;; | |
559 ;;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
560 ;;; program called list. This is currently only used for Unix | |
561 ;;; dl (descriptive listings), when ange-ftp-dired-host-type | |
562 ;;; is set to 'unix:dl. | |
563 | |
564 ;;; Bug report codes: | |
565 ;;; | |
566 ;;; Because of their naive faith in this code, there are certain situations | |
567 ;;; 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
|
568 ;;; being realists they have put calls to `error' in the program at these |
1106 | 569 ;;; points. These errors provide a code, which is an integer, greater than 1. |
570 ;;; To aid debugging. the error codes, and the functions in which they reside | |
571 ;;; are listed below. | |
572 ;;; | |
573 ;;; 1: See ange-ftp-ls | |
574 ;;; | |
575 | |
576 ;;; ----------------------------------------------------------- | |
577 ;;; Hall of fame: | |
578 ;;; ----------------------------------------------------------- | |
579 ;;; | |
580 ;;; Thanks to Roland McGrath for improving the filename syntax handling, | |
581 ;;; for suggesting many enhancements and for numerous cleanups to the code. | |
582 ;;; | |
583 ;;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
584 ;;; | |
585 ;;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
586 ;;; dired / shell auto-loading. | |
587 ;;; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
588 ;;; Thanks to Sebastian Kremer for dired support and for many ideas and |
1106 | 589 ;;; bugfixes. |
590 ;;; | |
591 ;;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
592 ;;; VOS support, and hostname completion. | |
593 ;;; | |
594 ;;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
595 ;;; with file-name expansion, efficiency worries, stylistic concerns and many | |
596 ;;; bugfixes. | |
597 ;;; | |
598 ;;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
599 ;;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
600 ;;; auto-recognition of the host type. | |
601 ;;; | |
602 ;;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
603 ;;; | |
604 ;;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
605 ;;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
606 ;;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
607 ;;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
608 ;;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
609 ;;; whose names I've forgotten who have helped to debug and fix problems with | |
610 ;;; ange-ftp.el. | |
611 | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
612 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
613 ;;; Code: |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
614 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
615 |
1106 | 616 ;;;; ------------------------------------------------------------ |
617 ;;;; User customization variables. | |
618 ;;;; ------------------------------------------------------------ | |
619 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
620 (defvar ange-ftp-name-format |
1106 | 621 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 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
|
624 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
625 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 626 parenthesized expressions in REGEXP for the components (in that order).") |
627 | |
628 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
629 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
630 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
631 | |
632 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
633 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
1106 | 634 "*Regular expression matching messages from the ftp process that start |
635 a multiline reply.") | |
636 | |
637 (defvar ange-ftp-good-msgs | |
638 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
639 "*Regular expression matching messages from the ftp process that indicate | |
640 that the action that was initiated has completed successfully.") | |
641 | |
642 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
643 ;; Also CMS machines use a multiline 550- reply to say that you | |
644 ;; don't have write permission. ange-ftp gets into multi-line skip | |
645 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
646 ;; when it gets the 550 line, as it should. | |
647 | |
648 (defvar ange-ftp-skip-msgs | |
649 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
650 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
651 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") | |
652 "*Regular expression matching messages from the ftp process that can be | |
653 ignored.") | |
654 | |
655 (defvar ange-ftp-fatal-msgs | |
656 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
657 "^No control connection\\|unknown host\\|^lost connection") | |
658 "*Regular expression matching messages from the FTP process that indicate | |
659 something has gone drastically wrong attempting the action that was | |
660 initiated and that the FTP process should (or already has) been killed.") | |
661 | |
662 (defvar ange-ftp-gateway-fatal-msgs | |
663 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
664 "*Regular expression matching messages from the rlogin / telnet process that | |
665 indicates that logging in to the gateway machine has gone wrong.") | |
666 | |
667 (defvar ange-ftp-xfer-size-msgs | |
668 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
669 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
670 | |
671 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
672 "*Template used to create temporary files.") | |
673 | |
674 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
675 "*Template used to create temporary files when ftp-ing through a gateway. | |
676 Files starting with this prefix need to be accessible from BOTH the local | |
677 machine and the gateway machine, and need to have the SAME name on both | |
678 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
679 cross-mounted.") | |
680 | |
681 (defvar ange-ftp-netrc-filename "~/.netrc" | |
682 "*File in .netrc format to search for passwords.") | |
683 | |
684 (defvar ange-ftp-disable-netrc-security-check nil | |
685 "*If non-nil avoid checking permissions on the .netrc file.") | |
686 | |
687 (defvar ange-ftp-default-user nil | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
688 "*User name to use when none is specied in a file name. |
1106 | 689 If nil, then the name under which the user is logged in is used. |
690 If non-nil but not a string, the user is prompted for the name.") | |
691 | |
692 (defvar ange-ftp-default-password nil | |
693 "*Password to use when the user is the same as ange-ftp-default-user.") | |
694 | |
695 (defvar ange-ftp-default-account nil | |
696 "*Account password to use when the user is the same as ange-ftp-default-user.") | |
697 | |
1174 | 698 (defvar ange-ftp-generate-anonymous-password t |
1106 | 699 "*If t, use a password of user@host when logging in as the anonymous user. |
700 If a string then use that as the password. | |
701 If nil then prompt the user for a password.") | |
702 | |
703 (defvar ange-ftp-dumb-unix-host-regexp nil | |
704 "*If non-nil, if the host being ftp'd to matches this regexp then the FTP | |
705 process uses the \'dir\' command to get directory information.") | |
706 | |
707 (defvar ange-ftp-binary-file-name-regexp | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
708 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 709 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|" |
5171
85aadd2a80ba
(ange-ftp-binary-file-name-regexp): Accept .tgz and .taz files.
Richard M. Stallman <rms@gnu.org>
parents:
5067
diff
changeset
|
710 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|" |
85aadd2a80ba
(ange-ftp-binary-file-name-regexp): Accept .tgz and .taz files.
Richard M. Stallman <rms@gnu.org>
parents:
5067
diff
changeset
|
711 "\\.taz$\\|\\.tgz$") |
1106 | 712 "*If a file matches this regexp then it is transferred in binary mode.") |
713 | |
714 (defvar ange-ftp-gateway-host nil | |
715 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
716 | |
717 (defvar ange-ftp-local-host-regexp ".*" | |
718 "*If a host being FTP'd to matches this regexp then the ftp process is started | |
719 locally, otherwise the FTP process is started on \`ange-ftp-gateway-host\' | |
720 instead.") | |
721 | |
722 (defvar ange-ftp-gateway-program-interactive nil | |
723 "*If non-nil then the gateway program is expected to connect to the gateway | |
724 machine and eventually give a shell prompt. Both telnet and rlogin do something | |
725 like this.") | |
726 | |
727 (defvar ange-ftp-gateway-program (if (eq system-type 'hpux) "remsh" "rsh") | |
728 "*Name of program to spawn a shell on the gateway machine. Valid candidates | |
729 are rsh (remsh on hp-ux), telnet and rlogin. See also the gateway variable | |
730 above.") | |
731 | |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
732 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
1106 | 733 "*Regexp used to detect that the logging-in sequence is completed on the |
734 gateway machine and that the shell is now awaiting input. Make this regexp as | |
735 strict as possible; it shouldn't match *anything* at all except the user's | |
736 initial prompt. The above string will fail under most SUN-3's since it | |
737 matches the login banner.") | |
738 | |
739 (defvar ange-ftp-gateway-setup-term-command | |
740 (if (eq system-type 'hpux) | |
741 "stty -onlcr -echo\n" | |
742 "stty -echo nl\n") | |
743 "*Command to use after logging in to the gateway machine to stop the terminal | |
744 echoing each command and to strip out trailing ^M characters.") | |
745 | |
746 (defvar ange-ftp-smart-gateway nil | |
747 "*If the gateway FTP is smart enough to use proxy server, then don't bother | |
748 telnetting etc, just issue a user@host command instead.") | |
749 | |
750 (defvar ange-ftp-smart-gateway-port "21" | |
751 "*Port on gateway machine to use when smart gateway is in operation.") | |
752 | |
753 (defvar ange-ftp-send-hash t | |
754 "*If non-nil, send the HASH command to the FTP client.") | |
755 | |
756 (defvar ange-ftp-binary-hash-mark-size nil | |
757 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
758 If NIL, this variable will be locally overridden if the FTP client outputs a | |
759 suitable response to the HASH command. If non-NIL then this value takes | |
760 precedence over the local value.") | |
761 | |
762 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
763 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
764 This variable is buffer-local and will be locally overridden if the FTP client | |
765 outputs a suitable response to the HASH command.") | |
766 | |
767 (defvar ange-ftp-process-verbose t | |
768 "*If non-NIL then be chatty about interaction with the FTP process.") | |
769 | |
770 (defvar ange-ftp-ftp-program-name "ftp" | |
771 "*Name of FTP program to run.") | |
772 | |
773 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
774 "*Name of FTP program to run on gateway machine. | |
775 Some AT&T folks claim to use something called `pftp' here.") | |
776 | |
777 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
778 "*A list of arguments passed to the FTP program when started.") | |
779 | |
780 (defvar ange-ftp-nslookup-program nil | |
781 "*If non-NIL then a string naming nslookup program." ) | |
782 | |
783 (defvar ange-ftp-make-backup-files () | |
3416
5bd76dd4c6bd
(ange-ftp-make-backup-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3394
diff
changeset
|
784 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 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 | |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
860 (defconst ange-ftp-version "$Revision: 1.40 $") |
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 "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1020 (ange-ftp-repaint-minibuffer) |
1106 | 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 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1064 ;; look up password in the hash table first; user might have overridden the |
1106 | 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 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1305 (defun ange-ftp-repaint-minibuffer () |
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1306 "Clear any existing minibuffer message; let the minibuffer contents show." |
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1307 (message nil)) |
1106 | 1308 |
1309 (defun ange-ftp-ftp-process-buffer (host user) | |
1310 "Return the name of the buffer that collects output from the ftp process | |
1311 connected to the given HOST and USER pair." | |
1312 (concat "*ftp " user "@" host "*")) | |
1313 | |
1314 (defun ange-ftp-error (host user msg) | |
1315 "Display the last chunk of output from the ftp process for the given HOST | |
1316 USER pair, and signal an error including MSG in the text." | |
1317 (let ((cur (selected-window)) | |
1318 (pop-up-windows t)) | |
1319 (pop-to-buffer | |
1320 (get-buffer-create | |
1321 (ange-ftp-ftp-process-buffer host user))) | |
1322 (goto-char (point-max)) | |
1323 (select-window cur)) | |
1324 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1325 | |
1326 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1327 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1328 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1329 (ange-ftp-ftp-name buffer-file-name)) |
1106 | 1330 (progn |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1331 (make-local-variable 'make-backup-files) |
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1332 (setq make-backup-files ange-ftp-make-backup-files) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
1333 (auto-save-mode ange-ftp-auto-save)))) |
1106 | 1334 |
1335 (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
|
1336 "Kill the FTP process associated with BUFFER. |
1233 | 1337 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1338 then kill the related ftp process." |
1339 (interactive "bKill FTP process associated with buffer: ") | |
1340 (if (null buffer) | |
1341 (setq buffer (current-buffer))) | |
1342 (let ((file (or (buffer-file-name) default-directory))) | |
1343 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1344 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1345 (if parsed |
1346 (let ((host (nth 0 parsed)) | |
1347 (user (nth 1 parsed))) | |
1348 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1349 | |
1350 (defun ange-ftp-quote-string (string) | |
1351 "Quote any characters in STRING that may confuse the ftp process." | |
1352 (apply (function concat) | |
1353 (mapcar (function | |
1354 (lambda (char) | |
1355 (if (or (<= char ? ) | |
1356 (> char ?\~) | |
1357 (= char ?\") | |
1358 (= char ?\\)) | |
1359 (vector ?\\ char) | |
1360 (vector char)))) | |
1361 string))) | |
1362 | |
1363 (defun ange-ftp-barf-if-not-directory (directory) | |
1364 (or (file-directory-p directory) | |
1365 (signal 'file-error | |
1366 (list "Opening directory" | |
1367 (if (file-exists-p directory) | |
1368 "not a directory" | |
1369 "no such file or directory") | |
1370 directory)))) | |
1371 | |
1372 ;;;; ------------------------------------------------------------ | |
1373 ;;;; FTP process filter support. | |
1374 ;;;; ------------------------------------------------------------ | |
1375 | |
1376 (defun ange-ftp-process-handle-line (line proc) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1377 "Look at the given LINE from the ftp process PROC. Try to categorize it |
1106 | 1378 into one of four categories: good, skip, fatal, or unknown." |
1379 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
1380 (setq ange-ftp-xfer-size | |
1381 (ash (string-to-int (substring line | |
1382 (match-beginning 1) | |
1383 (match-end 1))) | |
1384 -10))) | |
1385 ((string-match ange-ftp-skip-msgs line) | |
1386 t) | |
1387 ((string-match ange-ftp-good-msgs line) | |
1388 (setq ange-ftp-process-busy nil | |
1389 ange-ftp-process-result t | |
1390 ange-ftp-process-result-line line)) | |
1391 ((string-match ange-ftp-fatal-msgs line) | |
1392 (delete-process proc) | |
1393 (setq ange-ftp-process-busy nil | |
1394 ange-ftp-process-result-line line)) | |
1395 ((string-match ange-ftp-multi-msgs line) | |
1396 (setq ange-ftp-process-multi-skip t)) | |
1397 (ange-ftp-process-multi-skip | |
1398 t) | |
1399 (t | |
1400 (setq ange-ftp-process-busy nil | |
1401 ange-ftp-process-result-line line)))) | |
1402 | |
1403 (defun ange-ftp-process-log-string (proc str) | |
1404 "For a given PROCESS, log the given STRING at the end of its | |
1405 associated buffer." | |
1406 (let ((old-buffer (current-buffer))) | |
1407 (unwind-protect | |
1408 (let (moving) | |
1409 (set-buffer (process-buffer proc)) | |
1410 (setq moving (= (point) (process-mark proc))) | |
1411 (save-excursion | |
1412 ;; Insert the text, moving the process-marker. | |
1413 (goto-char (process-mark proc)) | |
1414 (insert str) | |
1415 (set-marker (process-mark proc) (point))) | |
1416 (if moving (goto-char (process-mark proc)))) | |
1417 (set-buffer old-buffer)))) | |
1418 | |
1419 (defun ange-ftp-set-xfer-size (host user bytes) | |
1420 "Set the size of the next FTP transfer in bytes." | |
1421 (let ((proc (ange-ftp-get-process host user))) | |
1422 (if proc | |
1423 (let ((buf (process-buffer proc))) | |
1424 (if buf | |
1425 (save-excursion | |
1426 (set-buffer buf) | |
1427 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1428 | |
1429 (defun ange-ftp-process-handle-hash (str) | |
1430 "Remove hash marks from STRING and display count so far." | |
1431 (setq str (concat (substring str 0 (match-beginning 0)) | |
1432 (substring str (match-end 0))) | |
1433 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1434 (match-beginning 0)) | |
1435 ange-ftp-hash-mark-count)) | |
1436 (and ange-ftp-process-msg | |
1437 ange-ftp-process-verbose | |
1438 (not (eq (selected-window) (minibuffer-window))) | |
1439 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1440 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1441 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1442 ange-ftp-hash-mark-count) | |
1443 -6))) | |
1444 (if (zerop ange-ftp-xfer-size) | |
1445 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1446 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1447 ;; cut out the redisplay of identical %-age messages. | |
1448 (if (not (eq percent ange-ftp-last-percent)) | |
1449 (progn | |
1450 (setq ange-ftp-last-percent percent) | |
1451 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1452 str) | |
1453 | |
1454 (defun ange-ftp-call-cont (cont result line) | |
1455 "Call the function specified by CONT. CONT can be either a function or a | |
1456 list of a function and some args. The first two parameters passed to the | |
1457 function will be RESULT and LINE. The remaining args will be taken from CONT | |
1458 if a list was passed." | |
1459 (if cont | |
1460 (if (and (listp cont) | |
1461 (not (eq (car cont) 'lambda))) | |
1462 (apply (car cont) result line (cdr cont)) | |
1463 (funcall cont result line)))) | |
1464 | |
1465 (defun ange-ftp-process-filter (proc str) | |
1466 "Build up a complete line of output from the ftp PROCESS and pass it | |
1467 on to ange-ftp-process-handle-line to deal with." | |
1468 (let ((buffer (process-buffer proc)) | |
1469 (old-buffer (current-buffer))) | |
1470 | |
1471 ;; see if the buffer is still around... it could have been deleted. | |
1472 (if (buffer-name buffer) | |
1473 (unwind-protect | |
1474 (ange-ftp-save-match-data | |
1475 (set-buffer (process-buffer proc)) | |
1476 | |
1477 ;; handle hash mark printing | |
1478 (and ange-ftp-hash-mark-unit | |
1479 ange-ftp-process-busy | |
1480 (string-match "^#+$" str) | |
1481 (setq str (ange-ftp-process-handle-hash str))) | |
1482 (ange-ftp-process-log-string proc str) | |
1483 (if ange-ftp-process-busy | |
1484 (progn | |
1485 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1486 str)) | |
1487 | |
1488 ;; if we gave an empty password to the USER command earlier | |
1489 ;; then we should send a null password now. | |
1490 (if (string-match "Password: *$" ange-ftp-process-string) | |
1491 (send-string proc "\n")))) | |
1492 (while (and ange-ftp-process-busy | |
1493 (string-match "\n" ange-ftp-process-string)) | |
1494 (let ((line (substring ange-ftp-process-string | |
1495 0 | |
1496 (match-beginning 0)))) | |
1497 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1498 (match-end 0))) | |
1499 (while (string-match "^ftp> *" line) | |
1500 (setq line (substring line (match-end 0)))) | |
1501 (ange-ftp-process-handle-line line proc))) | |
1502 | |
1503 ;; has the ftp client finished? if so then do some clean-up | |
1504 ;; actions. | |
1505 (if (not ange-ftp-process-busy) | |
1506 (progn | |
1507 ;; reset the xfer size | |
1508 (setq ange-ftp-xfer-size 0) | |
1509 | |
1510 ;; issue the "done" message since we've finished. | |
1511 (if (and ange-ftp-process-msg | |
1512 ange-ftp-process-verbose | |
1513 ange-ftp-process-result) | |
1514 (progn | |
1515 (ange-ftp-message "%s...done" ange-ftp-process-msg) | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1516 (ange-ftp-repaint-minibuffer) |
1106 | 1517 (setq ange-ftp-process-msg nil))) |
1518 | |
1519 ;; is there a continuation we should be calling? if so, | |
1520 ;; we'd better call it, making sure we only call it once. | |
1521 (if ange-ftp-process-continue | |
1522 (let ((cont ange-ftp-process-continue)) | |
1523 (setq ange-ftp-process-continue nil) | |
1524 (ange-ftp-call-cont cont | |
1525 ange-ftp-process-result | |
1526 ange-ftp-process-result-line)))))) | |
1527 (set-buffer old-buffer))))) | |
1528 | |
1529 (defun ange-ftp-process-sentinel (proc str) | |
1530 "When ftp process changes state, nuke all file-entries in cache." | |
1531 (ange-ftp-save-match-data | |
1532 (let ((name (process-name proc))) | |
1533 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)*" name) | |
1534 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
1535 (host (substring name (match-beginning 2) (match-end 2)))) | |
1536 (ange-ftp-wipe-file-entries host user)))) | |
1537 (setq ange-ftp-ls-cache-file nil))) | |
1538 | |
1539 ;;;; ------------------------------------------------------------ | |
1540 ;;;; Gateway support. | |
1541 ;;;; ------------------------------------------------------------ | |
1542 | |
1543 (defun ange-ftp-use-gateway-p (host) | |
1544 "Returns whether to access this host via a normal (non-smart) gateway." | |
1545 ;; yes, I know that I could simplify the following expression, but it is | |
1546 ;; clearer (to me at least) this way. | |
1547 (and (not ange-ftp-smart-gateway) | |
1548 (ange-ftp-save-match-data | |
1549 (not (string-match ange-ftp-local-host-regexp host))))) | |
1550 | |
1551 (defun ange-ftp-use-smart-gateway-p (host) | |
1552 "Returns whether to access this host via a smart gateway." | |
1553 (and ange-ftp-smart-gateway | |
1554 (ange-ftp-save-match-data | |
1555 (not (string-match ange-ftp-local-host-regexp host))))) | |
1556 | |
1557 | |
1558 ;;; ------------------------------------------------------------ | |
1559 ;;; Temporary file location and deletion... | |
1560 ;;; ------------------------------------------------------------ | |
1561 | |
1562 (defvar ange-ftp-tmp-name-files ()) | |
1563 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1564 (defvar ange-ftp-pid nil) | |
1565 | |
1566 (defun ange-ftp-get-pid () | |
1567 "Half-hearted attempt to get the current process's id." | |
1568 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1569 | |
1570 (defun ange-ftp-make-tmp-name (host) | |
1571 "This routine will return the name of a new file." | |
1572 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1573 ange-ftp-gateway-tmp-name-template | |
1574 ange-ftp-tmp-name-template)) | |
1575 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1576 (start ?a) | |
1577 file entry) | |
1578 (while | |
1579 (progn | |
1580 (setq file (format "%s%c%s" template start pid)) | |
1581 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1582 (or (memq entry ange-ftp-tmp-name-files) | |
1583 (ange-ftp-real-file-exists-p file))) | |
1584 (if (> (setq start (1+ start)) ?z) | |
1585 (progn | |
1586 (setq template (concat template "X")) | |
1587 (setq start ?a)))) | |
1588 (setq ange-ftp-tmp-name-files | |
1589 (cons entry ange-ftp-tmp-name-files)) | |
1590 file)) | |
1591 | |
1592 (defun ange-ftp-del-tmp-name (temp) | |
1593 (setq ange-ftp-tmp-name-files | |
1594 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1595 ange-ftp-tmp-name-files)) | |
1596 (condition-case () | |
1597 (ange-ftp-real-delete-file temp) | |
1598 (error nil))) | |
1599 | |
1600 ;;;; ------------------------------------------------------------ | |
1601 ;;;; Interactive gateway program support. | |
1602 ;;;; ------------------------------------------------------------ | |
1603 | |
1604 (defvar ange-ftp-gwp-running t) | |
1605 (defvar ange-ftp-gwp-status nil) | |
1606 | |
1607 (defun ange-ftp-gwp-sentinel (proc str) | |
1608 (setq ange-ftp-gwp-running nil)) | |
1609 | |
1610 (defun ange-ftp-gwp-filter (proc str) | |
1611 (ange-ftp-save-match-data | |
1612 (ange-ftp-process-log-string proc str) | |
1613 (cond ((string-match "login: *$" str) | |
1614 (send-string proc | |
1615 (concat | |
1616 (let ((ange-ftp-default-user t)) | |
1617 (ange-ftp-get-user ange-ftp-gateway-host)) | |
1618 "\n"))) | |
1619 ((string-match "Password: *$" str) | |
1620 (send-string proc | |
1621 (concat | |
1622 (ange-ftp-get-passwd ange-ftp-gateway-host | |
1623 (ange-ftp-get-user | |
1624 ange-ftp-gateway-host)) | |
1625 "\n"))) | |
1626 ((string-match ange-ftp-gateway-fatal-msgs str) | |
1627 (delete-process proc) | |
1628 (setq ange-ftp-gwp-running nil)) | |
1629 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1630 (setq ange-ftp-gwp-running nil | |
1631 ange-ftp-gwp-status t))))) | |
1632 | |
1633 (defun ange-ftp-gwp-start (host user name args) | |
1634 "Login to the gateway machine and fire up an ftp process." | |
1635 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
1636 (proc (start-process name name | |
1637 ange-ftp-gateway-program | |
1638 ange-ftp-gateway-host)) | |
1639 (ftp (mapconcat (function identity) args " "))) | |
1640 (process-kill-without-query proc) | |
1641 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1642 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
1643 (set-marker (process-mark proc) (point)) | |
1644 (setq ange-ftp-gwp-running t | |
1645 ange-ftp-gwp-status nil) | |
1646 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1647 (while ange-ftp-gwp-running ;perform login sequence | |
1648 (accept-process-output proc)) | |
1649 (if (not ange-ftp-gwp-status) | |
1650 (ange-ftp-error host user "unable to login to gateway")) | |
1651 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1652 (setq ange-ftp-gwp-running t | |
1653 ange-ftp-gwp-status nil) | |
1654 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1655 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1656 (accept-process-output proc)) | |
1657 (if (not ange-ftp-gwp-status) | |
1658 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1659 (setq ange-ftp-gwp-running t | |
1660 ange-ftp-gwp-status nil) | |
1661 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1662 proc)) | |
1663 | |
1664 ;;;; ------------------------------------------------------------ | |
1665 ;;;; Support for sending commands to the ftp process. | |
1666 ;;;; ------------------------------------------------------------ | |
1667 | |
1668 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1669 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1670 MSG is an optional message to output before and after the command. | |
1671 If CONT is non-NIL then it is either a function or a list of function and | |
1672 some arguments. The function will be called when the ftp command has completed. | |
1673 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1674 is whether the command was successful, and LINE is the line from the FTP | |
1675 process that caused the command to complete. | |
1676 If NOWAIT is given then the routine will return immediately the command has | |
1677 been queued with no result. CONT will still be called, however." | |
1678 (if (memq (process-status proc) '(run open)) | |
1679 (save-excursion | |
1680 (set-buffer (process-buffer proc)) | |
1681 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1682 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1683 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1684 ;; It is bad to allow quitting in a filter, but getting hung |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1685 ;; is worse. By binding quit-flag to nil, we might avoid |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1686 ;; most of the probability of getting screwed because the user |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1687 ;; wants to quit some command. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1688 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1689 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1690 (accept-process-output))) |
1106 | 1691 (setq ange-ftp-process-string "" |
1692 ange-ftp-process-result-line "" | |
1693 ange-ftp-process-busy t | |
1694 ange-ftp-process-result nil | |
1695 ange-ftp-process-multi-skip nil | |
1696 ange-ftp-process-msg msg | |
1697 ange-ftp-process-continue cont | |
1698 ange-ftp-hash-mark-count 0 | |
1699 ange-ftp-last-percent -1 | |
1700 cmd (concat cmd "\n")) | |
1701 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1702 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1703 (move-marker comint-last-input-start (point)) |
1106 | 1704 ;; don't insert the password into the buffer on the USER command. |
1705 (ange-ftp-save-match-data | |
1706 (if (string-match "^user \"[^\"]*\"" cmd) | |
1707 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1708 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1709 (move-marker comint-last-input-end (point)) |
1106 | 1710 (send-string proc cmd) |
1711 (set-marker (process-mark proc) (point)) | |
1712 (if nowait | |
1713 nil | |
1714 ;; hang around for command to complete | |
1715 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1716 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1717 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1718 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1719 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1720 (accept-process-output proc))) |
1106 | 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)) | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1766 (internal-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 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1772 (defun internal-ange-ftp-mode () |
1132
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) |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1775 (setq major-mode 'internal-ange-ftp-mode) |
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1776 (setq mode-name "Internal 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 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1853 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1854 (defvar ange-ftp-hash-mark-msgs |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1855 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1856 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1857 | |
1858 (defun ange-ftp-guess-hash-mark-size (proc) | |
1859 (if ange-ftp-send-hash | |
1860 (save-excursion | |
1861 (set-buffer (process-buffer proc)) | |
1862 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1863 (result (car status)) | |
1864 (line (cdr status))) | |
1865 (ange-ftp-save-match-data | |
1866 (if (string-match ange-ftp-hash-mark-msgs line) | |
1867 (let ((size (string-to-int | |
1868 (substring line | |
1869 (match-beginning 1) | |
1870 (match-end 1))))) | |
1871 (setq ange-ftp-ascii-hash-mark-size size | |
1872 ange-ftp-hash-mark-unit (ash size -4)) | |
1873 | |
1874 ;; if a default value for this is set, use that value. | |
1875 (or ange-ftp-binary-hash-mark-size | |
1876 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1877 | |
1878 (defun ange-ftp-get-process (host user) | |
1879 "Return the process object for a FTP process connected to HOST and | |
1880 logged in as USER. Create a new process if needed." | |
1881 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
1882 (proc (get-process name))) | |
1883 (if (and proc (memq (process-status proc) '(run open))) | |
1884 proc | |
1885 (let ((pass (ange-ftp-quote-string | |
1886 (ange-ftp-get-passwd host user))) | |
1887 (account (ange-ftp-quote-string | |
1888 (ange-ftp-get-account host user)))) | |
1889 ;; grab a suitable process. | |
1890 (setq proc (ange-ftp-start-process host user name)) | |
1891 | |
1892 ;; login to FTP server. | |
1893 (if (ange-ftp-use-smart-gateway-p host) | |
1894 (ange-ftp-smart-login host user pass account proc) | |
1895 (ange-ftp-normal-login host user pass account proc)) | |
1896 | |
1897 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1898 ;; fatal if this command fails. | |
1899 (ange-ftp-guess-hash-mark-size proc) | |
1900 | |
1901 ;; Guess at the host type. | |
1902 (ange-ftp-guess-host-type host user) | |
1903 | |
1904 ;; Run any user-specified hooks. Note that proc, host and user are | |
1905 ;; dynamically bound at this point. | |
1906 (run-hooks 'ange-ftp-process-startup-hook)) | |
1907 proc))) | |
1908 | |
1909 ;; Variables for caching host and host-type | |
1910 (defvar ange-ftp-host-cache nil) | |
1911 (defvar ange-ftp-host-type-cache nil) | |
1912 | |
1913 ;; If ange-ftp-host-type is called with the optional user | |
1914 ;; argument, it will attempt to guess the host type by connecting | |
1915 ;; as user, if necessary. For efficiency, I have tried to give this | |
1916 ;; optional second argument only when necessary. Have I missed any calls | |
1917 ;; to ange-ftp-host-type where it should have been supplied? | |
1918 | |
1919 (defun ange-ftp-host-type (host &optional user) | |
1920 "Return a symbol which represents the type of the HOST given. | |
1921 If the optional argument USER is given, attempts to guess the | |
1922 host-type by logging in as USER." | |
1923 (if (eq host ange-ftp-host-cache) | |
1924 ange-ftp-host-type-cache | |
1925 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
1926 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
1927 ange-ftp-host-type-cache | |
1928 (setq ange-ftp-host-cache host | |
1929 ange-ftp-host-type-cache | |
1930 (cond ((ange-ftp-dumb-unix-host host) | |
1931 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1932 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1933 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1934 ;; 'vos) |
1106 | 1935 ((and (fboundp 'ange-ftp-vms-host) |
1936 (ange-ftp-vms-host host)) | |
1937 'vms) | |
1938 ((and (fboundp 'ange-ftp-mts-host) | |
1939 (ange-ftp-mts-host host)) | |
1940 'mts) | |
1941 ((and (fboundp 'ange-ftp-cms-host) | |
1942 (ange-ftp-cms-host host)) | |
1943 'cms) | |
1944 (t | |
1945 'unix)))))) | |
1946 | |
1947 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
1948 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
1949 ;; without sacrificing speed. Also, having separate variables | |
1950 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
1951 ;; set an alist to indicate that a host is of a given type. Even with | |
1952 ;; automatic host type recognition, setting a regexp is still a good idea | |
1953 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
1954 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1955 (defvar ange-ftp-fix-name-func-alist nil |
1106 | 1956 "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
|
1957 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 1958 TYPE.") |
1959 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1960 (defvar ange-ftp-fix-dir-name-func-alist nil |
1106 | 1961 "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
|
1962 which can change UNIX directory name into a directory name more suitable |
1106 | 1963 for a host of type TYPE.") |
1964 | |
1965 ;; *** Perhaps the sense of this variable should be inverted, since there | |
1966 ;; *** is only 1 host type that can take ls-style listing options. | |
1967 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
1968 "List of host types that can't take UNIX ls-style listing options.") | |
1969 | |
1970 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
1971 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
1972 MSG is an optional status message to be output before and after issuing the | |
1973 command. | |
1974 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
1975 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1976 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 1977 ;; capability. |
1978 (let ((cmd0 (car cmd)) | |
1979 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
1980 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
1981 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
1982 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1983 cmd2 cmd3 host-type fix-name-func) |
1106 | 1984 |
1985 (cond | |
1986 | |
1987 ;; pwd case (We don't care what host-type.) | |
1988 ((null cmd1)) | |
1989 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1990 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 1991 ((progn |
1992 (setq cmd2 (nth 2 cmd) | |
1993 host-type (ange-ftp-host-type host user)) | |
1994 ;; This will trigger an FTP login, if one doesn't exist | |
1995 (eq cmd0 'dir)) | |
1996 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1997 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 1998 'identity) |
1999 cmd1) | |
2000 cmd3 (nth 3 cmd)) | |
2001 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2002 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2003 ;; be happy.) | |
2004 (and (eq host-type 'unix) | |
2005 (string-match "/$" cmd1) | |
2006 (not (string-match "R" cmd3)) | |
2007 (setq cmd1 (concat cmd1 "."))) | |
2008 ;; If the remote ls can take switches, put them in | |
2009 (or (memq host-type ange-ftp-dumb-host-types) | |
2010 (setq cmd0 'ls | |
2011 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2012 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2013 ;; First argument is the remote name |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2014 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2015 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2016 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2017 'identity)) |
1106 | 2018 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2019 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2020 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2021 ;; Second argument is the remote name |
1106 | 2022 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2023 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2024 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2025 ;; Both arguments are remote names |
1106 | 2026 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2027 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2028 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2029 |
2030 ;; Turn the command into one long string | |
2031 (setq cmd0 (symbol-name cmd0)) | |
2032 (setq cmd (concat cmd0 | |
2033 (and cmd1 (concat " " cmd1)) | |
2034 (and cmd2 (concat " " cmd2)))) | |
2035 | |
2036 ;; Actually send the resulting command. | |
2037 (let (afsc-result | |
2038 afsc-line) | |
2039 (ange-ftp-raw-send-cmd | |
2040 (ange-ftp-get-process host user) | |
2041 cmd | |
2042 msg | |
2043 (list | |
2044 (function (lambda (result line host user | |
2045 cmd msg cont nowait) | |
2046 (or cont | |
2047 (setq afsc-result result | |
2048 afsc-line line)) | |
2049 (if result | |
2050 (ange-ftp-call-cont cont result line) | |
2051 (ange-ftp-raw-send-cmd | |
2052 (ange-ftp-get-process host user) | |
2053 cmd | |
2054 msg | |
2055 (list | |
2056 (function (lambda (result line cont) | |
2057 (or cont | |
2058 (setq afsc-result result | |
2059 afsc-line line)) | |
2060 (ange-ftp-call-cont cont result line))) | |
2061 cont) | |
2062 nowait)))) | |
2063 host user cmd msg cont nowait) | |
2064 nowait) | |
2065 | |
2066 (if nowait | |
2067 nil | |
2068 (if cont | |
2069 nil | |
2070 (cons afsc-result afsc-line)))))) | |
2071 | |
2072 ;; It might be nice to message users about the host type identified, | |
2073 ;; but there is so much other messaging going on, it would not be | |
2074 ;; seen. No point in slowing things down just so users can read | |
2075 ;; a host type message. | |
2076 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2077 (defconst ange-ftp-cms-name-template |
1106 | 2078 (concat |
2079 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2080 "[-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
|
2081 (defconst ange-ftp-vms-name-template |
1106 | 2082 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2083 (defconst ange-ftp-mts-name-template |
1106 | 2084 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2085 | |
2086 (defun ange-ftp-guess-host-type (host user) | |
2087 "Guess at the the host type of HOST by doing a pwd, and examining | |
2088 the directory syntax." | |
2089 (let ((host-type (ange-ftp-host-type host)) | |
2090 (key (concat host "/" user "/~"))) | |
2091 (if (eq host-type 'unix) | |
2092 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2093 (ange-ftp-save-match-data | |
2094 (let* ((result (ange-ftp-get-pwd host user)) | |
2095 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2096 fix-name-func) |
1106 | 2097 (cond ((null dir) |
2098 (message "Warning! Unable to get home directory") | |
2099 (sit-for 1) | |
2100 (if (string-match | |
2101 "^450 No current working directory defined$" | |
2102 (cdr result)) | |
2103 | |
2104 ;; We'll assume that if pwd bombs with this | |
2105 ;; error message, then it's CMS. | |
2106 (progn | |
2107 (ange-ftp-add-cms-host host) | |
2108 (setq ange-ftp-host-cache host | |
2109 ange-ftp-host-type-cache 'cms)))) | |
2110 | |
2111 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2112 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2113 (ange-ftp-add-vms-host host) |
2114 ;; The add-host functions clear the host type cache. | |
2115 ;; Therefore, need to set the cache afterwards. | |
2116 (setq ange-ftp-host-cache host | |
2117 ange-ftp-host-type-cache 'vms)) | |
2118 | |
2119 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2120 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2121 (ange-ftp-add-mts-host host) |
2122 (setq ange-ftp-host-cache host | |
2123 ange-ftp-host-type-cache 'mts)) | |
2124 | |
2125 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2126 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2127 (ange-ftp-add-cms-host host) |
2128 (setq ange-ftp-host-cache host | |
2129 ange-ftp-host-type-cache 'cms)) | |
2130 | |
2131 ;; assume UN*X | |
2132 (t | |
2133 (setq ange-ftp-host-cache host | |
2134 ange-ftp-host-type-cache 'unix))) | |
2135 | |
2136 ;; Now that we have done a pwd, might as well put it in | |
2137 ;; the expand-dir hashtable. | |
2138 (let ((ange-ftp-this-user user) | |
2139 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2140 (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
|
2141 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2142 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2143 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2144 (ange-ftp-put-hash-entry key dir |
2145 ange-ftp-expand-dir-hashtable)))) | |
2146 | |
2147 ;; In the special case of CMS make sure that know the | |
2148 ;; expansion of the home minidisk now, because we will | |
2149 ;; be doing a lot of cd's. | |
2150 (if (and (eq host-type 'cms) | |
2151 (not (ange-ftp-hash-entry-exists-p | |
2152 key ange-ftp-expand-dir-hashtable))) | |
2153 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2154 (if dir | |
2155 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2156 ange-ftp-expand-dir-hashtable) | |
2157 (message "Warning! Unable to get home directory") | |
2158 (sit-for 1)))))) | |
2159 | |
2160 | |
2161 ;;;; ------------------------------------------------------------ | |
2162 ;;;; Remote file and directory listing support. | |
2163 ;;;; ------------------------------------------------------------ | |
2164 | |
2165 (defun ange-ftp-dumb-unix-host (host) | |
2166 "Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
2167 to take switch arguments." | |
2168 (and ange-ftp-dumb-unix-host-regexp | |
2169 (ange-ftp-save-match-data | |
2170 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
2171 | |
2172 (defun ange-ftp-add-dumb-unix-host (host) | |
2173 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2174 (interactive | |
2175 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2176 (let ((name (or (buffer-file-name) default-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: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2407 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2408 (and name (ange-ftp-ftp-name name) |
1106 | 2409 (file-name-directory name)))))) |
2410 (if (not (and ange-ftp-dl-dir-regexp | |
2411 (string-match ange-ftp-dl-dir-regexp dir))) | |
2412 (setq ange-ftp-dl-dir-regexp | |
2413 (concat "^" (regexp-quote dir) | |
2414 (and ange-ftp-dl-dir-regexp "\\|") | |
2415 ange-ftp-dl-dir-regexp)))) | |
2416 | |
2417 (defmacro ange-ftp-dl-parser () | |
2418 ;; Parse the current buffer, which is assumed to be a descriptive | |
2419 ;; listing, and return a hashtable. | |
2420 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2421 (while (not (eobp)) | |
2422 (ange-ftp-put-hash-entry | |
2423 (buffer-substring (point) | |
2424 (progn | |
2425 (skip-chars-forward "^ /\n") | |
2426 (point))) | |
2427 (eq (following-char) ?/) | |
2428 tbl) | |
2429 (forward-line 1)) | |
2430 (ange-ftp-put-hash-entry "." t tbl) | |
2431 (ange-ftp-put-hash-entry ".." t tbl) | |
2432 tbl))) | |
2433 | |
2434 (defun ange-ftp-parse-dired-listing (&optional switches) | |
2435 "Parse the current buffer which is assumed to be in a dired-like listing | |
2436 format, and return a hashtable as the result. If the listing is not really | |
2437 a listing, then return nil." | |
2438 (ange-ftp-save-match-data | |
2439 (cond | |
2440 ((looking-at "^total [0-9]+$") | |
2441 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2442 ;; Some systems put in a blank line here. |
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2443 (if (eolp) (forward-line 1)) |
1106 | 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 | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2534 ;;; This variable seems not to exist in Emacs 19 -- rms. |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2535 ;;; ;; Deal with dired |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2536 ;;; (and (boundp 'dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2537 ;;; (stringp dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2538 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2539 ;; No dots in dir names in vms. |
2540 (and (eq host-type 'vms) | |
2541 (string-match "\\." efile)) | |
2542 ;; No subdirs in mts of cms. | |
2543 (and (memq host-type '(mts cms)) | |
2544 (not (string-equal "/" (nth 2 parsed))))))))) | |
2545 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2546 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2547 "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
|
2548 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2549 (dir (file-name-directory name)) |
1106 | 2550 (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
|
2551 (file (ange-ftp-get-file-part name))) |
1106 | 2552 (if ent |
2553 (ange-ftp-hash-entry-exists-p file ent) | |
2554 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2555 (setq ent (ange-ftp-get-files name t)) |
1106 | 2556 ;; Try a child lookup. i.e. try to list file as a |
2557 ;; subdirectory of dir. This is a good idea because | |
2558 ;; we may not have read permission for file's parent. Also, | |
2559 ;; people tend to work down directory trees anyway. We use | |
2560 ;; no-error ;; because if file does not exist as a subdir., | |
2561 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2562 ;; will simply send back the ls | |
2563 ;; error message. | |
2564 (ange-ftp-get-hash-entry "." ent)) | |
2565 ;; Child lookup failed. Try the parent. If this bombs, | |
2566 ;; we are at wits end -- signal an error. | |
2567 ;; Problem: If this signals an error, the error message | |
2568 ;; may not have a lot to do with what went wrong. | |
2569 (ange-ftp-hash-entry-exists-p file | |
2570 (ange-ftp-get-files dir)))))) | |
2571 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2572 (defun ange-ftp-get-file-entry (name) |
1233 | 2573 "Given NAME, return the given file entry. |
2574 The entry will be either t for a directory, nil for a normal file, | |
2575 or a string for a symlink. If the file isn't in the hashtable, | |
2576 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2577 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2578 (dir (file-name-directory name)) |
1106 | 2579 (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
|
2580 (file (ange-ftp-get-file-part name))) |
1106 | 2581 (if ent |
2582 (ange-ftp-get-hash-entry file ent) | |
2583 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2584 (setq ent (ange-ftp-get-files name t)) |
1106 | 2585 (ange-ftp-get-hash-entry "." ent)) |
2586 ;; i.e. it's a directory by child lookup | |
2587 (ange-ftp-get-hash-entry file | |
2588 (ange-ftp-get-files dir)))))) | |
2589 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2590 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2591 (if dir-p |
2592 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2593 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2594 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2595 (setq name (directory-file-name name)))) |
1106 | 2596 ;; Note that file-name-as-directory followed by directory-file-name |
2597 ;; serves to canonicalize directory file names to their unix form. | |
2598 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2599 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2600 ange-ftp-files-hashtable))) |
2601 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2602 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2603 files)))) |
2604 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2605 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2606 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2607 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2608 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2609 ange-ftp-files-hashtable))) |
2610 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2611 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2612 dir-p |
2613 files)))) | |
2614 | |
2615 (defun ange-ftp-wipe-file-entries (host user) | |
2616 "Replace the file entry information hashtable with one that doesn't have any | |
2617 entries for the given HOST, USER pair." | |
2618 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) | |
2619 (ange-ftp-map-hashtable | |
2620 (function | |
2621 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2622 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2623 (if parsed |
2624 (let ((h (nth 0 parsed)) | |
2625 (u (nth 1 parsed))) | |
2626 (or (and (equal host h) (equal user u)) | |
2627 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2628 ange-ftp-files-hashtable) | |
2629 (setq ange-ftp-files-hashtable new-tbl))) | |
2630 | |
2631 ;;;; ------------------------------------------------------------ | |
2632 ;;;; File transfer mode support. | |
2633 ;;;; ------------------------------------------------------------ | |
2634 | |
2635 (defun ange-ftp-set-binary-mode (host user) | |
2636 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2637 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2638 (if (not (car result)) | |
2639 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2640 (save-excursion | |
2641 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2642 (setq ange-ftp-hash-mark-unit (ash ange-ftp-binary-hash-mark-size -4)))))) | |
2643 | |
2644 (defun ange-ftp-set-ascii-mode (host user) | |
2645 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2646 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2647 (if (not (car result)) | |
2648 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2649 (save-excursion | |
2650 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
2651 (setq ange-ftp-hash-mark-unit (ash ange-ftp-ascii-hash-mark-size -4)))))) | |
2652 | |
2653 (defun ange-ftp-cd (host user dir) | |
2654 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2655 (or (car result) | |
2656 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2657 | |
2658 (defun ange-ftp-get-pwd (host user) | |
2659 "Attempts to get the current working directory for the given HOST/USER pair. | |
2660 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2661 and LINE is the relevant success or fail line from the FTP-client." | |
2662 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2663 (line (cdr result)) | |
2664 dir) | |
2665 (if (car result) | |
2666 (ange-ftp-save-match-data | |
2667 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
2668 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2669 (setq dir (substring line | |
2670 (match-beginning 1) | |
2671 (match-end 1)))))) | |
2672 (cons dir line))) | |
2673 | |
2674 ;;; ------------------------------------------------------------ | |
2675 ;;; expand-file-name and friends...which currently don't work | |
2676 ;;; ------------------------------------------------------------ | |
2677 | |
2678 (defun ange-ftp-expand-dir (host user dir) | |
2679 "Return the result of doing a PWD in the current FTP session to machine HOST | |
2680 logged in as user USER and cd'd to directory DIR." | |
2681 (let* ((host-type (ange-ftp-host-type host user)) | |
2682 ;; It is more efficient to call ange-ftp-host-type | |
2683 ;; before binding res, because ange-ftp-host-type sometimes | |
2684 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2685 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2686 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2687 (key (concat host "/" user "/" dir)) |
2688 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2689 (or res | |
2690 (progn | |
2691 (or | |
2692 (string-equal user "anonymous") | |
2693 (string-equal user "ftp") | |
2694 (not (eq host-type 'unix)) | |
2695 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2696 "\\|" | |
2697 ange-ftp-good-msgs)) | |
2698 (result (ange-ftp-send-cmd host user | |
2699 (list 'get dir "/dev/null") | |
2700 (format "expanding %s" dir))) | |
2701 (line (cdr result))) | |
2702 (setq res | |
2703 (if (string-match ange-ftp-expand-dir-regexp line) | |
2704 (substring line | |
2705 (match-beginning 1) | |
2706 (match-end 1)))))) | |
2707 (or res | |
2708 (if (string-equal dir "~") | |
2709 (setq res (car (ange-ftp-get-pwd host user))) | |
2710 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2711 (unwind-protect | |
2712 (and (ange-ftp-cd host user dir) | |
2713 (setq res (car (ange-ftp-get-pwd host user)))) | |
2714 (ange-ftp-cd host user home))))) | |
2715 (if res | |
2716 (let ((ange-ftp-this-user user) | |
2717 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2718 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2719 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2720 (ange-ftp-put-hash-entry |
2721 key res ange-ftp-expand-dir-hashtable))) | |
2722 res)))) | |
2723 | |
2724 (defun ange-ftp-canonize-filename (n) | |
2725 "Take a string and short-circuit //, /. and /.." | |
2726 (if (string-match ".+//" n) ;don't upset Apollo users | |
2727 (setq n (substring n (1- (match-end 0))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2728 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2729 (if parsed |
2730 (let ((host (car parsed)) | |
2731 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2732 (name (nth 2 parsed))) |
1106 | 2733 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2734 ;; 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
|
2735 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2736 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2737 name) |
1106 | 2738 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2739 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2740 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2741 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2742 (let* ((tilda (substring name |
1106 | 2743 (match-beginning 0) |
2744 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2745 (rest (substring name (match-end 0))) |
1106 | 2746 (dir (ange-ftp-expand-dir host user tilda))) |
2747 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2748 (setq name (concat dir rest)) |
1106 | 2749 (error "User \"%s\" is not known" |
2750 (substring tilda 1))))) | |
2751 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2752 ;; relative name. Tack on homedir and re-expand. |
1106 | 2753 (t |
2754 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2755 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2756 (setq name (concat |
1106 | 2757 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2758 name)) |
1106 | 2759 (error "Unable to obtain CWD"))))) |
2760 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2761 (setq name (ange-ftp-real-expand-file-name name)) |
1106 | 2762 |
2763 ;; see if hit real expand-file-name bug... this will probably annoy | |
2764 ;; 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
|
2765 (if (string-match "^//" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2766 (setq name (substring name 1))) |
1106 | 2767 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2768 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2769 (ange-ftp-replace-name-component n name)) |
1106 | 2770 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2771 ;; non-ange-ftp name. Just expand normally. |
1106 | 2772 (if (eq (string-to-char n) ?/) |
2773 (ange-ftp-real-expand-file-name n) | |
2774 (ange-ftp-real-expand-file-name | |
2775 (ange-ftp-real-file-name-nondirectory n) | |
2776 (ange-ftp-real-file-name-directory n)))))) | |
2777 | |
2778 (defun ange-ftp-expand-file-name (name &optional default) | |
2779 "Documented as original." | |
2780 (ange-ftp-save-match-data | |
2781 (if (eq (string-to-char name) ?/) | |
2782 (while (cond ((string-match ".+//" name) ;don't upset Apollo users | |
2783 (setq name (substring name (1- (match-end 0))))) | |
2784 ((string-match "/~" name) | |
2785 (setq name (substring name (1- (match-end 0)))))))) | |
2786 (cond ((eq (string-to-char name) ?~) | |
2787 (ange-ftp-real-expand-file-name name)) | |
2788 ((eq (string-to-char name) ?/) | |
2789 (ange-ftp-canonize-filename name)) | |
2790 ((zerop (length name)) | |
2791 (ange-ftp-canonize-filename (or default default-directory))) | |
2792 ((ange-ftp-canonize-filename | |
2793 (concat (file-name-as-directory (or default default-directory)) | |
2794 name)))))) | |
2795 | |
2796 ;;; These are problems--they are currently not enabled. | |
2797 | |
2798 (defvar ange-ftp-file-name-as-directory-alist nil | |
2799 "Association list of \( TYPE \. FUNC \) pairs, where | |
2800 FUNC converts a filename to a directory name for the operating | |
2801 system TYPE.") | |
2802 | |
2803 (defun ange-ftp-file-name-as-directory (name) | |
2804 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2805 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2806 (if parsed |
2807 (if (string-equal (nth 2 parsed) "") | |
2808 name | |
2809 (funcall (or (cdr (assq | |
2810 (ange-ftp-host-type (car parsed)) | |
2811 ange-ftp-file-name-as-directory-alist)) | |
2812 'ange-ftp-real-file-name-as-directory) | |
2813 name)) | |
2814 (ange-ftp-real-file-name-as-directory name)))) | |
2815 | |
2816 (defun ange-ftp-file-name-directory (name) | |
2817 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2818 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2819 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2820 (let ((filename (nth 2 parsed))) |
1106 | 2821 (if (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2822 (string-match "^~[^/]*$" filename)) |
1106 | 2823 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2824 (ange-ftp-replace-name-component |
1106 | 2825 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2826 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2827 (ange-ftp-real-file-name-directory name)))) |
2828 | |
2829 (defun ange-ftp-file-name-nondirectory (name) | |
2830 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2831 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2832 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2833 (let ((filename (nth 2 parsed))) |
1106 | 2834 (if (ange-ftp-save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2835 (string-match "^~[^/]*$" filename)) |
1106 | 2836 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2837 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2838 (ange-ftp-real-file-name-nondirectory name)))) |
2839 | |
2840 (defun ange-ftp-directory-file-name (dir) | |
2841 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2842 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2843 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2844 (ange-ftp-replace-name-component |
1106 | 2845 dir |
2846 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2847 (ange-ftp-real-directory-file-name dir)))) | |
2848 | |
2849 | |
2850 ;;; Hooks that handle Emacs primitives. | |
2851 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2852 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2853 (defun ange-ftp-binary-file (file) |
2854 (ange-ftp-save-match-data | |
2855 (string-match ange-ftp-binary-file-name-regexp file))) | |
2856 | |
2857 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2858 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2859 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2860 (if parsed |
2861 (let* ((host (nth 0 parsed)) | |
2862 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2863 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2864 (temp (ange-ftp-make-tmp-name host)) |
2865 (binary (ange-ftp-binary-file filename)) | |
2866 (cmd (if append 'append 'put)) | |
2867 (abbr (ange-ftp-abbreviate-filename filename))) | |
2868 (unwind-protect | |
2869 (progn | |
2870 (let ((executing-macro t) | |
2871 (filename (buffer-file-name)) | |
2872 (mod-p (buffer-modified-p))) | |
2873 (unwind-protect | |
2874 (ange-ftp-real-write-region start end temp nil visit) | |
2875 ;; cleanup forms | |
2876 (setq buffer-file-name filename) | |
2877 (set-buffer-modified-p mod-p))) | |
2878 (if binary | |
2879 (ange-ftp-set-binary-mode host user)) | |
2880 | |
2881 ;; tell the process filter what size the transfer will be. | |
2882 (let ((attr (file-attributes temp))) | |
2883 (if attr | |
2884 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2885 | |
2886 ;; put or append the file. | |
2887 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2888 (list cmd temp name) |
1106 | 2889 (format "Writing %s" abbr)))) |
2890 (or (car result) | |
2891 (signal 'ftp-error | |
2892 (list | |
2893 "Opening output file" | |
2894 (format "FTP Error: \"%s\"" (cdr result)) | |
2895 filename))))) | |
2896 (ange-ftp-del-tmp-name temp) | |
2897 (if binary | |
2898 (ange-ftp-set-ascii-mode host user))) | |
2899 (if (eq visit t) | |
2900 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2901 (set-visited-file-modtime '(0 0)) |
1106 | 2902 (ange-ftp-set-buffer-mode) |
2903 (setq buffer-file-name filename) | |
2904 (set-buffer-modified-p nil))) | |
2905 (ange-ftp-message "Wrote %s" abbr) | |
2906 (ange-ftp-add-file-entry filename)) | |
2907 (ange-ftp-real-write-region start end filename append visit)))) | |
2908 | |
3831
9d48091cd976
(ange-ftp-insert-file-contents): Handle extra args BEG, END.
Richard M. Stallman <rms@gnu.org>
parents:
3620
diff
changeset
|
2909 (defun ange-ftp-insert-file-contents (filename &optional visit beg end) |
1106 | 2910 (barf-if-buffer-read-only) |
2911 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2912 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2913 (if parsed |
2914 (progn | |
2915 (if visit | |
2916 (setq buffer-file-name filename)) | |
2917 (if (or (file-exists-p filename) | |
2918 (progn | |
2919 (setq ange-ftp-ls-cache-file nil) | |
2920 (ange-ftp-del-hash-entry (file-name-directory filename) | |
2921 ange-ftp-files-hashtable) | |
2922 (file-exists-p filename))) | |
2923 (let* ((host (nth 0 parsed)) | |
2924 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2925 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2926 (temp (ange-ftp-make-tmp-name host)) |
2927 (binary (ange-ftp-binary-file filename)) | |
2928 (abbr (ange-ftp-abbreviate-filename filename)) | |
2929 size) | |
2930 (unwind-protect | |
2931 (progn | |
2932 (if binary | |
2933 (ange-ftp-set-binary-mode host user)) | |
2934 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2935 (list 'get name temp) |
1106 | 2936 (format "Retrieving %s" abbr)))) |
2937 (or (car result) | |
2938 (signal 'ftp-error | |
2939 (list | |
2940 "Opening input file" | |
2941 (format "FTP Error: \"%s\"" (cdr result)) | |
2942 filename)))) | |
2943 (if (or (ange-ftp-real-file-readable-p temp) | |
2944 (sleep-for ange-ftp-retry-time) | |
2945 ;; Wait for file to hopefully appear. | |
2946 (ange-ftp-real-file-readable-p temp)) | |
2947 (setq | |
2948 size | |
2949 (nth 1 (ange-ftp-real-insert-file-contents temp | |
3831
9d48091cd976
(ange-ftp-insert-file-contents): Handle extra args BEG, END.
Richard M. Stallman <rms@gnu.org>
parents:
3620
diff
changeset
|
2950 visit |
9d48091cd976
(ange-ftp-insert-file-contents): Handle extra args BEG, END.
Richard M. Stallman <rms@gnu.org>
parents:
3620
diff
changeset
|
2951 beg end))) |
1106 | 2952 (signal 'ftp-error |
2953 (list | |
2954 "Opening input file:" | |
2955 (format | |
2956 "FTP Error: %s not arrived or readable" | |
2957 filename))))) | |
2958 (if binary | |
2959 (ange-ftp-set-ascii-mode host user)) | |
2960 (ange-ftp-del-tmp-name temp)) | |
2961 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2962 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2963 (set-visited-file-modtime '(0 0)) |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2964 (setq buffer-file-name filename))) |
1106 | 2965 (list filename size)) |
2966 (signal 'file-error | |
2967 (list | |
2968 "Opening input file" | |
2969 filename)))) | |
3831
9d48091cd976
(ange-ftp-insert-file-contents): Handle extra args BEG, END.
Richard M. Stallman <rms@gnu.org>
parents:
3620
diff
changeset
|
2970 (ange-ftp-real-insert-file-contents filename visit beg end)))) |
1106 | 2971 |
2972 (defun ange-ftp-expand-symlink (file dir) | |
2973 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2974 (ange-ftp-replace-name-component dir file) |
1106 | 2975 (expand-file-name file dir))) |
2976 | |
2977 (defun ange-ftp-file-symlink-p (file) | |
2978 ;; call ange-ftp-expand-file-name rather than the normal | |
2979 ;; expand-file-name to stop loops when using a package that | |
2980 ;; redefines both file-symlink-p and expand-file-name. | |
2981 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2982 (if (ange-ftp-ftp-name file) |
1106 | 2983 (let ((file-ent |
2984 (ange-ftp-get-hash-entry | |
2985 (ange-ftp-get-file-part file) | |
2986 (ange-ftp-get-files (file-name-directory file))))) | |
2987 (if (stringp file-ent) | |
2988 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2989 (ange-ftp-replace-name-component |
1106 | 2990 (file-name-directory file) file-ent) |
2991 file-ent))) | |
2992 (ange-ftp-real-file-symlink-p file))) | |
2993 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2994 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2995 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2996 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2997 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2998 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 2999 (if (stringp file-ent) |
3000 (file-exists-p | |
3001 (ange-ftp-expand-symlink file-ent | |
3002 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3003 (directory-file-name name)))) |
1106 | 3004 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3005 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3006 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3007 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3008 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3009 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3010 ;; We do a file-name-as-directory on name here because some |
1106 | 3011 ;; machines (VMS) use a .DIR to indicate the filename associated |
3012 ;; with a directory. This needs to be canonicalized. | |
3013 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3014 (ange-ftp-file-name-as-directory name)))) |
1106 | 3015 (if (stringp file-ent) |
3016 (file-directory-p | |
3017 (ange-ftp-expand-symlink file-ent | |
3018 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3019 (directory-file-name name)))) |
1106 | 3020 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3021 (ange-ftp-real-file-directory-p name))) |
1106 | 3022 |
3023 (defun ange-ftp-directory-files (directory &optional full match | |
3024 &rest v19-args) | |
3025 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3026 (if (ange-ftp-ftp-name directory) |
1106 | 3027 (progn |
3028 (ange-ftp-barf-if-not-directory directory) | |
3029 (let ((tail (ange-ftp-hash-table-keys | |
3030 (ange-ftp-get-files directory))) | |
3031 files f) | |
3032 (setq directory (file-name-as-directory directory)) | |
3033 (ange-ftp-save-match-data | |
3034 (while tail | |
3035 (setq f (car tail) | |
3036 tail (cdr tail)) | |
3037 (if (or (not match) (string-match match f)) | |
3038 (setq files | |
3039 (cons (if full (concat directory f) f) files))))) | |
3040 (nreverse files))) | |
3041 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3042 | |
3043 (defun ange-ftp-file-attributes (file) | |
3044 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3045 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3046 (if parsed |
3047 (let ((part (ange-ftp-get-file-part file)) | |
3048 (files (ange-ftp-get-files (file-name-directory file)))) | |
3049 (if (ange-ftp-hash-entry-exists-p part files) | |
3050 (let ((host (nth 0 parsed)) | |
3051 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3052 (name (nth 2 parsed)) |
1106 | 3053 (dirp (ange-ftp-get-hash-entry part files))) |
3054 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3055 (ange-ftp-expand-symlink dirp | |
3056 (file-name-directory file)) | |
3057 dirp) ;0 file type | |
3058 -1 ;1 link count | |
3059 -1 ;2 uid | |
3060 -1 ;3 gid | |
3061 '(0 0) ;4 atime | |
3062 '(0 0) ;5 mtime | |
3063 '(0 0) ;6 ctime | |
3064 -1 ;7 size | |
3065 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3066 "?????????") ;8 mode | |
3067 nil ;9 gid weird | |
3068 ;; Hack to give remote files a unique "inode number". | |
3069 ;; It's actually the sum of the characters in its name. | |
3070 (apply '+ (nconc (mapcar 'identity host) | |
3071 (mapcar 'identity user) | |
3072 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3073 (directory-file-name name)))) |
1106 | 3074 -1 ;11 device number [v19 only] |
3075 )))) | |
3076 (ange-ftp-real-file-attributes file)))) | |
3077 | |
3078 (defun ange-ftp-file-writable-p (file) | |
3079 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3080 (if (ange-ftp-ftp-name file) |
1106 | 3081 (or (file-exists-p file) ;guess here for speed |
3082 (file-directory-p (file-name-directory file))) | |
3083 (ange-ftp-real-file-writable-p file))) | |
3084 | |
3085 (defun ange-ftp-file-readable-p (file) | |
3086 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3087 (if (ange-ftp-ftp-name file) |
1106 | 3088 (file-exists-p file) |
3089 (ange-ftp-real-file-readable-p file))) | |
3090 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3091 (defun ange-ftp-file-executable-p (file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3092 (setq file (expand-file-name file)) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3093 (if (ange-ftp-ftp-name file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3094 (file-exists-p file) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3095 (ange-ftp-real-file-executable-p file))) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3096 |
1106 | 3097 (defun ange-ftp-delete-file (file) |
3098 (interactive "fDelete file: ") | |
3099 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3100 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3101 (if parsed |
3102 (let* ((host (nth 0 parsed)) | |
3103 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3104 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3105 (abbr (ange-ftp-abbreviate-filename file)) |
3106 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3107 (list 'delete name) |
1106 | 3108 (format "Deleting %s" abbr)))) |
3109 (or (car result) | |
3110 (signal 'ftp-error | |
3111 (list | |
3112 "Removing old name" | |
3113 (format "FTP Error: \"%s\"" (cdr result)) | |
3114 file))) | |
3115 (ange-ftp-delete-file-entry file)) | |
3116 (ange-ftp-real-delete-file file)))) | |
3117 | |
3118 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3119 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3120 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3121 t |
3122 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3123 | |
3124 ;;;; ------------------------------------------------------------ | |
3125 ;;;; File copying support... totally re-written 6/24/92. | |
3126 ;;;; ------------------------------------------------------------ | |
3127 | |
3128 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3129 (if (file-exists-p absname) | |
3130 (if (not interactive) | |
3131 (signal 'file-already-exists (list absname)) | |
3132 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3133 absname querystring))) | |
3134 (signal 'file-already-exists (list absname)))))) | |
3135 | |
3136 ;; async local copy commented out for now since I don't seem to get | |
3137 ;; the process sentinel called for some processes. | |
3138 ;; | |
3139 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3140 ;; keep-date cont) | |
3141 ;; "Kludge to copy a local file and call a continuation when the copy | |
3142 ;; finishes." | |
3143 ;; ;; check to see if we can overwrite | |
3144 ;; (if (or (not ok-if-already-exists) | |
3145 ;; (numberp ok-if-already-exists)) | |
3146 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3147 ;; (numberp ok-if-already-exists))) | |
3148 ;; (let ((proc (start-process " *copy*" | |
3149 ;; (generate-new-buffer "*copy*") | |
3150 ;; "cp" | |
3151 ;; filename | |
3152 ;; newname)) | |
3153 ;; res) | |
3154 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3155 ;; (process-kill-without-query proc) | |
3156 ;; (save-excursion | |
3157 ;; (set-buffer (process-buffer proc)) | |
3158 ;; (make-variable-buffer-local 'copy-cont) | |
3159 ;; (setq copy-cont cont)))) | |
3160 ;; | |
3161 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3162 ;; (save-excursion | |
3163 ;; (set-buffer (process-buffer proc)) | |
3164 ;; (let ((cont copy-cont) | |
3165 ;; (result (buffer-string))) | |
3166 ;; (unwind-protect | |
3167 ;; (if (and (string-equal status "finished\n") | |
3168 ;; (zerop (length result))) | |
3169 ;; (ange-ftp-call-cont cont t nil) | |
3170 ;; (ange-ftp-call-cont cont | |
3171 ;; nil | |
3172 ;; (if (zerop (length result)) | |
3173 ;; (substring status 0 -1) | |
3174 ;; (substring result 0 -1)))) | |
3175 ;; (kill-buffer (current-buffer)))))) | |
3176 | |
3177 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
3178 ;; asynchronously if asked nicely. |
1106 | 3179 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3180 keep-date &optional msg cont nowait) | |
3181 (setq filename (expand-file-name filename) | |
3182 newname (expand-file-name newname)) | |
3183 | |
3184 ;; canonicalize newname if a directory. | |
3185 (if (file-directory-p newname) | |
3186 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3187 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3188 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3189 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3190 |
3191 ;; local file to local file copy? | |
3192 (if (and (not f-parsed) (not t-parsed)) | |
3193 (progn | |
3194 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3195 keep-date) | |
3196 (if cont | |
3197 (ange-ftp-call-cont cont t "Copied locally"))) | |
3198 ;; one or both files are remote. | |
3199 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3200 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3201 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3202 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3203 (t-host (and t-parsed (nth 0 t-parsed))) | |
3204 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3205 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3206 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3207 (binary (or (ange-ftp-binary-file filename) | |
3208 (ange-ftp-binary-file newname))) | |
3209 temp1 | |
3210 temp2) | |
3211 | |
3212 ;; check to see if we can overwrite | |
3213 (if (or (not ok-if-already-exists) | |
3214 (numberp ok-if-already-exists)) | |
3215 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3216 (numberp ok-if-already-exists))) | |
3217 | |
3218 ;; do the copying. | |
3219 (if f-parsed | |
3220 | |
3221 ;; filename was remote. | |
3222 (progn | |
3223 (if (or (ange-ftp-use-gateway-p f-host) | |
3224 t-parsed) | |
3225 ;; have to use intermediate file if we are getting via | |
3226 ;; gateway machine or we are doing a remote to remote copy. | |
3227 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3228 | |
3229 (if binary | |
3230 (ange-ftp-set-binary-mode f-host f-user)) | |
3231 | |
3232 (ange-ftp-send-cmd | |
3233 f-host | |
3234 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3235 (list 'get f-name (or temp1 newname)) |
1106 | 3236 (or msg |
3237 (if (and temp1 t-parsed) | |
3238 (format "Getting %s" f-abbr) | |
3239 (format "Copying %s to %s" f-abbr t-abbr))) | |
3240 (list (function ange-ftp-cf1) | |
3241 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3242 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3243 t-parsed t-host t-user t-name t-abbr |
1106 | 3244 temp1 temp2 cont nowait) |
3245 nowait)) | |
3246 | |
3247 ;; filename wasn't remote. newname must be remote. call the | |
3248 ;; function which does the remainder of the copying work. | |
3249 (ange-ftp-cf1 t nil | |
3250 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3251 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3252 t-parsed t-host t-user t-name t-abbr |
1106 | 3253 nil nil cont nowait)))))) |
3254 | |
3255 ;; next part of copying routine. | |
3256 (defun ange-ftp-cf1 (result line | |
3257 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3258 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3259 t-parsed t-host t-user t-name t-abbr |
1106 | 3260 temp1 temp2 cont nowait) |
3261 (if line | |
3262 ;; filename must have been remote, and we must have just done a GET. | |
3263 (unwind-protect | |
3264 (or result | |
3265 ;; GET failed for some reason. Clean up and get out. | |
3266 (progn | |
3267 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3268 (or cont | |
3269 (signal 'ftp-error (list "Opening input file" | |
3270 (format "FTP Error: \"%s\"" line) | |
3271 filename))))) | |
3272 ;; cleanup | |
3273 (if binary | |
3274 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3275 | |
3276 (if result | |
3277 ;; We now have to copy either temp1 or filename to newname. | |
3278 (if t-parsed | |
3279 | |
3280 ;; newname was remote. | |
3281 (progn | |
3282 (if (ange-ftp-use-gateway-p t-host) | |
3283 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3284 | |
3285 ;; make sure data is moved into the right place for the | |
3286 ;; outgoing transfer. gateway temporary files complicate | |
3287 ;; things nicely. | |
3288 (if temp1 | |
3289 (if temp2 | |
3290 (if (string-equal temp1 temp2) | |
3291 (setq temp1 nil) | |
3292 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3293 (setq temp2 temp1 temp1 nil)) | |
3294 (if temp2 | |
3295 (ange-ftp-real-copy-file filename temp2 t))) | |
3296 | |
3297 (if binary | |
3298 (ange-ftp-set-binary-mode t-host t-user)) | |
3299 | |
3300 ;; tell the process filter what size the file is. | |
3301 (let ((attr (file-attributes (or temp2 filename)))) | |
3302 (if attr | |
3303 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3304 | |
3305 (ange-ftp-send-cmd | |
3306 t-host | |
3307 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3308 (list 'put (or temp2 filename) t-name) |
1106 | 3309 (or msg |
3310 (if (and temp2 f-parsed) | |
3311 (format "Putting %s" newname) | |
3312 (format "Copying %s to %s" f-abbr t-abbr))) | |
3313 (list (function ange-ftp-cf2) | |
3314 newname t-host t-user binary temp1 temp2 cont) | |
3315 nowait)) | |
3316 | |
3317 ;; newname wasn't remote. | |
3318 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3319 | |
3320 ;; first copy failed, tell caller | |
3321 (ange-ftp-call-cont cont result line))) | |
3322 | |
3323 ;; last part of copying routine. | |
3324 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3325 (unwind-protect | |
3326 (if line | |
3327 ;; result from doing a local to remote copy. | |
3328 (unwind-protect | |
3329 (progn | |
3330 (or result | |
3331 (or cont | |
3332 (signal 'ftp-error | |
3333 (list "Opening output file" | |
3334 (format "FTP Error: \"%s\"" line) | |
3335 newname)))) | |
3336 | |
3337 (ange-ftp-add-file-entry newname)) | |
3338 | |
3339 ;; cleanup. | |
3340 (if binary | |
3341 (ange-ftp-set-ascii-mode t-host t-user))) | |
3342 | |
3343 ;; newname was local. | |
3344 (if temp1 | |
3345 (ange-ftp-real-copy-file temp1 newname t))) | |
3346 | |
3347 ;; clean up | |
3348 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3349 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3350 (ange-ftp-call-cont cont result line))) | |
3351 | |
3352 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3353 keep-date) | |
3354 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3355 (ange-ftp-copy-file-internal filename | |
3356 newname | |
3357 ok-if-already-exists | |
3358 keep-date | |
3359 nil | |
3360 nil | |
3361 (interactive-p))) | |
3362 | |
3363 ;;;; ------------------------------------------------------------ | |
3364 ;;;; File renaming support. | |
3365 ;;;; ------------------------------------------------------------ | |
3366 | |
3367 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed | |
3368 binary) | |
3369 "Rename remote file FILE to remote file NEWNAME." | |
3370 (let ((f-host (nth 0 f-parsed)) | |
3371 (f-user (nth 1 f-parsed)) | |
3372 (t-host (nth 0 t-parsed)) | |
3373 (t-user (nth 1 t-parsed))) | |
3374 (if (and (string-equal f-host t-host) | |
3375 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3376 (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
|
3377 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3378 (cmd (list 'rename f-name t-name)) |
1106 | 3379 (fabbr (ange-ftp-abbreviate-filename filename)) |
3380 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3381 (result (ange-ftp-send-cmd f-host f-user cmd | |
3382 (format "Renaming %s to %s" | |
3383 fabbr | |
3384 nabbr)))) | |
3385 (or (car result) | |
3386 (signal 'ftp-error | |
3387 (list | |
3388 "Renaming" | |
3389 (format "FTP Error: \"%s\"" (cdr result)) | |
3390 filename | |
3391 newname))) | |
3392 (ange-ftp-add-file-entry newname) | |
3393 (ange-ftp-delete-file-entry filename)) | |
3394 (ange-ftp-copy-file-internal filename newname t nil) | |
3395 (delete-file filename)))) | |
3396 | |
3397 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3398 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3399 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3400 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3401 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3402 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3403 (let (ange-ftp-process-verbose) | |
3404 (delete-file filename)))) | |
3405 | |
3406 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3407 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3408 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3409 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3410 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3411 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3412 (let (ange-ftp-process-verbose) | |
3413 (delete-file filename)))) | |
3414 | |
3415 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3416 (interactive "fRename file: \nFRename %s to file: \np") | |
3417 (setq filename (expand-file-name filename)) | |
3418 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3419 (let* ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3420 (t-parsed (ange-ftp-ftp-name newname)) |
1106 | 3421 (binary (if (or f-parsed t-parsed) (ange-ftp-binary-file filename)))) |
3422 (if (and (or f-parsed t-parsed) | |
3423 (or (not ok-if-already-exists) | |
3424 (numberp ok-if-already-exists))) | |
3425 (ange-ftp-barf-or-query-if-file-exists | |
3426 newname | |
3427 "rename to it" | |
3428 (numberp ok-if-already-exists))) | |
3429 (if f-parsed | |
3430 (if t-parsed | |
3431 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3432 t-parsed binary) | |
3433 (ange-ftp-rename-remote-to-local filename newname)) | |
3434 (if t-parsed | |
3435 (ange-ftp-rename-local-to-remote filename newname) | |
3436 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3437 | |
3438 ;;;; ------------------------------------------------------------ | |
3439 ;;;; File name completion support. | |
3440 ;;;; ------------------------------------------------------------ | |
3441 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3442 ;; 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
|
3443 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3444 (defun ange-ftp-file-entry-active-p (sym) |
3445 (let ((val (get sym 'val))) | |
3446 (or (not (stringp val)) | |
3447 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3448 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3449 ;; 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
|
3450 ;; 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
|
3451 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3452 ;; 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
|
3453 ;; are used as free variables. |
1106 | 3454 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3455 (let ((val (get sym 'val)) | |
3456 (symname (symbol-name sym))) | |
3457 (if (stringp val) | |
3458 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3459 (or (file-directory-p file) | |
3460 (and (file-exists-p file) | |
3461 (not (string-match ange-ftp-completion-ignored-pattern | |
3462 symname))))) | |
3463 (or val ; is a directory name | |
3464 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3465 | |
3466 (defun ange-ftp-file-name-all-completions (file dir) | |
3467 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3468 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3469 (progn |
3470 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3471 (setq ange-ftp-this-dir | |
3472 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3473 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3474 (completions | |
3475 (all-completions file tbl | |
3476 (function ange-ftp-file-entry-active-p)))) | |
3477 | |
3478 ;; see whether each matching file is a directory or not... | |
3479 (mapcar | |
3480 (function | |
3481 (lambda (file) | |
3482 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3483 (if (and ent | |
3484 (or (not (stringp ent)) | |
3485 (file-directory-p | |
3486 (ange-ftp-expand-symlink ent | |
3487 ange-ftp-this-dir)))) | |
3488 (concat file "/") | |
3489 file)))) | |
3490 completions))) | |
3491 | |
3492 (if (string-equal "/" ange-ftp-this-dir) | |
3493 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3494 (ange-ftp-real-file-name-all-completions file | |
3495 ange-ftp-this-dir)) | |
3496 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3497 | |
3498 (defun ange-ftp-file-name-completion (file dir) | |
3499 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3500 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3501 (progn |
3502 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3503 (if (equal file "") | |
3504 "" | |
3505 (setq ange-ftp-this-dir | |
3506 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3507 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3508 (ange-ftp-completion-ignored-pattern | |
3509 (mapconcat (function | |
3510 (lambda (s) (if (stringp s) | |
3511 (concat (regexp-quote s) "$") | |
3512 "/"))) ; / never in filename | |
3513 completion-ignored-extensions | |
3514 "\\|"))) | |
3515 (ange-ftp-save-match-data | |
3516 (or (ange-ftp-file-name-completion-1 | |
3517 file tbl ange-ftp-this-dir | |
3518 (function ange-ftp-file-entry-not-ignored-p)) | |
3519 (ange-ftp-file-name-completion-1 | |
3520 file tbl ange-ftp-this-dir | |
3521 (function ange-ftp-file-entry-active-p))))))) | |
3522 | |
3523 (if (string-equal "/" ange-ftp-this-dir) | |
3524 (try-completion | |
3525 file | |
3526 (nconc (ange-ftp-generate-root-prefixes) | |
3527 (mapcar 'list | |
3528 (ange-ftp-real-file-name-all-completions file "/")))) | |
3529 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3530 | |
3531 | |
3532 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3533 (let ((bestmatch (try-completion file tbl predicate))) | |
3534 (if bestmatch | |
3535 (if (eq bestmatch t) | |
3536 (if (file-directory-p (expand-file-name file dir)) | |
3537 (concat file "/") | |
3538 t) | |
3539 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3540 (file-directory-p | |
3541 (expand-file-name bestmatch dir))) | |
3542 (concat bestmatch "/") | |
3543 bestmatch))))) | |
3544 | |
3545 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3546 ;; ange-ftp's cache whilst doing filename completion. | |
3547 ;; | |
3548 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3549 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3550 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3551 ;; 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
|
3552 ;; to the directory part of the contents of the current buffer. |
1106 | 3553 (defun ange-ftp-re-read-dir (&optional dir) |
3554 (interactive) | |
3555 (if dir | |
3556 (setq dir (expand-file-name dir)) | |
3557 (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
|
3558 (if (ange-ftp-ftp-name dir) |
1106 | 3559 (progn |
3560 (setq ange-ftp-ls-cache-file nil) | |
3561 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3562 (ange-ftp-get-files dir t)))) | |
3563 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3564 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3565 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3566 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3567 (let ((parent (file-name-directory (directory-file-name dir)))) |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3568 (or (file-exists-p parent) |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3569 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3570 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3571 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3572 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3573 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3574 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3575 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3576 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3577 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3578 ;; 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
|
3579 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3580 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3581 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3582 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3583 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3584 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3585 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3586 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3587 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3588 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3589 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3590 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3591 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3592 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3593 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3594 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3595 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3596 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3597 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3598 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3599 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3600 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3601 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3602 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3603 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3604 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3605 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3606 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3607 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3608 ;; 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
|
3609 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3610 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3611 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3612 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3613 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3614 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3615 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3616 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3617 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3618 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3619 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3620 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3621 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3622 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3623 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3624 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3625 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3626 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3627 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3628 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3629 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3630 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3631 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3632 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3633 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3634 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3635 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3636 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3637 (if pa1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3638 (let* ((tmp1 (ange-ftp-make-tmp-name (car pa1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3639 (bin1 (ange-ftp-binary-file fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3640 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3641 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3642 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3643 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3644 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3645 (if (ange-ftp-ftp-name file) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3646 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3647 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3648 (list (concat file ".elc") (concat file ".el") file))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3649 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3650 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3651 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3652 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3653 (ftp-error nil))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3654 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3655 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3656 (funcall 'load copy noerror nomessage nosuffix) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3657 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3658 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3659 (signal 'file-error (list "Cannot open load file" file))))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3660 (ange-ftp-real-load file noerror nomessage nosuffix))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3661 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3662 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3663 (defun ange-ftp-unhandled-file-name-directory (filename) |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3664 (file-name-directory ange-ftp-tmp-name-template)) |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3665 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3666 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3667 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3668 ;; 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
|
3669 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3670 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3672 "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
|
3673 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3674 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
|
3675 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 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
|
3677 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
|
3678 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
|
3679 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3685 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3686 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3687 (let* ((decision |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3688 (ange-ftp-save-match-data (funcall conversion-func name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3695 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 ;; 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
|
3698 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3700 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3702 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3703 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3704 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 shell-file-name |
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 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3716 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3717 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3718 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3720 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3727 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3728 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3729 ;; 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
|
3730 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3731 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3732 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3733 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3734 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3735 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3736 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3737 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3738 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3739 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3740 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3741 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3742 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3743 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3744 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3745 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3746 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3747 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3748 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3749 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3750 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3751 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3752 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3753 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3754 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3755 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3756 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3757 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3758 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3759 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3760 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3761 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3762 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3763 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3764 |
1106 | 3765 ;;; Define the handler for special file names |
3766 ;;; that causes ange-ftp to be invoked. | |
3767 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3768 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3769 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3770 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3771 (if fn (apply fn args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3772 (let (file-name-handler-alist) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3773 (apply operation args))))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3774 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3775 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3776 ;;; This regexp takes care of real ange-ftp file names (with a slash |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3777 ;;; and colon). |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3778 ;;;###autoload |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3779 (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3780 (setq file-name-handler-alist |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3781 (cons '("^/[^/:]*[^/:]:" . ange-ftp-hook-function) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3782 file-name-handler-alist))) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3783 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3784 ;;; This regexp recognizes and absolute filenames with only one component, |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3785 ;;; for the sake of hostname completion. |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3786 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3787 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3788 (setq file-name-handler-alist |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3789 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3790 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3791 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3792 ;;; 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
|
3793 ;;; 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
|
3794 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3795 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3796 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3797 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3798 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3799 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3800 ;;; Now say where to find the handlers for particular operations. |
1106 | 3801 |
3802 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3803 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3804 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3805 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3806 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3807 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3808 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3809 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3810 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3811 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3812 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3813 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3814 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3815 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3816 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3817 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3818 (put 'verify-visited-file-modtime 'ange-ftp | |
3819 'ange-ftp-verify-visited-file-modtime) | |
3820 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3821 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3822 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3823 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3824 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3825 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3826 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3827 (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
|
3828 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3829 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3830 (put 'unhandled-file-name-directory 'ange-ftp |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3831 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3832 (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
|
3833 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3834 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3835 (put 'load 'ange-ftp 'ange-ftp-load) |
1454
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3836 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3837 ;; Turn off truename processing to save time. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3838 ;; Treat each name as its own truename. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3839 (put 'file-truename 'ange-ftp 'identity) |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3840 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3841 ;; Turn off RCS/SCCS processing to save time. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3842 ;; This returns nil for any file name as argument. |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3843 (put 'vc-registered 'ange-ftp 'null) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3844 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3845 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3846 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3847 |
1106 | 3848 (defun ange-ftp-real-file-name-directory (&rest args) |
3849 (let (file-name-handler-alist) | |
3850 (apply 'file-name-directory args))) | |
3851 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
3852 (let (file-name-handler-alist) | |
3853 (apply 'file-name-nondirectory args))) | |
3854 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
3855 (let (file-name-handler-alist) | |
3856 (apply 'file-name-as-directory args))) | |
3857 (defun ange-ftp-real-directory-file-name (&rest args) | |
3858 (let (file-name-handler-alist) | |
3859 (apply 'directory-file-name args))) | |
3860 (defun ange-ftp-real-expand-file-name (&rest args) | |
3861 (let (file-name-handler-alist) | |
3862 (apply 'expand-file-name args))) | |
3863 (defun ange-ftp-real-make-directory (&rest args) | |
3864 (let (file-name-handler-alist) | |
3865 (apply 'make-directory args))) | |
3866 (defun ange-ftp-real-delete-directory (&rest args) | |
3867 (let (file-name-handler-alist) | |
3868 (apply 'delete-directory args))) | |
3869 (defun ange-ftp-real-insert-file-contents (&rest args) | |
3870 (let (file-name-handler-alist) | |
3871 (apply 'insert-file-contents args))) | |
3872 (defun ange-ftp-real-directory-files (&rest args) | |
3873 (let (file-name-handler-alist) | |
3874 (apply 'directory-files args))) | |
3875 (defun ange-ftp-real-file-directory-p (&rest args) | |
3876 (let (file-name-handler-alist) | |
3877 (apply 'file-directory-p args))) | |
3878 (defun ange-ftp-real-file-writable-p (&rest args) | |
3879 (let (file-name-handler-alist) | |
3880 (apply 'file-writable-p args))) | |
3881 (defun ange-ftp-real-file-readable-p (&rest args) | |
3882 (let (file-name-handler-alist) | |
3883 (apply 'file-readable-p args))) | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3884 (defun ange-ftp-real-file-executable-p (&rest args) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3885 (let (file-name-handler-alist) |
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3886 (apply 'file-executable-p args))) |
1106 | 3887 (defun ange-ftp-real-file-symlink-p (&rest args) |
3888 (let (file-name-handler-alist) | |
3889 (apply 'file-symlink-p args))) | |
3890 (defun ange-ftp-real-delete-file (&rest args) | |
3891 (let (file-name-handler-alist) | |
3892 (apply 'delete-file args))) | |
3893 (defun ange-ftp-real-read-file-name-internal (&rest args) | |
3894 (let (file-name-handler-alist) | |
3895 (apply 'read-file-name-internal args))) | |
3896 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
3897 (let (file-name-handler-alist) | |
3898 (apply 'verify-visited-file-modtime args))) | |
3899 (defun ange-ftp-real-file-exists-p (&rest args) | |
3900 (let (file-name-handler-alist) | |
3901 (apply 'file-exists-p args))) | |
3902 (defun ange-ftp-real-write-region (&rest args) | |
3903 (let (file-name-handler-alist) | |
3904 (apply 'write-region args))) | |
3905 (defun ange-ftp-real-backup-buffer (&rest args) | |
3906 (let (file-name-handler-alist) | |
3907 (apply 'backup-buffer args))) | |
3908 (defun ange-ftp-real-copy-file (&rest args) | |
3909 (let (file-name-handler-alist) | |
3910 (apply 'copy-file args))) | |
3911 (defun ange-ftp-real-rename-file (&rest args) | |
3912 (let (file-name-handler-alist) | |
3913 (apply 'rename-file args))) | |
3914 (defun ange-ftp-real-file-attributes (&rest args) | |
3915 (let (file-name-handler-alist) | |
3916 (apply 'file-attributes args))) | |
3917 (defun ange-ftp-real-file-name-all-completions (&rest args) | |
3918 (let (file-name-handler-alist) | |
3919 (apply 'file-name-all-completions args))) | |
3920 (defun ange-ftp-real-file-name-completion (&rest args) | |
3921 (let (file-name-handler-alist) | |
3922 (apply 'file-name-completion args))) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3923 (defun ange-ftp-real-insert-directory (&rest args) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3924 (let (file-name-handler-alist) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3925 (apply 'insert-directory args))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3926 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3927 (let (file-name-handler-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3928 (apply 'file-name-sans-versions args))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3929 (defun ange-ftp-real-shell-command (&rest args) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3930 (let (file-name-handler-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3931 (apply 'shell-command args))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3932 (defun ange-ftp-real-load (&rest args) |
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3933 (let (file-name-handler-alist) |
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3934 (apply 'load args))) |
1106 | 3935 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3936 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3937 ;; 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
|
3938 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3939 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3940 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3941 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3942 ;; 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
|
3943 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3944 ;; 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
|
3945 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3946 ;; So the format conversion should be all that is needed. |
1106 | 3947 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3948 (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
|
3949 (let ((short (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3950 (parsed (ange-ftp-ftp-name file))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3951 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3952 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3953 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3954 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3955 (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
|
3956 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3957 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 3958 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3959 (defun ange-ftp-dired-uncache (dir) |
4887
78c004148b7c
(ange-ftp-dired-uncache): Fix parens so that `(setq ...' is a result
Brian Fox <bfox@gnu.org>
parents:
4674
diff
changeset
|
3960 (if (ange-ftp-ftp-name (expand-file-name dir)) |
78c004148b7c
(ange-ftp-dired-uncache): Fix parens so that `(setq ...' is a result
Brian Fox <bfox@gnu.org>
parents:
4674
diff
changeset
|
3961 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3962 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3963 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3964 "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
|
3965 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3966 (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
|
3967 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3968 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3969 host-type func) |
1106 | 3970 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3971 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3972 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3973 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3974 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3975 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 3976 |
3977 (defvar ange-ftp-remote-shell-file-name | |
3978 (if (memq system-type '(hpux usg-unix-v)) ; hope that's right | |
3979 "remsh" | |
3980 "rsh") | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3981 "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
|
3982 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3983 ;;; 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
|
3984 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3985 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3986 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 3987 (host (nth 0 parsed)) |
3988 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3989 (name (nth 2 parsed))) |
1106 | 3990 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3991 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3992 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3993 (setq command (concat "cd " name "; " command))) |
1106 | 3994 (setq command |
3995 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
3996 ; on a hp-ux machine I tried | |
3997 ange-ftp-remote-shell-file-name host command)) | |
3998 (ange-ftp-message "Remote command '%s' ..." command) | |
3999 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4000 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4001 ;; 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
|
4002 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4003 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4004 ;;; Thisis not hooked up yet. |
1106 | 4005 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4006 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4007 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4008 (if (ange-ftp-ftp-name default-directory) |
1106 | 4009 ;; Can't use ange-ftp-dired-host-type here because the current |
4010 ;; buffer is *dired-check-process output* | |
4011 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 (cond ((equal "chmod" program) |
1106 | 4013 (ange-ftp-call-chmod arguments)) |
4014 ;; ((equal "chgrp" program)) | |
4015 ;; ((equal dired-chown-program program)) | |
4016 (t (error "Unknown remote command: %s" program))) | |
4017 (ftp-error (insert (format "%s: %s, %s\n" | |
4018 (nth 1 oops) | |
4019 (nth 2 oops) | |
4020 (nth 3 oops)))) | |
4021 (error (insert (format "%s\n" (nth 1 oops))))) | |
4022 (apply 'call-process program nil (not discard) nil arguments))) | |
4023 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 ;;; This currently does not work; it is never called. |
1106 | 4025 (defun ange-ftp-call-chmod (args) |
4026 (if (< (length args) 2) | |
4027 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4028 (let ((mode (car args))) | |
4029 (mapcar | |
4030 (function | |
4031 (lambda (file) | |
4032 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4033 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4034 (if parsed |
4035 (let* ((host (nth 0 parsed)) | |
4036 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4038 (abbr (ange-ftp-abbreviate-filename file)) |
4039 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4040 (list 'chmod mode name) |
1106 | 4041 (format "doing chmod %s" |
4042 abbr)))) | |
4043 (or (car result) | |
4044 (ange-ftp-error host user | |
4045 (format "chmod: %s: \"%s\"" | |
4046 file | |
4047 (cdr result))))))))) | |
4048 (cdr args))) | |
4049 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
4050 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4051 ;;; 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
|
4052 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4053 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4054 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4055 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4058 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4059 ;;(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
|
4060 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4061 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4062 ;; (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
|
4063 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4064 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4065 ;;(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
|
4066 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4067 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4068 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4069 ;; ;; 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
|
4070 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4071 ;; (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
|
4072 ;; (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
|
4073 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4074 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4075 ;;(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
|
4076 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4077 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4078 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4079 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4080 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4081 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4082 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4083 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4084 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4085 ;; ;; 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
|
4086 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4087 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4088 ;; ;; 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
|
4089 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4090 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4091 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4092 ;; ;; 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
|
4093 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4094 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4095 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4096 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4097 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4098 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4099 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4100 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4101 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4102 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4103 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4105 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4106 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4107 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4108 ;; (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
|
4109 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4110 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4111 ;;(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
|
4112 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4113 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4114 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4115 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4116 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4117 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4118 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4119 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4120 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4121 ;; success-count buffer) |
1106 | 4122 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4123 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4126 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4130 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4133 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4134 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4137 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4139 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4140 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4141 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4143 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4147 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;;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
|
4151 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4155 ;; ;; 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
|
4156 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4160 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4164 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4174 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4189 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4191 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4193 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; (dired-add-file to actual-marker-char)) |
1106 | 4222 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;;(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
|
4235 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; (set-buffer old-buf)))) |
1106 | 4256 |
4257 ;;;; ----------------------------------------------- | |
4258 ;;;; Unix Descriptive Listing (dl) Support | |
4259 ;;;; ----------------------------------------------- | |
4260 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4262 ;; 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
|
4263 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;;(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
|
4274 ;; "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
|
4275 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;;(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
|
4286 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4289 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4290 ;;(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
|
4291 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 ;; ;; 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
|
4293 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4302 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4306 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;;(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
|
4315 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4316 ;; (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
|
4317 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4318 |
4319 ;;;; ------------------------------------------------------------ | |
4320 ;;;; VOS support (VOS support is probably broken, | |
4321 ;;;; but I don't know anything about VOS.) | |
4322 ;;;; ------------------------------------------------------------ | |
4323 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4324 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4325 ; (setq name (copy-sequence name)) |
1106 | 4326 ; (let ((from (if reverse ?\> ?\/)) |
4327 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4328 ; (i (1- (length name)))) |
1106 | 4329 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4330 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4331 ; (aset name i to)) |
1106 | 4332 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4333 ; name)) |
1106 | 4334 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4338 ; ange-ftp-fix-name-func-alist))) |
1106 | 4339 ; |
4340 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4341 ; (setq ange-ftp-dumb-host-types | |
4342 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4343 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4344 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4345 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4346 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4348 ; "" "/") |
4349 ; "*"))) | |
4350 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4351 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4352 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4353 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4354 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4355 ; |
4356 ;(defvar ange-ftp-vos-host-regexp nil | |
4357 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4358 ; | |
4359 ;(defun ange-ftp-vos-host (host) | |
4360 ; (and ange-ftp-vos-host-regexp | |
4361 ; (ange-ftp-save-match-data | |
4362 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4363 ; | |
4364 ;(defun ange-ftp-parse-vos-listing () | |
4365 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4366 ;format, and return a hashtable as the result." | |
4367 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4368 ; (type-list | |
4369 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4370 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4371 ; type-regexp type-is-dir type-col file) | |
4372 ; (goto-char (point-min)) | |
4373 ; (ange-ftp-save-match-data | |
4374 ; (while type-list | |
4375 ; (setq type-regexp (car (car type-list)) | |
4376 ; type-is-dir (nth 1 (car type-list)) | |
4377 ; type-col (nth 2 (car type-list)) | |
4378 ; type-list (cdr type-list)) | |
4379 ; (if (re-search-forward type-regexp nil t) | |
4380 ; (while (eq (char-after (point)) ? ) | |
4381 ; (move-to-column type-col) | |
4382 ; (setq file (buffer-substring (point) | |
4383 ; (progn | |
4384 ; (end-of-line 1) | |
4385 ; (point)))) | |
4386 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4387 ; (forward-line 1)))) | |
4388 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4389 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4390 ; tbl)) | |
4391 ; | |
4392 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4393 ; (setq ange-ftp-parse-list-func-alist | |
4394 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4395 ; ange-ftp-parse-list-func-alist))) | |
4396 | |
4397 ;;;; ------------------------------------------------------------ | |
4398 ;;;; VMS support. | |
4399 ;;;; ------------------------------------------------------------ | |
4400 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4401 ;; 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
|
4402 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 (defun ange-ftp-fix-name-for-vms (name &optional reverse) |
1106 | 4404 (ange-ftp-save-match-data |
4405 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4406 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4407 (let (drive dir file) |
4408 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4409 (setq drive (substring name |
1106 | 4410 (match-beginning 1) |
4411 (match-end 1)))) | |
4412 (if (match-beginning 2) | |
4413 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4415 (if (match-beginning 3) |
4416 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4417 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4418 (and dir |
4419 (setq dir (apply (function concat) | |
4420 (mapcar (function | |
4421 (lambda (char) | |
4422 (if (= char ?.) | |
4423 (vector ?/) | |
4424 (vector char)))) | |
4425 (substring dir 1 -1))))) | |
4426 (concat (and drive | |
4427 (concat "/" drive "/")) | |
4428 dir (and dir "/") | |
4429 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4430 (error "name %s didn't match" name)) |
1106 | 4431 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4432 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4433 (setq drive (substring name 1 |
1106 | 4434 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4435 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 (setq tmp (file-name-directory name)) |
1106 | 4437 (if tmp |
4438 (setq dir (apply (function concat) | |
4439 (mapcar (function | |
4440 (lambda (char) | |
4441 (if (= char ?/) | |
4442 (vector ?.) | |
4443 (vector char)))) | |
4444 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4445 (setq file (file-name-nondirectory name)) |
1106 | 4446 (concat drive |
4447 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4448 file))))) | |
4449 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4450 ;; (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
|
4451 ;; (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
|
4452 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4453 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4454 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4455 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4456 ange-ftp-fix-name-func-alist))) |
1106 | 4457 |
4458 (or (memq 'vms ange-ftp-dumb-host-types) | |
4459 (setq ange-ftp-dumb-host-types | |
4460 (cons 'vms ange-ftp-dumb-host-types))) | |
4461 | |
4462 ;; It is important that this function barf for directories for which we know | |
4463 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4464 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4465 ;; might succeed, but give erroneous info. This last case is particularly | |
4466 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4467 ;; to list a directory. | |
4468 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4469 ;; 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
|
4470 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4471 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4472 ;; think so, because expand-filename should have already short-circuited | |
4473 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4474 (cond ((string-equal dir-name "/") |
1106 | 4475 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4476 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4477 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4478 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4479 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4480 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4481 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4482 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4483 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4484 |
4485 (defvar ange-ftp-vms-host-regexp nil) | |
4486 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4487 ;; Return non-nil if HOST is running VMS. |
1106 | 4488 (defun ange-ftp-vms-host (host) |
4489 (and ange-ftp-vms-host-regexp | |
4490 (ange-ftp-save-match-data | |
4491 (string-match ange-ftp-vms-host-regexp host)))) | |
4492 | |
4493 ;; Because some VMS ftp servers convert filenames to lower case | |
4494 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4495 | |
4496 (defconst ange-ftp-vms-filename-regexp | |
4497 (concat | |
4498 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][_A-Za-z0-9$---]*\\)\\." | |
4499 "[_A-Za-z0-9$---]*;+[0-9]*\\)") | |
4500 "Regular expression to match for a valid VMS file name in Dired buffer. | |
4501 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4502 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4503 Other orders of $ and _ seem to all work just fine.") | |
4504 | |
4505 ;; These parsing functions are as general as possible because the syntax | |
4506 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4507 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4508 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4509 ;; from vms.weird.net, then too bad. | |
4510 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4511 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4512 (defun ange-ftp-parse-vms-filename () |
4513 (if (re-search-forward | |
4514 ange-ftp-vms-filename-regexp | |
4515 nil t) | |
4516 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4517 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4518 ;; 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
|
4519 ;; format, and return a hashtable as the result. |
1106 | 4520 (defun ange-ftp-parse-vms-listing () |
4521 (let ((tbl (ange-ftp-make-hashtable)) | |
4522 file) | |
4523 (goto-char (point-min)) | |
4524 (ange-ftp-save-match-data | |
4525 (while (setq file (ange-ftp-parse-vms-filename)) | |
4526 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4527 ;; deal with directories | |
4528 (ange-ftp-put-hash-entry | |
4529 (substring file 0 (match-beginning 0)) t tbl) | |
4530 (ange-ftp-put-hash-entry file nil tbl) | |
4531 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4532 ;; sans extension | |
4533 (ange-ftp-put-hash-entry | |
4534 (substring file 0 (match-beginning 0)) nil tbl))) | |
4535 (forward-line 1)) | |
4536 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4537 ;; make sure that the listing isn't complete garbage before putting | |
4538 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4539 ;; either of these. | |
4540 (ange-ftp-put-hash-entry "." t tbl) | |
4541 (ange-ftp-put-hash-entry ".." t tbl)) | |
4542 tbl)) | |
4543 | |
4544 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4545 (setq ange-ftp-parse-list-func-alist | |
4546 (cons '(vms . ange-ftp-parse-vms-listing) | |
4547 ange-ftp-parse-list-func-alist))) | |
4548 | |
4549 ;; This version only deletes file entries which have | |
4550 ;; explicit version numbers, because that is all VMS allows. | |
4551 | |
4552 ;; Can the following two functions be speeded up using file | |
4553 ;; completion functions? | |
4554 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4555 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4556 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4557 (ange-ftp-internal-delete-file-entry name t) |
1106 | 4558 (ange-ftp-save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4559 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4560 (if (string-match ";[0-9]+$" file) |
4561 ;; In VMS you can't delete a file without an explicit | |
4562 ;; version number, or wild-card (e.g. FOO;*) | |
4563 ;; For now, we give up on wildcards. | |
4564 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4565 (file-name-directory name) |
1106 | 4566 ange-ftp-files-hashtable))) |
4567 (if files | |
4568 (let* ((root (substring file 0 | |
4569 (match-beginning 0))) | |
4570 (regexp (concat "^" | |
4571 (regexp-quote root) | |
4572 ";[0-9]+$")) | |
4573 versions) | |
4574 (ange-ftp-del-hash-entry file files) | |
4575 ;; Now we need to check if there are any | |
4576 ;; versions left. If not, then delete the | |
4577 ;; root entry. | |
4578 (mapatoms | |
4579 '(lambda (sym) | |
4580 (and (string-match regexp (get sym 'key)) | |
4581 (setq versions t))) | |
4582 files) | |
4583 (or versions | |
4584 (ange-ftp-del-hash-entry root files)))))))))) | |
4585 | |
4586 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4587 (setq ange-ftp-delete-file-entry-alist | |
4588 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4589 ange-ftp-delete-file-entry-alist))) | |
4590 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4591 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4592 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4593 (ange-ftp-internal-add-file-entry name t) |
1106 | 4594 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4595 (file-name-directory name) |
1106 | 4596 ange-ftp-files-hashtable))) |
4597 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4598 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4599 (ange-ftp-save-match-data |
4600 (if (string-match ";[0-9]+$" file) | |
4601 (ange-ftp-put-hash-entry | |
4602 (substring file 0 (match-beginning 0)) | |
4603 nil files) | |
4604 ;; Need to figure out what version of the file | |
4605 ;; is being added. | |
4606 (let ((regexp (concat "^" | |
4607 (regexp-quote file) | |
4608 ";\\([0-9]+\\)$")) | |
4609 (version 0)) | |
4610 (mapatoms | |
4611 '(lambda (sym) | |
4612 (let ((name (get sym 'key))) | |
4613 (and (string-match regexp name) | |
4614 (setq version | |
4615 (max version | |
4616 (string-to-int | |
4617 (substring name | |
4618 (match-beginning 1) | |
4619 (match-end 1)))))))) | |
4620 files) | |
4621 (setq version (1+ version)) | |
4622 (ange-ftp-put-hash-entry | |
4623 (concat file ";" (int-to-string version)) | |
4624 nil files)))) | |
4625 (ange-ftp-put-hash-entry file nil files)))))) | |
4626 | |
4627 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4628 (setq ange-ftp-add-file-entry-alist | |
4629 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4630 ange-ftp-add-file-entry-alist))) | |
4631 | |
4632 | |
4633 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4634 "Mark HOST as the name of a machine running VMS." |
1106 | 4635 (interactive |
4636 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
4637 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4638 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4639 (if (not (ange-ftp-vms-host host)) |
4640 (setq ange-ftp-vms-host-regexp | |
4641 (concat "^" (regexp-quote host) "$" | |
4642 (and ange-ftp-vms-host-regexp "\\|") | |
4643 ange-ftp-vms-host-regexp) | |
4644 ange-ftp-host-cache nil))) | |
4645 | |
4646 | |
4647 (defun ange-ftp-vms-file-name-as-directory (name) | |
4648 (ange-ftp-save-match-data | |
4649 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
4650 (setq name (substring name 0 (match-beginning 0)))) | |
4651 (ange-ftp-real-file-name-as-directory name))) | |
4652 | |
4653 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4654 (setq ange-ftp-file-name-as-directory-alist | |
4655 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4656 ange-ftp-file-name-as-directory-alist))) | |
4657 | |
4658 ;;; Tree dired support: | |
4659 | |
4660 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4661 ;; dired-vms.el | |
4662 | |
4663 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4664 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4665 ;;;; 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
|
4666 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4667 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4668 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4669 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4670 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4671 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4672 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4673 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4674 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4675 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4676 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4677 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4678 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4679 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4680 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4681 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4682 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4683 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4684 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4685 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4686 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4687 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4688 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4689 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4690 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4691 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4692 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4693 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4694 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4695 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4696 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4697 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4698 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4699 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4700 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4701 ;;(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
|
4702 ;; "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
|
4703 ;;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
|
4704 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4706 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4707 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4708 ;; (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
|
4709 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4710 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4711 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4712 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4713 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4714 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4715 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4716 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4717 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4718 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4719 ;;(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
|
4720 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4721 ;; ;; 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
|
4722 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4723 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4724 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4725 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4726 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4727 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4728 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4729 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4730 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4733 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4737 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; (point)))) |
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 ;;(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
|
4745 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4746 ;; (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
|
4747 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4762 |
4763 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4764 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4765 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4766 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4767 | |
4768 (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
|
4769 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4785 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;;;; 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
|
4789 ;;;; (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
|
4790 ;;;; 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
|
4791 ;;;; (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
|
4792 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4793 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4795 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4800 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4801 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 (defun ange-ftp-vms-sans-version (name) |
1106 | 4810 (ange-ftp-save-match-data |
4811 (if (string-match ";[0-9]+$" name) | |
4812 (substring name 0 (match-beginning 0)) | |
4813 name))) | |
4814 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4816 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4818 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;;;;; 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
|
4823 ;;;;; 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
|
4824 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;;(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
|
4827 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 ;;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
|
4829 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;;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
|
4831 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;;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
|
4833 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4835 ;; (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
|
4836 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4837 ;; ;; 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
|
4838 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ;; (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
|
4840 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4843 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4844 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4845 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 ;; ;; 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
|
4849 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4860 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4861 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4862 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4863 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;; ;; 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
|
4866 ;; ;; 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
|
4867 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 ;; ;; "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
|
4879 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4880 ;; ;;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
|
4881 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4883 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4885 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4894 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4895 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4896 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4898 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4900 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4902 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4903 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4905 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4907 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4908 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4909 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4910 ;; (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
|
4911 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4912 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 ;;(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
|
4920 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4929 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4931 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4934 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4938 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4946 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4947 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4948 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4952 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 4957 |
4958 | |
4959 ;;;; ------------------------------------------------------------ | |
4960 ;;;; MTS support | |
4961 ;;;; ------------------------------------------------------------ | |
4962 | |
4963 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4964 ;; 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
|
4965 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 (defun ange-ftp-fix-name-for-mts (name &optional reverse) |
1106 | 4967 (ange-ftp-save-match-data |
4968 (if reverse | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 4970 (let (acct file) |
4971 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 (setq acct (substring name 0 (match-end 1)))) |
1106 | 4973 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 (setq file (substring name |
1106 | 4975 (match-beginning 2) (match-end 2)))) |
4976 (concat (and acct (concat "/" acct "/")) | |
4977 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4979 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 (substring name (match-beginning 2) (match-end 2))) |
1106 | 4982 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;; 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
|
4991 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 (if (string-equal dir-name "/") |
1106 | 4994 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 4996 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ((string-equal dir-name "") |
1106 | 4998 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5007 |
5008 (or (memq 'mts ange-ftp-dumb-host-types) | |
5009 (setq ange-ftp-dumb-host-types | |
5010 (cons 'mts ange-ftp-dumb-host-types))) | |
5011 | |
5012 (defvar ange-ftp-mts-host-regexp nil) | |
5013 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; Return non-nil if HOST is running MTS. |
1106 | 5015 (defun ange-ftp-mts-host (host) |
5016 (and ange-ftp-mts-host-regexp | |
5017 (ange-ftp-save-match-data | |
5018 (string-match ange-ftp-mts-host-regexp host)))) | |
5019 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5021 (defun ange-ftp-parse-mts-listing () |
5022 (let ((tbl (ange-ftp-make-hashtable))) | |
5023 (goto-char (point-min)) | |
5024 (ange-ftp-save-match-data | |
5025 (while (re-search-forward ange-ftp-date-regexp nil t) | |
5026 (end-of-line) | |
5027 (skip-chars-backward " ") | |
5028 (let ((end (point))) | |
5029 (skip-chars-backward "-A-Z0-9_.!") | |
5030 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5031 (forward-line 1))) | |
5032 ;; Don't need to bother with .. | |
5033 (ange-ftp-put-hash-entry "." t tbl) | |
5034 tbl)) | |
5035 | |
5036 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5037 (setq ange-ftp-parse-list-func-alist | |
5038 (cons '(mts . ange-ftp-parse-mts-listing) | |
5039 ange-ftp-parse-list-func-alist))) | |
5040 | |
5041 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5042 "Mark HOST as the name of a machine running MTS." |
1106 | 5043 (interactive |
5044 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
5045 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5047 (if (not (ange-ftp-mts-host host)) |
5048 (setq ange-ftp-mts-host-regexp | |
5049 (concat "^" (regexp-quote host) "$" | |
5050 (and ange-ftp-mts-host-regexp "\\|") | |
5051 ange-ftp-mts-host-regexp) | |
5052 ange-ftp-host-cache nil))) | |
5053 | |
5054 ;;; Tree dired support: | |
5055 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5056 ;;;; 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
|
5057 ;;;; 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
|
5058 ;;;; 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
|
5059 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5061 ;;(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
|
5062 ;; "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
|
5063 ;;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
|
5064 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5065 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5066 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5067 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5068 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5069 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5073 ;; ;; 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
|
5074 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5078 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5080 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5081 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5082 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5083 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5084 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5085 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5086 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 ;;(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
|
5088 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5089 ;; ;; 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
|
5090 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5092 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5094 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5101 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5105 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5106 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5107 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5108 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5110 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5111 ;;(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
|
5112 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 ;; (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
|
5114 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5115 |
5116 ;;;; ------------------------------------------------------------ | |
5117 ;;;; CMS support | |
5118 ;;;; ------------------------------------------------------------ | |
5119 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5120 ;; Since CMS doesn't have any full file name syntax, we have to fudge |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
5121 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5122 ;; to try to remember the current minidisk, because if the connection |
5123 ;; is closed and needs to be reopened, we will find ourselves back in | |
5124 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5125 ;; usually close the connection after 5 minutes of inactivity. | |
5126 | |
5127 ;; Have I got the filename character set right? | |
5128 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5129 (defun ange-ftp-fix-name-for-cms (name &optional reverse) |
1106 | 5130 (ange-ftp-save-match-data |
5131 (if reverse | |
5132 ;; Since we only convert output from a pwd in this direction, | |
5133 ;; we'll assume that it's a minidisk, and make it into a | |
5134 ;; directory file name. Note that the expand-dir-hashtable | |
5135 ;; stores directories without the trailing /. Is this | |
5136 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5137 (concat "/" name) |
1106 | 5138 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5139 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5141 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 (let ((file (substring name (match-beginning 2) |
1106 | 5143 (match-end 2))) |
5144 (cmd (concat "cd " minidisk)) | |
5145 | |
5146 ;; Note that host and user are bound in the call | |
5147 ;; to ange-ftp-send-cmd | |
5148 (proc (ange-ftp-get-process ange-ftp-this-host | |
5149 ange-ftp-this-user))) | |
5150 | |
5151 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5152 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5154 file |
5155 ;; failed... try ONCE more. | |
5156 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5157 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5159 ange-ftp-this-msg))) |
1106 | 5160 (if (car result) |
5161 file | |
5162 ;; failed. give up. | |
5163 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5164 (format "cd to minidisk %s failed: %s" | |
5165 minidisk (cdr result))))))) | |
5166 ;; return the minidisk | |
5167 minidisk)) | |
5168 (error "Invalid CMS filename"))))) | |
5169 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ange-ftp-fix-name-func-alist))) |
1106 | 5174 |
5175 (or (memq 'cms ange-ftp-dumb-host-types) | |
5176 (setq ange-ftp-dumb-host-types | |
5177 (cons 'cms ange-ftp-dumb-host-types))) | |
5178 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5179 ;; 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
|
5180 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5181 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5182 ((string-equal "/" dir-name) |
1106 | 5183 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5184 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5185 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5186 ;; 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
|
5187 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5188 (cmd (concat "cd " minidisk)) |
5189 (file (if (match-beginning 2) | |
5190 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 (substring dir-name (match-beginning 2) |
1106 | 5192 (match-end 2)) |
5193 ;; use the wild-card | |
5194 "*"))) | |
5195 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5196 file | |
5197 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5198 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5199 ange-ftp-this-user)) |
1106 | 5200 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5201 (if (car result) | |
5202 file | |
5203 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5205 (format "cd to minidisk %s failed: " |
5206 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5207 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5209 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5210 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5212 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5213 |
5214 (defvar ange-ftp-cms-host-regexp nil | |
5215 "Regular expression to match hosts running the CMS operating system.") | |
5216 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5217 ;; Return non-nil if HOST is running CMS. |
1106 | 5218 (defun ange-ftp-cms-host (host) |
5219 (and ange-ftp-cms-host-regexp | |
5220 (ange-ftp-save-match-data | |
5221 (string-match ange-ftp-cms-host-regexp host)))) | |
5222 | |
5223 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 "Mark HOST as the name of a CMS host." |
1106 | 5225 (interactive |
5226 (list (read-string "Host: " | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
5227 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5228 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5229 (if (not (ange-ftp-cms-host host)) |
5230 (setq ange-ftp-cms-host-regexp | |
5231 (concat "^" (regexp-quote host) "$" | |
5232 (and ange-ftp-cms-host-regexp "\\|") | |
5233 ange-ftp-cms-host-regexp) | |
5234 ange-ftp-host-cache nil))) | |
5235 | |
5236 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5238 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5239 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5240 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5241 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5242 ;; exist. It would be nice if completion worked for minidisks, as we | |
5243 ;; discover them. | |
5244 ; (let* ((dir-file (directory-file-name file)) | |
5245 ; (root (file-name-directory dir-file)) | |
5246 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5247 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5248 ; (if root-tbl | |
5249 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5250 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5251 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5252 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5253 ; (ange-ftp-set-files root root-tbl))) | |
5254 ;; Now do the usual parsing | |
5255 (let ((tbl (ange-ftp-make-hashtable))) | |
5256 (goto-char (point-min)) | |
5257 (ange-ftp-save-match-data | |
5258 (while | |
5259 (re-search-forward | |
5260 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5261 (ange-ftp-put-hash-entry | |
5262 (concat (buffer-substring (match-beginning 1) | |
5263 (match-end 1)) | |
5264 "." | |
5265 (buffer-substring (match-beginning 2) | |
5266 (match-end 2))) | |
5267 nil tbl) | |
5268 (forward-line 1)) | |
5269 (ange-ftp-put-hash-entry "." t tbl)) | |
5270 tbl)) | |
5271 | |
5272 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5273 (setq ange-ftp-parse-list-func-alist | |
5274 (cons '(cms . ange-ftp-parse-cms-listing) | |
5275 ange-ftp-parse-list-func-alist))) | |
5276 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5277 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5278 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5279 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5281 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5284 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5285 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5286 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5287 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5288 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5289 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5290 ;; ;; 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
|
5291 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5292 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5293 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5294 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5295 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5296 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5297 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5298 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5300 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5301 ;;(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
|
5302 ;; "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
|
5303 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5306 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5307 ;; (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
|
5308 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5309 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5310 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5311 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5312 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5313 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5314 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5315 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5316 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5317 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5318 ;;(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
|
5319 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5320 ;; ;; 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
|
5321 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5322 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5323 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5324 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5325 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5326 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5327 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5328 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5329 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5330 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5331 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5332 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5333 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5334 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5335 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5336 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5337 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5338 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5339 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5340 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5341 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5342 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5343 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5344 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5345 ;;(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
|
5346 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5347 ;; (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
|
5348 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5349 |
5350 (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
|
5351 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5352 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5353 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5354 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5355 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5356 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5357 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5358 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 ;;(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
|
5361 ;; (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
|
5362 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5363 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5365 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5366 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5369 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5370 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5373 |
5374 ;;;; ------------------------------------------------------------ | |
5375 ;;;; Finally provide package. | |
5376 ;;;; ------------------------------------------------------------ | |
5377 | |
5378 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5379 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5380 ;;; ange-ftp.el ends here |