Mercurial > emacs
annotate lisp/ange-ftp.el @ 14507:ec4424facc98
(text-read-only): New error symbol.
(kill-region): Use it when text has read-only text property.
(yank-pop): Turn on inhibit-read-only.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 06 Feb 1996 23:56:47 +0000 |
parents | 97e0e30a6eaa |
children | c64371c0dbb9 |
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 |
14169 | 3 ;; Copyright (C) 1989,90,91,92,93,94,95 Free Software Foundation, Inc. |
4 | |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
6 ;; Keywords: comm | |
14169 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
1106 | 24 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
25 ;;; Commentary: |
14169 | 26 |
27 ;; This package attempts to make accessing files and directories using FTP | |
28 ;; from within GNU Emacs as simple and transparent as possible. A subset of | |
29 ;; the common file-handling routines are extended to interact with FTP. | |
30 | |
31 ;; Usage: | |
32 ;; | |
33 ;; Some of the common GNU Emacs file-handling operations have been made | |
34 ;; FTP-smart. If one of these routines is given a filename that matches | |
35 ;; '/user@host:name' then it will spawn an FTP process connecting to machine | |
36 ;; 'host' as account 'user' and perform its operation on the file 'name'. | |
37 ;; | |
38 ;; For example: if find-file is given a filename of: | |
39 ;; | |
40 ;; /ange@anorman:/tmp/notes | |
41 ;; | |
42 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as | |
43 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the | |
44 ;; contents of that file as if it were on the local filesystem. If ange-ftp | |
45 ;; needs a password to connect then it reads one in the echo area. | |
46 | |
47 ;; Extended filename syntax: | |
48 ;; | |
49 ;; The default extended filename syntax is '/user@host:name', where the | |
50 ;; 'user@' part may be omitted. This syntax can be customised to a certain | |
51 ;; extent by changing ange-ftp-name-format. There are limitations. | |
52 ;; | |
53 ;; If the user part is omitted then ange-ftp generates a default user | |
54 ;; instead whose value depends on the variable ange-ftp-default-user. | |
55 | |
56 ;; Passwords: | |
57 ;; | |
58 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
59 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
60 ;; in a *valid* ~/.netrc file. | |
61 | |
62 ;; Passwords for user "anonymous": | |
63 ;; | |
64 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
65 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
66 ;; controls what happens: if the value of this variable is a string, | |
67 ;; then this is used as the password; if non-nil (the default), then | |
68 ;; the value of `user-mail-address' is used; if nil then the user | |
69 ;; is prompted for a password as normal. | |
70 | |
71 ;; "Dumb" UNIX hosts: | |
72 ;; | |
73 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
74 ;; used. | |
75 ;; | |
76 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
77 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
78 ;; that this change will take effect for the current GNU Emacs session only. | |
79 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
80 ;; machines with similar hostnames have this problem then it is easier to set | |
81 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
82 ;; is unable to automatically recognize dumb unix hosts. | |
83 | |
84 ;; File name completion: | |
85 ;; | |
86 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
87 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
88 ;; Therefore, for very slow connections, it might not save any time. | |
89 | |
90 ;; FTP processes: | |
91 ;; | |
92 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
93 ;; purposes. Some FTP servers will close the connection after a period of | |
94 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
95 ;; the process is needed. | |
96 ;; | |
97 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
98 ;; This should not cause ange-ftp any grief. | |
99 | |
100 ;; Binary file transfers: | |
101 ;; | |
102 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
103 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
104 ;; binary mode is used for that transfer. | |
105 | |
106 ;; Account passwords: | |
107 ;; | |
108 ;; Some FTP servers require an additional password which is sent by the | |
109 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
110 ;; specify an account password by either calling ange-ftp-set-account, or by | |
111 ;; specifying an account token in the .netrc file. If the account password | |
112 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
113 ;; command upon starting the FTP process. | |
114 | |
115 ;; Preloading: | |
116 ;; | |
117 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
118 ;; not the site-load.el file in order for the documentation strings for the | |
119 ;; functions being overloaded to be available. | |
120 | |
121 ;; Status reports: | |
122 ;; | |
123 ;; Most ange-ftp commands that talk to the FTP process output a status | |
124 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
125 ;; of the FTP client's HASH command to display the status of transferring | |
126 ;; files and listing directories. See the documentation for the variables | |
127 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
128 ;; ange-ftp-process-verbose for more details. | |
129 | |
130 ;; Gateways: | |
131 ;; | |
132 ;; Sometimes it is necessary for the FTP process to be run on a different | |
133 ;; machine than the machine running GNU Emacs. This can happen when the | |
134 ;; local machine has restrictions on what hosts it can access. | |
135 ;; | |
136 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
137 ;; machine. The way it works is as follows: | |
138 ;; | |
139 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
140 ;; that doesn't have the access restrictions. | |
141 ;; | |
142 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
143 ;; that matches hosts that can be contacted from running a local ftp | |
144 ;; process, but fails to match hosts that can't be accessed locally. For | |
145 ;; example: | |
146 ;; | |
147 ;; "\\.hp\\.com$\\|^[^.]*$" | |
148 ;; | |
149 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
150 ;; explicit domain in their name, but will fail to match hosts with | |
151 ;; explicit domains or that are specified by their ip address. | |
152 ;; | |
153 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
154 ;; the *same* name between the local machine and the gateway machine. | |
155 ;; This directory is necessary for temporary files created by ange-ftp. | |
156 ;; | |
157 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
158 ;; this directory plus an identifying filename prefix. For example: | |
159 ;; | |
160 ;; "/nfs/hplose/ange/ange-ftp" | |
161 ;; | |
162 ;; where /nfs/hplose/ange is a directory that is shared between the | |
163 ;; gateway machine and the local machine. | |
164 ;; | |
165 ;; The simplest way of getting a ftp process running on the gateway machine | |
166 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
167 ;; can't do this for some reason such as security then points 7 onwards will | |
168 ;; discuss an alternative approach. | |
169 ;; | |
170 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
171 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
172 ;; | |
173 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
174 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
175 ;; rather than logging in using telnet or rlogin. | |
176 ;; | |
177 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
178 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
179 ;; gateway machine then follow the instructions below. | |
180 ;; | |
181 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
182 ;; that lets you log onto the gateway machine. This may be something like | |
183 ;; telnet or rlogin. | |
184 ;; | |
185 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
186 ;; expression that matches the prompt you get when you login to the | |
187 ;; gateway machine. Be very specific here; this regexp must not match | |
188 ;; *anything* in your login banner except this prompt. | |
189 ;; shell-prompt-pattern is far too general as it appears to match some | |
190 ;; login banners from Sun machines. For example: | |
191 ;; | |
192 ;; "^$*$ *" | |
193 ;; | |
194 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
195 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
196 ;; machine. | |
197 ;; | |
198 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
199 ;; that will put the pty connected to the gateway machine into a | |
200 ;; no-echoing mode, and will strip off carriage-returns from output from | |
201 ;; the gateway machine. For example: | |
202 ;; | |
203 ;; "stty -onlcr -echo" | |
204 ;; | |
205 ;; will work on HP-UX machines, whereas: | |
206 ;; | |
207 ;; "stty -echo nl" | |
208 ;; | |
209 ;; appears to work for some Sun machines. | |
210 ;; | |
211 ;; That's all there is to it. | |
212 | |
213 ;; Smart gateways: | |
214 ;; | |
215 ;; If you have a "smart" ftp program that allows you to issue commands like | |
216 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
217 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
218 ;; | |
219 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
220 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
221 ;; connect you directly to the desired destination host: | |
222 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
223 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
224 ;; Leave ange-ftp-gateway-host set to nil. | |
225 ;; Set ange-ftp-smart-gateway to t. | |
226 | |
227 ;; Tips for using ange-ftp: | |
228 ;; | |
229 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
230 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
231 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
232 ;; there is a chance you might connect to an ULTRIX machine (such as | |
233 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
234 ;; the side effect that dired will have problems with symlinks whose names | |
235 ;; end in an @. If you get yourself into this situation then editing | |
236 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
237 ;; | |
238 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
239 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
240 ;; then setting the appropriate host-type regexp | |
241 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
242 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
243 ;; ange-ftp's inability to recognize the host-type as a bug. | |
244 ;; | |
245 ;; 3. For slow connections, you might get "listing unreadable" error | |
246 ;; messages, or get an empty buffer for a file that you know has something | |
247 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
248 ;; Its default value is 5 which is plenty for reasonable connections. | |
249 ;; However, for some transatlantic connections I set this to 20. | |
250 ;; | |
251 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
252 ;; copying the file to the local machine, compressing it there, and then | |
253 ;; sending it back. Binary file transfers between machines of different | |
254 ;; architectures can be a risky business. Test things out first on some | |
255 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
256 ;; moving them through the local machine. Again, be careful when doing | |
257 ;; this with binary files on non-Unix machines. | |
258 ;; | |
259 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
260 ;; (list of dired commands for which confirmation is not asked). You | |
261 ;; might want to reconsider your setting of this variable, because you | |
262 ;; might want confirmation for more commands on remote direds than on | |
263 ;; local direds. For example, I strongly recommend that you not include | |
264 ;; compress and uncompress in this list. If there is enough demand it | |
265 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
266 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
267 ;; is a list of commands for which confirmation would be suppressed. Then | |
268 ;; remote dired listings would take their (buffer-local) value of | |
269 ;; dired-no-confirm from this alist. Who votes for this? | |
270 | |
271 ;; --------------------------------------------------------------------- | |
272 ;; Non-UNIX support: | |
273 ;; --------------------------------------------------------------------- | |
274 | |
275 ;; VMS support: | |
276 ;; | |
277 ;; Ange-ftp has full support for VMS hosts. It | |
278 ;; should be able to automatically recognize any VMS machine. However, if it | |
279 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
280 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
281 ;; would be grateful if you would report any failures to automatically | |
282 ;; recognize a VMS host as a bug. | |
283 ;; | |
284 ;; Filename Syntax: | |
285 ;; | |
286 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
287 ;; UNIX-y way. For example: | |
288 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
289 ;; would be entered as: | |
290 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
291 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
292 ;; [.CSV.POLICY]RULES.MEM | |
293 ;; you would type: | |
294 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
295 ;; | |
296 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
297 ;; where FILE can be up to 39 characters | |
298 ;; TYPE can be up to 39 characters | |
299 ;; ## is a version number (an integer between 1 and 32,767) | |
300 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
301 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
302 ;; character. | |
303 ;; | |
304 ;; Tips: | |
305 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
306 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
307 ;; case letters. | |
308 ;; 2. To access the latest version of file under VMS, you use the filename | |
309 ;; without the ";" and version number. You should always edit the latest | |
310 ;; version of a file. If you want to edit an earlier version, copy it to a | |
311 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
312 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
313 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
314 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
315 ;; that VMS will not allow you to save the file because it will refuse to | |
316 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
317 ;; attach the buffer to this file. To get out of this situation, M-x | |
318 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
319 ;; latest version of the file. For this reason, in dired "f" | |
320 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
321 ;; (dired-view-file), always loads the explicit version number. The | |
322 ;; reasoning being that it reasonable to view old versions of a file, but | |
323 ;; not to edit them. | |
324 ;; 3. EMACS has a feature in which it does environment variable substitution | |
325 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
326 ;; by typing $$. | |
327 | |
328 ;; MTS support: | |
329 ;; | |
330 ;; Ange-ftp has full support for hosts running | |
331 ;; the Michigan terminal system. It should be able to automatically | |
332 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
333 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
334 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
335 ;; would report any failures to automatically recognize a MTS host as a bug. | |
336 ;; | |
337 ;; Filename syntax: | |
338 ;; | |
339 ;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
340 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
341 ;; entered as | |
342 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
343 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
344 ;; to access a file in another account, you must have access permission for | |
345 ;; it. If FILE were in your own account, then you could enter it in a | |
346 ;; relative name fashion as | |
347 ;; /YYYY@mtsg.ubc.ca:FILE | |
348 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
349 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
350 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
351 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
352 ;; is. | |
353 | |
354 ;; CMS support: | |
355 ;; | |
356 ;; Ange-ftp has full support for hosts running | |
357 ;; CMS. It should be able to automatically recognize any CMS machine. | |
358 ;; However, if it fails to do this, you can use the command | |
359 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
360 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
361 ;; would report any failures to automatically recognize a CMS host as a bug. | |
362 ;; | |
363 ;; Filename syntax: | |
364 ;; | |
365 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
366 ;; treated as UNIX directories. For example to access the file READ.ME in | |
367 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
368 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
369 ;; If *.301 is the default minidisk for this account, you could access | |
370 ;; FOO.BAR on this minidisk as | |
371 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
372 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
373 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
374 ;; case, and hence must be entered as such. | |
375 ;; | |
376 ;; Tips: | |
377 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
378 ;; need an account password. To have ange-ftp send an account password, | |
379 ;; you can either include it in your .netrc file, or use | |
380 ;; ange-ftp-set-account. | |
381 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
382 ;; can fix this. | |
383 ;; | |
384 ;; ------------------------------------------------------------------ | |
385 ;; Bugs: | |
386 ;; ------------------------------------------------------------------ | |
387 ;; | |
388 ;; 1. Umask problems: | |
389 ;; Be warned that files created by using ange-ftp will take account of the | |
390 ;; umask of the ftp daemon process rather than the umask of the creating | |
391 ;; user. This is particularly important when logging in as the root user. | |
392 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
393 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
394 ;; suspect that there is something similar on other systems. | |
395 ;; | |
396 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
397 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
398 ;; machines cause this problem for some FTP clients. Using | |
399 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
400 ;; should get things back in sync. | |
401 ;; | |
402 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
403 ;; you provide a valid filename for the remote operating system. | |
404 ;; If you do not, then the remote FTP server will most likely | |
405 ;; translate your filename in some way. This may cause ange-ftp to | |
406 ;; get confused about what exactly is the name of the file. The | |
407 ;; most common causes of this are using lower case filenames on systems | |
408 ;; which support only upper case, and using filenames which are too | |
409 ;; long. | |
410 ;; | |
411 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
412 ;; | |
413 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
414 ;; for some reason creates a FTP process that only talks via pipes then | |
415 ;; ange-ftp won't be getting the information it requires at the time that | |
416 ;; it wants it since pipes flush at different times to pty's. One | |
417 ;; disgusting way around this problem is to talk to the FTP process via | |
418 ;; rlogin which does the 'right' things with pty's. | |
419 ;; | |
420 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
421 ;; worried about this too much. Eventually, we should have some caching | |
422 ;; of the current minidisk. | |
423 ;; | |
424 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
425 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
426 ;; to it. This is (understandably) beyond ange-ftp. | |
427 ;; | |
428 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
429 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
430 ;; will use binary mode for the copy. Between systems of different | |
431 ;; architecture, this still may not be enough to guarantee the integrity | |
432 ;; of binary files. Binary file transfers from VMS machines are | |
433 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
434 ;; an alist of OS type, regexp pairs? | |
435 ;; | |
436 ;; 9. The code to do compression of files over ftp is not as careful as it | |
437 ;; should be. It deletes the old remote version of the file, before | |
438 ;; actually checking if the local to remote transfer of the compressed | |
439 ;; file succeeds. Of course to delete the original version of the file | |
440 ;; after transferring the compressed version back is also dangerous, | |
441 ;; because some OS's have severe restrictions on the length of filenames, | |
442 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
443 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
444 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
445 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
446 ;; Suggestions? | |
447 ;; | |
448 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
449 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
450 ;; I don't know how to get ange-ftp work to around it. | |
451 ;; | |
452 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
453 ;; containing spaces, but beware that the remote ftpd may not like them | |
454 ;; much. | |
455 ;; | |
456 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
457 ;; It needs to be reimplemented by modifying the parse-...-listing | |
458 ;; functions to convert the directory listing to ls -l format. | |
459 ;; | |
460 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
461 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
462 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
463 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
464 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
465 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
466 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
467 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
468 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
469 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
470 | |
471 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
472 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
473 ;; below. Ideas and constructive comments are especially welcome. | |
474 | |
475 ;; ange-ftp-lovers: | |
476 ;; | |
477 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
478 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
479 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
480 ;; the mailing list. | |
481 ;; | |
482 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
483 ;; list, please mail one of the following addresses: | |
484 ;; | |
485 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
486 ;; or | |
487 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
488 ;; | |
489 ;; Please don't forget the -request part. | |
490 ;; | |
491 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
492 ;; following addresses: | |
493 ;; | |
494 ;; ange-ftp-lovers@anorman.hpl.hp.com | |
495 ;; or | |
496 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
497 ;; | |
498 ;; Alternatively, there is a mailing list that only gets announcements of new | |
499 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
500 ;; subscribed to by e-mailing to the -request address as above. Please make | |
501 ;; it clear in the request which mailing list you wish to join. | |
502 | |
503 ;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
504 ;; from: | |
505 ;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
506 ;; or: | |
507 ;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
508 ;; or: | |
509 ;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
510 | |
511 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
512 ;; | |
513 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
1106 | 514 |
14169 | 515 ;; ----------------------------------------------------------- |
516 ;; Technical information on this package: | |
517 ;; ----------------------------------------------------------- | |
518 | |
519 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
520 ;; which is called by many primitives, and a few non-primitives, | |
521 ;; whenever they see a file name of the appropriate sort. | |
522 | |
523 ;; Checklist for adding non-UNIX support for TYPE | |
524 ;; | |
525 ;; The following functions may need TYPE versions: | |
526 ;; (not all functions will be needed for every OS) | |
527 ;; | |
528 ;; ange-ftp-fix-name-for-TYPE | |
529 ;; ange-ftp-fix-dir-name-for-TYPE | |
530 ;; ange-ftp-TYPE-host | |
531 ;; ange-ftp-TYPE-add-host | |
532 ;; ange-ftp-parse-TYPE-listing | |
533 ;; ange-ftp-TYPE-delete-file-entry | |
534 ;; ange-ftp-TYPE-add-file-entry | |
535 ;; ange-ftp-TYPE-file-name-as-directory | |
536 ;; ange-ftp-TYPE-make-compressed-filename | |
537 ;; ange-ftp-TYPE-file-name-sans-versions | |
538 ;; | |
539 ;; Variables: | |
540 ;; | |
541 ;; ange-ftp-TYPE-host-regexp | |
542 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
543 ;; | |
544 ;; Check the following functions for OS dependent coding: | |
545 ;; | |
546 ;; ange-ftp-host-type | |
547 ;; ange-ftp-guess-host-type | |
548 ;; ange-ftp-allow-child-lookup | |
549 | |
550 ;; Host type conventions: | |
551 ;; | |
552 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
553 ;; (mostly) follow the following conventions for remote host types. At | |
554 ;; least, I think that future code should try to follow these conventions, | |
555 ;; and the current code should eventually be made compliant. | |
556 ;; | |
557 ;; nil = local host type, whatever that is (probably unix). | |
558 ;; Think nil as in "not a remote host". This value is used by | |
559 ;; ange-ftp-dired-host-type for local buffers. | |
560 ;; | |
561 ;; t = a remote host of unknown type. Think t is in true, it's remote. | |
562 ;; Currently, 'unix is used as the default remote host type. | |
563 ;; Maybe we should use t. | |
564 ;; | |
565 ;; 'type = a remote host of TYPE type. | |
566 ;; | |
567 ;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
568 ;; program called list. This is currently only used for Unix | |
569 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
570 ;; is set to 'unix:dl. | |
571 | |
572 ;; Bug report codes: | |
573 ;; | |
574 ;; Because of their naive faith in this code, there are certain situations | |
575 ;; which the writers of this program believe could never happen. However, | |
576 ;; being realists they have put calls to `error' in the program at these | |
577 ;; points. These errors provide a code, which is an integer, greater than 1. | |
578 ;; To aid debugging. the error codes, and the functions in which they reside | |
579 ;; are listed below. | |
580 ;; | |
581 ;; 1: See ange-ftp-ls | |
582 ;; | |
1106 | 583 |
14169 | 584 ;; ----------------------------------------------------------- |
585 ;; Hall of fame: | |
586 ;; ----------------------------------------------------------- | |
587 ;; | |
588 ;; Thanks to Roland McGrath for improving the filename syntax handling, | |
589 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
590 ;; | |
591 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
592 ;; | |
593 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
594 ;; dired / shell auto-loading. | |
595 ;; | |
596 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
597 ;; bugfixes. | |
598 ;; | |
599 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
600 ;; VOS support, and hostname completion. | |
601 ;; | |
602 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
603 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
604 ;; bugfixes. | |
605 ;; | |
606 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
607 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
608 ;; auto-recognition of the host type. | |
609 ;; | |
610 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
611 ;; | |
612 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
613 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
614 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
615 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
616 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
617 ;; whose names I've forgotten who have helped to debug and fix problems with | |
618 ;; ange-ftp.el. | |
1106 | 619 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
620 ;;; Code: |
14169 | 621 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 |
1106 | 624 ;;;; ------------------------------------------------------------ |
625 ;;;; User customization variables. | |
626 ;;;; ------------------------------------------------------------ | |
627 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
628 (defvar ange-ftp-name-format |
14138
9856174aa877
(ange-ftp-name-format): Don't match "/:" or "/.:".
Karl Heuer <kwzh@gnu.org>
parents:
14040
diff
changeset
|
629 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
630 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
631 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
|
632 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
633 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 634 parenthesized expressions in REGEXP for the components (in that order).") |
635 | |
636 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
637 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
638 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
639 | |
640 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
641 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 642 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 643 |
644 (defvar ange-ftp-good-msgs | |
645 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 646 "*Regular expression matching ftp \"success\" messages.") |
1106 | 647 |
648 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
649 ;; Also CMS machines use a multiline 550- reply to say that you | |
650 ;; don't have write permission. ange-ftp gets into multi-line skip | |
651 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
652 ;; when it gets the 550 line, as it should. | |
653 | |
654 (defvar ange-ftp-skip-msgs | |
655 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
656 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
13089
c18fa2e296f9
(ange-ftp-dumb-unix-host): Avoid error if HOST is nil.
Richard M. Stallman <rms@gnu.org>
parents:
13005
diff
changeset
|
657 "^Data connection \\|" |
1106 | 658 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") |
7042 | 659 "*Regular expression matching ftp messages that can be ignored.") |
1106 | 660 |
661 (defvar ange-ftp-fatal-msgs | |
662 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
663 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 664 "*Regular expression matching ftp messages that indicate serious errors. |
665 These mean that the FTP process should (or already has) been killed.") | |
1106 | 666 |
667 (defvar ange-ftp-gateway-fatal-msgs | |
668 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
7042 | 669 "*Regular expression matching login failure messages from rlogin/telnet.") |
1106 | 670 |
671 (defvar ange-ftp-xfer-size-msgs | |
672 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
673 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
674 | |
675 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
676 "*Template used to create temporary files.") | |
677 | |
678 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
679 "*Template used to create temporary files when ftp-ing through a gateway. | |
680 Files starting with this prefix need to be accessible from BOTH the local | |
681 machine and the gateway machine, and need to have the SAME name on both | |
682 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
683 cross-mounted.") | |
684 | |
685 (defvar ange-ftp-netrc-filename "~/.netrc" | |
686 "*File in .netrc format to search for passwords.") | |
687 | |
688 (defvar ange-ftp-disable-netrc-security-check nil | |
689 "*If non-nil avoid checking permissions on the .netrc file.") | |
690 | |
691 (defvar ange-ftp-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
692 "*User name to use when none is specified in a file name. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
693 If non-nil but not a string, you are prompted for the name. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
694 If nil, the value of `ange-ftp-netrc-default-user' is used. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
695 If that is nil too, then your login name is used. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
696 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
697 To change the user name foir a host that you have already used in this |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
698 session, you must use `ange-ftp-set-user' to change the cached |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
699 information about that host.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
700 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
701 (defvar ange-ftp-netrc-default-user nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
702 "Alternate default user name to use when none is specified. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
703 This variable is set from the `default' command in your `.netrc' file, |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
704 if there is one.") |
1106 | 705 |
706 (defvar ange-ftp-default-password nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
707 "*Password to use when the user name equals `ange-ftp-default-user'.") |
1106 | 708 |
709 (defvar ange-ftp-default-account nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
710 "*Account to use when the user name equals `ange-ftp-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
711 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
712 (defvar ange-ftp-netrc-default-password nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
713 "*Password to use when the user name equals `ange-ftp-netrc-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
714 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
715 (defvar ange-ftp-netrc-default-account nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
716 "*Account to use when the user name equals `ange-ftp-netrc-default-user'.") |
1106 | 717 |
1174 | 718 (defvar ange-ftp-generate-anonymous-password t |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
719 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
720 If a string, then use that string as the password. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
721 If nil, prompt the user for a password.") |
1106 | 722 |
723 (defvar ange-ftp-dumb-unix-host-regexp nil | |
7042 | 724 "*If non-nil, regexp matching hosts on which `dir' command lists directory.") |
1106 | 725 |
726 (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
|
727 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 728 "\\.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
|
729 "\\.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
|
730 "\\.taz$\\|\\.tgz$") |
1106 | 731 "*If a file matches this regexp then it is transferred in binary mode.") |
732 | |
733 (defvar ange-ftp-gateway-host nil | |
734 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
735 | |
736 (defvar ange-ftp-local-host-regexp ".*" | |
7042 | 737 "*Regexp selecting hosts which can be reached directly with ftp. |
738 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
739 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.") |
1106 | 740 |
741 (defvar ange-ftp-gateway-program-interactive nil | |
7042 | 742 "*If non-nil then the gateway program should give a shell prompt. |
743 Both telnet and rlogin do something like this.") | |
1106 | 744 |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
745 (defvar ange-ftp-gateway-program remote-shell-program |
7042 | 746 "*Name of program to spawn a shell on the gateway machine. |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
747 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See |
7042 | 748 also the gateway variable above.") |
1106 | 749 |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
750 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
7042 | 751 "*Regexp matching prompt after complete login sequence on gateway machine. |
752 A match for this means the shell is now awaiting input. Make this regexp as | |
1106 | 753 strict as possible; it shouldn't match *anything* at all except the user's |
754 initial prompt. The above string will fail under most SUN-3's since it | |
755 matches the login banner.") | |
756 | |
757 (defvar ange-ftp-gateway-setup-term-command | |
758 (if (eq system-type 'hpux) | |
759 "stty -onlcr -echo\n" | |
760 "stty -echo nl\n") | |
7042 | 761 "*Set up terminal after logging in to the gateway machine. |
762 This command should stop the terminal from echoing each command, and | |
763 arrange to strip out trailing ^M characters.") | |
1106 | 764 |
765 (defvar ange-ftp-smart-gateway nil | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
766 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
767 Don't bother telnetting, etc., already connected to desired host transparently, |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
768 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.") |
1106 | 769 |
770 (defvar ange-ftp-smart-gateway-port "21" | |
771 "*Port on gateway machine to use when smart gateway is in operation.") | |
772 | |
773 (defvar ange-ftp-send-hash t | |
774 "*If non-nil, send the HASH command to the FTP client.") | |
775 | |
776 (defvar ange-ftp-binary-hash-mark-size nil | |
777 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
778 If NIL, this variable will be locally overridden if the FTP client outputs a | |
779 suitable response to the HASH command. If non-NIL then this value takes | |
780 precedence over the local value.") | |
781 | |
782 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
783 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
784 This variable is buffer-local and will be locally overridden if the FTP client | |
785 outputs a suitable response to the HASH command.") | |
786 | |
787 (defvar ange-ftp-process-verbose t | |
788 "*If non-NIL then be chatty about interaction with the FTP process.") | |
789 | |
790 (defvar ange-ftp-ftp-program-name "ftp" | |
791 "*Name of FTP program to run.") | |
792 | |
793 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
794 "*Name of FTP program to run when accessing non-local hosts. |
1106 | 795 Some AT&T folks claim to use something called `pftp' here.") |
796 | |
797 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
798 "*A list of arguments passed to the FTP program when started.") | |
799 | |
800 (defvar ange-ftp-nslookup-program nil | |
801 "*If non-NIL then a string naming nslookup program." ) | |
802 | |
803 (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
|
804 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 805 |
806 (defvar ange-ftp-retry-time 5 | |
7042 | 807 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
808 This might need to be increased for very slow connections.") | |
1106 | 809 |
810 (defvar ange-ftp-auto-save 0 | |
811 "If 1, allows ange-ftp files to be auto-saved. | |
812 If 0, suppresses auto-saving of ange-ftp files. | |
813 Don't use any other value.") | |
814 | |
815 ;;;; ------------------------------------------------------------ | |
816 ;;;; Hash table support. | |
817 ;;;; ------------------------------------------------------------ | |
818 | |
819 (require 'backquote) | |
820 | |
821 (defun ange-ftp-make-hashtable (&optional size) | |
822 "Make an obarray suitable for use as a hashtable. | |
823 SIZE, if supplied, should be a prime number." | |
824 (make-vector (or size 31) 0)) | |
825 | |
826 (defun ange-ftp-map-hashtable (fun tbl) | |
827 "Call FUNCTION on each key and value in HASHTABLE." | |
828 (mapatoms | |
829 (function | |
830 (lambda (sym) | |
831 (funcall fun (get sym 'key) (get sym 'val)))) | |
832 tbl)) | |
833 | |
834 (defmacro ange-ftp-make-hash-key (key) | |
835 "Convert KEY into a suitable key for a hashtable." | |
836 (` (if (stringp (, key)) | |
837 (, key) | |
838 (prin1-to-string (, key))))) | |
839 | |
840 (defun ange-ftp-get-hash-entry (key tbl) | |
841 "Return the value associated with KEY in HASHTABLE." | |
842 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
843 (and sym (get sym 'val)))) | |
844 | |
845 (defun ange-ftp-put-hash-entry (key val tbl) | |
846 "Record an association between KEY and VALUE in HASHTABLE." | |
847 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
848 (put sym 'val val) | |
849 (put sym 'key key))) | |
850 | |
851 (defun ange-ftp-del-hash-entry (key tbl) | |
852 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
853 (let* ((len (length tbl)) | |
854 (new-tbl (ange-ftp-make-hashtable len)) | |
855 (i (1- len))) | |
856 (ange-ftp-map-hashtable | |
857 (function | |
858 (lambda (k v) | |
859 (or (equal k key) | |
860 (ange-ftp-put-hash-entry k v new-tbl)))) | |
861 tbl) | |
862 (while (>= i 0) | |
863 (aset tbl i (aref new-tbl i)) | |
864 (setq i (1- i))) | |
865 tbl)) | |
866 | |
867 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
868 "Return whether there is an association for KEY in TABLE." | |
869 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
870 | |
871 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 872 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 873 (sort (all-completions "" tbl) |
874 (function string-lessp))) | |
875 | |
876 ;;;; ------------------------------------------------------------ | |
877 ;;;; Internal variables. | |
878 ;;;; ------------------------------------------------------------ | |
879 | |
880 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
881 "Buffer name to hold directory listing data received from ftp process.") | |
882 | |
883 (defvar ange-ftp-netrc-modtime nil | |
884 "Last modified time of the netrc file from file-attributes.") | |
885 | |
886 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
887 "Hash table holding associations between HOST, USER pairs.") | |
888 | |
889 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
890 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
891 | |
892 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
893 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
894 | |
895 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
896 "Hash table for storing directories and their respective files.") | |
897 | |
898 (defvar ange-ftp-ls-cache-lsargs nil | |
899 "Last set of args used by ange-ftp-ls.") | |
900 | |
901 (defvar ange-ftp-ls-cache-file nil | |
902 "Last file passed to ange-ftp-ls.") | |
903 | |
904 (defvar ange-ftp-ls-cache-res nil | |
905 "Last result returned from ange-ftp-ls.") | |
906 | |
907 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
908 | |
909 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
910 | |
911 ;; These are local variables in each FTP process buffer. | |
912 (defvar ange-ftp-hash-mark-unit nil) | |
913 (defvar ange-ftp-hash-mark-count nil) | |
914 (defvar ange-ftp-xfer-size nil) | |
915 (defvar ange-ftp-process-string nil) | |
916 (defvar ange-ftp-process-result-line nil) | |
917 (defvar ange-ftp-process-busy nil) | |
918 (defvar ange-ftp-process-result nil) | |
919 (defvar ange-ftp-process-multi-skip nil) | |
920 (defvar ange-ftp-process-msg nil) | |
921 (defvar ange-ftp-process-continue nil) | |
922 (defvar ange-ftp-last-percent nil) | |
923 | |
924 ;; These variables are bound by one function and examined by another. | |
925 ;; Leave them void globally for error checking. | |
926 (defvar ange-ftp-this-file) | |
927 (defvar ange-ftp-this-dir) | |
928 (defvar ange-ftp-this-user) | |
929 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
930 (defvar ange-ftp-this-msg) |
1106 | 931 (defvar ange-ftp-completion-ignored-pattern) |
932 (defvar ange-ftp-trample-marker) | |
933 | |
934 ;; New error symbols. | |
935 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
936 ;; (put 'ftp-error 'error-message "FTP error") | |
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)))) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
947 (if noninteractive |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
948 msg |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
949 (if (>= (length msg) max) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
950 ;; Take just the last MAX - 3 chars of the string. |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
951 (setq msg (concat "> " (substring msg (- 3 max))))) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
952 (message "%s" msg)))) |
1106 | 953 |
954 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
955 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
956 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
|
957 only return the directory part of FILE." |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
958 (save-match-data |
1106 | 959 (if (and default-directory |
960 (string-match (concat "^" | |
961 (regexp-quote default-directory) | |
962 ".") file)) | |
963 (setq file (substring file (1- (match-end 0))))) | |
964 (if (and new | |
965 (string-equal (file-name-nondirectory file) | |
966 (file-name-nondirectory new))) | |
967 (setq file (file-name-directory file))) | |
968 (or file "./"))) | |
969 | |
970 ;;;; ------------------------------------------------------------ | |
971 ;;;; User / Host mapping support. | |
972 ;;;; ------------------------------------------------------------ | |
973 | |
974 (defun ange-ftp-set-user (host user) | |
975 "For a given HOST, set or change the default USER." | |
976 (interactive "sHost: \nsUser: ") | |
977 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
978 | |
979 (defun ange-ftp-get-user (host) | |
980 "Given a HOST, return the default USER." | |
981 (ange-ftp-parse-netrc) | |
982 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
983 (or user | |
984 (prog1 | |
985 (setq user | |
986 (cond ((stringp ange-ftp-default-user) | |
987 ;; We have a default name. Use it. | |
988 ange-ftp-default-user) | |
989 (ange-ftp-default-user | |
990 ;; Ask the user. | |
991 (let ((enable-recursive-minibuffers t)) | |
992 (read-string (format "User for %s: " host) | |
993 (user-login-name)))) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
994 (ange-ftp-netrc-default-user) |
1106 | 995 ;; Default to the user's login name. |
996 (t | |
997 (user-login-name)))) | |
998 (ange-ftp-set-user host user))))) | |
999 | |
1000 ;;;; ------------------------------------------------------------ | |
1001 ;;;; Password support. | |
1002 ;;;; ------------------------------------------------------------ | |
1003 | |
1004 (defun ange-ftp-read-passwd (prompt &optional default) | |
1005 "Read a password, echoing `.' for each character typed. | |
1006 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
1007 Optional DEFAULT is password to start with." | |
1008 (let ((pass (if default default "")) | |
1009 (c 0) | |
1010 (echo-keystrokes 0) | |
1011 (cursor-in-echo-area t)) | |
1012 (while (progn (message "%s%s" | |
1013 prompt | |
1014 (make-string (length pass) ?.)) | |
1015 (setq c (read-char)) | |
1016 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1017 (if (= c ?\C-u) | |
1018 (setq pass "") | |
1019 (if (and (/= c ?\b) (/= c ?\177)) | |
1020 (setq pass (concat pass (char-to-string c))) | |
1021 (if (> (length pass) 0) | |
1022 (setq pass (substring pass 0 -1)))))) | |
1023 (message "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1024 (ange-ftp-repaint-minibuffer) |
1106 | 1025 pass)) |
1026 | |
1027 (defmacro ange-ftp-generate-passwd-key (host user) | |
1028 (` (concat (, host) "/" (, user)))) | |
1029 | |
1030 (defmacro ange-ftp-lookup-passwd (host user) | |
1031 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1032 ange-ftp-passwd-hashtable))) | |
1033 | |
1034 (defun ange-ftp-set-passwd (host user passwd) | |
1035 "For a given HOST and USER, set or change the associated PASSWORD." | |
1036 (interactive (list (read-string "Host: ") | |
1037 (read-string "User: ") | |
1038 (ange-ftp-read-passwd "Password: "))) | |
1039 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1040 passwd | |
1041 ange-ftp-passwd-hashtable)) | |
1042 | |
1043 (defun ange-ftp-get-host-with-passwd (user) | |
1044 "Given a USER, return a host we know the password for." | |
1045 (ange-ftp-parse-netrc) | |
1046 (catch 'found-one | |
1047 (ange-ftp-map-hashtable | |
1048 (function (lambda (host val) | |
1049 (if (ange-ftp-lookup-passwd host user) | |
1050 (throw 'found-one host)))) | |
1051 ange-ftp-user-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1052 (save-match-data |
1106 | 1053 (ange-ftp-map-hashtable |
1054 (function | |
1055 (lambda (key value) | |
1056 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1057 (let ((host (substring key 0 (match-beginning 1)))) | |
1058 (if (and (string-equal user (substring key (match-end 1))) | |
1059 value) | |
1060 (throw 'found-one host)))))) | |
1061 ange-ftp-passwd-hashtable)) | |
1062 nil)) | |
1063 | |
1064 (defun ange-ftp-get-passwd (host user) | |
1065 "Return the password for specified HOST and USER, asking user if necessary." | |
1066 (ange-ftp-parse-netrc) | |
1067 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1068 ;; look up password in the hash table first; user might have overridden the |
1106 | 1069 ;; defaults. |
1070 (cond ((ange-ftp-lookup-passwd host user)) | |
1071 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1072 ;; See if default user and password set. |
1106 | 1073 ((and (stringp ange-ftp-default-user) |
1074 ange-ftp-default-password | |
1075 (string-equal user ange-ftp-default-user)) | |
1076 ange-ftp-default-password) | |
1077 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1078 ;; See if default user and password set from .netrc file. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1079 ((and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1080 ange-ftp-netrc-default-password |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1081 (string-equal user ange-ftp-netrc-default-user)) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1082 ange-ftp-netrc-default-password) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1083 |
1106 | 1084 ;; anonymous ftp password is handled specially since there is an |
1085 ;; unwritten rule about how that is used on the Internet. | |
1086 ((and (or (string-equal user "anonymous") | |
1087 (string-equal user "ftp")) | |
1088 ange-ftp-generate-anonymous-password) | |
1089 (if (stringp ange-ftp-generate-anonymous-password) | |
1090 ange-ftp-generate-anonymous-password | |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
1091 user-mail-address)) |
1106 | 1092 |
1093 ;; see if same user has logged in to other hosts; if so then prompt | |
1094 ;; with the password that was used there. | |
1095 (t | |
1096 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1097 (passwd (if other | |
1098 | |
1099 ;; found another machine with the same user. | |
1100 ;; Try that account. | |
1101 (ange-ftp-read-passwd | |
1102 (format "passwd for %s@%s (same as %s@%s): " | |
1103 user host user other) | |
1104 (ange-ftp-lookup-passwd other user)) | |
1105 | |
1106 ;; I give up. Ask the user for the password. | |
1107 (ange-ftp-read-passwd | |
1108 (format "Password for %s@%s: " user host))))) | |
1109 (ange-ftp-set-passwd host user passwd) | |
1110 passwd)))) | |
1111 | |
1112 ;;;; ------------------------------------------------------------ | |
1113 ;;;; Account support | |
1114 ;;;; ------------------------------------------------------------ | |
1115 | |
1116 ;; Account passwords must be either specified in the .netrc file, or set | |
1117 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1118 ;; check to see whether the FTP process is actually prompting for an account | |
1119 ;; password. | |
1120 | |
1121 (defun ange-ftp-set-account (host user account) | |
1122 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1123 (interactive (list (read-string "Host: ") | |
1124 (read-string "User: ") | |
1125 (ange-ftp-read-passwd "Account password: "))) | |
1126 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1127 account | |
1128 ange-ftp-account-hashtable)) | |
1129 | |
1130 (defun ange-ftp-get-account (host user) | |
1131 "Given a HOST and USER, return the FTP account." | |
1132 (ange-ftp-parse-netrc) | |
1133 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1134 ange-ftp-account-hashtable) | |
1135 (and (stringp ange-ftp-default-user) | |
1136 (string-equal user ange-ftp-default-user) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1137 ange-ftp-default-account) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1138 (and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1139 (string-equal user ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1140 ange-ftp-netrc-default-account))) |
1106 | 1141 |
1142 ;;;; ------------------------------------------------------------ | |
1143 ;;;; ~/.netrc support | |
1144 ;;;; ------------------------------------------------------------ | |
1145 | |
1146 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1147 "Return the filename that FILE references, following all symbolic links." |
1106 | 1148 (let (temp) |
1149 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1150 (setq file | |
1151 (if (file-name-absolute-p temp) | |
1152 temp | |
1153 (concat (file-name-directory file) temp))))) | |
1154 file) | |
1155 | |
7042 | 1156 ;; Move along current line looking for the value of the TOKEN. |
1157 ;; Valid separators between TOKEN and its value are commas and | |
1158 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1159 | |
1106 | 1160 (defun ange-ftp-parse-netrc-token (token limit) |
1161 (if (search-forward token limit t) | |
1162 (let (beg) | |
1163 (skip-chars-forward ", \t\r\n" limit) | |
1164 (if (eq (following-char) ?\") ;quoted token value | |
1165 (progn (forward-char 1) | |
1166 (setq beg (point)) | |
1167 (skip-chars-forward "^\"" limit) | |
1168 (forward-char 1) | |
1169 (buffer-substring beg (1- (point)))) | |
1170 (setq beg (point)) | |
1171 (skip-chars-forward "^, \t\r\n" limit) | |
1172 (buffer-substring beg (point)))))) | |
1173 | |
7042 | 1174 ;; Extract the values for the tokens `machine', `login', |
1175 ;; `password' and `account' in the current buffer. If successful, | |
1176 ;; record the information found. | |
1177 | |
1106 | 1178 (defun ange-ftp-parse-netrc-group () |
1179 (let ((start (point)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1180 (end (save-excursion |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1181 (if (looking-at "machine\\>") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1182 ;; Skip `machine' and the machine name that follows. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1183 (progn |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1184 (skip-chars-forward "^ \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1185 (skip-chars-forward " \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1186 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1187 ;; Skip `default'. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1188 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1189 ;; Find start of the next `machine' or `default' |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1190 ;; or the end of the buffer. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1191 (if (re-search-forward "machine\\>\\|default\\>" nil t) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1192 (match-beginning 0) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1193 (point-max)))) |
1106 | 1194 machine login password account) |
1195 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1196 login (ange-ftp-parse-netrc-token "login" end) | |
1197 password (ange-ftp-parse-netrc-token "password" end) | |
1198 account (ange-ftp-parse-netrc-token "account" end)) | |
1199 (if (and machine login) | |
1200 ;; found a `machine` token. | |
1201 (progn | |
1202 (ange-ftp-set-user machine login) | |
1203 (ange-ftp-set-passwd machine login password) | |
1204 (and account | |
1205 (ange-ftp-set-account machine login account))) | |
1206 (goto-char start) | |
1207 (if (search-forward "default" end t) | |
1208 ;; found a `default' token | |
1209 (progn | |
1210 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1211 password (ange-ftp-parse-netrc-token "password" end) | |
1212 account (ange-ftp-parse-netrc-token "account" end)) | |
1213 (and login | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1214 (setq ange-ftp-netrc-default-user login)) |
1106 | 1215 (and password |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1216 (setq ange-ftp-netrc-default-password password)) |
1106 | 1217 (and account |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1218 (setq ange-ftp-netrc-default-account account))))) |
1106 | 1219 (goto-char end))) |
1220 | |
7042 | 1221 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1222 ;; the correct permissions then extract the \`machine\', \`login\', | |
1223 ;; \`password\' and \`account\' information from within. | |
1224 | |
1106 | 1225 (defun ange-ftp-parse-netrc () |
1226 ;; We set this before actually doing it to avoid the possibility | |
1227 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1228 (interactive) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1229 (let (file attr) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1230 (let ((default-directory "/")) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1231 (setq file (ange-ftp-chase-symlinks |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1232 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1233 (setq attr (ange-ftp-real-file-attributes file))) |
1106 | 1234 (if (and attr ; file exists. |
1235 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1236 (save-match-data |
1106 | 1237 (if (or ange-ftp-disable-netrc-security-check |
1238 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1239 (string-match ".r..------" (nth 8 attr)))) | |
1240 (save-excursion | |
1241 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1242 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1243 ;; with the bit of logic below we should be able to have | |
1244 ;; encrypted .netrc files. | |
1245 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1246 (ange-ftp-real-insert-file-contents file) | |
1247 (setq buffer-file-name file) | |
1248 (setq default-directory (file-name-directory file)) | |
1249 (normal-mode t) | |
1250 (mapcar 'funcall find-file-hooks) | |
1251 (setq buffer-file-name nil) | |
1252 (goto-char (point-min)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1253 (skip-chars-forward " \t\n") |
1106 | 1254 (while (not (eobp)) |
1255 (ange-ftp-parse-netrc-group)) | |
1256 (kill-buffer (current-buffer))) | |
1257 (ange-ftp-message "%s either not owned by you or badly protected." | |
1258 ange-ftp-netrc-filename) | |
1259 (sit-for 1)) | |
1260 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1261 | |
7042 | 1262 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1263 ;; completion is done in the root directory. | |
1264 | |
1106 | 1265 (defun ange-ftp-generate-root-prefixes () |
1266 (ange-ftp-parse-netrc) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1267 (save-match-data |
1106 | 1268 (let (res) |
1269 (ange-ftp-map-hashtable | |
1270 (function | |
1271 (lambda (key value) | |
1272 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1273 (let ((host (substring key 0 (match-beginning 1))) | |
1274 (user (substring key (match-end 1)))) | |
1275 (setq res (cons (list (concat user "@" host ":")) | |
1276 res)))))) | |
1277 ange-ftp-passwd-hashtable) | |
1278 (ange-ftp-map-hashtable | |
1279 (function (lambda (host user) | |
1280 (setq res (cons (list (concat host ":")) | |
1281 res)))) | |
1282 ange-ftp-user-hashtable) | |
1283 (or res (list nil))))) | |
1284 | |
1285 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1286 ;;;; Remote file name syntax support. |
1106 | 1287 ;;;; ------------------------------------------------------------ |
1288 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1289 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1290 "Extract the Nth ftp file name component from NS." |
1106 | 1291 (` (let ((elt (nth (, n) (, ns)))) |
1292 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1293 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1294 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1295 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1296 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1297 |
7042 | 1298 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1299 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1300 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1301 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1302 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1303 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1304 ange-ftp-ftp-name-res |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1305 (save-match-data |
13311
f760b9b1cfc7
(ange-ftp-ftp-name,ange-ftp-replace-name-component): Use posix-string-match
Erik Naggum <erik@naggum.no>
parents:
13278
diff
changeset
|
1306 (if (posix-string-match (car ange-ftp-name-format) name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1307 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1308 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1309 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1310 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1311 (if (zerop (length user)) |
1312 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1313 (list host user name)) |
1106 | 1314 nil))))) |
1315 | |
7042 | 1316 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1317 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1318 (defun ange-ftp-replace-name-component (fullname name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1319 (save-match-data |
13311
f760b9b1cfc7
(ange-ftp-ftp-name,ange-ftp-replace-name-component): Use posix-string-match
Erik Naggum <erik@naggum.no>
parents:
13278
diff
changeset
|
1320 (if (posix-string-match (car ange-ftp-name-format) fullname) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1321 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1322 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1323 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1324 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1325 (substring fullname (match-end elt))))))) |
1106 | 1326 |
1327 ;;;; ------------------------------------------------------------ | |
1328 ;;;; Miscellaneous utils. | |
1329 ;;;; ------------------------------------------------------------ | |
1330 | |
1331 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1332 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1333 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1334 (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
|
1335 "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
|
1336 (message nil)) |
1106 | 1337 |
7042 | 1338 ;; Return the name of the buffer that collects output from the ftp process |
1339 ;; connected to the given HOST and USER pair. | |
1106 | 1340 (defun ange-ftp-ftp-process-buffer (host user) |
1341 (concat "*ftp " user "@" host "*")) | |
1342 | |
7042 | 1343 ;; Display the last chunk of output from the ftp process for the given HOST |
1344 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1345 (defun ange-ftp-error (host user msg) |
1346 (let ((cur (selected-window)) | |
1347 (pop-up-windows t)) | |
1348 (pop-to-buffer | |
1349 (get-buffer-create | |
1350 (ange-ftp-ftp-process-buffer host user))) | |
1351 (goto-char (point-max)) | |
1352 (select-window cur)) | |
1353 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1354 | |
1355 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1356 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1357 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1358 (ange-ftp-ftp-name buffer-file-name)) |
10407
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
1359 (auto-save-mode ange-ftp-auto-save))) |
1106 | 1360 |
1361 (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
|
1362 "Kill the FTP process associated with BUFFER. |
1233 | 1363 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1364 then kill the related ftp process." |
1365 (interactive "bKill FTP process associated with buffer: ") | |
1366 (if (null buffer) | |
1367 (setq buffer (current-buffer))) | |
1368 (let ((file (or (buffer-file-name) default-directory))) | |
1369 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1370 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1371 (if parsed |
1372 (let ((host (nth 0 parsed)) | |
1373 (user (nth 1 parsed))) | |
1374 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1375 | |
1376 (defun ange-ftp-quote-string (string) | |
1377 "Quote any characters in STRING that may confuse the ftp process." | |
1378 (apply (function concat) | |
1379 (mapcar (function | |
1380 (lambda (char) | |
1381 (if (or (<= char ? ) | |
1382 (> char ?\~) | |
1383 (= char ?\") | |
1384 (= char ?\\)) | |
1385 (vector ?\\ char) | |
1386 (vector char)))) | |
1387 string))) | |
1388 | |
1389 (defun ange-ftp-barf-if-not-directory (directory) | |
1390 (or (file-directory-p directory) | |
1391 (signal 'file-error | |
1392 (list "Opening directory" | |
1393 (if (file-exists-p directory) | |
1394 "not a directory" | |
1395 "no such file or directory") | |
1396 directory)))) | |
1397 | |
1398 ;;;; ------------------------------------------------------------ | |
1399 ;;;; FTP process filter support. | |
1400 ;;;; ------------------------------------------------------------ | |
1401 | |
1402 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1403 "Look at the given LINE from the ftp process PROC. |
1404 Try to categorize it into one of four categories: | |
1405 good, skip, fatal, or unknown." | |
1106 | 1406 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1407 (setq ange-ftp-xfer-size | |
1408 (ash (string-to-int (substring line | |
1409 (match-beginning 1) | |
1410 (match-end 1))) | |
1411 -10))) | |
1412 ((string-match ange-ftp-skip-msgs line) | |
1413 t) | |
1414 ((string-match ange-ftp-good-msgs line) | |
1415 (setq ange-ftp-process-busy nil | |
1416 ange-ftp-process-result t | |
1417 ange-ftp-process-result-line line)) | |
9664 | 1418 ;; Check this before checking for errors. |
1419 ;; Otherwise the last line of these three seems to be an error: | |
1420 ;; 230-see a significant impact from the move. For those of you who can't | |
1421 ;; 230-use DNS to resolve hostnames and get an error message like | |
1422 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
9662
ca4987708cc0
(ange-ftp-process-handle-line): Check for a
Richard M. Stallman <rms@gnu.org>
parents:
9627
diff
changeset
|
1423 ((string-match ange-ftp-multi-msgs line) |
ca4987708cc0
(ange-ftp-process-handle-line): Check for a
Richard M. Stallman <rms@gnu.org>
parents:
9627
diff
changeset
|
1424 (setq ange-ftp-process-multi-skip t)) |
1106 | 1425 ((string-match ange-ftp-fatal-msgs line) |
1426 (delete-process proc) | |
1427 (setq ange-ftp-process-busy nil | |
1428 ange-ftp-process-result-line line)) | |
1429 (ange-ftp-process-multi-skip | |
1430 t) | |
1431 (t | |
1432 (setq ange-ftp-process-busy nil | |
1433 ange-ftp-process-result-line line)))) | |
1434 | |
1435 (defun ange-ftp-set-xfer-size (host user bytes) | |
1436 "Set the size of the next FTP transfer in bytes." | |
1437 (let ((proc (ange-ftp-get-process host user))) | |
1438 (if proc | |
1439 (let ((buf (process-buffer proc))) | |
1440 (if buf | |
1441 (save-excursion | |
1442 (set-buffer buf) | |
1443 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1444 | |
1445 (defun ange-ftp-process-handle-hash (str) | |
1446 "Remove hash marks from STRING and display count so far." | |
1447 (setq str (concat (substring str 0 (match-beginning 0)) | |
1448 (substring str (match-end 0))) | |
1449 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1450 (match-beginning 0)) | |
1451 ange-ftp-hash-mark-count)) | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1452 (and ange-ftp-hash-mark-unit |
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1453 ange-ftp-process-msg |
1106 | 1454 ange-ftp-process-verbose |
1455 (not (eq (selected-window) (minibuffer-window))) | |
1456 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1457 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1458 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1459 ange-ftp-hash-mark-count) | |
1460 -6))) | |
1461 (if (zerop ange-ftp-xfer-size) | |
1462 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1463 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1464 ;; cut out the redisplay of identical %-age messages. | |
1465 (if (not (eq percent ange-ftp-last-percent)) | |
1466 (progn | |
1467 (setq ange-ftp-last-percent percent) | |
1468 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1469 str) | |
1470 | |
7042 | 1471 ;; Call the function specified by CONT. CONT can be either a function |
1472 ;; or a list of a function and some args. The first two parameters | |
1473 ;; passed to the function will be RESULT and LINE. The remaining args | |
1474 ;; will be taken from CONT if a list was passed. | |
1475 | |
1106 | 1476 (defun ange-ftp-call-cont (cont result line) |
1477 (if cont | |
1478 (if (and (listp cont) | |
1479 (not (eq (car cont) 'lambda))) | |
1480 (apply (car cont) result line (cdr cont)) | |
1481 (funcall cont result line)))) | |
1482 | |
7042 | 1483 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1484 ;; on to ange-ftp-process-handle-line to deal with. | |
1485 | |
1106 | 1486 (defun ange-ftp-process-filter (proc str) |
1487 (let ((buffer (process-buffer proc)) | |
1488 (old-buffer (current-buffer))) | |
1489 | |
1490 ;; see if the buffer is still around... it could have been deleted. | |
1491 (if (buffer-name buffer) | |
1492 (unwind-protect | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1493 (progn |
1106 | 1494 (set-buffer (process-buffer proc)) |
1495 | |
1496 ;; handle hash mark printing | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1497 (and ange-ftp-process-busy |
1106 | 1498 (string-match "^#+$" str) |
1499 (setq str (ange-ftp-process-handle-hash str))) | |
6822
69c4ca88cf5e
(ange-ftp-process-filter, ange-ftp-gwp-filter): Call comint-output-filter.
Karl Heuer <kwzh@gnu.org>
parents:
6309
diff
changeset
|
1500 (comint-output-filter proc str) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1501 ;; Replace STR by the result of the comint processing. |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1502 (setq str (buffer-substring comint-last-output-start |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1503 (process-mark proc))) |
1106 | 1504 (if ange-ftp-process-busy |
1505 (progn | |
1506 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1507 str)) | |
1508 | |
1509 ;; if we gave an empty password to the USER command earlier | |
1510 ;; then we should send a null password now. | |
1511 (if (string-match "Password: *$" ange-ftp-process-string) | |
1512 (send-string proc "\n")))) | |
1513 (while (and ange-ftp-process-busy | |
1514 (string-match "\n" ange-ftp-process-string)) | |
1515 (let ((line (substring ange-ftp-process-string | |
1516 0 | |
1517 (match-beginning 0)))) | |
1518 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1519 (match-end 0))) | |
1520 (while (string-match "^ftp> *" line) | |
1521 (setq line (substring line (match-end 0)))) | |
1522 (ange-ftp-process-handle-line line proc))) | |
1523 | |
1524 ;; has the ftp client finished? if so then do some clean-up | |
1525 ;; actions. | |
1526 (if (not ange-ftp-process-busy) | |
1527 (progn | |
1528 ;; reset the xfer size | |
1529 (setq ange-ftp-xfer-size 0) | |
1530 | |
1531 ;; issue the "done" message since we've finished. | |
1532 (if (and ange-ftp-process-msg | |
1533 ange-ftp-process-verbose | |
1534 ange-ftp-process-result) | |
1535 (progn | |
1536 (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
|
1537 (ange-ftp-repaint-minibuffer) |
1106 | 1538 (setq ange-ftp-process-msg nil))) |
1539 | |
1540 ;; is there a continuation we should be calling? if so, | |
1541 ;; we'd better call it, making sure we only call it once. | |
1542 (if ange-ftp-process-continue | |
1543 (let ((cont ange-ftp-process-continue)) | |
1544 (setq ange-ftp-process-continue nil) | |
1545 (ange-ftp-call-cont cont | |
1546 ange-ftp-process-result | |
1547 ange-ftp-process-result-line)))))) | |
1548 (set-buffer old-buffer))))) | |
1549 | |
1550 (defun ange-ftp-process-sentinel (proc str) | |
1551 "When ftp process changes state, nuke all file-entries in cache." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1552 (let ((name (process-name proc))) |
13311
f760b9b1cfc7
(ange-ftp-ftp-name,ange-ftp-replace-name-component): Use posix-string-match
Erik Naggum <erik@naggum.no>
parents:
13278
diff
changeset
|
1553 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1554 (let ((user (substring name (match-beginning 1) (match-end 1))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1555 (host (substring name (match-beginning 2) (match-end 2)))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1556 (ange-ftp-wipe-file-entries host user)))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1557 (setq ange-ftp-ls-cache-file nil)) |
1106 | 1558 |
1559 ;;;; ------------------------------------------------------------ | |
1560 ;;;; Gateway support. | |
1561 ;;;; ------------------------------------------------------------ | |
1562 | |
1563 (defun ange-ftp-use-gateway-p (host) | |
1564 "Returns whether to access this host via a normal (non-smart) gateway." | |
1565 ;; yes, I know that I could simplify the following expression, but it is | |
1566 ;; clearer (to me at least) this way. | |
1567 (and (not ange-ftp-smart-gateway) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1568 (save-match-data |
1106 | 1569 (not (string-match ange-ftp-local-host-regexp host))))) |
1570 | |
1571 (defun ange-ftp-use-smart-gateway-p (host) | |
1572 "Returns whether to access this host via a smart gateway." | |
1573 (and ange-ftp-smart-gateway | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1574 (save-match-data |
1106 | 1575 (not (string-match ange-ftp-local-host-regexp host))))) |
1576 | |
1577 | |
1578 ;;; ------------------------------------------------------------ | |
1579 ;;; Temporary file location and deletion... | |
1580 ;;; ------------------------------------------------------------ | |
1581 | |
1582 (defvar ange-ftp-tmp-name-files ()) | |
1583 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1584 (defvar ange-ftp-pid nil) | |
1585 | |
1586 (defun ange-ftp-get-pid () | |
1587 "Half-hearted attempt to get the current process's id." | |
1588 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1589 | |
1590 (defun ange-ftp-make-tmp-name (host) | |
1591 "This routine will return the name of a new file." | |
1592 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1593 ange-ftp-gateway-tmp-name-template | |
1594 ange-ftp-tmp-name-template)) | |
1595 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1596 (start ?a) | |
1597 file entry) | |
1598 (while | |
1599 (progn | |
1600 (setq file (format "%s%c%s" template start pid)) | |
1601 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1602 (or (memq entry ange-ftp-tmp-name-files) | |
1603 (ange-ftp-real-file-exists-p file))) | |
1604 (if (> (setq start (1+ start)) ?z) | |
1605 (progn | |
1606 (setq template (concat template "X")) | |
1607 (setq start ?a)))) | |
1608 (setq ange-ftp-tmp-name-files | |
1609 (cons entry ange-ftp-tmp-name-files)) | |
1610 file)) | |
1611 | |
1612 (defun ange-ftp-del-tmp-name (temp) | |
1613 (setq ange-ftp-tmp-name-files | |
1614 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1615 ange-ftp-tmp-name-files)) | |
1616 (condition-case () | |
1617 (ange-ftp-real-delete-file temp) | |
1618 (error nil))) | |
1619 | |
1620 ;;;; ------------------------------------------------------------ | |
1621 ;;;; Interactive gateway program support. | |
1622 ;;;; ------------------------------------------------------------ | |
1623 | |
1624 (defvar ange-ftp-gwp-running t) | |
1625 (defvar ange-ftp-gwp-status nil) | |
1626 | |
1627 (defun ange-ftp-gwp-sentinel (proc str) | |
1628 (setq ange-ftp-gwp-running nil)) | |
1629 | |
1630 (defun ange-ftp-gwp-filter (proc str) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1631 (comint-output-filter proc str) |
13005
35c7fa318961
(ange-ftp-gwp-filter): Go to process buffer before getting text from it.
Richard M. Stallman <rms@gnu.org>
parents:
12977
diff
changeset
|
1632 (save-excursion |
35c7fa318961
(ange-ftp-gwp-filter): Go to process buffer before getting text from it.
Richard M. Stallman <rms@gnu.org>
parents:
12977
diff
changeset
|
1633 (set-buffer (process-buffer proc)) |
35c7fa318961
(ange-ftp-gwp-filter): Go to process buffer before getting text from it.
Richard M. Stallman <rms@gnu.org>
parents:
12977
diff
changeset
|
1634 ;; Replace STR by the result of the comint processing. |
35c7fa318961
(ange-ftp-gwp-filter): Go to process buffer before getting text from it.
Richard M. Stallman <rms@gnu.org>
parents:
12977
diff
changeset
|
1635 (setq str (buffer-substring comint-last-output-start (process-mark proc)))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1636 (cond ((string-match "login: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1637 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1638 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1639 (let ((ange-ftp-default-user t)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1640 (ange-ftp-get-user ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1641 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1642 ((string-match "Password: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1643 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1644 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1645 (ange-ftp-get-passwd ange-ftp-gateway-host |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1646 (ange-ftp-get-user |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1647 ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1648 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1649 ((string-match ange-ftp-gateway-fatal-msgs str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1650 (delete-process proc) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1651 (setq ange-ftp-gwp-running nil)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1652 ((string-match ange-ftp-gateway-prompt-pattern str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1653 (setq ange-ftp-gwp-running nil |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1654 ange-ftp-gwp-status t)))) |
1106 | 1655 |
1656 (defun ange-ftp-gwp-start (host user name args) | |
1657 "Login to the gateway machine and fire up an ftp process." | |
1658 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1659 ;; It would be nice to make process-connection-type nil, |
1660 ;; but that doesn't work: ftp never responds. | |
1661 ;; Can anyone find a fix for that? | |
1662 (proc (let ((process-connection-type t)) | |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1663 (start-process name name |
7042 | 1664 ange-ftp-gateway-program |
1665 ange-ftp-gateway-host))) | |
1106 | 1666 (ftp (mapconcat (function identity) args " "))) |
1667 (process-kill-without-query proc) | |
1668 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1669 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1670 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1671 (set-buffer (process-buffer proc)) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1672 (internal-ange-ftp-mode) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1673 (set-marker (process-mark proc) (point))) |
1106 | 1674 (setq ange-ftp-gwp-running t |
1675 ange-ftp-gwp-status nil) | |
1676 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1677 (while ange-ftp-gwp-running ;perform login sequence | |
1678 (accept-process-output proc)) | |
1679 (if (not ange-ftp-gwp-status) | |
1680 (ange-ftp-error host user "unable to login to gateway")) | |
1681 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1682 (setq ange-ftp-gwp-running t | |
1683 ange-ftp-gwp-status nil) | |
1684 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1685 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1686 (accept-process-output proc)) | |
1687 (if (not ange-ftp-gwp-status) | |
1688 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1689 (setq ange-ftp-gwp-running t | |
1690 ange-ftp-gwp-status nil) | |
1691 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1692 proc)) | |
1693 | |
1694 ;;;; ------------------------------------------------------------ | |
1695 ;;;; Support for sending commands to the ftp process. | |
1696 ;;;; ------------------------------------------------------------ | |
1697 | |
1698 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1699 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1700 MSG is an optional message to output before and after the command. | |
1701 If CONT is non-NIL then it is either a function or a list of function and | |
1702 some arguments. The function will be called when the ftp command has completed. | |
1703 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1704 is whether the command was successful, and LINE is the line from the FTP | |
1705 process that caused the command to complete. | |
1706 If NOWAIT is given then the routine will return immediately the command has | |
1707 been queued with no result. CONT will still be called, however." | |
1708 (if (memq (process-status proc) '(run open)) | |
1709 (save-excursion | |
1710 (set-buffer (process-buffer proc)) | |
1711 (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
|
1712 ;; 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
|
1713 ;; 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
|
1714 ;; 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
|
1715 ;; 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
|
1716 ;; 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
|
1717 ;; 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
|
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))) |
1106 | 1721 (setq ange-ftp-process-string "" |
1722 ange-ftp-process-result-line "" | |
1723 ange-ftp-process-busy t | |
1724 ange-ftp-process-result nil | |
1725 ange-ftp-process-multi-skip nil | |
1726 ange-ftp-process-msg msg | |
1727 ange-ftp-process-continue cont | |
1728 ange-ftp-hash-mark-count 0 | |
1729 ange-ftp-last-percent -1 | |
1730 cmd (concat cmd "\n")) | |
1731 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1732 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1733 (move-marker comint-last-input-start (point)) |
1106 | 1734 ;; don't insert the password into the buffer on the USER command. |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1735 (save-match-data |
1106 | 1736 (if (string-match "^user \"[^\"]*\"" cmd) |
1737 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1738 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1739 (move-marker comint-last-input-end (point)) |
1106 | 1740 (send-string proc cmd) |
1741 (set-marker (process-mark proc) (point)) | |
1742 (if nowait | |
1743 nil | |
1744 ;; hang around for command to complete | |
1745 (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
|
1746 ;; 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
|
1747 ;; 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
|
1748 (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
|
1749 (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
|
1750 (accept-process-output proc))) |
1106 | 1751 (if cont |
1752 nil ;cont has already been called | |
1753 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1754 | |
1755 (defun ange-ftp-nslookup-host (host) | |
1756 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1757 (interactive "sHost: ") | |
1758 (if ange-ftp-nslookup-program | |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1759 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1760 (if (file-accessible-directory-p default-directory) |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1761 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1762 exec-directory)) |
7042 | 1763 ;; It would be nice to make process-connection-type nil, |
1764 ;; but that doesn't work: ftp never responds. | |
1765 ;; Can anyone find a fix for that? | |
1766 (proc (let ((process-connection-type t)) | |
1767 (start-process " *nslookup*" " *nslookup*" | |
1768 ange-ftp-nslookup-program host))) | |
1106 | 1769 (res host)) |
1770 (process-kill-without-query proc) | |
1771 (save-excursion | |
1772 (set-buffer (process-buffer proc)) | |
1773 (while (memq (process-status proc) '(run open)) | |
1774 (accept-process-output proc)) | |
1775 (goto-char (point-min)) | |
1776 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1777 (setq res (buffer-substring (match-beginning 1) | |
1778 (match-end 1)))) | |
1779 (kill-buffer (current-buffer))) | |
1780 res) | |
1781 host)) | |
1782 | |
1783 (defun ange-ftp-start-process (host user name) | |
1784 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1785 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1786 on the gateway machine to do the ftp instead." | |
1787 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1788 (use-smart-ftp (and (not ange-ftp-gateway-host) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1789 (ange-ftp-use-smart-gateway-p host))) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1790 (ftp-prog (if (or use-gateway |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1791 use-smart-ftp) |
1106 | 1792 ange-ftp-gateway-ftp-program-name |
1793 ange-ftp-ftp-program-name)) | |
1794 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
7418
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1795 ;; Without the following binding, ange-ftp-start-process |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1796 ;; recurses on file-accessible-directory-p, since it needs to |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1797 ;; restart its process in order to determine anything about |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1798 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1799 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1800 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1801 (if (file-accessible-directory-p default-directory) |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1802 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1803 exec-directory)) |
1106 | 1804 proc) |
7042 | 1805 ;; It would be nice to make process-connection-type nil, |
1806 ;; but that doesn't work: ftp never responds. | |
1807 ;; Can anyone find a fix for that? | |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1808 (let ((process-connection-type t) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1809 (process-environment process-environment)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1810 ;; This tells GNU ftp not to output any fancy escape sequences. |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1811 (setenv "TERM" "dumb") |
7042 | 1812 (if use-gateway |
1813 (if ange-ftp-gateway-program-interactive | |
1814 (setq proc (ange-ftp-gwp-start host user name args)) | |
1815 (setq proc (apply 'start-process name name | |
1816 (append (list ange-ftp-gateway-program | |
1817 ange-ftp-gateway-host) | |
1818 args)))) | |
1819 (setq proc (apply 'start-process name name args)))) | |
1106 | 1820 (process-kill-without-query proc) |
1821 (save-excursion | |
1822 (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
|
1823 (internal-ange-ftp-mode)) |
1106 | 1824 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1825 (set-process-filter proc (function ange-ftp-process-filter)) | |
1826 (accept-process-output proc) ;wait for ftp startup message | |
1827 proc)) | |
1828 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1829 (defun internal-ange-ftp-mode () |
7113
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1830 "Major mode for interacting with the FTP process. |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1831 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1832 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1833 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1834 (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
|
1835 (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
|
1836 (setq mode-name "Internal Ange-ftp") |
1106 | 1837 (let ((proc (get-buffer-process (current-buffer)))) |
1838 (goto-char (point-max)) | |
1839 (set-marker (process-mark proc) (point)) | |
1840 (make-local-variable 'ange-ftp-process-string) | |
1841 (setq ange-ftp-process-string "") | |
1842 (make-local-variable 'ange-ftp-process-busy) | |
1843 (make-local-variable 'ange-ftp-process-result) | |
1844 (make-local-variable 'ange-ftp-process-msg) | |
1845 (make-local-variable 'ange-ftp-process-multi-skip) | |
1846 (make-local-variable 'ange-ftp-process-result-line) | |
1847 (make-local-variable 'ange-ftp-process-continue) | |
1848 (make-local-variable 'ange-ftp-hash-mark-count) | |
1849 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1850 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1851 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1852 (make-local-variable 'ange-ftp-xfer-size) | |
1853 (make-local-variable 'ange-ftp-last-percent) | |
1854 (setq ange-ftp-hash-mark-count 0) | |
1855 (setq ange-ftp-xfer-size 0) | |
7113
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1856 (setq ange-ftp-process-result-line "") |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1857 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1858 (setq comint-prompt-regexp "^ftp> ") |
13278
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1859 (make-local-variable 'comint-password-prompt-regexp) |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1860 ;; This is a regexp that can't match anything. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1861 ;; ange-ftp has its own ways of handling passwords. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1862 (setq comint-password-prompt-regexp "^a\\'z") |
7113
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1863 (make-local-variable 'paragraph-start) |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1864 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1865 |
1866 (defun ange-ftp-smart-login (host user pass account proc) | |
1867 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1868 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1869 host specified in ``ange-ftp-gateway-host''." | |
1870 (let ((result (ange-ftp-raw-send-cmd | |
1871 proc | |
1872 (format "open %s %s" | |
1873 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1874 ange-ftp-smart-gateway-port) | |
1875 (format "Opening FTP connection to %s via %s" | |
1876 host | |
1877 ange-ftp-gateway-host)))) | |
1878 (or (car result) | |
1879 (ange-ftp-error host user | |
1880 (concat "OPEN request failed: " | |
1881 (cdr result)))) | |
1882 (setq result (ange-ftp-raw-send-cmd | |
1883 proc (format "user \"%s\"@%s %s %s" | |
1884 user | |
1885 (ange-ftp-nslookup-host host) | |
1886 pass | |
1887 account) | |
1888 (format "Logging in as user %s@%s" | |
1889 user host))) | |
1890 (or (car result) | |
1891 (progn | |
1892 (ange-ftp-set-passwd host user nil) ; reset password | |
1893 (ange-ftp-set-account host user nil) ; reset account | |
1894 (ange-ftp-error host user | |
1895 (concat "USER request failed: " | |
1896 (cdr result))))))) | |
1897 | |
1898 (defun ange-ftp-normal-login (host user pass account proc) | |
1899 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1900 PROC is the process to the FTP-client." | |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1901 (let* ((nshost (ange-ftp-nslookup-host host)) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1902 (result (ange-ftp-raw-send-cmd |
1106 | 1903 proc |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1904 (format "open %s" nshost) |
1106 | 1905 (format "Opening FTP connection to %s" host)))) |
1906 (or (car result) | |
1907 (ange-ftp-error host user | |
1908 (concat "OPEN request failed: " | |
1909 (cdr result)))) | |
1910 (setq result (ange-ftp-raw-send-cmd | |
1911 proc | |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1912 (if (ange-ftp-use-smart-gateway-p host) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1913 (format "user \"%s\"@%s %s %s" user nshost pass account) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1914 (format "user \"%s\" %s %s" user pass account)) |
1106 | 1915 (format "Logging in as user %s@%s" user host))) |
1916 (or (car result) | |
1917 (progn | |
1918 (ange-ftp-set-passwd host user nil) ;reset password. | |
1919 (ange-ftp-set-account host user nil) ;reset account. | |
1920 (ange-ftp-error host user | |
1921 (concat "USER request failed: " | |
1922 (cdr result))))))) | |
1923 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1924 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1925 (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
|
1926 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1927 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1928 | |
1929 (defun ange-ftp-guess-hash-mark-size (proc) | |
1930 (if ange-ftp-send-hash | |
1931 (save-excursion | |
1932 (set-buffer (process-buffer proc)) | |
1933 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1934 (result (car status)) | |
1935 (line (cdr status))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1936 (save-match-data |
1106 | 1937 (if (string-match ange-ftp-hash-mark-msgs line) |
1938 (let ((size (string-to-int | |
1939 (substring line | |
1940 (match-beginning 1) | |
1941 (match-end 1))))) | |
1942 (setq ange-ftp-ascii-hash-mark-size size | |
1943 ange-ftp-hash-mark-unit (ash size -4)) | |
1944 | |
1945 ;; if a default value for this is set, use that value. | |
1946 (or ange-ftp-binary-hash-mark-size | |
1947 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1948 | |
1949 (defun ange-ftp-get-process (host user) | |
7042 | 1950 "Return an FTP subprocess connected to HOST and logged in as USER. |
1951 Create a new process if needed." | |
1106 | 1952 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
1953 (proc (get-process name))) | |
1954 (if (and proc (memq (process-status proc) '(run open))) | |
1955 proc | |
1956 (let ((pass (ange-ftp-quote-string | |
1957 (ange-ftp-get-passwd host user))) | |
1958 (account (ange-ftp-quote-string | |
1959 (ange-ftp-get-account host user)))) | |
1960 ;; grab a suitable process. | |
1961 (setq proc (ange-ftp-start-process host user name)) | |
1962 | |
1963 ;; login to FTP server. | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1964 (if (and (ange-ftp-use-smart-gateway-p host) |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
1965 ange-ftp-gateway-host) |
1106 | 1966 (ange-ftp-smart-login host user pass account proc) |
1967 (ange-ftp-normal-login host user pass account proc)) | |
1968 | |
1969 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1970 ;; fatal if this command fails. | |
1971 (ange-ftp-guess-hash-mark-size proc) | |
1972 | |
1973 ;; Guess at the host type. | |
1974 (ange-ftp-guess-host-type host user) | |
1975 | |
1976 ;; Run any user-specified hooks. Note that proc, host and user are | |
1977 ;; dynamically bound at this point. | |
1978 (run-hooks 'ange-ftp-process-startup-hook)) | |
1979 proc))) | |
1980 | |
1981 ;; Variables for caching host and host-type | |
1982 (defvar ange-ftp-host-cache nil) | |
1983 (defvar ange-ftp-host-type-cache nil) | |
1984 | |
1985 ;; If ange-ftp-host-type is called with the optional user | |
1986 ;; argument, it will attempt to guess the host type by connecting | |
1987 ;; as user, if necessary. For efficiency, I have tried to give this | |
1988 ;; optional second argument only when necessary. Have I missed any calls | |
1989 ;; to ange-ftp-host-type where it should have been supplied? | |
1990 | |
1991 (defun ange-ftp-host-type (host &optional user) | |
1992 "Return a symbol which represents the type of the HOST given. | |
1993 If the optional argument USER is given, attempts to guess the | |
1994 host-type by logging in as USER." | |
1995 (if (eq host ange-ftp-host-cache) | |
1996 ange-ftp-host-type-cache | |
1997 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
1998 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
1999 ange-ftp-host-type-cache | |
2000 (setq ange-ftp-host-cache host | |
2001 ange-ftp-host-type-cache | |
2002 (cond ((ange-ftp-dumb-unix-host host) | |
2003 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2004 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2005 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2006 ;; 'vos) |
1106 | 2007 ((and (fboundp 'ange-ftp-vms-host) |
2008 (ange-ftp-vms-host host)) | |
2009 'vms) | |
2010 ((and (fboundp 'ange-ftp-mts-host) | |
2011 (ange-ftp-mts-host host)) | |
2012 'mts) | |
2013 ((and (fboundp 'ange-ftp-cms-host) | |
2014 (ange-ftp-cms-host host)) | |
2015 'cms) | |
2016 (t | |
2017 'unix)))))) | |
2018 | |
2019 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2020 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2021 ;; without sacrificing speed. Also, having separate variables | |
2022 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2023 ;; set an alist to indicate that a host is of a given type. Even with | |
2024 ;; automatic host type recognition, setting a regexp is still a good idea | |
2025 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2026 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2027 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2028 "Alist saying how to convert file name to the host's syntax. |
2029 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
|
2030 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2031 TYPE.") |
2032 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2033 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2034 "Alist saying how to convert directory name to the host's syntax. |
2035 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
|
2036 which can change UNIX directory name into a directory name more suitable |
1106 | 2037 for a host of type TYPE.") |
2038 | |
2039 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2040 ;; *** is only 1 host type that can take ls-style listing options. | |
2041 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2042 "List of host types that can't take UNIX ls-style listing options.") | |
2043 | |
2044 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2045 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2046 MSG is an optional status message to be output before and after issuing the | |
2047 command. | |
2048 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2049 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2050 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2051 ;; capability. |
2052 (let ((cmd0 (car cmd)) | |
2053 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2054 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2055 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2056 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2057 cmd2 cmd3 host-type fix-name-func) |
1106 | 2058 |
2059 (cond | |
2060 | |
2061 ;; pwd case (We don't care what host-type.) | |
2062 ((null cmd1)) | |
2063 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2064 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2065 ((progn |
2066 (setq cmd2 (nth 2 cmd) | |
2067 host-type (ange-ftp-host-type host user)) | |
2068 ;; This will trigger an FTP login, if one doesn't exist | |
2069 (eq cmd0 'dir)) | |
2070 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2071 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2072 'identity) |
2073 cmd1) | |
2074 cmd3 (nth 3 cmd)) | |
2075 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2076 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2077 ;; be happy.) | |
2078 (and (eq host-type 'unix) | |
2079 (string-match "/$" cmd1) | |
2080 (not (string-match "R" cmd3)) | |
2081 (setq cmd1 (concat cmd1 "."))) | |
2082 ;; If the remote ls can take switches, put them in | |
2083 (or (memq host-type ange-ftp-dumb-host-types) | |
2084 (setq cmd0 'ls | |
2085 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2086 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2087 ;; 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
|
2088 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2089 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2090 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2091 'identity)) |
1106 | 2092 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2093 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2094 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2095 ;; Second argument is the remote name |
1106 | 2096 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2097 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2098 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2099 ;; Both arguments are remote names |
1106 | 2100 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2101 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2102 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2103 |
2104 ;; Turn the command into one long string | |
2105 (setq cmd0 (symbol-name cmd0)) | |
2106 (setq cmd (concat cmd0 | |
2107 (and cmd1 (concat " " cmd1)) | |
2108 (and cmd2 (concat " " cmd2)))) | |
2109 | |
2110 ;; Actually send the resulting command. | |
2111 (let (afsc-result | |
2112 afsc-line) | |
2113 (ange-ftp-raw-send-cmd | |
2114 (ange-ftp-get-process host user) | |
2115 cmd | |
2116 msg | |
2117 (list | |
2118 (function (lambda (result line host user | |
2119 cmd msg cont nowait) | |
2120 (or cont | |
2121 (setq afsc-result result | |
2122 afsc-line line)) | |
2123 (if result | |
2124 (ange-ftp-call-cont cont result line) | |
2125 (ange-ftp-raw-send-cmd | |
2126 (ange-ftp-get-process host user) | |
2127 cmd | |
2128 msg | |
2129 (list | |
2130 (function (lambda (result line cont) | |
2131 (or cont | |
2132 (setq afsc-result result | |
2133 afsc-line line)) | |
2134 (ange-ftp-call-cont cont result line))) | |
2135 cont) | |
2136 nowait)))) | |
2137 host user cmd msg cont nowait) | |
2138 nowait) | |
2139 | |
2140 (if nowait | |
2141 nil | |
2142 (if cont | |
2143 nil | |
2144 (cons afsc-result afsc-line)))))) | |
2145 | |
2146 ;; It might be nice to message users about the host type identified, | |
2147 ;; but there is so much other messaging going on, it would not be | |
2148 ;; seen. No point in slowing things down just so users can read | |
2149 ;; a host type message. | |
2150 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2151 (defconst ange-ftp-cms-name-template |
1106 | 2152 (concat |
2153 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2154 "[-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
|
2155 (defconst ange-ftp-vms-name-template |
1106 | 2156 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2157 (defconst ange-ftp-mts-name-template |
1106 | 2158 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2159 | |
2160 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2161 "Guess at the the host type of HOST. |
2162 Works by doing a pwd and examining the directory syntax." | |
1106 | 2163 (let ((host-type (ange-ftp-host-type host)) |
2164 (key (concat host "/" user "/~"))) | |
2165 (if (eq host-type 'unix) | |
2166 ;; Note that ange-ftp-host-type returns unix as the default value. | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2167 (save-match-data |
1106 | 2168 (let* ((result (ange-ftp-get-pwd host user)) |
2169 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2170 fix-name-func) |
1106 | 2171 (cond ((null dir) |
2172 (message "Warning! Unable to get home directory") | |
2173 (sit-for 1) | |
2174 (if (string-match | |
2175 "^450 No current working directory defined$" | |
2176 (cdr result)) | |
2177 | |
2178 ;; We'll assume that if pwd bombs with this | |
2179 ;; error message, then it's CMS. | |
2180 (progn | |
2181 (ange-ftp-add-cms-host host) | |
2182 (setq ange-ftp-host-cache host | |
2183 ange-ftp-host-type-cache 'cms)))) | |
2184 | |
2185 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2186 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2187 (ange-ftp-add-vms-host host) |
2188 ;; The add-host functions clear the host type cache. | |
2189 ;; Therefore, need to set the cache afterwards. | |
2190 (setq ange-ftp-host-cache host | |
2191 ange-ftp-host-type-cache 'vms)) | |
2192 | |
2193 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2194 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2195 (ange-ftp-add-mts-host host) |
2196 (setq ange-ftp-host-cache host | |
2197 ange-ftp-host-type-cache 'mts)) | |
2198 | |
2199 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2200 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2201 (ange-ftp-add-cms-host host) |
2202 (setq ange-ftp-host-cache host | |
2203 ange-ftp-host-type-cache 'cms)) | |
2204 | |
2205 ;; assume UN*X | |
2206 (t | |
2207 (setq ange-ftp-host-cache host | |
2208 ange-ftp-host-type-cache 'unix))) | |
2209 | |
2210 ;; Now that we have done a pwd, might as well put it in | |
2211 ;; the expand-dir hashtable. | |
2212 (let ((ange-ftp-this-user user) | |
2213 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2214 (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
|
2215 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2216 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2217 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2218 (ange-ftp-put-hash-entry key dir |
2219 ange-ftp-expand-dir-hashtable)))) | |
2220 | |
2221 ;; In the special case of CMS make sure that know the | |
2222 ;; expansion of the home minidisk now, because we will | |
2223 ;; be doing a lot of cd's. | |
2224 (if (and (eq host-type 'cms) | |
2225 (not (ange-ftp-hash-entry-exists-p | |
2226 key ange-ftp-expand-dir-hashtable))) | |
2227 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2228 (if dir | |
2229 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2230 ange-ftp-expand-dir-hashtable) | |
2231 (message "Warning! Unable to get home directory") | |
2232 (sit-for 1)))))) | |
2233 | |
2234 | |
2235 ;;;; ------------------------------------------------------------ | |
2236 ;;;; Remote file and directory listing support. | |
2237 ;;;; ------------------------------------------------------------ | |
2238 | |
7042 | 2239 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2240 ;; to take switch arguments. | |
1106 | 2241 (defun ange-ftp-dumb-unix-host (host) |
13089
c18fa2e296f9
(ange-ftp-dumb-unix-host): Avoid error if HOST is nil.
Richard M. Stallman <rms@gnu.org>
parents:
13005
diff
changeset
|
2242 (and host ange-ftp-dumb-unix-host-regexp |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2243 (save-match-data |
1106 | 2244 (string-match ange-ftp-dumb-unix-host-regexp host)))) |
2245 | |
2246 (defun ange-ftp-add-dumb-unix-host (host) | |
2247 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2248 (interactive | |
2249 (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
|
2250 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2251 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2252 (if (not (ange-ftp-dumb-unix-host host)) |
2253 (setq ange-ftp-dumb-unix-host-regexp | |
2254 (concat "^" (regexp-quote host) "$" | |
2255 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2256 ange-ftp-dumb-unix-host-regexp) | |
2257 ange-ftp-host-cache nil))) | |
2258 | |
2259 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2260 "Alist saying how to parse directory listings for certain OS types. |
2261 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2262 which can parse the output from a DIR listing for a host of type TYPE.") |
2263 | |
2264 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2265 ;; an error if file is not an ange-ftp-name |
1106 | 2266 ;; (This should never happen.) |
2267 ;; an error if either the listing is unreadable or there is an ftp error. | |
2268 ;; the listing (a string), if everything works. | |
2269 ;; | |
2270 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2271 ;; an error if not an ange-ftp-name |
14040 | 2272 ;; error if listing is unreadable (most likely caused by a slow connection) |
1106 | 2273 ;; nil if ftp error (this is because although asking to list a nonexistent |
2274 ;; directory on a remote unix machine usually (except | |
2275 ;; maybe for dumb hosts) returns an ls error, but no | |
2276 ;; ftp error, if the same is done on a VMS machine, | |
2277 ;; an ftp error is returned. Need to trap the error | |
2278 ;; so we can go on and try to list the parent.) | |
2279 ;; the listing, if everything works. | |
2280 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2281 ;; 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
|
2282 ;; 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
|
2283 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2284 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2285 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2286 "Return the output of an `DIR' or `ls' command done over ftp. |
2287 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2288 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2289 away in the internal cache." | |
2290 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2291 ;; full directory listings. | |
2292 (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
|
2293 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2294 (if parsed |
2295 (let* ((host (nth 0 parsed)) | |
2296 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2297 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2298 (key (directory-file-name ange-ftp-this-file)) |
2299 (host-type (ange-ftp-host-type host user)) | |
2300 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2301 result | |
2302 temp | |
2303 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2304 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2305 (setq name |
1106 | 2306 (ange-ftp-real-file-name-as-directory |
2307 (ange-ftp-expand-dir host user "~")))) | |
2308 (if (and ange-ftp-ls-cache-file | |
2309 (string-equal key ange-ftp-ls-cache-file) | |
2310 ;; Don't care about lsargs for dumb hosts. | |
2311 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2312 ange-ftp-ls-cache-res | |
2313 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2314 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2315 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2316 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2317 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2318 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2319 (unwind-protect |
2320 (if (car (setq result (ange-ftp-send-cmd | |
2321 host | |
2322 user | |
2323 lscmd | |
2324 (format "Listing %s" | |
2325 (ange-ftp-abbreviate-filename | |
2326 ange-ftp-this-file))))) | |
2327 (save-excursion | |
2328 (set-buffer (get-buffer-create | |
2329 ange-ftp-data-buffer-name)) | |
2330 (erase-buffer) | |
2331 (if (ange-ftp-real-file-readable-p temp) | |
2332 (ange-ftp-real-insert-file-contents temp) | |
2333 (sleep-for ange-ftp-retry-time) | |
2334 ;wait for file to possibly appear | |
2335 (if (ange-ftp-real-file-readable-p temp) | |
2336 ;; Try again. | |
2337 (ange-ftp-real-insert-file-contents temp) | |
2338 (ange-ftp-error host user | |
2339 (format | |
2340 "list data file %s not readable" | |
2341 temp)))) | |
2342 (if parse | |
2343 (ange-ftp-set-files | |
2344 ange-ftp-this-file | |
2345 (if (setq | |
2346 parse-func | |
2347 (cdr (assq host-type | |
2348 ange-ftp-parse-list-func-alist))) | |
2349 (funcall parse-func) | |
2350 (ange-ftp-parse-dired-listing lsargs)))) | |
2351 (setq ange-ftp-ls-cache-file key | |
2352 ange-ftp-ls-cache-lsargs lsargs | |
2353 ; For dumb hosts-types this is | |
2354 ; meaningless but harmless. | |
2355 ange-ftp-ls-cache-res (buffer-string)) | |
2356 ;; (kill-buffer (current-buffer)) | |
2357 ange-ftp-ls-cache-res) | |
2358 (if no-error | |
2359 nil | |
2360 (ange-ftp-error host user | |
2361 (concat "DIR failed: " (cdr result))))) | |
2362 (ange-ftp-del-tmp-name temp)))) | |
2363 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2364 | |
2365 ;;;; ------------------------------------------------------------ | |
2366 ;;;; Directory information caching support. | |
2367 ;;;; ------------------------------------------------------------ | |
2368 | |
2369 (defconst ange-ftp-date-regexp | |
2370 (concat | |
2371 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2372 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2373 | |
2374 (defvar ange-ftp-add-file-entry-alist nil | |
7043
acf840ff5c1c
(ange-ftp-add-file-entry-alist): Fix typo in prev change.
Richard M. Stallman <rms@gnu.org>
parents:
7042
diff
changeset
|
2375 "Alist saying how to add file entries on certain OS types. |
7042 | 2376 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2377 is a function to be used to add a file entry for the OS TYPE. The |
2378 main reason for this alist is to deal with file versions in VMS.") | |
2379 | |
2380 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2381 "Alist saying how to delete files on certain OS types. |
2382 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2383 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2384 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2385 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2386 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2387 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2388 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2389 (car (ange-ftp-ftp-name name))) |
1106 | 2390 ange-ftp-add-file-entry-alist)) |
2391 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2392 name dir-p) |
1106 | 2393 (setq ange-ftp-ls-cache-file nil)) |
2394 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2395 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2396 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2397 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2398 (car (ange-ftp-ftp-name name))) |
1106 | 2399 ange-ftp-delete-file-entry-alist)) |
2400 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2401 name dir-p) |
1106 | 2402 (setq ange-ftp-ls-cache-file nil)) |
2403 | |
2404 (defmacro ange-ftp-parse-filename () | |
2405 ;;Extract the filename from the current line of a dired-like listing. | |
2406 (` (let ((eol (progn (end-of-line) (point)))) | |
2407 (beginning-of-line) | |
2408 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2409 (progn | |
2410 (skip-chars-forward " ") | |
2411 (skip-chars-forward "^ " eol) | |
2412 (skip-chars-forward " " eol) | |
2413 ;; We bomb on filenames starting with a space. | |
2414 (buffer-substring (point) eol)))))) | |
2415 | |
2416 ;; This deals with the F switch. Should also do something about | |
2417 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2418 ;; switch. See Sebastian's dired-get-filename. | |
2419 | |
2420 (defmacro ange-ftp-ls-parser () | |
2421 ;; Note that switches is dynamically bound. | |
2422 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2423 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2424 (used-F (and (stringp switches) | |
2425 (string-match "F" switches))) | |
2426 file-type symlink directory file) | |
2427 (while (setq file (ange-ftp-parse-filename)) | |
2428 (beginning-of-line) | |
2429 (skip-chars-forward "\t 0-9") | |
2430 (setq file-type (following-char) | |
2431 directory (eq file-type ?d)) | |
2432 (if (eq file-type ?l) | |
2433 (if (string-match " -> " file) | |
2434 (setq symlink (substring file (match-end 0)) | |
2435 file (substring file 0 (match-beginning 0))) | |
2436 ;; Shouldn't happen | |
2437 (setq symlink "")) | |
2438 (setq symlink nil)) | |
2439 ;; Only do a costly regexp search if the F switch was used. | |
2440 (if (and used-F | |
2441 (not (string-equal file "")) | |
2442 (looking-at | |
2443 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2444 (let ((socket (eq file-type ?s)) | |
2445 (executable | |
2446 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2447 (string-match "[xst]" | |
2448 (concat | |
2449 (buffer-substring | |
2450 (match-beginning 1) | |
2451 (match-end 1)) | |
2452 (buffer-substring | |
2453 (match-beginning 2) | |
2454 (match-end 2)) | |
2455 (buffer-substring | |
2456 (match-beginning 3) | |
2457 (match-end 3))))))) | |
2458 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2459 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2460 ;; seem to believe in the F-switch | |
2461 (if (or (and symlink (string-match "@$" file)) | |
2462 (and directory (string-match "/$" file)) | |
2463 (and executable (string-match "*$" file)) | |
2464 (and socket (string-match "=$" file))) | |
2465 (setq file (substring file 0 -1))))) | |
2466 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2467 (forward-line 1)) | |
2468 (ange-ftp-put-hash-entry "." t tbl) | |
2469 (ange-ftp-put-hash-entry ".." t tbl) | |
2470 tbl))) | |
2471 | |
2472 ;;; The dl stuff for descriptive listings | |
2473 | |
2474 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2475 "Regexp matching directories which are listed in dl format. |
2476 This regexp should not be anchored with a trailing `$', because it should | |
2477 match subdirectories as well.") | |
1106 | 2478 |
2479 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2480 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2481 (interactive |
2482 (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
|
2483 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2484 (and name (ange-ftp-ftp-name name) |
1106 | 2485 (file-name-directory name)))))) |
2486 (if (not (and ange-ftp-dl-dir-regexp | |
2487 (string-match ange-ftp-dl-dir-regexp dir))) | |
2488 (setq ange-ftp-dl-dir-regexp | |
2489 (concat "^" (regexp-quote dir) | |
2490 (and ange-ftp-dl-dir-regexp "\\|") | |
2491 ange-ftp-dl-dir-regexp)))) | |
2492 | |
2493 (defmacro ange-ftp-dl-parser () | |
2494 ;; Parse the current buffer, which is assumed to be a descriptive | |
2495 ;; listing, and return a hashtable. | |
2496 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2497 (while (not (eobp)) | |
2498 (ange-ftp-put-hash-entry | |
2499 (buffer-substring (point) | |
2500 (progn | |
2501 (skip-chars-forward "^ /\n") | |
2502 (point))) | |
2503 (eq (following-char) ?/) | |
2504 tbl) | |
2505 (forward-line 1)) | |
2506 (ange-ftp-put-hash-entry "." t tbl) | |
2507 (ange-ftp-put-hash-entry ".." t tbl) | |
2508 tbl))) | |
2509 | |
7042 | 2510 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2511 ;; format, and return a hashtable as the result. If the listing is not really | |
2512 ;; a listing, then return nil. | |
2513 | |
1106 | 2514 (defun ange-ftp-parse-dired-listing (&optional switches) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2515 (save-match-data |
1106 | 2516 (cond |
2517 ((looking-at "^total [0-9]+$") | |
2518 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2519 ;; 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
|
2520 (if (eolp) (forward-line 1)) |
1106 | 2521 (ange-ftp-ls-parser)) |
2522 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2523 ;; It's an ls error message. | |
2524 nil) | |
2525 ((eobp) ; i.e. (zerop (buffer-size)) | |
2526 ;; This could be one of: | |
2527 ;; (1) An Ultrix ls error message | |
2528 ;; (2) A listing with the A switch of an empty directory | |
2529 ;; on a machine which doesn't give a total line. | |
2530 ;; (3) The twilight zone. | |
2531 ;; We'll assume (1) for now. | |
2532 nil) | |
2533 ((re-search-forward ange-ftp-date-regexp nil t) | |
2534 (beginning-of-line) | |
2535 (ange-ftp-ls-parser)) | |
2536 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2537 ;; It's a dl listing (I hope). | |
2538 ;; file is bound by the call to ange-ftp-ls | |
2539 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2540 (beginning-of-line) | |
2541 (ange-ftp-dl-parser)) | |
2542 (t nil)))) | |
2543 | |
2544 (defun ange-ftp-set-files (directory files) | |
2545 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2546 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2547 files ange-ftp-files-hashtable))) | |
2548 | |
2549 (defun ange-ftp-get-files (directory &optional no-error) | |
2550 "Given a given DIRECTORY, return a hashtable of file entries. | |
2551 This will give an error or return nil, depending on the value of | |
2552 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2553 (setq directory (file-name-as-directory directory)) ;normalize | |
2554 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2555 (save-match-data |
1106 | 2556 (and (ange-ftp-ls directory |
2557 ;; This is an efficiency hack. We try to | |
2558 ;; anticipate what sort of listing dired | |
2559 ;; might want, and cache just such a listing. | |
2560 (if (and (boundp 'dired-actual-switches) | |
2561 (stringp dired-actual-switches) | |
2562 ;; We allow the A switch, which lists | |
2563 ;; all files except "." and "..". | |
2564 ;; This is OK because we manually | |
2565 ;; insert these entries | |
2566 ;; in the hash table. | |
2567 (string-match | |
2568 "[aA]" dired-actual-switches) | |
2569 (string-match | |
2570 "l" dired-actual-switches) | |
2571 (not (string-match | |
2572 "R" dired-actual-switches))) | |
2573 dired-actual-switches | |
2574 (if (and (boundp 'dired-listing-switches) | |
2575 (stringp dired-listing-switches) | |
2576 (string-match | |
2577 "[aA]" dired-listing-switches) | |
2578 (string-match | |
2579 "l" dired-listing-switches) | |
2580 (not (string-match | |
2581 "R" dired-listing-switches))) | |
2582 dired-listing-switches | |
2583 "-al")) | |
2584 t no-error) | |
2585 (ange-ftp-get-hash-entry | |
2586 directory ange-ftp-files-hashtable))))) | |
2587 | |
7042 | 2588 ;; Given NAME, return the file part that can be used for looking up the |
2589 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2590 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2591 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2592 (if (string-equal file "") |
2593 "." | |
2594 file)))) | |
2595 | |
7042 | 2596 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2597 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2598 ;; rather than listing its parent directory. This is used for efficiency so | |
2599 ;; that a wasted listing is not done: | |
2600 ;; 1. When looking for a .dired file in dired-x.el. | |
2601 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2602 ;; subdirectory. This is of course an OS dependent judgement. | |
2603 | |
1106 | 2604 (defmacro ange-ftp-allow-child-lookup (dir file) |
2605 (` (not | |
2606 (let* ((efile (, file)) ; expand once. | |
2607 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2608 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2609 (host-type (ange-ftp-host-type |
2610 (car parsed)))) | |
2611 (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
|
2612 ;;; 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
|
2613 ;;; ;; 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
|
2614 ;;; (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
|
2615 ;;; (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
|
2616 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2617 ;; No dots in dir names in vms. |
2618 (and (eq host-type 'vms) | |
2619 (string-match "\\." efile)) | |
2620 ;; No subdirs in mts of cms. | |
2621 (and (memq host-type '(mts cms)) | |
2622 (not (string-equal "/" (nth 2 parsed))))))))) | |
2623 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2624 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2625 "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
|
2626 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2627 (dir (file-name-directory name)) |
1106 | 2628 (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
|
2629 (file (ange-ftp-get-file-part name))) |
1106 | 2630 (if ent |
2631 (ange-ftp-hash-entry-exists-p file ent) | |
2632 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2633 (setq ent (ange-ftp-get-files name t)) |
1106 | 2634 ;; Try a child lookup. i.e. try to list file as a |
2635 ;; subdirectory of dir. This is a good idea because | |
2636 ;; we may not have read permission for file's parent. Also, | |
2637 ;; people tend to work down directory trees anyway. We use | |
2638 ;; no-error ;; because if file does not exist as a subdir., | |
2639 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2640 ;; will simply send back the ls | |
2641 ;; error message. | |
2642 (ange-ftp-get-hash-entry "." ent)) | |
2643 ;; Child lookup failed. Try the parent. If this bombs, | |
2644 ;; we are at wits end -- signal an error. | |
2645 ;; Problem: If this signals an error, the error message | |
2646 ;; may not have a lot to do with what went wrong. | |
2647 (ange-ftp-hash-entry-exists-p file | |
2648 (ange-ftp-get-files dir)))))) | |
2649 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2650 (defun ange-ftp-get-file-entry (name) |
1233 | 2651 "Given NAME, return the given file entry. |
2652 The entry will be either t for a directory, nil for a normal file, | |
2653 or a string for a symlink. If the file isn't in the hashtable, | |
2654 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2655 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2656 (dir (file-name-directory name)) |
1106 | 2657 (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
|
2658 (file (ange-ftp-get-file-part name))) |
1106 | 2659 (if ent |
2660 (ange-ftp-get-hash-entry file ent) | |
2661 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2662 (setq ent (ange-ftp-get-files name t)) |
1106 | 2663 (ange-ftp-get-hash-entry "." ent)) |
2664 ;; i.e. it's a directory by child lookup | |
2665 (ange-ftp-get-hash-entry file | |
2666 (ange-ftp-get-files dir)))))) | |
2667 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2668 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2669 (if dir-p |
2670 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2671 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2672 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2673 (setq name (directory-file-name name)))) |
1106 | 2674 ;; Note that file-name-as-directory followed by directory-file-name |
2675 ;; serves to canonicalize directory file names to their unix form. | |
2676 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2677 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2678 ange-ftp-files-hashtable))) |
2679 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2680 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2681 files)))) |
2682 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2683 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2684 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2685 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2686 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2687 ange-ftp-files-hashtable))) |
2688 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2689 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2690 dir-p |
2691 files)))) | |
2692 | |
2693 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2694 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2695 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2696 (ange-ftp-map-hashtable | |
2697 (function | |
2698 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2699 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2700 (if parsed |
2701 (let ((h (nth 0 parsed)) | |
2702 (u (nth 1 parsed))) | |
2703 (or (and (equal host h) (equal user u)) | |
2704 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2705 ange-ftp-files-hashtable) | |
2706 (setq ange-ftp-files-hashtable new-tbl))) | |
2707 | |
2708 ;;;; ------------------------------------------------------------ | |
2709 ;;;; File transfer mode support. | |
2710 ;;;; ------------------------------------------------------------ | |
2711 | |
2712 (defun ange-ftp-set-binary-mode (host user) | |
2713 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2714 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2715 (if (not (car result)) | |
2716 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2717 (save-excursion | |
2718 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
10118
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2719 (and ange-ftp-binary-hash-mark-size |
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2720 (setq ange-ftp-hash-mark-unit |
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2721 (ash ange-ftp-binary-hash-mark-size -4))))))) |
1106 | 2722 |
2723 (defun ange-ftp-set-ascii-mode (host user) | |
2724 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2725 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2726 (if (not (car result)) | |
2727 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2728 (save-excursion | |
2729 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
10118
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2730 (and ange-ftp-ascii-hash-mark-size |
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2731 (setq ange-ftp-hash-mark-unit |
7e22057e9516
(ange-ftp-set-binary-mode): Ignore hash size if nil.
Karl Heuer <kwzh@gnu.org>
parents:
9879
diff
changeset
|
2732 (ash ange-ftp-ascii-hash-mark-size -4))))))) |
1106 | 2733 |
2734 (defun ange-ftp-cd (host user dir) | |
2735 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2736 (or (car result) | |
2737 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2738 | |
2739 (defun ange-ftp-get-pwd (host user) | |
2740 "Attempts to get the current working directory for the given HOST/USER pair. | |
2741 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2742 and LINE is the relevant success or fail line from the FTP-client." | |
2743 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2744 (line (cdr result)) | |
2745 dir) | |
2746 (if (car result) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2747 (save-match-data |
1106 | 2748 (and (or (string-match "\"\\([^\"]*\\)\"" line) |
2749 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2750 (setq dir (substring line | |
2751 (match-beginning 1) | |
2752 (match-end 1)))))) | |
2753 (cons dir line))) | |
2754 | |
2755 ;;; ------------------------------------------------------------ | |
2756 ;;; expand-file-name and friends...which currently don't work | |
2757 ;;; ------------------------------------------------------------ | |
2758 | |
2759 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2760 "Return the result of doing a PWD in the current FTP session. |
2761 Use the connection to machine HOST | |
1106 | 2762 logged in as user USER and cd'd to directory DIR." |
2763 (let* ((host-type (ange-ftp-host-type host user)) | |
2764 ;; It is more efficient to call ange-ftp-host-type | |
2765 ;; before binding res, because ange-ftp-host-type sometimes | |
2766 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2767 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2768 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2769 (key (concat host "/" user "/" dir)) |
2770 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2771 (or res | |
2772 (progn | |
2773 (or | |
2774 (string-equal user "anonymous") | |
2775 (string-equal user "ftp") | |
2776 (not (eq host-type 'unix)) | |
2777 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2778 "\\|" | |
2779 ange-ftp-good-msgs)) | |
2780 (result (ange-ftp-send-cmd host user | |
2781 (list 'get dir "/dev/null") | |
2782 (format "expanding %s" dir))) | |
2783 (line (cdr result))) | |
2784 (setq res | |
2785 (if (string-match ange-ftp-expand-dir-regexp line) | |
2786 (substring line | |
2787 (match-beginning 1) | |
2788 (match-end 1)))))) | |
2789 (or res | |
2790 (if (string-equal dir "~") | |
2791 (setq res (car (ange-ftp-get-pwd host user))) | |
2792 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2793 (unwind-protect | |
2794 (and (ange-ftp-cd host user dir) | |
2795 (setq res (car (ange-ftp-get-pwd host user)))) | |
2796 (ange-ftp-cd host user home))))) | |
2797 (if res | |
2798 (let ((ange-ftp-this-user user) | |
2799 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2800 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2801 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2802 (ange-ftp-put-hash-entry |
2803 key res ange-ftp-expand-dir-hashtable))) | |
2804 res)))) | |
2805 | |
2806 (defun ange-ftp-canonize-filename (n) | |
2807 "Take a string and short-circuit //, /. and /.." | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2808 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2809 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2810 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2811 (if parsed |
2812 (let ((host (car parsed)) | |
2813 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2814 (name (nth 2 parsed))) |
1106 | 2815 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2816 ;; 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
|
2817 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2818 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2819 name) |
1106 | 2820 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2821 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2822 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2824 (let* ((tilda (substring name |
1106 | 2825 (match-beginning 0) |
2826 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2827 (rest (substring name (match-end 0))) |
1106 | 2828 (dir (ange-ftp-expand-dir host user tilda))) |
2829 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2830 (setq name (concat dir rest)) |
1106 | 2831 (error "User \"%s\" is not known" |
2832 (substring tilda 1))))) | |
2833 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2834 ;; relative name. Tack on homedir and re-expand. |
1106 | 2835 (t |
2836 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2837 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2838 (setq name (concat |
1106 | 2839 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2840 name)) |
1106 | 2841 (error "Unable to obtain CWD"))))) |
2842 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2843 ;; If name starts with //, preserve that, for apollo system. |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2844 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2845 (progn |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2846 (setq name (ange-ftp-real-expand-file-name name)) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2847 |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2848 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2849 (setq name (substring name 1))))) |
1106 | 2850 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2851 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2852 (ange-ftp-replace-name-component n name)) |
1106 | 2853 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2854 ;; non-ange-ftp name. Just expand normally. |
1106 | 2855 (if (eq (string-to-char n) ?/) |
2856 (ange-ftp-real-expand-file-name n) | |
2857 (ange-ftp-real-expand-file-name | |
2858 (ange-ftp-real-file-name-nondirectory n) | |
2859 (ange-ftp-real-file-name-directory n)))))) | |
2860 | |
2861 (defun ange-ftp-expand-file-name (name &optional default) | |
2862 "Documented as original." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2863 (save-match-data |
1106 | 2864 (if (eq (string-to-char name) ?/) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2865 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users |
1106 | 2866 (setq name (substring name (1- (match-end 0))))) |
2867 ((string-match "/~" name) | |
2868 (setq name (substring name (1- (match-end 0)))))))) | |
2869 (cond ((eq (string-to-char name) ?~) | |
2870 (ange-ftp-real-expand-file-name name)) | |
2871 ((eq (string-to-char name) ?/) | |
2872 (ange-ftp-canonize-filename name)) | |
2873 ((zerop (length name)) | |
2874 (ange-ftp-canonize-filename (or default default-directory))) | |
2875 ((ange-ftp-canonize-filename | |
2876 (concat (file-name-as-directory (or default default-directory)) | |
2877 name)))))) | |
2878 | |
2879 ;;; These are problems--they are currently not enabled. | |
2880 | |
2881 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 2882 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 2883 FUNC converts a filename to a directory name for the operating |
2884 system TYPE.") | |
2885 | |
2886 (defun ange-ftp-file-name-as-directory (name) | |
2887 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2888 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2889 (if parsed |
2890 (if (string-equal (nth 2 parsed) "") | |
2891 name | |
2892 (funcall (or (cdr (assq | |
2893 (ange-ftp-host-type (car parsed)) | |
2894 ange-ftp-file-name-as-directory-alist)) | |
2895 'ange-ftp-real-file-name-as-directory) | |
2896 name)) | |
2897 (ange-ftp-real-file-name-as-directory name)))) | |
2898 | |
2899 (defun ange-ftp-file-name-directory (name) | |
2900 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2901 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2902 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2903 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2904 (if (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2905 (string-match "^~[^/]*$" filename)) |
1106 | 2906 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2907 (ange-ftp-replace-name-component |
1106 | 2908 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2909 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2910 (ange-ftp-real-file-name-directory name)))) |
2911 | |
2912 (defun ange-ftp-file-name-nondirectory (name) | |
2913 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2914 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2915 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2916 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2917 (if (save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2918 (string-match "^~[^/]*$" filename)) |
1106 | 2919 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2920 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2921 (ange-ftp-real-file-name-nondirectory name)))) |
2922 | |
2923 (defun ange-ftp-directory-file-name (dir) | |
2924 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2925 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2926 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2927 (ange-ftp-replace-name-component |
1106 | 2928 dir |
2929 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2930 (ange-ftp-real-directory-file-name dir)))) | |
2931 | |
2932 | |
2933 ;;; Hooks that handle Emacs primitives. | |
2934 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2935 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2936 (defun ange-ftp-binary-file (file) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2937 (save-match-data |
1106 | 2938 (string-match ange-ftp-binary-file-name-regexp file))) |
2939 | |
2940 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2941 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2942 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2943 (if parsed |
2944 (let* ((host (nth 0 parsed)) | |
2945 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2946 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2947 (temp (ange-ftp-make-tmp-name host)) |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
2948 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
2949 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 2950 (cmd (if append 'append 'put)) |
2951 (abbr (ange-ftp-abbreviate-filename filename))) | |
2952 (unwind-protect | |
2953 (progn | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
2954 (let ((executing-kbd-macro t) |
1106 | 2955 (filename (buffer-file-name)) |
2956 (mod-p (buffer-modified-p))) | |
2957 (unwind-protect | |
2958 (ange-ftp-real-write-region start end temp nil visit) | |
2959 ;; cleanup forms | |
2960 (setq buffer-file-name filename) | |
2961 (set-buffer-modified-p mod-p))) | |
2962 (if binary | |
2963 (ange-ftp-set-binary-mode host user)) | |
2964 | |
2965 ;; tell the process filter what size the transfer will be. | |
2966 (let ((attr (file-attributes temp))) | |
2967 (if attr | |
2968 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2969 | |
2970 ;; put or append the file. | |
2971 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2972 (list cmd temp name) |
1106 | 2973 (format "Writing %s" abbr)))) |
2974 (or (car result) | |
2975 (signal 'ftp-error | |
2976 (list | |
2977 "Opening output file" | |
2978 (format "FTP Error: \"%s\"" (cdr result)) | |
2979 filename))))) | |
2980 (ange-ftp-del-tmp-name temp) | |
2981 (if binary | |
2982 (ange-ftp-set-ascii-mode host user))) | |
2983 (if (eq visit t) | |
2984 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2985 (set-visited-file-modtime '(0 0)) |
1106 | 2986 (ange-ftp-set-buffer-mode) |
2987 (setq buffer-file-name filename) | |
2988 (set-buffer-modified-p nil))) | |
2989 (ange-ftp-message "Wrote %s" abbr) | |
2990 (ange-ftp-add-file-entry filename)) | |
2991 (ange-ftp-real-write-region start end filename append visit)))) | |
2992 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2993 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 2994 (barf-if-buffer-read-only) |
2995 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2996 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2997 (if parsed |
2998 (progn | |
2999 (if visit | |
3000 (setq buffer-file-name filename)) | |
3001 (if (or (file-exists-p filename) | |
3002 (progn | |
3003 (setq ange-ftp-ls-cache-file nil) | |
3004 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3005 ange-ftp-files-hashtable) | |
3006 (file-exists-p filename))) | |
3007 (let* ((host (nth 0 parsed)) | |
3008 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3009 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3010 (temp (ange-ftp-make-tmp-name host)) |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3011 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3012 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 3013 (abbr (ange-ftp-abbreviate-filename filename)) |
3014 size) | |
3015 (unwind-protect | |
3016 (progn | |
3017 (if binary | |
3018 (ange-ftp-set-binary-mode host user)) | |
3019 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3020 (list 'get name temp) |
1106 | 3021 (format "Retrieving %s" abbr)))) |
3022 (or (car result) | |
3023 (signal 'ftp-error | |
3024 (list | |
3025 "Opening input file" | |
3026 (format "FTP Error: \"%s\"" (cdr result)) | |
3027 filename)))) | |
3028 (if (or (ange-ftp-real-file-readable-p temp) | |
3029 (sleep-for ange-ftp-retry-time) | |
3030 ;; Wait for file to hopefully appear. | |
3031 (ange-ftp-real-file-readable-p temp)) | |
3032 (setq | |
3033 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3034 (nth 1 (ange-ftp-real-insert-file-contents |
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3035 temp visit beg end replace))) |
1106 | 3036 (signal 'ftp-error |
3037 (list | |
3038 "Opening input file:" | |
3039 (format | |
3040 "FTP Error: %s not arrived or readable" | |
3041 filename))))) | |
3042 (if binary | |
3043 (ange-ftp-set-ascii-mode host user)) | |
3044 (ange-ftp-del-tmp-name temp)) | |
3045 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3046 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3047 (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
|
3048 (setq buffer-file-name filename))) |
1106 | 3049 (list filename size)) |
3050 (signal 'file-error | |
3051 (list | |
3052 "Opening input file" | |
3053 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3054 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3055 |
3056 (defun ange-ftp-expand-symlink (file dir) | |
3057 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3058 (ange-ftp-replace-name-component dir file) |
1106 | 3059 (expand-file-name file dir))) |
3060 | |
3061 (defun ange-ftp-file-symlink-p (file) | |
3062 ;; call ange-ftp-expand-file-name rather than the normal | |
3063 ;; expand-file-name to stop loops when using a package that | |
3064 ;; redefines both file-symlink-p and expand-file-name. | |
3065 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3066 (if (ange-ftp-ftp-name file) |
1106 | 3067 (let ((file-ent |
3068 (ange-ftp-get-hash-entry | |
3069 (ange-ftp-get-file-part file) | |
3070 (ange-ftp-get-files (file-name-directory file))))) | |
3071 (if (stringp file-ent) | |
3072 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3073 (ange-ftp-replace-name-component |
1106 | 3074 (file-name-directory file) file-ent) |
3075 file-ent))) | |
3076 (ange-ftp-real-file-symlink-p file))) | |
3077 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3078 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3079 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3080 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3081 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3082 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3083 (if (stringp file-ent) |
3084 (file-exists-p | |
3085 (ange-ftp-expand-symlink file-ent | |
3086 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3087 (directory-file-name name)))) |
1106 | 3088 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3089 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3090 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3091 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3092 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3093 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3094 ;; We do a file-name-as-directory on name here because some |
1106 | 3095 ;; machines (VMS) use a .DIR to indicate the filename associated |
3096 ;; with a directory. This needs to be canonicalized. | |
3097 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3098 (ange-ftp-file-name-as-directory name)))) |
1106 | 3099 (if (stringp file-ent) |
3100 (file-directory-p | |
3101 (ange-ftp-expand-symlink file-ent | |
3102 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3103 (directory-file-name name)))) |
1106 | 3104 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3105 (ange-ftp-real-file-directory-p name))) |
1106 | 3106 |
3107 (defun ange-ftp-directory-files (directory &optional full match | |
3108 &rest v19-args) | |
3109 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3110 (if (ange-ftp-ftp-name directory) |
1106 | 3111 (progn |
3112 (ange-ftp-barf-if-not-directory directory) | |
3113 (let ((tail (ange-ftp-hash-table-keys | |
3114 (ange-ftp-get-files directory))) | |
3115 files f) | |
3116 (setq directory (file-name-as-directory directory)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3117 (save-match-data |
1106 | 3118 (while tail |
3119 (setq f (car tail) | |
3120 tail (cdr tail)) | |
3121 (if (or (not match) (string-match match f)) | |
3122 (setq files | |
3123 (cons (if full (concat directory f) f) files))))) | |
3124 (nreverse files))) | |
3125 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3126 | |
3127 (defun ange-ftp-file-attributes (file) | |
3128 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3129 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3130 (if parsed |
3131 (let ((part (ange-ftp-get-file-part file)) | |
3132 (files (ange-ftp-get-files (file-name-directory file)))) | |
3133 (if (ange-ftp-hash-entry-exists-p part files) | |
3134 (let ((host (nth 0 parsed)) | |
3135 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3136 (name (nth 2 parsed)) |
1106 | 3137 (dirp (ange-ftp-get-hash-entry part files))) |
3138 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3139 (ange-ftp-expand-symlink dirp | |
3140 (file-name-directory file)) | |
3141 dirp) ;0 file type | |
3142 -1 ;1 link count | |
3143 -1 ;2 uid | |
3144 -1 ;3 gid | |
3145 '(0 0) ;4 atime | |
3146 '(0 0) ;5 mtime | |
3147 '(0 0) ;6 ctime | |
3148 -1 ;7 size | |
3149 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3150 "?????????") ;8 mode | |
3151 nil ;9 gid weird | |
3152 ;; Hack to give remote files a unique "inode number". | |
3153 ;; It's actually the sum of the characters in its name. | |
3154 (apply '+ (nconc (mapcar 'identity host) | |
3155 (mapcar 'identity user) | |
3156 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3157 (directory-file-name name)))) |
1106 | 3158 -1 ;11 device number [v19 only] |
3159 )))) | |
3160 (ange-ftp-real-file-attributes file)))) | |
3161 | |
3162 (defun ange-ftp-file-writable-p (file) | |
3163 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3164 (if (ange-ftp-ftp-name file) |
1106 | 3165 (or (file-exists-p file) ;guess here for speed |
3166 (file-directory-p (file-name-directory file))) | |
3167 (ange-ftp-real-file-writable-p file))) | |
3168 | |
3169 (defun ange-ftp-file-readable-p (file) | |
3170 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3171 (if (ange-ftp-ftp-name file) |
1106 | 3172 (file-exists-p file) |
3173 (ange-ftp-real-file-readable-p file))) | |
3174 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3175 (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
|
3176 (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
|
3177 (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
|
3178 (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
|
3179 (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
|
3180 |
1106 | 3181 (defun ange-ftp-delete-file (file) |
3182 (interactive "fDelete file: ") | |
3183 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3184 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3185 (if parsed |
3186 (let* ((host (nth 0 parsed)) | |
3187 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3188 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3189 (abbr (ange-ftp-abbreviate-filename file)) |
3190 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3191 (list 'delete name) |
1106 | 3192 (format "Deleting %s" abbr)))) |
3193 (or (car result) | |
3194 (signal 'ftp-error | |
3195 (list | |
3196 "Removing old name" | |
3197 (format "FTP Error: \"%s\"" (cdr result)) | |
3198 file))) | |
3199 (ange-ftp-delete-file-entry file)) | |
3200 (ange-ftp-real-delete-file file)))) | |
3201 | |
3202 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3203 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3204 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3205 t |
3206 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3207 | |
3208 ;;;; ------------------------------------------------------------ | |
3209 ;;;; File copying support... totally re-written 6/24/92. | |
3210 ;;;; ------------------------------------------------------------ | |
3211 | |
3212 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3213 (if (file-exists-p absname) | |
3214 (if (not interactive) | |
3215 (signal 'file-already-exists (list absname)) | |
3216 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3217 absname querystring))) | |
3218 (signal 'file-already-exists (list absname)))))) | |
3219 | |
3220 ;; async local copy commented out for now since I don't seem to get | |
3221 ;; the process sentinel called for some processes. | |
3222 ;; | |
3223 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3224 ;; keep-date cont) | |
3225 ;; "Kludge to copy a local file and call a continuation when the copy | |
3226 ;; finishes." | |
3227 ;; ;; check to see if we can overwrite | |
3228 ;; (if (or (not ok-if-already-exists) | |
3229 ;; (numberp ok-if-already-exists)) | |
3230 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3231 ;; (numberp ok-if-already-exists))) | |
3232 ;; (let ((proc (start-process " *copy*" | |
3233 ;; (generate-new-buffer "*copy*") | |
3234 ;; "cp" | |
3235 ;; filename | |
3236 ;; newname)) | |
3237 ;; res) | |
3238 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3239 ;; (process-kill-without-query proc) | |
3240 ;; (save-excursion | |
3241 ;; (set-buffer (process-buffer proc)) | |
3242 ;; (make-variable-buffer-local 'copy-cont) | |
3243 ;; (setq copy-cont cont)))) | |
3244 ;; | |
3245 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3246 ;; (save-excursion | |
3247 ;; (set-buffer (process-buffer proc)) | |
3248 ;; (let ((cont copy-cont) | |
3249 ;; (result (buffer-string))) | |
3250 ;; (unwind-protect | |
3251 ;; (if (and (string-equal status "finished\n") | |
3252 ;; (zerop (length result))) | |
3253 ;; (ange-ftp-call-cont cont t nil) | |
3254 ;; (ange-ftp-call-cont cont | |
3255 ;; nil | |
3256 ;; (if (zerop (length result)) | |
3257 ;; (substring status 0 -1) | |
3258 ;; (substring result 0 -1)))) | |
3259 ;; (kill-buffer (current-buffer)))))) | |
3260 | |
3261 ;; 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
|
3262 ;; asynchronously if asked nicely. |
1106 | 3263 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3264 keep-date &optional msg cont nowait) | |
3265 (setq filename (expand-file-name filename) | |
3266 newname (expand-file-name newname)) | |
3267 | |
3268 ;; canonicalize newname if a directory. | |
3269 (if (file-directory-p newname) | |
3270 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3271 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3272 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3273 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3274 |
3275 ;; local file to local file copy? | |
3276 (if (and (not f-parsed) (not t-parsed)) | |
3277 (progn | |
3278 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3279 keep-date) | |
3280 (if cont | |
3281 (ange-ftp-call-cont cont t "Copied locally"))) | |
3282 ;; one or both files are remote. | |
3283 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3284 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3285 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3286 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3287 (t-host (and t-parsed (nth 0 t-parsed))) | |
3288 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3289 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3290 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3291 (binary (or (ange-ftp-binary-file filename) | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3292 (ange-ftp-binary-file newname) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3293 (and (eq (ange-ftp-host-type f-host f-user) 'unix) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3294 (eq (ange-ftp-host-type t-host t-user) 'unix)))) |
1106 | 3295 temp1 |
3296 temp2) | |
3297 | |
3298 ;; check to see if we can overwrite | |
3299 (if (or (not ok-if-already-exists) | |
3300 (numberp ok-if-already-exists)) | |
3301 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3302 (numberp ok-if-already-exists))) | |
3303 | |
3304 ;; do the copying. | |
3305 (if f-parsed | |
3306 | |
3307 ;; filename was remote. | |
3308 (progn | |
3309 (if (or (ange-ftp-use-gateway-p f-host) | |
3310 t-parsed) | |
3311 ;; have to use intermediate file if we are getting via | |
3312 ;; gateway machine or we are doing a remote to remote copy. | |
3313 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3314 | |
3315 (if binary | |
3316 (ange-ftp-set-binary-mode f-host f-user)) | |
3317 | |
3318 (ange-ftp-send-cmd | |
3319 f-host | |
3320 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3321 (list 'get f-name (or temp1 newname)) |
1106 | 3322 (or msg |
3323 (if (and temp1 t-parsed) | |
3324 (format "Getting %s" f-abbr) | |
3325 (format "Copying %s to %s" f-abbr t-abbr))) | |
3326 (list (function ange-ftp-cf1) | |
3327 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3328 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3329 t-parsed t-host t-user t-name t-abbr |
1106 | 3330 temp1 temp2 cont nowait) |
3331 nowait)) | |
3332 | |
3333 ;; filename wasn't remote. newname must be remote. call the | |
3334 ;; function which does the remainder of the copying work. | |
3335 (ange-ftp-cf1 t nil | |
3336 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3337 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3338 t-parsed t-host t-user t-name t-abbr |
1106 | 3339 nil nil cont nowait)))))) |
3340 | |
3341 ;; next part of copying routine. | |
3342 (defun ange-ftp-cf1 (result line | |
3343 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3344 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3345 t-parsed t-host t-user t-name t-abbr |
1106 | 3346 temp1 temp2 cont nowait) |
3347 (if line | |
3348 ;; filename must have been remote, and we must have just done a GET. | |
3349 (unwind-protect | |
3350 (or result | |
3351 ;; GET failed for some reason. Clean up and get out. | |
3352 (progn | |
3353 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3354 (or cont | |
3355 (signal 'ftp-error (list "Opening input file" | |
3356 (format "FTP Error: \"%s\"" line) | |
3357 filename))))) | |
3358 ;; cleanup | |
3359 (if binary | |
3360 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3361 | |
3362 (if result | |
3363 ;; We now have to copy either temp1 or filename to newname. | |
3364 (if t-parsed | |
3365 | |
3366 ;; newname was remote. | |
3367 (progn | |
3368 (if (ange-ftp-use-gateway-p t-host) | |
3369 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3370 | |
3371 ;; make sure data is moved into the right place for the | |
3372 ;; outgoing transfer. gateway temporary files complicate | |
3373 ;; things nicely. | |
3374 (if temp1 | |
3375 (if temp2 | |
3376 (if (string-equal temp1 temp2) | |
3377 (setq temp1 nil) | |
3378 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3379 (setq temp2 temp1 temp1 nil)) | |
3380 (if temp2 | |
3381 (ange-ftp-real-copy-file filename temp2 t))) | |
3382 | |
3383 (if binary | |
3384 (ange-ftp-set-binary-mode t-host t-user)) | |
3385 | |
3386 ;; tell the process filter what size the file is. | |
3387 (let ((attr (file-attributes (or temp2 filename)))) | |
3388 (if attr | |
3389 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3390 | |
3391 (ange-ftp-send-cmd | |
3392 t-host | |
3393 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3394 (list 'put (or temp2 filename) t-name) |
1106 | 3395 (or msg |
3396 (if (and temp2 f-parsed) | |
3397 (format "Putting %s" newname) | |
3398 (format "Copying %s to %s" f-abbr t-abbr))) | |
3399 (list (function ange-ftp-cf2) | |
3400 newname t-host t-user binary temp1 temp2 cont) | |
3401 nowait)) | |
3402 | |
3403 ;; newname wasn't remote. | |
3404 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3405 | |
3406 ;; first copy failed, tell caller | |
3407 (ange-ftp-call-cont cont result line))) | |
3408 | |
3409 ;; last part of copying routine. | |
3410 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3411 (unwind-protect | |
3412 (if line | |
3413 ;; result from doing a local to remote copy. | |
3414 (unwind-protect | |
3415 (progn | |
3416 (or result | |
3417 (or cont | |
3418 (signal 'ftp-error | |
3419 (list "Opening output file" | |
3420 (format "FTP Error: \"%s\"" line) | |
3421 newname)))) | |
3422 | |
3423 (ange-ftp-add-file-entry newname)) | |
3424 | |
3425 ;; cleanup. | |
3426 (if binary | |
3427 (ange-ftp-set-ascii-mode t-host t-user))) | |
3428 | |
3429 ;; newname was local. | |
3430 (if temp1 | |
3431 (ange-ftp-real-copy-file temp1 newname t))) | |
3432 | |
3433 ;; clean up | |
3434 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3435 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3436 (ange-ftp-call-cont cont result line))) | |
3437 | |
3438 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3439 keep-date) | |
3440 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3441 (ange-ftp-copy-file-internal filename | |
3442 newname | |
3443 ok-if-already-exists | |
3444 keep-date | |
3445 nil | |
3446 nil | |
3447 (interactive-p))) | |
3448 | |
3449 ;;;; ------------------------------------------------------------ | |
3450 ;;;; File renaming support. | |
3451 ;;;; ------------------------------------------------------------ | |
3452 | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3453 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) |
1106 | 3454 "Rename remote file FILE to remote file NEWNAME." |
3455 (let ((f-host (nth 0 f-parsed)) | |
3456 (f-user (nth 1 f-parsed)) | |
3457 (t-host (nth 0 t-parsed)) | |
3458 (t-user (nth 1 t-parsed))) | |
3459 (if (and (string-equal f-host t-host) | |
3460 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3461 (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
|
3462 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3463 (cmd (list 'rename f-name t-name)) |
1106 | 3464 (fabbr (ange-ftp-abbreviate-filename filename)) |
3465 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3466 (result (ange-ftp-send-cmd f-host f-user cmd | |
3467 (format "Renaming %s to %s" | |
3468 fabbr | |
3469 nabbr)))) | |
3470 (or (car result) | |
3471 (signal 'ftp-error | |
3472 (list | |
3473 "Renaming" | |
3474 (format "FTP Error: \"%s\"" (cdr result)) | |
3475 filename | |
3476 newname))) | |
3477 (ange-ftp-add-file-entry newname) | |
3478 (ange-ftp-delete-file-entry filename)) | |
3479 (ange-ftp-copy-file-internal filename newname t nil) | |
3480 (delete-file filename)))) | |
3481 | |
3482 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3483 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3484 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3485 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3486 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3487 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3488 (let (ange-ftp-process-verbose) | |
3489 (delete-file filename)))) | |
3490 | |
3491 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3492 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3493 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3494 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3495 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3496 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3497 (let (ange-ftp-process-verbose) | |
3498 (delete-file filename)))) | |
3499 | |
3500 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3501 (interactive "fRename file: \nFRename %s to file: \np") | |
3502 (setq filename (expand-file-name filename)) | |
3503 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3504 (let* ((f-parsed (ange-ftp-ftp-name filename)) |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3505 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3506 (if (and (or f-parsed t-parsed) |
3507 (or (not ok-if-already-exists) | |
3508 (numberp ok-if-already-exists))) | |
3509 (ange-ftp-barf-or-query-if-file-exists | |
3510 newname | |
3511 "rename to it" | |
3512 (numberp ok-if-already-exists))) | |
3513 (if f-parsed | |
3514 (if t-parsed | |
3515 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3516 t-parsed) |
1106 | 3517 (ange-ftp-rename-remote-to-local filename newname)) |
3518 (if t-parsed | |
3519 (ange-ftp-rename-local-to-remote filename newname) | |
3520 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3521 | |
3522 ;;;; ------------------------------------------------------------ | |
3523 ;;;; File name completion support. | |
3524 ;;;; ------------------------------------------------------------ | |
3525 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3526 ;; 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
|
3527 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3528 (defun ange-ftp-file-entry-active-p (sym) |
3529 (let ((val (get sym 'val))) | |
3530 (or (not (stringp val)) | |
3531 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3532 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3533 ;; 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
|
3534 ;; 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
|
3535 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3536 ;; 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
|
3537 ;; are used as free variables. |
1106 | 3538 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3539 (let ((val (get sym 'val)) | |
3540 (symname (symbol-name sym))) | |
3541 (if (stringp val) | |
3542 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3543 (or (file-directory-p file) | |
3544 (and (file-exists-p file) | |
3545 (not (string-match ange-ftp-completion-ignored-pattern | |
3546 symname))))) | |
3547 (or val ; is a directory name | |
3548 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3549 | |
3550 (defun ange-ftp-file-name-all-completions (file dir) | |
3551 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3552 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3553 (progn |
3554 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3555 (setq ange-ftp-this-dir | |
3556 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3557 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3558 (completions | |
3559 (all-completions file tbl | |
3560 (function ange-ftp-file-entry-active-p)))) | |
3561 | |
3562 ;; see whether each matching file is a directory or not... | |
3563 (mapcar | |
3564 (function | |
3565 (lambda (file) | |
3566 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3567 (if (and ent | |
3568 (or (not (stringp ent)) | |
3569 (file-directory-p | |
3570 (ange-ftp-expand-symlink ent | |
3571 ange-ftp-this-dir)))) | |
3572 (concat file "/") | |
3573 file)))) | |
3574 completions))) | |
3575 | |
3576 (if (string-equal "/" ange-ftp-this-dir) | |
3577 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3578 (ange-ftp-real-file-name-all-completions file | |
3579 ange-ftp-this-dir)) | |
3580 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3581 | |
3582 (defun ange-ftp-file-name-completion (file dir) | |
3583 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3584 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3585 (progn |
3586 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3587 (if (equal file "") | |
3588 "" | |
3589 (setq ange-ftp-this-dir | |
3590 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3591 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3592 (ange-ftp-completion-ignored-pattern | |
3593 (mapconcat (function | |
3594 (lambda (s) (if (stringp s) | |
3595 (concat (regexp-quote s) "$") | |
3596 "/"))) ; / never in filename | |
3597 completion-ignored-extensions | |
3598 "\\|"))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3599 (save-match-data |
1106 | 3600 (or (ange-ftp-file-name-completion-1 |
3601 file tbl ange-ftp-this-dir | |
3602 (function ange-ftp-file-entry-not-ignored-p)) | |
3603 (ange-ftp-file-name-completion-1 | |
3604 file tbl ange-ftp-this-dir | |
3605 (function ange-ftp-file-entry-active-p))))))) | |
3606 | |
3607 (if (string-equal "/" ange-ftp-this-dir) | |
3608 (try-completion | |
3609 file | |
3610 (nconc (ange-ftp-generate-root-prefixes) | |
3611 (mapcar 'list | |
3612 (ange-ftp-real-file-name-all-completions file "/")))) | |
3613 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3614 | |
3615 | |
3616 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3617 (let ((bestmatch (try-completion file tbl predicate))) | |
3618 (if bestmatch | |
3619 (if (eq bestmatch t) | |
3620 (if (file-directory-p (expand-file-name file dir)) | |
3621 (concat file "/") | |
3622 t) | |
3623 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3624 (file-directory-p | |
3625 (expand-file-name bestmatch dir))) | |
3626 (concat bestmatch "/") | |
3627 bestmatch))))) | |
3628 | |
3629 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3630 ;; ange-ftp's cache whilst doing filename completion. | |
3631 ;; | |
3632 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3633 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3634 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3635 ;; 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
|
3636 ;; to the directory part of the contents of the current buffer. |
1106 | 3637 (defun ange-ftp-re-read-dir (&optional dir) |
3638 (interactive) | |
3639 (if dir | |
3640 (setq dir (expand-file-name dir)) | |
3641 (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
|
3642 (if (ange-ftp-ftp-name dir) |
1106 | 3643 (progn |
3644 (setq ange-ftp-ls-cache-file nil) | |
3645 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3646 (ange-ftp-get-files dir t)))) | |
3647 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3648 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3649 (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
|
3650 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3651 (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
|
3652 (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
|
3653 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3654 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3655 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3657 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3658 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3659 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3660 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3661 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3662 ;; 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
|
3663 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3664 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3665 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3666 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3667 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3668 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3669 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3670 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3672 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3673 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3674 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3675 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3677 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3678 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3679 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3685 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3686 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3687 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3688 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 ;; 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
|
3693 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3695 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3698 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3700 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3702 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3703 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3704 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3715 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3716 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3717 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3718 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3720 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 (if pa1 |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3722 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3725 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3726 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3727 (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
|
3728 (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
|
3729 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3730 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3731 (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
|
3732 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3733 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3734 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3735 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3736 (ftp-error nil)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3737 (setq tryfiles (cdr tryfiles))) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3738 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3739 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3740 (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
|
3741 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3742 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3743 (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
|
3744 (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
|
3745 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3746 ;; 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
|
3747 (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
|
3748 (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
|
3749 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3750 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3751 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3752 ;; 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
|
3753 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3754 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3755 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3756 "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
|
3757 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3758 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
|
3759 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3760 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
|
3761 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
|
3762 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
|
3763 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3764 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3765 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3766 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3767 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3768 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3769 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3770 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3771 (let* ((decision |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3772 (save-match-data (funcall conversion-func name))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3773 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3774 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3775 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3776 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3777 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3778 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3779 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3781 ;; 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
|
3782 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3783 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3784 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3785 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3786 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3787 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3788 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3789 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3790 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3791 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3792 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3793 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3794 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3795 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3796 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3797 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3798 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3799 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3800 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3801 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3802 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3803 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3804 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3805 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3806 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3807 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3808 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3809 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3810 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3811 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3812 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3813 ;; 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
|
3814 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3815 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3816 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3817 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3818 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3819 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3820 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3821 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3822 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3823 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3824 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3825 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3826 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3827 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3828 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3829 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3830 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3831 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3832 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3833 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3834 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3835 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3836 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3837 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3838 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3839 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3840 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3841 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3842 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3843 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3844 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3845 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3846 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3847 (ange-ftp-del-tmp-name tmp2)))) |
10407
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3848 |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3849 (defun ange-ftp-find-backup-file-name (fn) |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3850 ;; Either return the ordinary backup name, etc., |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3851 ;; or return nil meaning don't make a backup. |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3852 (if ange-ftp-make-backup-files |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3853 (ange-ftp-real-find-backup-file-name fn))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3854 |
1106 | 3855 ;;; Define the handler for special file names |
3856 ;;; that causes ange-ftp to be invoked. | |
3857 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3858 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3859 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3860 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3861 (if fn (apply fn args) |
7143
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3862 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3863 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3864 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3865 ;;; 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
|
3866 ;;; and colon). |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3867 ;;; Don't allow the host name to end in a period--some systems use /.: |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3868 ;;;###autoload |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3869 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3870 (setq file-name-handler-alist |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3871 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3872 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
|
3873 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3874 ;;; 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
|
3875 ;;; 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
|
3876 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3877 (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
|
3878 (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
|
3879 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3880 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3881 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3882 ;;; 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
|
3883 ;;; 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
|
3884 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3885 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3886 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3887 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3888 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3889 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3890 ;;; Now say where to find the handlers for particular operations. |
1106 | 3891 |
3892 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3893 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3894 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3895 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3896 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3897 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3898 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3899 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3900 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3901 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3902 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3903 (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
|
3904 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3905 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3906 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3907 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3908 (put 'verify-visited-file-modtime 'ange-ftp | |
3909 'ange-ftp-verify-visited-file-modtime) | |
3910 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3911 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3912 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3913 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3914 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3915 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3916 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3917 (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
|
3918 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3919 (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
|
3920 (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
|
3921 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3922 (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
|
3923 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3924 (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
|
3925 (put 'load 'ange-ftp 'ange-ftp-load) |
10407
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3926 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name) |
1454
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3927 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3928 ;; 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
|
3929 ;; 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
|
3930 (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
|
3931 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3932 ;; 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
|
3933 ;; 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
|
3934 (put 'vc-registered 'ange-ftp 'null) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3935 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3936 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3937 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3938 |
7042 | 3939 (defun ange-ftp-run-real-handler (operation args) |
3940 (let ((inhibit-file-name-handlers | |
3941 (cons 'ange-ftp-hook-function | |
7143
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3942 (cons 'ange-ftp-completion-hook-function |
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3943 (and (eq inhibit-file-name-operation operation) |
fa1ae50e55b3
(ange-ftp-hook-function): Use ange-ftp-run-real-handler.
Richard M. Stallman <rms@gnu.org>
parents:
7113
diff
changeset
|
3944 inhibit-file-name-handlers)))) |
7042 | 3945 (inhibit-file-name-operation operation)) |
3946 (apply operation args))) | |
3947 | |
1106 | 3948 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 3949 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 3950 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 3951 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 3952 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 3953 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 3954 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 3955 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 3956 (defun ange-ftp-real-expand-file-name (&rest args) |
7042 | 3957 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 3958 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 3959 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 3960 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 3961 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 3962 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 3963 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 3964 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 3965 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 3966 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 3967 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 3968 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 3969 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 3970 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 3971 (ange-ftp-run-real-handler '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
|
3972 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 3973 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 3974 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 3975 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 3976 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 3977 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 3978 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 3979 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 3980 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 3981 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 3982 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 3983 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 3984 (defun ange-ftp-real-write-region (&rest args) |
7042 | 3985 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 3986 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 3987 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 3988 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 3989 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 3990 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 3991 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 3992 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 3993 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 3994 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 3995 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 3996 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 3997 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
3998 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 3999 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4000 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 4001 (ange-ftp-run-real-handler 'file-name-sans-versions args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4002 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 4003 (ange-ftp-run-real-handler 'shell-command args)) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
4004 (defun ange-ftp-real-load (&rest args) |
7042 | 4005 (ange-ftp-run-real-handler 'load args)) |
10407
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
4006 (defun ange-ftp-real-find-backup-file-name (&rest args) |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
4007 (ange-ftp-run-real-handler 'find-backup-file-name args)) |
1106 | 4008 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4009 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4010 ;; 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
|
4011 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4013 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4015 ;; 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
|
4016 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 ;; 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
|
4018 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 ;; So the format conversion should be all that is needed. |
1106 | 4020 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4021 (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
|
4022 (let ((short (ange-ftp-abbreviate-filename file)) |
7747
40d992ff4662
(ange-ftp-insert-directory): Expand file name to
Richard M. Stallman <rms@gnu.org>
parents:
7664
diff
changeset
|
4023 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4024 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4025 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4026 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4027 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4028 (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
|
4029 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4030 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 4031 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4032 (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
|
4033 (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
|
4034 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4035 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4036 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4037 "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
|
4038 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4039 (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
|
4040 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4042 host-type func) |
1106 | 4043 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4044 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4046 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4047 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4048 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4049 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4050 ;;; 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
|
4051 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4052 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4053 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4054 (host (nth 0 parsed)) |
4055 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 (name (nth 2 parsed))) |
1106 | 4057 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4058 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4059 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4060 (setq command (concat "cd " name "; " command))) |
1106 | 4061 (setq command |
4062 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4063 ; on a hp-ux machine I tried | |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
4064 remote-shell-program host command)) |
1106 | 4065 (ange-ftp-message "Remote command '%s' ..." command) |
4066 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4067 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4068 ;; 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
|
4069 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4070 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4071 ;;; Thisis not hooked up yet. |
1106 | 4072 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4073 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4074 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4075 (if (ange-ftp-ftp-name default-directory) |
1106 | 4076 ;; Can't use ange-ftp-dired-host-type here because the current |
4077 ;; buffer is *dired-check-process output* | |
4078 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4079 (cond ((equal "chmod" program) |
1106 | 4080 (ange-ftp-call-chmod arguments)) |
4081 ;; ((equal "chgrp" program)) | |
4082 ;; ((equal dired-chown-program program)) | |
4083 (t (error "Unknown remote command: %s" program))) | |
4084 (ftp-error (insert (format "%s: %s, %s\n" | |
4085 (nth 1 oops) | |
4086 (nth 2 oops) | |
4087 (nth 3 oops)))) | |
4088 (error (insert (format "%s\n" (nth 1 oops))))) | |
4089 (apply 'call-process program nil (not discard) nil arguments))) | |
4090 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4091 ;;; This currently does not work; it is never called. |
1106 | 4092 (defun ange-ftp-call-chmod (args) |
4093 (if (< (length args) 2) | |
4094 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4095 (let ((mode (car args))) | |
4096 (mapcar | |
4097 (function | |
4098 (lambda (file) | |
4099 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4100 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4101 (if parsed |
4102 (let* ((host (nth 0 parsed)) | |
4103 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4105 (abbr (ange-ftp-abbreviate-filename file)) |
4106 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4107 (list 'chmod mode name) |
1106 | 4108 (format "doing chmod %s" |
4109 abbr)))) | |
4110 (or (car result) | |
4111 (ange-ftp-error host user | |
4112 (format "chmod: %s: \"%s\"" | |
4113 file | |
4114 (cdr result))))))))) | |
4115 (cdr args))) | |
4116 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
4117 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4118 ;;; 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
|
4119 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4120 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4121 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4122 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4123 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4126 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 ;; (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
|
4130 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;;(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
|
4133 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4134 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;; ;; 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
|
4137 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; (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
|
4139 ;; (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
|
4140 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4141 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;;(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
|
4143 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4147 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;; ;; 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
|
4153 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4155 ;; ;; 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
|
4156 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; ;; 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
|
4160 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4164 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4174 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; (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
|
4176 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;;(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
|
4179 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; success-count buffer) |
1106 | 4189 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4191 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4193 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;;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
|
4218 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4222 ;; ;; 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
|
4223 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4256 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4260 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4262 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4263 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4274 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 ;; (dired-add-file to actual-marker-char)) |
1106 | 4289 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4290 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4291 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4293 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;;(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
|
4302 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4306 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4315 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4316 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4317 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4318 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4319 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4320 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4321 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4322 ;; (set-buffer old-buf)))) |
1106 | 4323 |
4324 ;;;; ----------------------------------------------- | |
4325 ;;;; Unix Descriptive Listing (dl) Support | |
4326 ;;;; ----------------------------------------------- | |
4327 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4328 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4329 ;; 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
|
4330 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4331 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4333 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4334 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4338 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4340 ;;(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
|
4341 ;; "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
|
4342 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4343 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4344 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4345 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4346 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4348 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4351 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4352 ;;(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
|
4353 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4354 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4355 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4356 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4357 ;;(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
|
4358 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4359 ;; ;; 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
|
4360 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4361 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4362 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4364 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4365 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4367 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4370 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4371 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4372 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4373 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4374 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4375 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4376 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4379 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4381 ;;(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
|
4382 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;; (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
|
4384 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4385 |
4386 ;;;; ------------------------------------------------------------ | |
4387 ;;;; VOS support (VOS support is probably broken, | |
4388 ;;;; but I don't know anything about VOS.) | |
4389 ;;;; ------------------------------------------------------------ | |
4390 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4391 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4392 ; (setq name (copy-sequence name)) |
1106 | 4393 ; (let ((from (if reverse ?\> ?\/)) |
4394 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4395 ; (i (1- (length name)))) |
1106 | 4396 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4397 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4398 ; (aset name i to)) |
1106 | 4399 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4400 ; name)) |
1106 | 4401 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4402 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4404 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4405 ; ange-ftp-fix-name-func-alist))) |
1106 | 4406 ; |
4407 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4408 ; (setq ange-ftp-dumb-host-types | |
4409 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4410 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4411 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4412 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4413 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4415 ; "" "/") |
4416 ; "*"))) | |
4417 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4418 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4419 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4420 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4421 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4422 ; |
4423 ;(defvar ange-ftp-vos-host-regexp nil | |
4424 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4425 ; | |
4426 ;(defun ange-ftp-vos-host (host) | |
4427 ; (and ange-ftp-vos-host-regexp | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4428 ; (save-match-data |
1106 | 4429 ; (string-match ange-ftp-vos-host-regexp host)))) |
4430 ; | |
4431 ;(defun ange-ftp-parse-vos-listing () | |
4432 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4433 ;format, and return a hashtable as the result." | |
4434 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4435 ; (type-list | |
4436 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4437 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4438 ; type-regexp type-is-dir type-col file) | |
4439 ; (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4440 ; (save-match-data |
1106 | 4441 ; (while type-list |
4442 ; (setq type-regexp (car (car type-list)) | |
4443 ; type-is-dir (nth 1 (car type-list)) | |
4444 ; type-col (nth 2 (car type-list)) | |
4445 ; type-list (cdr type-list)) | |
4446 ; (if (re-search-forward type-regexp nil t) | |
4447 ; (while (eq (char-after (point)) ? ) | |
4448 ; (move-to-column type-col) | |
4449 ; (setq file (buffer-substring (point) | |
4450 ; (progn | |
4451 ; (end-of-line 1) | |
4452 ; (point)))) | |
4453 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4454 ; (forward-line 1)))) | |
4455 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4456 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4457 ; tbl)) | |
4458 ; | |
4459 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4460 ; (setq ange-ftp-parse-list-func-alist | |
4461 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4462 ; ange-ftp-parse-list-func-alist))) | |
4463 | |
4464 ;;;; ------------------------------------------------------------ | |
4465 ;;;; VMS support. | |
4466 ;;;; ------------------------------------------------------------ | |
4467 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4468 ;; 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
|
4469 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4470 (defun ange-ftp-fix-name-for-vms (name &optional reverse) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4471 (save-match-data |
1106 | 4472 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4473 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4474 (let (drive dir file) |
4475 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4476 (setq drive (substring name |
1106 | 4477 (match-beginning 1) |
4478 (match-end 1)))) | |
4479 (if (match-beginning 2) | |
4480 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4481 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4482 (if (match-beginning 3) |
4483 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4484 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4485 (and dir |
4486 (setq dir (apply (function concat) | |
4487 (mapcar (function | |
4488 (lambda (char) | |
4489 (if (= char ?.) | |
4490 (vector ?/) | |
4491 (vector char)))) | |
4492 (substring dir 1 -1))))) | |
4493 (concat (and drive | |
4494 (concat "/" drive "/")) | |
4495 dir (and dir "/") | |
4496 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4497 (error "name %s didn't match" name)) |
1106 | 4498 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4499 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4500 (setq drive (substring name 1 |
1106 | 4501 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4502 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4503 (setq tmp (file-name-directory name)) |
1106 | 4504 (if tmp |
4505 (setq dir (apply (function concat) | |
4506 (mapcar (function | |
4507 (lambda (char) | |
4508 (if (= char ?/) | |
4509 (vector ?.) | |
4510 (vector char)))) | |
4511 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4512 (setq file (file-name-nondirectory name)) |
1106 | 4513 (concat drive |
4514 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4515 file))))) | |
4516 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4517 ;; (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
|
4518 ;; (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
|
4519 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4520 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4521 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4522 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4523 ange-ftp-fix-name-func-alist))) |
1106 | 4524 |
4525 (or (memq 'vms ange-ftp-dumb-host-types) | |
4526 (setq ange-ftp-dumb-host-types | |
4527 (cons 'vms ange-ftp-dumb-host-types))) | |
4528 | |
4529 ;; It is important that this function barf for directories for which we know | |
4530 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4531 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4532 ;; might succeed, but give erroneous info. This last case is particularly | |
4533 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4534 ;; to list a directory. | |
4535 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4536 ;; 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
|
4537 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4538 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4539 ;; think so, because expand-filename should have already short-circuited | |
4540 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4541 (cond ((string-equal dir-name "/") |
1106 | 4542 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4543 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4544 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4545 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4546 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4547 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4548 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4549 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4550 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4551 |
4552 (defvar ange-ftp-vms-host-regexp nil) | |
4553 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4554 ;; Return non-nil if HOST is running VMS. |
1106 | 4555 (defun ange-ftp-vms-host (host) |
4556 (and ange-ftp-vms-host-regexp | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4557 (save-match-data |
1106 | 4558 (string-match ange-ftp-vms-host-regexp host)))) |
4559 | |
4560 ;; Because some VMS ftp servers convert filenames to lower case | |
4561 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4562 | |
4563 (defconst ange-ftp-vms-filename-regexp | |
4564 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4565 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." |
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4566 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4567 "Regular expression to match for a valid VMS file name in Dired buffer. |
4568 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4569 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4570 Other orders of $ and _ seem to all work just fine.") | |
4571 | |
4572 ;; These parsing functions are as general as possible because the syntax | |
4573 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4574 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4575 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4576 ;; from vms.weird.net, then too bad. | |
4577 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4578 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4579 (defun ange-ftp-parse-vms-filename () |
4580 (if (re-search-forward | |
4581 ange-ftp-vms-filename-regexp | |
4582 nil t) | |
4583 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4584 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4585 ;; 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
|
4586 ;; format, and return a hashtable as the result. |
1106 | 4587 (defun ange-ftp-parse-vms-listing () |
4588 (let ((tbl (ange-ftp-make-hashtable)) | |
4589 file) | |
4590 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4591 (save-match-data |
1106 | 4592 (while (setq file (ange-ftp-parse-vms-filename)) |
4593 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4594 ;; deal with directories | |
4595 (ange-ftp-put-hash-entry | |
4596 (substring file 0 (match-beginning 0)) t tbl) | |
4597 (ange-ftp-put-hash-entry file nil tbl) | |
4598 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4599 ;; sans extension | |
4600 (ange-ftp-put-hash-entry | |
4601 (substring file 0 (match-beginning 0)) nil tbl))) | |
4602 (forward-line 1)) | |
4603 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4604 ;; make sure that the listing isn't complete garbage before putting | |
4605 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4606 ;; either of these. | |
4607 (ange-ftp-put-hash-entry "." t tbl) | |
4608 (ange-ftp-put-hash-entry ".." t tbl)) | |
4609 tbl)) | |
4610 | |
4611 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4612 (setq ange-ftp-parse-list-func-alist | |
4613 (cons '(vms . ange-ftp-parse-vms-listing) | |
4614 ange-ftp-parse-list-func-alist))) | |
4615 | |
4616 ;; This version only deletes file entries which have | |
4617 ;; explicit version numbers, because that is all VMS allows. | |
4618 | |
4619 ;; Can the following two functions be speeded up using file | |
4620 ;; completion functions? | |
4621 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4622 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4623 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4624 (ange-ftp-internal-delete-file-entry name t) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4625 (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4626 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4627 (if (string-match ";[0-9]+$" file) |
4628 ;; In VMS you can't delete a file without an explicit | |
4629 ;; version number, or wild-card (e.g. FOO;*) | |
4630 ;; For now, we give up on wildcards. | |
4631 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4632 (file-name-directory name) |
1106 | 4633 ange-ftp-files-hashtable))) |
4634 (if files | |
4635 (let* ((root (substring file 0 | |
4636 (match-beginning 0))) | |
4637 (regexp (concat "^" | |
4638 (regexp-quote root) | |
4639 ";[0-9]+$")) | |
4640 versions) | |
4641 (ange-ftp-del-hash-entry file files) | |
4642 ;; Now we need to check if there are any | |
4643 ;; versions left. If not, then delete the | |
4644 ;; root entry. | |
4645 (mapatoms | |
4646 '(lambda (sym) | |
4647 (and (string-match regexp (get sym 'key)) | |
4648 (setq versions t))) | |
4649 files) | |
4650 (or versions | |
4651 (ange-ftp-del-hash-entry root files)))))))))) | |
4652 | |
4653 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4654 (setq ange-ftp-delete-file-entry-alist | |
4655 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4656 ange-ftp-delete-file-entry-alist))) | |
4657 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4658 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4659 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4660 (ange-ftp-internal-add-file-entry name t) |
1106 | 4661 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4662 (file-name-directory name) |
1106 | 4663 ange-ftp-files-hashtable))) |
4664 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4665 (let ((file (ange-ftp-get-file-part name))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4666 (save-match-data |
1106 | 4667 (if (string-match ";[0-9]+$" file) |
4668 (ange-ftp-put-hash-entry | |
4669 (substring file 0 (match-beginning 0)) | |
4670 nil files) | |
4671 ;; Need to figure out what version of the file | |
4672 ;; is being added. | |
4673 (let ((regexp (concat "^" | |
4674 (regexp-quote file) | |
4675 ";\\([0-9]+\\)$")) | |
4676 (version 0)) | |
4677 (mapatoms | |
4678 '(lambda (sym) | |
4679 (let ((name (get sym 'key))) | |
4680 (and (string-match regexp name) | |
4681 (setq version | |
4682 (max version | |
4683 (string-to-int | |
4684 (substring name | |
4685 (match-beginning 1) | |
4686 (match-end 1)))))))) | |
4687 files) | |
4688 (setq version (1+ version)) | |
4689 (ange-ftp-put-hash-entry | |
4690 (concat file ";" (int-to-string version)) | |
4691 nil files)))) | |
4692 (ange-ftp-put-hash-entry file nil files)))))) | |
4693 | |
4694 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4695 (setq ange-ftp-add-file-entry-alist | |
4696 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4697 ange-ftp-add-file-entry-alist))) | |
4698 | |
4699 | |
4700 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4701 "Mark HOST as the name of a machine running VMS." |
1106 | 4702 (interactive |
4703 (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
|
4704 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4706 (if (not (ange-ftp-vms-host host)) |
4707 (setq ange-ftp-vms-host-regexp | |
4708 (concat "^" (regexp-quote host) "$" | |
4709 (and ange-ftp-vms-host-regexp "\\|") | |
4710 ange-ftp-vms-host-regexp) | |
4711 ange-ftp-host-cache nil))) | |
4712 | |
4713 | |
4714 (defun ange-ftp-vms-file-name-as-directory (name) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4715 (save-match-data |
1106 | 4716 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) |
4717 (setq name (substring name 0 (match-beginning 0)))) | |
4718 (ange-ftp-real-file-name-as-directory name))) | |
4719 | |
4720 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4721 (setq ange-ftp-file-name-as-directory-alist | |
4722 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4723 ange-ftp-file-name-as-directory-alist))) | |
4724 | |
4725 ;;; Tree dired support: | |
4726 | |
4727 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4728 ;; dired-vms.el | |
4729 | |
4730 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 ;;;; 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
|
4733 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4737 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4743 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4745 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4746 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4747 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4764 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4767 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;;(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
|
4769 ;; "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
|
4770 ;;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
|
4771 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 ;; (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
|
4776 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;;(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
|
4787 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;; ;; 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
|
4789 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4791 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4793 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4795 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4800 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4801 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 ;;(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
|
4812 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 ;; (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
|
4814 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4816 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4818 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4829 |
4830 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4831 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4832 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4833 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4834 | |
4835 (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
|
4836 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4837 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4838 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4840 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4843 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4844 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4845 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4852 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 ;;;; 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
|
4856 ;;;; (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
|
4857 ;;;; 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
|
4858 ;;;; (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
|
4859 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4860 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4861 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4862 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4863 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4866 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4867 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 |
12977
046bc1e2acc9
(ange-ftp-vms-sans-version): Accept extra args.
Richard M. Stallman <rms@gnu.org>
parents:
12741
diff
changeset
|
4876 (defun ange-ftp-vms-sans-version (name &rest args) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4877 (save-match-data |
1106 | 4878 (if (string-match ";[0-9]+$" name) |
4879 (substring name 0 (match-beginning 0)) | |
4880 name))) | |
4881 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4883 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4885 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ;;;;; 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
|
4890 ;;;;; 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
|
4891 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;;(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
|
4894 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4895 ;;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
|
4896 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;;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
|
4898 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;;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
|
4900 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4902 ;; (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
|
4903 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 ;; ;; 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
|
4905 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 ;; (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
|
4907 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4908 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4909 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4910 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4911 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4912 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 ;; ;; 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
|
4916 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4920 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4929 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4931 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ;; ;; 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
|
4933 ;; ;; 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
|
4934 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4938 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; ;; "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
|
4946 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4947 ;; ;;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
|
4948 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4952 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4957 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4958 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4959 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4960 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4961 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4962 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4963 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4964 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4965 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4967 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4971 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4975 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4976 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4977 ;; (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
|
4978 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4979 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4982 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;;(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
|
4987 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4991 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5019 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 5024 |
5025 | |
5026 ;;;; ------------------------------------------------------------ | |
5027 ;;;; MTS support | |
5028 ;;;; ------------------------------------------------------------ | |
5029 | |
5030 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5031 ;; 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
|
5032 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 (defun ange-ftp-fix-name-for-mts (name &optional reverse) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5034 (save-match-data |
1106 | 5035 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5036 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5037 (let (acct file) |
5038 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5040 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5041 (setq file (substring name |
1106 | 5042 (match-beginning 2) (match-end 2)))) |
5043 (concat (and acct (concat "/" acct "/")) | |
5044 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5048 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5049 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5052 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5053 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5054 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5055 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5056 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5057 ;; 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
|
5058 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5059 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 (if (string-equal dir-name "/") |
1106 | 5061 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5062 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5063 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5064 ((string-equal dir-name "") |
1106 | 5065 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5066 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5067 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5068 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5069 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5073 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5074 |
5075 (or (memq 'mts ange-ftp-dumb-host-types) | |
5076 (setq ange-ftp-dumb-host-types | |
5077 (cons 'mts ange-ftp-dumb-host-types))) | |
5078 | |
5079 (defvar ange-ftp-mts-host-regexp nil) | |
5080 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5081 ;; Return non-nil if HOST is running MTS. |
1106 | 5082 (defun ange-ftp-mts-host (host) |
5083 (and ange-ftp-mts-host-regexp | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5084 (save-match-data |
1106 | 5085 (string-match ange-ftp-mts-host-regexp host)))) |
5086 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5088 (defun ange-ftp-parse-mts-listing () |
5089 (let ((tbl (ange-ftp-make-hashtable))) | |
5090 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5091 (save-match-data |
1106 | 5092 (while (re-search-forward ange-ftp-date-regexp nil t) |
5093 (end-of-line) | |
5094 (skip-chars-backward " ") | |
5095 (let ((end (point))) | |
5096 (skip-chars-backward "-A-Z0-9_.!") | |
5097 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5098 (forward-line 1))) | |
5099 ;; Don't need to bother with .. | |
5100 (ange-ftp-put-hash-entry "." t tbl) | |
5101 tbl)) | |
5102 | |
5103 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5104 (setq ange-ftp-parse-list-func-alist | |
5105 (cons '(mts . ange-ftp-parse-mts-listing) | |
5106 ange-ftp-parse-list-func-alist))) | |
5107 | |
5108 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 "Mark HOST as the name of a machine running MTS." |
1106 | 5110 (interactive |
5111 (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
|
5112 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5114 (if (not (ange-ftp-mts-host host)) |
5115 (setq ange-ftp-mts-host-regexp | |
5116 (concat "^" (regexp-quote host) "$" | |
5117 (and ange-ftp-mts-host-regexp "\\|") | |
5118 ange-ftp-mts-host-regexp) | |
5119 ange-ftp-host-cache nil))) | |
5120 | |
5121 ;;; Tree dired support: | |
5122 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5123 ;;;; 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
|
5124 ;;;; 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
|
5125 ;;;; 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
|
5126 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5127 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5128 ;;(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
|
5129 ;; "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
|
5130 ;;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
|
5131 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5132 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5133 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5134 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5135 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5137 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5138 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5139 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 ;; ;; 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
|
5141 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5143 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5145 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5147 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5148 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5149 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5150 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5151 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5152 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5154 ;;(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
|
5155 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5156 ;; ;; 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
|
5157 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5159 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5160 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5161 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5164 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5165 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5166 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5168 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5169 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5178 ;;(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
|
5179 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5180 ;; (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
|
5181 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5182 |
5183 ;;;; ------------------------------------------------------------ | |
5184 ;;;; CMS support | |
5185 ;;;; ------------------------------------------------------------ | |
5186 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5187 ;; 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
|
5188 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5189 ;; to try to remember the current minidisk, because if the connection |
5190 ;; is closed and needs to be reopened, we will find ourselves back in | |
5191 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5192 ;; usually close the connection after 5 minutes of inactivity. | |
5193 | |
5194 ;; Have I got the filename character set right? | |
5195 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5196 (defun ange-ftp-fix-name-for-cms (name &optional reverse) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5197 (save-match-data |
1106 | 5198 (if reverse |
5199 ;; Since we only convert output from a pwd in this direction, | |
5200 ;; we'll assume that it's a minidisk, and make it into a | |
5201 ;; directory file name. Note that the expand-dir-hashtable | |
5202 ;; stores directories without the trailing /. Is this | |
5203 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 (concat "/" name) |
1106 | 5205 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5206 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5207 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5208 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5209 (let ((file (substring name (match-beginning 2) |
1106 | 5210 (match-end 2))) |
5211 (cmd (concat "cd " minidisk)) | |
5212 | |
5213 ;; Note that host and user are bound in the call | |
5214 ;; to ange-ftp-send-cmd | |
5215 (proc (ange-ftp-get-process ange-ftp-this-host | |
5216 ange-ftp-this-user))) | |
5217 | |
5218 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5219 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5220 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5221 file |
5222 ;; failed... try ONCE more. | |
5223 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5224 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5225 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5226 ange-ftp-this-msg))) |
1106 | 5227 (if (car result) |
5228 file | |
5229 ;; failed. give up. | |
5230 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5231 (format "cd to minidisk %s failed: %s" | |
5232 minidisk (cdr result))))))) | |
5233 ;; return the minidisk | |
5234 minidisk)) | |
5235 (error "Invalid CMS filename"))))) | |
5236 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5238 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5239 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 ange-ftp-fix-name-func-alist))) |
1106 | 5241 |
5242 (or (memq 'cms ange-ftp-dumb-host-types) | |
5243 (setq ange-ftp-dumb-host-types | |
5244 (cons 'cms ange-ftp-dumb-host-types))) | |
5245 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5246 ;; 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
|
5247 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5248 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5249 ((string-equal "/" dir-name) |
1106 | 5250 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5251 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5252 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5253 ;; 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
|
5254 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5255 (cmd (concat "cd " minidisk)) |
5256 (file (if (match-beginning 2) | |
5257 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5258 (substring dir-name (match-beginning 2) |
1106 | 5259 (match-end 2)) |
5260 ;; use the wild-card | |
5261 "*"))) | |
5262 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5263 file | |
5264 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5265 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5266 ange-ftp-this-user)) |
1106 | 5267 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5268 (if (car result) | |
5269 file | |
5270 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5271 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5272 (format "cd to minidisk %s failed: " |
5273 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5274 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5275 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5276 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5277 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5278 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5279 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5280 |
5281 (defvar ange-ftp-cms-host-regexp nil | |
5282 "Regular expression to match hosts running the CMS operating system.") | |
5283 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5284 ;; Return non-nil if HOST is running CMS. |
1106 | 5285 (defun ange-ftp-cms-host (host) |
5286 (and ange-ftp-cms-host-regexp | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5287 (save-match-data |
1106 | 5288 (string-match ange-ftp-cms-host-regexp host)))) |
5289 | |
5290 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5291 "Mark HOST as the name of a CMS host." |
1106 | 5292 (interactive |
5293 (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
|
5294 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5295 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5296 (if (not (ange-ftp-cms-host host)) |
5297 (setq ange-ftp-cms-host-regexp | |
5298 (concat "^" (regexp-quote host) "$" | |
5299 (and ange-ftp-cms-host-regexp "\\|") | |
5300 ange-ftp-cms-host-regexp) | |
5301 ange-ftp-host-cache nil))) | |
5302 | |
5303 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5305 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5306 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5307 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5308 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5309 ;; exist. It would be nice if completion worked for minidisks, as we | |
5310 ;; discover them. | |
5311 ; (let* ((dir-file (directory-file-name file)) | |
5312 ; (root (file-name-directory dir-file)) | |
5313 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5314 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5315 ; (if root-tbl | |
5316 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5317 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5318 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5319 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5320 ; (ange-ftp-set-files root root-tbl))) | |
5321 ;; Now do the usual parsing | |
5322 (let ((tbl (ange-ftp-make-hashtable))) | |
5323 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5324 (save-match-data |
1106 | 5325 (while |
5326 (re-search-forward | |
5327 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5328 (ange-ftp-put-hash-entry | |
5329 (concat (buffer-substring (match-beginning 1) | |
5330 (match-end 1)) | |
5331 "." | |
5332 (buffer-substring (match-beginning 2) | |
5333 (match-end 2))) | |
5334 nil tbl) | |
5335 (forward-line 1)) | |
5336 (ange-ftp-put-hash-entry "." t tbl)) | |
5337 tbl)) | |
5338 | |
5339 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5340 (setq ange-ftp-parse-list-func-alist | |
5341 (cons '(cms . ange-ftp-parse-cms-listing) | |
5342 ange-ftp-parse-list-func-alist))) | |
5343 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5344 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5345 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5346 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5347 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5348 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5349 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5350 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5351 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5352 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5353 ;; ange-ftp-dired-re-exe-alist))) |
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 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5356 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5357 ;; ;; 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
|
5358 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5361 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5362 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5363 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5365 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5366 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 ;;(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
|
5369 ;; "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
|
5370 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5373 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5374 ;; (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
|
5375 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5377 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5378 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5379 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5380 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5382 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5383 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 ;;(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
|
5386 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5387 ;; ;; 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
|
5388 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5389 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5390 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5392 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5400 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5401 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5404 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5406 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5407 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5408 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5409 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5410 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5411 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5412 ;;(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
|
5413 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5414 ;; (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
|
5415 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5416 |
5417 (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
|
5418 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5419 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5420 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5421 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5422 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5423 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5424 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5425 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5426 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5427 ;;(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
|
5428 ;; (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
|
5429 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5430 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5431 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5432 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5433 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5434 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5435 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5436 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5437 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5438 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5439 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5440 |
5441 ;;;; ------------------------------------------------------------ | |
5442 ;;;; Finally provide package. | |
5443 ;;;; ------------------------------------------------------------ | |
5444 | |
5445 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5446 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5447 ;;; ange-ftp.el ends here |